diff --git a/package.json b/package.json index b1cf2ddf4..2ca426cc4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mergeapi/merge-node-client", - "version": "1.1.7", + "version": "1.1.8", "private": false, "repository": "https://github.com/merge-api/merge-node-client", "main": "./index.js", diff --git a/reference.md b/reference.md index a086afbdb..b151785da 100644 --- a/reference.md +++ b/reference.md @@ -1,8 +1,8 @@ # Reference -## Filestorage AccountDetails +## Ats AccountDetails -
client.filestorage.accountDetails.retrieve() -> Merge.AccountDetails +
client.ats.accountDetails.retrieve() -> Merge.AccountDetails
@@ -30,7 +30,7 @@ Get details for a linked account.
```typescript -await client.filestorage.accountDetails.retrieve(); +await client.ats.accountDetails.retrieve(); ```
@@ -57,9 +57,9 @@ await client.filestorage.accountDetails.retrieve();
-## Filestorage AccountToken +## Ats AccountToken -
client.filestorage.accountToken.retrieve(publicToken) -> Merge.AccountToken +
client.ats.accountToken.retrieve(publicToken) -> Merge.AccountToken
@@ -87,7 +87,7 @@ Returns the account token for the end user with the provided public token.
```typescript -await client.filestorage.accountToken.retrieve("public_token"); +await client.ats.accountToken.retrieve("public_token"); ```
@@ -122,9 +122,9 @@ await client.filestorage.accountToken.retrieve("public_token");
-## Filestorage AsyncPassthrough +## Ats Activities -
client.filestorage.asyncPassthrough.create({ ...params }) -> Merge.AsyncPassthroughReciept +
client.ats.activities.list({ ...params }) -> Merge.PaginatedActivityList
@@ -136,7 +136,7 @@ await client.filestorage.accountToken.retrieve("public_token");
-Asynchronously pull data from an endpoint not currently supported by Merge. +Returns a list of `Activity` objects.
@@ -152,10 +152,7 @@ Asynchronously pull data from an endpoint not currently supported by Merge.
```typescript -await client.filestorage.asyncPassthrough.create({ - method: "GET", - path: "/scooters", -}); +await client.ats.activities.list(); ```
@@ -171,7 +168,7 @@ await client.filestorage.asyncPassthrough.create({
-**request:** `Merge.DataPassthroughRequest` +**request:** `Merge.ats.ActivitiesListRequest`
@@ -179,7 +176,7 @@ await client.filestorage.asyncPassthrough.create({
-**requestOptions:** `AsyncPassthrough.RequestOptions` +**requestOptions:** `Activities.RequestOptions`
@@ -190,7 +187,7 @@ await client.filestorage.asyncPassthrough.create({
-
client.filestorage.asyncPassthrough.retrieve(asyncPassthroughReceiptId) -> Merge.AsyncPassthroughRetrieveResponse +
client.ats.activities.create({ ...params }) -> Merge.ActivityResponse
@@ -202,7 +199,7 @@ await client.filestorage.asyncPassthrough.create({
-Retrieves data from earlier async-passthrough POST request +Creates an `Activity` object with the given values.
@@ -218,7 +215,10 @@ Retrieves data from earlier async-passthrough POST request
```typescript -await client.filestorage.asyncPassthrough.retrieve("async_passthrough_receipt_id"); +await client.ats.activities.create({ + model: {}, + remoteUserId: "remote_user_id", +}); ```
@@ -234,7 +234,7 @@ await client.filestorage.asyncPassthrough.retrieve("async_passthrough_receipt_id
-**asyncPassthroughReceiptId:** `string` +**request:** `Merge.ats.ActivityEndpointRequest`
@@ -242,7 +242,7 @@ await client.filestorage.asyncPassthrough.retrieve("async_passthrough_receipt_id
-**requestOptions:** `AsyncPassthrough.RequestOptions` +**requestOptions:** `Activities.RequestOptions`
@@ -253,9 +253,7 @@ await client.filestorage.asyncPassthrough.retrieve("async_passthrough_receipt_id
-## Filestorage AuditTrail - -
client.filestorage.auditTrail.list({ ...params }) -> Merge.PaginatedAuditLogEventList +
client.ats.activities.retrieve(id, { ...params }) -> Merge.Activity
@@ -267,7 +265,7 @@ await client.filestorage.asyncPassthrough.retrieve("async_passthrough_receipt_id
-Gets a list of audit trail events. +Returns an `Activity` object with the given `id`.
@@ -283,7 +281,7 @@ Gets a list of audit trail events.
```typescript -await client.filestorage.auditTrail.list(); +await client.ats.activities.retrieve("id"); ```
@@ -299,7 +297,7 @@ await client.filestorage.auditTrail.list();
-**request:** `Merge.filestorage.AuditTrailListRequest` +**id:** `string`
@@ -307,7 +305,15 @@ await client.filestorage.auditTrail.list();
-**requestOptions:** `AuditTrail.RequestOptions` +**request:** `Merge.ats.ActivitiesRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `Activities.RequestOptions`
@@ -318,9 +324,7 @@ await client.filestorage.auditTrail.list();
-## Filestorage AvailableActions - -
client.filestorage.availableActions.retrieve() -> Merge.AvailableActions +
client.ats.activities.metaPostRetrieve() -> Merge.MetaResponse
@@ -332,7 +336,7 @@ await client.filestorage.auditTrail.list();
-Returns a list of models and actions available for an account. +Returns metadata for `Activity` POSTs.
@@ -348,7 +352,7 @@ Returns a list of models and actions available for an account.
```typescript -await client.filestorage.availableActions.retrieve(); +await client.ats.activities.metaPostRetrieve(); ```
@@ -364,7 +368,7 @@ await client.filestorage.availableActions.retrieve();
-**requestOptions:** `AvailableActions.RequestOptions` +**requestOptions:** `Activities.RequestOptions`
@@ -375,9 +379,9 @@ await client.filestorage.availableActions.retrieve();
-## Filestorage Scopes +## Ats Applications -
client.filestorage.scopes.defaultScopesRetrieve() -> Merge.CommonModelScopeApi +
client.ats.applications.list({ ...params }) -> Merge.PaginatedApplicationList
@@ -389,7 +393,7 @@ await client.filestorage.availableActions.retrieve();
-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). +Returns a list of `Application` objects.
@@ -405,7 +409,7 @@ Get the default permissions for Merge Common Models and fields across all Linked
```typescript -await client.filestorage.scopes.defaultScopesRetrieve(); +await client.ats.applications.list(); ```
@@ -421,7 +425,15 @@ await client.filestorage.scopes.defaultScopesRetrieve();
-**requestOptions:** `Scopes.RequestOptions` +**request:** `Merge.ats.ApplicationsListRequest` + +
+
+ +
+
+ +**requestOptions:** `Applications.RequestOptions`
@@ -432,7 +444,7 @@ await client.filestorage.scopes.defaultScopesRetrieve();
-
client.filestorage.scopes.linkedAccountScopesRetrieve() -> Merge.CommonModelScopeApi +
client.ats.applications.create({ ...params }) -> Merge.ApplicationResponse
@@ -444,7 +456,10 @@ await client.filestorage.scopes.defaultScopesRetrieve();
-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). +Creates an `Application` object with the given values. +For certain integrations, but not all, our API detects duplicate candidates and will associate applications with existing records in the third-party. New candidates are created and automatically linked to the application. + +See our [Help Center article](https://help.merge.dev/en/articles/10012366-updates-to-post-applications-oct-2024) for detailed support per integration.
@@ -460,7 +475,10 @@ Get all available permissions for Merge Common Models and fields for a single Li
```typescript -await client.filestorage.scopes.linkedAccountScopesRetrieve(); +await client.ats.applications.create({ + model: {}, + remoteUserId: "remote_user_id", +}); ```
@@ -476,7 +494,15 @@ await client.filestorage.scopes.linkedAccountScopesRetrieve();
-**requestOptions:** `Scopes.RequestOptions` +**request:** `Merge.ats.ApplicationEndpointRequest` + +
+
+ +
+
+ +**requestOptions:** `Applications.RequestOptions`
@@ -487,7 +513,7 @@ await client.filestorage.scopes.linkedAccountScopesRetrieve();
-
client.filestorage.scopes.linkedAccountScopesCreate({ ...params }) -> Merge.CommonModelScopeApi +
client.ats.applications.retrieve(id, { ...params }) -> Merge.Application
@@ -499,7 +525,7 @@ await client.filestorage.scopes.linkedAccountScopesRetrieve();
-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) +Returns an `Application` object with the given `id`.
@@ -515,33 +541,7 @@ Update permissions for any Common Model or field for a single Linked Account. An
```typescript -await client.filestorage.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, - }, - }, - }, - ], -}); +await client.ats.applications.retrieve("id"); ```
@@ -557,7 +557,7 @@ await client.filestorage.scopes.linkedAccountScopesCreate({
-**request:** `Merge.filestorage.LinkedAccountCommonModelScopeDeserializerRequest` +**id:** `string`
@@ -565,7 +565,15 @@ await client.filestorage.scopes.linkedAccountScopesCreate({
-**requestOptions:** `Scopes.RequestOptions` +**request:** `Merge.ats.ApplicationsRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `Applications.RequestOptions`
@@ -576,9 +584,7 @@ await client.filestorage.scopes.linkedAccountScopesCreate({
-## Filestorage DeleteAccount - -
client.filestorage.deleteAccount.delete() -> void +
client.ats.applications.changeStageCreate(id, { ...params }) -> Merge.ApplicationResponse
@@ -590,7 +596,7 @@ await client.filestorage.scopes.linkedAccountScopesCreate({
-Delete a linked account. +Updates the `current_stage` field of an `Application` object
@@ -606,7 +612,7 @@ Delete a linked account.
```typescript -await client.filestorage.deleteAccount.delete(); +await client.ats.applications.changeStageCreate("id"); ```
@@ -622,20 +628,34 @@ await client.filestorage.deleteAccount.delete();
-**requestOptions:** `DeleteAccount.RequestOptions` +**id:** `string`
+ +
+
+ +**request:** `Merge.ats.UpdateApplicationStageRequest` +
+
+
+ +**requestOptions:** `Applications.RequestOptions` + +
+
-
-## Filestorage Drives + + +
-
client.filestorage.drives.list({ ...params }) -> Merge.PaginatedDriveList +
client.ats.applications.metaPostRetrieve({ ...params }) -> Merge.MetaResponse
@@ -647,7 +667,7 @@ await client.filestorage.deleteAccount.delete();
-Returns a list of `Drive` objects. +Returns metadata for `Application` POSTs.
@@ -663,7 +683,7 @@ Returns a list of `Drive` objects.
```typescript -await client.filestorage.drives.list(); +await client.ats.applications.metaPostRetrieve(); ```
@@ -679,7 +699,7 @@ await client.filestorage.drives.list();
-**request:** `Merge.filestorage.DrivesListRequest` +**request:** `Merge.ats.ApplicationsMetaPostRetrieveRequest`
@@ -687,7 +707,7 @@ await client.filestorage.drives.list();
-**requestOptions:** `Drives.RequestOptions` +**requestOptions:** `Applications.RequestOptions`
@@ -698,7 +718,9 @@ await client.filestorage.drives.list();
-
client.filestorage.drives.retrieve(id, { ...params }) -> Merge.Drive +## Ats AsyncPassthrough + +
client.ats.asyncPassthrough.create({ ...params }) -> Merge.AsyncPassthroughReciept
@@ -710,7 +732,7 @@ await client.filestorage.drives.list();
-Returns a `Drive` object with the given `id`. +Asynchronously pull data from an endpoint not currently supported by Merge.
@@ -726,7 +748,10 @@ Returns a `Drive` object with the given `id`.
```typescript -await client.filestorage.drives.retrieve("id"); +await client.ats.asyncPassthrough.create({ + method: "GET", + path: "/scooters", +}); ```
@@ -742,15 +767,7 @@ await client.filestorage.drives.retrieve("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.filestorage.DrivesRetrieveRequest` +**request:** `Merge.DataPassthroughRequest`
@@ -758,7 +775,7 @@ await client.filestorage.drives.retrieve("id");
-**requestOptions:** `Drives.RequestOptions` +**requestOptions:** `AsyncPassthrough.RequestOptions`
@@ -769,9 +786,7 @@ await client.filestorage.drives.retrieve("id");
-## Filestorage FieldMapping - -
client.filestorage.fieldMapping.fieldMappingsRetrieve({ ...params }) -> Merge.FieldMappingApiInstanceResponse +
client.ats.asyncPassthrough.retrieve(asyncPassthroughReceiptId) -> Merge.AsyncPassthroughRetrieveResponse
@@ -783,7 +798,7 @@ await client.filestorage.drives.retrieve("id");
-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/). +Retrieves data from earlier async-passthrough POST request
@@ -799,7 +814,7 @@ Get all Field Mappings for this Linked Account. Field Mappings are mappings betw
```typescript -await client.filestorage.fieldMapping.fieldMappingsRetrieve(); +await client.ats.asyncPassthrough.retrieve("async_passthrough_receipt_id"); ```
@@ -815,7 +830,7 @@ await client.filestorage.fieldMapping.fieldMappingsRetrieve();
-**request:** `Merge.filestorage.FieldMappingsRetrieveRequest` +**asyncPassthroughReceiptId:** `string`
@@ -823,7 +838,7 @@ await client.filestorage.fieldMapping.fieldMappingsRetrieve();
-**requestOptions:** `FieldMapping.RequestOptions` +**requestOptions:** `AsyncPassthrough.RequestOptions`
@@ -834,7 +849,9 @@ await client.filestorage.fieldMapping.fieldMappingsRetrieve();
-
client.filestorage.fieldMapping.fieldMappingsCreate({ ...params }) -> Merge.FieldMappingInstanceResponse +## Ats Attachments + +
client.ats.attachments.list({ ...params }) -> Merge.PaginatedAttachmentList
@@ -846,7 +863,7 @@ await client.filestorage.fieldMapping.fieldMappingsRetrieve();
-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. +Returns a list of `Attachment` objects.
@@ -862,14 +879,7 @@ Create new Field Mappings that will be available after the next scheduled sync.
```typescript -await client.filestorage.fieldMapping.fieldMappingsCreate({ - 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", -}); +await client.ats.attachments.list(); ```
@@ -885,7 +895,7 @@ await client.filestorage.fieldMapping.fieldMappingsCreate({
-**request:** `Merge.filestorage.CreateFieldMappingRequest` +**request:** `Merge.ats.AttachmentsListRequest`
@@ -893,7 +903,7 @@ await client.filestorage.fieldMapping.fieldMappingsCreate({
-**requestOptions:** `FieldMapping.RequestOptions` +**requestOptions:** `Attachments.RequestOptions`
@@ -904,7 +914,7 @@ await client.filestorage.fieldMapping.fieldMappingsCreate({
-
client.filestorage.fieldMapping.fieldMappingsDestroy(fieldMappingId) -> Merge.FieldMappingInstanceResponse +
client.ats.attachments.create({ ...params }) -> Merge.AttachmentResponse
@@ -916,7 +926,7 @@ await client.filestorage.fieldMapping.fieldMappingsCreate({
-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. +Creates an `Attachment` object with the given values.
@@ -932,7 +942,10 @@ Deletes Field Mappings for a Linked Account. All data related to this Field Mapp
```typescript -await client.filestorage.fieldMapping.fieldMappingsDestroy("field_mapping_id"); +await client.ats.attachments.create({ + model: {}, + remoteUserId: "remote_user_id", +}); ```
@@ -948,7 +961,7 @@ await client.filestorage.fieldMapping.fieldMappingsDestroy("field_mapping_id");
-**fieldMappingId:** `string` +**request:** `Merge.ats.AttachmentEndpointRequest`
@@ -956,7 +969,7 @@ await client.filestorage.fieldMapping.fieldMappingsDestroy("field_mapping_id");
-**requestOptions:** `FieldMapping.RequestOptions` +**requestOptions:** `Attachments.RequestOptions`
@@ -967,7 +980,7 @@ await client.filestorage.fieldMapping.fieldMappingsDestroy("field_mapping_id");
-
client.filestorage.fieldMapping.fieldMappingsPartialUpdate(fieldMappingId, { ...params }) -> Merge.FieldMappingInstanceResponse +
client.ats.attachments.retrieve(id, { ...params }) -> Merge.Attachment
@@ -979,7 +992,7 @@ await client.filestorage.fieldMapping.fieldMappingsDestroy("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. +Returns an `Attachment` object with the given `id`.
@@ -995,7 +1008,7 @@ Create or update existing Field Mappings for a Linked Account. Changes will be r
```typescript -await client.filestorage.fieldMapping.fieldMappingsPartialUpdate("field_mapping_id"); +await client.ats.attachments.retrieve("id"); ```
@@ -1011,7 +1024,7 @@ await client.filestorage.fieldMapping.fieldMappingsPartialUpdate("field_mapping_
-**fieldMappingId:** `string` +**id:** `string`
@@ -1019,7 +1032,7 @@ await client.filestorage.fieldMapping.fieldMappingsPartialUpdate("field_mapping_
-**request:** `Merge.filestorage.PatchedEditFieldMappingRequest` +**request:** `Merge.ats.AttachmentsRetrieveRequest`
@@ -1027,7 +1040,7 @@ await client.filestorage.fieldMapping.fieldMappingsPartialUpdate("field_mapping_
-**requestOptions:** `FieldMapping.RequestOptions` +**requestOptions:** `Attachments.RequestOptions`
@@ -1038,7 +1051,7 @@ await client.filestorage.fieldMapping.fieldMappingsPartialUpdate("field_mapping_
-
client.filestorage.fieldMapping.remoteFieldsRetrieve({ ...params }) -> Merge.RemoteFieldApiResponse +
client.ats.attachments.metaPostRetrieve() -> Merge.MetaResponse
@@ -1050,7 +1063,7 @@ await client.filestorage.fieldMapping.fieldMappingsPartialUpdate("field_mapping_
-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/). +Returns metadata for `Attachment` POSTs.
@@ -1066,7 +1079,7 @@ Get all remote fields for a Linked Account. Remote fields are third-party fields
```typescript -await client.filestorage.fieldMapping.remoteFieldsRetrieve(); +await client.ats.attachments.metaPostRetrieve(); ```
@@ -1082,15 +1095,72 @@ await client.filestorage.fieldMapping.remoteFieldsRetrieve();
-**request:** `Merge.filestorage.RemoteFieldsRetrieveRequest` +**requestOptions:** `Attachments.RequestOptions` + +
+
+ +
+ + + +
+ +## Ats AuditTrail + +
client.ats.auditTrail.list({ ...params }) -> Merge.PaginatedAuditLogEventList +
+
+ +#### 📝 Description + +
+
+ +
+
+ +Gets a list of audit trail events.
+
+
+ +#### 🔌 Usage
-**requestOptions:** `FieldMapping.RequestOptions` +
+
+ +```typescript +await client.ats.auditTrail.list(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**request:** `Merge.ats.AuditTrailListRequest` + +
+
+ +
+
+ +**requestOptions:** `AuditTrail.RequestOptions`
@@ -1101,7 +1171,9 @@ await client.filestorage.fieldMapping.remoteFieldsRetrieve();
-
client.filestorage.fieldMapping.targetFieldsRetrieve() -> Merge.ExternalTargetFieldApiResponse +## Ats AvailableActions + +
client.ats.availableActions.retrieve() -> Merge.AvailableActions
@@ -1113,7 +1185,7 @@ await client.filestorage.fieldMapping.remoteFieldsRetrieve();
-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/). +Returns a list of models and actions available for an account.
@@ -1129,7 +1201,7 @@ Get all organization-wide Target Fields, this will not include any Linked Accoun
```typescript -await client.filestorage.fieldMapping.targetFieldsRetrieve(); +await client.ats.availableActions.retrieve(); ```
@@ -1145,7 +1217,7 @@ await client.filestorage.fieldMapping.targetFieldsRetrieve();
-**requestOptions:** `FieldMapping.RequestOptions` +**requestOptions:** `AvailableActions.RequestOptions`
@@ -1156,9 +1228,9 @@ await client.filestorage.fieldMapping.targetFieldsRetrieve();
-## Filestorage Files +## Ats Candidates -
client.filestorage.files.list({ ...params }) -> Merge.PaginatedFileList +
client.ats.candidates.list({ ...params }) -> Merge.PaginatedCandidateList
@@ -1170,7 +1242,7 @@ await client.filestorage.fieldMapping.targetFieldsRetrieve();
-Returns a list of `File` objects. +Returns a list of `Candidate` objects.
@@ -1186,7 +1258,7 @@ Returns a list of `File` objects.
```typescript -await client.filestorage.files.list(); +await client.ats.candidates.list(); ```
@@ -1202,7 +1274,7 @@ await client.filestorage.files.list();
-**request:** `Merge.filestorage.FilesListRequest` +**request:** `Merge.ats.CandidatesListRequest`
@@ -1210,7 +1282,7 @@ await client.filestorage.files.list();
-**requestOptions:** `Files.RequestOptions` +**requestOptions:** `Candidates.RequestOptions`
@@ -1221,7 +1293,7 @@ await client.filestorage.files.list();
-
client.filestorage.files.create({ ...params }) -> Merge.FileStorageFileResponse +
client.ats.candidates.create({ ...params }) -> Merge.CandidateResponse
@@ -1233,7 +1305,7 @@ await client.filestorage.files.list();
-Creates a `File` object with the given values. +Creates a `Candidate` object with the given values.
@@ -1249,8 +1321,9 @@ Creates a `File` object with the given values.
```typescript -await client.filestorage.files.create({ +await client.ats.candidates.create({ model: {}, + remoteUserId: "remote_user_id", }); ``` @@ -1267,7 +1340,7 @@ await client.filestorage.files.create({
-**request:** `Merge.filestorage.FileStorageFileEndpointRequest` +**request:** `Merge.ats.CandidateEndpointRequest`
@@ -1275,7 +1348,7 @@ await client.filestorage.files.create({
-**requestOptions:** `Files.RequestOptions` +**requestOptions:** `Candidates.RequestOptions`
@@ -1286,7 +1359,7 @@ await client.filestorage.files.create({
-
client.filestorage.files.retrieve(id, { ...params }) -> Merge.File_ +
client.ats.candidates.retrieve(id, { ...params }) -> Merge.Candidate
@@ -1298,7 +1371,7 @@ await client.filestorage.files.create({
-Returns a `File` object with the given `id`. +Returns a `Candidate` object with the given `id`.
@@ -1314,7 +1387,7 @@ Returns a `File` object with the given `id`.
```typescript -await client.filestorage.files.retrieve("id"); +await client.ats.candidates.retrieve("id"); ```
@@ -1338,7 +1411,7 @@ await client.filestorage.files.retrieve("id");
-**request:** `Merge.filestorage.FilesRetrieveRequest` +**request:** `Merge.ats.CandidatesRetrieveRequest`
@@ -1346,7 +1419,7 @@ await client.filestorage.files.retrieve("id");
-**requestOptions:** `Files.RequestOptions` +**requestOptions:** `Candidates.RequestOptions`
@@ -1357,7 +1430,7 @@ await client.filestorage.files.retrieve("id");
-
client.filestorage.files.downloadRetrieve(id, { ...params }) -> stream.Readable +
client.ats.candidates.partialUpdate(id, { ...params }) -> Merge.CandidateResponse
@@ -1369,7 +1442,7 @@ await client.filestorage.files.retrieve("id");
-Returns the `File` content with the given `id` as a stream of bytes. +Updates a `Candidate` object with the given `id`.
@@ -1385,9 +1458,9 @@ Returns the `File` content with the given `id` as a stream of bytes.
```typescript -await client.filestorage.files.downloadRetrieve("string", { - includeShellData: true, - mimeType: "string", +await client.ats.candidates.partialUpdate("id", { + model: {}, + remoteUserId: "remote_user_id", }); ``` @@ -1412,7 +1485,7 @@ await client.filestorage.files.downloadRetrieve("string", {
-**request:** `Merge.filestorage.FilesDownloadRetrieveRequest` +**request:** `Merge.ats.PatchedCandidateEndpointRequest`
@@ -1420,7 +1493,7 @@ await client.filestorage.files.downloadRetrieve("string", {
-**requestOptions:** `Files.RequestOptions` +**requestOptions:** `Candidates.RequestOptions`
@@ -1431,7 +1504,7 @@ await client.filestorage.files.downloadRetrieve("string", {
-
client.filestorage.files.downloadRequestMetaRetrieve(id, { ...params }) -> Merge.DownloadRequestMeta +
client.ats.candidates.ignoreCreate(modelId, { ...params }) -> void
@@ -1443,7 +1516,7 @@ await client.filestorage.files.downloadRetrieve("string", {
-Returns metadata to construct an authenticated file download request for a singular file, allowing you to download file directly from the third-party. +Ignores a specific row based on the `model_id` in the url. These records will have their properties set to null, and will not be updated in future syncs. The "reason" and "message" fields in the request body will be stored for audit purposes.
@@ -1459,7 +1532,9 @@ Returns metadata to construct an authenticated file download request for a singu
```typescript -await client.filestorage.files.downloadRequestMetaRetrieve("id"); +await client.ats.candidates.ignoreCreate("model_id", { + reason: "GENERAL_CUSTOMER_REQUEST", +}); ```
@@ -1475,7 +1550,7 @@ await client.filestorage.files.downloadRequestMetaRetrieve("id");
-**id:** `string` +**modelId:** `string`
@@ -1483,7 +1558,7 @@ await client.filestorage.files.downloadRequestMetaRetrieve("id");
-**request:** `Merge.filestorage.FilesDownloadRequestMetaRetrieveRequest` +**request:** `Merge.ats.IgnoreCommonModelRequest`
@@ -1491,7 +1566,7 @@ await client.filestorage.files.downloadRequestMetaRetrieve("id");
-**requestOptions:** `Files.RequestOptions` +**requestOptions:** `Candidates.RequestOptions`
@@ -1502,7 +1577,7 @@ await client.filestorage.files.downloadRequestMetaRetrieve("id");
-
client.filestorage.files.downloadRequestMetaList({ ...params }) -> Merge.PaginatedDownloadRequestMetaList +
client.ats.candidates.metaPatchRetrieve(id) -> Merge.MetaResponse
@@ -1514,7 +1589,7 @@ await client.filestorage.files.downloadRequestMetaRetrieve("id");
-Returns metadata to construct authenticated file download requests, allowing you to download files directly from the third-party. +Returns metadata for `Candidate` PATCHs.
@@ -1530,7 +1605,7 @@ Returns metadata to construct authenticated file download requests, allowing you
```typescript -await client.filestorage.files.downloadRequestMetaList(); +await client.ats.candidates.metaPatchRetrieve("id"); ```
@@ -1546,7 +1621,7 @@ await client.filestorage.files.downloadRequestMetaList();
-**request:** `Merge.filestorage.FilesDownloadRequestMetaListRequest` +**id:** `string`
@@ -1554,7 +1629,7 @@ await client.filestorage.files.downloadRequestMetaList();
-**requestOptions:** `Files.RequestOptions` +**requestOptions:** `Candidates.RequestOptions`
@@ -1565,7 +1640,7 @@ await client.filestorage.files.downloadRequestMetaList();
-
client.filestorage.files.metaPostRetrieve() -> Merge.MetaResponse +
client.ats.candidates.metaPostRetrieve() -> Merge.MetaResponse
@@ -1577,7 +1652,7 @@ await client.filestorage.files.downloadRequestMetaList();
-Returns metadata for `FileStorageFile` POSTs. +Returns metadata for `Candidate` POSTs.
@@ -1593,7 +1668,7 @@ Returns metadata for `FileStorageFile` POSTs.
```typescript -await client.filestorage.files.metaPostRetrieve(); +await client.ats.candidates.metaPostRetrieve(); ```
@@ -1609,7 +1684,7 @@ await client.filestorage.files.metaPostRetrieve();
-**requestOptions:** `Files.RequestOptions` +**requestOptions:** `Candidates.RequestOptions`
@@ -1620,9 +1695,9 @@ await client.filestorage.files.metaPostRetrieve();
-## Filestorage Folders +## Ats Scopes -
client.filestorage.folders.list({ ...params }) -> Merge.PaginatedFolderList +
client.ats.scopes.defaultScopesRetrieve() -> Merge.CommonModelScopeApi
@@ -1634,7 +1709,7 @@ await client.filestorage.files.metaPostRetrieve();
-Returns a list of `Folder` objects. +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).
@@ -1650,7 +1725,7 @@ Returns a list of `Folder` objects.
```typescript -await client.filestorage.folders.list(); +await client.ats.scopes.defaultScopesRetrieve(); ```
@@ -1666,15 +1741,7 @@ await client.filestorage.folders.list();
-**request:** `Merge.filestorage.FoldersListRequest` - -
-
- -
-
- -**requestOptions:** `Folders.RequestOptions` +**requestOptions:** `Scopes.RequestOptions`
@@ -1685,7 +1752,7 @@ await client.filestorage.folders.list();
-
client.filestorage.folders.create({ ...params }) -> Merge.FileStorageFolderResponse +
client.ats.scopes.linkedAccountScopesRetrieve() -> Merge.CommonModelScopeApi
@@ -1697,7 +1764,7 @@ await client.filestorage.folders.list();
-Creates a `Folder` object with the given values. +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).
@@ -1713,9 +1780,7 @@ Creates a `Folder` object with the given values.
```typescript -await client.filestorage.folders.create({ - model: {}, -}); +await client.ats.scopes.linkedAccountScopesRetrieve(); ```
@@ -1731,15 +1796,7 @@ await client.filestorage.folders.create({
-**request:** `Merge.filestorage.FileStorageFolderEndpointRequest` - -
-
- -
-
- -**requestOptions:** `Folders.RequestOptions` +**requestOptions:** `Scopes.RequestOptions`
@@ -1750,7 +1807,7 @@ await client.filestorage.folders.create({
-
client.filestorage.folders.retrieve(id, { ...params }) -> Merge.Folder +
client.ats.scopes.linkedAccountScopesCreate({ ...params }) -> Merge.CommonModelScopeApi
@@ -1762,7 +1819,7 @@ await client.filestorage.folders.create({
-Returns a `Folder` object with the given `id`. +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)
@@ -1778,7 +1835,33 @@ Returns a `Folder` object with the given `id`.
```typescript -await client.filestorage.folders.retrieve("id"); +await client.ats.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, + }, + }, + }, + ], +}); ```
@@ -1794,15 +1877,7 @@ await client.filestorage.folders.retrieve("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.filestorage.FoldersRetrieveRequest` +**request:** `Merge.ats.LinkedAccountCommonModelScopeDeserializerRequest`
@@ -1810,7 +1885,7 @@ await client.filestorage.folders.retrieve("id");
-**requestOptions:** `Folders.RequestOptions` +**requestOptions:** `Scopes.RequestOptions`
@@ -1821,7 +1896,9 @@ await client.filestorage.folders.retrieve("id");
-
client.filestorage.folders.metaPostRetrieve() -> Merge.MetaResponse +## Ats DeleteAccount + +
client.ats.deleteAccount.delete() -> void
@@ -1833,7 +1910,7 @@ await client.filestorage.folders.retrieve("id");
-Returns metadata for `FileStorageFolder` POSTs. +Delete a linked account.
@@ -1849,7 +1926,7 @@ Returns metadata for `FileStorageFolder` POSTs.
```typescript -await client.filestorage.folders.metaPostRetrieve(); +await client.ats.deleteAccount.delete(); ```
@@ -1865,7 +1942,7 @@ await client.filestorage.folders.metaPostRetrieve();
-**requestOptions:** `Folders.RequestOptions` +**requestOptions:** `DeleteAccount.RequestOptions`
@@ -1876,9 +1953,9 @@ await client.filestorage.folders.metaPostRetrieve();
-## Filestorage GenerateKey +## Ats Departments -
client.filestorage.generateKey.create({ ...params }) -> Merge.RemoteKey +
client.ats.departments.list({ ...params }) -> Merge.PaginatedDepartmentList
@@ -1890,7 +1967,7 @@ await client.filestorage.folders.metaPostRetrieve();
-Create a remote key. +Returns a list of `Department` objects.
@@ -1906,9 +1983,7 @@ Create a remote key.
```typescript -await client.filestorage.generateKey.create({ - name: "Remote Deployment Key 1", -}); +await client.ats.departments.list(); ```
@@ -1924,7 +1999,7 @@ await client.filestorage.generateKey.create({
-**request:** `Merge.filestorage.GenerateRemoteKeyRequest` +**request:** `Merge.ats.DepartmentsListRequest`
@@ -1932,7 +2007,7 @@ await client.filestorage.generateKey.create({
-**requestOptions:** `GenerateKey.RequestOptions` +**requestOptions:** `Departments.RequestOptions`
@@ -1943,9 +2018,7 @@ await client.filestorage.generateKey.create({
-## Filestorage Groups - -
client.filestorage.groups.list({ ...params }) -> Merge.PaginatedGroupList +
client.ats.departments.retrieve(id, { ...params }) -> Merge.Department
@@ -1957,7 +2030,7 @@ await client.filestorage.generateKey.create({
-Returns a list of `Group` objects. +Returns a `Department` object with the given `id`.
@@ -1973,7 +2046,7 @@ Returns a list of `Group` objects.
```typescript -await client.filestorage.groups.list(); +await client.ats.departments.retrieve("id"); ```
@@ -1989,7 +2062,7 @@ await client.filestorage.groups.list();
-**request:** `Merge.filestorage.GroupsListRequest` +**id:** `string`
@@ -1997,7 +2070,15 @@ await client.filestorage.groups.list();
-**requestOptions:** `Groups.RequestOptions` +**request:** `Merge.ats.DepartmentsRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `Departments.RequestOptions`
@@ -2008,7 +2089,9 @@ await client.filestorage.groups.list();
-
client.filestorage.groups.retrieve(id, { ...params }) -> Merge.Group +## Ats Eeocs + +
client.ats.eeocs.list({ ...params }) -> Merge.PaginatedEeocList
@@ -2020,7 +2103,7 @@ await client.filestorage.groups.list();
-Returns a `Group` object with the given `id`. +Returns a list of `EEOC` objects.
@@ -2036,7 +2119,7 @@ Returns a `Group` object with the given `id`.
```typescript -await client.filestorage.groups.retrieve("id"); +await client.ats.eeocs.list(); ```
@@ -2052,15 +2135,7 @@ await client.filestorage.groups.retrieve("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.filestorage.GroupsRetrieveRequest` +**request:** `Merge.ats.EeocsListRequest`
@@ -2068,7 +2143,7 @@ await client.filestorage.groups.retrieve("id");
-**requestOptions:** `Groups.RequestOptions` +**requestOptions:** `Eeocs.RequestOptions`
@@ -2079,9 +2154,7 @@ await client.filestorage.groups.retrieve("id");
-## Filestorage Issues - -
client.filestorage.issues.list({ ...params }) -> Merge.PaginatedIssueList +
client.ats.eeocs.retrieve(id, { ...params }) -> Merge.Eeoc
@@ -2093,7 +2166,7 @@ await client.filestorage.groups.retrieve("id");
-Gets all issues for Organization. +Returns an `EEOC` object with the given `id`.
@@ -2109,7 +2182,7 @@ Gets all issues for Organization.
```typescript -await client.filestorage.issues.list(); +await client.ats.eeocs.retrieve("id"); ```
@@ -2125,7 +2198,7 @@ await client.filestorage.issues.list();
-**request:** `Merge.filestorage.IssuesListRequest` +**id:** `string`
@@ -2133,7 +2206,15 @@ await client.filestorage.issues.list();
-**requestOptions:** `Issues.RequestOptions` +**request:** `Merge.ats.EeocsRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `Eeocs.RequestOptions`
@@ -2144,7 +2225,9 @@ await client.filestorage.issues.list();
-
client.filestorage.issues.retrieve(id) -> Merge.Issue +## Ats FieldMapping + +
client.ats.fieldMapping.fieldMappingsRetrieve({ ...params }) -> Merge.FieldMappingApiInstanceResponse
@@ -2156,7 +2239,7 @@ await client.filestorage.issues.list();
-Get a specific issue. +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/).
@@ -2172,7 +2255,7 @@ Get a specific issue.
```typescript -await client.filestorage.issues.retrieve("id"); +await client.ats.fieldMapping.fieldMappingsRetrieve(); ```
@@ -2188,7 +2271,7 @@ await client.filestorage.issues.retrieve("id");
-**id:** `string` +**request:** `Merge.ats.FieldMappingsRetrieveRequest`
@@ -2196,7 +2279,7 @@ await client.filestorage.issues.retrieve("id");
-**requestOptions:** `Issues.RequestOptions` +**requestOptions:** `FieldMapping.RequestOptions`
@@ -2207,9 +2290,7 @@ await client.filestorage.issues.retrieve("id");
-## Filestorage LinkToken - -
client.filestorage.linkToken.create({ ...params }) -> Merge.LinkToken +
client.ats.fieldMapping.fieldMappingsCreate({ ...params }) -> Merge.FieldMappingInstanceResponse
@@ -2221,7 +2302,7 @@ await client.filestorage.issues.retrieve("id");
-Creates a link token to be used when linking a new end user. +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.
@@ -2237,11 +2318,13 @@ Creates a link token to be used when linking a new end user.
```typescript -await client.filestorage.linkToken.create({ - endUserEmailAddress: "example@gmail.com", - endUserOrganizationName: "Test Organization", - endUserOriginId: "12345", - categories: ["hris", "ats"], +await client.ats.fieldMapping.fieldMappingsCreate({ + 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", }); ``` @@ -2258,7 +2341,7 @@ await client.filestorage.linkToken.create({
-**request:** `Merge.filestorage.EndUserDetailsRequest` +**request:** `Merge.ats.CreateFieldMappingRequest`
@@ -2266,7 +2349,7 @@ await client.filestorage.linkToken.create({
-**requestOptions:** `LinkToken.RequestOptions` +**requestOptions:** `FieldMapping.RequestOptions`
@@ -2277,9 +2360,7 @@ await client.filestorage.linkToken.create({
-## Filestorage LinkedAccounts - -
client.filestorage.linkedAccounts.list({ ...params }) -> Merge.PaginatedAccountDetailsAndActionsList +
client.ats.fieldMapping.fieldMappingsDestroy(fieldMappingId) -> Merge.FieldMappingInstanceResponse
@@ -2291,7 +2372,7 @@ await client.filestorage.linkToken.create({
-List linked accounts for your organization. +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.
@@ -2307,7 +2388,7 @@ List linked accounts for your organization.
```typescript -await client.filestorage.linkedAccounts.list(); +await client.ats.fieldMapping.fieldMappingsDestroy("field_mapping_id"); ```
@@ -2323,7 +2404,7 @@ await client.filestorage.linkedAccounts.list();
-**request:** `Merge.filestorage.LinkedAccountsListRequest` +**fieldMappingId:** `string`
@@ -2331,7 +2412,7 @@ await client.filestorage.linkedAccounts.list();
-**requestOptions:** `LinkedAccounts.RequestOptions` +**requestOptions:** `FieldMapping.RequestOptions`
@@ -2342,9 +2423,7 @@ await client.filestorage.linkedAccounts.list();
-## Filestorage Passthrough - -
client.filestorage.passthrough.create({ ...params }) -> Merge.RemoteResponse +
client.ats.fieldMapping.fieldMappingsPartialUpdate(fieldMappingId, { ...params }) -> Merge.FieldMappingInstanceResponse
@@ -2356,7 +2435,7 @@ await client.filestorage.linkedAccounts.list();
-Pull data from an endpoint not currently supported by Merge. +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.
@@ -2372,10 +2451,7 @@ Pull data from an endpoint not currently supported by Merge.
```typescript -await client.filestorage.passthrough.create({ - method: "GET", - path: "/scooters", -}); +await client.ats.fieldMapping.fieldMappingsPartialUpdate("field_mapping_id"); ```
@@ -2391,7 +2467,7 @@ await client.filestorage.passthrough.create({
-**request:** `Merge.DataPassthroughRequest` +**fieldMappingId:** `string`
@@ -2399,7 +2475,15 @@ await client.filestorage.passthrough.create({
-**requestOptions:** `Passthrough.RequestOptions` +**request:** `Merge.ats.PatchedEditFieldMappingRequest` + +
+
+ +
+
+ +**requestOptions:** `FieldMapping.RequestOptions`
@@ -2410,9 +2494,7 @@ await client.filestorage.passthrough.create({
-## Filestorage RegenerateKey - -
client.filestorage.regenerateKey.create({ ...params }) -> Merge.RemoteKey +
client.ats.fieldMapping.remoteFieldsRetrieve({ ...params }) -> Merge.RemoteFieldApiResponse
@@ -2424,7 +2506,7 @@ await client.filestorage.passthrough.create({
-Exchange remote keys. +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/).
@@ -2440,9 +2522,7 @@ Exchange remote keys.
```typescript -await client.filestorage.regenerateKey.create({ - name: "Remote Deployment Key 1", -}); +await client.ats.fieldMapping.remoteFieldsRetrieve(); ```
@@ -2458,7 +2538,7 @@ await client.filestorage.regenerateKey.create({
-**request:** `Merge.filestorage.RemoteKeyForRegenerationRequest` +**request:** `Merge.ats.RemoteFieldsRetrieveRequest`
@@ -2466,7 +2546,7 @@ await client.filestorage.regenerateKey.create({
-**requestOptions:** `RegenerateKey.RequestOptions` +**requestOptions:** `FieldMapping.RequestOptions`
@@ -2477,9 +2557,7 @@ await client.filestorage.regenerateKey.create({
-## Filestorage SyncStatus - -
client.filestorage.syncStatus.list({ ...params }) -> Merge.PaginatedSyncStatusList +
client.ats.fieldMapping.targetFieldsRetrieve() -> Merge.ExternalTargetFieldApiResponse
@@ -2491,7 +2569,7 @@ await client.filestorage.regenerateKey.create({
-Get syncing status. Possible values: `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). +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/).
@@ -2507,7 +2585,7 @@ Get syncing status. Possible values: `DISABLED`, `DONE`, `FAILED`, `PARTIALLY_SY
```typescript -await client.filestorage.syncStatus.list(); +await client.ats.fieldMapping.targetFieldsRetrieve(); ```
@@ -2523,15 +2601,7 @@ await client.filestorage.syncStatus.list();
-**request:** `Merge.filestorage.SyncStatusListRequest` - -
-
- -
-
- -**requestOptions:** `SyncStatus.RequestOptions` +**requestOptions:** `FieldMapping.RequestOptions`
@@ -2542,9 +2612,9 @@ await client.filestorage.syncStatus.list();
-## Filestorage ForceResync +## Ats GenerateKey -
client.filestorage.forceResync.syncStatusResyncCreate() -> Merge.SyncStatus[] +
client.ats.generateKey.create({ ...params }) -> Merge.RemoteKey
@@ -2556,7 +2626,7 @@ await client.filestorage.syncStatus.list();
-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. +Create a remote key.
@@ -2572,7 +2642,9 @@ Force re-sync of all models. This endpoint is available for monthly, quarterly,
```typescript -await client.filestorage.forceResync.syncStatusResyncCreate(); +await client.ats.generateKey.create({ + name: "Remote Deployment Key 1", +}); ```
@@ -2588,7 +2660,15 @@ await client.filestorage.forceResync.syncStatusResyncCreate();
-**requestOptions:** `ForceResync.RequestOptions` +**request:** `Merge.ats.GenerateRemoteKeyRequest` + +
+
+ +
+
+ +**requestOptions:** `GenerateKey.RequestOptions`
@@ -2599,9 +2679,9 @@ await client.filestorage.forceResync.syncStatusResyncCreate();
-## Filestorage Users +## Ats Interviews -
client.filestorage.users.list({ ...params }) -> Merge.PaginatedUserList +
client.ats.interviews.list({ ...params }) -> Merge.PaginatedScheduledInterviewList
@@ -2613,7 +2693,7 @@ await client.filestorage.forceResync.syncStatusResyncCreate();
-Returns a list of `User` objects. +Returns a list of `ScheduledInterview` objects.
@@ -2629,7 +2709,7 @@ Returns a list of `User` objects.
```typescript -await client.filestorage.users.list(); +await client.ats.interviews.list(); ```
@@ -2645,7 +2725,7 @@ await client.filestorage.users.list();
-**request:** `Merge.filestorage.UsersListRequest` +**request:** `Merge.ats.InterviewsListRequest`
@@ -2653,7 +2733,7 @@ await client.filestorage.users.list();
-**requestOptions:** `Users.RequestOptions` +**requestOptions:** `Interviews.RequestOptions`
@@ -2664,7 +2744,7 @@ await client.filestorage.users.list();
-
client.filestorage.users.retrieve(id, { ...params }) -> Merge.User +
client.ats.interviews.create({ ...params }) -> Merge.ScheduledInterviewResponse
@@ -2676,7 +2756,7 @@ await client.filestorage.users.list();
-Returns a `User` object with the given `id`. +Creates a `ScheduledInterview` object with the given values.
@@ -2692,7 +2772,10 @@ Returns a `User` object with the given `id`.
```typescript -await client.filestorage.users.retrieve("id"); +await client.ats.interviews.create({ + model: {}, + remoteUserId: "remote_user_id", +}); ```
@@ -2708,15 +2791,7 @@ await client.filestorage.users.retrieve("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.filestorage.UsersRetrieveRequest` +**request:** `Merge.ats.ScheduledInterviewEndpointRequest`
@@ -2724,7 +2799,7 @@ await client.filestorage.users.retrieve("id");
-**requestOptions:** `Users.RequestOptions` +**requestOptions:** `Interviews.RequestOptions`
@@ -2735,9 +2810,7 @@ await client.filestorage.users.retrieve("id");
-## Filestorage WebhookReceivers - -
client.filestorage.webhookReceivers.list() -> Merge.WebhookReceiver[] +
client.ats.interviews.retrieve(id, { ...params }) -> Merge.ScheduledInterview
@@ -2749,7 +2822,7 @@ await client.filestorage.users.retrieve("id");
-Returns a list of `WebhookReceiver` objects. +Returns a `ScheduledInterview` object with the given `id`.
@@ -2765,7 +2838,7 @@ Returns a list of `WebhookReceiver` objects.
```typescript -await client.filestorage.webhookReceivers.list(); +await client.ats.interviews.retrieve("id"); ```
@@ -2781,7 +2854,23 @@ await client.filestorage.webhookReceivers.list();
-**requestOptions:** `WebhookReceivers.RequestOptions` +**id:** `string` + +
+
+ +
+
+ +**request:** `Merge.ats.InterviewsRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `Interviews.RequestOptions`
@@ -2792,7 +2881,7 @@ await client.filestorage.webhookReceivers.list();
-
client.filestorage.webhookReceivers.create({ ...params }) -> Merge.WebhookReceiver +
client.ats.interviews.metaPostRetrieve() -> Merge.MetaResponse
@@ -2804,7 +2893,7 @@ await client.filestorage.webhookReceivers.list();
-Creates a `WebhookReceiver` object with the given values. +Returns metadata for `ScheduledInterview` POSTs.
@@ -2820,10 +2909,7 @@ Creates a `WebhookReceiver` object with the given values.
```typescript -await client.filestorage.webhookReceivers.create({ - event: "event", - isActive: true, -}); +await client.ats.interviews.metaPostRetrieve(); ```
@@ -2839,15 +2925,7 @@ await client.filestorage.webhookReceivers.create({
-**request:** `Merge.filestorage.WebhookReceiverRequest` - -
-
- -
-
- -**requestOptions:** `WebhookReceivers.RequestOptions` +**requestOptions:** `Interviews.RequestOptions`
@@ -2858,9 +2936,9 @@ await client.filestorage.webhookReceivers.create({
-## Ats AccountDetails +## Ats Issues -
client.ats.accountDetails.retrieve() -> Merge.AccountDetails +
client.ats.issues.list({ ...params }) -> Merge.PaginatedIssueList
@@ -2872,7 +2950,7 @@ await client.filestorage.webhookReceivers.create({
-Get details for a linked account. +Gets all issues for Organization.
@@ -2888,7 +2966,7 @@ Get details for a linked account.
```typescript -await client.ats.accountDetails.retrieve(); +await client.ats.issues.list(); ```
@@ -2904,7 +2982,15 @@ await client.ats.accountDetails.retrieve();
-**requestOptions:** `AccountDetails.RequestOptions` +**request:** `Merge.ats.IssuesListRequest` + +
+
+ +
+
+ +**requestOptions:** `Issues.RequestOptions`
@@ -2915,9 +3001,7 @@ await client.ats.accountDetails.retrieve();
-## Ats AccountToken - -
client.ats.accountToken.retrieve(publicToken) -> Merge.AccountToken +
client.ats.issues.retrieve(id) -> Merge.Issue
@@ -2929,7 +3013,7 @@ await client.ats.accountDetails.retrieve();
-Returns the account token for the end user with the provided public token. +Get a specific issue.
@@ -2945,7 +3029,7 @@ Returns the account token for the end user with the provided public token.
```typescript -await client.ats.accountToken.retrieve("public_token"); +await client.ats.issues.retrieve("id"); ```
@@ -2961,7 +3045,7 @@ await client.ats.accountToken.retrieve("public_token");
-**publicToken:** `string` +**id:** `string`
@@ -2969,7 +3053,7 @@ await client.ats.accountToken.retrieve("public_token");
-**requestOptions:** `AccountToken.RequestOptions` +**requestOptions:** `Issues.RequestOptions`
@@ -2980,9 +3064,9 @@ await client.ats.accountToken.retrieve("public_token");
-## Ats Activities +## Ats JobInterviewStages -
client.ats.activities.list({ ...params }) -> Merge.PaginatedActivityList +
client.ats.jobInterviewStages.list({ ...params }) -> Merge.PaginatedJobInterviewStageList
@@ -2994,7 +3078,7 @@ await client.ats.accountToken.retrieve("public_token");
-Returns a list of `Activity` objects. +Returns a list of `JobInterviewStage` objects.
@@ -3010,7 +3094,7 @@ Returns a list of `Activity` objects.
```typescript -await client.ats.activities.list(); +await client.ats.jobInterviewStages.list(); ```
@@ -3026,7 +3110,7 @@ await client.ats.activities.list();
-**request:** `Merge.ats.ActivitiesListRequest` +**request:** `Merge.ats.JobInterviewStagesListRequest`
@@ -3034,7 +3118,7 @@ await client.ats.activities.list();
-**requestOptions:** `Activities.RequestOptions` +**requestOptions:** `JobInterviewStages.RequestOptions`
@@ -3045,7 +3129,7 @@ await client.ats.activities.list();
-
client.ats.activities.create({ ...params }) -> Merge.ActivityResponse +
client.ats.jobInterviewStages.retrieve(id, { ...params }) -> Merge.JobInterviewStage
@@ -3057,7 +3141,7 @@ await client.ats.activities.list();
-Creates an `Activity` object with the given values. +Returns a `JobInterviewStage` object with the given `id`.
@@ -3073,10 +3157,7 @@ Creates an `Activity` object with the given values.
```typescript -await client.ats.activities.create({ - model: {}, - remoteUserId: "remote_user_id", -}); +await client.ats.jobInterviewStages.retrieve("id"); ```
@@ -3092,7 +3173,7 @@ await client.ats.activities.create({
-**request:** `Merge.ats.ActivityEndpointRequest` +**id:** `string`
@@ -3100,7 +3181,15 @@ await client.ats.activities.create({
-**requestOptions:** `Activities.RequestOptions` +**request:** `Merge.ats.JobInterviewStagesRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `JobInterviewStages.RequestOptions`
@@ -3111,7 +3200,9 @@ await client.ats.activities.create({
-
client.ats.activities.retrieve(id, { ...params }) -> Merge.Activity +## Ats JobPostings + +
client.ats.jobPostings.list({ ...params }) -> Merge.PaginatedJobPostingList
@@ -3123,7 +3214,7 @@ await client.ats.activities.create({
-Returns an `Activity` object with the given `id`. +Returns a list of `JobPosting` objects.
@@ -3139,7 +3230,7 @@ Returns an `Activity` object with the given `id`.
```typescript -await client.ats.activities.retrieve("id"); +await client.ats.jobPostings.list(); ```
@@ -3155,15 +3246,7 @@ await client.ats.activities.retrieve("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.ats.ActivitiesRetrieveRequest` +**request:** `Merge.ats.JobPostingsListRequest`
@@ -3171,7 +3254,7 @@ await client.ats.activities.retrieve("id");
-**requestOptions:** `Activities.RequestOptions` +**requestOptions:** `JobPostings.RequestOptions`
@@ -3182,7 +3265,7 @@ await client.ats.activities.retrieve("id");
-
client.ats.activities.metaPostRetrieve() -> Merge.MetaResponse +
client.ats.jobPostings.retrieve(id, { ...params }) -> Merge.JobPosting
@@ -3194,7 +3277,7 @@ await client.ats.activities.retrieve("id");
-Returns metadata for `Activity` POSTs. +Returns a `JobPosting` object with the given `id`.
@@ -3210,7 +3293,7 @@ Returns metadata for `Activity` POSTs.
```typescript -await client.ats.activities.metaPostRetrieve(); +await client.ats.jobPostings.retrieve("id"); ```
@@ -3226,7 +3309,23 @@ await client.ats.activities.metaPostRetrieve();
-**requestOptions:** `Activities.RequestOptions` +**id:** `string` + +
+
+ +
+
+ +**request:** `Merge.ats.JobPostingsRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `JobPostings.RequestOptions`
@@ -3237,9 +3336,9 @@ await client.ats.activities.metaPostRetrieve();
-## Ats Applications +## Ats Jobs -
client.ats.applications.list({ ...params }) -> Merge.PaginatedApplicationList +
client.ats.jobs.list({ ...params }) -> Merge.PaginatedJobList
@@ -3251,7 +3350,7 @@ await client.ats.activities.metaPostRetrieve();
-Returns a list of `Application` objects. +Returns a list of `Job` objects.
@@ -3267,7 +3366,7 @@ Returns a list of `Application` objects.
```typescript -await client.ats.applications.list(); +await client.ats.jobs.list(); ```
@@ -3283,7 +3382,7 @@ await client.ats.applications.list();
-**request:** `Merge.ats.ApplicationsListRequest` +**request:** `Merge.ats.JobsListRequest`
@@ -3291,7 +3390,7 @@ await client.ats.applications.list();
-**requestOptions:** `Applications.RequestOptions` +**requestOptions:** `Jobs.RequestOptions`
@@ -3302,7 +3401,7 @@ await client.ats.applications.list();
-
client.ats.applications.create({ ...params }) -> Merge.ApplicationResponse +
client.ats.jobs.retrieve(id, { ...params }) -> Merge.Job
@@ -3314,10 +3413,7 @@ await client.ats.applications.list();
-Creates an `Application` object with the given values. -For certain integrations, but not all, our API detects duplicate candidates and will associate applications with existing records in the third-party. New candidates are created and automatically linked to the application. - -See our [Help Center article](https://help.merge.dev/en/articles/10012366-updates-to-post-applications-oct-2024) for detailed support per integration. +Returns a `Job` object with the given `id`.
@@ -3333,10 +3429,7 @@ See our [Help Center article](https://help.merge.dev/en/articles/10012366-update
```typescript -await client.ats.applications.create({ - model: {}, - remoteUserId: "remote_user_id", -}); +await client.ats.jobs.retrieve("id"); ```
@@ -3352,7 +3445,7 @@ await client.ats.applications.create({
-**request:** `Merge.ats.ApplicationEndpointRequest` +**id:** `string`
@@ -3360,7 +3453,15 @@ await client.ats.applications.create({
-**requestOptions:** `Applications.RequestOptions` +**request:** `Merge.ats.JobsRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `Jobs.RequestOptions`
@@ -3371,7 +3472,7 @@ await client.ats.applications.create({
-
client.ats.applications.retrieve(id, { ...params }) -> Merge.Application +
client.ats.jobs.screeningQuestionsList(jobId, { ...params }) -> Merge.PaginatedScreeningQuestionList
@@ -3383,7 +3484,7 @@ await client.ats.applications.create({
-Returns an `Application` object with the given `id`. +Returns a list of `ScreeningQuestion` objects.
@@ -3399,7 +3500,7 @@ Returns an `Application` object with the given `id`.
```typescript -await client.ats.applications.retrieve("id"); +await client.ats.jobs.screeningQuestionsList("job_id"); ```
@@ -3415,7 +3516,7 @@ await client.ats.applications.retrieve("id");
-**id:** `string` +**jobId:** `string`
@@ -3423,7 +3524,7 @@ await client.ats.applications.retrieve("id");
-**request:** `Merge.ats.ApplicationsRetrieveRequest` +**request:** `Merge.ats.JobsScreeningQuestionsListRequest`
@@ -3431,7 +3532,7 @@ await client.ats.applications.retrieve("id");
-**requestOptions:** `Applications.RequestOptions` +**requestOptions:** `Jobs.RequestOptions`
@@ -3442,7 +3543,9 @@ await client.ats.applications.retrieve("id");
-
client.ats.applications.changeStageCreate(id, { ...params }) -> Merge.ApplicationResponse +## Ats LinkToken + +
client.ats.linkToken.create({ ...params }) -> Merge.LinkToken
@@ -3454,7 +3557,7 @@ await client.ats.applications.retrieve("id");
-Updates the `current_stage` field of an `Application` object +Creates a link token to be used when linking a new end user.
@@ -3470,7 +3573,12 @@ Updates the `current_stage` field of an `Application` object
```typescript -await client.ats.applications.changeStageCreate("id"); +await client.ats.linkToken.create({ + endUserEmailAddress: "example@gmail.com", + endUserOrganizationName: "Test Organization", + endUserOriginId: "12345", + categories: ["hris", "ats"], +}); ```
@@ -3486,15 +3594,7 @@ await client.ats.applications.changeStageCreate("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.ats.UpdateApplicationStageRequest` +**request:** `Merge.ats.EndUserDetailsRequest`
@@ -3502,7 +3602,7 @@ await client.ats.applications.changeStageCreate("id");
-**requestOptions:** `Applications.RequestOptions` +**requestOptions:** `LinkToken.RequestOptions`
@@ -3513,7 +3613,9 @@ await client.ats.applications.changeStageCreate("id");
-
client.ats.applications.metaPostRetrieve({ ...params }) -> Merge.MetaResponse +## Ats LinkedAccounts + +
client.ats.linkedAccounts.list({ ...params }) -> Merge.PaginatedAccountDetailsAndActionsList
@@ -3525,7 +3627,7 @@ await client.ats.applications.changeStageCreate("id");
-Returns metadata for `Application` POSTs. +List linked accounts for your organization.
@@ -3541,7 +3643,7 @@ Returns metadata for `Application` POSTs.
```typescript -await client.ats.applications.metaPostRetrieve(); +await client.ats.linkedAccounts.list(); ```
@@ -3557,7 +3659,7 @@ await client.ats.applications.metaPostRetrieve();
-**request:** `Merge.ats.ApplicationsMetaPostRetrieveRequest` +**request:** `Merge.ats.LinkedAccountsListRequest`
@@ -3565,7 +3667,7 @@ await client.ats.applications.metaPostRetrieve();
-**requestOptions:** `Applications.RequestOptions` +**requestOptions:** `LinkedAccounts.RequestOptions`
@@ -3576,9 +3678,9 @@ await client.ats.applications.metaPostRetrieve();
-## Ats AsyncPassthrough +## Ats Offers -
client.ats.asyncPassthrough.create({ ...params }) -> Merge.AsyncPassthroughReciept +
client.ats.offers.list({ ...params }) -> Merge.PaginatedOfferList
@@ -3590,7 +3692,7 @@ await client.ats.applications.metaPostRetrieve();
-Asynchronously pull data from an endpoint not currently supported by Merge. +Returns a list of `Offer` objects.
@@ -3606,10 +3708,7 @@ Asynchronously pull data from an endpoint not currently supported by Merge.
```typescript -await client.ats.asyncPassthrough.create({ - method: "GET", - path: "/scooters", -}); +await client.ats.offers.list(); ```
@@ -3625,7 +3724,7 @@ await client.ats.asyncPassthrough.create({
-**request:** `Merge.DataPassthroughRequest` +**request:** `Merge.ats.OffersListRequest`
@@ -3633,7 +3732,7 @@ await client.ats.asyncPassthrough.create({
-**requestOptions:** `AsyncPassthrough.RequestOptions` +**requestOptions:** `Offers.RequestOptions`
@@ -3644,7 +3743,7 @@ await client.ats.asyncPassthrough.create({
-
client.ats.asyncPassthrough.retrieve(asyncPassthroughReceiptId) -> Merge.AsyncPassthroughRetrieveResponse +
client.ats.offers.retrieve(id, { ...params }) -> Merge.Offer
@@ -3656,7 +3755,7 @@ await client.ats.asyncPassthrough.create({
-Retrieves data from earlier async-passthrough POST request +Returns an `Offer` object with the given `id`.
@@ -3672,7 +3771,7 @@ Retrieves data from earlier async-passthrough POST request
```typescript -await client.ats.asyncPassthrough.retrieve("async_passthrough_receipt_id"); +await client.ats.offers.retrieve("id"); ```
@@ -3688,7 +3787,7 @@ await client.ats.asyncPassthrough.retrieve("async_passthrough_receipt_id");
-**asyncPassthroughReceiptId:** `string` +**id:** `string`
@@ -3696,7 +3795,15 @@ await client.ats.asyncPassthrough.retrieve("async_passthrough_receipt_id");
-**requestOptions:** `AsyncPassthrough.RequestOptions` +**request:** `Merge.ats.OffersRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `Offers.RequestOptions`
@@ -3707,9 +3814,9 @@ await client.ats.asyncPassthrough.retrieve("async_passthrough_receipt_id");
-## Ats Attachments +## Ats Offices -
client.ats.attachments.list({ ...params }) -> Merge.PaginatedAttachmentList +
client.ats.offices.list({ ...params }) -> Merge.PaginatedOfficeList
@@ -3721,7 +3828,7 @@ await client.ats.asyncPassthrough.retrieve("async_passthrough_receipt_id");
-Returns a list of `Attachment` objects. +Returns a list of `Office` objects.
@@ -3737,7 +3844,7 @@ Returns a list of `Attachment` objects.
```typescript -await client.ats.attachments.list(); +await client.ats.offices.list(); ```
@@ -3753,7 +3860,7 @@ await client.ats.attachments.list();
-**request:** `Merge.ats.AttachmentsListRequest` +**request:** `Merge.ats.OfficesListRequest`
@@ -3761,7 +3868,7 @@ await client.ats.attachments.list();
-**requestOptions:** `Attachments.RequestOptions` +**requestOptions:** `Offices.RequestOptions`
@@ -3772,7 +3879,7 @@ await client.ats.attachments.list();
-
client.ats.attachments.create({ ...params }) -> Merge.AttachmentResponse +
client.ats.offices.retrieve(id, { ...params }) -> Merge.Office
@@ -3784,7 +3891,7 @@ await client.ats.attachments.list();
-Creates an `Attachment` object with the given values. +Returns an `Office` object with the given `id`.
@@ -3800,10 +3907,7 @@ Creates an `Attachment` object with the given values.
```typescript -await client.ats.attachments.create({ - model: {}, - remoteUserId: "remote_user_id", -}); +await client.ats.offices.retrieve("id"); ```
@@ -3819,7 +3923,7 @@ await client.ats.attachments.create({
-**request:** `Merge.ats.AttachmentEndpointRequest` +**id:** `string`
@@ -3827,7 +3931,15 @@ await client.ats.attachments.create({
-**requestOptions:** `Attachments.RequestOptions` +**request:** `Merge.ats.OfficesRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `Offices.RequestOptions`
@@ -3838,7 +3950,9 @@ await client.ats.attachments.create({
-
client.ats.attachments.retrieve(id, { ...params }) -> Merge.Attachment +## Ats Passthrough + +
client.ats.passthrough.create({ ...params }) -> Merge.RemoteResponse
@@ -3850,7 +3964,7 @@ await client.ats.attachments.create({
-Returns an `Attachment` object with the given `id`. +Pull data from an endpoint not currently supported by Merge.
@@ -3866,7 +3980,10 @@ Returns an `Attachment` object with the given `id`.
```typescript -await client.ats.attachments.retrieve("id"); +await client.ats.passthrough.create({ + method: "GET", + path: "/scooters", +}); ```
@@ -3882,15 +3999,7 @@ await client.ats.attachments.retrieve("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.ats.AttachmentsRetrieveRequest` +**request:** `Merge.DataPassthroughRequest`
@@ -3898,7 +4007,7 @@ await client.ats.attachments.retrieve("id");
-**requestOptions:** `Attachments.RequestOptions` +**requestOptions:** `Passthrough.RequestOptions`
@@ -3909,7 +4018,9 @@ await client.ats.attachments.retrieve("id");
-
client.ats.attachments.metaPostRetrieve() -> Merge.MetaResponse +## Ats RegenerateKey + +
client.ats.regenerateKey.create({ ...params }) -> Merge.RemoteKey
@@ -3921,7 +4032,7 @@ await client.ats.attachments.retrieve("id");
-Returns metadata for `Attachment` POSTs. +Exchange remote keys.
@@ -3937,7 +4048,9 @@ Returns metadata for `Attachment` POSTs.
```typescript -await client.ats.attachments.metaPostRetrieve(); +await client.ats.regenerateKey.create({ + name: "Remote Deployment Key 1", +}); ```
@@ -3953,7 +4066,15 @@ await client.ats.attachments.metaPostRetrieve();
-**requestOptions:** `Attachments.RequestOptions` +**request:** `Merge.ats.RemoteKeyForRegenerationRequest` + +
+
+ +
+
+ +**requestOptions:** `RegenerateKey.RequestOptions`
@@ -3964,9 +4085,9 @@ await client.ats.attachments.metaPostRetrieve();
-## Ats AuditTrail +## Ats RejectReasons -
client.ats.auditTrail.list({ ...params }) -> Merge.PaginatedAuditLogEventList +
client.ats.rejectReasons.list({ ...params }) -> Merge.PaginatedRejectReasonList
@@ -3978,7 +4099,7 @@ await client.ats.attachments.metaPostRetrieve();
-Gets a list of audit trail events. +Returns a list of `RejectReason` objects.
@@ -3994,7 +4115,7 @@ Gets a list of audit trail events.
```typescript -await client.ats.auditTrail.list(); +await client.ats.rejectReasons.list(); ```
@@ -4010,7 +4131,7 @@ await client.ats.auditTrail.list();
-**request:** `Merge.ats.AuditTrailListRequest` +**request:** `Merge.ats.RejectReasonsListRequest`
@@ -4018,7 +4139,7 @@ await client.ats.auditTrail.list();
-**requestOptions:** `AuditTrail.RequestOptions` +**requestOptions:** `RejectReasons.RequestOptions`
@@ -4029,9 +4150,7 @@ await client.ats.auditTrail.list();
-## Ats AvailableActions - -
client.ats.availableActions.retrieve() -> Merge.AvailableActions +
client.ats.rejectReasons.retrieve(id, { ...params }) -> Merge.RejectReason
@@ -4043,7 +4162,7 @@ await client.ats.auditTrail.list();
-Returns a list of models and actions available for an account. +Returns a `RejectReason` object with the given `id`.
@@ -4059,7 +4178,7 @@ Returns a list of models and actions available for an account.
```typescript -await client.ats.availableActions.retrieve(); +await client.ats.rejectReasons.retrieve("id"); ```
@@ -4075,7 +4194,23 @@ await client.ats.availableActions.retrieve();
-**requestOptions:** `AvailableActions.RequestOptions` +**id:** `string` + +
+
+ +
+
+ +**request:** `Merge.ats.RejectReasonsRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `RejectReasons.RequestOptions`
@@ -4086,9 +4221,9 @@ await client.ats.availableActions.retrieve();
-## Ats Candidates +## Ats Scorecards -
client.ats.candidates.list({ ...params }) -> Merge.PaginatedCandidateList +
client.ats.scorecards.list({ ...params }) -> Merge.PaginatedScorecardList
@@ -4100,7 +4235,7 @@ await client.ats.availableActions.retrieve();
-Returns a list of `Candidate` objects. +Returns a list of `Scorecard` objects.
@@ -4116,7 +4251,7 @@ Returns a list of `Candidate` objects.
```typescript -await client.ats.candidates.list(); +await client.ats.scorecards.list(); ```
@@ -4132,7 +4267,7 @@ await client.ats.candidates.list();
-**request:** `Merge.ats.CandidatesListRequest` +**request:** `Merge.ats.ScorecardsListRequest`
@@ -4140,7 +4275,7 @@ await client.ats.candidates.list();
-**requestOptions:** `Candidates.RequestOptions` +**requestOptions:** `Scorecards.RequestOptions`
@@ -4151,7 +4286,7 @@ await client.ats.candidates.list();
-
client.ats.candidates.create({ ...params }) -> Merge.CandidateResponse +
client.ats.scorecards.retrieve(id, { ...params }) -> Merge.Scorecard
@@ -4163,7 +4298,7 @@ await client.ats.candidates.list();
-Creates a `Candidate` object with the given values. +Returns a `Scorecard` object with the given `id`.
@@ -4179,10 +4314,7 @@ Creates a `Candidate` object with the given values.
```typescript -await client.ats.candidates.create({ - model: {}, - remoteUserId: "remote_user_id", -}); +await client.ats.scorecards.retrieve("id"); ```
@@ -4198,7 +4330,7 @@ await client.ats.candidates.create({
-**request:** `Merge.ats.CandidateEndpointRequest` +**id:** `string`
@@ -4206,7 +4338,15 @@ await client.ats.candidates.create({
-**requestOptions:** `Candidates.RequestOptions` +**request:** `Merge.ats.ScorecardsRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `Scorecards.RequestOptions`
@@ -4217,7 +4357,9 @@ await client.ats.candidates.create({
-
client.ats.candidates.retrieve(id, { ...params }) -> Merge.Candidate +## Ats SyncStatus + +
client.ats.syncStatus.list({ ...params }) -> Merge.PaginatedSyncStatusList
@@ -4229,7 +4371,7 @@ await client.ats.candidates.create({
-Returns a `Candidate` object with the given `id`. +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).
@@ -4245,7 +4387,7 @@ Returns a `Candidate` object with the given `id`.
```typescript -await client.ats.candidates.retrieve("id"); +await client.ats.syncStatus.list(); ```
@@ -4261,15 +4403,7 @@ await client.ats.candidates.retrieve("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.ats.CandidatesRetrieveRequest` +**request:** `Merge.ats.SyncStatusListRequest`
@@ -4277,7 +4411,7 @@ await client.ats.candidates.retrieve("id");
-**requestOptions:** `Candidates.RequestOptions` +**requestOptions:** `SyncStatus.RequestOptions`
@@ -4288,7 +4422,9 @@ await client.ats.candidates.retrieve("id");
-
client.ats.candidates.partialUpdate(id, { ...params }) -> Merge.CandidateResponse +## Ats ForceResync + +
client.ats.forceResync.syncStatusResyncCreate() -> Merge.SyncStatus[]
@@ -4300,7 +4436,7 @@ await client.ats.candidates.retrieve("id");
-Updates a `Candidate` object with the given `id`. +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.
@@ -4316,10 +4452,7 @@ Updates a `Candidate` object with the given `id`.
```typescript -await client.ats.candidates.partialUpdate("id", { - model: {}, - remoteUserId: "remote_user_id", -}); +await client.ats.forceResync.syncStatusResyncCreate(); ```
@@ -4335,23 +4468,7 @@ await client.ats.candidates.partialUpdate("id", {
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.ats.PatchedCandidateEndpointRequest` - -
-
- -
-
- -**requestOptions:** `Candidates.RequestOptions` +**requestOptions:** `ForceResync.RequestOptions`
@@ -4362,7 +4479,9 @@ await client.ats.candidates.partialUpdate("id", {
-
client.ats.candidates.ignoreCreate(modelId, { ...params }) -> void +## Ats Tags + +
client.ats.tags.list({ ...params }) -> Merge.PaginatedTagList
@@ -4374,7 +4493,7 @@ await client.ats.candidates.partialUpdate("id", {
-Ignores a specific row based on the `model_id` in the url. These records will have their properties set to null, and will not be updated in future syncs. The "reason" and "message" fields in the request body will be stored for audit purposes. +Returns a list of `Tag` objects.
@@ -4390,9 +4509,7 @@ Ignores a specific row based on the `model_id` in the url. These records will ha
```typescript -await client.ats.candidates.ignoreCreate("model_id", { - reason: "GENERAL_CUSTOMER_REQUEST", -}); +await client.ats.tags.list(); ```
@@ -4408,15 +4525,7 @@ await client.ats.candidates.ignoreCreate("model_id", {
-**modelId:** `string` - -
-
- -
-
- -**request:** `Merge.ats.IgnoreCommonModelRequest` +**request:** `Merge.ats.TagsListRequest`
@@ -4424,7 +4533,7 @@ await client.ats.candidates.ignoreCreate("model_id", {
-**requestOptions:** `Candidates.RequestOptions` +**requestOptions:** `Tags.RequestOptions`
@@ -4435,7 +4544,9 @@ await client.ats.candidates.ignoreCreate("model_id", {
-
client.ats.candidates.metaPatchRetrieve(id) -> Merge.MetaResponse +## Ats Users + +
client.ats.users.list({ ...params }) -> Merge.PaginatedRemoteUserList
@@ -4447,7 +4558,7 @@ await client.ats.candidates.ignoreCreate("model_id", {
-Returns metadata for `Candidate` PATCHs. +Returns a list of `RemoteUser` objects.
@@ -4463,7 +4574,7 @@ Returns metadata for `Candidate` PATCHs.
```typescript -await client.ats.candidates.metaPatchRetrieve("id"); +await client.ats.users.list(); ```
@@ -4479,7 +4590,7 @@ await client.ats.candidates.metaPatchRetrieve("id");
-**id:** `string` +**request:** `Merge.ats.UsersListRequest`
@@ -4487,7 +4598,7 @@ await client.ats.candidates.metaPatchRetrieve("id");
-**requestOptions:** `Candidates.RequestOptions` +**requestOptions:** `Users.RequestOptions`
@@ -4498,7 +4609,7 @@ await client.ats.candidates.metaPatchRetrieve("id");
-
client.ats.candidates.metaPostRetrieve() -> Merge.MetaResponse +
client.ats.users.retrieve(id, { ...params }) -> Merge.RemoteUser
@@ -4510,7 +4621,7 @@ await client.ats.candidates.metaPatchRetrieve("id");
-Returns metadata for `Candidate` POSTs. +Returns a `RemoteUser` object with the given `id`.
@@ -4526,7 +4637,7 @@ Returns metadata for `Candidate` POSTs.
```typescript -await client.ats.candidates.metaPostRetrieve(); +await client.ats.users.retrieve("id"); ```
@@ -4542,7 +4653,23 @@ await client.ats.candidates.metaPostRetrieve();
-**requestOptions:** `Candidates.RequestOptions` +**id:** `string` + +
+
+ +
+
+ +**request:** `Merge.ats.UsersRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `Users.RequestOptions`
@@ -4553,9 +4680,9 @@ await client.ats.candidates.metaPostRetrieve();
-## Ats Scopes +## Ats WebhookReceivers -
client.ats.scopes.defaultScopesRetrieve() -> Merge.CommonModelScopeApi +
client.ats.webhookReceivers.list() -> Merge.WebhookReceiver[]
@@ -4567,7 +4694,7 @@ await client.ats.candidates.metaPostRetrieve();
-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). +Returns a list of `WebhookReceiver` objects.
@@ -4583,7 +4710,7 @@ Get the default permissions for Merge Common Models and fields across all Linked
```typescript -await client.ats.scopes.defaultScopesRetrieve(); +await client.ats.webhookReceivers.list(); ```
@@ -4599,7 +4726,7 @@ await client.ats.scopes.defaultScopesRetrieve();
-**requestOptions:** `Scopes.RequestOptions` +**requestOptions:** `WebhookReceivers.RequestOptions`
@@ -4610,7 +4737,7 @@ await client.ats.scopes.defaultScopesRetrieve();
-
client.ats.scopes.linkedAccountScopesRetrieve() -> Merge.CommonModelScopeApi +
client.ats.webhookReceivers.create({ ...params }) -> Merge.WebhookReceiver
@@ -4622,7 +4749,7 @@ await client.ats.scopes.defaultScopesRetrieve();
-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). +Creates a `WebhookReceiver` object with the given values.
@@ -4638,9 +4765,12 @@ Get all available permissions for Merge Common Models and fields for a single Li
```typescript -await client.ats.scopes.linkedAccountScopesRetrieve(); -``` - +await client.ats.webhookReceivers.create({ + event: "event", + isActive: true, +}); +``` +
@@ -4654,7 +4784,15 @@ await client.ats.scopes.linkedAccountScopesRetrieve();
-**requestOptions:** `Scopes.RequestOptions` +**request:** `Merge.ats.WebhookReceiverRequest` + +
+
+ +
+
+ +**requestOptions:** `WebhookReceivers.RequestOptions`
@@ -4665,7 +4803,9 @@ await client.ats.scopes.linkedAccountScopesRetrieve();
-
client.ats.scopes.linkedAccountScopesCreate({ ...params }) -> Merge.CommonModelScopeApi +## Crm AccountDetails + +
client.crm.accountDetails.retrieve() -> Merge.AccountDetails
@@ -4677,7 +4817,7 @@ await client.ats.scopes.linkedAccountScopesRetrieve();
-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) +Get details for a linked account.
@@ -4693,33 +4833,7 @@ Update permissions for any Common Model or field for a single Linked Account. An
```typescript -await client.ats.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, - }, - }, - }, - ], -}); +await client.crm.accountDetails.retrieve(); ```
@@ -4735,15 +4849,7 @@ await client.ats.scopes.linkedAccountScopesCreate({
-**request:** `Merge.ats.LinkedAccountCommonModelScopeDeserializerRequest` - -
-
- -
-
- -**requestOptions:** `Scopes.RequestOptions` +**requestOptions:** `AccountDetails.RequestOptions`
@@ -4754,9 +4860,9 @@ await client.ats.scopes.linkedAccountScopesCreate({
-## Ats DeleteAccount +## Crm AccountToken -
client.ats.deleteAccount.delete() -> void +
client.crm.accountToken.retrieve(publicToken) -> Merge.AccountToken
@@ -4768,7 +4874,7 @@ await client.ats.scopes.linkedAccountScopesCreate({
-Delete a linked account. +Returns the account token for the end user with the provided public token.
@@ -4784,7 +4890,7 @@ Delete a linked account.
```typescript -await client.ats.deleteAccount.delete(); +await client.crm.accountToken.retrieve("public_token"); ```
@@ -4800,7 +4906,15 @@ await client.ats.deleteAccount.delete();
-**requestOptions:** `DeleteAccount.RequestOptions` +**publicToken:** `string` + +
+
+ +
+
+ +**requestOptions:** `AccountToken.RequestOptions`
@@ -4811,9 +4925,9 @@ await client.ats.deleteAccount.delete();
-## Ats Departments +## Crm Accounts -
client.ats.departments.list({ ...params }) -> Merge.PaginatedDepartmentList +
client.crm.accounts.list({ ...params }) -> Merge.PaginatedAccountList
@@ -4825,7 +4939,7 @@ await client.ats.deleteAccount.delete();
-Returns a list of `Department` objects. +Returns a list of `Account` objects.
@@ -4841,7 +4955,7 @@ Returns a list of `Department` objects.
```typescript -await client.ats.departments.list(); +await client.crm.accounts.list(); ```
@@ -4857,7 +4971,7 @@ await client.ats.departments.list();
-**request:** `Merge.ats.DepartmentsListRequest` +**request:** `Merge.crm.AccountsListRequest`
@@ -4865,7 +4979,7 @@ await client.ats.departments.list();
-**requestOptions:** `Departments.RequestOptions` +**requestOptions:** `Accounts.RequestOptions`
@@ -4876,7 +4990,7 @@ await client.ats.departments.list();
-
client.ats.departments.retrieve(id, { ...params }) -> Merge.Department +
client.crm.accounts.create({ ...params }) -> Merge.CrmAccountResponse
@@ -4888,7 +5002,7 @@ await client.ats.departments.list();
-Returns a `Department` object with the given `id`. +Creates an `Account` object with the given values.
@@ -4904,7 +5018,9 @@ Returns a `Department` object with the given `id`.
```typescript -await client.ats.departments.retrieve("id"); +await client.crm.accounts.create({ + model: {}, +}); ```
@@ -4920,15 +5036,7 @@ await client.ats.departments.retrieve("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.ats.DepartmentsRetrieveRequest` +**request:** `Merge.crm.CrmAccountEndpointRequest`
@@ -4936,7 +5044,7 @@ await client.ats.departments.retrieve("id");
-**requestOptions:** `Departments.RequestOptions` +**requestOptions:** `Accounts.RequestOptions`
@@ -4947,9 +5055,7 @@ await client.ats.departments.retrieve("id");
-## Ats Eeocs - -
client.ats.eeocs.list({ ...params }) -> Merge.PaginatedEeocList +
client.crm.accounts.retrieve(id, { ...params }) -> Merge.Account
@@ -4961,7 +5067,7 @@ await client.ats.departments.retrieve("id");
-Returns a list of `EEOC` objects. +Returns an `Account` object with the given `id`.
@@ -4977,7 +5083,7 @@ Returns a list of `EEOC` objects.
```typescript -await client.ats.eeocs.list(); +await client.crm.accounts.retrieve("id"); ```
@@ -4993,7 +5099,7 @@ await client.ats.eeocs.list();
-**request:** `Merge.ats.EeocsListRequest` +**id:** `string`
@@ -5001,7 +5107,15 @@ await client.ats.eeocs.list();
-**requestOptions:** `Eeocs.RequestOptions` +**request:** `Merge.crm.AccountsRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `Accounts.RequestOptions`
@@ -5012,7 +5126,7 @@ await client.ats.eeocs.list();
-
client.ats.eeocs.retrieve(id, { ...params }) -> Merge.Eeoc +
client.crm.accounts.partialUpdate(id, { ...params }) -> Merge.CrmAccountResponse
@@ -5024,7 +5138,7 @@ await client.ats.eeocs.list();
-Returns an `EEOC` object with the given `id`. +Updates an `Account` object with the given `id`.
@@ -5040,7 +5154,9 @@ Returns an `EEOC` object with the given `id`.
```typescript -await client.ats.eeocs.retrieve("id"); +await client.crm.accounts.partialUpdate("id", { + model: {}, +}); ```
@@ -5064,7 +5180,7 @@ await client.ats.eeocs.retrieve("id");
-**request:** `Merge.ats.EeocsRetrieveRequest` +**request:** `Merge.crm.PatchedCrmAccountEndpointRequest`
@@ -5072,7 +5188,7 @@ await client.ats.eeocs.retrieve("id");
-**requestOptions:** `Eeocs.RequestOptions` +**requestOptions:** `Accounts.RequestOptions`
@@ -5083,9 +5199,7 @@ await client.ats.eeocs.retrieve("id");
-## Ats FieldMapping - -
client.ats.fieldMapping.fieldMappingsRetrieve({ ...params }) -> Merge.FieldMappingApiInstanceResponse +
client.crm.accounts.metaPatchRetrieve(id) -> Merge.MetaResponse
@@ -5097,7 +5211,7 @@ await client.ats.eeocs.retrieve("id");
-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/). +Returns metadata for `CRMAccount` PATCHs.
@@ -5113,7 +5227,7 @@ Get all Field Mappings for this Linked Account. Field Mappings are mappings betw
```typescript -await client.ats.fieldMapping.fieldMappingsRetrieve(); +await client.crm.accounts.metaPatchRetrieve("id"); ```
@@ -5129,7 +5243,7 @@ await client.ats.fieldMapping.fieldMappingsRetrieve();
-**request:** `Merge.ats.FieldMappingsRetrieveRequest` +**id:** `string`
@@ -5137,7 +5251,7 @@ await client.ats.fieldMapping.fieldMappingsRetrieve();
-**requestOptions:** `FieldMapping.RequestOptions` +**requestOptions:** `Accounts.RequestOptions`
@@ -5148,7 +5262,7 @@ await client.ats.fieldMapping.fieldMappingsRetrieve();
-
client.ats.fieldMapping.fieldMappingsCreate({ ...params }) -> Merge.FieldMappingInstanceResponse +
client.crm.accounts.metaPostRetrieve() -> Merge.MetaResponse
@@ -5160,7 +5274,7 @@ await client.ats.fieldMapping.fieldMappingsRetrieve();
-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. +Returns metadata for `CRMAccount` POSTs.
@@ -5176,14 +5290,7 @@ Create new Field Mappings that will be available after the next scheduled sync.
```typescript -await client.ats.fieldMapping.fieldMappingsCreate({ - 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", -}); +await client.crm.accounts.metaPostRetrieve(); ```
@@ -5199,15 +5306,7 @@ await client.ats.fieldMapping.fieldMappingsCreate({
-**request:** `Merge.ats.CreateFieldMappingRequest` - -
-
- -
-
- -**requestOptions:** `FieldMapping.RequestOptions` +**requestOptions:** `Accounts.RequestOptions`
@@ -5218,7 +5317,7 @@ await client.ats.fieldMapping.fieldMappingsCreate({
-
client.ats.fieldMapping.fieldMappingsDestroy(fieldMappingId) -> Merge.FieldMappingInstanceResponse +
client.crm.accounts.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList
@@ -5230,7 +5329,7 @@ await client.ats.fieldMapping.fieldMappingsCreate({
-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. +Returns a list of `RemoteFieldClass` objects.
@@ -5246,7 +5345,7 @@ Deletes Field Mappings for a Linked Account. All data related to this Field Mapp
```typescript -await client.ats.fieldMapping.fieldMappingsDestroy("field_mapping_id"); +await client.crm.accounts.remoteFieldClassesList(); ```
@@ -5262,7 +5361,7 @@ await client.ats.fieldMapping.fieldMappingsDestroy("field_mapping_id");
-**fieldMappingId:** `string` +**request:** `Merge.crm.AccountsRemoteFieldClassesListRequest`
@@ -5270,7 +5369,7 @@ await client.ats.fieldMapping.fieldMappingsDestroy("field_mapping_id");
-**requestOptions:** `FieldMapping.RequestOptions` +**requestOptions:** `Accounts.RequestOptions`
@@ -5281,7 +5380,9 @@ await client.ats.fieldMapping.fieldMappingsDestroy("field_mapping_id");
-
client.ats.fieldMapping.fieldMappingsPartialUpdate(fieldMappingId, { ...params }) -> Merge.FieldMappingInstanceResponse +## Crm AsyncPassthrough + +
client.crm.asyncPassthrough.create({ ...params }) -> Merge.AsyncPassthroughReciept
@@ -5293,7 +5394,7 @@ await client.ats.fieldMapping.fieldMappingsDestroy("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. +Asynchronously pull data from an endpoint not currently supported by Merge.
@@ -5309,7 +5410,10 @@ Create or update existing Field Mappings for a Linked Account. Changes will be r
```typescript -await client.ats.fieldMapping.fieldMappingsPartialUpdate("field_mapping_id"); +await client.crm.asyncPassthrough.create({ + method: "GET", + path: "/scooters", +}); ```
@@ -5325,15 +5429,7 @@ await client.ats.fieldMapping.fieldMappingsPartialUpdate("field_mapping_id");
-**fieldMappingId:** `string` - -
-
- -
-
- -**request:** `Merge.ats.PatchedEditFieldMappingRequest` +**request:** `Merge.DataPassthroughRequest`
@@ -5341,7 +5437,7 @@ await client.ats.fieldMapping.fieldMappingsPartialUpdate("field_mapping_id");
-**requestOptions:** `FieldMapping.RequestOptions` +**requestOptions:** `AsyncPassthrough.RequestOptions`
@@ -5352,7 +5448,7 @@ await client.ats.fieldMapping.fieldMappingsPartialUpdate("field_mapping_id");
-
client.ats.fieldMapping.remoteFieldsRetrieve({ ...params }) -> Merge.RemoteFieldApiResponse +
client.crm.asyncPassthrough.retrieve(asyncPassthroughReceiptId) -> Merge.AsyncPassthroughRetrieveResponse
@@ -5364,7 +5460,7 @@ await client.ats.fieldMapping.fieldMappingsPartialUpdate("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/). +Retrieves data from earlier async-passthrough POST request
@@ -5380,7 +5476,7 @@ Get all remote fields for a Linked Account. Remote fields are third-party fields
```typescript -await client.ats.fieldMapping.remoteFieldsRetrieve(); +await client.crm.asyncPassthrough.retrieve("async_passthrough_receipt_id"); ```
@@ -5396,7 +5492,7 @@ await client.ats.fieldMapping.remoteFieldsRetrieve();
-**request:** `Merge.ats.RemoteFieldsRetrieveRequest` +**asyncPassthroughReceiptId:** `string`
@@ -5404,7 +5500,7 @@ await client.ats.fieldMapping.remoteFieldsRetrieve();
-**requestOptions:** `FieldMapping.RequestOptions` +**requestOptions:** `AsyncPassthrough.RequestOptions`
@@ -5415,7 +5511,9 @@ await client.ats.fieldMapping.remoteFieldsRetrieve();
-
client.ats.fieldMapping.targetFieldsRetrieve() -> Merge.ExternalTargetFieldApiResponse +## Crm AuditTrail + +
client.crm.auditTrail.list({ ...params }) -> Merge.PaginatedAuditLogEventList
@@ -5427,7 +5525,7 @@ await client.ats.fieldMapping.remoteFieldsRetrieve();
-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/). +Gets a list of audit trail events.
@@ -5443,7 +5541,7 @@ Get all organization-wide Target Fields, this will not include any Linked Accoun
```typescript -await client.ats.fieldMapping.targetFieldsRetrieve(); +await client.crm.auditTrail.list(); ```
@@ -5459,7 +5557,15 @@ await client.ats.fieldMapping.targetFieldsRetrieve();
-**requestOptions:** `FieldMapping.RequestOptions` +**request:** `Merge.crm.AuditTrailListRequest` + +
+
+ +
+
+ +**requestOptions:** `AuditTrail.RequestOptions`
@@ -5470,9 +5576,9 @@ await client.ats.fieldMapping.targetFieldsRetrieve();
-## Ats GenerateKey +## Crm AvailableActions -
client.ats.generateKey.create({ ...params }) -> Merge.RemoteKey +
client.crm.availableActions.retrieve() -> Merge.AvailableActions
@@ -5484,7 +5590,7 @@ await client.ats.fieldMapping.targetFieldsRetrieve();
-Create a remote key. +Returns a list of models and actions available for an account.
@@ -5500,9 +5606,7 @@ Create a remote key.
```typescript -await client.ats.generateKey.create({ - name: "Remote Deployment Key 1", -}); +await client.crm.availableActions.retrieve(); ```
@@ -5518,15 +5622,7 @@ await client.ats.generateKey.create({
-**request:** `Merge.ats.GenerateRemoteKeyRequest` - -
-
- -
-
- -**requestOptions:** `GenerateKey.RequestOptions` +**requestOptions:** `AvailableActions.RequestOptions`
@@ -5537,9 +5633,9 @@ await client.ats.generateKey.create({
-## Ats Interviews +## Crm Contacts -
client.ats.interviews.list({ ...params }) -> Merge.PaginatedScheduledInterviewList +
client.crm.contacts.list({ ...params }) -> Merge.PaginatedContactList
@@ -5551,7 +5647,7 @@ await client.ats.generateKey.create({
-Returns a list of `ScheduledInterview` objects. +Returns a list of `Contact` objects.
@@ -5567,7 +5663,7 @@ Returns a list of `ScheduledInterview` objects.
```typescript -await client.ats.interviews.list(); +await client.crm.contacts.list(); ```
@@ -5583,7 +5679,7 @@ await client.ats.interviews.list();
-**request:** `Merge.ats.InterviewsListRequest` +**request:** `Merge.crm.ContactsListRequest`
@@ -5591,7 +5687,7 @@ await client.ats.interviews.list();
-**requestOptions:** `Interviews.RequestOptions` +**requestOptions:** `Contacts.RequestOptions`
@@ -5602,7 +5698,7 @@ await client.ats.interviews.list();
-
client.ats.interviews.create({ ...params }) -> Merge.ScheduledInterviewResponse +
client.crm.contacts.create({ ...params }) -> Merge.CrmContactResponse
@@ -5614,7 +5710,7 @@ await client.ats.interviews.list();
-Creates a `ScheduledInterview` object with the given values. +Creates a `Contact` object with the given values.
@@ -5630,9 +5726,8 @@ Creates a `ScheduledInterview` object with the given values.
```typescript -await client.ats.interviews.create({ +await client.crm.contacts.create({ model: {}, - remoteUserId: "remote_user_id", }); ``` @@ -5649,7 +5744,7 @@ await client.ats.interviews.create({
-**request:** `Merge.ats.ScheduledInterviewEndpointRequest` +**request:** `Merge.crm.CrmContactEndpointRequest`
@@ -5657,7 +5752,7 @@ await client.ats.interviews.create({
-**requestOptions:** `Interviews.RequestOptions` +**requestOptions:** `Contacts.RequestOptions`
@@ -5668,7 +5763,7 @@ await client.ats.interviews.create({
-
client.ats.interviews.retrieve(id, { ...params }) -> Merge.ScheduledInterview +
client.crm.contacts.retrieve(id, { ...params }) -> Merge.Contact
@@ -5680,7 +5775,7 @@ await client.ats.interviews.create({
-Returns a `ScheduledInterview` object with the given `id`. +Returns a `Contact` object with the given `id`.
@@ -5696,7 +5791,7 @@ Returns a `ScheduledInterview` object with the given `id`.
```typescript -await client.ats.interviews.retrieve("id"); +await client.crm.contacts.retrieve("id"); ```
@@ -5720,7 +5815,7 @@ await client.ats.interviews.retrieve("id");
-**request:** `Merge.ats.InterviewsRetrieveRequest` +**request:** `Merge.crm.ContactsRetrieveRequest`
@@ -5728,7 +5823,7 @@ await client.ats.interviews.retrieve("id");
-**requestOptions:** `Interviews.RequestOptions` +**requestOptions:** `Contacts.RequestOptions`
@@ -5739,7 +5834,7 @@ await client.ats.interviews.retrieve("id");
-
client.ats.interviews.metaPostRetrieve() -> Merge.MetaResponse +
client.crm.contacts.partialUpdate(id, { ...params }) -> Merge.CrmContactResponse
@@ -5751,7 +5846,7 @@ await client.ats.interviews.retrieve("id");
-Returns metadata for `ScheduledInterview` POSTs. +Updates a `Contact` object with the given `id`.
@@ -5767,7 +5862,9 @@ Returns metadata for `ScheduledInterview` POSTs.
```typescript -await client.ats.interviews.metaPostRetrieve(); +await client.crm.contacts.partialUpdate("id", { + model: {}, +}); ```
@@ -5783,7 +5880,23 @@ await client.ats.interviews.metaPostRetrieve();
-**requestOptions:** `Interviews.RequestOptions` +**id:** `string` + +
+
+ +
+
+ +**request:** `Merge.crm.PatchedCrmContactEndpointRequest` + +
+
+ +
+
+ +**requestOptions:** `Contacts.RequestOptions`
@@ -5794,9 +5907,7 @@ await client.ats.interviews.metaPostRetrieve();
-## Ats Issues - -
client.ats.issues.list({ ...params }) -> Merge.PaginatedIssueList +
client.crm.contacts.ignoreCreate(modelId, { ...params }) -> void
@@ -5808,7 +5919,7 @@ await client.ats.interviews.metaPostRetrieve();
-Gets all issues for Organization. +Ignores a specific row based on the `model_id` in the url. These records will have their properties set to null, and will not be updated in future syncs. The "reason" and "message" fields in the request body will be stored for audit purposes.
@@ -5824,7 +5935,9 @@ Gets all issues for Organization.
```typescript -await client.ats.issues.list(); +await client.crm.contacts.ignoreCreate("model_id", { + reason: "GENERAL_CUSTOMER_REQUEST", +}); ```
@@ -5840,7 +5953,7 @@ await client.ats.issues.list();
-**request:** `Merge.ats.IssuesListRequest` +**modelId:** `string`
@@ -5848,7 +5961,15 @@ await client.ats.issues.list();
-**requestOptions:** `Issues.RequestOptions` +**request:** `Merge.IgnoreCommonModelRequest` + +
+
+ +
+
+ +**requestOptions:** `Contacts.RequestOptions`
@@ -5859,7 +5980,7 @@ await client.ats.issues.list();
-
client.ats.issues.retrieve(id) -> Merge.Issue +
client.crm.contacts.metaPatchRetrieve(id) -> Merge.MetaResponse
@@ -5871,7 +5992,7 @@ await client.ats.issues.list();
-Get a specific issue. +Returns metadata for `CRMContact` PATCHs.
@@ -5887,7 +6008,7 @@ Get a specific issue.
```typescript -await client.ats.issues.retrieve("id"); +await client.crm.contacts.metaPatchRetrieve("id"); ```
@@ -5911,7 +6032,7 @@ await client.ats.issues.retrieve("id");
-**requestOptions:** `Issues.RequestOptions` +**requestOptions:** `Contacts.RequestOptions`
@@ -5922,9 +6043,7 @@ await client.ats.issues.retrieve("id");
-## Ats JobInterviewStages - -
client.ats.jobInterviewStages.list({ ...params }) -> Merge.PaginatedJobInterviewStageList +
client.crm.contacts.metaPostRetrieve() -> Merge.MetaResponse
@@ -5936,7 +6055,7 @@ await client.ats.issues.retrieve("id");
-Returns a list of `JobInterviewStage` objects. +Returns metadata for `CRMContact` POSTs.
@@ -5952,7 +6071,7 @@ Returns a list of `JobInterviewStage` objects.
```typescript -await client.ats.jobInterviewStages.list(); +await client.crm.contacts.metaPostRetrieve(); ```
@@ -5968,15 +6087,7 @@ await client.ats.jobInterviewStages.list();
-**request:** `Merge.ats.JobInterviewStagesListRequest` - -
-
- -
-
- -**requestOptions:** `JobInterviewStages.RequestOptions` +**requestOptions:** `Contacts.RequestOptions`
@@ -5987,7 +6098,7 @@ await client.ats.jobInterviewStages.list();
-
client.ats.jobInterviewStages.retrieve(id, { ...params }) -> Merge.JobInterviewStage +
client.crm.contacts.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList
@@ -5999,7 +6110,7 @@ await client.ats.jobInterviewStages.list();
-Returns a `JobInterviewStage` object with the given `id`. +Returns a list of `RemoteFieldClass` objects.
@@ -6015,7 +6126,7 @@ Returns a `JobInterviewStage` object with the given `id`.
```typescript -await client.ats.jobInterviewStages.retrieve("id"); +await client.crm.contacts.remoteFieldClassesList(); ```
@@ -6031,15 +6142,7 @@ await client.ats.jobInterviewStages.retrieve("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.ats.JobInterviewStagesRetrieveRequest` +**request:** `Merge.crm.ContactsRemoteFieldClassesListRequest`
@@ -6047,7 +6150,7 @@ await client.ats.jobInterviewStages.retrieve("id");
-**requestOptions:** `JobInterviewStages.RequestOptions` +**requestOptions:** `Contacts.RequestOptions`
@@ -6058,9 +6161,9 @@ await client.ats.jobInterviewStages.retrieve("id");
-## Ats JobPostings +## Crm CustomObjectClasses -
client.ats.jobPostings.list({ ...params }) -> Merge.PaginatedJobPostingList +
client.crm.customObjectClasses.list({ ...params }) -> Merge.PaginatedCustomObjectClassList
@@ -6072,7 +6175,7 @@ await client.ats.jobInterviewStages.retrieve("id");
-Returns a list of `JobPosting` objects. +Returns a list of `CustomObjectClass` objects.
@@ -6088,7 +6191,7 @@ Returns a list of `JobPosting` objects.
```typescript -await client.ats.jobPostings.list(); +await client.crm.customObjectClasses.list(); ```
@@ -6104,7 +6207,7 @@ await client.ats.jobPostings.list();
-**request:** `Merge.ats.JobPostingsListRequest` +**request:** `Merge.crm.CustomObjectClassesListRequest`
@@ -6112,7 +6215,7 @@ await client.ats.jobPostings.list();
-**requestOptions:** `JobPostings.RequestOptions` +**requestOptions:** `CustomObjectClasses.RequestOptions`
@@ -6123,7 +6226,7 @@ await client.ats.jobPostings.list();
-
client.ats.jobPostings.retrieve(id, { ...params }) -> Merge.JobPosting +
client.crm.customObjectClasses.retrieve(id, { ...params }) -> Merge.CustomObjectClass
@@ -6135,7 +6238,7 @@ await client.ats.jobPostings.list();
-Returns a `JobPosting` object with the given `id`. +Returns a `CustomObjectClass` object with the given `id`.
@@ -6151,7 +6254,7 @@ Returns a `JobPosting` object with the given `id`.
```typescript -await client.ats.jobPostings.retrieve("id"); +await client.crm.customObjectClasses.retrieve("id"); ```
@@ -6175,7 +6278,7 @@ await client.ats.jobPostings.retrieve("id");
-**request:** `Merge.ats.JobPostingsRetrieveRequest` +**request:** `Merge.crm.CustomObjectClassesRetrieveRequest`
@@ -6183,7 +6286,7 @@ await client.ats.jobPostings.retrieve("id");
-**requestOptions:** `JobPostings.RequestOptions` +**requestOptions:** `CustomObjectClasses.RequestOptions`
@@ -6194,9 +6297,9 @@ await client.ats.jobPostings.retrieve("id");
-## Ats Jobs +## Crm AssociationTypes -
client.ats.jobs.list({ ...params }) -> Merge.PaginatedJobList +
client.crm.associationTypes.customObjectClassesAssociationTypesList(customObjectClassId, { ...params }) -> Merge.PaginatedAssociationTypeList
@@ -6208,7 +6311,7 @@ await client.ats.jobPostings.retrieve("id");
-Returns a list of `Job` objects. +Returns a list of `AssociationType` objects.
@@ -6224,7 +6327,7 @@ Returns a list of `Job` objects.
```typescript -await client.ats.jobs.list(); +await client.crm.associationTypes.customObjectClassesAssociationTypesList("custom_object_class_id"); ```
@@ -6240,7 +6343,7 @@ await client.ats.jobs.list();
-**request:** `Merge.ats.JobsListRequest` +**customObjectClassId:** `string`
@@ -6248,7 +6351,15 @@ await client.ats.jobs.list();
-**requestOptions:** `Jobs.RequestOptions` +**request:** `Merge.crm.CustomObjectClassesAssociationTypesListRequest` + +
+
+ +
+
+ +**requestOptions:** `AssociationTypes.RequestOptions`
@@ -6259,7 +6370,7 @@ await client.ats.jobs.list();
-
client.ats.jobs.retrieve(id, { ...params }) -> Merge.Job +
client.crm.associationTypes.customObjectClassesAssociationTypesCreate(customObjectClassId, { ...params }) -> Merge.CrmAssociationTypeResponse
@@ -6271,7 +6382,7 @@ await client.ats.jobs.list();
-Returns a `Job` object with the given `id`. +Creates an `AssociationType` object with the given values.
@@ -6287,7 +6398,21 @@ Returns a `Job` object with the given `id`.
```typescript -await client.ats.jobs.retrieve("id"); +await client.crm.associationTypes.customObjectClassesAssociationTypesCreate("custom_object_class_id", { + model: { + sourceObjectClass: { + id: "id", + originType: "CUSTOM_OBJECT", + }, + targetObjectClasses: [ + { + id: "id", + originType: "CUSTOM_OBJECT", + }, + ], + remoteKeyName: "remote_key_name", + }, +}); ```
@@ -6303,7 +6428,7 @@ await client.ats.jobs.retrieve("id");
-**id:** `string` +**customObjectClassId:** `string`
@@ -6311,7 +6436,7 @@ await client.ats.jobs.retrieve("id");
-**request:** `Merge.ats.JobsRetrieveRequest` +**request:** `Merge.crm.CrmAssociationTypeEndpointRequest`
@@ -6319,7 +6444,7 @@ await client.ats.jobs.retrieve("id");
-**requestOptions:** `Jobs.RequestOptions` +**requestOptions:** `AssociationTypes.RequestOptions`
@@ -6330,7 +6455,7 @@ await client.ats.jobs.retrieve("id");
-
client.ats.jobs.screeningQuestionsList(jobId, { ...params }) -> Merge.PaginatedScreeningQuestionList +
client.crm.associationTypes.customObjectClassesAssociationTypesRetrieve(customObjectClassId, id, { ...params }) -> Merge.AssociationType
@@ -6342,7 +6467,7 @@ await client.ats.jobs.retrieve("id");
-Returns a list of `ScreeningQuestion` objects. +Returns an `AssociationType` object with the given `id`.
@@ -6358,7 +6483,7 @@ Returns a list of `ScreeningQuestion` objects.
```typescript -await client.ats.jobs.screeningQuestionsList("job_id"); +await client.crm.associationTypes.customObjectClassesAssociationTypesRetrieve("custom_object_class_id", "id"); ```
@@ -6374,7 +6499,7 @@ await client.ats.jobs.screeningQuestionsList("job_id");
-**jobId:** `string` +**customObjectClassId:** `string`
@@ -6382,7 +6507,7 @@ await client.ats.jobs.screeningQuestionsList("job_id");
-**request:** `Merge.ats.JobsScreeningQuestionsListRequest` +**id:** `string`
@@ -6390,7 +6515,15 @@ await client.ats.jobs.screeningQuestionsList("job_id");
-**requestOptions:** `Jobs.RequestOptions` +**request:** `Merge.crm.CustomObjectClassesAssociationTypesRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `AssociationTypes.RequestOptions`
@@ -6401,9 +6534,7 @@ await client.ats.jobs.screeningQuestionsList("job_id");
-## Ats LinkToken - -
client.ats.linkToken.create({ ...params }) -> Merge.LinkToken +
client.crm.associationTypes.customObjectClassesAssociationTypesMetaPostRetrieve(customObjectClassId) -> Merge.MetaResponse
@@ -6415,7 +6546,7 @@ await client.ats.jobs.screeningQuestionsList("job_id");
-Creates a link token to be used when linking a new end user. +Returns metadata for `CRMAssociationType` POSTs.
@@ -6431,12 +6562,7 @@ Creates a link token to be used when linking a new end user.
```typescript -await client.ats.linkToken.create({ - endUserEmailAddress: "example@gmail.com", - endUserOrganizationName: "Test Organization", - endUserOriginId: "12345", - categories: ["hris", "ats"], -}); +await client.crm.associationTypes.customObjectClassesAssociationTypesMetaPostRetrieve("custom_object_class_id"); ```
@@ -6452,7 +6578,7 @@ await client.ats.linkToken.create({
-**request:** `Merge.ats.EndUserDetailsRequest` +**customObjectClassId:** `string`
@@ -6460,7 +6586,7 @@ await client.ats.linkToken.create({
-**requestOptions:** `LinkToken.RequestOptions` +**requestOptions:** `AssociationTypes.RequestOptions`
@@ -6471,9 +6597,9 @@ await client.ats.linkToken.create({
-## Ats LinkedAccounts +## Crm CustomObjects -
client.ats.linkedAccounts.list({ ...params }) -> Merge.PaginatedAccountDetailsAndActionsList +
client.crm.customObjects.customObjectClassesCustomObjectsList(customObjectClassId, { ...params }) -> Merge.PaginatedCustomObjectList
@@ -6485,7 +6611,7 @@ await client.ats.linkToken.create({
-List linked accounts for your organization. +Returns a list of `CustomObject` objects.
@@ -6501,7 +6627,7 @@ List linked accounts for your organization.
```typescript -await client.ats.linkedAccounts.list(); +await client.crm.customObjects.customObjectClassesCustomObjectsList("custom_object_class_id"); ```
@@ -6517,7 +6643,7 @@ await client.ats.linkedAccounts.list();
-**request:** `Merge.ats.LinkedAccountsListRequest` +**customObjectClassId:** `string`
@@ -6525,7 +6651,15 @@ await client.ats.linkedAccounts.list();
-**requestOptions:** `LinkedAccounts.RequestOptions` +**request:** `Merge.crm.CustomObjectClassesCustomObjectsListRequest` + +
+
+ +
+
+ +**requestOptions:** `CustomObjects.RequestOptions`
@@ -6536,9 +6670,7 @@ await client.ats.linkedAccounts.list();
-## Ats Offers - -
client.ats.offers.list({ ...params }) -> Merge.PaginatedOfferList +
client.crm.customObjects.customObjectClassesCustomObjectsCreate(customObjectClassId, { ...params }) -> Merge.CrmCustomObjectResponse
@@ -6550,7 +6682,7 @@ await client.ats.linkedAccounts.list();
-Returns a list of `Offer` objects. +Creates a `CustomObject` object with the given values.
@@ -6566,7 +6698,13 @@ Returns a list of `Offer` objects.
```typescript -await client.ats.offers.list(); +await client.crm.customObjects.customObjectClassesCustomObjectsCreate("custom_object_class_id", { + model: { + fields: { + test_field: "hello", + }, + }, +}); ```
@@ -6582,7 +6720,7 @@ await client.ats.offers.list();
-**request:** `Merge.ats.OffersListRequest` +**customObjectClassId:** `string`
@@ -6590,7 +6728,15 @@ await client.ats.offers.list();
-**requestOptions:** `Offers.RequestOptions` +**request:** `Merge.crm.CrmCustomObjectEndpointRequest` + +
+
+ +
+
+ +**requestOptions:** `CustomObjects.RequestOptions`
@@ -6601,7 +6747,7 @@ await client.ats.offers.list();
-
client.ats.offers.retrieve(id, { ...params }) -> Merge.Offer +
client.crm.customObjects.customObjectClassesCustomObjectsRetrieve(customObjectClassId, id, { ...params }) -> Merge.CustomObject
@@ -6613,7 +6759,7 @@ await client.ats.offers.list();
-Returns an `Offer` object with the given `id`. +Returns a `CustomObject` object with the given `id`.
@@ -6629,7 +6775,7 @@ Returns an `Offer` object with the given `id`.
```typescript -await client.ats.offers.retrieve("id"); +await client.crm.customObjects.customObjectClassesCustomObjectsRetrieve("custom_object_class_id", "id"); ```
@@ -6645,6 +6791,14 @@ await client.ats.offers.retrieve("id");
+**customObjectClassId:** `string` + +
+
+ +
+
+ **id:** `string`
@@ -6653,7 +6807,7 @@ await client.ats.offers.retrieve("id");
-**request:** `Merge.ats.OffersRetrieveRequest` +**request:** `Merge.crm.CustomObjectClassesCustomObjectsRetrieveRequest`
@@ -6661,7 +6815,7 @@ await client.ats.offers.retrieve("id");
-**requestOptions:** `Offers.RequestOptions` +**requestOptions:** `CustomObjects.RequestOptions`
@@ -6672,9 +6826,7 @@ await client.ats.offers.retrieve("id");
-## Ats Offices - -
client.ats.offices.list({ ...params }) -> Merge.PaginatedOfficeList +
client.crm.customObjects.customObjectClassesCustomObjectsMetaPostRetrieve(customObjectClassId) -> Merge.MetaResponse
@@ -6686,7 +6838,7 @@ await client.ats.offers.retrieve("id");
-Returns a list of `Office` objects. +Returns metadata for `CRMCustomObject` POSTs.
@@ -6702,7 +6854,7 @@ Returns a list of `Office` objects.
```typescript -await client.ats.offices.list(); +await client.crm.customObjects.customObjectClassesCustomObjectsMetaPostRetrieve("custom_object_class_id"); ```
@@ -6718,7 +6870,7 @@ await client.ats.offices.list();
-**request:** `Merge.ats.OfficesListRequest` +**customObjectClassId:** `string`
@@ -6726,7 +6878,7 @@ await client.ats.offices.list();
-**requestOptions:** `Offices.RequestOptions` +**requestOptions:** `CustomObjects.RequestOptions`
@@ -6737,7 +6889,7 @@ await client.ats.offices.list();
-
client.ats.offices.retrieve(id, { ...params }) -> Merge.Office +
client.crm.customObjects.customObjectClassesCustomObjectsRemoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList
@@ -6749,7 +6901,7 @@ await client.ats.offices.list();
-Returns an `Office` object with the given `id`. +Returns a list of `RemoteFieldClass` objects.
@@ -6765,7 +6917,7 @@ Returns an `Office` object with the given `id`.
```typescript -await client.ats.offices.retrieve("id"); +await client.crm.customObjects.customObjectClassesCustomObjectsRemoteFieldClassesList(); ```
@@ -6781,15 +6933,7 @@ await client.ats.offices.retrieve("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.ats.OfficesRetrieveRequest` +**request:** `Merge.crm.CustomObjectClassesCustomObjectsRemoteFieldClassesListRequest`
@@ -6797,7 +6941,7 @@ await client.ats.offices.retrieve("id");
-**requestOptions:** `Offices.RequestOptions` +**requestOptions:** `CustomObjects.RequestOptions`
@@ -6808,9 +6952,9 @@ await client.ats.offices.retrieve("id");
-## Ats Passthrough +## Crm Associations -
client.ats.passthrough.create({ ...params }) -> Merge.RemoteResponse +
client.crm.associations.customObjectClassesCustomObjectsAssociationsList(customObjectClassId, objectId, { ...params }) -> Merge.PaginatedAssociationList
@@ -6822,7 +6966,7 @@ await client.ats.offices.retrieve("id");
-Pull data from an endpoint not currently supported by Merge. +Returns a list of `Association` objects.
@@ -6838,10 +6982,7 @@ Pull data from an endpoint not currently supported by Merge.
```typescript -await client.ats.passthrough.create({ - method: "GET", - path: "/scooters", -}); +await client.crm.associations.customObjectClassesCustomObjectsAssociationsList("custom_object_class_id", "object_id"); ```
@@ -6857,7 +6998,7 @@ await client.ats.passthrough.create({
-**request:** `Merge.DataPassthroughRequest` +**customObjectClassId:** `string`
@@ -6865,7 +7006,23 @@ await client.ats.passthrough.create({
-**requestOptions:** `Passthrough.RequestOptions` +**objectId:** `string` + +
+
+ +
+
+ +**request:** `Merge.crm.CustomObjectClassesCustomObjectsAssociationsListRequest` + +
+
+ +
+
+ +**requestOptions:** `Associations.RequestOptions`
@@ -6876,9 +7033,7 @@ await client.ats.passthrough.create({
-## Ats RegenerateKey - -
client.ats.regenerateKey.create({ ...params }) -> Merge.RemoteKey +
client.crm.associations.customObjectClassesCustomObjectsAssociationsUpdate(associationTypeId, sourceClassId, sourceObjectId, targetClassId, targetObjectId, { ...params }) -> Merge.Association
@@ -6890,7 +7045,7 @@ await client.ats.passthrough.create({
-Exchange remote keys. +Creates an Association between `source_object_id` and `target_object_id` of type `association_type_id`.
@@ -6906,9 +7061,13 @@ Exchange remote keys.
```typescript -await client.ats.regenerateKey.create({ - name: "Remote Deployment Key 1", -}); +await client.crm.associations.customObjectClassesCustomObjectsAssociationsUpdate( + "association_type_id", + "source_class_id", + "source_object_id", + "target_class_id", + "target_object_id", +); ```
@@ -6924,7 +7083,7 @@ await client.ats.regenerateKey.create({
-**request:** `Merge.ats.RemoteKeyForRegenerationRequest` +**associationTypeId:** `string`
@@ -6932,64 +7091,39 @@ await client.ats.regenerateKey.create({
-**requestOptions:** `RegenerateKey.RequestOptions` - -
-
- -
+**sourceClassId:** `string` -
- -## Ats RejectReasons -
client.ats.rejectReasons.list({ ...params }) -> Merge.PaginatedRejectReasonList
-#### 📝 Description +**sourceObjectId:** `string` -
-
+
+
-Returns a list of `RejectReason` objects. +**targetClassId:** `string`
-
-
- -#### 🔌 Usage - -
-
-```typescript -await client.ats.rejectReasons.list(); -``` +**targetObjectId:** `string`
-
-
- -#### ⚙️ Parameters - -
-
-**request:** `Merge.ats.RejectReasonsListRequest` +**request:** `Merge.crm.CustomObjectClassesCustomObjectsAssociationsUpdateRequest`
@@ -6997,7 +7131,7 @@ await client.ats.rejectReasons.list();
-**requestOptions:** `RejectReasons.RequestOptions` +**requestOptions:** `Associations.RequestOptions`
@@ -7008,7 +7142,9 @@ await client.ats.rejectReasons.list();
-
client.ats.rejectReasons.retrieve(id, { ...params }) -> Merge.RejectReason +## Crm Scopes + +
client.crm.scopes.defaultScopesRetrieve() -> Merge.CommonModelScopeApi
@@ -7020,7 +7156,7 @@ await client.ats.rejectReasons.list();
-Returns a `RejectReason` object with the given `id`. +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).
@@ -7036,7 +7172,7 @@ Returns a `RejectReason` object with the given `id`.
```typescript -await client.ats.rejectReasons.retrieve("id"); +await client.crm.scopes.defaultScopesRetrieve(); ```
@@ -7052,23 +7188,7 @@ await client.ats.rejectReasons.retrieve("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.ats.RejectReasonsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `RejectReasons.RequestOptions` +**requestOptions:** `Scopes.RequestOptions`
@@ -7079,9 +7199,7 @@ await client.ats.rejectReasons.retrieve("id");
-## Ats Scorecards - -
client.ats.scorecards.list({ ...params }) -> Merge.PaginatedScorecardList +
client.crm.scopes.linkedAccountScopesRetrieve() -> Merge.CommonModelScopeApi
@@ -7093,7 +7211,7 @@ await client.ats.rejectReasons.retrieve("id");
-Returns a list of `Scorecard` objects. +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).
@@ -7109,7 +7227,7 @@ Returns a list of `Scorecard` objects.
```typescript -await client.ats.scorecards.list(); +await client.crm.scopes.linkedAccountScopesRetrieve(); ```
@@ -7125,15 +7243,7 @@ await client.ats.scorecards.list();
-**request:** `Merge.ats.ScorecardsListRequest` - -
-
- -
-
- -**requestOptions:** `Scorecards.RequestOptions` +**requestOptions:** `Scopes.RequestOptions`
@@ -7144,7 +7254,7 @@ await client.ats.scorecards.list();
-
client.ats.scorecards.retrieve(id, { ...params }) -> Merge.Scorecard +
client.crm.scopes.linkedAccountScopesCreate({ ...params }) -> Merge.CommonModelScopeApi
@@ -7156,7 +7266,7 @@ await client.ats.scorecards.list();
-Returns a `Scorecard` object with the given `id`. +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)
@@ -7172,7 +7282,33 @@ Returns a `Scorecard` object with the given `id`.
```typescript -await client.ats.scorecards.retrieve("id"); +await client.crm.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, + }, + }, + }, + ], +}); ```
@@ -7188,15 +7324,7 @@ await client.ats.scorecards.retrieve("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.ats.ScorecardsRetrieveRequest` +**request:** `Merge.crm.LinkedAccountCommonModelScopeDeserializerRequest`
@@ -7204,7 +7332,7 @@ await client.ats.scorecards.retrieve("id");
-**requestOptions:** `Scorecards.RequestOptions` +**requestOptions:** `Scopes.RequestOptions`
@@ -7215,9 +7343,9 @@ await client.ats.scorecards.retrieve("id");
-## Ats SyncStatus +## Crm DeleteAccount -
client.ats.syncStatus.list({ ...params }) -> Merge.PaginatedSyncStatusList +
client.crm.deleteAccount.delete() -> void
@@ -7229,7 +7357,7 @@ await client.ats.scorecards.retrieve("id");
-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). +Delete a linked account.
@@ -7245,7 +7373,7 @@ Get sync status for the current sync and the most recently finished sync. `last_
```typescript -await client.ats.syncStatus.list(); +await client.crm.deleteAccount.delete(); ```
@@ -7261,15 +7389,7 @@ await client.ats.syncStatus.list();
-**request:** `Merge.ats.SyncStatusListRequest` - -
-
- -
-
- -**requestOptions:** `SyncStatus.RequestOptions` +**requestOptions:** `DeleteAccount.RequestOptions`
@@ -7280,9 +7400,9 @@ await client.ats.syncStatus.list();
-## Ats ForceResync +## Crm EngagementTypes -
client.ats.forceResync.syncStatusResyncCreate() -> Merge.SyncStatus[] +
client.crm.engagementTypes.list({ ...params }) -> Merge.PaginatedEngagementTypeList
@@ -7294,7 +7414,7 @@ await client.ats.syncStatus.list();
-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. +Returns a list of `EngagementType` objects.
@@ -7310,7 +7430,7 @@ Force re-sync of all models. This endpoint is available for monthly, quarterly,
```typescript -await client.ats.forceResync.syncStatusResyncCreate(); +await client.crm.engagementTypes.list(); ```
@@ -7326,7 +7446,15 @@ await client.ats.forceResync.syncStatusResyncCreate();
-**requestOptions:** `ForceResync.RequestOptions` +**request:** `Merge.crm.EngagementTypesListRequest` + +
+
+ +
+
+ +**requestOptions:** `EngagementTypes.RequestOptions`
@@ -7337,9 +7465,7 @@ await client.ats.forceResync.syncStatusResyncCreate();
-## Ats Tags - -
client.ats.tags.list({ ...params }) -> Merge.PaginatedTagList +
client.crm.engagementTypes.retrieve(id, { ...params }) -> Merge.EngagementType
@@ -7351,7 +7477,7 @@ await client.ats.forceResync.syncStatusResyncCreate();
-Returns a list of `Tag` objects. +Returns an `EngagementType` object with the given `id`.
@@ -7367,7 +7493,7 @@ Returns a list of `Tag` objects.
```typescript -await client.ats.tags.list(); +await client.crm.engagementTypes.retrieve("id"); ```
@@ -7383,7 +7509,7 @@ await client.ats.tags.list();
-**request:** `Merge.ats.TagsListRequest` +**id:** `string`
@@ -7391,7 +7517,15 @@ await client.ats.tags.list();
-**requestOptions:** `Tags.RequestOptions` +**request:** `Merge.crm.EngagementTypesRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `EngagementTypes.RequestOptions`
@@ -7402,9 +7536,7 @@ await client.ats.tags.list();
-## Ats Users - -
client.ats.users.list({ ...params }) -> Merge.PaginatedRemoteUserList +
client.crm.engagementTypes.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList
@@ -7416,7 +7548,7 @@ await client.ats.tags.list();
-Returns a list of `RemoteUser` objects. +Returns a list of `RemoteFieldClass` objects.
@@ -7432,7 +7564,7 @@ Returns a list of `RemoteUser` objects.
```typescript -await client.ats.users.list(); +await client.crm.engagementTypes.remoteFieldClassesList(); ```
@@ -7448,7 +7580,7 @@ await client.ats.users.list();
-**request:** `Merge.ats.UsersListRequest` +**request:** `Merge.crm.EngagementTypesRemoteFieldClassesListRequest`
@@ -7456,7 +7588,7 @@ await client.ats.users.list();
-**requestOptions:** `Users.RequestOptions` +**requestOptions:** `EngagementTypes.RequestOptions`
@@ -7467,7 +7599,9 @@ await client.ats.users.list();
-
client.ats.users.retrieve(id, { ...params }) -> Merge.RemoteUser +## Crm Engagements + +
client.crm.engagements.list({ ...params }) -> Merge.PaginatedEngagementList
@@ -7479,7 +7613,7 @@ await client.ats.users.list();
-Returns a `RemoteUser` object with the given `id`. +Returns a list of `Engagement` objects.
@@ -7495,7 +7629,7 @@ Returns a `RemoteUser` object with the given `id`.
```typescript -await client.ats.users.retrieve("id"); +await client.crm.engagements.list(); ```
@@ -7511,15 +7645,7 @@ await client.ats.users.retrieve("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.ats.UsersRetrieveRequest` +**request:** `Merge.crm.EngagementsListRequest`
@@ -7527,7 +7653,7 @@ await client.ats.users.retrieve("id");
-**requestOptions:** `Users.RequestOptions` +**requestOptions:** `Engagements.RequestOptions`
@@ -7538,9 +7664,7 @@ await client.ats.users.retrieve("id");
-## Ats WebhookReceivers - -
client.ats.webhookReceivers.list() -> Merge.WebhookReceiver[] +
client.crm.engagements.create({ ...params }) -> Merge.EngagementResponse
@@ -7552,7 +7676,7 @@ await client.ats.users.retrieve("id");
-Returns a list of `WebhookReceiver` objects. +Creates an `Engagement` object with the given values.
@@ -7568,7 +7692,9 @@ Returns a list of `WebhookReceiver` objects.
```typescript -await client.ats.webhookReceivers.list(); +await client.crm.engagements.create({ + model: {}, +}); ```
@@ -7584,7 +7710,15 @@ await client.ats.webhookReceivers.list();
-**requestOptions:** `WebhookReceivers.RequestOptions` +**request:** `Merge.crm.EngagementEndpointRequest` + +
+
+ +
+
+ +**requestOptions:** `Engagements.RequestOptions`
@@ -7595,7 +7729,7 @@ await client.ats.webhookReceivers.list();
-
client.ats.webhookReceivers.create({ ...params }) -> Merge.WebhookReceiver +
client.crm.engagements.retrieve(id, { ...params }) -> Merge.Engagement
@@ -7607,7 +7741,7 @@ await client.ats.webhookReceivers.list();
-Creates a `WebhookReceiver` object with the given values. +Returns an `Engagement` object with the given `id`.
@@ -7623,10 +7757,7 @@ Creates a `WebhookReceiver` object with the given values.
```typescript -await client.ats.webhookReceivers.create({ - event: "event", - isActive: true, -}); +await client.crm.engagements.retrieve("id"); ```
@@ -7642,7 +7773,7 @@ await client.ats.webhookReceivers.create({
-**request:** `Merge.ats.WebhookReceiverRequest` +**id:** `string`
@@ -7650,7 +7781,15 @@ await client.ats.webhookReceivers.create({
-**requestOptions:** `WebhookReceivers.RequestOptions` +**request:** `Merge.crm.EngagementsRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `Engagements.RequestOptions`
@@ -7661,9 +7800,7 @@ await client.ats.webhookReceivers.create({
-## Crm AccountDetails - -
client.crm.accountDetails.retrieve() -> Merge.AccountDetails +
client.crm.engagements.partialUpdate(id, { ...params }) -> Merge.EngagementResponse
@@ -7675,7 +7812,7 @@ await client.ats.webhookReceivers.create({
-Get details for a linked account. +Updates an `Engagement` object with the given `id`.
@@ -7691,7 +7828,9 @@ Get details for a linked account.
```typescript -await client.crm.accountDetails.retrieve(); +await client.crm.engagements.partialUpdate("id", { + model: {}, +}); ```
@@ -7707,7 +7846,23 @@ await client.crm.accountDetails.retrieve();
-**requestOptions:** `AccountDetails.RequestOptions` +**id:** `string` + +
+
+ +
+
+ +**request:** `Merge.crm.PatchedEngagementEndpointRequest` + +
+
+ +
+
+ +**requestOptions:** `Engagements.RequestOptions`
@@ -7718,9 +7873,7 @@ await client.crm.accountDetails.retrieve();
-## Crm AccountToken - -
client.crm.accountToken.retrieve(publicToken) -> Merge.AccountToken +
client.crm.engagements.metaPatchRetrieve(id) -> Merge.MetaResponse
@@ -7732,7 +7885,7 @@ await client.crm.accountDetails.retrieve();
-Returns the account token for the end user with the provided public token. +Returns metadata for `Engagement` PATCHs.
@@ -7748,7 +7901,7 @@ Returns the account token for the end user with the provided public token.
```typescript -await client.crm.accountToken.retrieve("public_token"); +await client.crm.engagements.metaPatchRetrieve("id"); ```
@@ -7764,7 +7917,7 @@ await client.crm.accountToken.retrieve("public_token");
-**publicToken:** `string` +**id:** `string`
@@ -7772,7 +7925,7 @@ await client.crm.accountToken.retrieve("public_token");
-**requestOptions:** `AccountToken.RequestOptions` +**requestOptions:** `Engagements.RequestOptions`
@@ -7783,9 +7936,7 @@ await client.crm.accountToken.retrieve("public_token");
-## Crm Accounts - -
client.crm.accounts.list({ ...params }) -> Merge.PaginatedAccountList +
client.crm.engagements.metaPostRetrieve() -> Merge.MetaResponse
@@ -7797,7 +7948,7 @@ await client.crm.accountToken.retrieve("public_token");
-Returns a list of `Account` objects. +Returns metadata for `Engagement` POSTs.
@@ -7813,7 +7964,7 @@ Returns a list of `Account` objects.
```typescript -await client.crm.accounts.list(); +await client.crm.engagements.metaPostRetrieve(); ```
@@ -7829,15 +7980,7 @@ await client.crm.accounts.list();
-**request:** `Merge.crm.AccountsListRequest` - -
-
- -
-
- -**requestOptions:** `Accounts.RequestOptions` +**requestOptions:** `Engagements.RequestOptions`
@@ -7848,7 +7991,7 @@ await client.crm.accounts.list();
-
client.crm.accounts.create({ ...params }) -> Merge.CrmAccountResponse +
client.crm.engagements.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList
@@ -7860,7 +8003,7 @@ await client.crm.accounts.list();
-Creates an `Account` object with the given values. +Returns a list of `RemoteFieldClass` objects.
@@ -7876,9 +8019,7 @@ Creates an `Account` object with the given values.
```typescript -await client.crm.accounts.create({ - model: {}, -}); +await client.crm.engagements.remoteFieldClassesList(); ```
@@ -7894,7 +8035,7 @@ await client.crm.accounts.create({
-**request:** `Merge.crm.CrmAccountEndpointRequest` +**request:** `Merge.crm.EngagementsRemoteFieldClassesListRequest`
@@ -7902,7 +8043,7 @@ await client.crm.accounts.create({
-**requestOptions:** `Accounts.RequestOptions` +**requestOptions:** `Engagements.RequestOptions`
@@ -7913,7 +8054,9 @@ await client.crm.accounts.create({
-
client.crm.accounts.retrieve(id, { ...params }) -> Merge.Account +## Crm FieldMapping + +
client.crm.fieldMapping.fieldMappingsRetrieve({ ...params }) -> Merge.FieldMappingApiInstanceResponse
@@ -7925,7 +8068,7 @@ await client.crm.accounts.create({
-Returns an `Account` object with the given `id`. +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/).
@@ -7941,7 +8084,7 @@ Returns an `Account` object with the given `id`.
```typescript -await client.crm.accounts.retrieve("id"); +await client.crm.fieldMapping.fieldMappingsRetrieve(); ```
@@ -7957,15 +8100,7 @@ await client.crm.accounts.retrieve("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.crm.AccountsRetrieveRequest` +**request:** `Merge.crm.FieldMappingsRetrieveRequest`
@@ -7973,7 +8108,7 @@ await client.crm.accounts.retrieve("id");
-**requestOptions:** `Accounts.RequestOptions` +**requestOptions:** `FieldMapping.RequestOptions`
@@ -7984,7 +8119,7 @@ await client.crm.accounts.retrieve("id");
-
client.crm.accounts.partialUpdate(id, { ...params }) -> Merge.CrmAccountResponse +
client.crm.fieldMapping.fieldMappingsCreate({ ...params }) -> Merge.FieldMappingInstanceResponse
@@ -7996,7 +8131,7 @@ await client.crm.accounts.retrieve("id");
-Updates an `Account` object with the given `id`. +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.
@@ -8012,8 +8147,13 @@ Updates an `Account` object with the given `id`.
```typescript -await client.crm.accounts.partialUpdate("id", { - model: {}, +await client.crm.fieldMapping.fieldMappingsCreate({ + 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", }); ``` @@ -8030,15 +8170,7 @@ await client.crm.accounts.partialUpdate("id", {
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.crm.PatchedCrmAccountEndpointRequest` +**request:** `Merge.crm.CreateFieldMappingRequest`
@@ -8046,7 +8178,7 @@ await client.crm.accounts.partialUpdate("id", {
-**requestOptions:** `Accounts.RequestOptions` +**requestOptions:** `FieldMapping.RequestOptions`
@@ -8057,7 +8189,7 @@ await client.crm.accounts.partialUpdate("id", {
-
client.crm.accounts.metaPatchRetrieve(id) -> Merge.MetaResponse +
client.crm.fieldMapping.fieldMappingsDestroy(fieldMappingId) -> Merge.FieldMappingInstanceResponse
@@ -8069,7 +8201,7 @@ await client.crm.accounts.partialUpdate("id", {
-Returns metadata for `CRMAccount` PATCHs. +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.
@@ -8085,7 +8217,7 @@ Returns metadata for `CRMAccount` PATCHs.
```typescript -await client.crm.accounts.metaPatchRetrieve("id"); +await client.crm.fieldMapping.fieldMappingsDestroy("field_mapping_id"); ```
@@ -8101,7 +8233,7 @@ await client.crm.accounts.metaPatchRetrieve("id");
-**id:** `string` +**fieldMappingId:** `string`
@@ -8109,7 +8241,7 @@ await client.crm.accounts.metaPatchRetrieve("id");
-**requestOptions:** `Accounts.RequestOptions` +**requestOptions:** `FieldMapping.RequestOptions`
@@ -8120,7 +8252,7 @@ await client.crm.accounts.metaPatchRetrieve("id");
-
client.crm.accounts.metaPostRetrieve() -> Merge.MetaResponse +
client.crm.fieldMapping.fieldMappingsPartialUpdate(fieldMappingId, { ...params }) -> Merge.FieldMappingInstanceResponse
@@ -8132,7 +8264,7 @@ await client.crm.accounts.metaPatchRetrieve("id");
-Returns metadata for `CRMAccount` POSTs. +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.
@@ -8148,7 +8280,7 @@ Returns metadata for `CRMAccount` POSTs.
```typescript -await client.crm.accounts.metaPostRetrieve(); +await client.crm.fieldMapping.fieldMappingsPartialUpdate("field_mapping_id"); ```
@@ -8164,10 +8296,26 @@ await client.crm.accounts.metaPostRetrieve();
-**requestOptions:** `Accounts.RequestOptions` +**fieldMappingId:** `string` -
-
+ +
+ +
+
+ +**request:** `Merge.crm.PatchedEditFieldMappingRequest` + +
+
+ +
+
+ +**requestOptions:** `FieldMapping.RequestOptions` + +
+
@@ -8175,7 +8323,7 @@ await client.crm.accounts.metaPostRetrieve();
-
client.crm.accounts.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList +
client.crm.fieldMapping.remoteFieldsRetrieve({ ...params }) -> Merge.RemoteFieldApiResponse
@@ -8187,7 +8335,7 @@ await client.crm.accounts.metaPostRetrieve();
-Returns a list of `RemoteFieldClass` objects. +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/).
@@ -8203,7 +8351,7 @@ Returns a list of `RemoteFieldClass` objects.
```typescript -await client.crm.accounts.remoteFieldClassesList(); +await client.crm.fieldMapping.remoteFieldsRetrieve(); ```
@@ -8219,7 +8367,7 @@ await client.crm.accounts.remoteFieldClassesList();
-**request:** `Merge.crm.AccountsRemoteFieldClassesListRequest` +**request:** `Merge.crm.RemoteFieldsRetrieveRequest`
@@ -8227,7 +8375,7 @@ await client.crm.accounts.remoteFieldClassesList();
-**requestOptions:** `Accounts.RequestOptions` +**requestOptions:** `FieldMapping.RequestOptions`
@@ -8238,9 +8386,7 @@ await client.crm.accounts.remoteFieldClassesList();
-## Crm AsyncPassthrough - -
client.crm.asyncPassthrough.create({ ...params }) -> Merge.AsyncPassthroughReciept +
client.crm.fieldMapping.targetFieldsRetrieve() -> Merge.ExternalTargetFieldApiResponse
@@ -8252,7 +8398,7 @@ await client.crm.accounts.remoteFieldClassesList();
-Asynchronously pull data from an endpoint not currently supported by Merge. +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/).
@@ -8268,10 +8414,7 @@ Asynchronously pull data from an endpoint not currently supported by Merge.
```typescript -await client.crm.asyncPassthrough.create({ - method: "GET", - path: "/scooters", -}); +await client.crm.fieldMapping.targetFieldsRetrieve(); ```
@@ -8287,15 +8430,7 @@ await client.crm.asyncPassthrough.create({
-**request:** `Merge.DataPassthroughRequest` - -
-
- -
-
- -**requestOptions:** `AsyncPassthrough.RequestOptions` +**requestOptions:** `FieldMapping.RequestOptions`
@@ -8306,7 +8441,9 @@ await client.crm.asyncPassthrough.create({
-
client.crm.asyncPassthrough.retrieve(asyncPassthroughReceiptId) -> Merge.AsyncPassthroughRetrieveResponse +## Crm GenerateKey + +
client.crm.generateKey.create({ ...params }) -> Merge.RemoteKey
@@ -8318,7 +8455,7 @@ await client.crm.asyncPassthrough.create({
-Retrieves data from earlier async-passthrough POST request +Create a remote key.
@@ -8334,7 +8471,9 @@ Retrieves data from earlier async-passthrough POST request
```typescript -await client.crm.asyncPassthrough.retrieve("async_passthrough_receipt_id"); +await client.crm.generateKey.create({ + name: "Remote Deployment Key 1", +}); ```
@@ -8350,7 +8489,7 @@ await client.crm.asyncPassthrough.retrieve("async_passthrough_receipt_id");
-**asyncPassthroughReceiptId:** `string` +**request:** `Merge.crm.GenerateRemoteKeyRequest`
@@ -8358,7 +8497,7 @@ await client.crm.asyncPassthrough.retrieve("async_passthrough_receipt_id");
-**requestOptions:** `AsyncPassthrough.RequestOptions` +**requestOptions:** `GenerateKey.RequestOptions`
@@ -8369,9 +8508,9 @@ await client.crm.asyncPassthrough.retrieve("async_passthrough_receipt_id");
-## Crm AuditTrail +## Crm Issues -
client.crm.auditTrail.list({ ...params }) -> Merge.PaginatedAuditLogEventList +
client.crm.issues.list({ ...params }) -> Merge.PaginatedIssueList
@@ -8383,7 +8522,7 @@ await client.crm.asyncPassthrough.retrieve("async_passthrough_receipt_id");
-Gets a list of audit trail events. +Gets all issues for Organization.
@@ -8399,7 +8538,7 @@ Gets a list of audit trail events.
```typescript -await client.crm.auditTrail.list(); +await client.crm.issues.list(); ```
@@ -8415,7 +8554,7 @@ await client.crm.auditTrail.list();
-**request:** `Merge.crm.AuditTrailListRequest` +**request:** `Merge.crm.IssuesListRequest`
@@ -8423,7 +8562,7 @@ await client.crm.auditTrail.list();
-**requestOptions:** `AuditTrail.RequestOptions` +**requestOptions:** `Issues.RequestOptions`
@@ -8434,9 +8573,7 @@ await client.crm.auditTrail.list();
-## Crm AvailableActions - -
client.crm.availableActions.retrieve() -> Merge.AvailableActions +
client.crm.issues.retrieve(id) -> Merge.Issue
@@ -8448,7 +8585,7 @@ await client.crm.auditTrail.list();
-Returns a list of models and actions available for an account. +Get a specific issue.
@@ -8464,7 +8601,7 @@ Returns a list of models and actions available for an account.
```typescript -await client.crm.availableActions.retrieve(); +await client.crm.issues.retrieve("id"); ```
@@ -8480,7 +8617,15 @@ await client.crm.availableActions.retrieve();
-**requestOptions:** `AvailableActions.RequestOptions` +**id:** `string` + +
+
+ +
+
+ +**requestOptions:** `Issues.RequestOptions`
@@ -8491,9 +8636,9 @@ await client.crm.availableActions.retrieve();
-## Crm Contacts +## Crm Leads -
client.crm.contacts.list({ ...params }) -> Merge.PaginatedContactList +
client.crm.leads.list({ ...params }) -> Merge.PaginatedLeadList
@@ -8505,7 +8650,7 @@ await client.crm.availableActions.retrieve();
-Returns a list of `Contact` objects. +Returns a list of `Lead` objects.
@@ -8521,7 +8666,7 @@ Returns a list of `Contact` objects.
```typescript -await client.crm.contacts.list(); +await client.crm.leads.list(); ```
@@ -8537,7 +8682,7 @@ await client.crm.contacts.list();
-**request:** `Merge.crm.ContactsListRequest` +**request:** `Merge.crm.LeadsListRequest`
@@ -8545,7 +8690,7 @@ await client.crm.contacts.list();
-**requestOptions:** `Contacts.RequestOptions` +**requestOptions:** `Leads.RequestOptions`
@@ -8556,7 +8701,7 @@ await client.crm.contacts.list();
-
client.crm.contacts.create({ ...params }) -> Merge.CrmContactResponse +
client.crm.leads.create({ ...params }) -> Merge.LeadResponse
@@ -8568,7 +8713,7 @@ await client.crm.contacts.list();
-Creates a `Contact` object with the given values. +Creates a `Lead` object with the given values.
@@ -8584,7 +8729,7 @@ Creates a `Contact` object with the given values.
```typescript -await client.crm.contacts.create({ +await client.crm.leads.create({ model: {}, }); ``` @@ -8602,7 +8747,7 @@ await client.crm.contacts.create({
-**request:** `Merge.crm.CrmContactEndpointRequest` +**request:** `Merge.crm.LeadEndpointRequest`
@@ -8610,7 +8755,7 @@ await client.crm.contacts.create({
-**requestOptions:** `Contacts.RequestOptions` +**requestOptions:** `Leads.RequestOptions`
@@ -8621,7 +8766,7 @@ await client.crm.contacts.create({
-
client.crm.contacts.retrieve(id, { ...params }) -> Merge.Contact +
client.crm.leads.retrieve(id, { ...params }) -> Merge.Lead
@@ -8633,7 +8778,7 @@ await client.crm.contacts.create({
-Returns a `Contact` object with the given `id`. +Returns a `Lead` object with the given `id`.
@@ -8649,7 +8794,7 @@ Returns a `Contact` object with the given `id`.
```typescript -await client.crm.contacts.retrieve("id"); +await client.crm.leads.retrieve("id"); ```
@@ -8673,7 +8818,7 @@ await client.crm.contacts.retrieve("id");
-**request:** `Merge.crm.ContactsRetrieveRequest` +**request:** `Merge.crm.LeadsRetrieveRequest`
@@ -8681,7 +8826,7 @@ await client.crm.contacts.retrieve("id");
-**requestOptions:** `Contacts.RequestOptions` +**requestOptions:** `Leads.RequestOptions`
@@ -8692,7 +8837,7 @@ await client.crm.contacts.retrieve("id");
-
client.crm.contacts.partialUpdate(id, { ...params }) -> Merge.CrmContactResponse +
client.crm.leads.metaPostRetrieve() -> Merge.MetaResponse
@@ -8704,7 +8849,7 @@ await client.crm.contacts.retrieve("id");
-Updates a `Contact` object with the given `id`. +Returns metadata for `Lead` POSTs.
@@ -8720,9 +8865,7 @@ Updates a `Contact` object with the given `id`.
```typescript -await client.crm.contacts.partialUpdate("id", { - model: {}, -}); +await client.crm.leads.metaPostRetrieve(); ```
@@ -8738,23 +8881,7 @@ await client.crm.contacts.partialUpdate("id", {
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.crm.PatchedCrmContactEndpointRequest` - -
-
- -
-
- -**requestOptions:** `Contacts.RequestOptions` +**requestOptions:** `Leads.RequestOptions`
@@ -8765,7 +8892,7 @@ await client.crm.contacts.partialUpdate("id", {
-
client.crm.contacts.ignoreCreate(modelId, { ...params }) -> void +
client.crm.leads.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList
@@ -8777,7 +8904,7 @@ await client.crm.contacts.partialUpdate("id", {
-Ignores a specific row based on the `model_id` in the url. These records will have their properties set to null, and will not be updated in future syncs. The "reason" and "message" fields in the request body will be stored for audit purposes. +Returns a list of `RemoteFieldClass` objects.
@@ -8793,9 +8920,7 @@ Ignores a specific row based on the `model_id` in the url. These records will ha
```typescript -await client.crm.contacts.ignoreCreate("model_id", { - reason: "GENERAL_CUSTOMER_REQUEST", -}); +await client.crm.leads.remoteFieldClassesList(); ```
@@ -8811,15 +8936,7 @@ await client.crm.contacts.ignoreCreate("model_id", {
-**modelId:** `string` - -
-
- -
-
- -**request:** `Merge.IgnoreCommonModelRequest` +**request:** `Merge.crm.LeadsRemoteFieldClassesListRequest`
@@ -8827,7 +8944,7 @@ await client.crm.contacts.ignoreCreate("model_id", {
-**requestOptions:** `Contacts.RequestOptions` +**requestOptions:** `Leads.RequestOptions`
@@ -8838,7 +8955,9 @@ await client.crm.contacts.ignoreCreate("model_id", {
-
client.crm.contacts.metaPatchRetrieve(id) -> Merge.MetaResponse +## Crm LinkToken + +
client.crm.linkToken.create({ ...params }) -> Merge.LinkToken
@@ -8850,7 +8969,7 @@ await client.crm.contacts.ignoreCreate("model_id", {
-Returns metadata for `CRMContact` PATCHs. +Creates a link token to be used when linking a new end user.
@@ -8866,7 +8985,12 @@ Returns metadata for `CRMContact` PATCHs.
```typescript -await client.crm.contacts.metaPatchRetrieve("id"); +await client.crm.linkToken.create({ + endUserEmailAddress: "example@gmail.com", + endUserOrganizationName: "Test Organization", + endUserOriginId: "12345", + categories: ["hris", "ats"], +}); ```
@@ -8882,7 +9006,7 @@ await client.crm.contacts.metaPatchRetrieve("id");
-**id:** `string` +**request:** `Merge.crm.EndUserDetailsRequest`
@@ -8890,7 +9014,7 @@ await client.crm.contacts.metaPatchRetrieve("id");
-**requestOptions:** `Contacts.RequestOptions` +**requestOptions:** `LinkToken.RequestOptions`
@@ -8901,7 +9025,9 @@ await client.crm.contacts.metaPatchRetrieve("id");
-
client.crm.contacts.metaPostRetrieve() -> Merge.MetaResponse +## Crm LinkedAccounts + +
client.crm.linkedAccounts.list({ ...params }) -> Merge.PaginatedAccountDetailsAndActionsList
@@ -8913,7 +9039,7 @@ await client.crm.contacts.metaPatchRetrieve("id");
-Returns metadata for `CRMContact` POSTs. +List linked accounts for your organization.
@@ -8929,7 +9055,7 @@ Returns metadata for `CRMContact` POSTs.
```typescript -await client.crm.contacts.metaPostRetrieve(); +await client.crm.linkedAccounts.list(); ```
@@ -8945,7 +9071,15 @@ await client.crm.contacts.metaPostRetrieve();
-**requestOptions:** `Contacts.RequestOptions` +**request:** `Merge.crm.LinkedAccountsListRequest` + +
+
+ +
+
+ +**requestOptions:** `LinkedAccounts.RequestOptions`
@@ -8956,7 +9090,9 @@ await client.crm.contacts.metaPostRetrieve();
-
client.crm.contacts.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList +## Crm Notes + +
client.crm.notes.list({ ...params }) -> Merge.PaginatedNoteList
@@ -8968,7 +9104,7 @@ await client.crm.contacts.metaPostRetrieve();
-Returns a list of `RemoteFieldClass` objects. +Returns a list of `Note` objects.
@@ -8984,7 +9120,7 @@ Returns a list of `RemoteFieldClass` objects.
```typescript -await client.crm.contacts.remoteFieldClassesList(); +await client.crm.notes.list(); ```
@@ -9000,7 +9136,7 @@ await client.crm.contacts.remoteFieldClassesList();
-**request:** `Merge.crm.ContactsRemoteFieldClassesListRequest` +**request:** `Merge.crm.NotesListRequest`
@@ -9008,7 +9144,7 @@ await client.crm.contacts.remoteFieldClassesList();
-**requestOptions:** `Contacts.RequestOptions` +**requestOptions:** `Notes.RequestOptions`
@@ -9019,9 +9155,7 @@ await client.crm.contacts.remoteFieldClassesList();
-## Crm CustomObjectClasses - -
client.crm.customObjectClasses.list({ ...params }) -> Merge.PaginatedCustomObjectClassList +
client.crm.notes.create({ ...params }) -> Merge.NoteResponse
@@ -9033,7 +9167,7 @@ await client.crm.contacts.remoteFieldClassesList();
-Returns a list of `CustomObjectClass` objects. +Creates a `Note` object with the given values.
@@ -9049,7 +9183,9 @@ Returns a list of `CustomObjectClass` objects.
```typescript -await client.crm.customObjectClasses.list(); +await client.crm.notes.create({ + model: {}, +}); ```
@@ -9065,7 +9201,7 @@ await client.crm.customObjectClasses.list();
-**request:** `Merge.crm.CustomObjectClassesListRequest` +**request:** `Merge.crm.NoteEndpointRequest`
@@ -9073,7 +9209,7 @@ await client.crm.customObjectClasses.list();
-**requestOptions:** `CustomObjectClasses.RequestOptions` +**requestOptions:** `Notes.RequestOptions`
@@ -9084,7 +9220,7 @@ await client.crm.customObjectClasses.list();
-
client.crm.customObjectClasses.retrieve(id, { ...params }) -> Merge.CustomObjectClass +
client.crm.notes.retrieve(id, { ...params }) -> Merge.Note
@@ -9096,7 +9232,7 @@ await client.crm.customObjectClasses.list();
-Returns a `CustomObjectClass` object with the given `id`. +Returns a `Note` object with the given `id`.
@@ -9112,7 +9248,7 @@ Returns a `CustomObjectClass` object with the given `id`.
```typescript -await client.crm.customObjectClasses.retrieve("id"); +await client.crm.notes.retrieve("id"); ```
@@ -9136,7 +9272,7 @@ await client.crm.customObjectClasses.retrieve("id");
-**request:** `Merge.crm.CustomObjectClassesRetrieveRequest` +**request:** `Merge.crm.NotesRetrieveRequest`
@@ -9144,7 +9280,7 @@ await client.crm.customObjectClasses.retrieve("id");
-**requestOptions:** `CustomObjectClasses.RequestOptions` +**requestOptions:** `Notes.RequestOptions`
@@ -9155,9 +9291,7 @@ await client.crm.customObjectClasses.retrieve("id");
-## Crm AssociationTypes - -
client.crm.associationTypes.customObjectClassesAssociationTypesList(customObjectClassId, { ...params }) -> Merge.PaginatedAssociationTypeList +
client.crm.notes.metaPostRetrieve() -> Merge.MetaResponse
@@ -9169,7 +9303,7 @@ await client.crm.customObjectClasses.retrieve("id");
-Returns a list of `AssociationType` objects. +Returns metadata for `Note` POSTs.
@@ -9185,7 +9319,7 @@ Returns a list of `AssociationType` objects.
```typescript -await client.crm.associationTypes.customObjectClassesAssociationTypesList("custom_object_class_id"); +await client.crm.notes.metaPostRetrieve(); ```
@@ -9201,34 +9335,18 @@ await client.crm.associationTypes.customObjectClassesAssociationTypesList("custo
-**customObjectClassId:** `string` +**requestOptions:** `Notes.RequestOptions`
- -
-
- -**request:** `Merge.crm.CustomObjectClassesAssociationTypesListRequest` - -
-
- -
-
- -**requestOptions:** `AssociationTypes.RequestOptions` - -
-
- -
+ +
-
client.crm.associationTypes.customObjectClassesAssociationTypesCreate(customObjectClassId, { ...params }) -> Merge.CrmAssociationTypeResponse +
client.crm.notes.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList
@@ -9240,7 +9358,7 @@ await client.crm.associationTypes.customObjectClassesAssociationTypesList("custo
-Creates an `AssociationType` object with the given values. +Returns a list of `RemoteFieldClass` objects.
@@ -9256,21 +9374,7 @@ Creates an `AssociationType` object with the given values.
```typescript -await client.crm.associationTypes.customObjectClassesAssociationTypesCreate("custom_object_class_id", { - model: { - sourceObjectClass: { - id: "id", - originType: "CUSTOM_OBJECT", - }, - targetObjectClasses: [ - { - id: "id", - originType: "CUSTOM_OBJECT", - }, - ], - remoteKeyName: "remote_key_name", - }, -}); +await client.crm.notes.remoteFieldClassesList(); ```
@@ -9286,15 +9390,7 @@ await client.crm.associationTypes.customObjectClassesAssociationTypesCreate("cus
-**customObjectClassId:** `string` - -
-
- -
-
- -**request:** `Merge.crm.CrmAssociationTypeEndpointRequest` +**request:** `Merge.crm.NotesRemoteFieldClassesListRequest`
@@ -9302,7 +9398,7 @@ await client.crm.associationTypes.customObjectClassesAssociationTypesCreate("cus
-**requestOptions:** `AssociationTypes.RequestOptions` +**requestOptions:** `Notes.RequestOptions`
@@ -9313,7 +9409,9 @@ await client.crm.associationTypes.customObjectClassesAssociationTypesCreate("cus
-
client.crm.associationTypes.customObjectClassesAssociationTypesRetrieve(customObjectClassId, id, { ...params }) -> Merge.AssociationType +## Crm Opportunities + +
client.crm.opportunities.list({ ...params }) -> Merge.PaginatedOpportunityList
@@ -9325,7 +9423,7 @@ await client.crm.associationTypes.customObjectClassesAssociationTypesCreate("cus
-Returns an `AssociationType` object with the given `id`. +Returns a list of `Opportunity` objects.
@@ -9341,7 +9439,7 @@ Returns an `AssociationType` object with the given `id`.
```typescript -await client.crm.associationTypes.customObjectClassesAssociationTypesRetrieve("custom_object_class_id", "id"); +await client.crm.opportunities.list(); ```
@@ -9357,23 +9455,7 @@ await client.crm.associationTypes.customObjectClassesAssociationTypesRetrieve("c
-**customObjectClassId:** `string` - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.crm.CustomObjectClassesAssociationTypesRetrieveRequest` +**request:** `Merge.crm.OpportunitiesListRequest`
@@ -9381,7 +9463,7 @@ await client.crm.associationTypes.customObjectClassesAssociationTypesRetrieve("c
-**requestOptions:** `AssociationTypes.RequestOptions` +**requestOptions:** `Opportunities.RequestOptions`
@@ -9392,7 +9474,7 @@ await client.crm.associationTypes.customObjectClassesAssociationTypesRetrieve("c
-
client.crm.associationTypes.customObjectClassesAssociationTypesMetaPostRetrieve(customObjectClassId) -> Merge.MetaResponse +
client.crm.opportunities.create({ ...params }) -> Merge.OpportunityResponse
@@ -9404,7 +9486,7 @@ await client.crm.associationTypes.customObjectClassesAssociationTypesRetrieve("c
-Returns metadata for `CRMAssociationType` POSTs. +Creates an `Opportunity` object with the given values.
@@ -9420,7 +9502,9 @@ Returns metadata for `CRMAssociationType` POSTs.
```typescript -await client.crm.associationTypes.customObjectClassesAssociationTypesMetaPostRetrieve("custom_object_class_id"); +await client.crm.opportunities.create({ + model: {}, +}); ```
@@ -9436,7 +9520,7 @@ await client.crm.associationTypes.customObjectClassesAssociationTypesMetaPostRet
-**customObjectClassId:** `string` +**request:** `Merge.crm.OpportunityEndpointRequest`
@@ -9444,7 +9528,7 @@ await client.crm.associationTypes.customObjectClassesAssociationTypesMetaPostRet
-**requestOptions:** `AssociationTypes.RequestOptions` +**requestOptions:** `Opportunities.RequestOptions`
@@ -9455,9 +9539,7 @@ await client.crm.associationTypes.customObjectClassesAssociationTypesMetaPostRet
-## Crm CustomObjects - -
client.crm.customObjects.customObjectClassesCustomObjectsList(customObjectClassId, { ...params }) -> Merge.PaginatedCustomObjectList +
client.crm.opportunities.retrieve(id, { ...params }) -> Merge.Opportunity
@@ -9469,7 +9551,7 @@ await client.crm.associationTypes.customObjectClassesAssociationTypesMetaPostRet
-Returns a list of `CustomObject` objects. +Returns an `Opportunity` object with the given `id`.
@@ -9485,7 +9567,7 @@ Returns a list of `CustomObject` objects.
```typescript -await client.crm.customObjects.customObjectClassesCustomObjectsList("custom_object_class_id"); +await client.crm.opportunities.retrieve("id"); ```
@@ -9501,7 +9583,7 @@ await client.crm.customObjects.customObjectClassesCustomObjectsList("custom_obje
-**customObjectClassId:** `string` +**id:** `string`
@@ -9509,7 +9591,7 @@ await client.crm.customObjects.customObjectClassesCustomObjectsList("custom_obje
-**request:** `Merge.crm.CustomObjectClassesCustomObjectsListRequest` +**request:** `Merge.crm.OpportunitiesRetrieveRequest`
@@ -9517,7 +9599,7 @@ await client.crm.customObjects.customObjectClassesCustomObjectsList("custom_obje
-**requestOptions:** `CustomObjects.RequestOptions` +**requestOptions:** `Opportunities.RequestOptions`
@@ -9528,7 +9610,7 @@ await client.crm.customObjects.customObjectClassesCustomObjectsList("custom_obje
-
client.crm.customObjects.customObjectClassesCustomObjectsCreate(customObjectClassId, { ...params }) -> Merge.CrmCustomObjectResponse +
client.crm.opportunities.partialUpdate(id, { ...params }) -> Merge.OpportunityResponse
@@ -9540,7 +9622,7 @@ await client.crm.customObjects.customObjectClassesCustomObjectsList("custom_obje
-Creates a `CustomObject` object with the given values. +Updates an `Opportunity` object with the given `id`.
@@ -9556,12 +9638,8 @@ Creates a `CustomObject` object with the given values.
```typescript -await client.crm.customObjects.customObjectClassesCustomObjectsCreate("custom_object_class_id", { - model: { - fields: { - test_field: "hello", - }, - }, +await client.crm.opportunities.partialUpdate("id", { + model: {}, }); ``` @@ -9578,7 +9656,7 @@ await client.crm.customObjects.customObjectClassesCustomObjectsCreate("custom_ob
-**customObjectClassId:** `string` +**id:** `string`
@@ -9586,7 +9664,7 @@ await client.crm.customObjects.customObjectClassesCustomObjectsCreate("custom_ob
-**request:** `Merge.crm.CrmCustomObjectEndpointRequest` +**request:** `Merge.crm.PatchedOpportunityEndpointRequest`
@@ -9594,7 +9672,7 @@ await client.crm.customObjects.customObjectClassesCustomObjectsCreate("custom_ob
-**requestOptions:** `CustomObjects.RequestOptions` +**requestOptions:** `Opportunities.RequestOptions`
@@ -9605,7 +9683,7 @@ await client.crm.customObjects.customObjectClassesCustomObjectsCreate("custom_ob
-
client.crm.customObjects.customObjectClassesCustomObjectsRetrieve(customObjectClassId, id, { ...params }) -> Merge.CustomObject +
client.crm.opportunities.metaPatchRetrieve(id) -> Merge.MetaResponse
@@ -9617,7 +9695,7 @@ await client.crm.customObjects.customObjectClassesCustomObjectsCreate("custom_ob
-Returns a `CustomObject` object with the given `id`. +Returns metadata for `Opportunity` PATCHs.
@@ -9633,7 +9711,7 @@ Returns a `CustomObject` object with the given `id`.
```typescript -await client.crm.customObjects.customObjectClassesCustomObjectsRetrieve("custom_object_class_id", "id"); +await client.crm.opportunities.metaPatchRetrieve("id"); ```
@@ -9649,14 +9727,6 @@ await client.crm.customObjects.customObjectClassesCustomObjectsRetrieve("custom_
-**customObjectClassId:** `string` - -
-
- -
-
- **id:** `string`
@@ -9665,15 +9735,7 @@ await client.crm.customObjects.customObjectClassesCustomObjectsRetrieve("custom_
-**request:** `Merge.crm.CustomObjectClassesCustomObjectsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `CustomObjects.RequestOptions` +**requestOptions:** `Opportunities.RequestOptions`
@@ -9684,7 +9746,7 @@ await client.crm.customObjects.customObjectClassesCustomObjectsRetrieve("custom_
-
client.crm.customObjects.customObjectClassesCustomObjectsMetaPostRetrieve(customObjectClassId) -> Merge.MetaResponse +
client.crm.opportunities.metaPostRetrieve() -> Merge.MetaResponse
@@ -9696,7 +9758,7 @@ await client.crm.customObjects.customObjectClassesCustomObjectsRetrieve("custom_
-Returns metadata for `CRMCustomObject` POSTs. +Returns metadata for `Opportunity` POSTs.
@@ -9712,7 +9774,7 @@ Returns metadata for `CRMCustomObject` POSTs.
```typescript -await client.crm.customObjects.customObjectClassesCustomObjectsMetaPostRetrieve("custom_object_class_id"); +await client.crm.opportunities.metaPostRetrieve(); ```
@@ -9728,15 +9790,7 @@ await client.crm.customObjects.customObjectClassesCustomObjectsMetaPostRetrieve(
-**customObjectClassId:** `string` - -
-
- -
-
- -**requestOptions:** `CustomObjects.RequestOptions` +**requestOptions:** `Opportunities.RequestOptions`
@@ -9747,7 +9801,7 @@ await client.crm.customObjects.customObjectClassesCustomObjectsMetaPostRetrieve(
-
client.crm.customObjects.customObjectClassesCustomObjectsRemoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList +
client.crm.opportunities.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList
@@ -9775,7 +9829,7 @@ Returns a list of `RemoteFieldClass` objects.
```typescript -await client.crm.customObjects.customObjectClassesCustomObjectsRemoteFieldClassesList(); +await client.crm.opportunities.remoteFieldClassesList(); ```
@@ -9791,7 +9845,7 @@ await client.crm.customObjects.customObjectClassesCustomObjectsRemoteFieldClasse
-**request:** `Merge.crm.CustomObjectClassesCustomObjectsRemoteFieldClassesListRequest` +**request:** `Merge.crm.OpportunitiesRemoteFieldClassesListRequest`
@@ -9799,7 +9853,7 @@ await client.crm.customObjects.customObjectClassesCustomObjectsRemoteFieldClasse
-**requestOptions:** `CustomObjects.RequestOptions` +**requestOptions:** `Opportunities.RequestOptions`
@@ -9810,9 +9864,9 @@ await client.crm.customObjects.customObjectClassesCustomObjectsRemoteFieldClasse
-## Crm Associations +## Crm Passthrough -
client.crm.associations.customObjectClassesCustomObjectsAssociationsList(customObjectClassId, objectId, { ...params }) -> Merge.PaginatedAssociationList +
client.crm.passthrough.create({ ...params }) -> Merge.RemoteResponse
@@ -9824,7 +9878,7 @@ await client.crm.customObjects.customObjectClassesCustomObjectsRemoteFieldClasse
-Returns a list of `Association` objects. +Pull data from an endpoint not currently supported by Merge.
@@ -9840,7 +9894,10 @@ Returns a list of `Association` objects.
```typescript -await client.crm.associations.customObjectClassesCustomObjectsAssociationsList("custom_object_class_id", "object_id"); +await client.crm.passthrough.create({ + method: "GET", + path: "/scooters", +}); ```
@@ -9856,23 +9913,7 @@ await client.crm.associations.customObjectClassesCustomObjectsAssociationsList("
-**customObjectClassId:** `string` - -
-
- -
-
- -**objectId:** `string` - -
-
- -
-
- -**request:** `Merge.crm.CustomObjectClassesCustomObjectsAssociationsListRequest` +**request:** `Merge.DataPassthroughRequest`
@@ -9880,7 +9921,7 @@ await client.crm.associations.customObjectClassesCustomObjectsAssociationsList("
-**requestOptions:** `Associations.RequestOptions` +**requestOptions:** `Passthrough.RequestOptions`
@@ -9891,7 +9932,9 @@ await client.crm.associations.customObjectClassesCustomObjectsAssociationsList("
-
client.crm.associations.customObjectClassesCustomObjectsAssociationsUpdate(associationTypeId, sourceClassId, sourceObjectId, targetClassId, targetObjectId, { ...params }) -> Merge.Association +## Crm RegenerateKey + +
client.crm.regenerateKey.create({ ...params }) -> Merge.RemoteKey
@@ -9903,7 +9946,7 @@ await client.crm.associations.customObjectClassesCustomObjectsAssociationsList("
-Creates an Association between `source_object_id` and `target_object_id` of type `association_type_id`. +Exchange remote keys.
@@ -9919,13 +9962,9 @@ Creates an Association between `source_object_id` and `target_object_id` of type
```typescript -await client.crm.associations.customObjectClassesCustomObjectsAssociationsUpdate( - "association_type_id", - "source_class_id", - "source_object_id", - "target_class_id", - "target_object_id", -); +await client.crm.regenerateKey.create({ + name: "Remote Deployment Key 1", +}); ```
@@ -9941,47 +9980,7 @@ await client.crm.associations.customObjectClassesCustomObjectsAssociationsUpdate
-**associationTypeId:** `string` - -
-
- -
-
- -**sourceClassId:** `string` - -
-
- -
-
- -**sourceObjectId:** `string` - -
-
- -
-
- -**targetClassId:** `string` - -
-
- -
-
- -**targetObjectId:** `string` - -
-
- -
-
- -**request:** `Merge.crm.CustomObjectClassesCustomObjectsAssociationsUpdateRequest` +**request:** `Merge.crm.RemoteKeyForRegenerationRequest`
@@ -9989,7 +9988,7 @@ await client.crm.associations.customObjectClassesCustomObjectsAssociationsUpdate
-**requestOptions:** `Associations.RequestOptions` +**requestOptions:** `RegenerateKey.RequestOptions`
@@ -10000,9 +9999,9 @@ await client.crm.associations.customObjectClassesCustomObjectsAssociationsUpdate
-## Crm Scopes +## Crm Stages -
client.crm.scopes.defaultScopesRetrieve() -> Merge.CommonModelScopeApi +
client.crm.stages.list({ ...params }) -> Merge.PaginatedStageList
@@ -10014,7 +10013,7 @@ await client.crm.associations.customObjectClassesCustomObjectsAssociationsUpdate
-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). +Returns a list of `Stage` objects.
@@ -10030,7 +10029,7 @@ Get the default permissions for Merge Common Models and fields across all Linked
```typescript -await client.crm.scopes.defaultScopesRetrieve(); +await client.crm.stages.list(); ```
@@ -10046,62 +10045,15 @@ await client.crm.scopes.defaultScopesRetrieve();
-**requestOptions:** `Scopes.RequestOptions` - -
-
- -
- - - -
- -
client.crm.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.crm.scopes.linkedAccountScopesRetrieve(); -``` +**request:** `Merge.crm.StagesListRequest`
-
-
- -#### ⚙️ Parameters
-
-
- -**requestOptions:** `Scopes.RequestOptions` +**requestOptions:** `Stages.RequestOptions`
@@ -10112,7 +10064,7 @@ await client.crm.scopes.linkedAccountScopesRetrieve();
-
client.crm.scopes.linkedAccountScopesCreate({ ...params }) -> Merge.CommonModelScopeApi +
client.crm.stages.retrieve(id, { ...params }) -> Merge.Stage
@@ -10124,7 +10076,7 @@ await client.crm.scopes.linkedAccountScopesRetrieve();
-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) +Returns a `Stage` object with the given `id`.
@@ -10140,33 +10092,7 @@ Update permissions for any Common Model or field for a single Linked Account. An
```typescript -await client.crm.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, - }, - }, - }, - ], -}); +await client.crm.stages.retrieve("id"); ```
@@ -10182,72 +10108,23 @@ await client.crm.scopes.linkedAccountScopesCreate({
-**request:** `Merge.crm.LinkedAccountCommonModelScopeDeserializerRequest` - -
-
- -
-
- -**requestOptions:** `Scopes.RequestOptions` - -
-
- -
- - - -
- -## Crm DeleteAccount - -
client.crm.deleteAccount.delete() -> void -
-
- -#### 📝 Description - -
-
- -
-
- -Delete a linked account. +**id:** `string` -
-
-#### 🔌 Usage -
-
-
- -```typescript -await client.crm.deleteAccount.delete(); -``` +**request:** `Merge.crm.StagesRetrieveRequest`
-
-
- -#### ⚙️ Parameters - -
-
-**requestOptions:** `DeleteAccount.RequestOptions` +**requestOptions:** `Stages.RequestOptions`
@@ -10258,9 +10135,7 @@ await client.crm.deleteAccount.delete();
-## Crm EngagementTypes - -
client.crm.engagementTypes.list({ ...params }) -> Merge.PaginatedEngagementTypeList +
client.crm.stages.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList
@@ -10272,7 +10147,7 @@ await client.crm.deleteAccount.delete();
-Returns a list of `EngagementType` objects. +Returns a list of `RemoteFieldClass` objects.
@@ -10288,7 +10163,7 @@ Returns a list of `EngagementType` objects.
```typescript -await client.crm.engagementTypes.list(); +await client.crm.stages.remoteFieldClassesList(); ```
@@ -10304,7 +10179,7 @@ await client.crm.engagementTypes.list();
-**request:** `Merge.crm.EngagementTypesListRequest` +**request:** `Merge.crm.StagesRemoteFieldClassesListRequest`
@@ -10312,7 +10187,7 @@ await client.crm.engagementTypes.list();
-**requestOptions:** `EngagementTypes.RequestOptions` +**requestOptions:** `Stages.RequestOptions`
@@ -10323,7 +10198,9 @@ await client.crm.engagementTypes.list();
-
client.crm.engagementTypes.retrieve(id, { ...params }) -> Merge.EngagementType +## Crm SyncStatus + +
client.crm.syncStatus.list({ ...params }) -> Merge.PaginatedSyncStatusList
@@ -10335,7 +10212,7 @@ await client.crm.engagementTypes.list();
-Returns an `EngagementType` object with the given `id`. +Get syncing status. Possible values: `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).
@@ -10351,7 +10228,7 @@ Returns an `EngagementType` object with the given `id`.
```typescript -await client.crm.engagementTypes.retrieve("id"); +await client.crm.syncStatus.list(); ```
@@ -10367,15 +10244,7 @@ await client.crm.engagementTypes.retrieve("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.crm.EngagementTypesRetrieveRequest` +**request:** `Merge.crm.SyncStatusListRequest`
@@ -10383,7 +10252,7 @@ await client.crm.engagementTypes.retrieve("id");
-**requestOptions:** `EngagementTypes.RequestOptions` +**requestOptions:** `SyncStatus.RequestOptions`
@@ -10394,7 +10263,9 @@ await client.crm.engagementTypes.retrieve("id");
-
client.crm.engagementTypes.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList +## Crm ForceResync + +
client.crm.forceResync.syncStatusResyncCreate() -> Merge.SyncStatus[]
@@ -10406,7 +10277,7 @@ await client.crm.engagementTypes.retrieve("id");
-Returns a list of `RemoteFieldClass` objects. +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.
@@ -10422,7 +10293,7 @@ Returns a list of `RemoteFieldClass` objects.
```typescript -await client.crm.engagementTypes.remoteFieldClassesList(); +await client.crm.forceResync.syncStatusResyncCreate(); ```
@@ -10438,15 +10309,7 @@ await client.crm.engagementTypes.remoteFieldClassesList();
-**request:** `Merge.crm.EngagementTypesRemoteFieldClassesListRequest` - -
-
- -
-
- -**requestOptions:** `EngagementTypes.RequestOptions` +**requestOptions:** `ForceResync.RequestOptions`
@@ -10457,9 +10320,9 @@ await client.crm.engagementTypes.remoteFieldClassesList();
-## Crm Engagements +## Crm Tasks -
client.crm.engagements.list({ ...params }) -> Merge.PaginatedEngagementList +
client.crm.tasks.list({ ...params }) -> Merge.PaginatedTaskList
@@ -10471,7 +10334,7 @@ await client.crm.engagementTypes.remoteFieldClassesList();
-Returns a list of `Engagement` objects. +Returns a list of `Task` objects.
@@ -10487,7 +10350,7 @@ Returns a list of `Engagement` objects.
```typescript -await client.crm.engagements.list(); +await client.crm.tasks.list(); ```
@@ -10503,7 +10366,7 @@ await client.crm.engagements.list();
-**request:** `Merge.crm.EngagementsListRequest` +**request:** `Merge.crm.TasksListRequest`
@@ -10511,7 +10374,7 @@ await client.crm.engagements.list();
-**requestOptions:** `Engagements.RequestOptions` +**requestOptions:** `Tasks.RequestOptions`
@@ -10522,7 +10385,7 @@ await client.crm.engagements.list();
-
client.crm.engagements.create({ ...params }) -> Merge.EngagementResponse +
client.crm.tasks.create({ ...params }) -> Merge.TaskResponse
@@ -10534,7 +10397,7 @@ await client.crm.engagements.list();
-Creates an `Engagement` object with the given values. +Creates a `Task` object with the given values.
@@ -10550,7 +10413,7 @@ Creates an `Engagement` object with the given values.
```typescript -await client.crm.engagements.create({ +await client.crm.tasks.create({ model: {}, }); ``` @@ -10568,7 +10431,7 @@ await client.crm.engagements.create({
-**request:** `Merge.crm.EngagementEndpointRequest` +**request:** `Merge.crm.TaskEndpointRequest`
@@ -10576,7 +10439,7 @@ await client.crm.engagements.create({
-**requestOptions:** `Engagements.RequestOptions` +**requestOptions:** `Tasks.RequestOptions`
@@ -10587,7 +10450,7 @@ await client.crm.engagements.create({
-
client.crm.engagements.retrieve(id, { ...params }) -> Merge.Engagement +
client.crm.tasks.retrieve(id, { ...params }) -> Merge.Task
@@ -10599,7 +10462,7 @@ await client.crm.engagements.create({
-Returns an `Engagement` object with the given `id`. +Returns a `Task` object with the given `id`.
@@ -10615,7 +10478,7 @@ Returns an `Engagement` object with the given `id`.
```typescript -await client.crm.engagements.retrieve("id"); +await client.crm.tasks.retrieve("id"); ```
@@ -10639,7 +10502,7 @@ await client.crm.engagements.retrieve("id");
-**request:** `Merge.crm.EngagementsRetrieveRequest` +**request:** `Merge.crm.TasksRetrieveRequest`
@@ -10647,7 +10510,7 @@ await client.crm.engagements.retrieve("id");
-**requestOptions:** `Engagements.RequestOptions` +**requestOptions:** `Tasks.RequestOptions`
@@ -10658,7 +10521,7 @@ await client.crm.engagements.retrieve("id");
-
client.crm.engagements.partialUpdate(id, { ...params }) -> Merge.EngagementResponse +
client.crm.tasks.partialUpdate(id, { ...params }) -> Merge.TaskResponse
@@ -10670,7 +10533,7 @@ await client.crm.engagements.retrieve("id");
-Updates an `Engagement` object with the given `id`. +Updates a `Task` object with the given `id`.
@@ -10686,7 +10549,7 @@ Updates an `Engagement` object with the given `id`.
```typescript -await client.crm.engagements.partialUpdate("id", { +await client.crm.tasks.partialUpdate("id", { model: {}, }); ``` @@ -10712,7 +10575,7 @@ await client.crm.engagements.partialUpdate("id", {
-**request:** `Merge.crm.PatchedEngagementEndpointRequest` +**request:** `Merge.crm.PatchedTaskEndpointRequest`
@@ -10720,7 +10583,7 @@ await client.crm.engagements.partialUpdate("id", {
-**requestOptions:** `Engagements.RequestOptions` +**requestOptions:** `Tasks.RequestOptions`
@@ -10731,7 +10594,7 @@ await client.crm.engagements.partialUpdate("id", {
-
client.crm.engagements.metaPatchRetrieve(id) -> Merge.MetaResponse +
client.crm.tasks.metaPatchRetrieve(id) -> Merge.MetaResponse
@@ -10743,7 +10606,7 @@ await client.crm.engagements.partialUpdate("id", {
-Returns metadata for `Engagement` PATCHs. +Returns metadata for `Task` PATCHs.
@@ -10759,7 +10622,7 @@ Returns metadata for `Engagement` PATCHs.
```typescript -await client.crm.engagements.metaPatchRetrieve("id"); +await client.crm.tasks.metaPatchRetrieve("id"); ```
@@ -10783,7 +10646,7 @@ await client.crm.engagements.metaPatchRetrieve("id");
-**requestOptions:** `Engagements.RequestOptions` +**requestOptions:** `Tasks.RequestOptions`
@@ -10794,7 +10657,7 @@ await client.crm.engagements.metaPatchRetrieve("id");
-
client.crm.engagements.metaPostRetrieve() -> Merge.MetaResponse +
client.crm.tasks.metaPostRetrieve() -> Merge.MetaResponse
@@ -10806,7 +10669,7 @@ await client.crm.engagements.metaPatchRetrieve("id");
-Returns metadata for `Engagement` POSTs. +Returns metadata for `Task` POSTs.
@@ -10822,7 +10685,7 @@ Returns metadata for `Engagement` POSTs.
```typescript -await client.crm.engagements.metaPostRetrieve(); +await client.crm.tasks.metaPostRetrieve(); ```
@@ -10838,7 +10701,7 @@ await client.crm.engagements.metaPostRetrieve();
-**requestOptions:** `Engagements.RequestOptions` +**requestOptions:** `Tasks.RequestOptions`
@@ -10849,7 +10712,7 @@ await client.crm.engagements.metaPostRetrieve();
-
client.crm.engagements.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList +
client.crm.tasks.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList
@@ -10877,7 +10740,7 @@ Returns a list of `RemoteFieldClass` objects.
```typescript -await client.crm.engagements.remoteFieldClassesList(); +await client.crm.tasks.remoteFieldClassesList(); ```
@@ -10893,7 +10756,7 @@ await client.crm.engagements.remoteFieldClassesList();
-**request:** `Merge.crm.EngagementsRemoteFieldClassesListRequest` +**request:** `Merge.crm.TasksRemoteFieldClassesListRequest`
@@ -10901,7 +10764,7 @@ await client.crm.engagements.remoteFieldClassesList();
-**requestOptions:** `Engagements.RequestOptions` +**requestOptions:** `Tasks.RequestOptions`
@@ -10912,9 +10775,9 @@ await client.crm.engagements.remoteFieldClassesList();
-## Crm FieldMapping +## Crm Users -
client.crm.fieldMapping.fieldMappingsRetrieve({ ...params }) -> Merge.FieldMappingApiInstanceResponse +
client.crm.users.list({ ...params }) -> Merge.PaginatedUserList
@@ -10926,7 +10789,7 @@ await client.crm.engagements.remoteFieldClassesList();
-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/). +Returns a list of `User` objects.
@@ -10942,7 +10805,7 @@ Get all Field Mappings for this Linked Account. Field Mappings are mappings betw
```typescript -await client.crm.fieldMapping.fieldMappingsRetrieve(); +await client.crm.users.list(); ```
@@ -10958,7 +10821,7 @@ await client.crm.fieldMapping.fieldMappingsRetrieve();
-**request:** `Merge.crm.FieldMappingsRetrieveRequest` +**request:** `Merge.crm.UsersListRequest`
@@ -10966,7 +10829,7 @@ await client.crm.fieldMapping.fieldMappingsRetrieve();
-**requestOptions:** `FieldMapping.RequestOptions` +**requestOptions:** `Users.RequestOptions`
@@ -10977,7 +10840,7 @@ await client.crm.fieldMapping.fieldMappingsRetrieve();
-
client.crm.fieldMapping.fieldMappingsCreate({ ...params }) -> Merge.FieldMappingInstanceResponse +
client.crm.users.retrieve(id, { ...params }) -> Merge.User
@@ -10989,7 +10852,7 @@ await client.crm.fieldMapping.fieldMappingsRetrieve();
-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. +Returns a `User` object with the given `id`.
@@ -11005,14 +10868,7 @@ Create new Field Mappings that will be available after the next scheduled sync.
```typescript -await client.crm.fieldMapping.fieldMappingsCreate({ - 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", -}); +await client.crm.users.retrieve("id"); ```
@@ -11028,7 +10884,7 @@ await client.crm.fieldMapping.fieldMappingsCreate({
-**request:** `Merge.crm.CreateFieldMappingRequest` +**id:** `string`
@@ -11036,7 +10892,15 @@ await client.crm.fieldMapping.fieldMappingsCreate({
-**requestOptions:** `FieldMapping.RequestOptions` +**request:** `Merge.crm.UsersRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `Users.RequestOptions`
@@ -11047,7 +10911,7 @@ await client.crm.fieldMapping.fieldMappingsCreate({
-
client.crm.fieldMapping.fieldMappingsDestroy(fieldMappingId) -> Merge.FieldMappingInstanceResponse +
client.crm.users.ignoreCreate(modelId, { ...params }) -> void
@@ -11059,7 +10923,7 @@ await client.crm.fieldMapping.fieldMappingsCreate({
-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. +Ignores a specific row based on the `model_id` in the url. These records will have their properties set to null, and will not be updated in future syncs. The "reason" and "message" fields in the request body will be stored for audit purposes.
@@ -11075,7 +10939,9 @@ Deletes Field Mappings for a Linked Account. All data related to this Field Mapp
```typescript -await client.crm.fieldMapping.fieldMappingsDestroy("field_mapping_id"); +await client.crm.users.ignoreCreate("model_id", { + reason: "GENERAL_CUSTOMER_REQUEST", +}); ```
@@ -11091,7 +10957,7 @@ await client.crm.fieldMapping.fieldMappingsDestroy("field_mapping_id");
-**fieldMappingId:** `string` +**modelId:** `string`
@@ -11099,7 +10965,15 @@ await client.crm.fieldMapping.fieldMappingsDestroy("field_mapping_id");
-**requestOptions:** `FieldMapping.RequestOptions` +**request:** `Merge.IgnoreCommonModelRequest` + +
+
+ +
+
+ +**requestOptions:** `Users.RequestOptions`
@@ -11110,7 +10984,7 @@ await client.crm.fieldMapping.fieldMappingsDestroy("field_mapping_id");
-
client.crm.fieldMapping.fieldMappingsPartialUpdate(fieldMappingId, { ...params }) -> Merge.FieldMappingInstanceResponse +
client.crm.users.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList
@@ -11122,7 +10996,7 @@ await client.crm.fieldMapping.fieldMappingsDestroy("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. +Returns a list of `RemoteFieldClass` objects.
@@ -11138,7 +11012,7 @@ Create or update existing Field Mappings for a Linked Account. Changes will be r
```typescript -await client.crm.fieldMapping.fieldMappingsPartialUpdate("field_mapping_id"); +await client.crm.users.remoteFieldClassesList(); ```
@@ -11154,7 +11028,7 @@ await client.crm.fieldMapping.fieldMappingsPartialUpdate("field_mapping_id");
-**fieldMappingId:** `string` +**request:** `Merge.crm.UsersRemoteFieldClassesListRequest`
@@ -11162,15 +11036,64 @@ await client.crm.fieldMapping.fieldMappingsPartialUpdate("field_mapping_id");
-**request:** `Merge.crm.PatchedEditFieldMappingRequest` +**requestOptions:** `Users.RequestOptions` + +
+
+ +
+
+ +## Crm WebhookReceivers +
client.crm.webhookReceivers.list() -> Merge.WebhookReceiver[]
-**requestOptions:** `FieldMapping.RequestOptions` +#### 📝 Description + +
+
+ +
+
+ +Returns a list of `WebhookReceiver` objects. + +
+
+
+
+ +#### 🔌 Usage + +
+
+ +
+
+ +```typescript +await client.crm.webhookReceivers.list(); +``` + +
+
+
+
+ +#### ⚙️ Parameters + +
+
+ +
+
+ +**requestOptions:** `WebhookReceivers.RequestOptions`
@@ -11181,7 +11104,7 @@ await client.crm.fieldMapping.fieldMappingsPartialUpdate("field_mapping_id");
-
client.crm.fieldMapping.remoteFieldsRetrieve({ ...params }) -> Merge.RemoteFieldApiResponse +
client.crm.webhookReceivers.create({ ...params }) -> Merge.WebhookReceiver
@@ -11193,7 +11116,7 @@ await client.crm.fieldMapping.fieldMappingsPartialUpdate("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/). +Creates a `WebhookReceiver` object with the given values.
@@ -11209,7 +11132,10 @@ Get all remote fields for a Linked Account. Remote fields are third-party fields
```typescript -await client.crm.fieldMapping.remoteFieldsRetrieve(); +await client.crm.webhookReceivers.create({ + event: "event", + isActive: true, +}); ```
@@ -11225,7 +11151,7 @@ await client.crm.fieldMapping.remoteFieldsRetrieve();
-**request:** `Merge.crm.RemoteFieldsRetrieveRequest` +**request:** `Merge.crm.WebhookReceiverRequest`
@@ -11233,7 +11159,7 @@ await client.crm.fieldMapping.remoteFieldsRetrieve();
-**requestOptions:** `FieldMapping.RequestOptions` +**requestOptions:** `WebhookReceivers.RequestOptions`
@@ -11244,7 +11170,9 @@ await client.crm.fieldMapping.remoteFieldsRetrieve();
-
client.crm.fieldMapping.targetFieldsRetrieve() -> Merge.ExternalTargetFieldApiResponse +## Filestorage AccountDetails + +
client.filestorage.accountDetails.retrieve() -> Merge.AccountDetails
@@ -11256,7 +11184,7 @@ await client.crm.fieldMapping.remoteFieldsRetrieve();
-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/). +Get details for a linked account.
@@ -11272,7 +11200,7 @@ Get all organization-wide Target Fields, this will not include any Linked Accoun
```typescript -await client.crm.fieldMapping.targetFieldsRetrieve(); +await client.filestorage.accountDetails.retrieve(); ```
@@ -11288,7 +11216,7 @@ await client.crm.fieldMapping.targetFieldsRetrieve();
-**requestOptions:** `FieldMapping.RequestOptions` +**requestOptions:** `AccountDetails.RequestOptions`
@@ -11299,9 +11227,9 @@ await client.crm.fieldMapping.targetFieldsRetrieve();
-## Crm GenerateKey +## Filestorage AccountToken -
client.crm.generateKey.create({ ...params }) -> Merge.RemoteKey +
client.filestorage.accountToken.retrieve(publicToken) -> Merge.AccountToken
@@ -11313,7 +11241,7 @@ await client.crm.fieldMapping.targetFieldsRetrieve();
-Create a remote key. +Returns the account token for the end user with the provided public token.
@@ -11329,9 +11257,7 @@ Create a remote key.
```typescript -await client.crm.generateKey.create({ - name: "Remote Deployment Key 1", -}); +await client.filestorage.accountToken.retrieve("public_token"); ```
@@ -11347,7 +11273,7 @@ await client.crm.generateKey.create({
-**request:** `Merge.crm.GenerateRemoteKeyRequest` +**publicToken:** `string`
@@ -11355,7 +11281,7 @@ await client.crm.generateKey.create({
-**requestOptions:** `GenerateKey.RequestOptions` +**requestOptions:** `AccountToken.RequestOptions`
@@ -11366,9 +11292,9 @@ await client.crm.generateKey.create({
-## Crm Issues +## Filestorage AsyncPassthrough -
client.crm.issues.list({ ...params }) -> Merge.PaginatedIssueList +
client.filestorage.asyncPassthrough.create({ ...params }) -> Merge.AsyncPassthroughReciept
@@ -11380,7 +11306,7 @@ await client.crm.generateKey.create({
-Gets all issues for Organization. +Asynchronously pull data from an endpoint not currently supported by Merge.
@@ -11396,7 +11322,10 @@ Gets all issues for Organization.
```typescript -await client.crm.issues.list(); +await client.filestorage.asyncPassthrough.create({ + method: "GET", + path: "/scooters", +}); ```
@@ -11412,7 +11341,7 @@ await client.crm.issues.list();
-**request:** `Merge.crm.IssuesListRequest` +**request:** `Merge.DataPassthroughRequest`
@@ -11420,7 +11349,7 @@ await client.crm.issues.list();
-**requestOptions:** `Issues.RequestOptions` +**requestOptions:** `AsyncPassthrough.RequestOptions`
@@ -11431,7 +11360,7 @@ await client.crm.issues.list();
-
client.crm.issues.retrieve(id) -> Merge.Issue +
client.filestorage.asyncPassthrough.retrieve(asyncPassthroughReceiptId) -> Merge.AsyncPassthroughRetrieveResponse
@@ -11443,7 +11372,7 @@ await client.crm.issues.list();
-Get a specific issue. +Retrieves data from earlier async-passthrough POST request
@@ -11459,7 +11388,7 @@ Get a specific issue.
```typescript -await client.crm.issues.retrieve("id"); +await client.filestorage.asyncPassthrough.retrieve("async_passthrough_receipt_id"); ```
@@ -11475,7 +11404,7 @@ await client.crm.issues.retrieve("id");
-**id:** `string` +**asyncPassthroughReceiptId:** `string`
@@ -11483,7 +11412,7 @@ await client.crm.issues.retrieve("id");
-**requestOptions:** `Issues.RequestOptions` +**requestOptions:** `AsyncPassthrough.RequestOptions`
@@ -11494,9 +11423,9 @@ await client.crm.issues.retrieve("id");
-## Crm Leads +## Filestorage AuditTrail -
client.crm.leads.list({ ...params }) -> Merge.PaginatedLeadList +
client.filestorage.auditTrail.list({ ...params }) -> Merge.PaginatedAuditLogEventList
@@ -11508,7 +11437,7 @@ await client.crm.issues.retrieve("id");
-Returns a list of `Lead` objects. +Gets a list of audit trail events.
@@ -11524,7 +11453,7 @@ Returns a list of `Lead` objects.
```typescript -await client.crm.leads.list(); +await client.filestorage.auditTrail.list(); ```
@@ -11540,7 +11469,7 @@ await client.crm.leads.list();
-**request:** `Merge.crm.LeadsListRequest` +**request:** `Merge.filestorage.AuditTrailListRequest`
@@ -11548,7 +11477,7 @@ await client.crm.leads.list();
-**requestOptions:** `Leads.RequestOptions` +**requestOptions:** `AuditTrail.RequestOptions`
@@ -11559,7 +11488,9 @@ await client.crm.leads.list();
-
client.crm.leads.create({ ...params }) -> Merge.LeadResponse +## Filestorage AvailableActions + +
client.filestorage.availableActions.retrieve() -> Merge.AvailableActions
@@ -11571,7 +11502,7 @@ await client.crm.leads.list();
-Creates a `Lead` object with the given values. +Returns a list of models and actions available for an account.
@@ -11587,9 +11518,7 @@ Creates a `Lead` object with the given values.
```typescript -await client.crm.leads.create({ - model: {}, -}); +await client.filestorage.availableActions.retrieve(); ```
@@ -11605,15 +11534,7 @@ await client.crm.leads.create({
-**request:** `Merge.crm.LeadEndpointRequest` - -
-
- -
-
- -**requestOptions:** `Leads.RequestOptions` +**requestOptions:** `AvailableActions.RequestOptions`
@@ -11624,7 +11545,9 @@ await client.crm.leads.create({
-
client.crm.leads.retrieve(id, { ...params }) -> Merge.Lead +## Filestorage Scopes + +
client.filestorage.scopes.defaultScopesRetrieve() -> Merge.CommonModelScopeApi
@@ -11636,7 +11559,7 @@ await client.crm.leads.create({
-Returns a `Lead` object with the given `id`. +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).
@@ -11652,7 +11575,7 @@ Returns a `Lead` object with the given `id`.
```typescript -await client.crm.leads.retrieve("id"); +await client.filestorage.scopes.defaultScopesRetrieve(); ```
@@ -11668,23 +11591,7 @@ await client.crm.leads.retrieve("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.crm.LeadsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `Leads.RequestOptions` +**requestOptions:** `Scopes.RequestOptions`
@@ -11695,7 +11602,7 @@ await client.crm.leads.retrieve("id");
-
client.crm.leads.metaPostRetrieve() -> Merge.MetaResponse +
client.filestorage.scopes.linkedAccountScopesRetrieve() -> Merge.CommonModelScopeApi
@@ -11707,7 +11614,7 @@ await client.crm.leads.retrieve("id");
-Returns metadata for `Lead` POSTs. +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).
@@ -11723,7 +11630,7 @@ Returns metadata for `Lead` POSTs.
```typescript -await client.crm.leads.metaPostRetrieve(); +await client.filestorage.scopes.linkedAccountScopesRetrieve(); ```
@@ -11739,7 +11646,7 @@ await client.crm.leads.metaPostRetrieve();
-**requestOptions:** `Leads.RequestOptions` +**requestOptions:** `Scopes.RequestOptions`
@@ -11750,7 +11657,7 @@ await client.crm.leads.metaPostRetrieve();
-
client.crm.leads.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList +
client.filestorage.scopes.linkedAccountScopesCreate({ ...params }) -> Merge.CommonModelScopeApi
@@ -11762,7 +11669,7 @@ await client.crm.leads.metaPostRetrieve();
-Returns a list of `RemoteFieldClass` objects. +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)
@@ -11778,7 +11685,33 @@ Returns a list of `RemoteFieldClass` objects.
```typescript -await client.crm.leads.remoteFieldClassesList(); +await client.filestorage.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, + }, + }, + }, + ], +}); ```
@@ -11794,7 +11727,7 @@ await client.crm.leads.remoteFieldClassesList();
-**request:** `Merge.crm.LeadsRemoteFieldClassesListRequest` +**request:** `Merge.filestorage.LinkedAccountCommonModelScopeDeserializerRequest`
@@ -11802,7 +11735,7 @@ await client.crm.leads.remoteFieldClassesList();
-**requestOptions:** `Leads.RequestOptions` +**requestOptions:** `Scopes.RequestOptions`
@@ -11813,9 +11746,9 @@ await client.crm.leads.remoteFieldClassesList();
-## Crm LinkToken +## Filestorage DeleteAccount -
client.crm.linkToken.create({ ...params }) -> Merge.LinkToken +
client.filestorage.deleteAccount.delete() -> void
@@ -11827,7 +11760,7 @@ await client.crm.leads.remoteFieldClassesList();
-Creates a link token to be used when linking a new end user. +Delete a linked account.
@@ -11843,12 +11776,7 @@ Creates a link token to be used when linking a new end user.
```typescript -await client.crm.linkToken.create({ - endUserEmailAddress: "example@gmail.com", - endUserOrganizationName: "Test Organization", - endUserOriginId: "12345", - categories: ["hris", "ats"], -}); +await client.filestorage.deleteAccount.delete(); ```
@@ -11864,15 +11792,7 @@ await client.crm.linkToken.create({
-**request:** `Merge.crm.EndUserDetailsRequest` - -
-
- -
-
- -**requestOptions:** `LinkToken.RequestOptions` +**requestOptions:** `DeleteAccount.RequestOptions`
@@ -11883,9 +11803,9 @@ await client.crm.linkToken.create({
-## Crm LinkedAccounts +## Filestorage Drives -
client.crm.linkedAccounts.list({ ...params }) -> Merge.PaginatedAccountDetailsAndActionsList +
client.filestorage.drives.list({ ...params }) -> Merge.PaginatedDriveList
@@ -11897,7 +11817,7 @@ await client.crm.linkToken.create({
-List linked accounts for your organization. +Returns a list of `Drive` objects.
@@ -11913,7 +11833,7 @@ List linked accounts for your organization.
```typescript -await client.crm.linkedAccounts.list(); +await client.filestorage.drives.list(); ```
@@ -11929,7 +11849,7 @@ await client.crm.linkedAccounts.list();
-**request:** `Merge.crm.LinkedAccountsListRequest` +**request:** `Merge.filestorage.DrivesListRequest`
@@ -11937,7 +11857,7 @@ await client.crm.linkedAccounts.list();
-**requestOptions:** `LinkedAccounts.RequestOptions` +**requestOptions:** `Drives.RequestOptions`
@@ -11948,9 +11868,7 @@ await client.crm.linkedAccounts.list();
-## Crm Notes - -
client.crm.notes.list({ ...params }) -> Merge.PaginatedNoteList +
client.filestorage.drives.retrieve(id, { ...params }) -> Merge.Drive
@@ -11962,7 +11880,7 @@ await client.crm.linkedAccounts.list();
-Returns a list of `Note` objects. +Returns a `Drive` object with the given `id`.
@@ -11978,7 +11896,7 @@ Returns a list of `Note` objects.
```typescript -await client.crm.notes.list(); +await client.filestorage.drives.retrieve("id"); ```
@@ -11994,7 +11912,7 @@ await client.crm.notes.list();
-**request:** `Merge.crm.NotesListRequest` +**id:** `string`
@@ -12002,7 +11920,15 @@ await client.crm.notes.list();
-**requestOptions:** `Notes.RequestOptions` +**request:** `Merge.filestorage.DrivesRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `Drives.RequestOptions`
@@ -12013,7 +11939,9 @@ await client.crm.notes.list();
-
client.crm.notes.create({ ...params }) -> Merge.NoteResponse +## Filestorage FieldMapping + +
client.filestorage.fieldMapping.fieldMappingsRetrieve({ ...params }) -> Merge.FieldMappingApiInstanceResponse
@@ -12025,7 +11953,7 @@ await client.crm.notes.list();
-Creates a `Note` object with the given values. +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/).
@@ -12041,9 +11969,7 @@ Creates a `Note` object with the given values.
```typescript -await client.crm.notes.create({ - model: {}, -}); +await client.filestorage.fieldMapping.fieldMappingsRetrieve(); ```
@@ -12059,7 +11985,7 @@ await client.crm.notes.create({
-**request:** `Merge.crm.NoteEndpointRequest` +**request:** `Merge.filestorage.FieldMappingsRetrieveRequest`
@@ -12067,7 +11993,7 @@ await client.crm.notes.create({
-**requestOptions:** `Notes.RequestOptions` +**requestOptions:** `FieldMapping.RequestOptions`
@@ -12078,7 +12004,7 @@ await client.crm.notes.create({
-
client.crm.notes.retrieve(id, { ...params }) -> Merge.Note +
client.filestorage.fieldMapping.fieldMappingsCreate({ ...params }) -> Merge.FieldMappingInstanceResponse
@@ -12090,7 +12016,7 @@ await client.crm.notes.create({
-Returns a `Note` object with the given `id`. +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.
@@ -12106,7 +12032,14 @@ Returns a `Note` object with the given `id`.
```typescript -await client.crm.notes.retrieve("id"); +await client.filestorage.fieldMapping.fieldMappingsCreate({ + 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", +}); ```
@@ -12122,15 +12055,7 @@ await client.crm.notes.retrieve("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.crm.NotesRetrieveRequest` +**request:** `Merge.filestorage.CreateFieldMappingRequest`
@@ -12138,7 +12063,7 @@ await client.crm.notes.retrieve("id");
-**requestOptions:** `Notes.RequestOptions` +**requestOptions:** `FieldMapping.RequestOptions`
@@ -12149,7 +12074,7 @@ await client.crm.notes.retrieve("id");
-
client.crm.notes.metaPostRetrieve() -> Merge.MetaResponse +
client.filestorage.fieldMapping.fieldMappingsDestroy(fieldMappingId) -> Merge.FieldMappingInstanceResponse
@@ -12161,7 +12086,7 @@ await client.crm.notes.retrieve("id");
-Returns metadata for `Note` POSTs. +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.
@@ -12177,7 +12102,7 @@ Returns metadata for `Note` POSTs.
```typescript -await client.crm.notes.metaPostRetrieve(); +await client.filestorage.fieldMapping.fieldMappingsDestroy("field_mapping_id"); ```
@@ -12193,7 +12118,15 @@ await client.crm.notes.metaPostRetrieve();
-**requestOptions:** `Notes.RequestOptions` +**fieldMappingId:** `string` + +
+
+ +
+
+ +**requestOptions:** `FieldMapping.RequestOptions`
@@ -12204,7 +12137,7 @@ await client.crm.notes.metaPostRetrieve();
-
client.crm.notes.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList +
client.filestorage.fieldMapping.fieldMappingsPartialUpdate(fieldMappingId, { ...params }) -> Merge.FieldMappingInstanceResponse
@@ -12216,7 +12149,7 @@ await client.crm.notes.metaPostRetrieve();
-Returns a list of `RemoteFieldClass` objects. +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.
@@ -12232,7 +12165,7 @@ Returns a list of `RemoteFieldClass` objects.
```typescript -await client.crm.notes.remoteFieldClassesList(); +await client.filestorage.fieldMapping.fieldMappingsPartialUpdate("field_mapping_id"); ```
@@ -12248,7 +12181,15 @@ await client.crm.notes.remoteFieldClassesList();
-**request:** `Merge.crm.NotesRemoteFieldClassesListRequest` +**fieldMappingId:** `string` + +
+
+ +
+
+ +**request:** `Merge.filestorage.PatchedEditFieldMappingRequest`
@@ -12256,7 +12197,7 @@ await client.crm.notes.remoteFieldClassesList();
-**requestOptions:** `Notes.RequestOptions` +**requestOptions:** `FieldMapping.RequestOptions`
@@ -12267,9 +12208,7 @@ await client.crm.notes.remoteFieldClassesList();
-## Crm Opportunities - -
client.crm.opportunities.list({ ...params }) -> Merge.PaginatedOpportunityList +
client.filestorage.fieldMapping.remoteFieldsRetrieve({ ...params }) -> Merge.RemoteFieldApiResponse
@@ -12281,7 +12220,7 @@ await client.crm.notes.remoteFieldClassesList();
-Returns a list of `Opportunity` objects. +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/).
@@ -12297,7 +12236,7 @@ Returns a list of `Opportunity` objects.
```typescript -await client.crm.opportunities.list(); +await client.filestorage.fieldMapping.remoteFieldsRetrieve(); ```
@@ -12313,7 +12252,7 @@ await client.crm.opportunities.list();
-**request:** `Merge.crm.OpportunitiesListRequest` +**request:** `Merge.filestorage.RemoteFieldsRetrieveRequest`
@@ -12321,7 +12260,7 @@ await client.crm.opportunities.list();
-**requestOptions:** `Opportunities.RequestOptions` +**requestOptions:** `FieldMapping.RequestOptions`
@@ -12332,7 +12271,7 @@ await client.crm.opportunities.list();
-
client.crm.opportunities.create({ ...params }) -> Merge.OpportunityResponse +
client.filestorage.fieldMapping.targetFieldsRetrieve() -> Merge.ExternalTargetFieldApiResponse
@@ -12344,7 +12283,7 @@ await client.crm.opportunities.list();
-Creates an `Opportunity` object with the given values. +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/).
@@ -12360,9 +12299,7 @@ Creates an `Opportunity` object with the given values.
```typescript -await client.crm.opportunities.create({ - model: {}, -}); +await client.filestorage.fieldMapping.targetFieldsRetrieve(); ```
@@ -12378,15 +12315,7 @@ await client.crm.opportunities.create({
-**request:** `Merge.crm.OpportunityEndpointRequest` - -
-
- -
-
- -**requestOptions:** `Opportunities.RequestOptions` +**requestOptions:** `FieldMapping.RequestOptions`
@@ -12397,7 +12326,9 @@ await client.crm.opportunities.create({
-
client.crm.opportunities.retrieve(id, { ...params }) -> Merge.Opportunity +## Filestorage Files + +
client.filestorage.files.list({ ...params }) -> Merge.PaginatedFileList
@@ -12409,7 +12340,7 @@ await client.crm.opportunities.create({
-Returns an `Opportunity` object with the given `id`. +Returns a list of `File` objects.
@@ -12425,7 +12356,7 @@ Returns an `Opportunity` object with the given `id`.
```typescript -await client.crm.opportunities.retrieve("id"); +await client.filestorage.files.list(); ```
@@ -12441,15 +12372,7 @@ await client.crm.opportunities.retrieve("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.crm.OpportunitiesRetrieveRequest` +**request:** `Merge.filestorage.FilesListRequest`
@@ -12457,7 +12380,7 @@ await client.crm.opportunities.retrieve("id");
-**requestOptions:** `Opportunities.RequestOptions` +**requestOptions:** `Files.RequestOptions`
@@ -12468,7 +12391,7 @@ await client.crm.opportunities.retrieve("id");
-
client.crm.opportunities.partialUpdate(id, { ...params }) -> Merge.OpportunityResponse +
client.filestorage.files.create({ ...params }) -> Merge.FileStorageFileResponse
@@ -12480,7 +12403,7 @@ await client.crm.opportunities.retrieve("id");
-Updates an `Opportunity` object with the given `id`. +Creates a `File` object with the given values.
@@ -12496,7 +12419,7 @@ Updates an `Opportunity` object with the given `id`.
```typescript -await client.crm.opportunities.partialUpdate("id", { +await client.filestorage.files.create({ model: {}, }); ``` @@ -12514,15 +12437,7 @@ await client.crm.opportunities.partialUpdate("id", {
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.crm.PatchedOpportunityEndpointRequest` +**request:** `Merge.filestorage.FileStorageFileEndpointRequest`
@@ -12530,7 +12445,7 @@ await client.crm.opportunities.partialUpdate("id", {
-**requestOptions:** `Opportunities.RequestOptions` +**requestOptions:** `Files.RequestOptions`
@@ -12541,7 +12456,7 @@ await client.crm.opportunities.partialUpdate("id", {
-
client.crm.opportunities.metaPatchRetrieve(id) -> Merge.MetaResponse +
client.filestorage.files.retrieve(id, { ...params }) -> Merge.File_
@@ -12553,7 +12468,7 @@ await client.crm.opportunities.partialUpdate("id", {
-Returns metadata for `Opportunity` PATCHs. +Returns a `File` object with the given `id`.
@@ -12569,7 +12484,7 @@ Returns metadata for `Opportunity` PATCHs.
```typescript -await client.crm.opportunities.metaPatchRetrieve("id"); +await client.filestorage.files.retrieve("id"); ```
@@ -12593,7 +12508,15 @@ await client.crm.opportunities.metaPatchRetrieve("id");
-**requestOptions:** `Opportunities.RequestOptions` +**request:** `Merge.filestorage.FilesRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `Files.RequestOptions`
@@ -12604,7 +12527,7 @@ await client.crm.opportunities.metaPatchRetrieve("id");
-
client.crm.opportunities.metaPostRetrieve() -> Merge.MetaResponse +
client.filestorage.files.downloadRequestMetaRetrieve(id, { ...params }) -> Merge.DownloadRequestMeta
@@ -12616,7 +12539,7 @@ await client.crm.opportunities.metaPatchRetrieve("id");
-Returns metadata for `Opportunity` POSTs. +Returns metadata to construct an authenticated file download request for a singular file, allowing you to download file directly from the third-party.
@@ -12632,7 +12555,7 @@ Returns metadata for `Opportunity` POSTs.
```typescript -await client.crm.opportunities.metaPostRetrieve(); +await client.filestorage.files.downloadRequestMetaRetrieve("id"); ```
@@ -12648,7 +12571,23 @@ await client.crm.opportunities.metaPostRetrieve();
-**requestOptions:** `Opportunities.RequestOptions` +**id:** `string` + +
+
+ +
+
+ +**request:** `Merge.filestorage.FilesDownloadRequestMetaRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `Files.RequestOptions`
@@ -12659,7 +12598,7 @@ await client.crm.opportunities.metaPostRetrieve();
-
client.crm.opportunities.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList +
client.filestorage.files.downloadRequestMetaList({ ...params }) -> Merge.PaginatedDownloadRequestMetaList
@@ -12671,7 +12610,7 @@ await client.crm.opportunities.metaPostRetrieve();
-Returns a list of `RemoteFieldClass` objects. +Returns metadata to construct authenticated file download requests, allowing you to download files directly from the third-party.
@@ -12687,7 +12626,7 @@ Returns a list of `RemoteFieldClass` objects.
```typescript -await client.crm.opportunities.remoteFieldClassesList(); +await client.filestorage.files.downloadRequestMetaList(); ```
@@ -12703,7 +12642,7 @@ await client.crm.opportunities.remoteFieldClassesList();
-**request:** `Merge.crm.OpportunitiesRemoteFieldClassesListRequest` +**request:** `Merge.filestorage.FilesDownloadRequestMetaListRequest`
@@ -12711,7 +12650,7 @@ await client.crm.opportunities.remoteFieldClassesList();
-**requestOptions:** `Opportunities.RequestOptions` +**requestOptions:** `Files.RequestOptions`
@@ -12722,9 +12661,7 @@ await client.crm.opportunities.remoteFieldClassesList();
-## Crm Passthrough - -
client.crm.passthrough.create({ ...params }) -> Merge.RemoteResponse +
client.filestorage.files.metaPostRetrieve() -> Merge.MetaResponse
@@ -12736,7 +12673,7 @@ await client.crm.opportunities.remoteFieldClassesList();
-Pull data from an endpoint not currently supported by Merge. +Returns metadata for `FileStorageFile` POSTs.
@@ -12752,10 +12689,7 @@ Pull data from an endpoint not currently supported by Merge.
```typescript -await client.crm.passthrough.create({ - method: "GET", - path: "/scooters", -}); +await client.filestorage.files.metaPostRetrieve(); ```
@@ -12771,15 +12705,7 @@ await client.crm.passthrough.create({
-**request:** `Merge.DataPassthroughRequest` - -
-
- -
-
- -**requestOptions:** `Passthrough.RequestOptions` +**requestOptions:** `Files.RequestOptions`
@@ -12790,9 +12716,9 @@ await client.crm.passthrough.create({
-## Crm RegenerateKey +## Filestorage Folders -
client.crm.regenerateKey.create({ ...params }) -> Merge.RemoteKey +
client.filestorage.folders.list({ ...params }) -> Merge.PaginatedFolderList
@@ -12804,7 +12730,7 @@ await client.crm.passthrough.create({
-Exchange remote keys. +Returns a list of `Folder` objects.
@@ -12820,9 +12746,7 @@ Exchange remote keys.
```typescript -await client.crm.regenerateKey.create({ - name: "Remote Deployment Key 1", -}); +await client.filestorage.folders.list(); ```
@@ -12838,7 +12762,7 @@ await client.crm.regenerateKey.create({
-**request:** `Merge.crm.RemoteKeyForRegenerationRequest` +**request:** `Merge.filestorage.FoldersListRequest`
@@ -12846,7 +12770,7 @@ await client.crm.regenerateKey.create({
-**requestOptions:** `RegenerateKey.RequestOptions` +**requestOptions:** `Folders.RequestOptions`
@@ -12857,9 +12781,7 @@ await client.crm.regenerateKey.create({
-## Crm Stages - -
client.crm.stages.list({ ...params }) -> Merge.PaginatedStageList +
client.filestorage.folders.create({ ...params }) -> Merge.FileStorageFolderResponse
@@ -12871,7 +12793,7 @@ await client.crm.regenerateKey.create({
-Returns a list of `Stage` objects. +Creates a `Folder` object with the given values.
@@ -12887,7 +12809,9 @@ Returns a list of `Stage` objects.
```typescript -await client.crm.stages.list(); +await client.filestorage.folders.create({ + model: {}, +}); ```
@@ -12903,7 +12827,7 @@ await client.crm.stages.list();
-**request:** `Merge.crm.StagesListRequest` +**request:** `Merge.filestorage.FileStorageFolderEndpointRequest`
@@ -12911,7 +12835,7 @@ await client.crm.stages.list();
-**requestOptions:** `Stages.RequestOptions` +**requestOptions:** `Folders.RequestOptions`
@@ -12922,7 +12846,7 @@ await client.crm.stages.list();
-
client.crm.stages.retrieve(id, { ...params }) -> Merge.Stage +
client.filestorage.folders.retrieve(id, { ...params }) -> Merge.Folder
@@ -12934,7 +12858,7 @@ await client.crm.stages.list();
-Returns a `Stage` object with the given `id`. +Returns a `Folder` object with the given `id`.
@@ -12950,7 +12874,7 @@ Returns a `Stage` object with the given `id`.
```typescript -await client.crm.stages.retrieve("id"); +await client.filestorage.folders.retrieve("id"); ```
@@ -12974,7 +12898,7 @@ await client.crm.stages.retrieve("id");
-**request:** `Merge.crm.StagesRetrieveRequest` +**request:** `Merge.filestorage.FoldersRetrieveRequest`
@@ -12982,7 +12906,7 @@ await client.crm.stages.retrieve("id");
-**requestOptions:** `Stages.RequestOptions` +**requestOptions:** `Folders.RequestOptions`
@@ -12993,7 +12917,7 @@ await client.crm.stages.retrieve("id");
-
client.crm.stages.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList +
client.filestorage.folders.metaPostRetrieve() -> Merge.MetaResponse
@@ -13005,7 +12929,7 @@ await client.crm.stages.retrieve("id");
-Returns a list of `RemoteFieldClass` objects. +Returns metadata for `FileStorageFolder` POSTs.
@@ -13021,7 +12945,7 @@ Returns a list of `RemoteFieldClass` objects.
```typescript -await client.crm.stages.remoteFieldClassesList(); +await client.filestorage.folders.metaPostRetrieve(); ```
@@ -13037,15 +12961,7 @@ await client.crm.stages.remoteFieldClassesList();
-**request:** `Merge.crm.StagesRemoteFieldClassesListRequest` - -
-
- -
-
- -**requestOptions:** `Stages.RequestOptions` +**requestOptions:** `Folders.RequestOptions`
@@ -13056,9 +12972,9 @@ await client.crm.stages.remoteFieldClassesList();
-## Crm SyncStatus +## Filestorage GenerateKey -
client.crm.syncStatus.list({ ...params }) -> Merge.PaginatedSyncStatusList +
client.filestorage.generateKey.create({ ...params }) -> Merge.RemoteKey
@@ -13070,7 +12986,7 @@ await client.crm.stages.remoteFieldClassesList();
-Get syncing status. Possible values: `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). +Create a remote key.
@@ -13086,7 +13002,9 @@ Get syncing status. Possible values: `DISABLED`, `DONE`, `FAILED`, `PARTIALLY_SY
```typescript -await client.crm.syncStatus.list(); +await client.filestorage.generateKey.create({ + name: "Remote Deployment Key 1", +}); ```
@@ -13102,7 +13020,7 @@ await client.crm.syncStatus.list();
-**request:** `Merge.crm.SyncStatusListRequest` +**request:** `Merge.filestorage.GenerateRemoteKeyRequest`
@@ -13110,7 +13028,7 @@ await client.crm.syncStatus.list();
-**requestOptions:** `SyncStatus.RequestOptions` +**requestOptions:** `GenerateKey.RequestOptions`
@@ -13121,9 +13039,9 @@ await client.crm.syncStatus.list();
-## Crm ForceResync +## Filestorage Groups -
client.crm.forceResync.syncStatusResyncCreate() -> Merge.SyncStatus[] +
client.filestorage.groups.list({ ...params }) -> Merge.PaginatedGroupList
@@ -13135,7 +13053,7 @@ await client.crm.syncStatus.list();
-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. +Returns a list of `Group` objects.
@@ -13151,7 +13069,7 @@ Force re-sync of all models. This endpoint is available for monthly, quarterly,
```typescript -await client.crm.forceResync.syncStatusResyncCreate(); +await client.filestorage.groups.list(); ```
@@ -13167,7 +13085,15 @@ await client.crm.forceResync.syncStatusResyncCreate();
-**requestOptions:** `ForceResync.RequestOptions` +**request:** `Merge.filestorage.GroupsListRequest` + +
+
+ +
+
+ +**requestOptions:** `Groups.RequestOptions`
@@ -13178,9 +13104,7 @@ await client.crm.forceResync.syncStatusResyncCreate();
-## Crm Tasks - -
client.crm.tasks.list({ ...params }) -> Merge.PaginatedTaskList +
client.filestorage.groups.retrieve(id, { ...params }) -> Merge.Group
@@ -13192,7 +13116,7 @@ await client.crm.forceResync.syncStatusResyncCreate();
-Returns a list of `Task` objects. +Returns a `Group` object with the given `id`.
@@ -13208,7 +13132,7 @@ Returns a list of `Task` objects.
```typescript -await client.crm.tasks.list(); +await client.filestorage.groups.retrieve("id"); ```
@@ -13224,7 +13148,7 @@ await client.crm.tasks.list();
-**request:** `Merge.crm.TasksListRequest` +**id:** `string`
@@ -13232,7 +13156,15 @@ await client.crm.tasks.list();
-**requestOptions:** `Tasks.RequestOptions` +**request:** `Merge.filestorage.GroupsRetrieveRequest` + +
+
+ +
+
+ +**requestOptions:** `Groups.RequestOptions`
@@ -13243,7 +13175,9 @@ await client.crm.tasks.list();
-
client.crm.tasks.create({ ...params }) -> Merge.TaskResponse +## Filestorage Issues + +
client.filestorage.issues.list({ ...params }) -> Merge.PaginatedIssueList
@@ -13255,7 +13189,7 @@ await client.crm.tasks.list();
-Creates a `Task` object with the given values. +Gets all issues for Organization.
@@ -13271,9 +13205,7 @@ Creates a `Task` object with the given values.
```typescript -await client.crm.tasks.create({ - model: {}, -}); +await client.filestorage.issues.list(); ```
@@ -13289,7 +13221,7 @@ await client.crm.tasks.create({
-**request:** `Merge.crm.TaskEndpointRequest` +**request:** `Merge.filestorage.IssuesListRequest`
@@ -13297,7 +13229,7 @@ await client.crm.tasks.create({
-**requestOptions:** `Tasks.RequestOptions` +**requestOptions:** `Issues.RequestOptions`
@@ -13308,7 +13240,7 @@ await client.crm.tasks.create({
-
client.crm.tasks.retrieve(id, { ...params }) -> Merge.Task +
client.filestorage.issues.retrieve(id) -> Merge.Issue
@@ -13320,7 +13252,7 @@ await client.crm.tasks.create({
-Returns a `Task` object with the given `id`. +Get a specific issue.
@@ -13336,7 +13268,7 @@ Returns a `Task` object with the given `id`.
```typescript -await client.crm.tasks.retrieve("id"); +await client.filestorage.issues.retrieve("id"); ```
@@ -13360,15 +13292,7 @@ await client.crm.tasks.retrieve("id");
-**request:** `Merge.crm.TasksRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `Tasks.RequestOptions` +**requestOptions:** `Issues.RequestOptions`
@@ -13379,7 +13303,9 @@ await client.crm.tasks.retrieve("id");
-
client.crm.tasks.partialUpdate(id, { ...params }) -> Merge.TaskResponse +## Filestorage LinkToken + +
client.filestorage.linkToken.create({ ...params }) -> Merge.LinkToken
@@ -13391,7 +13317,7 @@ await client.crm.tasks.retrieve("id");
-Updates a `Task` object with the given `id`. +Creates a link token to be used when linking a new end user.
@@ -13407,8 +13333,11 @@ Updates a `Task` object with the given `id`.
```typescript -await client.crm.tasks.partialUpdate("id", { - model: {}, +await client.filestorage.linkToken.create({ + endUserEmailAddress: "example@gmail.com", + endUserOrganizationName: "Test Organization", + endUserOriginId: "12345", + categories: ["hris", "ats"], }); ``` @@ -13425,15 +13354,7 @@ await client.crm.tasks.partialUpdate("id", {
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.crm.PatchedTaskEndpointRequest` +**request:** `Merge.filestorage.EndUserDetailsRequest`
@@ -13441,7 +13362,7 @@ await client.crm.tasks.partialUpdate("id", {
-**requestOptions:** `Tasks.RequestOptions` +**requestOptions:** `LinkToken.RequestOptions`
@@ -13452,7 +13373,9 @@ await client.crm.tasks.partialUpdate("id", {
-
client.crm.tasks.metaPatchRetrieve(id) -> Merge.MetaResponse +## Filestorage LinkedAccounts + +
client.filestorage.linkedAccounts.list({ ...params }) -> Merge.PaginatedAccountDetailsAndActionsList
@@ -13464,7 +13387,7 @@ await client.crm.tasks.partialUpdate("id", {
-Returns metadata for `Task` PATCHs. +List linked accounts for your organization.
@@ -13480,7 +13403,7 @@ Returns metadata for `Task` PATCHs.
```typescript -await client.crm.tasks.metaPatchRetrieve("id"); +await client.filestorage.linkedAccounts.list(); ```
@@ -13496,7 +13419,7 @@ await client.crm.tasks.metaPatchRetrieve("id");
-**id:** `string` +**request:** `Merge.filestorage.LinkedAccountsListRequest`
@@ -13504,7 +13427,7 @@ await client.crm.tasks.metaPatchRetrieve("id");
-**requestOptions:** `Tasks.RequestOptions` +**requestOptions:** `LinkedAccounts.RequestOptions`
@@ -13515,7 +13438,9 @@ await client.crm.tasks.metaPatchRetrieve("id");
-
client.crm.tasks.metaPostRetrieve() -> Merge.MetaResponse +## Filestorage Passthrough + +
client.filestorage.passthrough.create({ ...params }) -> Merge.RemoteResponse
@@ -13527,7 +13452,7 @@ await client.crm.tasks.metaPatchRetrieve("id");
-Returns metadata for `Task` POSTs. +Pull data from an endpoint not currently supported by Merge.
@@ -13543,7 +13468,10 @@ Returns metadata for `Task` POSTs.
```typescript -await client.crm.tasks.metaPostRetrieve(); +await client.filestorage.passthrough.create({ + method: "GET", + path: "/scooters", +}); ```
@@ -13559,7 +13487,15 @@ await client.crm.tasks.metaPostRetrieve();
-**requestOptions:** `Tasks.RequestOptions` +**request:** `Merge.DataPassthroughRequest` + +
+
+ +
+
+ +**requestOptions:** `Passthrough.RequestOptions`
@@ -13570,7 +13506,9 @@ await client.crm.tasks.metaPostRetrieve();
-
client.crm.tasks.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList +## Filestorage RegenerateKey + +
client.filestorage.regenerateKey.create({ ...params }) -> Merge.RemoteKey
@@ -13582,7 +13520,7 @@ await client.crm.tasks.metaPostRetrieve();
-Returns a list of `RemoteFieldClass` objects. +Exchange remote keys.
@@ -13598,7 +13536,9 @@ Returns a list of `RemoteFieldClass` objects.
```typescript -await client.crm.tasks.remoteFieldClassesList(); +await client.filestorage.regenerateKey.create({ + name: "Remote Deployment Key 1", +}); ```
@@ -13614,7 +13554,7 @@ await client.crm.tasks.remoteFieldClassesList();
-**request:** `Merge.crm.TasksRemoteFieldClassesListRequest` +**request:** `Merge.filestorage.RemoteKeyForRegenerationRequest`
@@ -13622,7 +13562,7 @@ await client.crm.tasks.remoteFieldClassesList();
-**requestOptions:** `Tasks.RequestOptions` +**requestOptions:** `RegenerateKey.RequestOptions`
@@ -13633,9 +13573,9 @@ await client.crm.tasks.remoteFieldClassesList();
-## Crm Users +## Filestorage SyncStatus -
client.crm.users.list({ ...params }) -> Merge.PaginatedUserList +
client.filestorage.syncStatus.list({ ...params }) -> Merge.PaginatedSyncStatusList
@@ -13647,7 +13587,7 @@ await client.crm.tasks.remoteFieldClassesList();
-Returns a list of `User` objects. +Get syncing status. Possible values: `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).
@@ -13663,7 +13603,7 @@ Returns a list of `User` objects.
```typescript -await client.crm.users.list(); +await client.filestorage.syncStatus.list(); ```
@@ -13679,7 +13619,7 @@ await client.crm.users.list();
-**request:** `Merge.crm.UsersListRequest` +**request:** `Merge.filestorage.SyncStatusListRequest`
@@ -13687,7 +13627,7 @@ await client.crm.users.list();
-**requestOptions:** `Users.RequestOptions` +**requestOptions:** `SyncStatus.RequestOptions`
@@ -13698,7 +13638,9 @@ await client.crm.users.list();
-
client.crm.users.retrieve(id, { ...params }) -> Merge.User +## Filestorage ForceResync + +
client.filestorage.forceResync.syncStatusResyncCreate() -> Merge.SyncStatus[]
@@ -13710,7 +13652,7 @@ await client.crm.users.list();
-Returns a `User` object with the given `id`. +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.
@@ -13726,7 +13668,7 @@ Returns a `User` object with the given `id`.
```typescript -await client.crm.users.retrieve("id"); +await client.filestorage.forceResync.syncStatusResyncCreate(); ```
@@ -13742,23 +13684,7 @@ await client.crm.users.retrieve("id");
-**id:** `string` - -
-
- -
-
- -**request:** `Merge.crm.UsersRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `Users.RequestOptions` +**requestOptions:** `ForceResync.RequestOptions`
@@ -13769,7 +13695,9 @@ await client.crm.users.retrieve("id");
-
client.crm.users.ignoreCreate(modelId, { ...params }) -> void +## Filestorage Users + +
client.filestorage.users.list({ ...params }) -> Merge.PaginatedUserList
@@ -13781,7 +13709,7 @@ await client.crm.users.retrieve("id");
-Ignores a specific row based on the `model_id` in the url. These records will have their properties set to null, and will not be updated in future syncs. The "reason" and "message" fields in the request body will be stored for audit purposes. +Returns a list of `User` objects.
@@ -13797,9 +13725,7 @@ Ignores a specific row based on the `model_id` in the url. These records will ha
```typescript -await client.crm.users.ignoreCreate("model_id", { - reason: "GENERAL_CUSTOMER_REQUEST", -}); +await client.filestorage.users.list(); ```
@@ -13815,15 +13741,7 @@ await client.crm.users.ignoreCreate("model_id", {
-**modelId:** `string` - -
-
- -
-
- -**request:** `Merge.IgnoreCommonModelRequest` +**request:** `Merge.filestorage.UsersListRequest`
@@ -13842,7 +13760,7 @@ await client.crm.users.ignoreCreate("model_id", {
-
client.crm.users.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList +
client.filestorage.users.retrieve(id, { ...params }) -> Merge.User
@@ -13854,7 +13772,7 @@ await client.crm.users.ignoreCreate("model_id", {
-Returns a list of `RemoteFieldClass` objects. +Returns a `User` object with the given `id`.
@@ -13870,7 +13788,7 @@ Returns a list of `RemoteFieldClass` objects.
```typescript -await client.crm.users.remoteFieldClassesList(); +await client.filestorage.users.retrieve("id"); ```
@@ -13886,7 +13804,15 @@ await client.crm.users.remoteFieldClassesList();
-**request:** `Merge.crm.UsersRemoteFieldClassesListRequest` +**id:** `string` + +
+
+ +
+
+ +**request:** `Merge.filestorage.UsersRetrieveRequest`
@@ -13905,9 +13831,9 @@ await client.crm.users.remoteFieldClassesList();
-## Crm WebhookReceivers +## Filestorage WebhookReceivers -
client.crm.webhookReceivers.list() -> Merge.WebhookReceiver[] +
client.filestorage.webhookReceivers.list() -> Merge.WebhookReceiver[]
@@ -13935,7 +13861,7 @@ Returns a list of `WebhookReceiver` objects.
```typescript -await client.crm.webhookReceivers.list(); +await client.filestorage.webhookReceivers.list(); ```
@@ -13962,7 +13888,7 @@ await client.crm.webhookReceivers.list();
-
client.crm.webhookReceivers.create({ ...params }) -> Merge.WebhookReceiver +
client.filestorage.webhookReceivers.create({ ...params }) -> Merge.WebhookReceiver
@@ -13990,7 +13916,7 @@ Creates a `WebhookReceiver` object with the given values.
```typescript -await client.crm.webhookReceivers.create({ +await client.filestorage.webhookReceivers.create({ event: "event", isActive: true, }); @@ -14009,7 +13935,7 @@ await client.crm.webhookReceivers.create({
-**request:** `Merge.crm.WebhookReceiverRequest` +**request:** `Merge.filestorage.WebhookReceiverRequest`
@@ -18957,80 +18883,6 @@ await client.ticketing.attachments.retrieve("id");
-
client.ticketing.attachments.downloadRetrieve(id, { ...params }) -> stream.Readable -
-
- -#### 📝 Description - -
-
- -
-
- -Returns the `File` content with the given `id` as a stream of bytes. - -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.ticketing.attachments.downloadRetrieve("string", { - includeShellData: true, - mimeType: "string", -}); -``` - -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.ticketing.AttachmentsDownloadRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `Attachments.RequestOptions` - -
-
-
-
- -
-
-
-
client.ticketing.attachments.metaPostRetrieve() -> Merge.MetaResponse
diff --git a/src/Client.ts b/src/Client.ts index 35978be48..775ca2377 100644 --- a/src/Client.ts +++ b/src/Client.ts @@ -4,9 +4,9 @@ import * as environments from "./environments"; import * as core from "./core"; -import { Filestorage } from "./api/resources/filestorage/client/Client"; import { Ats } from "./api/resources/ats/client/Client"; import { Crm } from "./api/resources/crm/client/Client"; +import { Filestorage } from "./api/resources/filestorage/client/Client"; import { Hris } from "./api/resources/hris/client/Client"; import { Ticketing } from "./api/resources/ticketing/client/Client"; import { Accounting } from "./api/resources/accounting/client/Client"; @@ -37,19 +37,15 @@ export declare namespace MergeClient { } export class MergeClient { - protected _filestorage: Filestorage | undefined; protected _ats: Ats | undefined; protected _crm: Crm | undefined; + protected _filestorage: Filestorage | undefined; protected _hris: Hris | undefined; protected _ticketing: Ticketing | undefined; protected _accounting: Accounting | undefined; constructor(protected readonly _options: MergeClient.Options) {} - public get filestorage(): Filestorage { - return (this._filestorage ??= new Filestorage(this._options)); - } - public get ats(): Ats { return (this._ats ??= new Ats(this._options)); } @@ -58,6 +54,10 @@ export class MergeClient { return (this._crm ??= new Crm(this._options)); } + public get filestorage(): Filestorage { + return (this._filestorage ??= new Filestorage(this._options)); + } + public get hris(): Hris { return (this._hris ??= new Hris(this._options)); } diff --git a/src/api/resources/accounting/resources/accountDetails/client/Client.ts b/src/api/resources/accounting/resources/accountDetails/client/Client.ts index dc7f7720c..6d3114340 100644 --- a/src/api/resources/accounting/resources/accountDetails/client/Client.ts +++ b/src/api/resources/accounting/resources/accountDetails/client/Client.ts @@ -70,8 +70,8 @@ export class AccountDetails { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/accountToken/client/Client.ts b/src/api/resources/accounting/resources/accountToken/client/Client.ts index d82718242..9a810a78b 100644 --- a/src/api/resources/accounting/resources/accountToken/client/Client.ts +++ b/src/api/resources/accounting/resources/accountToken/client/Client.ts @@ -73,8 +73,8 @@ export class AccountToken { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/accountingPeriods/client/Client.ts b/src/api/resources/accounting/resources/accountingPeriods/client/Client.ts index b52cbabd7..60d8b9f59 100644 --- a/src/api/resources/accounting/resources/accountingPeriods/client/Client.ts +++ b/src/api/resources/accounting/resources/accountingPeriods/client/Client.ts @@ -95,8 +95,8 @@ export class AccountingPeriods { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -194,8 +194,8 @@ export class AccountingPeriods { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/accounts/client/Client.ts b/src/api/resources/accounting/resources/accounts/client/Client.ts index c58e8b94e..f58c163f1 100644 --- a/src/api/resources/accounting/resources/accounts/client/Client.ts +++ b/src/api/resources/accounting/resources/accounts/client/Client.ts @@ -74,6 +74,7 @@ export class Accounts { remoteFields, remoteId, showEnumOrigins, + status, } = request; const _queryParams: Record = {}; if (accountType != null) { @@ -146,6 +147,10 @@ export class Accounts { ); } + if (status != null) { + _queryParams["status"] = status; + } + const _response = await (this._options.fetcher ?? core.fetcher)({ url: urlJoin( (await core.Supplier.get(this._options.baseUrl)) ?? @@ -162,8 +167,8 @@ export class Accounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -258,8 +263,8 @@ export class Accounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -374,8 +379,8 @@ export class Accounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -455,8 +460,8 @@ export class Accounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/accounts/client/requests/AccountsListRequest.ts b/src/api/resources/accounting/resources/accounts/client/requests/AccountsListRequest.ts index e91a771f7..012c84439 100644 --- a/src/api/resources/accounting/resources/accounts/client/requests/AccountsListRequest.ts +++ b/src/api/resources/accounting/resources/accounts/client/requests/AccountsListRequest.ts @@ -73,4 +73,8 @@ export interface AccountsListRequest { * 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?: string; } diff --git a/src/api/resources/accounting/resources/addresses/client/Client.ts b/src/api/resources/accounting/resources/addresses/client/Client.ts index 929f1ec79..16077d8de 100644 --- a/src/api/resources/accounting/resources/addresses/client/Client.ts +++ b/src/api/resources/accounting/resources/addresses/client/Client.ts @@ -94,8 +94,8 @@ export class Addresses { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/asyncPassthrough/client/Client.ts b/src/api/resources/accounting/resources/asyncPassthrough/client/Client.ts index dff8b4111..0fd7ada86 100644 --- a/src/api/resources/accounting/resources/asyncPassthrough/client/Client.ts +++ b/src/api/resources/accounting/resources/asyncPassthrough/client/Client.ts @@ -76,8 +76,8 @@ export class AsyncPassthrough { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -164,8 +164,8 @@ export class AsyncPassthrough { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/asyncTasks/client/Client.ts b/src/api/resources/accounting/resources/asyncTasks/client/Client.ts index dd804710b..7c45ce44b 100644 --- a/src/api/resources/accounting/resources/asyncTasks/client/Client.ts +++ b/src/api/resources/accounting/resources/asyncTasks/client/Client.ts @@ -73,8 +73,8 @@ export class AsyncTasks { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/attachments/client/Client.ts b/src/api/resources/accounting/resources/attachments/client/Client.ts index acd637b54..87c9bab1f 100644 --- a/src/api/resources/accounting/resources/attachments/client/Client.ts +++ b/src/api/resources/accounting/resources/attachments/client/Client.ts @@ -131,8 +131,8 @@ export class Attachments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -227,8 +227,8 @@ export class Attachments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -327,8 +327,8 @@ export class Attachments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -410,8 +410,8 @@ export class Attachments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/auditTrail/client/Client.ts b/src/api/resources/accounting/resources/auditTrail/client/Client.ts index d56cb8624..ad2650001 100644 --- a/src/api/resources/accounting/resources/auditTrail/client/Client.ts +++ b/src/api/resources/accounting/resources/auditTrail/client/Client.ts @@ -99,8 +99,8 @@ export class AuditTrail { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/availableActions/client/Client.ts b/src/api/resources/accounting/resources/availableActions/client/Client.ts index f8eaa0a5f..2c9f79535 100644 --- a/src/api/resources/accounting/resources/availableActions/client/Client.ts +++ b/src/api/resources/accounting/resources/availableActions/client/Client.ts @@ -70,8 +70,8 @@ export class AvailableActions { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/balanceSheets/client/Client.ts b/src/api/resources/accounting/resources/balanceSheets/client/Client.ts index 5093ccb0c..47e89ae93 100644 --- a/src/api/resources/accounting/resources/balanceSheets/client/Client.ts +++ b/src/api/resources/accounting/resources/balanceSheets/client/Client.ts @@ -136,8 +136,8 @@ export class BalanceSheets { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -237,8 +237,8 @@ export class BalanceSheets { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/bankFeedAccounts/client/Client.ts b/src/api/resources/accounting/resources/bankFeedAccounts/client/Client.ts index 930e63b68..306c2999c 100644 --- a/src/api/resources/accounting/resources/bankFeedAccounts/client/Client.ts +++ b/src/api/resources/accounting/resources/bankFeedAccounts/client/Client.ts @@ -95,8 +95,8 @@ export class BankFeedAccounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -193,8 +193,8 @@ export class BankFeedAccounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -295,8 +295,8 @@ export class BankFeedAccounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -378,8 +378,8 @@ export class BankFeedAccounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/bankFeedTransactions/client/Client.ts b/src/api/resources/accounting/resources/bankFeedTransactions/client/Client.ts index c0064a0c4..1610b5388 100644 --- a/src/api/resources/accounting/resources/bankFeedTransactions/client/Client.ts +++ b/src/api/resources/accounting/resources/bankFeedTransactions/client/Client.ts @@ -136,8 +136,8 @@ export class BankFeedTransactions { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -234,8 +234,8 @@ export class BankFeedTransactions { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -340,8 +340,8 @@ export class BankFeedTransactions { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -423,8 +423,8 @@ export class BankFeedTransactions { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/cashFlowStatements/client/Client.ts b/src/api/resources/accounting/resources/cashFlowStatements/client/Client.ts index 5e201b43e..1d92c8079 100644 --- a/src/api/resources/accounting/resources/cashFlowStatements/client/Client.ts +++ b/src/api/resources/accounting/resources/cashFlowStatements/client/Client.ts @@ -136,8 +136,8 @@ export class CashFlowStatements { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -239,8 +239,8 @@ export class CashFlowStatements { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/companyInfo/client/Client.ts b/src/api/resources/accounting/resources/companyInfo/client/Client.ts index 81a85da57..50fd37910 100644 --- a/src/api/resources/accounting/resources/companyInfo/client/Client.ts +++ b/src/api/resources/accounting/resources/companyInfo/client/Client.ts @@ -133,8 +133,8 @@ export class CompanyInfo { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -236,8 +236,8 @@ export class CompanyInfo { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/contacts/client/Client.ts b/src/api/resources/accounting/resources/contacts/client/Client.ts index c386bc7f8..e21819828 100644 --- a/src/api/resources/accounting/resources/contacts/client/Client.ts +++ b/src/api/resources/accounting/resources/contacts/client/Client.ts @@ -77,6 +77,7 @@ export class Contacts { remoteFields, remoteId, showEnumOrigins, + status, } = request; const _queryParams: Record = {}; if (companyId != null) { @@ -157,6 +158,10 @@ export class Contacts { _queryParams["show_enum_origins"] = showEnumOrigins; } + if (status != null) { + _queryParams["status"] = status; + } + const _response = await (this._options.fetcher ?? core.fetcher)({ url: urlJoin( (await core.Supplier.get(this._options.baseUrl)) ?? @@ -173,8 +178,8 @@ export class Contacts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -269,8 +274,8 @@ export class Contacts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -386,8 +391,8 @@ export class Contacts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -467,8 +472,8 @@ export class Contacts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -579,8 +584,8 @@ export class Contacts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/contacts/client/requests/ContactsListRequest.ts b/src/api/resources/accounting/resources/contacts/client/requests/ContactsListRequest.ts index ecf4a62f4..375a1642c 100644 --- a/src/api/resources/accounting/resources/contacts/client/requests/ContactsListRequest.ts +++ b/src/api/resources/accounting/resources/contacts/client/requests/ContactsListRequest.ts @@ -85,4 +85,8 @@ export interface ContactsListRequest { * 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?: string; } diff --git a/src/api/resources/accounting/resources/creditNotes/client/Client.ts b/src/api/resources/accounting/resources/creditNotes/client/Client.ts index 47cb354b2..f136f1cff 100644 --- a/src/api/resources/accounting/resources/creditNotes/client/Client.ts +++ b/src/api/resources/accounting/resources/creditNotes/client/Client.ts @@ -164,8 +164,8 @@ export class CreditNotes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -260,8 +260,8 @@ export class CreditNotes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -380,8 +380,8 @@ export class CreditNotes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -463,8 +463,8 @@ export class CreditNotes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/deleteAccount/client/Client.ts b/src/api/resources/accounting/resources/deleteAccount/client/Client.ts index a47278424..393bab24b 100644 --- a/src/api/resources/accounting/resources/deleteAccount/client/Client.ts +++ b/src/api/resources/accounting/resources/deleteAccount/client/Client.ts @@ -64,8 +64,8 @@ export class DeleteAccount { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/employees/client/Client.ts b/src/api/resources/accounting/resources/employees/client/Client.ts index 7d518d885..86c5acc02 100644 --- a/src/api/resources/accounting/resources/employees/client/Client.ts +++ b/src/api/resources/accounting/resources/employees/client/Client.ts @@ -99,8 +99,8 @@ export class Employees { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -200,8 +200,8 @@ export class Employees { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/expenses/client/Client.ts b/src/api/resources/accounting/resources/expenses/client/Client.ts index 36a791341..6bd8dcf1f 100644 --- a/src/api/resources/accounting/resources/expenses/client/Client.ts +++ b/src/api/resources/accounting/resources/expenses/client/Client.ts @@ -153,8 +153,8 @@ export class Expenses { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -249,8 +249,8 @@ export class Expenses { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -357,8 +357,8 @@ export class Expenses { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -468,8 +468,8 @@ export class Expenses { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -551,8 +551,8 @@ export class Expenses { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -663,8 +663,8 @@ export class Expenses { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/fieldMapping/client/Client.ts b/src/api/resources/accounting/resources/fieldMapping/client/Client.ts index 68242a3ab..222911773 100644 --- a/src/api/resources/accounting/resources/fieldMapping/client/Client.ts +++ b/src/api/resources/accounting/resources/fieldMapping/client/Client.ts @@ -79,8 +79,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -176,8 +176,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -263,8 +263,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -353,8 +353,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -451,8 +451,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -532,8 +532,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/forceResync/client/Client.ts b/src/api/resources/accounting/resources/forceResync/client/Client.ts index a66037b5f..e84e2a37e 100644 --- a/src/api/resources/accounting/resources/forceResync/client/Client.ts +++ b/src/api/resources/accounting/resources/forceResync/client/Client.ts @@ -70,8 +70,8 @@ export class ForceResync { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/generalLedgerTransactions/client/Client.ts b/src/api/resources/accounting/resources/generalLedgerTransactions/client/Client.ts index 6a35743a3..dbe170865 100644 --- a/src/api/resources/accounting/resources/generalLedgerTransactions/client/Client.ts +++ b/src/api/resources/accounting/resources/generalLedgerTransactions/client/Client.ts @@ -149,8 +149,8 @@ export class GeneralLedgerTransactions { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -255,8 +255,8 @@ export class GeneralLedgerTransactions { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/generateKey/client/Client.ts b/src/api/resources/accounting/resources/generateKey/client/Client.ts index 68a8cf6ec..233a031e4 100644 --- a/src/api/resources/accounting/resources/generateKey/client/Client.ts +++ b/src/api/resources/accounting/resources/generateKey/client/Client.ts @@ -75,8 +75,8 @@ export class GenerateKey { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/incomeStatements/client/Client.ts b/src/api/resources/accounting/resources/incomeStatements/client/Client.ts index 40fe21342..cef37a2f1 100644 --- a/src/api/resources/accounting/resources/incomeStatements/client/Client.ts +++ b/src/api/resources/accounting/resources/incomeStatements/client/Client.ts @@ -136,8 +136,8 @@ export class IncomeStatements { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -239,8 +239,8 @@ export class IncomeStatements { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/invoices/client/Client.ts b/src/api/resources/accounting/resources/invoices/client/Client.ts index 3b49174aa..516506a90 100644 --- a/src/api/resources/accounting/resources/invoices/client/Client.ts +++ b/src/api/resources/accounting/resources/invoices/client/Client.ts @@ -187,8 +187,8 @@ export class Invoices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -237,7 +237,8 @@ export class 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). + * 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 {Invoices.RequestOptions} requestOptions - Request-specific configuration. @@ -284,8 +285,8 @@ export class Invoices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -401,8 +402,8 @@ export class Invoices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -500,8 +501,8 @@ export class Invoices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -614,8 +615,8 @@ export class Invoices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -700,8 +701,8 @@ export class Invoices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -782,8 +783,8 @@ export class Invoices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -894,8 +895,8 @@ export class Invoices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/invoices/client/requests/InvoicesListRequest.ts b/src/api/resources/accounting/resources/invoices/client/requests/InvoicesListRequest.ts index 3d0131bdb..224baa750 100644 --- a/src/api/resources/accounting/resources/invoices/client/requests/InvoicesListRequest.ts +++ b/src/api/resources/accounting/resources/invoices/client/requests/InvoicesListRequest.ts @@ -88,19 +88,19 @@ export interface InvoicesListRequest { /** * If provided, will only return Invoices with this status. * - * - `PAID` - PAID - * - `DRAFT` - DRAFT - * - `SUBMITTED` - SUBMITTED - * - `PARTIALLY_PAID` - PARTIALLY_PAID - * - `OPEN` - OPEN - * - `VOID` - VOID + * * `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 + * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE + * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE */ type?: Merge.accounting.InvoicesListRequestType; } diff --git a/src/api/resources/accounting/resources/issues/client/Client.ts b/src/api/resources/accounting/resources/issues/client/Client.ts index e5a95d466..d7aebe279 100644 --- a/src/api/resources/accounting/resources/issues/client/Client.ts +++ b/src/api/resources/accounting/resources/issues/client/Client.ts @@ -148,8 +148,8 @@ export class Issues { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -232,8 +232,8 @@ export class Issues { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/issues/client/requests/IssuesListRequest.ts b/src/api/resources/accounting/resources/issues/client/requests/IssuesListRequest.ts index 9e5fac64b..9bedc7b26 100644 --- a/src/api/resources/accounting/resources/issues/client/requests/IssuesListRequest.ts +++ b/src/api/resources/accounting/resources/issues/client/requests/IssuesListRequest.ts @@ -55,8 +55,8 @@ export interface IssuesListRequest { /** * Status of the issue. Options: ('ONGOING', 'RESOLVED') * - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ status?: Merge.accounting.IssuesListRequestStatus; } diff --git a/src/api/resources/accounting/resources/items/client/Client.ts b/src/api/resources/accounting/resources/items/client/Client.ts index 640a3383b..5dd369efa 100644 --- a/src/api/resources/accounting/resources/items/client/Client.ts +++ b/src/api/resources/accounting/resources/items/client/Client.ts @@ -148,8 +148,8 @@ export class Items { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -259,8 +259,8 @@ export class Items { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/journalEntries/client/Client.ts b/src/api/resources/accounting/resources/journalEntries/client/Client.ts index c3e86cead..d43fbcc15 100644 --- a/src/api/resources/accounting/resources/journalEntries/client/Client.ts +++ b/src/api/resources/accounting/resources/journalEntries/client/Client.ts @@ -153,8 +153,8 @@ export class JournalEntries { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -249,8 +249,8 @@ export class JournalEntries { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -361,8 +361,8 @@ export class JournalEntries { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -474,8 +474,8 @@ export class JournalEntries { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -557,8 +557,8 @@ export class JournalEntries { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -669,8 +669,8 @@ export class JournalEntries { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/linkToken/client/Client.ts b/src/api/resources/accounting/resources/linkToken/client/Client.ts index 76f2984ae..95f1fec9b 100644 --- a/src/api/resources/accounting/resources/linkToken/client/Client.ts +++ b/src/api/resources/accounting/resources/linkToken/client/Client.ts @@ -78,8 +78,8 @@ export class LinkToken { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/linkedAccounts/client/Client.ts b/src/api/resources/accounting/resources/linkedAccounts/client/Client.ts index f8c59c2ab..592178954 100644 --- a/src/api/resources/accounting/resources/linkedAccounts/client/Client.ts +++ b/src/api/resources/accounting/resources/linkedAccounts/client/Client.ts @@ -143,8 +143,8 @@ export class LinkedAccounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts b/src/api/resources/accounting/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts index c3536fff2..19e057c1c 100644 --- a/src/api/resources/accounting/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts +++ b/src/api/resources/accounting/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts @@ -12,13 +12,13 @@ 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 + * * `hris` - hris + * * `ats` - ats + * * `accounting` - accounting + * * `ticketing` - ticketing + * * `crm` - crm + * * `mktg` - mktg + * * `filestorage` - filestorage */ category?: Merge.accounting.LinkedAccountsListRequestCategory; /** diff --git a/src/api/resources/accounting/resources/passthrough/client/Client.ts b/src/api/resources/accounting/resources/passthrough/client/Client.ts index 25a18b7fe..65bca76ab 100644 --- a/src/api/resources/accounting/resources/passthrough/client/Client.ts +++ b/src/api/resources/accounting/resources/passthrough/client/Client.ts @@ -76,8 +76,8 @@ export class Passthrough { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/paymentMethods/client/Client.ts b/src/api/resources/accounting/resources/paymentMethods/client/Client.ts index 376e5088b..7340337b6 100644 --- a/src/api/resources/accounting/resources/paymentMethods/client/Client.ts +++ b/src/api/resources/accounting/resources/paymentMethods/client/Client.ts @@ -95,8 +95,8 @@ export class PaymentMethods { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -192,8 +192,8 @@ export class PaymentMethods { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/paymentTerms/client/Client.ts b/src/api/resources/accounting/resources/paymentTerms/client/Client.ts index 8705011ca..6ea4a4d88 100644 --- a/src/api/resources/accounting/resources/paymentTerms/client/Client.ts +++ b/src/api/resources/accounting/resources/paymentTerms/client/Client.ts @@ -99,8 +99,8 @@ export class PaymentTerms { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -200,8 +200,8 @@ export class PaymentTerms { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/payments/client/Client.ts b/src/api/resources/accounting/resources/payments/client/Client.ts index c51b1cb4d..0268d496a 100644 --- a/src/api/resources/accounting/resources/payments/client/Client.ts +++ b/src/api/resources/accounting/resources/payments/client/Client.ts @@ -163,8 +163,8 @@ export class Payments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -259,8 +259,8 @@ export class Payments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -367,8 +367,8 @@ export class Payments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -466,8 +466,8 @@ export class Payments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -580,8 +580,8 @@ export class Payments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -666,8 +666,8 @@ export class Payments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -748,8 +748,8 @@ export class Payments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -860,8 +860,8 @@ export class Payments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/phoneNumbers/client/Client.ts b/src/api/resources/accounting/resources/phoneNumbers/client/Client.ts index d94e9b0b0..02d6d30eb 100644 --- a/src/api/resources/accounting/resources/phoneNumbers/client/Client.ts +++ b/src/api/resources/accounting/resources/phoneNumbers/client/Client.ts @@ -86,8 +86,8 @@ export class PhoneNumbers { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/purchaseOrders/client/Client.ts b/src/api/resources/accounting/resources/purchaseOrders/client/Client.ts index 1bf382259..cb7e4414b 100644 --- a/src/api/resources/accounting/resources/purchaseOrders/client/Client.ts +++ b/src/api/resources/accounting/resources/purchaseOrders/client/Client.ts @@ -163,8 +163,8 @@ export class PurchaseOrders { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -259,8 +259,8 @@ export class PurchaseOrders { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -380,8 +380,8 @@ export class PurchaseOrders { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -493,8 +493,8 @@ export class PurchaseOrders { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -576,8 +576,8 @@ export class PurchaseOrders { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -688,8 +688,8 @@ export class PurchaseOrders { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/regenerateKey/client/Client.ts b/src/api/resources/accounting/resources/regenerateKey/client/Client.ts index 770583a11..90644b957 100644 --- a/src/api/resources/accounting/resources/regenerateKey/client/Client.ts +++ b/src/api/resources/accounting/resources/regenerateKey/client/Client.ts @@ -75,8 +75,8 @@ export class RegenerateKey { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/scopes/client/Client.ts b/src/api/resources/accounting/resources/scopes/client/Client.ts index 7dc4a881a..ee6ac86a6 100644 --- a/src/api/resources/accounting/resources/scopes/client/Client.ts +++ b/src/api/resources/accounting/resources/scopes/client/Client.ts @@ -70,8 +70,8 @@ export class Scopes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -150,8 +150,8 @@ export class Scopes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -258,8 +258,8 @@ export class Scopes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/syncStatus/client/Client.ts b/src/api/resources/accounting/resources/syncStatus/client/Client.ts index 64d2900f4..b7ea1d8a6 100644 --- a/src/api/resources/accounting/resources/syncStatus/client/Client.ts +++ b/src/api/resources/accounting/resources/syncStatus/client/Client.ts @@ -83,8 +83,8 @@ export class SyncStatus { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/taxRates/client/Client.ts b/src/api/resources/accounting/resources/taxRates/client/Client.ts index e61f75744..d86a37ffa 100644 --- a/src/api/resources/accounting/resources/taxRates/client/Client.ts +++ b/src/api/resources/accounting/resources/taxRates/client/Client.ts @@ -141,8 +141,8 @@ export class TaxRates { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -242,8 +242,8 @@ export class TaxRates { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/trackingCategories/client/Client.ts b/src/api/resources/accounting/resources/trackingCategories/client/Client.ts index 8c956df3f..00a0dff94 100644 --- a/src/api/resources/accounting/resources/trackingCategories/client/Client.ts +++ b/src/api/resources/accounting/resources/trackingCategories/client/Client.ts @@ -58,6 +58,7 @@ export class TrackingCategories { requestOptions?: TrackingCategories.RequestOptions, ): Promise> { const { + categoryType, companyId, createdAfter, createdBefore, @@ -73,8 +74,13 @@ export class TrackingCategories { remoteFields, remoteId, showEnumOrigins, + status, } = request; const _queryParams: Record = {}; + if (categoryType != null) { + _queryParams["category_type"] = categoryType; + } + if (companyId != null) { _queryParams["company_id"] = companyId; } @@ -135,6 +141,10 @@ export class TrackingCategories { _queryParams["show_enum_origins"] = showEnumOrigins; } + if (status != null) { + _queryParams["status"] = status; + } + const _response = await (this._options.fetcher ?? core.fetcher)({ url: urlJoin( (await core.Supplier.get(this._options.baseUrl)) ?? @@ -151,8 +161,8 @@ export class TrackingCategories { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -262,8 +272,8 @@ export class TrackingCategories { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/trackingCategories/client/requests/TrackingCategoriesListRequest.ts b/src/api/resources/accounting/resources/trackingCategories/client/requests/TrackingCategoriesListRequest.ts index a3ccff12a..e21d25b2d 100644 --- a/src/api/resources/accounting/resources/trackingCategories/client/requests/TrackingCategoriesListRequest.ts +++ b/src/api/resources/accounting/resources/trackingCategories/client/requests/TrackingCategoriesListRequest.ts @@ -7,6 +7,10 @@ * {} */ export interface TrackingCategoriesListRequest { + /** + * If provided, will only return tracking categories with this type. + */ + categoryType?: string; /** * If provided, will only return tracking categories for this company. */ @@ -67,4 +71,8 @@ export interface TrackingCategoriesListRequest { * 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?: string; } diff --git a/src/api/resources/accounting/resources/transactions/client/Client.ts b/src/api/resources/accounting/resources/transactions/client/Client.ts index 110419a46..94eb04de7 100644 --- a/src/api/resources/accounting/resources/transactions/client/Client.ts +++ b/src/api/resources/accounting/resources/transactions/client/Client.ts @@ -148,8 +148,8 @@ export class Transactions { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -251,8 +251,8 @@ export class Transactions { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/vendorCredits/client/Client.ts b/src/api/resources/accounting/resources/vendorCredits/client/Client.ts index 94e7da8dd..fe7bd2f6a 100644 --- a/src/api/resources/accounting/resources/vendorCredits/client/Client.ts +++ b/src/api/resources/accounting/resources/vendorCredits/client/Client.ts @@ -148,8 +148,8 @@ export class VendorCredits { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -244,8 +244,8 @@ export class VendorCredits { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -350,8 +350,8 @@ export class VendorCredits { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -433,8 +433,8 @@ export class VendorCredits { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/resources/webhookReceivers/client/Client.ts b/src/api/resources/accounting/resources/webhookReceivers/client/Client.ts index fb4c6001d..94a48e5f8 100644 --- a/src/api/resources/accounting/resources/webhookReceivers/client/Client.ts +++ b/src/api/resources/accounting/resources/webhookReceivers/client/Client.ts @@ -70,8 +70,8 @@ export class WebhookReceivers { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -158,8 +158,8 @@ export class WebhookReceivers { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/accounting/types/Account.ts b/src/api/resources/accounting/types/Account.ts index 91f826dba..3e1274ed4 100644 --- a/src/api/resources/accounting/types/Account.ts +++ b/src/api/resources/accounting/types/Account.ts @@ -6,21 +6,17 @@ import * 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 + * * __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 { @@ -38,11 +34,11 @@ export interface Account { /** * The account's broadest grouping. * - * - `ASSET` - ASSET - * - `EQUITY` - EQUITY - * - `EXPENSE` - EXPENSE - * - `LIABILITY` - LIABILITY - * - `REVENUE` - REVENUE + * * `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. */ @@ -50,27 +46,27 @@ export interface Account { /** * 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 + * * `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 + * * `ACTIVE` - ACTIVE + * * `PENDING` - PENDING + * * `INACTIVE` - INACTIVE */ status?: Merge.accounting.AccountStatus; /** The account's current balance. */ @@ -78,312 +74,312 @@ export interface Account { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/AccountAccountType.ts b/src/api/resources/accounting/types/AccountAccountType.ts index 0143733fa..ae9881578 100644 --- a/src/api/resources/accounting/types/AccountAccountType.ts +++ b/src/api/resources/accounting/types/AccountAccountType.ts @@ -7,18 +7,18 @@ import * 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 + * * `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 index 0c1811cf9..92ed797cc 100644 --- a/src/api/resources/accounting/types/AccountAccountTypeEnum.ts +++ b/src/api/resources/accounting/types/AccountAccountTypeEnum.ts @@ -3,19 +3,19 @@ */ /** - * - `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 + * * `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 AccountAccountTypeEnum = | "BANK" diff --git a/src/api/resources/accounting/types/AccountClassification.ts b/src/api/resources/accounting/types/AccountClassification.ts index 41856f7b0..4dadb1d9e 100644 --- a/src/api/resources/accounting/types/AccountClassification.ts +++ b/src/api/resources/accounting/types/AccountClassification.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The account's broadest grouping. * - * - `ASSET` - ASSET - * - `EQUITY` - EQUITY - * - `EXPENSE` - EXPENSE - * - `LIABILITY` - LIABILITY - * - `REVENUE` - REVENUE + * * `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 index 4ef0bfed6..041f4d42c 100644 --- a/src/api/resources/accounting/types/AccountCurrency.ts +++ b/src/api/resources/accounting/types/AccountCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/AccountDetailsAndActions.ts b/src/api/resources/accounting/types/AccountDetailsAndActions.ts index 47464a6f1..9f049ddb2 100644 --- a/src/api/resources/accounting/types/AccountDetailsAndActions.ts +++ b/src/api/resources/accounting/types/AccountDetailsAndActions.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/accounting/types/AccountDetailsAndActionsStatusEnum.ts b/src/api/resources/accounting/types/AccountDetailsAndActionsStatusEnum.ts index c0020279f..3a923df0f 100644 --- a/src/api/resources/accounting/types/AccountDetailsAndActionsStatusEnum.ts +++ b/src/api/resources/accounting/types/AccountDetailsAndActionsStatusEnum.ts @@ -3,10 +3,10 @@ */ /** - * - `COMPLETE` - COMPLETE - * - `INCOMPLETE` - INCOMPLETE - * - `RELINK_NEEDED` - RELINK_NEEDED - * - `IDLE` - IDLE + * * `COMPLETE` - COMPLETE + * * `INCOMPLETE` - INCOMPLETE + * * `RELINK_NEEDED` - RELINK_NEEDED + * * `IDLE` - IDLE */ export type AccountDetailsAndActionsStatusEnum = "COMPLETE" | "INCOMPLETE" | "RELINK_NEEDED" | "IDLE"; export const AccountDetailsAndActionsStatusEnum = { diff --git a/src/api/resources/accounting/types/AccountRequest.ts b/src/api/resources/accounting/types/AccountRequest.ts index 758bbac3b..816bad253 100644 --- a/src/api/resources/accounting/types/AccountRequest.ts +++ b/src/api/resources/accounting/types/AccountRequest.ts @@ -6,21 +6,17 @@ import * 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 + * * __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 { @@ -31,11 +27,11 @@ export interface AccountRequest { /** * The account's broadest grouping. * - * - `ASSET` - ASSET - * - `EQUITY` - EQUITY - * - `EXPENSE` - EXPENSE - * - `LIABILITY` - LIABILITY - * - `REVENUE` - REVENUE + * * `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. */ @@ -43,27 +39,27 @@ export interface AccountRequest { /** * 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 + * * `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 + * * `ACTIVE` - ACTIVE + * * `PENDING` - PENDING + * * `INACTIVE` - INACTIVE */ status?: Merge.accounting.AccountRequestStatus; /** The account's current balance. */ @@ -71,312 +67,312 @@ export interface AccountRequest { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/AccountRequestAccountType.ts b/src/api/resources/accounting/types/AccountRequestAccountType.ts index 342a43269..4d3e82c8d 100644 --- a/src/api/resources/accounting/types/AccountRequestAccountType.ts +++ b/src/api/resources/accounting/types/AccountRequestAccountType.ts @@ -7,18 +7,18 @@ import * 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 + * * `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 index 78a526e24..15702a550 100644 --- a/src/api/resources/accounting/types/AccountRequestClassification.ts +++ b/src/api/resources/accounting/types/AccountRequestClassification.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The account's broadest grouping. * - * - `ASSET` - ASSET - * - `EQUITY` - EQUITY - * - `EXPENSE` - EXPENSE - * - `LIABILITY` - LIABILITY - * - `REVENUE` - REVENUE + * * `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 index f92518a82..16a09f6d5 100644 --- a/src/api/resources/accounting/types/AccountRequestCurrency.ts +++ b/src/api/resources/accounting/types/AccountRequestCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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 index 940c65ecf..5bb07737f 100644 --- a/src/api/resources/accounting/types/AccountRequestStatus.ts +++ b/src/api/resources/accounting/types/AccountRequestStatus.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The account's status. * - * - `ACTIVE` - ACTIVE - * - `PENDING` - PENDING - * - `INACTIVE` - INACTIVE + * * `ACTIVE` - ACTIVE + * * `PENDING` - PENDING + * * `INACTIVE` - INACTIVE */ export type AccountRequestStatus = Merge.accounting.AccountStatusEnum | string; diff --git a/src/api/resources/accounting/types/AccountStatus.ts b/src/api/resources/accounting/types/AccountStatus.ts index b214d1bf6..3ecc8481b 100644 --- a/src/api/resources/accounting/types/AccountStatus.ts +++ b/src/api/resources/accounting/types/AccountStatus.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The account's status. * - * - `ACTIVE` - ACTIVE - * - `PENDING` - PENDING - * - `INACTIVE` - INACTIVE + * * `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 index 10e8336f8..d782b6dc0 100644 --- a/src/api/resources/accounting/types/AccountStatusEnum.ts +++ b/src/api/resources/accounting/types/AccountStatusEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `ACTIVE` - ACTIVE - * - `PENDING` - PENDING - * - `INACTIVE` - INACTIVE + * * `ACTIVE` - ACTIVE + * * `PENDING` - PENDING + * * `INACTIVE` - INACTIVE */ export type AccountStatusEnum = "ACTIVE" | "PENDING" | "INACTIVE"; export const AccountStatusEnum = { diff --git a/src/api/resources/accounting/types/AccountingAttachment.ts b/src/api/resources/accounting/types/AccountingAttachment.ts index 7a3427579..6b2270f02 100644 --- a/src/api/resources/accounting/types/AccountingAttachment.ts +++ b/src/api/resources/accounting/types/AccountingAttachment.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/accounting/types/AccountingAttachmentRequest.ts b/src/api/resources/accounting/types/AccountingAttachmentRequest.ts index 5bbb6ab1e..9e3637405 100644 --- a/src/api/resources/accounting/types/AccountingAttachmentRequest.ts +++ b/src/api/resources/accounting/types/AccountingAttachmentRequest.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/accounting/types/AccountingPeriod.ts b/src/api/resources/accounting/types/AccountingPeriod.ts index 4ca3afd90..fcc180145 100644 --- a/src/api/resources/accounting/types/AccountingPeriod.ts +++ b/src/api/resources/accounting/types/AccountingPeriod.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/accounting/types/AccountingPhoneNumber.ts b/src/api/resources/accounting/types/AccountingPhoneNumber.ts index e1d28a2a4..794c4d662 100644 --- a/src/api/resources/accounting/types/AccountingPhoneNumber.ts +++ b/src/api/resources/accounting/types/AccountingPhoneNumber.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/accounting/types/AccountingPhoneNumberRequest.ts b/src/api/resources/accounting/types/AccountingPhoneNumberRequest.ts index c0880c4e9..439f11840 100644 --- a/src/api/resources/accounting/types/AccountingPhoneNumberRequest.ts +++ b/src/api/resources/accounting/types/AccountingPhoneNumberRequest.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/accounting/types/Address.ts b/src/api/resources/accounting/types/Address.ts index a2109a462..a3a54d045 100644 --- a/src/api/resources/accounting/types/Address.ts +++ b/src/api/resources/accounting/types/Address.ts @@ -6,13 +6,10 @@ import * 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 { @@ -23,8 +20,8 @@ export interface Address { /** * The address type. * - * - `BILLING` - BILLING - * - `SHIPPING` - SHIPPING + * * `BILLING` - BILLING + * * `SHIPPING` - SHIPPING */ type?: Merge.accounting.AddressType; /** Line 1 of the address's street. */ @@ -39,255 +36,255 @@ export interface Address { /** * 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 + * * `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. */ diff --git a/src/api/resources/accounting/types/AddressCountry.ts b/src/api/resources/accounting/types/AddressCountry.ts index 3a7c81555..eaff86d2f 100644 --- a/src/api/resources/accounting/types/AddressCountry.ts +++ b/src/api/resources/accounting/types/AddressCountry.ts @@ -7,254 +7,254 @@ import * 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 + * * `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 index 5825a5032..ed3995a17 100644 --- a/src/api/resources/accounting/types/AddressRequest.ts +++ b/src/api/resources/accounting/types/AddressRequest.ts @@ -6,21 +6,18 @@ import * 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 + * * `BILLING` - BILLING + * * `SHIPPING` - SHIPPING */ type?: Merge.accounting.AddressRequestType; /** Line 1 of the address's street. */ @@ -34,255 +31,255 @@ export interface AddressRequest { /** * 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 + * * `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. */ diff --git a/src/api/resources/accounting/types/AddressRequestCountry.ts b/src/api/resources/accounting/types/AddressRequestCountry.ts index aa33d30e9..8d0839d7d 100644 --- a/src/api/resources/accounting/types/AddressRequestCountry.ts +++ b/src/api/resources/accounting/types/AddressRequestCountry.ts @@ -7,254 +7,254 @@ import * 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 + * * `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 index 27325d47c..aaff10167 100644 --- a/src/api/resources/accounting/types/AddressRequestType.ts +++ b/src/api/resources/accounting/types/AddressRequestType.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The address type. * - * - `BILLING` - BILLING - * - `SHIPPING` - SHIPPING + * * `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 index eb826068c..271e19480 100644 --- a/src/api/resources/accounting/types/AddressType.ts +++ b/src/api/resources/accounting/types/AddressType.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The address type. * - * - `BILLING` - BILLING - * - `SHIPPING` - SHIPPING + * * `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 index 4f3d78a4f..532a0f60b 100644 --- a/src/api/resources/accounting/types/AddressTypeEnum.ts +++ b/src/api/resources/accounting/types/AddressTypeEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `BILLING` - BILLING - * - `SHIPPING` - SHIPPING + * * `BILLING` - BILLING + * * `SHIPPING` - SHIPPING */ export type AddressTypeEnum = "BILLING" | "SHIPPING"; export const AddressTypeEnum = { diff --git a/src/api/resources/accounting/types/AsyncPostTaskStatusEnum.ts b/src/api/resources/accounting/types/AsyncPostTaskStatusEnum.ts index 533f8dc83..87e9143fb 100644 --- a/src/api/resources/accounting/types/AsyncPostTaskStatusEnum.ts +++ b/src/api/resources/accounting/types/AsyncPostTaskStatusEnum.ts @@ -3,10 +3,10 @@ */ /** - * - `QUEUED` - QUEUED - * - `IN_PROGRESS` - IN_PROGRESS - * - `COMPLETED` - COMPLETED - * - `FAILURE` - FAILURE + * * `QUEUED` - QUEUED + * * `IN_PROGRESS` - IN_PROGRESS + * * `COMPLETED` - COMPLETED + * * `FAILURE` - FAILURE */ export type AsyncPostTaskStatusEnum = "QUEUED" | "IN_PROGRESS" | "COMPLETED" | "FAILURE"; export const AsyncPostTaskStatusEnum = { diff --git a/src/api/resources/accounting/types/AuditLogEvent.ts b/src/api/resources/accounting/types/AuditLogEvent.ts index 7c207a7cd..86989c419 100644 --- a/src/api/resources/accounting/types/AuditLogEvent.ts +++ b/src/api/resources/accounting/types/AuditLogEvent.ts @@ -13,60 +13,60 @@ export interface AuditLogEvent { /** * 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 + * * `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 - * - `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 + * * `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 + * * `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; diff --git a/src/api/resources/accounting/types/AuditLogEventEventType.ts b/src/api/resources/accounting/types/AuditLogEventEventType.ts index a7b3f7e5c..217799336 100644 --- a/src/api/resources/accounting/types/AuditLogEventEventType.ts +++ b/src/api/resources/accounting/types/AuditLogEventEventType.ts @@ -7,47 +7,47 @@ import * 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 - * - `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 + * * `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 + * * `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 index 405b73324..51e894f19 100644 --- a/src/api/resources/accounting/types/AuditLogEventRole.ts +++ b/src/api/resources/accounting/types/AuditLogEventRole.ts @@ -7,11 +7,11 @@ import * 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 + * * `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 index c6bf7b339..49d54b6ed 100644 --- a/src/api/resources/accounting/types/AvailableActions.ts +++ b/src/api/resources/accounting/types/AvailableActions.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/accounting/types/BalanceSheet.ts b/src/api/resources/accounting/types/BalanceSheet.ts index 41003e632..468720e64 100644 --- a/src/api/resources/accounting/types/BalanceSheet.ts +++ b/src/api/resources/accounting/types/BalanceSheet.ts @@ -6,13 +6,10 @@ import * 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 { @@ -28,312 +25,312 @@ export interface BalanceSheet { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/BalanceSheetCurrency.ts b/src/api/resources/accounting/types/BalanceSheetCurrency.ts index b65d46305..da6b4b5ce 100644 --- a/src/api/resources/accounting/types/BalanceSheetCurrency.ts +++ b/src/api/resources/accounting/types/BalanceSheetCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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 index 684357a81..29de91465 100644 --- a/src/api/resources/accounting/types/BankFeedAccount.ts +++ b/src/api/resources/accounting/types/BankFeedAccount.ts @@ -6,13 +6,10 @@ import * 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 { @@ -36,319 +33,319 @@ export interface BankFeedAccount { /** * 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) + * * `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 + * * `ACTIVE` - ACTIVE + * * `INACTIVE` - INACTIVE */ feedStatus?: Merge.accounting.BankFeedAccountFeedStatus; /** The start date of the bank feed’s transactions. */ @@ -358,8 +355,8 @@ export interface BankFeedAccount { /** * The type of the account. * - * - `BANK` - BANK - * - `CREDIT_CARD` - CREDIT_CARD + * * `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/). */ diff --git a/src/api/resources/accounting/types/BankFeedAccountAccountType.ts b/src/api/resources/accounting/types/BankFeedAccountAccountType.ts index 61c627fe4..0407c0dbb 100644 --- a/src/api/resources/accounting/types/BankFeedAccountAccountType.ts +++ b/src/api/resources/accounting/types/BankFeedAccountAccountType.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The type of the account. * - * - `BANK` - BANK - * - `CREDIT_CARD` - CREDIT_CARD + * * `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 index d9e3c04b8..b13eb7075 100644 --- a/src/api/resources/accounting/types/BankFeedAccountAccountTypeEnum.ts +++ b/src/api/resources/accounting/types/BankFeedAccountAccountTypeEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `BANK` - BANK - * - `CREDIT_CARD` - CREDIT_CARD + * * `BANK` - BANK + * * `CREDIT_CARD` - CREDIT_CARD */ export type BankFeedAccountAccountTypeEnum = "BANK" | "CREDIT_CARD"; export const BankFeedAccountAccountTypeEnum = { diff --git a/src/api/resources/accounting/types/BankFeedAccountCurrency.ts b/src/api/resources/accounting/types/BankFeedAccountCurrency.ts index f1555a5f4..2f5c795ad 100644 --- a/src/api/resources/accounting/types/BankFeedAccountCurrency.ts +++ b/src/api/resources/accounting/types/BankFeedAccountCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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 index 2914805d4..fa809a8a6 100644 --- a/src/api/resources/accounting/types/BankFeedAccountFeedStatus.ts +++ b/src/api/resources/accounting/types/BankFeedAccountFeedStatus.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The status of the bank feed. * - * - `ACTIVE` - ACTIVE - * - `INACTIVE` - INACTIVE + * * `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 index 8c770d260..32dde1909 100644 --- a/src/api/resources/accounting/types/BankFeedAccountRequest.ts +++ b/src/api/resources/accounting/types/BankFeedAccountRequest.ts @@ -6,13 +6,10 @@ import * 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 { @@ -29,319 +26,319 @@ export interface BankFeedAccountRequest { /** * 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) + * * `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 + * * `ACTIVE` - ACTIVE + * * `INACTIVE` - INACTIVE */ feedStatus?: Merge.accounting.BankFeedAccountRequestFeedStatus; /** The start date of the bank feed’s transactions. */ @@ -351,8 +348,8 @@ export interface BankFeedAccountRequest { /** * The type of the account. * - * - `BANK` - BANK - * - `CREDIT_CARD` - CREDIT_CARD + * * `BANK` - BANK + * * `CREDIT_CARD` - CREDIT_CARD */ accountType?: Merge.accounting.BankFeedAccountRequestAccountType; integrationParams?: Record; diff --git a/src/api/resources/accounting/types/BankFeedAccountRequestAccountType.ts b/src/api/resources/accounting/types/BankFeedAccountRequestAccountType.ts index a99f4b60d..f3f14d612 100644 --- a/src/api/resources/accounting/types/BankFeedAccountRequestAccountType.ts +++ b/src/api/resources/accounting/types/BankFeedAccountRequestAccountType.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The type of the account. * - * - `BANK` - BANK - * - `CREDIT_CARD` - CREDIT_CARD + * * `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 index 8f2ef628d..e973bdc0c 100644 --- a/src/api/resources/accounting/types/BankFeedAccountRequestCurrency.ts +++ b/src/api/resources/accounting/types/BankFeedAccountRequestCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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 index bc0ea8d3f..6bac54fa4 100644 --- a/src/api/resources/accounting/types/BankFeedAccountRequestFeedStatus.ts +++ b/src/api/resources/accounting/types/BankFeedAccountRequestFeedStatus.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The status of the bank feed. * - * - `ACTIVE` - ACTIVE - * - `INACTIVE` - INACTIVE + * * `ACTIVE` - ACTIVE + * * `INACTIVE` - INACTIVE */ export type BankFeedAccountRequestFeedStatus = Merge.accounting.FeedStatusEnum | string; diff --git a/src/api/resources/accounting/types/BankFeedTransaction.ts b/src/api/resources/accounting/types/BankFeedTransaction.ts index 4a9f681a9..1254d26db 100644 --- a/src/api/resources/accounting/types/BankFeedTransaction.ts +++ b/src/api/resources/accounting/types/BankFeedTransaction.ts @@ -6,13 +6,10 @@ import * 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 { @@ -40,8 +37,8 @@ export interface BankFeedTransaction { /** * If the transaction is of type debit or credit. * - * - `CREDIT` - CREDIT - * - `DEBIT` - DEBIT + * * `CREDIT` - CREDIT + * * `DEBIT` - DEBIT */ creditOrDebit?: Merge.accounting.BankFeedTransactionCreditOrDebit; /** The customer’s identifier for the transaction. */ diff --git a/src/api/resources/accounting/types/BankFeedTransactionCreditOrDebit.ts b/src/api/resources/accounting/types/BankFeedTransactionCreditOrDebit.ts index 98493c3ec..6ee369e96 100644 --- a/src/api/resources/accounting/types/BankFeedTransactionCreditOrDebit.ts +++ b/src/api/resources/accounting/types/BankFeedTransactionCreditOrDebit.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * If the transaction is of type debit or credit. * - * - `CREDIT` - CREDIT - * - `DEBIT` - DEBIT + * * `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 index f5cfc9e51..cec86a3c2 100644 --- a/src/api/resources/accounting/types/BankFeedTransactionRequestRequest.ts +++ b/src/api/resources/accounting/types/BankFeedTransactionRequestRequest.ts @@ -6,13 +6,10 @@ import * 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 { @@ -33,8 +30,8 @@ export interface BankFeedTransactionRequestRequest { /** * If the transaction is of type debit or credit. * - * - `CREDIT` - CREDIT - * - `DEBIT` - DEBIT + * * `CREDIT` - CREDIT + * * `DEBIT` - DEBIT */ creditOrDebit?: Merge.accounting.BankFeedTransactionRequestRequestCreditOrDebit; /** The customer’s identifier for the transaction. */ diff --git a/src/api/resources/accounting/types/BankFeedTransactionRequestRequestCreditOrDebit.ts b/src/api/resources/accounting/types/BankFeedTransactionRequestRequestCreditOrDebit.ts index dbf618dec..ead80e779 100644 --- a/src/api/resources/accounting/types/BankFeedTransactionRequestRequestCreditOrDebit.ts +++ b/src/api/resources/accounting/types/BankFeedTransactionRequestRequestCreditOrDebit.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * If the transaction is of type debit or credit. * - * - `CREDIT` - CREDIT - * - `DEBIT` - DEBIT + * * `CREDIT` - CREDIT + * * `DEBIT` - DEBIT */ export type BankFeedTransactionRequestRequestCreditOrDebit = Merge.accounting.CreditOrDebitEnum | string; diff --git a/src/api/resources/accounting/types/CashFlowStatement.ts b/src/api/resources/accounting/types/CashFlowStatement.ts index cd52b306b..6bfe234c3 100644 --- a/src/api/resources/accounting/types/CashFlowStatement.ts +++ b/src/api/resources/accounting/types/CashFlowStatement.ts @@ -6,13 +6,10 @@ import * 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 { @@ -28,312 +25,312 @@ export interface CashFlowStatement { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/CashFlowStatementCurrency.ts b/src/api/resources/accounting/types/CashFlowStatementCurrency.ts index be1d30ac2..a42cd1034 100644 --- a/src/api/resources/accounting/types/CashFlowStatementCurrency.ts +++ b/src/api/resources/accounting/types/CashFlowStatementCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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 index a5eb57230..ca8bf9e21 100644 --- a/src/api/resources/accounting/types/CategoriesEnum.ts +++ b/src/api/resources/accounting/types/CategoriesEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `hris` - hris - * - `ats` - ats - * - `accounting` - accounting - * - `ticketing` - ticketing - * - `crm` - crm - * - `mktg` - mktg - * - `filestorage` - filestorage + * * `hris` - hris + * * `ats` - ats + * * `accounting` - accounting + * * `ticketing` - ticketing + * * `crm` - crm + * * `mktg` - mktg + * * `filestorage` - filestorage */ export type CategoriesEnum = "hris" | "ats" | "accounting" | "ticketing" | "crm" | "mktg" | "filestorage"; export const CategoriesEnum = { diff --git a/src/api/resources/accounting/types/CategoryEnum.ts b/src/api/resources/accounting/types/CategoryEnum.ts index 6d3d6d6ae..94af662f7 100644 --- a/src/api/resources/accounting/types/CategoryEnum.ts +++ b/src/api/resources/accounting/types/CategoryEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `hris` - hris - * - `ats` - ats - * - `accounting` - accounting - * - `ticketing` - ticketing - * - `crm` - crm - * - `mktg` - mktg - * - `filestorage` - filestorage + * * `hris` - hris + * * `ats` - ats + * * `accounting` - accounting + * * `ticketing` - ticketing + * * `crm` - crm + * * `mktg` - mktg + * * `filestorage` - filestorage */ export type CategoryEnum = "hris" | "ats" | "accounting" | "ticketing" | "crm" | "mktg" | "filestorage"; export const CategoryEnum = { diff --git a/src/api/resources/accounting/types/CategoryTypeEnum.ts b/src/api/resources/accounting/types/CategoryTypeEnum.ts index 1033156b2..7983b9d54 100644 --- a/src/api/resources/accounting/types/CategoryTypeEnum.ts +++ b/src/api/resources/accounting/types/CategoryTypeEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `CLASS` - CLASS - * - `DEPARTMENT` - DEPARTMENT + * * `CLASS` - CLASS + * * `DEPARTMENT` - DEPARTMENT */ export type CategoryTypeEnum = "CLASS" | "DEPARTMENT"; export const CategoryTypeEnum = { diff --git a/src/api/resources/accounting/types/ClassificationEnum.ts b/src/api/resources/accounting/types/ClassificationEnum.ts index 32c1ebecb..fc64e1678 100644 --- a/src/api/resources/accounting/types/ClassificationEnum.ts +++ b/src/api/resources/accounting/types/ClassificationEnum.ts @@ -3,11 +3,11 @@ */ /** - * - `ASSET` - ASSET - * - `EQUITY` - EQUITY - * - `EXPENSE` - EXPENSE - * - `LIABILITY` - LIABILITY - * - `REVENUE` - REVENUE + * * `ASSET` - ASSET + * * `EQUITY` - EQUITY + * * `EXPENSE` - EXPENSE + * * `LIABILITY` - LIABILITY + * * `REVENUE` - REVENUE */ export type ClassificationEnum = "ASSET" | "EQUITY" | "EXPENSE" | "LIABILITY" | "REVENUE"; export const ClassificationEnum = { diff --git a/src/api/resources/accounting/types/CompanyInfo.ts b/src/api/resources/accounting/types/CompanyInfo.ts index ff849834c..0c0515ea3 100644 --- a/src/api/resources/accounting/types/CompanyInfo.ts +++ b/src/api/resources/accounting/types/CompanyInfo.ts @@ -6,13 +6,10 @@ import * 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 { @@ -36,312 +33,312 @@ export interface CompanyInfo { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/CompanyInfoCurrency.ts b/src/api/resources/accounting/types/CompanyInfoCurrency.ts index fee60e2d8..e771ec819 100644 --- a/src/api/resources/accounting/types/CompanyInfoCurrency.ts +++ b/src/api/resources/accounting/types/CompanyInfoCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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 index 76150b219..56e1d2669 100644 --- a/src/api/resources/accounting/types/ComponentTypeEnum.ts +++ b/src/api/resources/accounting/types/ComponentTypeEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `SALES` - SALES - * - `PURCHASE` - PURCHASE + * * `SALES` - SALES + * * `PURCHASE` - PURCHASE */ export type ComponentTypeEnum = "SALES" | "PURCHASE"; export const ComponentTypeEnum = { diff --git a/src/api/resources/accounting/types/Contact.ts b/src/api/resources/accounting/types/Contact.ts index dcad4dcb6..943382f84 100644 --- a/src/api/resources/accounting/types/Contact.ts +++ b/src/api/resources/accounting/types/Contact.ts @@ -6,16 +6,12 @@ import * 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. + * * 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 { @@ -39,8 +35,8 @@ export interface Contact { /** * The contact's status * - * - `ACTIVE` - ACTIVE - * - `ARCHIVED` - ARCHIVED + * * `ACTIVE` - ACTIVE + * * `ARCHIVED` - ARCHIVED */ status?: Merge.accounting.ContactStatus; /** The currency the contact's transactions are in. */ diff --git a/src/api/resources/accounting/types/ContactRequest.ts b/src/api/resources/accounting/types/ContactRequest.ts index 38cb536c8..a4d3e7fda 100644 --- a/src/api/resources/accounting/types/ContactRequest.ts +++ b/src/api/resources/accounting/types/ContactRequest.ts @@ -6,16 +6,12 @@ import * 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. + * * 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 { @@ -32,8 +28,8 @@ export interface ContactRequest { /** * The contact's status * - * - `ACTIVE` - ACTIVE - * - `ARCHIVED` - ARCHIVED + * * `ACTIVE` - ACTIVE + * * `ARCHIVED` - ARCHIVED */ status?: Merge.accounting.ContactRequestStatus; /** The currency the contact's transactions are in. */ diff --git a/src/api/resources/accounting/types/ContactRequestStatus.ts b/src/api/resources/accounting/types/ContactRequestStatus.ts index 6742e3b48..011517a49 100644 --- a/src/api/resources/accounting/types/ContactRequestStatus.ts +++ b/src/api/resources/accounting/types/ContactRequestStatus.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The contact's status * - * - `ACTIVE` - ACTIVE - * - `ARCHIVED` - ARCHIVED + * * `ACTIVE` - ACTIVE + * * `ARCHIVED` - ARCHIVED */ export type ContactRequestStatus = Merge.accounting.Status7D1Enum | string; diff --git a/src/api/resources/accounting/types/ContactStatus.ts b/src/api/resources/accounting/types/ContactStatus.ts index 1ecbb50ce..8aa838548 100644 --- a/src/api/resources/accounting/types/ContactStatus.ts +++ b/src/api/resources/accounting/types/ContactStatus.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The contact's status * - * - `ACTIVE` - ACTIVE - * - `ARCHIVED` - ARCHIVED + * * `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 index 46d4e560b..ae6e8796c 100644 --- a/src/api/resources/accounting/types/CountryEnum.ts +++ b/src/api/resources/accounting/types/CountryEnum.ts @@ -3,255 +3,255 @@ */ /** - * - `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 + * * `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 CountryEnum = | "AF" diff --git a/src/api/resources/accounting/types/CreditNote.ts b/src/api/resources/accounting/types/CreditNote.ts index 3d40b1de9..a3d7b46b5 100644 --- a/src/api/resources/accounting/types/CreditNote.ts +++ b/src/api/resources/accounting/types/CreditNote.ts @@ -6,13 +6,10 @@ import * 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. + * 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 { @@ -28,9 +25,9 @@ export interface CreditNote { /** * The credit note's status. * - * - `SUBMITTED` - SUBMITTED - * - `AUTHORIZED` - AUTHORIZED - * - `PAID` - PAID + * * `SUBMITTED` - SUBMITTED + * * `AUTHORIZED` - AUTHORIZED + * * `PAID` - PAID */ status?: Merge.accounting.CreditNoteStatus; /** The credit note's number. */ @@ -52,312 +49,312 @@ export interface CreditNote { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNote.ts b/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNote.ts index c5e6b357c..7bfca588b 100644 --- a/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNote.ts +++ b/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNote.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNoteRequest.ts b/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNoteRequest.ts index 9fe407df4..2c96ea7da 100644 --- a/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNoteRequest.ts +++ b/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNoteRequest.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/accounting/types/CreditNoteApplyLineForInvoice.ts b/src/api/resources/accounting/types/CreditNoteApplyLineForInvoice.ts index d9a219e0c..629f4e27d 100644 --- a/src/api/resources/accounting/types/CreditNoteApplyLineForInvoice.ts +++ b/src/api/resources/accounting/types/CreditNoteApplyLineForInvoice.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/accounting/types/CreditNoteCurrency.ts b/src/api/resources/accounting/types/CreditNoteCurrency.ts index c1af7359c..6af3e19da 100644 --- a/src/api/resources/accounting/types/CreditNoteCurrency.ts +++ b/src/api/resources/accounting/types/CreditNoteCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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 index a9f3f6b2e..53092055e 100644 --- a/src/api/resources/accounting/types/CreditNoteLineItem.ts +++ b/src/api/resources/accounting/types/CreditNoteLineItem.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/accounting/types/CreditNoteLineItemRequest.ts b/src/api/resources/accounting/types/CreditNoteLineItemRequest.ts index ea3fdaf78..b1e5fe9a6 100644 --- a/src/api/resources/accounting/types/CreditNoteLineItemRequest.ts +++ b/src/api/resources/accounting/types/CreditNoteLineItemRequest.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/accounting/types/CreditNoteRequest.ts b/src/api/resources/accounting/types/CreditNoteRequest.ts index b0632d989..dac764594 100644 --- a/src/api/resources/accounting/types/CreditNoteRequest.ts +++ b/src/api/resources/accounting/types/CreditNoteRequest.ts @@ -6,13 +6,10 @@ import * 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. + * 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 { @@ -21,9 +18,9 @@ export interface CreditNoteRequest { /** * The credit note's status. * - * - `SUBMITTED` - SUBMITTED - * - `AUTHORIZED` - AUTHORIZED - * - `PAID` - PAID + * * `SUBMITTED` - SUBMITTED + * * `AUTHORIZED` - AUTHORIZED + * * `PAID` - PAID */ status?: Merge.accounting.CreditNoteRequestStatus; /** The credit note's number. */ @@ -45,312 +42,312 @@ export interface CreditNoteRequest { /** * 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) + * * `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 */ diff --git a/src/api/resources/accounting/types/CreditNoteRequestCurrency.ts b/src/api/resources/accounting/types/CreditNoteRequestCurrency.ts index 723e2b51d..8a91e7903 100644 --- a/src/api/resources/accounting/types/CreditNoteRequestCurrency.ts +++ b/src/api/resources/accounting/types/CreditNoteRequestCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/CreditNoteRequestStatus.ts b/src/api/resources/accounting/types/CreditNoteRequestStatus.ts index 4d03c3981..833c4016f 100644 --- a/src/api/resources/accounting/types/CreditNoteRequestStatus.ts +++ b/src/api/resources/accounting/types/CreditNoteRequestStatus.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The credit note's status. * - * - `SUBMITTED` - SUBMITTED - * - `AUTHORIZED` - AUTHORIZED - * - `PAID` - PAID + * * `SUBMITTED` - SUBMITTED + * * `AUTHORIZED` - AUTHORIZED + * * `PAID` - PAID */ export type CreditNoteRequestStatus = Merge.accounting.CreditNoteStatusEnum | string; diff --git a/src/api/resources/accounting/types/CreditNoteStatus.ts b/src/api/resources/accounting/types/CreditNoteStatus.ts index 50f2b3fea..e0fbaa44f 100644 --- a/src/api/resources/accounting/types/CreditNoteStatus.ts +++ b/src/api/resources/accounting/types/CreditNoteStatus.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The credit note's status. * - * - `SUBMITTED` - SUBMITTED - * - `AUTHORIZED` - AUTHORIZED - * - `PAID` - PAID + * * `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 index 7b5581204..6e80f8b5f 100644 --- a/src/api/resources/accounting/types/CreditNoteStatusEnum.ts +++ b/src/api/resources/accounting/types/CreditNoteStatusEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `SUBMITTED` - SUBMITTED - * - `AUTHORIZED` - AUTHORIZED - * - `PAID` - PAID + * * `SUBMITTED` - SUBMITTED + * * `AUTHORIZED` - AUTHORIZED + * * `PAID` - PAID */ export type CreditNoteStatusEnum = "SUBMITTED" | "AUTHORIZED" | "PAID"; export const CreditNoteStatusEnum = { diff --git a/src/api/resources/accounting/types/CreditOrDebitEnum.ts b/src/api/resources/accounting/types/CreditOrDebitEnum.ts index 3644b27e2..7a9076f3b 100644 --- a/src/api/resources/accounting/types/CreditOrDebitEnum.ts +++ b/src/api/resources/accounting/types/CreditOrDebitEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `CREDIT` - CREDIT - * - `DEBIT` - DEBIT + * * `CREDIT` - CREDIT + * * `DEBIT` - DEBIT */ export type CreditOrDebitEnum = "CREDIT" | "DEBIT"; export const CreditOrDebitEnum = { diff --git a/src/api/resources/accounting/types/DataPassthroughRequest.ts b/src/api/resources/accounting/types/DataPassthroughRequest.ts index 6acbb6272..8514078ee 100644 --- a/src/api/resources/accounting/types/DataPassthroughRequest.ts +++ b/src/api/resources/accounting/types/DataPassthroughRequest.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/accounting/types/Employee.ts b/src/api/resources/accounting/types/Employee.ts index 31c561200..647a8eb7f 100644 --- a/src/api/resources/accounting/types/Employee.ts +++ b/src/api/resources/accounting/types/Employee.ts @@ -6,16 +6,12 @@ import * 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` + * * 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 { @@ -41,8 +37,8 @@ export interface Employee { /** * The employee's status in the accounting system. * - * - `ACTIVE` - ACTIVE - * - `INACTIVE` - INACTIVE + * * `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/). */ diff --git a/src/api/resources/accounting/types/EmployeeCompany.ts b/src/api/resources/accounting/types/EmployeeCompany.ts index 637291b59..1edb92089 100644 --- a/src/api/resources/accounting/types/EmployeeCompany.ts +++ b/src/api/resources/accounting/types/EmployeeCompany.ts @@ -2,7 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ +import * as Merge from "../../../index"; + /** * The subsidiary that the employee belongs to. */ -export type EmployeeCompany = string | unknown; +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 index 45e78415e..7dfe4475e 100644 --- a/src/api/resources/accounting/types/EmployeeStatus.ts +++ b/src/api/resources/accounting/types/EmployeeStatus.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The employee's status in the accounting system. * - * - `ACTIVE` - ACTIVE - * - `INACTIVE` - INACTIVE + * * `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 index 24418b130..62022883a 100644 --- a/src/api/resources/accounting/types/EnabledActionsEnum.ts +++ b/src/api/resources/accounting/types/EnabledActionsEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `READ` - READ - * - `WRITE` - WRITE + * * `READ` - READ + * * `WRITE` - WRITE */ export type EnabledActionsEnum = "READ" | "WRITE"; export const EnabledActionsEnum = { diff --git a/src/api/resources/accounting/types/EncodingEnum.ts b/src/api/resources/accounting/types/EncodingEnum.ts index a828347f8..4dfc82b61 100644 --- a/src/api/resources/accounting/types/EncodingEnum.ts +++ b/src/api/resources/accounting/types/EncodingEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `RAW` - RAW - * - `BASE64` - BASE64 - * - `GZIP_BASE64` - GZIP_BASE64 + * * `RAW` - RAW + * * `BASE64` - BASE64 + * * `GZIP_BASE64` - GZIP_BASE64 */ export type EncodingEnum = "RAW" | "BASE64" | "GZIP_BASE64"; export const EncodingEnum = { diff --git a/src/api/resources/accounting/types/EventTypeEnum.ts b/src/api/resources/accounting/types/EventTypeEnum.ts index 08d0f1ce3..316d8531b 100644 --- a/src/api/resources/accounting/types/EventTypeEnum.ts +++ b/src/api/resources/accounting/types/EventTypeEnum.ts @@ -3,48 +3,48 @@ */ /** - * - `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 - * - `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 + * * `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 + * * `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 EventTypeEnum = | "CREATED_REMOTE_PRODUCTION_API_KEY" diff --git a/src/api/resources/accounting/types/Expense.ts b/src/api/resources/accounting/types/Expense.ts index 7a7249c26..3bac11c98 100644 --- a/src/api/resources/accounting/types/Expense.ts +++ b/src/api/resources/accounting/types/Expense.ts @@ -6,15 +6,12 @@ import * 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 { @@ -42,312 +39,312 @@ export interface Expense { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/ExpenseCurrency.ts b/src/api/resources/accounting/types/ExpenseCurrency.ts index 620bbc752..9dd1ee0b5 100644 --- a/src/api/resources/accounting/types/ExpenseCurrency.ts +++ b/src/api/resources/accounting/types/ExpenseCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/ExpenseLine.ts b/src/api/resources/accounting/types/ExpenseLine.ts index 1dc96a482..fbab01583 100644 --- a/src/api/resources/accounting/types/ExpenseLine.ts +++ b/src/api/resources/accounting/types/ExpenseLine.ts @@ -6,13 +6,10 @@ import * 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 { @@ -37,312 +34,312 @@ export interface ExpenseLine { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/ExpenseLineCurrency.ts b/src/api/resources/accounting/types/ExpenseLineCurrency.ts index c564245a0..d9be7d3a6 100644 --- a/src/api/resources/accounting/types/ExpenseLineCurrency.ts +++ b/src/api/resources/accounting/types/ExpenseLineCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/ExpenseLineRequest.ts b/src/api/resources/accounting/types/ExpenseLineRequest.ts index 1b3d6732a..f38a9ed4a 100644 --- a/src/api/resources/accounting/types/ExpenseLineRequest.ts +++ b/src/api/resources/accounting/types/ExpenseLineRequest.ts @@ -6,13 +6,10 @@ import * 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 { @@ -32,312 +29,312 @@ export interface ExpenseLineRequest { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/ExpenseLineRequestCurrency.ts b/src/api/resources/accounting/types/ExpenseLineRequestCurrency.ts index 77d6bc20b..4ac74acaf 100644 --- a/src/api/resources/accounting/types/ExpenseLineRequestCurrency.ts +++ b/src/api/resources/accounting/types/ExpenseLineRequestCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/ExpenseRequest.ts b/src/api/resources/accounting/types/ExpenseRequest.ts index 91aad0191..d72ccb129 100644 --- a/src/api/resources/accounting/types/ExpenseRequest.ts +++ b/src/api/resources/accounting/types/ExpenseRequest.ts @@ -6,15 +6,12 @@ import * 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 { @@ -33,312 +30,312 @@ export interface ExpenseRequest { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/ExpenseRequestCurrency.ts b/src/api/resources/accounting/types/ExpenseRequestCurrency.ts index e864577f2..9423d80e5 100644 --- a/src/api/resources/accounting/types/ExpenseRequestCurrency.ts +++ b/src/api/resources/accounting/types/ExpenseRequestCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/FeedStatusEnum.ts b/src/api/resources/accounting/types/FeedStatusEnum.ts index 0af1ca03b..f4593c6be 100644 --- a/src/api/resources/accounting/types/FeedStatusEnum.ts +++ b/src/api/resources/accounting/types/FeedStatusEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `ACTIVE` - ACTIVE - * - `INACTIVE` - INACTIVE + * * `ACTIVE` - ACTIVE + * * `INACTIVE` - INACTIVE */ export type FeedStatusEnum = "ACTIVE" | "INACTIVE"; export const FeedStatusEnum = { diff --git a/src/api/resources/accounting/types/FieldFormatEnum.ts b/src/api/resources/accounting/types/FieldFormatEnum.ts index 351c87478..eb84a233b 100644 --- a/src/api/resources/accounting/types/FieldFormatEnum.ts +++ b/src/api/resources/accounting/types/FieldFormatEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `string` - string - * - `number` - number - * - `date` - date - * - `datetime` - datetime - * - `bool` - bool - * - `list` - list + * * `string` - string + * * `number` - number + * * `date` - date + * * `datetime` - datetime + * * `bool` - bool + * * `list` - list */ export type FieldFormatEnum = "string" | "number" | "date" | "datetime" | "bool" | "list"; export const FieldFormatEnum = { diff --git a/src/api/resources/accounting/types/FieldTypeEnum.ts b/src/api/resources/accounting/types/FieldTypeEnum.ts index e235eeea9..fab8ee2a4 100644 --- a/src/api/resources/accounting/types/FieldTypeEnum.ts +++ b/src/api/resources/accounting/types/FieldTypeEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `string` - string - * - `number` - number - * - `date` - date - * - `datetime` - datetime - * - `bool` - bool - * - `list` - list + * * `string` - string + * * `number` - number + * * `date` - date + * * `datetime` - datetime + * * `bool` - bool + * * `list` - list */ export type FieldTypeEnum = "string" | "number" | "date" | "datetime" | "bool" | "list"; export const FieldTypeEnum = { diff --git a/src/api/resources/accounting/types/GeneralLedgerTransaction.ts b/src/api/resources/accounting/types/GeneralLedgerTransaction.ts index 8a7b78e7d..c0adf0366 100644 --- a/src/api/resources/accounting/types/GeneralLedgerTransaction.ts +++ b/src/api/resources/accounting/types/GeneralLedgerTransaction.ts @@ -6,9 +6,7 @@ import * 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. @@ -16,7 +14,6 @@ import * as Merge from "../../../index"; * 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 { @@ -32,13 +29,13 @@ export interface GeneralLedgerTransaction { /** * 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 + * * `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. */ diff --git a/src/api/resources/accounting/types/GeneralLedgerTransactionLine.ts b/src/api/resources/accounting/types/GeneralLedgerTransactionLine.ts index 1fcb261d2..590f1b6ff 100644 --- a/src/api/resources/accounting/types/GeneralLedgerTransactionLine.ts +++ b/src/api/resources/accounting/types/GeneralLedgerTransactionLine.ts @@ -6,13 +6,10 @@ import * 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 { @@ -31,623 +28,623 @@ export interface GeneralLedgerTransactionLine { /** * 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) + * * `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) + * * `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. */ diff --git a/src/api/resources/accounting/types/GeneralLedgerTransactionLineBaseCurrency.ts b/src/api/resources/accounting/types/GeneralLedgerTransactionLineBaseCurrency.ts index 5a36111f1..2eb69b373 100644 --- a/src/api/resources/accounting/types/GeneralLedgerTransactionLineBaseCurrency.ts +++ b/src/api/resources/accounting/types/GeneralLedgerTransactionLineBaseCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/GeneralLedgerTransactionLineTransactionCurrency.ts b/src/api/resources/accounting/types/GeneralLedgerTransactionLineTransactionCurrency.ts index bd0003114..76ab2acd2 100644 --- a/src/api/resources/accounting/types/GeneralLedgerTransactionLineTransactionCurrency.ts +++ b/src/api/resources/accounting/types/GeneralLedgerTransactionLineTransactionCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/GeneralLedgerTransactionUnderlyingTransactionType.ts b/src/api/resources/accounting/types/GeneralLedgerTransactionUnderlyingTransactionType.ts index 510b8bf43..9731acb93 100644 --- a/src/api/resources/accounting/types/GeneralLedgerTransactionUnderlyingTransactionType.ts +++ b/src/api/resources/accounting/types/GeneralLedgerTransactionUnderlyingTransactionType.ts @@ -7,12 +7,12 @@ import * 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 + * * `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 index db3963be6..b2c962221 100644 --- a/src/api/resources/accounting/types/IncomeStatement.ts +++ b/src/api/resources/accounting/types/IncomeStatement.ts @@ -6,13 +6,10 @@ import * 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 { @@ -28,312 +25,312 @@ export interface IncomeStatement { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/IncomeStatementCurrency.ts b/src/api/resources/accounting/types/IncomeStatementCurrency.ts index 13de54788..483e76c36 100644 --- a/src/api/resources/accounting/types/IncomeStatementCurrency.ts +++ b/src/api/resources/accounting/types/IncomeStatementCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/Invoice.ts b/src/api/resources/accounting/types/Invoice.ts index e554974f6..fb9dedfc5 100644 --- a/src/api/resources/accounting/types/Invoice.ts +++ b/src/api/resources/accounting/types/Invoice.ts @@ -6,15 +6,13 @@ import * 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 { @@ -28,8 +26,8 @@ export interface Invoice { /** * 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 + * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE + * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE */ type?: Merge.accounting.InvoiceType; /** The invoice's contact. */ @@ -51,312 +49,312 @@ export interface Invoice { /** * 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) + * * `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. */ @@ -370,12 +368,12 @@ export interface Invoice { /** * The status of the invoice. * - * - `PAID` - PAID - * - `DRAFT` - DRAFT - * - `SUBMITTED` - SUBMITTED - * - `PARTIALLY_PAID` - PARTIALLY_PAID - * - `OPEN` - OPEN - * - `VOID` - VOID + * * `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. */ diff --git a/src/api/resources/accounting/types/InvoiceCurrency.ts b/src/api/resources/accounting/types/InvoiceCurrency.ts index 8f17454a0..a701cbbe5 100644 --- a/src/api/resources/accounting/types/InvoiceCurrency.ts +++ b/src/api/resources/accounting/types/InvoiceCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/InvoiceLineItem.ts b/src/api/resources/accounting/types/InvoiceLineItem.ts index 298c5293a..3ae54da6e 100644 --- a/src/api/resources/accounting/types/InvoiceLineItem.ts +++ b/src/api/resources/accounting/types/InvoiceLineItem.ts @@ -6,13 +6,10 @@ import * 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 { @@ -36,312 +33,312 @@ export interface InvoiceLineItem { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/InvoiceLineItemCurrency.ts b/src/api/resources/accounting/types/InvoiceLineItemCurrency.ts index 0af06d0ec..f2c2fb94b 100644 --- a/src/api/resources/accounting/types/InvoiceLineItemCurrency.ts +++ b/src/api/resources/accounting/types/InvoiceLineItemCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/InvoiceLineItemRequest.ts b/src/api/resources/accounting/types/InvoiceLineItemRequest.ts index a71780efd..a19ef7ee3 100644 --- a/src/api/resources/accounting/types/InvoiceLineItemRequest.ts +++ b/src/api/resources/accounting/types/InvoiceLineItemRequest.ts @@ -6,13 +6,10 @@ import * 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 { @@ -31,312 +28,312 @@ export interface InvoiceLineItemRequest { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/InvoiceLineItemRequestCurrency.ts b/src/api/resources/accounting/types/InvoiceLineItemRequestCurrency.ts index 14d5a6faa..c34e48860 100644 --- a/src/api/resources/accounting/types/InvoiceLineItemRequestCurrency.ts +++ b/src/api/resources/accounting/types/InvoiceLineItemRequestCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/InvoiceRequest.ts b/src/api/resources/accounting/types/InvoiceRequest.ts index 0bf3d4ef5..d22b0f70f 100644 --- a/src/api/resources/accounting/types/InvoiceRequest.ts +++ b/src/api/resources/accounting/types/InvoiceRequest.ts @@ -6,23 +6,21 @@ import * 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 + * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE + * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE */ type?: Merge.accounting.InvoiceRequestType; /** The invoice's contact. */ @@ -42,12 +40,12 @@ export interface InvoiceRequest { /** * The status of the invoice. * - * - `PAID` - PAID - * - `DRAFT` - DRAFT - * - `SUBMITTED` - SUBMITTED - * - `PARTIALLY_PAID` - PARTIALLY_PAID - * - `OPEN` - OPEN - * - `VOID` - VOID + * * `PAID` - PAID + * * `DRAFT` - DRAFT + * * `SUBMITTED` - SUBMITTED + * * `PARTIALLY_PAID` - PARTIALLY_PAID + * * `OPEN` - OPEN + * * `VOID` - VOID */ status?: Merge.accounting.InvoiceRequestStatus; /** The company the invoice belongs to. */ @@ -55,312 +53,312 @@ export interface InvoiceRequest { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/InvoiceRequestCurrency.ts b/src/api/resources/accounting/types/InvoiceRequestCurrency.ts index 39e582078..bddb0fe03 100644 --- a/src/api/resources/accounting/types/InvoiceRequestCurrency.ts +++ b/src/api/resources/accounting/types/InvoiceRequestCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/InvoiceRequestStatus.ts b/src/api/resources/accounting/types/InvoiceRequestStatus.ts index 62f1ddb0f..93b714afa 100644 --- a/src/api/resources/accounting/types/InvoiceRequestStatus.ts +++ b/src/api/resources/accounting/types/InvoiceRequestStatus.ts @@ -7,11 +7,11 @@ import * as Merge from "../../../index"; /** * The status of the invoice. * - * - `PAID` - PAID - * - `DRAFT` - DRAFT - * - `SUBMITTED` - SUBMITTED - * - `PARTIALLY_PAID` - PARTIALLY_PAID - * - `OPEN` - OPEN - * - `VOID` - VOID + * * `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/InvoiceRequestType.ts b/src/api/resources/accounting/types/InvoiceRequestType.ts index 9ae10b236..bd62b49db 100644 --- a/src/api/resources/accounting/types/InvoiceRequestType.ts +++ b/src/api/resources/accounting/types/InvoiceRequestType.ts @@ -7,7 +7,7 @@ import * 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 + * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE + * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE */ export type InvoiceRequestType = Merge.accounting.InvoiceTypeEnum | string; diff --git a/src/api/resources/accounting/types/InvoiceStatus.ts b/src/api/resources/accounting/types/InvoiceStatus.ts index 8ab14c37d..d7451b6dc 100644 --- a/src/api/resources/accounting/types/InvoiceStatus.ts +++ b/src/api/resources/accounting/types/InvoiceStatus.ts @@ -7,11 +7,11 @@ import * as Merge from "../../../index"; /** * The status of the invoice. * - * - `PAID` - PAID - * - `DRAFT` - DRAFT - * - `SUBMITTED` - SUBMITTED - * - `PARTIALLY_PAID` - PARTIALLY_PAID - * - `OPEN` - OPEN - * - `VOID` - VOID + * * `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 index e80e40c76..0fa7dc197 100644 --- a/src/api/resources/accounting/types/InvoiceStatusEnum.ts +++ b/src/api/resources/accounting/types/InvoiceStatusEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `PAID` - PAID - * - `DRAFT` - DRAFT - * - `SUBMITTED` - SUBMITTED - * - `PARTIALLY_PAID` - PARTIALLY_PAID - * - `OPEN` - OPEN - * - `VOID` - VOID + * * `PAID` - PAID + * * `DRAFT` - DRAFT + * * `SUBMITTED` - SUBMITTED + * * `PARTIALLY_PAID` - PARTIALLY_PAID + * * `OPEN` - OPEN + * * `VOID` - VOID */ export type InvoiceStatusEnum = "PAID" | "DRAFT" | "SUBMITTED" | "PARTIALLY_PAID" | "OPEN" | "VOID"; export const InvoiceStatusEnum = { diff --git a/src/api/resources/accounting/types/InvoiceType.ts b/src/api/resources/accounting/types/InvoiceType.ts index 8700e277d..4f8090985 100644 --- a/src/api/resources/accounting/types/InvoiceType.ts +++ b/src/api/resources/accounting/types/InvoiceType.ts @@ -7,7 +7,7 @@ import * 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 + * * `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 index ade0eb353..282cfb933 100644 --- a/src/api/resources/accounting/types/InvoiceTypeEnum.ts +++ b/src/api/resources/accounting/types/InvoiceTypeEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE - * - `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE + * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE + * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE */ export type InvoiceTypeEnum = "ACCOUNTS_RECEIVABLE" | "ACCOUNTS_PAYABLE"; export const InvoiceTypeEnum = { diff --git a/src/api/resources/accounting/types/Issue.ts b/src/api/resources/accounting/types/Issue.ts index f3b69b909..d5247b9f5 100644 --- a/src/api/resources/accounting/types/Issue.ts +++ b/src/api/resources/accounting/types/Issue.ts @@ -9,8 +9,8 @@ export interface Issue { /** * Status of the issue. Options: ('ONGOING', 'RESOLVED') * - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ status?: Merge.accounting.IssueStatus; errorDescription: string; diff --git a/src/api/resources/accounting/types/IssueStatus.ts b/src/api/resources/accounting/types/IssueStatus.ts index 46c3b1662..1707a6de8 100644 --- a/src/api/resources/accounting/types/IssueStatus.ts +++ b/src/api/resources/accounting/types/IssueStatus.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * Status of the issue. Options: ('ONGOING', 'RESOLVED') * - * - `ONGOING` - ONGOING - * - `RESOLVED` - 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 index 56fc6d5fa..324e8bf84 100644 --- a/src/api/resources/accounting/types/IssueStatusEnum.ts +++ b/src/api/resources/accounting/types/IssueStatusEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ export type IssueStatusEnum = "ONGOING" | "RESOLVED"; export const IssueStatusEnum = { diff --git a/src/api/resources/accounting/types/Item.ts b/src/api/resources/accounting/types/Item.ts index eb8ec1e93..5ab51ce0d 100644 --- a/src/api/resources/accounting/types/Item.ts +++ b/src/api/resources/accounting/types/Item.ts @@ -6,13 +6,10 @@ import * 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 { @@ -28,8 +25,8 @@ export interface Item { /** * The item's status. * - * - `ACTIVE` - ACTIVE - * - `ARCHIVED` - ARCHIVED + * * `ACTIVE` - ACTIVE + * * `ARCHIVED` - ARCHIVED */ status?: Merge.accounting.ItemStatus; /** The item's unit price. */ diff --git a/src/api/resources/accounting/types/ItemFormatEnum.ts b/src/api/resources/accounting/types/ItemFormatEnum.ts index 276d6e676..07bf7f260 100644 --- a/src/api/resources/accounting/types/ItemFormatEnum.ts +++ b/src/api/resources/accounting/types/ItemFormatEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `string` - uuid - * - `number` - url - * - `date` - email - * - `datetime` - phone - * - `bool` - currency - * - `list` - decimal + * * `string` - uuid + * * `number` - url + * * `date` - email + * * `datetime` - phone + * * `bool` - currency + * * `list` - decimal */ export type ItemFormatEnum = "string" | "number" | "date" | "datetime" | "bool" | "list"; export const ItemFormatEnum = { diff --git a/src/api/resources/accounting/types/ItemStatus.ts b/src/api/resources/accounting/types/ItemStatus.ts index 465507d1e..aacf978f9 100644 --- a/src/api/resources/accounting/types/ItemStatus.ts +++ b/src/api/resources/accounting/types/ItemStatus.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The item's status. * - * - `ACTIVE` - ACTIVE - * - `ARCHIVED` - ARCHIVED + * * `ACTIVE` - ACTIVE + * * `ARCHIVED` - ARCHIVED */ export type ItemStatus = Merge.accounting.Status7D1Enum | string; diff --git a/src/api/resources/accounting/types/ItemTypeEnum.ts b/src/api/resources/accounting/types/ItemTypeEnum.ts index 815b6314e..ec6fae79a 100644 --- a/src/api/resources/accounting/types/ItemTypeEnum.ts +++ b/src/api/resources/accounting/types/ItemTypeEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `string` - string - * - `number` - number - * - `date` - date - * - `datetime` - datetime - * - `bool` - bool - * - `list` - list + * * `string` - string + * * `number` - number + * * `date` - date + * * `datetime` - datetime + * * `bool` - bool + * * `list` - list */ export type ItemTypeEnum = "string" | "number" | "date" | "datetime" | "bool" | "list"; export const ItemTypeEnum = { diff --git a/src/api/resources/accounting/types/JournalEntry.ts b/src/api/resources/accounting/types/JournalEntry.ts index fa391b467..2bb6937ff 100644 --- a/src/api/resources/accounting/types/JournalEntry.ts +++ b/src/api/resources/accounting/types/JournalEntry.ts @@ -6,9 +6,7 @@ import * 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. @@ -16,7 +14,6 @@ import * as Merge from "../../../index"; * 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 { @@ -38,312 +35,312 @@ export interface JournalEntry { /** * 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) + * * `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. */ @@ -361,8 +358,8 @@ export interface JournalEntry { /** * The journal's posting status. * - * - `UNPOSTED` - UNPOSTED - * - `POSTED` - POSTED + * * `UNPOSTED` - UNPOSTED + * * `POSTED` - POSTED */ postingStatus?: Merge.accounting.JournalEntryPostingStatus; /** The accounting period that the JournalEntry was generated in. */ diff --git a/src/api/resources/accounting/types/JournalEntryCurrency.ts b/src/api/resources/accounting/types/JournalEntryCurrency.ts index 64491814d..6281b0af3 100644 --- a/src/api/resources/accounting/types/JournalEntryCurrency.ts +++ b/src/api/resources/accounting/types/JournalEntryCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/JournalEntryPostingStatus.ts b/src/api/resources/accounting/types/JournalEntryPostingStatus.ts index b59811486..2e06ee8f9 100644 --- a/src/api/resources/accounting/types/JournalEntryPostingStatus.ts +++ b/src/api/resources/accounting/types/JournalEntryPostingStatus.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The journal's posting status. * - * - `UNPOSTED` - UNPOSTED - * - `POSTED` - POSTED + * * `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 index 05b3b338a..343235d78 100644 --- a/src/api/resources/accounting/types/JournalEntryRequest.ts +++ b/src/api/resources/accounting/types/JournalEntryRequest.ts @@ -6,13 +6,10 @@ import * 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 { @@ -25,312 +22,312 @@ export interface JournalEntryRequest { /** * 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) + * * `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. */ @@ -346,8 +343,8 @@ export interface JournalEntryRequest { /** * The journal's posting status. * - * - `UNPOSTED` - UNPOSTED - * - `POSTED` - POSTED + * * `UNPOSTED` - UNPOSTED + * * `POSTED` - POSTED */ postingStatus?: Merge.accounting.JournalEntryRequestPostingStatus; integrationParams?: Record; diff --git a/src/api/resources/accounting/types/JournalEntryRequestCurrency.ts b/src/api/resources/accounting/types/JournalEntryRequestCurrency.ts index bf9ab3b1e..62b8872d1 100644 --- a/src/api/resources/accounting/types/JournalEntryRequestCurrency.ts +++ b/src/api/resources/accounting/types/JournalEntryRequestCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/JournalEntryRequestPostingStatus.ts b/src/api/resources/accounting/types/JournalEntryRequestPostingStatus.ts index c0f7c571e..3b1a5d071 100644 --- a/src/api/resources/accounting/types/JournalEntryRequestPostingStatus.ts +++ b/src/api/resources/accounting/types/JournalEntryRequestPostingStatus.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The journal's posting status. * - * - `UNPOSTED` - UNPOSTED - * - `POSTED` - POSTED + * * `UNPOSTED` - UNPOSTED + * * `POSTED` - POSTED */ export type JournalEntryRequestPostingStatus = Merge.accounting.PostingStatusEnum | string; diff --git a/src/api/resources/accounting/types/JournalLine.ts b/src/api/resources/accounting/types/JournalLine.ts index 01cca1bf9..701aa0c72 100644 --- a/src/api/resources/accounting/types/JournalLine.ts +++ b/src/api/resources/accounting/types/JournalLine.ts @@ -6,13 +6,10 @@ import * 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 { @@ -32,312 +29,312 @@ export interface JournalLine { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/JournalLineCurrency.ts b/src/api/resources/accounting/types/JournalLineCurrency.ts index c45d2d742..a7552fe0b 100644 --- a/src/api/resources/accounting/types/JournalLineCurrency.ts +++ b/src/api/resources/accounting/types/JournalLineCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/JournalLineRequest.ts b/src/api/resources/accounting/types/JournalLineRequest.ts index bb0e54816..8340b56d1 100644 --- a/src/api/resources/accounting/types/JournalLineRequest.ts +++ b/src/api/resources/accounting/types/JournalLineRequest.ts @@ -6,13 +6,10 @@ import * 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 { @@ -27,312 +24,312 @@ export interface JournalLineRequest { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/JournalLineRequestCurrency.ts b/src/api/resources/accounting/types/JournalLineRequestCurrency.ts index 97c53495a..0e7ed78ca 100644 --- a/src/api/resources/accounting/types/JournalLineRequestCurrency.ts +++ b/src/api/resources/accounting/types/JournalLineRequestCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/LanguageEnum.ts b/src/api/resources/accounting/types/LanguageEnum.ts index 180002115..6c41852c3 100644 --- a/src/api/resources/accounting/types/LanguageEnum.ts +++ b/src/api/resources/accounting/types/LanguageEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `en` - en - * - `de` - de + * * `en` - en + * * `de` - de */ export type LanguageEnum = "en" | "de"; export const LanguageEnum = { diff --git a/src/api/resources/accounting/types/LastSyncResultEnum.ts b/src/api/resources/accounting/types/LastSyncResultEnum.ts index e14779ef7..434329895 100644 --- a/src/api/resources/accounting/types/LastSyncResultEnum.ts +++ b/src/api/resources/accounting/types/LastSyncResultEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `SYNCING` - SYNCING - * - `DONE` - DONE - * - `FAILED` - FAILED - * - `DISABLED` - DISABLED - * - `PAUSED` - PAUSED - * - `PARTIALLY_SYNCED` - PARTIALLY_SYNCED + * * `SYNCING` - SYNCING + * * `DONE` - DONE + * * `FAILED` - FAILED + * * `DISABLED` - DISABLED + * * `PAUSED` - PAUSED + * * `PARTIALLY_SYNCED` - PARTIALLY_SYNCED */ export type LastSyncResultEnum = "SYNCING" | "DONE" | "FAILED" | "DISABLED" | "PAUSED" | "PARTIALLY_SYNCED"; export const LastSyncResultEnum = { diff --git a/src/api/resources/accounting/types/MethodEnum.ts b/src/api/resources/accounting/types/MethodEnum.ts index 5d8dae516..0c151e94f 100644 --- a/src/api/resources/accounting/types/MethodEnum.ts +++ b/src/api/resources/accounting/types/MethodEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `GET` - GET - * - `OPTIONS` - OPTIONS - * - `HEAD` - HEAD - * - `POST` - POST - * - `PUT` - PUT - * - `PATCH` - PATCH - * - `DELETE` - DELETE + * * `GET` - GET + * * `OPTIONS` - OPTIONS + * * `HEAD` - HEAD + * * `POST` - POST + * * `PUT` - PUT + * * `PATCH` - PATCH + * * `DELETE` - DELETE */ export type MethodEnum = "GET" | "OPTIONS" | "HEAD" | "POST" | "PUT" | "PATCH" | "DELETE"; export const MethodEnum = { diff --git a/src/api/resources/accounting/types/MethodTypeEnum.ts b/src/api/resources/accounting/types/MethodTypeEnum.ts index a25530ada..7bacb36de 100644 --- a/src/api/resources/accounting/types/MethodTypeEnum.ts +++ b/src/api/resources/accounting/types/MethodTypeEnum.ts @@ -3,11 +3,11 @@ */ /** - * - `CREDIT_CARD` - CREDIT_CARD - * - `DEBIT_CARD` - DEBIT_CARD - * - `ACH` - ACH - * - `CASH` - CASH - * - `CHECK` - CHECK + * * `CREDIT_CARD` - CREDIT_CARD + * * `DEBIT_CARD` - DEBIT_CARD + * * `ACH` - ACH + * * `CASH` - CASH + * * `CHECK` - CHECK */ export type MethodTypeEnum = "CREDIT_CARD" | "DEBIT_CARD" | "ACH" | "CASH" | "CHECK"; export const MethodTypeEnum = { diff --git a/src/api/resources/accounting/types/ModelOperation.ts b/src/api/resources/accounting/types/ModelOperation.ts index 8126f65f6..d2035b050 100644 --- a/src/api/resources/accounting/types/ModelOperation.ts +++ b/src/api/resources/accounting/types/ModelOperation.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/accounting/types/MultipartFormFieldRequest.ts b/src/api/resources/accounting/types/MultipartFormFieldRequest.ts index 10eefc647..e6a3131fa 100644 --- a/src/api/resources/accounting/types/MultipartFormFieldRequest.ts +++ b/src/api/resources/accounting/types/MultipartFormFieldRequest.ts @@ -6,13 +6,10 @@ import * 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 { @@ -23,9 +20,9 @@ export interface MultipartFormFieldRequest { /** * The encoding of the value of `data`. Defaults to `RAW` if not defined. * - * - `RAW` - RAW - * - `BASE64` - BASE64 - * - `GZIP_BASE64` - GZIP_BASE64 + * * `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. */ diff --git a/src/api/resources/accounting/types/MultipartFormFieldRequestEncoding.ts b/src/api/resources/accounting/types/MultipartFormFieldRequestEncoding.ts index 31327bda2..a7a046b40 100644 --- a/src/api/resources/accounting/types/MultipartFormFieldRequestEncoding.ts +++ b/src/api/resources/accounting/types/MultipartFormFieldRequestEncoding.ts @@ -7,8 +7,8 @@ import * 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 + * * `RAW` - RAW + * * `BASE64` - BASE64 + * * `GZIP_BASE64` - GZIP_BASE64 */ export type MultipartFormFieldRequestEncoding = Merge.accounting.EncodingEnum | string; diff --git a/src/api/resources/accounting/types/PatchedPaymentRequest.ts b/src/api/resources/accounting/types/PatchedPaymentRequest.ts index f8698e158..465990fca 100644 --- a/src/api/resources/accounting/types/PatchedPaymentRequest.ts +++ b/src/api/resources/accounting/types/PatchedPaymentRequest.ts @@ -6,13 +6,10 @@ import * 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 { @@ -27,312 +24,312 @@ export interface PatchedPaymentRequest { /** * 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) + * * `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. */ @@ -344,8 +341,8 @@ export interface PatchedPaymentRequest { /** * The type of the invoice. * - * - `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - * - `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE + * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE + * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE */ type?: Merge.accounting.PatchedPaymentRequestType; trackingCategories?: (Merge.accounting.PatchedPaymentRequestTrackingCategoriesItem | undefined)[]; diff --git a/src/api/resources/accounting/types/PatchedPaymentRequestCurrency.ts b/src/api/resources/accounting/types/PatchedPaymentRequestCurrency.ts index bdb55f5ef..f953a37f7 100644 --- a/src/api/resources/accounting/types/PatchedPaymentRequestCurrency.ts +++ b/src/api/resources/accounting/types/PatchedPaymentRequestCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/PatchedPaymentRequestType.ts b/src/api/resources/accounting/types/PatchedPaymentRequestType.ts index 61dd48c7e..90ef4f12f 100644 --- a/src/api/resources/accounting/types/PatchedPaymentRequestType.ts +++ b/src/api/resources/accounting/types/PatchedPaymentRequestType.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The type of the invoice. * - * - `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - * - `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE + * * `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 index c375241a3..4f6201b0a 100644 --- a/src/api/resources/accounting/types/Payment.ts +++ b/src/api/resources/accounting/types/Payment.ts @@ -6,13 +6,10 @@ import * 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 { @@ -34,312 +31,312 @@ export interface Payment { /** * 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) + * * `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. */ @@ -351,8 +348,8 @@ export interface Payment { /** * The type of the invoice. * - * - `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - * - `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE + * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE + * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE */ type?: Merge.accounting.PaymentType; trackingCategories?: (Merge.accounting.PaymentTrackingCategoriesItem | undefined)[]; diff --git a/src/api/resources/accounting/types/PaymentCurrency.ts b/src/api/resources/accounting/types/PaymentCurrency.ts index be98e9af9..ea694de86 100644 --- a/src/api/resources/accounting/types/PaymentCurrency.ts +++ b/src/api/resources/accounting/types/PaymentCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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 index 7cb2a59bd..b6b7ec549 100644 --- a/src/api/resources/accounting/types/PaymentLineItem.ts +++ b/src/api/resources/accounting/types/PaymentLineItem.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/accounting/types/PaymentLineItemRequest.ts b/src/api/resources/accounting/types/PaymentLineItemRequest.ts index f62af2139..f86cf1c70 100644 --- a/src/api/resources/accounting/types/PaymentLineItemRequest.ts +++ b/src/api/resources/accounting/types/PaymentLineItemRequest.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/accounting/types/PaymentMethod.ts b/src/api/resources/accounting/types/PaymentMethod.ts index 9ab370766..d4a9b7bd8 100644 --- a/src/api/resources/accounting/types/PaymentMethod.ts +++ b/src/api/resources/accounting/types/PaymentMethod.ts @@ -6,13 +6,10 @@ import * 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 { @@ -26,11 +23,11 @@ export interface PaymentMethod { /** * The type of the payment method. * - * - `CREDIT_CARD` - CREDIT_CARD - * - `DEBIT_CARD` - DEBIT_CARD - * - `ACH` - ACH - * - `CASH` - CASH - * - `CHECK` - CHECK + * * `CREDIT_CARD` - CREDIT_CARD + * * `DEBIT_CARD` - DEBIT_CARD + * * `ACH` - ACH + * * `CASH` - CASH + * * `CHECK` - CHECK */ methodType: Merge.accounting.PaymentMethodMethodType; /** The payment method’s name */ diff --git a/src/api/resources/accounting/types/PaymentMethodMethodType.ts b/src/api/resources/accounting/types/PaymentMethodMethodType.ts index 74d49ec45..137dadebe 100644 --- a/src/api/resources/accounting/types/PaymentMethodMethodType.ts +++ b/src/api/resources/accounting/types/PaymentMethodMethodType.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The type of the payment method. * - * - `CREDIT_CARD` - CREDIT_CARD - * - `DEBIT_CARD` - DEBIT_CARD - * - `ACH` - ACH - * - `CASH` - CASH - * - `CHECK` - CHECK + * * `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/PaymentRequest.ts b/src/api/resources/accounting/types/PaymentRequest.ts index 8f1aca307..43517603a 100644 --- a/src/api/resources/accounting/types/PaymentRequest.ts +++ b/src/api/resources/accounting/types/PaymentRequest.ts @@ -6,13 +6,10 @@ import * 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 { @@ -27,312 +24,312 @@ export interface PaymentRequest { /** * 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) + * * `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. */ @@ -344,8 +341,8 @@ export interface PaymentRequest { /** * The type of the invoice. * - * - `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - * - `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE + * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE + * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE */ type?: Merge.accounting.PaymentRequestType; trackingCategories?: (Merge.accounting.PaymentRequestTrackingCategoriesItem | undefined)[]; diff --git a/src/api/resources/accounting/types/PaymentRequestCurrency.ts b/src/api/resources/accounting/types/PaymentRequestCurrency.ts index a6867fd3b..36d7c7fdb 100644 --- a/src/api/resources/accounting/types/PaymentRequestCurrency.ts +++ b/src/api/resources/accounting/types/PaymentRequestCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/PaymentRequestType.ts b/src/api/resources/accounting/types/PaymentRequestType.ts index 2eff4cadb..6c88c4686 100644 --- a/src/api/resources/accounting/types/PaymentRequestType.ts +++ b/src/api/resources/accounting/types/PaymentRequestType.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The type of the invoice. * - * - `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - * - `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE + * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE + * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE */ export type PaymentRequestType = Merge.accounting.PaymentTypeEnum | string; diff --git a/src/api/resources/accounting/types/PaymentTerm.ts b/src/api/resources/accounting/types/PaymentTerm.ts index 3594481d8..457676945 100644 --- a/src/api/resources/accounting/types/PaymentTerm.ts +++ b/src/api/resources/accounting/types/PaymentTerm.ts @@ -6,14 +6,11 @@ import * 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 { diff --git a/src/api/resources/accounting/types/PaymentType.ts b/src/api/resources/accounting/types/PaymentType.ts index a56aa6058..00f8de770 100644 --- a/src/api/resources/accounting/types/PaymentType.ts +++ b/src/api/resources/accounting/types/PaymentType.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The type of the invoice. * - * - `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - * - `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE + * * `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 index cef92471a..fe277ec97 100644 --- a/src/api/resources/accounting/types/PaymentTypeEnum.ts +++ b/src/api/resources/accounting/types/PaymentTypeEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - * - `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE + * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE + * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE */ export type PaymentTypeEnum = "ACCOUNTS_PAYABLE" | "ACCOUNTS_RECEIVABLE"; export const PaymentTypeEnum = { diff --git a/src/api/resources/accounting/types/PostingStatusEnum.ts b/src/api/resources/accounting/types/PostingStatusEnum.ts index 2dbcdf07b..72626de73 100644 --- a/src/api/resources/accounting/types/PostingStatusEnum.ts +++ b/src/api/resources/accounting/types/PostingStatusEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `UNPOSTED` - UNPOSTED - * - `POSTED` - POSTED + * * `UNPOSTED` - UNPOSTED + * * `POSTED` - POSTED */ export type PostingStatusEnum = "UNPOSTED" | "POSTED"; export const PostingStatusEnum = { diff --git a/src/api/resources/accounting/types/PurchaseOrder.ts b/src/api/resources/accounting/types/PurchaseOrder.ts index 6a01a3755..c3929b88f 100644 --- a/src/api/resources/accounting/types/PurchaseOrder.ts +++ b/src/api/resources/accounting/types/PurchaseOrder.ts @@ -6,15 +6,12 @@ import * 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). + * 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 { @@ -28,11 +25,11 @@ export interface PurchaseOrder { /** * The purchase order's status. * - * - `DRAFT` - DRAFT - * - `SUBMITTED` - SUBMITTED - * - `AUTHORIZED` - AUTHORIZED - * - `BILLED` - BILLED - * - `DELETED` - DELETED + * * `DRAFT` - DRAFT + * * `SUBMITTED` - SUBMITTED + * * `AUTHORIZED` - AUTHORIZED + * * `BILLED` - BILLED + * * `DELETED` - DELETED */ status?: Merge.accounting.PurchaseOrderStatus; /** The purchase order's issue date. */ @@ -56,312 +53,312 @@ export interface PurchaseOrder { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/PurchaseOrderCurrency.ts b/src/api/resources/accounting/types/PurchaseOrderCurrency.ts index abade229e..4f859c22f 100644 --- a/src/api/resources/accounting/types/PurchaseOrderCurrency.ts +++ b/src/api/resources/accounting/types/PurchaseOrderCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/PurchaseOrderLineItem.ts b/src/api/resources/accounting/types/PurchaseOrderLineItem.ts index f88543e0c..ccf72584b 100644 --- a/src/api/resources/accounting/types/PurchaseOrderLineItem.ts +++ b/src/api/resources/accounting/types/PurchaseOrderLineItem.ts @@ -6,13 +6,10 @@ import * 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 { @@ -43,312 +40,312 @@ export interface PurchaseOrderLineItem { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/PurchaseOrderLineItemCurrency.ts b/src/api/resources/accounting/types/PurchaseOrderLineItemCurrency.ts index 4de269329..62b92f8fe 100644 --- a/src/api/resources/accounting/types/PurchaseOrderLineItemCurrency.ts +++ b/src/api/resources/accounting/types/PurchaseOrderLineItemCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/PurchaseOrderLineItemRequest.ts b/src/api/resources/accounting/types/PurchaseOrderLineItemRequest.ts index 9ce2b6e78..85a9bd5a6 100644 --- a/src/api/resources/accounting/types/PurchaseOrderLineItemRequest.ts +++ b/src/api/resources/accounting/types/PurchaseOrderLineItemRequest.ts @@ -6,13 +6,10 @@ import * 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 { @@ -38,312 +35,312 @@ export interface PurchaseOrderLineItemRequest { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/PurchaseOrderLineItemRequestCurrency.ts b/src/api/resources/accounting/types/PurchaseOrderLineItemRequestCurrency.ts index 62701b7ff..22aae0878 100644 --- a/src/api/resources/accounting/types/PurchaseOrderLineItemRequestCurrency.ts +++ b/src/api/resources/accounting/types/PurchaseOrderLineItemRequestCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/PurchaseOrderRequest.ts b/src/api/resources/accounting/types/PurchaseOrderRequest.ts index 98f0fe659..c16e6c0ed 100644 --- a/src/api/resources/accounting/types/PurchaseOrderRequest.ts +++ b/src/api/resources/accounting/types/PurchaseOrderRequest.ts @@ -6,24 +6,21 @@ import * 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 + * * `DRAFT` - DRAFT + * * `SUBMITTED` - SUBMITTED + * * `AUTHORIZED` - AUTHORIZED + * * `BILLED` - BILLED + * * `DELETED` - DELETED */ status?: Merge.accounting.PurchaseOrderRequestStatus; /** The purchase order's issue date. */ @@ -47,312 +44,312 @@ export interface PurchaseOrderRequest { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/PurchaseOrderRequestCurrency.ts b/src/api/resources/accounting/types/PurchaseOrderRequestCurrency.ts index 363e7328e..bebf7a807 100644 --- a/src/api/resources/accounting/types/PurchaseOrderRequestCurrency.ts +++ b/src/api/resources/accounting/types/PurchaseOrderRequestCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/PurchaseOrderRequestStatus.ts b/src/api/resources/accounting/types/PurchaseOrderRequestStatus.ts index 6000857af..2883a0071 100644 --- a/src/api/resources/accounting/types/PurchaseOrderRequestStatus.ts +++ b/src/api/resources/accounting/types/PurchaseOrderRequestStatus.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The purchase order's status. * - * - `DRAFT` - DRAFT - * - `SUBMITTED` - SUBMITTED - * - `AUTHORIZED` - AUTHORIZED - * - `BILLED` - BILLED - * - `DELETED` - DELETED + * * `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/PurchaseOrderStatus.ts b/src/api/resources/accounting/types/PurchaseOrderStatus.ts index 26512b7f8..4ff231503 100644 --- a/src/api/resources/accounting/types/PurchaseOrderStatus.ts +++ b/src/api/resources/accounting/types/PurchaseOrderStatus.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The purchase order's status. * - * - `DRAFT` - DRAFT - * - `SUBMITTED` - SUBMITTED - * - `AUTHORIZED` - AUTHORIZED - * - `BILLED` - BILLED - * - `DELETED` - DELETED + * * `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 index 05371c497..7ecc7fb8d 100644 --- a/src/api/resources/accounting/types/PurchaseOrderStatusEnum.ts +++ b/src/api/resources/accounting/types/PurchaseOrderStatusEnum.ts @@ -3,11 +3,11 @@ */ /** - * - `DRAFT` - DRAFT - * - `SUBMITTED` - SUBMITTED - * - `AUTHORIZED` - AUTHORIZED - * - `BILLED` - BILLED - * - `DELETED` - DELETED + * * `DRAFT` - DRAFT + * * `SUBMITTED` - SUBMITTED + * * `AUTHORIZED` - AUTHORIZED + * * `BILLED` - BILLED + * * `DELETED` - DELETED */ export type PurchaseOrderStatusEnum = "DRAFT" | "SUBMITTED" | "AUTHORIZED" | "BILLED" | "DELETED"; export const PurchaseOrderStatusEnum = { diff --git a/src/api/resources/accounting/types/RemoteData.ts b/src/api/resources/accounting/types/RemoteData.ts index 928b06e7a..ab15ac8ee 100644 --- a/src/api/resources/accounting/types/RemoteData.ts +++ b/src/api/resources/accounting/types/RemoteData.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/accounting/types/RemoteKey.ts b/src/api/resources/accounting/types/RemoteKey.ts index 878f41321..6f8bf2dbf 100644 --- a/src/api/resources/accounting/types/RemoteKey.ts +++ b/src/api/resources/accounting/types/RemoteKey.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/accounting/types/RemoteResponse.ts b/src/api/resources/accounting/types/RemoteResponse.ts index 83591ff55..c2c0c21ec 100644 --- a/src/api/resources/accounting/types/RemoteResponse.ts +++ b/src/api/resources/accounting/types/RemoteResponse.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/accounting/types/ReportItem.ts b/src/api/resources/accounting/types/ReportItem.ts index 19632271c..9a723dcb0 100644 --- a/src/api/resources/accounting/types/ReportItem.ts +++ b/src/api/resources/accounting/types/ReportItem.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/accounting/types/RequestFormatEnum.ts b/src/api/resources/accounting/types/RequestFormatEnum.ts index 6c5f28198..132d6eea5 100644 --- a/src/api/resources/accounting/types/RequestFormatEnum.ts +++ b/src/api/resources/accounting/types/RequestFormatEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `JSON` - JSON - * - `XML` - XML - * - `MULTIPART` - MULTIPART + * * `JSON` - JSON + * * `XML` - XML + * * `MULTIPART` - MULTIPART */ export type RequestFormatEnum = "JSON" | "XML" | "MULTIPART"; export const RequestFormatEnum = { diff --git a/src/api/resources/accounting/types/ResponseTypeEnum.ts b/src/api/resources/accounting/types/ResponseTypeEnum.ts index e123001a6..5bef2d16e 100644 --- a/src/api/resources/accounting/types/ResponseTypeEnum.ts +++ b/src/api/resources/accounting/types/ResponseTypeEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `JSON` - JSON - * - `BASE64_GZIP` - BASE64_GZIP + * * `JSON` - JSON + * * `BASE64_GZIP` - BASE64_GZIP */ export type ResponseTypeEnum = "JSON" | "BASE64_GZIP"; export const ResponseTypeEnum = { diff --git a/src/api/resources/accounting/types/RoleEnum.ts b/src/api/resources/accounting/types/RoleEnum.ts index d7b99ac49..a3341a6e1 100644 --- a/src/api/resources/accounting/types/RoleEnum.ts +++ b/src/api/resources/accounting/types/RoleEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `ADMIN` - ADMIN - * - `DEVELOPER` - DEVELOPER - * - `MEMBER` - MEMBER - * - `API` - API - * - `SYSTEM` - SYSTEM - * - `MERGE_TEAM` - MERGE_TEAM + * * `ADMIN` - ADMIN + * * `DEVELOPER` - DEVELOPER + * * `MEMBER` - MEMBER + * * `API` - API + * * `SYSTEM` - SYSTEM + * * `MERGE_TEAM` - MERGE_TEAM */ export type RoleEnum = "ADMIN" | "DEVELOPER" | "MEMBER" | "API" | "SYSTEM" | "MERGE_TEAM"; export const RoleEnum = { diff --git a/src/api/resources/accounting/types/SelectiveSyncConfigurationsUsageEnum.ts b/src/api/resources/accounting/types/SelectiveSyncConfigurationsUsageEnum.ts index db8508f89..473a4c15e 100644 --- a/src/api/resources/accounting/types/SelectiveSyncConfigurationsUsageEnum.ts +++ b/src/api/resources/accounting/types/SelectiveSyncConfigurationsUsageEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `IN_NEXT_SYNC` - IN_NEXT_SYNC - * - `IN_LAST_SYNC` - IN_LAST_SYNC + * * `IN_NEXT_SYNC` - IN_NEXT_SYNC + * * `IN_LAST_SYNC` - IN_LAST_SYNC */ export type SelectiveSyncConfigurationsUsageEnum = "IN_NEXT_SYNC" | "IN_LAST_SYNC"; export const SelectiveSyncConfigurationsUsageEnum = { diff --git a/src/api/resources/accounting/types/Status7D1Enum.ts b/src/api/resources/accounting/types/Status7D1Enum.ts index f6d957155..afba49543 100644 --- a/src/api/resources/accounting/types/Status7D1Enum.ts +++ b/src/api/resources/accounting/types/Status7D1Enum.ts @@ -3,8 +3,8 @@ */ /** - * - `ACTIVE` - ACTIVE - * - `ARCHIVED` - ARCHIVED + * * `ACTIVE` - ACTIVE + * * `ARCHIVED` - ARCHIVED */ export type Status7D1Enum = "ACTIVE" | "ARCHIVED"; export const Status7D1Enum = { diff --git a/src/api/resources/accounting/types/Status895Enum.ts b/src/api/resources/accounting/types/Status895Enum.ts index da57cd320..1c36d998e 100644 --- a/src/api/resources/accounting/types/Status895Enum.ts +++ b/src/api/resources/accounting/types/Status895Enum.ts @@ -3,8 +3,8 @@ */ /** - * - `ACTIVE` - ACTIVE - * - `INACTIVE` - INACTIVE + * * `ACTIVE` - ACTIVE + * * `INACTIVE` - INACTIVE */ export type Status895Enum = "ACTIVE" | "INACTIVE"; export const Status895Enum = { diff --git a/src/api/resources/accounting/types/StatusFd5Enum.ts b/src/api/resources/accounting/types/StatusFd5Enum.ts index 837436325..e8a7a4eec 100644 --- a/src/api/resources/accounting/types/StatusFd5Enum.ts +++ b/src/api/resources/accounting/types/StatusFd5Enum.ts @@ -3,12 +3,12 @@ */ /** - * - `SYNCING` - SYNCING - * - `DONE` - DONE - * - `FAILED` - FAILED - * - `DISABLED` - DISABLED - * - `PAUSED` - PAUSED - * - `PARTIALLY_SYNCED` - PARTIALLY_SYNCED + * * `SYNCING` - SYNCING + * * `DONE` - DONE + * * `FAILED` - FAILED + * * `DISABLED` - DISABLED + * * `PAUSED` - PAUSED + * * `PARTIALLY_SYNCED` - PARTIALLY_SYNCED */ export type StatusFd5Enum = "SYNCING" | "DONE" | "FAILED" | "DISABLED" | "PAUSED" | "PARTIALLY_SYNCED"; export const StatusFd5Enum = { diff --git a/src/api/resources/accounting/types/SyncStatus.ts b/src/api/resources/accounting/types/SyncStatus.ts index f990448f6..5fb05aab8 100644 --- a/src/api/resources/accounting/types/SyncStatus.ts +++ b/src/api/resources/accounting/types/SyncStatus.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/accounting/types/TaxComponent.ts b/src/api/resources/accounting/types/TaxComponent.ts index 4f3b36816..f82fa99e8 100644 --- a/src/api/resources/accounting/types/TaxComponent.ts +++ b/src/api/resources/accounting/types/TaxComponent.ts @@ -6,13 +6,10 @@ import * 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 { @@ -32,8 +29,8 @@ export interface TaxComponent { /** * 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 + * * `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/). */ diff --git a/src/api/resources/accounting/types/TaxComponentComponentType.ts b/src/api/resources/accounting/types/TaxComponentComponentType.ts index ec2a0adb7..8304832e2 100644 --- a/src/api/resources/accounting/types/TaxComponentComponentType.ts +++ b/src/api/resources/accounting/types/TaxComponentComponentType.ts @@ -7,7 +7,7 @@ import * 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 + * * `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 index 3db8e6cf8..db4ef7711 100644 --- a/src/api/resources/accounting/types/TaxRate.ts +++ b/src/api/resources/accounting/types/TaxRate.ts @@ -6,13 +6,10 @@ import * 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 { @@ -34,8 +31,8 @@ export interface TaxRate { /** * The tax rate’s status - `ACTIVE` if an active tax rate, `ARCHIVED` if not active. * - * - `ACTIVE` - ACTIVE - * - `ARCHIVED` - ARCHIVED + * * `ACTIVE` - ACTIVE + * * `ARCHIVED` - ARCHIVED */ status?: Merge.accounting.TaxRateStatus; /** The country the tax rate is associated with. */ diff --git a/src/api/resources/accounting/types/TaxRateStatus.ts b/src/api/resources/accounting/types/TaxRateStatus.ts index b00538d03..4f63c73e8 100644 --- a/src/api/resources/accounting/types/TaxRateStatus.ts +++ b/src/api/resources/accounting/types/TaxRateStatus.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The tax rate’s status - `ACTIVE` if an active tax rate, `ARCHIVED` if not active. * - * - `ACTIVE` - ACTIVE - * - `ARCHIVED` - ARCHIVED + * * `ACTIVE` - ACTIVE + * * `ARCHIVED` - ARCHIVED */ export type TaxRateStatus = Merge.accounting.Status7D1Enum | string; diff --git a/src/api/resources/accounting/types/TrackingCategory.ts b/src/api/resources/accounting/types/TrackingCategory.ts index 108ac747f..9d3c613c7 100644 --- a/src/api/resources/accounting/types/TrackingCategory.ts +++ b/src/api/resources/accounting/types/TrackingCategory.ts @@ -6,13 +6,10 @@ import * 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 { @@ -28,15 +25,15 @@ export interface TrackingCategory { /** * The tracking category's status. * - * - `ACTIVE` - ACTIVE - * - `ARCHIVED` - ARCHIVED + * * `ACTIVE` - ACTIVE + * * `ARCHIVED` - ARCHIVED */ status?: Merge.accounting.TrackingCategoryStatus; /** * The tracking category’s type. * - * - `CLASS` - CLASS - * - `DEPARTMENT` - DEPARTMENT + * * `CLASS` - CLASS + * * `DEPARTMENT` - DEPARTMENT */ categoryType?: Merge.accounting.TrackingCategoryCategoryType; parentCategory?: string; diff --git a/src/api/resources/accounting/types/TrackingCategoryCategoryType.ts b/src/api/resources/accounting/types/TrackingCategoryCategoryType.ts index 947c28af8..9dec20a8c 100644 --- a/src/api/resources/accounting/types/TrackingCategoryCategoryType.ts +++ b/src/api/resources/accounting/types/TrackingCategoryCategoryType.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The tracking category’s type. * - * - `CLASS` - CLASS - * - `DEPARTMENT` - DEPARTMENT + * * `CLASS` - CLASS + * * `DEPARTMENT` - DEPARTMENT */ export type TrackingCategoryCategoryType = Merge.accounting.CategoryTypeEnum | string; diff --git a/src/api/resources/accounting/types/TrackingCategoryStatus.ts b/src/api/resources/accounting/types/TrackingCategoryStatus.ts index b8d457d65..48eabd55c 100644 --- a/src/api/resources/accounting/types/TrackingCategoryStatus.ts +++ b/src/api/resources/accounting/types/TrackingCategoryStatus.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The tracking category's status. * - * - `ACTIVE` - ACTIVE - * - `ARCHIVED` - ARCHIVED + * * `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 index f9897b79e..cf8f37ea7 100644 --- a/src/api/resources/accounting/types/Transaction.ts +++ b/src/api/resources/accounting/types/Transaction.ts @@ -6,21 +6,17 @@ import * 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** + * * __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 { @@ -48,312 +44,312 @@ export interface Transaction { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/TransactionCurrency.ts b/src/api/resources/accounting/types/TransactionCurrency.ts index 83ae9ebed..939188e93 100644 --- a/src/api/resources/accounting/types/TransactionCurrency.ts +++ b/src/api/resources/accounting/types/TransactionCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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 index 356005104..af98b5e64 100644 --- a/src/api/resources/accounting/types/TransactionCurrencyEnum.ts +++ b/src/api/resources/accounting/types/TransactionCurrencyEnum.ts @@ -3,312 +3,312 @@ */ /** - * - `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) + * * `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 TransactionCurrencyEnum = | "XUA" diff --git a/src/api/resources/accounting/types/TransactionLineItem.ts b/src/api/resources/accounting/types/TransactionLineItem.ts index 1364c705f..4d028b528 100644 --- a/src/api/resources/accounting/types/TransactionLineItem.ts +++ b/src/api/resources/accounting/types/TransactionLineItem.ts @@ -6,13 +6,10 @@ import * 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 { @@ -43,312 +40,312 @@ export interface TransactionLineItem { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/TransactionLineItemCurrency.ts b/src/api/resources/accounting/types/TransactionLineItemCurrency.ts index 7338c4a0a..c19786f8e 100644 --- a/src/api/resources/accounting/types/TransactionLineItemCurrency.ts +++ b/src/api/resources/accounting/types/TransactionLineItemCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/UnderlyingTransactionTypeEnum.ts b/src/api/resources/accounting/types/UnderlyingTransactionTypeEnum.ts index f3fd44169..7c139bb74 100644 --- a/src/api/resources/accounting/types/UnderlyingTransactionTypeEnum.ts +++ b/src/api/resources/accounting/types/UnderlyingTransactionTypeEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `INVOICE` - INVOICE - * - `EXPENSE` - EXPENSE - * - `TRANSACTION` - TRANSACTION - * - `JOURNAL_ENTRY` - JOURNAL_ENTRY - * - `PAYMENT` - PAYMENT - * - `VENDOR_CREDIT` - VENDOR_CREDIT - * - `CREDIT_NOTE` - CREDIT_NOTE + * * `INVOICE` - INVOICE + * * `EXPENSE` - EXPENSE + * * `TRANSACTION` - TRANSACTION + * * `JOURNAL_ENTRY` - JOURNAL_ENTRY + * * `PAYMENT` - PAYMENT + * * `VENDOR_CREDIT` - VENDOR_CREDIT + * * `CREDIT_NOTE` - CREDIT_NOTE */ export type UnderlyingTransactionTypeEnum = | "INVOICE" diff --git a/src/api/resources/accounting/types/VendorCredit.ts b/src/api/resources/accounting/types/VendorCredit.ts index 1c574cde4..830f7f0b6 100644 --- a/src/api/resources/accounting/types/VendorCredit.ts +++ b/src/api/resources/accounting/types/VendorCredit.ts @@ -6,13 +6,10 @@ import * 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 { @@ -34,312 +31,312 @@ export interface VendorCredit { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/VendorCreditApplyLineForInvoice.ts b/src/api/resources/accounting/types/VendorCreditApplyLineForInvoice.ts index 026ecba4f..bcc6d3775 100644 --- a/src/api/resources/accounting/types/VendorCreditApplyLineForInvoice.ts +++ b/src/api/resources/accounting/types/VendorCreditApplyLineForInvoice.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCredit.ts b/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCredit.ts index 3f5f3f87b..f3cd8ab0e 100644 --- a/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCredit.ts +++ b/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCredit.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCreditRequest.ts b/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCreditRequest.ts index da1711931..6f2e3f05f 100644 --- a/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCreditRequest.ts +++ b/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCreditRequest.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/accounting/types/VendorCreditCurrency.ts b/src/api/resources/accounting/types/VendorCreditCurrency.ts index ae23cc7dc..4972848cd 100644 --- a/src/api/resources/accounting/types/VendorCreditCurrency.ts +++ b/src/api/resources/accounting/types/VendorCreditCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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 index c6a2ef64a..67522e637 100644 --- a/src/api/resources/accounting/types/VendorCreditLine.ts +++ b/src/api/resources/accounting/types/VendorCreditLine.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/accounting/types/VendorCreditLineRequest.ts b/src/api/resources/accounting/types/VendorCreditLineRequest.ts index 1a2e46954..6116c458e 100644 --- a/src/api/resources/accounting/types/VendorCreditLineRequest.ts +++ b/src/api/resources/accounting/types/VendorCreditLineRequest.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/accounting/types/VendorCreditRequest.ts b/src/api/resources/accounting/types/VendorCreditRequest.ts index 904a7533c..22f95e6c4 100644 --- a/src/api/resources/accounting/types/VendorCreditRequest.ts +++ b/src/api/resources/accounting/types/VendorCreditRequest.ts @@ -6,13 +6,10 @@ import * 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 { @@ -27,312 +24,312 @@ export interface VendorCreditRequest { /** * 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) + * * `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. */ diff --git a/src/api/resources/accounting/types/VendorCreditRequestCurrency.ts b/src/api/resources/accounting/types/VendorCreditRequestCurrency.ts index 7140d8c98..eeba3fa2a 100644 --- a/src/api/resources/accounting/types/VendorCreditRequestCurrency.ts +++ b/src/api/resources/accounting/types/VendorCreditRequestCurrency.ts @@ -7,311 +7,311 @@ import * 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) + * * `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/ats/resources/accountDetails/client/Client.ts b/src/api/resources/ats/resources/accountDetails/client/Client.ts index 7ef9c1037..0047de58a 100644 --- a/src/api/resources/ats/resources/accountDetails/client/Client.ts +++ b/src/api/resources/ats/resources/accountDetails/client/Client.ts @@ -70,8 +70,8 @@ export class AccountDetails { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/accountToken/client/Client.ts b/src/api/resources/ats/resources/accountToken/client/Client.ts index 8df1f8e2f..9d3bf1938 100644 --- a/src/api/resources/ats/resources/accountToken/client/Client.ts +++ b/src/api/resources/ats/resources/accountToken/client/Client.ts @@ -73,8 +73,8 @@ export class AccountToken { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/activities/client/Client.ts b/src/api/resources/ats/resources/activities/client/Client.ts index 5b06ffd90..48b1dfe84 100644 --- a/src/api/resources/ats/resources/activities/client/Client.ts +++ b/src/api/resources/ats/resources/activities/client/Client.ts @@ -152,8 +152,8 @@ export class Activities { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -249,8 +249,8 @@ export class Activities { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -365,8 +365,8 @@ export class Activities { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -446,8 +446,8 @@ export class Activities { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/applications/client/Client.ts b/src/api/resources/ats/resources/applications/client/Client.ts index c9c0439e3..a969e9829 100644 --- a/src/api/resources/ats/resources/applications/client/Client.ts +++ b/src/api/resources/ats/resources/applications/client/Client.ts @@ -163,8 +163,8 @@ export class Applications { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -263,8 +263,8 @@ export class Applications { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -367,8 +367,8 @@ export class Applications { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -464,8 +464,8 @@ export class Applications { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -557,8 +557,8 @@ export class Applications { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/asyncPassthrough/client/Client.ts b/src/api/resources/ats/resources/asyncPassthrough/client/Client.ts index 3c6e41b6e..b7cf8a1ab 100644 --- a/src/api/resources/ats/resources/asyncPassthrough/client/Client.ts +++ b/src/api/resources/ats/resources/asyncPassthrough/client/Client.ts @@ -76,8 +76,8 @@ export class AsyncPassthrough { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -160,8 +160,8 @@ export class AsyncPassthrough { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/attachments/client/Client.ts b/src/api/resources/ats/resources/attachments/client/Client.ts index 4a7dafac1..fd4f00394 100644 --- a/src/api/resources/ats/resources/attachments/client/Client.ts +++ b/src/api/resources/ats/resources/attachments/client/Client.ts @@ -146,8 +146,8 @@ export class Attachments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -243,8 +243,8 @@ export class Attachments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -353,8 +353,8 @@ export class Attachments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -434,8 +434,8 @@ export class Attachments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/auditTrail/client/Client.ts b/src/api/resources/ats/resources/auditTrail/client/Client.ts index 6fe687061..18f343646 100644 --- a/src/api/resources/ats/resources/auditTrail/client/Client.ts +++ b/src/api/resources/ats/resources/auditTrail/client/Client.ts @@ -99,8 +99,8 @@ export class AuditTrail { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/availableActions/client/Client.ts b/src/api/resources/ats/resources/availableActions/client/Client.ts index 578e6e6b6..c735483dd 100644 --- a/src/api/resources/ats/resources/availableActions/client/Client.ts +++ b/src/api/resources/ats/resources/availableActions/client/Client.ts @@ -70,8 +70,8 @@ export class AvailableActions { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/candidates/client/Client.ts b/src/api/resources/ats/resources/candidates/client/Client.ts index 02632fc4b..0c9e7a977 100644 --- a/src/api/resources/ats/resources/candidates/client/Client.ts +++ b/src/api/resources/ats/resources/candidates/client/Client.ts @@ -153,8 +153,8 @@ export class Candidates { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -250,8 +250,8 @@ export class Candidates { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -354,8 +354,8 @@ export class Candidates { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -454,8 +454,8 @@ export class Candidates { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -546,8 +546,8 @@ export class Candidates { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -623,8 +623,8 @@ export class Candidates { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -705,8 +705,8 @@ export class Candidates { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/deleteAccount/client/Client.ts b/src/api/resources/ats/resources/deleteAccount/client/Client.ts index 7da9834ef..9c05e8030 100644 --- a/src/api/resources/ats/resources/deleteAccount/client/Client.ts +++ b/src/api/resources/ats/resources/deleteAccount/client/Client.ts @@ -64,8 +64,8 @@ export class DeleteAccount { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/departments/client/Client.ts b/src/api/resources/ats/resources/departments/client/Client.ts index 061a071fe..8e5625282 100644 --- a/src/api/resources/ats/resources/departments/client/Client.ts +++ b/src/api/resources/ats/resources/departments/client/Client.ts @@ -126,8 +126,8 @@ export class Departments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -223,8 +223,8 @@ export class Departments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/eeocs/client/Client.ts b/src/api/resources/ats/resources/eeocs/client/Client.ts index bea9ffc57..beb62008a 100644 --- a/src/api/resources/ats/resources/eeocs/client/Client.ts +++ b/src/api/resources/ats/resources/eeocs/client/Client.ts @@ -151,8 +151,8 @@ export class Eeocs { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -265,8 +265,8 @@ export class Eeocs { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/fieldMapping/client/Client.ts b/src/api/resources/ats/resources/fieldMapping/client/Client.ts index c7df028c5..7b3886a5b 100644 --- a/src/api/resources/ats/resources/fieldMapping/client/Client.ts +++ b/src/api/resources/ats/resources/fieldMapping/client/Client.ts @@ -79,8 +79,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -176,8 +176,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -261,8 +261,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -351,8 +351,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -449,8 +449,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -530,8 +530,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/forceResync/client/Client.ts b/src/api/resources/ats/resources/forceResync/client/Client.ts index 6255bae1c..cb12bb2e0 100644 --- a/src/api/resources/ats/resources/forceResync/client/Client.ts +++ b/src/api/resources/ats/resources/forceResync/client/Client.ts @@ -70,8 +70,8 @@ export class ForceResync { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/generateKey/client/Client.ts b/src/api/resources/ats/resources/generateKey/client/Client.ts index 1bbb26276..d727aa833 100644 --- a/src/api/resources/ats/resources/generateKey/client/Client.ts +++ b/src/api/resources/ats/resources/generateKey/client/Client.ts @@ -75,8 +75,8 @@ export class GenerateKey { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/interviews/client/Client.ts b/src/api/resources/ats/resources/interviews/client/Client.ts index 601d0cb5a..10fda8771 100644 --- a/src/api/resources/ats/resources/interviews/client/Client.ts +++ b/src/api/resources/ats/resources/interviews/client/Client.ts @@ -163,8 +163,8 @@ export class Interviews { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -260,8 +260,8 @@ export class Interviews { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -374,8 +374,8 @@ export class Interviews { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -455,8 +455,8 @@ export class Interviews { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/issues/client/Client.ts b/src/api/resources/ats/resources/issues/client/Client.ts index abfa8e5ff..6d415f9d6 100644 --- a/src/api/resources/ats/resources/issues/client/Client.ts +++ b/src/api/resources/ats/resources/issues/client/Client.ts @@ -148,8 +148,8 @@ export class Issues { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -229,8 +229,8 @@ export class Issues { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/issues/client/requests/IssuesListRequest.ts b/src/api/resources/ats/resources/issues/client/requests/IssuesListRequest.ts index 0c68b972c..aec5b208b 100644 --- a/src/api/resources/ats/resources/issues/client/requests/IssuesListRequest.ts +++ b/src/api/resources/ats/resources/issues/client/requests/IssuesListRequest.ts @@ -55,8 +55,8 @@ export interface IssuesListRequest { /** * Status of the issue. Options: ('ONGOING', 'RESOLVED') * - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ status?: Merge.ats.IssuesListRequestStatus; } diff --git a/src/api/resources/ats/resources/jobInterviewStages/client/Client.ts b/src/api/resources/ats/resources/jobInterviewStages/client/Client.ts index ffe702ec0..e8d8a22a2 100644 --- a/src/api/resources/ats/resources/jobInterviewStages/client/Client.ts +++ b/src/api/resources/ats/resources/jobInterviewStages/client/Client.ts @@ -136,8 +136,8 @@ export class JobInterviewStages { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -237,8 +237,8 @@ export class JobInterviewStages { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/jobPostings/client/Client.ts b/src/api/resources/ats/resources/jobPostings/client/Client.ts index 3cbdce9c8..91a486219 100644 --- a/src/api/resources/ats/resources/jobPostings/client/Client.ts +++ b/src/api/resources/ats/resources/jobPostings/client/Client.ts @@ -138,8 +138,8 @@ export class JobPostings { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -239,8 +239,8 @@ export class JobPostings { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/jobPostings/client/requests/JobPostingsListRequest.ts b/src/api/resources/ats/resources/jobPostings/client/requests/JobPostingsListRequest.ts index 1d09301c3..9e20f3d5a 100644 --- a/src/api/resources/ats/resources/jobPostings/client/requests/JobPostingsListRequest.ts +++ b/src/api/resources/ats/resources/jobPostings/client/requests/JobPostingsListRequest.ts @@ -56,11 +56,11 @@ export interface JobPostingsListRequest { /** * If provided, will only return Job Postings with this status. Options: ('PUBLISHED', 'CLOSED', 'DRAFT', 'INTERNAL', 'PENDING') * - * - `PUBLISHED` - PUBLISHED - * - `CLOSED` - CLOSED - * - `DRAFT` - DRAFT - * - `INTERNAL` - INTERNAL - * - `PENDING` - PENDING + * * `PUBLISHED` - PUBLISHED + * * `CLOSED` - CLOSED + * * `DRAFT` - DRAFT + * * `INTERNAL` - INTERNAL + * * `PENDING` - PENDING */ status?: Merge.ats.JobPostingsListRequestStatus; } diff --git a/src/api/resources/ats/resources/jobs/client/Client.ts b/src/api/resources/ats/resources/jobs/client/Client.ts index fc196a1e2..50916de2a 100644 --- a/src/api/resources/ats/resources/jobs/client/Client.ts +++ b/src/api/resources/ats/resources/jobs/client/Client.ts @@ -160,8 +160,8 @@ export class Jobs { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -271,8 +271,8 @@ export class Jobs { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -386,8 +386,8 @@ export class Jobs { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/jobs/client/requests/JobsListRequest.ts b/src/api/resources/ats/resources/jobs/client/requests/JobsListRequest.ts index cfd8922ef..55f78dd1e 100644 --- a/src/api/resources/ats/resources/jobs/client/requests/JobsListRequest.ts +++ b/src/api/resources/ats/resources/jobs/client/requests/JobsListRequest.ts @@ -72,11 +72,11 @@ export interface JobsListRequest { /** * If provided, will only return jobs with this status. Options: ('OPEN', 'CLOSED', 'DRAFT', 'ARCHIVED', 'PENDING') * - * - `OPEN` - OPEN - * - `CLOSED` - CLOSED - * - `DRAFT` - DRAFT - * - `ARCHIVED` - ARCHIVED - * - `PENDING` - PENDING + * * `OPEN` - OPEN + * * `CLOSED` - CLOSED + * * `DRAFT` - DRAFT + * * `ARCHIVED` - ARCHIVED + * * `PENDING` - PENDING */ status?: Merge.ats.JobsListRequestStatus; } diff --git a/src/api/resources/ats/resources/linkToken/client/Client.ts b/src/api/resources/ats/resources/linkToken/client/Client.ts index e64dce5a5..d9e7fe00c 100644 --- a/src/api/resources/ats/resources/linkToken/client/Client.ts +++ b/src/api/resources/ats/resources/linkToken/client/Client.ts @@ -78,8 +78,8 @@ export class LinkToken { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/linkedAccounts/client/Client.ts b/src/api/resources/ats/resources/linkedAccounts/client/Client.ts index 261a916b5..69ea13464 100644 --- a/src/api/resources/ats/resources/linkedAccounts/client/Client.ts +++ b/src/api/resources/ats/resources/linkedAccounts/client/Client.ts @@ -143,8 +143,8 @@ export class LinkedAccounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts b/src/api/resources/ats/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts index 7ad64728f..4ac859bf5 100644 --- a/src/api/resources/ats/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts +++ b/src/api/resources/ats/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts @@ -12,13 +12,13 @@ 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 + * * `hris` - hris + * * `ats` - ats + * * `accounting` - accounting + * * `ticketing` - ticketing + * * `crm` - crm + * * `mktg` - mktg + * * `filestorage` - filestorage */ category?: Merge.ats.LinkedAccountsListRequestCategory; /** diff --git a/src/api/resources/ats/resources/offers/client/Client.ts b/src/api/resources/ats/resources/offers/client/Client.ts index 700efe569..5d1c0cb17 100644 --- a/src/api/resources/ats/resources/offers/client/Client.ts +++ b/src/api/resources/ats/resources/offers/client/Client.ts @@ -153,8 +153,8 @@ export class Offers { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -264,8 +264,8 @@ export class Offers { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/offices/client/Client.ts b/src/api/resources/ats/resources/offices/client/Client.ts index 031928029..a12d97624 100644 --- a/src/api/resources/ats/resources/offices/client/Client.ts +++ b/src/api/resources/ats/resources/offices/client/Client.ts @@ -126,8 +126,8 @@ export class Offices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -223,8 +223,8 @@ export class Offices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/passthrough/client/Client.ts b/src/api/resources/ats/resources/passthrough/client/Client.ts index 406f0cc20..77e08b534 100644 --- a/src/api/resources/ats/resources/passthrough/client/Client.ts +++ b/src/api/resources/ats/resources/passthrough/client/Client.ts @@ -76,8 +76,8 @@ export class Passthrough { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/regenerateKey/client/Client.ts b/src/api/resources/ats/resources/regenerateKey/client/Client.ts index 75f0e3499..48d1066f7 100644 --- a/src/api/resources/ats/resources/regenerateKey/client/Client.ts +++ b/src/api/resources/ats/resources/regenerateKey/client/Client.ts @@ -75,8 +75,8 @@ export class RegenerateKey { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/rejectReasons/client/Client.ts b/src/api/resources/ats/resources/rejectReasons/client/Client.ts index 02e7d4667..3bcf1afa0 100644 --- a/src/api/resources/ats/resources/rejectReasons/client/Client.ts +++ b/src/api/resources/ats/resources/rejectReasons/client/Client.ts @@ -126,8 +126,8 @@ export class RejectReasons { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -223,8 +223,8 @@ export class RejectReasons { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/scopes/client/Client.ts b/src/api/resources/ats/resources/scopes/client/Client.ts index 4e6ed598a..fcfbfe722 100644 --- a/src/api/resources/ats/resources/scopes/client/Client.ts +++ b/src/api/resources/ats/resources/scopes/client/Client.ts @@ -70,8 +70,8 @@ export class Scopes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -150,8 +150,8 @@ export class Scopes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -256,8 +256,8 @@ export class Scopes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/scorecards/client/Client.ts b/src/api/resources/ats/resources/scorecards/client/Client.ts index da4f0caec..f60bce1e0 100644 --- a/src/api/resources/ats/resources/scorecards/client/Client.ts +++ b/src/api/resources/ats/resources/scorecards/client/Client.ts @@ -158,8 +158,8 @@ export class Scorecards { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -269,8 +269,8 @@ export class Scorecards { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/syncStatus/client/Client.ts b/src/api/resources/ats/resources/syncStatus/client/Client.ts index 40d4e336a..79010881f 100644 --- a/src/api/resources/ats/resources/syncStatus/client/Client.ts +++ b/src/api/resources/ats/resources/syncStatus/client/Client.ts @@ -83,8 +83,8 @@ export class SyncStatus { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/tags/client/Client.ts b/src/api/resources/ats/resources/tags/client/Client.ts index f9bbb7b7b..22dd05876 100644 --- a/src/api/resources/ats/resources/tags/client/Client.ts +++ b/src/api/resources/ats/resources/tags/client/Client.ts @@ -126,8 +126,8 @@ export class Tags { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/users/client/Client.ts b/src/api/resources/ats/resources/users/client/Client.ts index 78c5da4ae..0bcd1ea78 100644 --- a/src/api/resources/ats/resources/users/client/Client.ts +++ b/src/api/resources/ats/resources/users/client/Client.ts @@ -141,8 +141,8 @@ export class Users { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -246,8 +246,8 @@ export class Users { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/resources/webhookReceivers/client/Client.ts b/src/api/resources/ats/resources/webhookReceivers/client/Client.ts index de4933bf3..df7af2e2f 100644 --- a/src/api/resources/ats/resources/webhookReceivers/client/Client.ts +++ b/src/api/resources/ats/resources/webhookReceivers/client/Client.ts @@ -70,8 +70,8 @@ export class WebhookReceivers { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -156,8 +156,8 @@ export class WebhookReceivers { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ats/types/AccessRoleEnum.ts b/src/api/resources/ats/types/AccessRoleEnum.ts index ded8b7e8c..b718dbf60 100644 --- a/src/api/resources/ats/types/AccessRoleEnum.ts +++ b/src/api/resources/ats/types/AccessRoleEnum.ts @@ -3,11 +3,11 @@ */ /** - * - `SUPER_ADMIN` - SUPER_ADMIN - * - `ADMIN` - ADMIN - * - `TEAM_MEMBER` - TEAM_MEMBER - * - `LIMITED_TEAM_MEMBER` - LIMITED_TEAM_MEMBER - * - `INTERVIEWER` - INTERVIEWER + * * `SUPER_ADMIN` - SUPER_ADMIN + * * `ADMIN` - ADMIN + * * `TEAM_MEMBER` - TEAM_MEMBER + * * `LIMITED_TEAM_MEMBER` - LIMITED_TEAM_MEMBER + * * `INTERVIEWER` - INTERVIEWER */ export type AccessRoleEnum = "SUPER_ADMIN" | "ADMIN" | "TEAM_MEMBER" | "LIMITED_TEAM_MEMBER" | "INTERVIEWER"; export const AccessRoleEnum = { diff --git a/src/api/resources/ats/types/AccountDetailsAndActions.ts b/src/api/resources/ats/types/AccountDetailsAndActions.ts index b89ef4cf4..9a73fbbce 100644 --- a/src/api/resources/ats/types/AccountDetailsAndActions.ts +++ b/src/api/resources/ats/types/AccountDetailsAndActions.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/ats/types/AccountDetailsAndActionsStatusEnum.ts b/src/api/resources/ats/types/AccountDetailsAndActionsStatusEnum.ts index c0020279f..3a923df0f 100644 --- a/src/api/resources/ats/types/AccountDetailsAndActionsStatusEnum.ts +++ b/src/api/resources/ats/types/AccountDetailsAndActionsStatusEnum.ts @@ -3,10 +3,10 @@ */ /** - * - `COMPLETE` - COMPLETE - * - `INCOMPLETE` - INCOMPLETE - * - `RELINK_NEEDED` - RELINK_NEEDED - * - `IDLE` - IDLE + * * `COMPLETE` - COMPLETE + * * `INCOMPLETE` - INCOMPLETE + * * `RELINK_NEEDED` - RELINK_NEEDED + * * `IDLE` - IDLE */ export type AccountDetailsAndActionsStatusEnum = "COMPLETE" | "INCOMPLETE" | "RELINK_NEEDED" | "IDLE"; export const AccountDetailsAndActionsStatusEnum = { diff --git a/src/api/resources/ats/types/Activity.ts b/src/api/resources/ats/types/Activity.ts index ed6fcdac7..e896f725d 100644 --- a/src/api/resources/ats/types/Activity.ts +++ b/src/api/resources/ats/types/Activity.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Activity Object - * * ### Description - * * The `Activity` object is used to represent an activity for a candidate performed by a user. - * * ### Usage Example - * * Fetch from the `LIST Activities` endpoint and filter by `ID` to show all activities. */ export interface Activity { @@ -30,9 +26,9 @@ export interface Activity { /** * The activity's type. * - * - `NOTE` - NOTE - * - `EMAIL` - EMAIL - * - `OTHER` - OTHER + * * `NOTE` - NOTE + * * `EMAIL` - EMAIL + * * `OTHER` - OTHER */ activityType?: Merge.ats.ActivityActivityType; /** The activity's subject. */ @@ -42,9 +38,9 @@ export interface Activity { /** * The activity's visibility. * - * - `ADMIN_ONLY` - ADMIN_ONLY - * - `PUBLIC` - PUBLIC - * - `PRIVATE` - PRIVATE + * * `ADMIN_ONLY` - ADMIN_ONLY + * * `PUBLIC` - PUBLIC + * * `PRIVATE` - PRIVATE */ visibility?: Merge.ats.ActivityVisibility; candidate?: string; diff --git a/src/api/resources/ats/types/ActivityActivityType.ts b/src/api/resources/ats/types/ActivityActivityType.ts index 67a0c7013..9ba3bacf1 100644 --- a/src/api/resources/ats/types/ActivityActivityType.ts +++ b/src/api/resources/ats/types/ActivityActivityType.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The activity's type. * - * - `NOTE` - NOTE - * - `EMAIL` - EMAIL - * - `OTHER` - OTHER + * * `NOTE` - NOTE + * * `EMAIL` - EMAIL + * * `OTHER` - OTHER */ export type ActivityActivityType = Merge.ats.ActivityTypeEnum | string; diff --git a/src/api/resources/ats/types/ActivityRequest.ts b/src/api/resources/ats/types/ActivityRequest.ts index 3e349f372..291fd1ec1 100644 --- a/src/api/resources/ats/types/ActivityRequest.ts +++ b/src/api/resources/ats/types/ActivityRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Activity Object - * * ### Description - * * The `Activity` object is used to represent an activity for a candidate performed by a user. - * * ### Usage Example - * * Fetch from the `LIST Activities` endpoint and filter by `ID` to show all activities. */ export interface ActivityRequest { @@ -21,9 +17,9 @@ export interface ActivityRequest { /** * The activity's type. * - * - `NOTE` - NOTE - * - `EMAIL` - EMAIL - * - `OTHER` - OTHER + * * `NOTE` - NOTE + * * `EMAIL` - EMAIL + * * `OTHER` - OTHER */ activityType?: Merge.ats.ActivityRequestActivityType; /** The activity's subject. */ @@ -33,9 +29,9 @@ export interface ActivityRequest { /** * The activity's visibility. * - * - `ADMIN_ONLY` - ADMIN_ONLY - * - `PUBLIC` - PUBLIC - * - `PRIVATE` - PRIVATE + * * `ADMIN_ONLY` - ADMIN_ONLY + * * `PUBLIC` - PUBLIC + * * `PRIVATE` - PRIVATE */ visibility?: Merge.ats.ActivityRequestVisibility; candidate?: string; diff --git a/src/api/resources/ats/types/ActivityRequestActivityType.ts b/src/api/resources/ats/types/ActivityRequestActivityType.ts index e1146b69a..f422b0aec 100644 --- a/src/api/resources/ats/types/ActivityRequestActivityType.ts +++ b/src/api/resources/ats/types/ActivityRequestActivityType.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The activity's type. * - * - `NOTE` - NOTE - * - `EMAIL` - EMAIL - * - `OTHER` - OTHER + * * `NOTE` - NOTE + * * `EMAIL` - EMAIL + * * `OTHER` - OTHER */ export type ActivityRequestActivityType = Merge.ats.ActivityTypeEnum | string; diff --git a/src/api/resources/ats/types/ActivityRequestVisibility.ts b/src/api/resources/ats/types/ActivityRequestVisibility.ts index 8b8348487..77d9737ef 100644 --- a/src/api/resources/ats/types/ActivityRequestVisibility.ts +++ b/src/api/resources/ats/types/ActivityRequestVisibility.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The activity's visibility. * - * - `ADMIN_ONLY` - ADMIN_ONLY - * - `PUBLIC` - PUBLIC - * - `PRIVATE` - PRIVATE + * * `ADMIN_ONLY` - ADMIN_ONLY + * * `PUBLIC` - PUBLIC + * * `PRIVATE` - PRIVATE */ export type ActivityRequestVisibility = Merge.ats.VisibilityEnum | string; diff --git a/src/api/resources/ats/types/ActivityTypeEnum.ts b/src/api/resources/ats/types/ActivityTypeEnum.ts index 0cb281631..ef937e001 100644 --- a/src/api/resources/ats/types/ActivityTypeEnum.ts +++ b/src/api/resources/ats/types/ActivityTypeEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `NOTE` - NOTE - * - `EMAIL` - EMAIL - * - `OTHER` - OTHER + * * `NOTE` - NOTE + * * `EMAIL` - EMAIL + * * `OTHER` - OTHER */ export type ActivityTypeEnum = "NOTE" | "EMAIL" | "OTHER"; export const ActivityTypeEnum = { diff --git a/src/api/resources/ats/types/ActivityVisibility.ts b/src/api/resources/ats/types/ActivityVisibility.ts index a33aee82e..11b6ee958 100644 --- a/src/api/resources/ats/types/ActivityVisibility.ts +++ b/src/api/resources/ats/types/ActivityVisibility.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The activity's visibility. * - * - `ADMIN_ONLY` - ADMIN_ONLY - * - `PUBLIC` - PUBLIC - * - `PRIVATE` - PRIVATE + * * `ADMIN_ONLY` - ADMIN_ONLY + * * `PUBLIC` - PUBLIC + * * `PRIVATE` - PRIVATE */ export type ActivityVisibility = Merge.ats.VisibilityEnum | string; diff --git a/src/api/resources/ats/types/Application.ts b/src/api/resources/ats/types/Application.ts index dac73c043..578bf00b2 100644 --- a/src/api/resources/ats/types/Application.ts +++ b/src/api/resources/ats/types/Application.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Application Object - * * ### Description - * * The Application Object is used to represent a candidate's journey through a particular Job's recruiting process. If a Candidate applies for multiple Jobs, there will be a separate Application for each Job if the third-party integration allows it. * * ### Usage Example - * * Fetch from the `LIST Applications` endpoint and filter by `ID` to show all applications. */ export interface Application { diff --git a/src/api/resources/ats/types/ApplicationRequest.ts b/src/api/resources/ats/types/ApplicationRequest.ts index e5fc4907e..cc10a4520 100644 --- a/src/api/resources/ats/types/ApplicationRequest.ts +++ b/src/api/resources/ats/types/ApplicationRequest.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Application Object - * * ### Description - * * The Application Object is used to represent a candidate's journey through a particular Job's recruiting process. If a Candidate applies for multiple Jobs, there will be a separate Application for each Job if the third-party integration allows it. * * ### Usage Example - * * Fetch from the `LIST Applications` endpoint and filter by `ID` to show all applications. */ export interface ApplicationRequest { diff --git a/src/api/resources/ats/types/Attachment.ts b/src/api/resources/ats/types/Attachment.ts index b04f1954e..0b2686f28 100644 --- a/src/api/resources/ats/types/Attachment.ts +++ b/src/api/resources/ats/types/Attachment.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Attachment Object - * * ### Description - * * The `Attachment` object is used to represent a file attached to a candidate. - * * ### Usage Example - * * Fetch from the `LIST Attachments` endpoint and view attachments accessible by a company. */ export interface Attachment { @@ -32,10 +28,10 @@ export interface Attachment { /** * The attachment's type. * - * - `RESUME` - RESUME - * - `COVER_LETTER` - COVER_LETTER - * - `OFFER_LETTER` - OFFER_LETTER - * - `OTHER` - OTHER + * * `RESUME` - RESUME + * * `COVER_LETTER` - COVER_LETTER + * * `OFFER_LETTER` - OFFER_LETTER + * * `OTHER` - OTHER */ attachmentType?: Merge.ats.AttachmentAttachmentType; /** 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/). */ diff --git a/src/api/resources/ats/types/AttachmentAttachmentType.ts b/src/api/resources/ats/types/AttachmentAttachmentType.ts index 0ce11d6ff..3025bebe3 100644 --- a/src/api/resources/ats/types/AttachmentAttachmentType.ts +++ b/src/api/resources/ats/types/AttachmentAttachmentType.ts @@ -7,9 +7,9 @@ import * as Merge from "../../../index"; /** * The attachment's type. * - * - `RESUME` - RESUME - * - `COVER_LETTER` - COVER_LETTER - * - `OFFER_LETTER` - OFFER_LETTER - * - `OTHER` - OTHER + * * `RESUME` - RESUME + * * `COVER_LETTER` - COVER_LETTER + * * `OFFER_LETTER` - OFFER_LETTER + * * `OTHER` - OTHER */ export type AttachmentAttachmentType = Merge.ats.AttachmentTypeEnum | string; diff --git a/src/api/resources/ats/types/AttachmentRequest.ts b/src/api/resources/ats/types/AttachmentRequest.ts index bec466857..61604dbea 100644 --- a/src/api/resources/ats/types/AttachmentRequest.ts +++ b/src/api/resources/ats/types/AttachmentRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Attachment Object - * * ### Description - * * The `Attachment` object is used to represent a file attached to a candidate. - * * ### Usage Example - * * Fetch from the `LIST Attachments` endpoint and view attachments accessible by a company. */ export interface AttachmentRequest { @@ -25,10 +21,10 @@ export interface AttachmentRequest { /** * The attachment's type. * - * - `RESUME` - RESUME - * - `COVER_LETTER` - COVER_LETTER - * - `OFFER_LETTER` - OFFER_LETTER - * - `OTHER` - OTHER + * * `RESUME` - RESUME + * * `COVER_LETTER` - COVER_LETTER + * * `OFFER_LETTER` - OFFER_LETTER + * * `OTHER` - OTHER */ attachmentType?: Merge.ats.AttachmentRequestAttachmentType; integrationParams?: Record; diff --git a/src/api/resources/ats/types/AttachmentRequestAttachmentType.ts b/src/api/resources/ats/types/AttachmentRequestAttachmentType.ts index 4a97b05cd..f2bc3fbef 100644 --- a/src/api/resources/ats/types/AttachmentRequestAttachmentType.ts +++ b/src/api/resources/ats/types/AttachmentRequestAttachmentType.ts @@ -7,9 +7,9 @@ import * as Merge from "../../../index"; /** * The attachment's type. * - * - `RESUME` - RESUME - * - `COVER_LETTER` - COVER_LETTER - * - `OFFER_LETTER` - OFFER_LETTER - * - `OTHER` - OTHER + * * `RESUME` - RESUME + * * `COVER_LETTER` - COVER_LETTER + * * `OFFER_LETTER` - OFFER_LETTER + * * `OTHER` - OTHER */ export type AttachmentRequestAttachmentType = Merge.ats.AttachmentTypeEnum | string; diff --git a/src/api/resources/ats/types/AttachmentTypeEnum.ts b/src/api/resources/ats/types/AttachmentTypeEnum.ts index 134385214..20c84bd41 100644 --- a/src/api/resources/ats/types/AttachmentTypeEnum.ts +++ b/src/api/resources/ats/types/AttachmentTypeEnum.ts @@ -3,10 +3,10 @@ */ /** - * - `RESUME` - RESUME - * - `COVER_LETTER` - COVER_LETTER - * - `OFFER_LETTER` - OFFER_LETTER - * - `OTHER` - OTHER + * * `RESUME` - RESUME + * * `COVER_LETTER` - COVER_LETTER + * * `OFFER_LETTER` - OFFER_LETTER + * * `OTHER` - OTHER */ export type AttachmentTypeEnum = "RESUME" | "COVER_LETTER" | "OFFER_LETTER" | "OTHER"; export const AttachmentTypeEnum = { diff --git a/src/api/resources/ats/types/AuditLogEvent.ts b/src/api/resources/ats/types/AuditLogEvent.ts index 6a7be65a1..32b7af14e 100644 --- a/src/api/resources/ats/types/AuditLogEvent.ts +++ b/src/api/resources/ats/types/AuditLogEvent.ts @@ -13,60 +13,60 @@ export interface AuditLogEvent { /** * 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 + * * `ADMIN` - ADMIN + * * `DEVELOPER` - DEVELOPER + * * `MEMBER` - MEMBER + * * `API` - API + * * `SYSTEM` - SYSTEM + * * `MERGE_TEAM` - MERGE_TEAM */ role: Merge.ats.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 - * - `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 + * * `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 + * * `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.ats.AuditLogEventEventType; eventDescription: string; diff --git a/src/api/resources/ats/types/AuditLogEventEventType.ts b/src/api/resources/ats/types/AuditLogEventEventType.ts index f79499ed1..87bc451f0 100644 --- a/src/api/resources/ats/types/AuditLogEventEventType.ts +++ b/src/api/resources/ats/types/AuditLogEventEventType.ts @@ -7,47 +7,47 @@ import * 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 - * - `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 + * * `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 + * * `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.ats.EventTypeEnum | string; diff --git a/src/api/resources/ats/types/AuditLogEventRole.ts b/src/api/resources/ats/types/AuditLogEventRole.ts index f37ce00f6..1bd1d89c1 100644 --- a/src/api/resources/ats/types/AuditLogEventRole.ts +++ b/src/api/resources/ats/types/AuditLogEventRole.ts @@ -7,11 +7,11 @@ import * 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 + * * `ADMIN` - ADMIN + * * `DEVELOPER` - DEVELOPER + * * `MEMBER` - MEMBER + * * `API` - API + * * `SYSTEM` - SYSTEM + * * `MERGE_TEAM` - MERGE_TEAM */ export type AuditLogEventRole = Merge.ats.RoleEnum | string; diff --git a/src/api/resources/ats/types/AvailableActions.ts b/src/api/resources/ats/types/AvailableActions.ts index dc2aa71c5..a32693596 100644 --- a/src/api/resources/ats/types/AvailableActions.ts +++ b/src/api/resources/ats/types/AvailableActions.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/ats/types/Candidate.ts b/src/api/resources/ats/types/Candidate.ts index d8f208964..b05081100 100644 --- a/src/api/resources/ats/types/Candidate.ts +++ b/src/api/resources/ats/types/Candidate.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Candidate Object - * * ### Description - * * The `Candidate` object is used to represent profile information about a given Candidate. Because it is specific to a Candidate, this information stays constant across applications. - * * ### Usage Example - * * Fetch from the `LIST Candidates` endpoint and filter by `ID` to show all candidates. */ export interface Candidate { diff --git a/src/api/resources/ats/types/CandidateRequest.ts b/src/api/resources/ats/types/CandidateRequest.ts index fbf621b0b..6a7fa29ef 100644 --- a/src/api/resources/ats/types/CandidateRequest.ts +++ b/src/api/resources/ats/types/CandidateRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Candidate Object - * * ### Description - * * The `Candidate` object is used to represent profile information about a given Candidate. Because it is specific to a Candidate, this information stays constant across applications. - * * ### Usage Example - * * Fetch from the `LIST Candidates` endpoint and filter by `ID` to show all candidates. */ export interface CandidateRequest { diff --git a/src/api/resources/ats/types/CategoriesEnum.ts b/src/api/resources/ats/types/CategoriesEnum.ts index a5eb57230..ca8bf9e21 100644 --- a/src/api/resources/ats/types/CategoriesEnum.ts +++ b/src/api/resources/ats/types/CategoriesEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `hris` - hris - * - `ats` - ats - * - `accounting` - accounting - * - `ticketing` - ticketing - * - `crm` - crm - * - `mktg` - mktg - * - `filestorage` - filestorage + * * `hris` - hris + * * `ats` - ats + * * `accounting` - accounting + * * `ticketing` - ticketing + * * `crm` - crm + * * `mktg` - mktg + * * `filestorage` - filestorage */ export type CategoriesEnum = "hris" | "ats" | "accounting" | "ticketing" | "crm" | "mktg" | "filestorage"; export const CategoriesEnum = { diff --git a/src/api/resources/ats/types/CategoryEnum.ts b/src/api/resources/ats/types/CategoryEnum.ts index 6d3d6d6ae..94af662f7 100644 --- a/src/api/resources/ats/types/CategoryEnum.ts +++ b/src/api/resources/ats/types/CategoryEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `hris` - hris - * - `ats` - ats - * - `accounting` - accounting - * - `ticketing` - ticketing - * - `crm` - crm - * - `mktg` - mktg - * - `filestorage` - filestorage + * * `hris` - hris + * * `ats` - ats + * * `accounting` - accounting + * * `ticketing` - ticketing + * * `crm` - crm + * * `mktg` - mktg + * * `filestorage` - filestorage */ export type CategoryEnum = "hris" | "ats" | "accounting" | "ticketing" | "crm" | "mktg" | "filestorage"; export const CategoryEnum = { diff --git a/src/api/resources/ats/types/DataPassthroughRequest.ts b/src/api/resources/ats/types/DataPassthroughRequest.ts index a1cd084f2..8dc8bf2a4 100644 --- a/src/api/resources/ats/types/DataPassthroughRequest.ts +++ b/src/api/resources/ats/types/DataPassthroughRequest.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/ats/types/Department.ts b/src/api/resources/ats/types/Department.ts index 8bb25744a..cb1f1707d 100644 --- a/src/api/resources/ats/types/Department.ts +++ b/src/api/resources/ats/types/Department.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Department Object - * * ### Description - * * The `Department` object is used to represent a department within a company. - * * ### Usage Example - * * Fetch from the `LIST Departments` endpoint and view the departments within a company. */ export interface Department { diff --git a/src/api/resources/ats/types/DisabilityStatusEnum.ts b/src/api/resources/ats/types/DisabilityStatusEnum.ts index 799df3ff2..317737f59 100644 --- a/src/api/resources/ats/types/DisabilityStatusEnum.ts +++ b/src/api/resources/ats/types/DisabilityStatusEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `YES_I_HAVE_A_DISABILITY_OR_PREVIOUSLY_HAD_A_DISABILITY` - YES_I_HAVE_A_DISABILITY_OR_PREVIOUSLY_HAD_A_DISABILITY - * - `NO_I_DONT_HAVE_A_DISABILITY` - NO_I_DONT_HAVE_A_DISABILITY - * - `I_DONT_WISH_TO_ANSWER` - I_DONT_WISH_TO_ANSWER + * * `YES_I_HAVE_A_DISABILITY_OR_PREVIOUSLY_HAD_A_DISABILITY` - YES_I_HAVE_A_DISABILITY_OR_PREVIOUSLY_HAD_A_DISABILITY + * * `NO_I_DONT_HAVE_A_DISABILITY` - NO_I_DONT_HAVE_A_DISABILITY + * * `I_DONT_WISH_TO_ANSWER` - I_DONT_WISH_TO_ANSWER */ export type DisabilityStatusEnum = | "YES_I_HAVE_A_DISABILITY_OR_PREVIOUSLY_HAD_A_DISABILITY" diff --git a/src/api/resources/ats/types/Eeoc.ts b/src/api/resources/ats/types/Eeoc.ts index 0a211d0a0..b81750a2f 100644 --- a/src/api/resources/ats/types/Eeoc.ts +++ b/src/api/resources/ats/types/Eeoc.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The EEOC Object - * * ### Description - * * The `EEOC` object is used to represent the Equal Employment Opportunity Commission information for a candidate (race, gender, veteran status, disability status). - * * ### Usage Example - * * Fetch from the `LIST EEOCs` endpoint and filter by `candidate` to show all EEOC information for a candidate. */ export interface Eeoc { @@ -30,40 +26,40 @@ export interface Eeoc { /** * The candidate's race. * - * - `AMERICAN_INDIAN_OR_ALASKAN_NATIVE` - AMERICAN_INDIAN_OR_ALASKAN_NATIVE - * - `ASIAN` - ASIAN - * - `BLACK_OR_AFRICAN_AMERICAN` - BLACK_OR_AFRICAN_AMERICAN - * - `HISPANIC_OR_LATINO` - HISPANIC_OR_LATINO - * - `WHITE` - WHITE - * - `NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER` - NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER - * - `TWO_OR_MORE_RACES` - TWO_OR_MORE_RACES - * - `DECLINE_TO_SELF_IDENTIFY` - DECLINE_TO_SELF_IDENTIFY + * * `AMERICAN_INDIAN_OR_ALASKAN_NATIVE` - AMERICAN_INDIAN_OR_ALASKAN_NATIVE + * * `ASIAN` - ASIAN + * * `BLACK_OR_AFRICAN_AMERICAN` - BLACK_OR_AFRICAN_AMERICAN + * * `HISPANIC_OR_LATINO` - HISPANIC_OR_LATINO + * * `WHITE` - WHITE + * * `NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER` - NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER + * * `TWO_OR_MORE_RACES` - TWO_OR_MORE_RACES + * * `DECLINE_TO_SELF_IDENTIFY` - DECLINE_TO_SELF_IDENTIFY */ race?: Merge.ats.EeocRace; /** * The candidate's gender. * - * - `MALE` - MALE - * - `FEMALE` - FEMALE - * - `NON-BINARY` - NON-BINARY - * - `OTHER` - OTHER - * - `DECLINE_TO_SELF_IDENTIFY` - DECLINE_TO_SELF_IDENTIFY + * * `MALE` - MALE + * * `FEMALE` - FEMALE + * * `NON-BINARY` - NON-BINARY + * * `OTHER` - OTHER + * * `DECLINE_TO_SELF_IDENTIFY` - DECLINE_TO_SELF_IDENTIFY */ gender?: Merge.ats.EeocGender; /** * The candidate's veteran status. * - * - `I_AM_NOT_A_PROTECTED_VETERAN` - I_AM_NOT_A_PROTECTED_VETERAN - * - `I_IDENTIFY_AS_ONE_OR_MORE_OF_THE_CLASSIFICATIONS_OF_A_PROTECTED_VETERAN` - I_IDENTIFY_AS_ONE_OR_MORE_OF_THE_CLASSIFICATIONS_OF_A_PROTECTED_VETERAN - * - `I_DONT_WISH_TO_ANSWER` - I_DONT_WISH_TO_ANSWER + * * `I_AM_NOT_A_PROTECTED_VETERAN` - I_AM_NOT_A_PROTECTED_VETERAN + * * `I_IDENTIFY_AS_ONE_OR_MORE_OF_THE_CLASSIFICATIONS_OF_A_PROTECTED_VETERAN` - I_IDENTIFY_AS_ONE_OR_MORE_OF_THE_CLASSIFICATIONS_OF_A_PROTECTED_VETERAN + * * `I_DONT_WISH_TO_ANSWER` - I_DONT_WISH_TO_ANSWER */ veteranStatus?: Merge.ats.EeocVeteranStatus; /** * The candidate's disability status. * - * - `YES_I_HAVE_A_DISABILITY_OR_PREVIOUSLY_HAD_A_DISABILITY` - YES_I_HAVE_A_DISABILITY_OR_PREVIOUSLY_HAD_A_DISABILITY - * - `NO_I_DONT_HAVE_A_DISABILITY` - NO_I_DONT_HAVE_A_DISABILITY - * - `I_DONT_WISH_TO_ANSWER` - I_DONT_WISH_TO_ANSWER + * * `YES_I_HAVE_A_DISABILITY_OR_PREVIOUSLY_HAD_A_DISABILITY` - YES_I_HAVE_A_DISABILITY_OR_PREVIOUSLY_HAD_A_DISABILITY + * * `NO_I_DONT_HAVE_A_DISABILITY` - NO_I_DONT_HAVE_A_DISABILITY + * * `I_DONT_WISH_TO_ANSWER` - I_DONT_WISH_TO_ANSWER */ disabilityStatus?: Merge.ats.EeocDisabilityStatus; /** 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/). */ diff --git a/src/api/resources/ats/types/EeocDisabilityStatus.ts b/src/api/resources/ats/types/EeocDisabilityStatus.ts index b22b664d8..c028862ca 100644 --- a/src/api/resources/ats/types/EeocDisabilityStatus.ts +++ b/src/api/resources/ats/types/EeocDisabilityStatus.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The candidate's disability status. * - * - `YES_I_HAVE_A_DISABILITY_OR_PREVIOUSLY_HAD_A_DISABILITY` - YES_I_HAVE_A_DISABILITY_OR_PREVIOUSLY_HAD_A_DISABILITY - * - `NO_I_DONT_HAVE_A_DISABILITY` - NO_I_DONT_HAVE_A_DISABILITY - * - `I_DONT_WISH_TO_ANSWER` - I_DONT_WISH_TO_ANSWER + * * `YES_I_HAVE_A_DISABILITY_OR_PREVIOUSLY_HAD_A_DISABILITY` - YES_I_HAVE_A_DISABILITY_OR_PREVIOUSLY_HAD_A_DISABILITY + * * `NO_I_DONT_HAVE_A_DISABILITY` - NO_I_DONT_HAVE_A_DISABILITY + * * `I_DONT_WISH_TO_ANSWER` - I_DONT_WISH_TO_ANSWER */ export type EeocDisabilityStatus = Merge.ats.DisabilityStatusEnum | string; diff --git a/src/api/resources/ats/types/EeocGender.ts b/src/api/resources/ats/types/EeocGender.ts index 40df749c4..24ab029b5 100644 --- a/src/api/resources/ats/types/EeocGender.ts +++ b/src/api/resources/ats/types/EeocGender.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The candidate's gender. * - * - `MALE` - MALE - * - `FEMALE` - FEMALE - * - `NON-BINARY` - NON-BINARY - * - `OTHER` - OTHER - * - `DECLINE_TO_SELF_IDENTIFY` - DECLINE_TO_SELF_IDENTIFY + * * `MALE` - MALE + * * `FEMALE` - FEMALE + * * `NON-BINARY` - NON-BINARY + * * `OTHER` - OTHER + * * `DECLINE_TO_SELF_IDENTIFY` - DECLINE_TO_SELF_IDENTIFY */ export type EeocGender = Merge.ats.GenderEnum | string; diff --git a/src/api/resources/ats/types/EeocRace.ts b/src/api/resources/ats/types/EeocRace.ts index d8a02ac54..10f4cfb97 100644 --- a/src/api/resources/ats/types/EeocRace.ts +++ b/src/api/resources/ats/types/EeocRace.ts @@ -7,13 +7,13 @@ import * as Merge from "../../../index"; /** * The candidate's race. * - * - `AMERICAN_INDIAN_OR_ALASKAN_NATIVE` - AMERICAN_INDIAN_OR_ALASKAN_NATIVE - * - `ASIAN` - ASIAN - * - `BLACK_OR_AFRICAN_AMERICAN` - BLACK_OR_AFRICAN_AMERICAN - * - `HISPANIC_OR_LATINO` - HISPANIC_OR_LATINO - * - `WHITE` - WHITE - * - `NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER` - NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER - * - `TWO_OR_MORE_RACES` - TWO_OR_MORE_RACES - * - `DECLINE_TO_SELF_IDENTIFY` - DECLINE_TO_SELF_IDENTIFY + * * `AMERICAN_INDIAN_OR_ALASKAN_NATIVE` - AMERICAN_INDIAN_OR_ALASKAN_NATIVE + * * `ASIAN` - ASIAN + * * `BLACK_OR_AFRICAN_AMERICAN` - BLACK_OR_AFRICAN_AMERICAN + * * `HISPANIC_OR_LATINO` - HISPANIC_OR_LATINO + * * `WHITE` - WHITE + * * `NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER` - NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER + * * `TWO_OR_MORE_RACES` - TWO_OR_MORE_RACES + * * `DECLINE_TO_SELF_IDENTIFY` - DECLINE_TO_SELF_IDENTIFY */ export type EeocRace = Merge.ats.RaceEnum | string; diff --git a/src/api/resources/ats/types/EeocVeteranStatus.ts b/src/api/resources/ats/types/EeocVeteranStatus.ts index e70c560eb..070b00eac 100644 --- a/src/api/resources/ats/types/EeocVeteranStatus.ts +++ b/src/api/resources/ats/types/EeocVeteranStatus.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The candidate's veteran status. * - * - `I_AM_NOT_A_PROTECTED_VETERAN` - I_AM_NOT_A_PROTECTED_VETERAN - * - `I_IDENTIFY_AS_ONE_OR_MORE_OF_THE_CLASSIFICATIONS_OF_A_PROTECTED_VETERAN` - I_IDENTIFY_AS_ONE_OR_MORE_OF_THE_CLASSIFICATIONS_OF_A_PROTECTED_VETERAN - * - `I_DONT_WISH_TO_ANSWER` - I_DONT_WISH_TO_ANSWER + * * `I_AM_NOT_A_PROTECTED_VETERAN` - I_AM_NOT_A_PROTECTED_VETERAN + * * `I_IDENTIFY_AS_ONE_OR_MORE_OF_THE_CLASSIFICATIONS_OF_A_PROTECTED_VETERAN` - I_IDENTIFY_AS_ONE_OR_MORE_OF_THE_CLASSIFICATIONS_OF_A_PROTECTED_VETERAN + * * `I_DONT_WISH_TO_ANSWER` - I_DONT_WISH_TO_ANSWER */ export type EeocVeteranStatus = Merge.ats.VeteranStatusEnum | string; diff --git a/src/api/resources/ats/types/EmailAddress.ts b/src/api/resources/ats/types/EmailAddress.ts index c63e31a8b..5e4c102a2 100644 --- a/src/api/resources/ats/types/EmailAddress.ts +++ b/src/api/resources/ats/types/EmailAddress.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The EmailAddress Object - * * ### Description - * * The `EmailAddress` object is used to represent a candidate's email address. - * * ### Usage Example - * * Fetch from the `GET Candidate` endpoint and view their email addresses. */ export interface EmailAddress { @@ -25,9 +21,9 @@ export interface EmailAddress { /** * The type of email address. * - * - `PERSONAL` - PERSONAL - * - `WORK` - WORK - * - `OTHER` - OTHER + * * `PERSONAL` - PERSONAL + * * `WORK` - WORK + * * `OTHER` - OTHER */ emailAddressType?: Merge.ats.EmailAddressEmailAddressType; /** 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/). */ diff --git a/src/api/resources/ats/types/EmailAddressEmailAddressType.ts b/src/api/resources/ats/types/EmailAddressEmailAddressType.ts index dff618e4d..b91afc110 100644 --- a/src/api/resources/ats/types/EmailAddressEmailAddressType.ts +++ b/src/api/resources/ats/types/EmailAddressEmailAddressType.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The type of email address. * - * - `PERSONAL` - PERSONAL - * - `WORK` - WORK - * - `OTHER` - OTHER + * * `PERSONAL` - PERSONAL + * * `WORK` - WORK + * * `OTHER` - OTHER */ export type EmailAddressEmailAddressType = Merge.ats.EmailAddressTypeEnum | string; diff --git a/src/api/resources/ats/types/EmailAddressRequest.ts b/src/api/resources/ats/types/EmailAddressRequest.ts index 0e730a1e7..586c93bd1 100644 --- a/src/api/resources/ats/types/EmailAddressRequest.ts +++ b/src/api/resources/ats/types/EmailAddressRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The EmailAddress Object - * * ### Description - * * The `EmailAddress` object is used to represent a candidate's email address. - * * ### Usage Example - * * Fetch from the `GET Candidate` endpoint and view their email addresses. */ export interface EmailAddressRequest { @@ -21,9 +17,9 @@ export interface EmailAddressRequest { /** * The type of email address. * - * - `PERSONAL` - PERSONAL - * - `WORK` - WORK - * - `OTHER` - OTHER + * * `PERSONAL` - PERSONAL + * * `WORK` - WORK + * * `OTHER` - OTHER */ emailAddressType?: Merge.ats.EmailAddressRequestEmailAddressType; integrationParams?: Record; diff --git a/src/api/resources/ats/types/EmailAddressRequestEmailAddressType.ts b/src/api/resources/ats/types/EmailAddressRequestEmailAddressType.ts index bf7db5835..2b10fc942 100644 --- a/src/api/resources/ats/types/EmailAddressRequestEmailAddressType.ts +++ b/src/api/resources/ats/types/EmailAddressRequestEmailAddressType.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The type of email address. * - * - `PERSONAL` - PERSONAL - * - `WORK` - WORK - * - `OTHER` - OTHER + * * `PERSONAL` - PERSONAL + * * `WORK` - WORK + * * `OTHER` - OTHER */ export type EmailAddressRequestEmailAddressType = Merge.ats.EmailAddressTypeEnum | string; diff --git a/src/api/resources/ats/types/EmailAddressTypeEnum.ts b/src/api/resources/ats/types/EmailAddressTypeEnum.ts index 46faa5211..1cdd6fa59 100644 --- a/src/api/resources/ats/types/EmailAddressTypeEnum.ts +++ b/src/api/resources/ats/types/EmailAddressTypeEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `PERSONAL` - PERSONAL - * - `WORK` - WORK - * - `OTHER` - OTHER + * * `PERSONAL` - PERSONAL + * * `WORK` - WORK + * * `OTHER` - OTHER */ export type EmailAddressTypeEnum = "PERSONAL" | "WORK" | "OTHER"; export const EmailAddressTypeEnum = { diff --git a/src/api/resources/ats/types/EnabledActionsEnum.ts b/src/api/resources/ats/types/EnabledActionsEnum.ts index 24418b130..62022883a 100644 --- a/src/api/resources/ats/types/EnabledActionsEnum.ts +++ b/src/api/resources/ats/types/EnabledActionsEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `READ` - READ - * - `WRITE` - WRITE + * * `READ` - READ + * * `WRITE` - WRITE */ export type EnabledActionsEnum = "READ" | "WRITE"; export const EnabledActionsEnum = { diff --git a/src/api/resources/ats/types/EncodingEnum.ts b/src/api/resources/ats/types/EncodingEnum.ts index a828347f8..4dfc82b61 100644 --- a/src/api/resources/ats/types/EncodingEnum.ts +++ b/src/api/resources/ats/types/EncodingEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `RAW` - RAW - * - `BASE64` - BASE64 - * - `GZIP_BASE64` - GZIP_BASE64 + * * `RAW` - RAW + * * `BASE64` - BASE64 + * * `GZIP_BASE64` - GZIP_BASE64 */ export type EncodingEnum = "RAW" | "BASE64" | "GZIP_BASE64"; export const EncodingEnum = { diff --git a/src/api/resources/ats/types/EventTypeEnum.ts b/src/api/resources/ats/types/EventTypeEnum.ts index 08d0f1ce3..316d8531b 100644 --- a/src/api/resources/ats/types/EventTypeEnum.ts +++ b/src/api/resources/ats/types/EventTypeEnum.ts @@ -3,48 +3,48 @@ */ /** - * - `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 - * - `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 + * * `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 + * * `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 EventTypeEnum = | "CREATED_REMOTE_PRODUCTION_API_KEY" diff --git a/src/api/resources/ats/types/GenderEnum.ts b/src/api/resources/ats/types/GenderEnum.ts index 585c123ed..2e34bd608 100644 --- a/src/api/resources/ats/types/GenderEnum.ts +++ b/src/api/resources/ats/types/GenderEnum.ts @@ -3,11 +3,11 @@ */ /** - * - `MALE` - MALE - * - `FEMALE` - FEMALE - * - `NON-BINARY` - NON-BINARY - * - `OTHER` - OTHER - * - `DECLINE_TO_SELF_IDENTIFY` - DECLINE_TO_SELF_IDENTIFY + * * `MALE` - MALE + * * `FEMALE` - FEMALE + * * `NON-BINARY` - NON-BINARY + * * `OTHER` - OTHER + * * `DECLINE_TO_SELF_IDENTIFY` - DECLINE_TO_SELF_IDENTIFY */ export type GenderEnum = "MALE" | "FEMALE" | "NON-BINARY" | "OTHER" | "DECLINE_TO_SELF_IDENTIFY"; export const GenderEnum = { diff --git a/src/api/resources/ats/types/Issue.ts b/src/api/resources/ats/types/Issue.ts index b5f0b397a..46a9102e2 100644 --- a/src/api/resources/ats/types/Issue.ts +++ b/src/api/resources/ats/types/Issue.ts @@ -9,8 +9,8 @@ export interface Issue { /** * Status of the issue. Options: ('ONGOING', 'RESOLVED') * - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ status?: Merge.ats.IssueStatus; errorDescription: string; diff --git a/src/api/resources/ats/types/IssueStatus.ts b/src/api/resources/ats/types/IssueStatus.ts index b3e815cc4..aff396537 100644 --- a/src/api/resources/ats/types/IssueStatus.ts +++ b/src/api/resources/ats/types/IssueStatus.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * Status of the issue. Options: ('ONGOING', 'RESOLVED') * - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ export type IssueStatus = Merge.ats.IssueStatusEnum | string; diff --git a/src/api/resources/ats/types/IssueStatusEnum.ts b/src/api/resources/ats/types/IssueStatusEnum.ts index 56fc6d5fa..324e8bf84 100644 --- a/src/api/resources/ats/types/IssueStatusEnum.ts +++ b/src/api/resources/ats/types/IssueStatusEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ export type IssueStatusEnum = "ONGOING" | "RESOLVED"; export const IssueStatusEnum = { diff --git a/src/api/resources/ats/types/Job.ts b/src/api/resources/ats/types/Job.ts index b4d86a22f..363b88409 100644 --- a/src/api/resources/ats/types/Job.ts +++ b/src/api/resources/ats/types/Job.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Job Object - * * ### Description - * * The `Job` object can be used to track any jobs that are currently or will be open/closed for applications. - * * ### Usage Example - * * Fetch from the `LIST Jobs` endpoint to show all job postings. */ export interface Job { @@ -32,19 +28,19 @@ export interface Job { /** * The job's status. * - * - `OPEN` - OPEN - * - `CLOSED` - CLOSED - * - `DRAFT` - DRAFT - * - `ARCHIVED` - ARCHIVED - * - `PENDING` - PENDING + * * `OPEN` - OPEN + * * `CLOSED` - CLOSED + * * `DRAFT` - DRAFT + * * `ARCHIVED` - ARCHIVED + * * `PENDING` - PENDING */ status?: Merge.ats.JobStatus; /** * The job's type. * - * - `POSTING` - POSTING - * - `REQUISITION` - REQUISITION - * - `PROFILE` - PROFILE + * * `POSTING` - POSTING + * * `REQUISITION` - REQUISITION + * * `PROFILE` - PROFILE */ type?: Merge.ats.JobTypeEnum; /** IDs of `JobPosting` objects that serve as job postings for this `Job`. */ diff --git a/src/api/resources/ats/types/JobInterviewStage.ts b/src/api/resources/ats/types/JobInterviewStage.ts index df2828703..95537dea8 100644 --- a/src/api/resources/ats/types/JobInterviewStage.ts +++ b/src/api/resources/ats/types/JobInterviewStage.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The JobInterviewStage Object - * * ### Description - * * The `JobInterviewStage` object is used to represent a particular recruiting stage for an `Application`. A given `Application` typically has the `JobInterviewStage` object represented in the current_stage field. - * * ### Usage Example - * * Fetch from the `LIST JobInterviewStages` endpoint and view the job interview stages used by a company. */ export interface JobInterviewStage { diff --git a/src/api/resources/ats/types/JobPosting.ts b/src/api/resources/ats/types/JobPosting.ts index f882d6e8d..04dde0b75 100644 --- a/src/api/resources/ats/types/JobPosting.ts +++ b/src/api/resources/ats/types/JobPosting.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The JobPosting Object - * * ### Description - * * The `JobPosting` object represents an external announcement on a job board created by an organization to attract qualified candidates to apply for a specific `Job` opening - * * ### Usage Example - * * Fetch from the `LIST JobPostings` endpoint to show all job postings. */ export interface JobPosting { @@ -32,11 +28,11 @@ export interface JobPosting { /** * The job posting's status. * - * - `PUBLISHED` - PUBLISHED - * - `CLOSED` - CLOSED - * - `DRAFT` - DRAFT - * - `INTERNAL` - INTERNAL - * - `PENDING` - PENDING + * * `PUBLISHED` - PUBLISHED + * * `CLOSED` - CLOSED + * * `DRAFT` - DRAFT + * * `INTERNAL` - INTERNAL + * * `PENDING` - PENDING */ status?: Merge.ats.JobPostingStatusEnum; /** The job posting’s content. */ diff --git a/src/api/resources/ats/types/JobPostingStatusEnum.ts b/src/api/resources/ats/types/JobPostingStatusEnum.ts index 22125bb27..39a60b985 100644 --- a/src/api/resources/ats/types/JobPostingStatusEnum.ts +++ b/src/api/resources/ats/types/JobPostingStatusEnum.ts @@ -3,11 +3,11 @@ */ /** - * - `PUBLISHED` - PUBLISHED - * - `CLOSED` - CLOSED - * - `DRAFT` - DRAFT - * - `INTERNAL` - INTERNAL - * - `PENDING` - PENDING + * * `PUBLISHED` - PUBLISHED + * * `CLOSED` - CLOSED + * * `DRAFT` - DRAFT + * * `INTERNAL` - INTERNAL + * * `PENDING` - PENDING */ export type JobPostingStatusEnum = "PUBLISHED" | "CLOSED" | "DRAFT" | "INTERNAL" | "PENDING"; export const JobPostingStatusEnum = { diff --git a/src/api/resources/ats/types/JobStatus.ts b/src/api/resources/ats/types/JobStatus.ts index 24721a30a..69fe03ca5 100644 --- a/src/api/resources/ats/types/JobStatus.ts +++ b/src/api/resources/ats/types/JobStatus.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The job's status. * - * - `OPEN` - OPEN - * - `CLOSED` - CLOSED - * - `DRAFT` - DRAFT - * - `ARCHIVED` - ARCHIVED - * - `PENDING` - PENDING + * * `OPEN` - OPEN + * * `CLOSED` - CLOSED + * * `DRAFT` - DRAFT + * * `ARCHIVED` - ARCHIVED + * * `PENDING` - PENDING */ export type JobStatus = Merge.ats.JobStatusEnum | string; diff --git a/src/api/resources/ats/types/JobStatusEnum.ts b/src/api/resources/ats/types/JobStatusEnum.ts index 948712113..718f26001 100644 --- a/src/api/resources/ats/types/JobStatusEnum.ts +++ b/src/api/resources/ats/types/JobStatusEnum.ts @@ -3,11 +3,11 @@ */ /** - * - `OPEN` - OPEN - * - `CLOSED` - CLOSED - * - `DRAFT` - DRAFT - * - `ARCHIVED` - ARCHIVED - * - `PENDING` - PENDING + * * `OPEN` - OPEN + * * `CLOSED` - CLOSED + * * `DRAFT` - DRAFT + * * `ARCHIVED` - ARCHIVED + * * `PENDING` - PENDING */ export type JobStatusEnum = "OPEN" | "CLOSED" | "DRAFT" | "ARCHIVED" | "PENDING"; export const JobStatusEnum = { diff --git a/src/api/resources/ats/types/JobTypeEnum.ts b/src/api/resources/ats/types/JobTypeEnum.ts index 2629f57d3..a56dab52d 100644 --- a/src/api/resources/ats/types/JobTypeEnum.ts +++ b/src/api/resources/ats/types/JobTypeEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `POSTING` - POSTING - * - `REQUISITION` - REQUISITION - * - `PROFILE` - PROFILE + * * `POSTING` - POSTING + * * `REQUISITION` - REQUISITION + * * `PROFILE` - PROFILE */ export type JobTypeEnum = "POSTING" | "REQUISITION" | "PROFILE"; export const JobTypeEnum = { diff --git a/src/api/resources/ats/types/LanguageEnum.ts b/src/api/resources/ats/types/LanguageEnum.ts index 180002115..6c41852c3 100644 --- a/src/api/resources/ats/types/LanguageEnum.ts +++ b/src/api/resources/ats/types/LanguageEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `en` - en - * - `de` - de + * * `en` - en + * * `de` - de */ export type LanguageEnum = "en" | "de"; export const LanguageEnum = { diff --git a/src/api/resources/ats/types/LastSyncResultEnum.ts b/src/api/resources/ats/types/LastSyncResultEnum.ts index e14779ef7..434329895 100644 --- a/src/api/resources/ats/types/LastSyncResultEnum.ts +++ b/src/api/resources/ats/types/LastSyncResultEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `SYNCING` - SYNCING - * - `DONE` - DONE - * - `FAILED` - FAILED - * - `DISABLED` - DISABLED - * - `PAUSED` - PAUSED - * - `PARTIALLY_SYNCED` - PARTIALLY_SYNCED + * * `SYNCING` - SYNCING + * * `DONE` - DONE + * * `FAILED` - FAILED + * * `DISABLED` - DISABLED + * * `PAUSED` - PAUSED + * * `PARTIALLY_SYNCED` - PARTIALLY_SYNCED */ export type LastSyncResultEnum = "SYNCING" | "DONE" | "FAILED" | "DISABLED" | "PAUSED" | "PARTIALLY_SYNCED"; export const LastSyncResultEnum = { diff --git a/src/api/resources/ats/types/MethodEnum.ts b/src/api/resources/ats/types/MethodEnum.ts index 5d8dae516..0c151e94f 100644 --- a/src/api/resources/ats/types/MethodEnum.ts +++ b/src/api/resources/ats/types/MethodEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `GET` - GET - * - `OPTIONS` - OPTIONS - * - `HEAD` - HEAD - * - `POST` - POST - * - `PUT` - PUT - * - `PATCH` - PATCH - * - `DELETE` - DELETE + * * `GET` - GET + * * `OPTIONS` - OPTIONS + * * `HEAD` - HEAD + * * `POST` - POST + * * `PUT` - PUT + * * `PATCH` - PATCH + * * `DELETE` - DELETE */ export type MethodEnum = "GET" | "OPTIONS" | "HEAD" | "POST" | "PUT" | "PATCH" | "DELETE"; export const MethodEnum = { diff --git a/src/api/resources/ats/types/ModelOperation.ts b/src/api/resources/ats/types/ModelOperation.ts index 8126f65f6..d2035b050 100644 --- a/src/api/resources/ats/types/ModelOperation.ts +++ b/src/api/resources/ats/types/ModelOperation.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/ats/types/MultipartFormFieldRequest.ts b/src/api/resources/ats/types/MultipartFormFieldRequest.ts index de3a3dd81..bd9159822 100644 --- a/src/api/resources/ats/types/MultipartFormFieldRequest.ts +++ b/src/api/resources/ats/types/MultipartFormFieldRequest.ts @@ -6,13 +6,10 @@ import * 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 { @@ -23,9 +20,9 @@ export interface MultipartFormFieldRequest { /** * The encoding of the value of `data`. Defaults to `RAW` if not defined. * - * - `RAW` - RAW - * - `BASE64` - BASE64 - * - `GZIP_BASE64` - GZIP_BASE64 + * * `RAW` - RAW + * * `BASE64` - BASE64 + * * `GZIP_BASE64` - GZIP_BASE64 */ encoding?: Merge.ats.MultipartFormFieldRequestEncoding; /** The file name of the form field, if the field is for a file. */ diff --git a/src/api/resources/ats/types/MultipartFormFieldRequestEncoding.ts b/src/api/resources/ats/types/MultipartFormFieldRequestEncoding.ts index 7bae6dc8f..4fb58a387 100644 --- a/src/api/resources/ats/types/MultipartFormFieldRequestEncoding.ts +++ b/src/api/resources/ats/types/MultipartFormFieldRequestEncoding.ts @@ -7,8 +7,8 @@ import * 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 + * * `RAW` - RAW + * * `BASE64` - BASE64 + * * `GZIP_BASE64` - GZIP_BASE64 */ export type MultipartFormFieldRequestEncoding = Merge.ats.EncodingEnum | string; diff --git a/src/api/resources/ats/types/Offer.ts b/src/api/resources/ats/types/Offer.ts index 2f6cddb00..9bd251d12 100644 --- a/src/api/resources/ats/types/Offer.ts +++ b/src/api/resources/ats/types/Offer.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Offer Object - * * ### Description - * * The `Offer` object is used to represent an offer for a candidate's application specific to a job. - * * ### Usage Example - * * Fetch from the `LIST Offers` endpoint and filter by `ID` to show all offers. */ export interface Offer { @@ -38,15 +34,15 @@ export interface Offer { /** * The offer's status. * - * - `DRAFT` - DRAFT - * - `APPROVAL-SENT` - APPROVAL-SENT - * - `APPROVED` - APPROVED - * - `SENT` - SENT - * - `SENT-MANUALLY` - SENT-MANUALLY - * - `OPENED` - OPENED - * - `DENIED` - DENIED - * - `SIGNED` - SIGNED - * - `DEPRECATED` - DEPRECATED + * * `DRAFT` - DRAFT + * * `APPROVAL-SENT` - APPROVAL-SENT + * * `APPROVED` - APPROVED + * * `SENT` - SENT + * * `SENT-MANUALLY` - SENT-MANUALLY + * * `OPENED` - OPENED + * * `DENIED` - DENIED + * * `SIGNED` - SIGNED + * * `DEPRECATED` - DEPRECATED */ status?: Merge.ats.OfferStatus; /** 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/). */ diff --git a/src/api/resources/ats/types/OfferStatus.ts b/src/api/resources/ats/types/OfferStatus.ts index c17b28cc2..ab8ed3520 100644 --- a/src/api/resources/ats/types/OfferStatus.ts +++ b/src/api/resources/ats/types/OfferStatus.ts @@ -7,14 +7,14 @@ import * as Merge from "../../../index"; /** * The offer's status. * - * - `DRAFT` - DRAFT - * - `APPROVAL-SENT` - APPROVAL-SENT - * - `APPROVED` - APPROVED - * - `SENT` - SENT - * - `SENT-MANUALLY` - SENT-MANUALLY - * - `OPENED` - OPENED - * - `DENIED` - DENIED - * - `SIGNED` - SIGNED - * - `DEPRECATED` - DEPRECATED + * * `DRAFT` - DRAFT + * * `APPROVAL-SENT` - APPROVAL-SENT + * * `APPROVED` - APPROVED + * * `SENT` - SENT + * * `SENT-MANUALLY` - SENT-MANUALLY + * * `OPENED` - OPENED + * * `DENIED` - DENIED + * * `SIGNED` - SIGNED + * * `DEPRECATED` - DEPRECATED */ export type OfferStatus = Merge.ats.OfferStatusEnum | string; diff --git a/src/api/resources/ats/types/OfferStatusEnum.ts b/src/api/resources/ats/types/OfferStatusEnum.ts index 7190a4f3e..ad6b724e3 100644 --- a/src/api/resources/ats/types/OfferStatusEnum.ts +++ b/src/api/resources/ats/types/OfferStatusEnum.ts @@ -3,15 +3,15 @@ */ /** - * - `DRAFT` - DRAFT - * - `APPROVAL-SENT` - APPROVAL-SENT - * - `APPROVED` - APPROVED - * - `SENT` - SENT - * - `SENT-MANUALLY` - SENT-MANUALLY - * - `OPENED` - OPENED - * - `DENIED` - DENIED - * - `SIGNED` - SIGNED - * - `DEPRECATED` - DEPRECATED + * * `DRAFT` - DRAFT + * * `APPROVAL-SENT` - APPROVAL-SENT + * * `APPROVED` - APPROVED + * * `SENT` - SENT + * * `SENT-MANUALLY` - SENT-MANUALLY + * * `OPENED` - OPENED + * * `DENIED` - DENIED + * * `SIGNED` - SIGNED + * * `DEPRECATED` - DEPRECATED */ export type OfferStatusEnum = | "DRAFT" diff --git a/src/api/resources/ats/types/Office.ts b/src/api/resources/ats/types/Office.ts index 4c74a76f0..78cc2592b 100644 --- a/src/api/resources/ats/types/Office.ts +++ b/src/api/resources/ats/types/Office.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Office Object - * * ### Description - * * The `Office` object is used to represent an office within a company. A given `Job` has the `Office` ID in its offices field. - * * ### Usage Example - * * Fetch from the `LIST Offices` endpoint and view the offices within a company. */ export interface Office { diff --git a/src/api/resources/ats/types/OverallRecommendationEnum.ts b/src/api/resources/ats/types/OverallRecommendationEnum.ts index 67db618f9..fcd02fcef 100644 --- a/src/api/resources/ats/types/OverallRecommendationEnum.ts +++ b/src/api/resources/ats/types/OverallRecommendationEnum.ts @@ -3,11 +3,11 @@ */ /** - * - `DEFINITELY_NO` - DEFINITELY_NO - * - `NO` - NO - * - `YES` - YES - * - `STRONG_YES` - STRONG_YES - * - `NO_DECISION` - NO_DECISION + * * `DEFINITELY_NO` - DEFINITELY_NO + * * `NO` - NO + * * `YES` - YES + * * `STRONG_YES` - STRONG_YES + * * `NO_DECISION` - NO_DECISION */ export type OverallRecommendationEnum = "DEFINITELY_NO" | "NO" | "YES" | "STRONG_YES" | "NO_DECISION"; export const OverallRecommendationEnum = { diff --git a/src/api/resources/ats/types/PatchedCandidateRequest.ts b/src/api/resources/ats/types/PatchedCandidateRequest.ts index f7b06d4e6..62159d29b 100644 --- a/src/api/resources/ats/types/PatchedCandidateRequest.ts +++ b/src/api/resources/ats/types/PatchedCandidateRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Candidate Object - * * ### Description - * * The `Candidate` object is used to represent profile information about a given Candidate. Because it is specific to a Candidate, this information stays constant across applications. - * * ### Usage Example - * * Fetch from the `LIST Candidates` endpoint and filter by `ID` to show all candidates. */ export interface PatchedCandidateRequest { diff --git a/src/api/resources/ats/types/PhoneNumber.ts b/src/api/resources/ats/types/PhoneNumber.ts index dba887cc3..8758e9547 100644 --- a/src/api/resources/ats/types/PhoneNumber.ts +++ b/src/api/resources/ats/types/PhoneNumber.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The PhoneNumber Object - * * ### Description - * * The `PhoneNumber` object is used to represent a candidate's phone number. - * * ### Usage Example - * * Fetch from the `GET Candidate` endpoint and view their phone numbers. */ export interface PhoneNumber { @@ -25,11 +21,11 @@ export interface PhoneNumber { /** * The type of phone number. * - * - `HOME` - HOME - * - `WORK` - WORK - * - `MOBILE` - MOBILE - * - `SKYPE` - SKYPE - * - `OTHER` - OTHER + * * `HOME` - HOME + * * `WORK` - WORK + * * `MOBILE` - MOBILE + * * `SKYPE` - SKYPE + * * `OTHER` - OTHER */ phoneNumberType?: Merge.ats.PhoneNumberPhoneNumberType; /** 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/). */ diff --git a/src/api/resources/ats/types/PhoneNumberPhoneNumberType.ts b/src/api/resources/ats/types/PhoneNumberPhoneNumberType.ts index f32236805..5d8d61330 100644 --- a/src/api/resources/ats/types/PhoneNumberPhoneNumberType.ts +++ b/src/api/resources/ats/types/PhoneNumberPhoneNumberType.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The type of phone number. * - * - `HOME` - HOME - * - `WORK` - WORK - * - `MOBILE` - MOBILE - * - `SKYPE` - SKYPE - * - `OTHER` - OTHER + * * `HOME` - HOME + * * `WORK` - WORK + * * `MOBILE` - MOBILE + * * `SKYPE` - SKYPE + * * `OTHER` - OTHER */ export type PhoneNumberPhoneNumberType = Merge.ats.PhoneNumberTypeEnum | string; diff --git a/src/api/resources/ats/types/PhoneNumberRequest.ts b/src/api/resources/ats/types/PhoneNumberRequest.ts index 71c58249a..0d082d08a 100644 --- a/src/api/resources/ats/types/PhoneNumberRequest.ts +++ b/src/api/resources/ats/types/PhoneNumberRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The PhoneNumber Object - * * ### Description - * * The `PhoneNumber` object is used to represent a candidate's phone number. - * * ### Usage Example - * * Fetch from the `GET Candidate` endpoint and view their phone numbers. */ export interface PhoneNumberRequest { @@ -21,11 +17,11 @@ export interface PhoneNumberRequest { /** * The type of phone number. * - * - `HOME` - HOME - * - `WORK` - WORK - * - `MOBILE` - MOBILE - * - `SKYPE` - SKYPE - * - `OTHER` - OTHER + * * `HOME` - HOME + * * `WORK` - WORK + * * `MOBILE` - MOBILE + * * `SKYPE` - SKYPE + * * `OTHER` - OTHER */ phoneNumberType?: Merge.ats.PhoneNumberRequestPhoneNumberType; integrationParams?: Record; diff --git a/src/api/resources/ats/types/PhoneNumberRequestPhoneNumberType.ts b/src/api/resources/ats/types/PhoneNumberRequestPhoneNumberType.ts index 325d26823..6d2473817 100644 --- a/src/api/resources/ats/types/PhoneNumberRequestPhoneNumberType.ts +++ b/src/api/resources/ats/types/PhoneNumberRequestPhoneNumberType.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The type of phone number. * - * - `HOME` - HOME - * - `WORK` - WORK - * - `MOBILE` - MOBILE - * - `SKYPE` - SKYPE - * - `OTHER` - OTHER + * * `HOME` - HOME + * * `WORK` - WORK + * * `MOBILE` - MOBILE + * * `SKYPE` - SKYPE + * * `OTHER` - OTHER */ export type PhoneNumberRequestPhoneNumberType = Merge.ats.PhoneNumberTypeEnum | string; diff --git a/src/api/resources/ats/types/PhoneNumberTypeEnum.ts b/src/api/resources/ats/types/PhoneNumberTypeEnum.ts index 559d896b5..f52419aca 100644 --- a/src/api/resources/ats/types/PhoneNumberTypeEnum.ts +++ b/src/api/resources/ats/types/PhoneNumberTypeEnum.ts @@ -3,11 +3,11 @@ */ /** - * - `HOME` - HOME - * - `WORK` - WORK - * - `MOBILE` - MOBILE - * - `SKYPE` - SKYPE - * - `OTHER` - OTHER + * * `HOME` - HOME + * * `WORK` - WORK + * * `MOBILE` - MOBILE + * * `SKYPE` - SKYPE + * * `OTHER` - OTHER */ export type PhoneNumberTypeEnum = "HOME" | "WORK" | "MOBILE" | "SKYPE" | "OTHER"; export const PhoneNumberTypeEnum = { diff --git a/src/api/resources/ats/types/RaceEnum.ts b/src/api/resources/ats/types/RaceEnum.ts index eddf2e0c1..3ecade850 100644 --- a/src/api/resources/ats/types/RaceEnum.ts +++ b/src/api/resources/ats/types/RaceEnum.ts @@ -3,14 +3,14 @@ */ /** - * - `AMERICAN_INDIAN_OR_ALASKAN_NATIVE` - AMERICAN_INDIAN_OR_ALASKAN_NATIVE - * - `ASIAN` - ASIAN - * - `BLACK_OR_AFRICAN_AMERICAN` - BLACK_OR_AFRICAN_AMERICAN - * - `HISPANIC_OR_LATINO` - HISPANIC_OR_LATINO - * - `WHITE` - WHITE - * - `NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER` - NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER - * - `TWO_OR_MORE_RACES` - TWO_OR_MORE_RACES - * - `DECLINE_TO_SELF_IDENTIFY` - DECLINE_TO_SELF_IDENTIFY + * * `AMERICAN_INDIAN_OR_ALASKAN_NATIVE` - AMERICAN_INDIAN_OR_ALASKAN_NATIVE + * * `ASIAN` - ASIAN + * * `BLACK_OR_AFRICAN_AMERICAN` - BLACK_OR_AFRICAN_AMERICAN + * * `HISPANIC_OR_LATINO` - HISPANIC_OR_LATINO + * * `WHITE` - WHITE + * * `NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER` - NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER + * * `TWO_OR_MORE_RACES` - TWO_OR_MORE_RACES + * * `DECLINE_TO_SELF_IDENTIFY` - DECLINE_TO_SELF_IDENTIFY */ export type RaceEnum = | "AMERICAN_INDIAN_OR_ALASKAN_NATIVE" diff --git a/src/api/resources/ats/types/ReasonEnum.ts b/src/api/resources/ats/types/ReasonEnum.ts index 6298f17e7..d8258ee4c 100644 --- a/src/api/resources/ats/types/ReasonEnum.ts +++ b/src/api/resources/ats/types/ReasonEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `GENERAL_CUSTOMER_REQUEST` - GENERAL_CUSTOMER_REQUEST - * - `GDPR` - GDPR - * - `OTHER` - OTHER + * * `GENERAL_CUSTOMER_REQUEST` - GENERAL_CUSTOMER_REQUEST + * * `GDPR` - GDPR + * * `OTHER` - OTHER */ export type ReasonEnum = "GENERAL_CUSTOMER_REQUEST" | "GDPR" | "OTHER"; export const ReasonEnum = { diff --git a/src/api/resources/ats/types/RejectReason.ts b/src/api/resources/ats/types/RejectReason.ts index 6ecb67e52..1fee13043 100644 --- a/src/api/resources/ats/types/RejectReason.ts +++ b/src/api/resources/ats/types/RejectReason.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The RejectReason Object - * * ### Description - * * The `RejectReason` object is used to represent a reason for rejecting an application. These can typically be configured within an ATS system. - * * ### Usage Example - * * Fetch from the `LIST RejectReasons` endpoint and filter by `ID` to show all reasons. */ export interface RejectReason { diff --git a/src/api/resources/ats/types/RemoteData.ts b/src/api/resources/ats/types/RemoteData.ts index 928b06e7a..ab15ac8ee 100644 --- a/src/api/resources/ats/types/RemoteData.ts +++ b/src/api/resources/ats/types/RemoteData.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/ats/types/RemoteKey.ts b/src/api/resources/ats/types/RemoteKey.ts index 878f41321..6f8bf2dbf 100644 --- a/src/api/resources/ats/types/RemoteKey.ts +++ b/src/api/resources/ats/types/RemoteKey.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/ats/types/RemoteResponse.ts b/src/api/resources/ats/types/RemoteResponse.ts index fc38d8f3a..f4b95b1b1 100644 --- a/src/api/resources/ats/types/RemoteResponse.ts +++ b/src/api/resources/ats/types/RemoteResponse.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/ats/types/RemoteUser.ts b/src/api/resources/ats/types/RemoteUser.ts index e23a50f63..d25e835b3 100644 --- a/src/api/resources/ats/types/RemoteUser.ts +++ b/src/api/resources/ats/types/RemoteUser.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The RemoteUser Object - * * ### Description - * * The `RemoteUser` object is used to represent a user with a login to the ATS system. - * * ### Usage Example - * * Fetch from the `LIST RemoteUsers` endpoint to show all users for a third party. */ export interface RemoteUser { @@ -36,11 +32,11 @@ export interface RemoteUser { /** * The user's role. * - * - `SUPER_ADMIN` - SUPER_ADMIN - * - `ADMIN` - ADMIN - * - `TEAM_MEMBER` - TEAM_MEMBER - * - `LIMITED_TEAM_MEMBER` - LIMITED_TEAM_MEMBER - * - `INTERVIEWER` - INTERVIEWER + * * `SUPER_ADMIN` - SUPER_ADMIN + * * `ADMIN` - ADMIN + * * `TEAM_MEMBER` - TEAM_MEMBER + * * `LIMITED_TEAM_MEMBER` - LIMITED_TEAM_MEMBER + * * `INTERVIEWER` - INTERVIEWER */ accessRole?: Merge.ats.RemoteUserAccessRole; /** 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/). */ diff --git a/src/api/resources/ats/types/RemoteUserAccessRole.ts b/src/api/resources/ats/types/RemoteUserAccessRole.ts index 27e44f86e..c2e6ab05d 100644 --- a/src/api/resources/ats/types/RemoteUserAccessRole.ts +++ b/src/api/resources/ats/types/RemoteUserAccessRole.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The user's role. * - * - `SUPER_ADMIN` - SUPER_ADMIN - * - `ADMIN` - ADMIN - * - `TEAM_MEMBER` - TEAM_MEMBER - * - `LIMITED_TEAM_MEMBER` - LIMITED_TEAM_MEMBER - * - `INTERVIEWER` - INTERVIEWER + * * `SUPER_ADMIN` - SUPER_ADMIN + * * `ADMIN` - ADMIN + * * `TEAM_MEMBER` - TEAM_MEMBER + * * `LIMITED_TEAM_MEMBER` - LIMITED_TEAM_MEMBER + * * `INTERVIEWER` - INTERVIEWER */ export type RemoteUserAccessRole = Merge.ats.AccessRoleEnum | string; diff --git a/src/api/resources/ats/types/RequestFormatEnum.ts b/src/api/resources/ats/types/RequestFormatEnum.ts index 6c5f28198..132d6eea5 100644 --- a/src/api/resources/ats/types/RequestFormatEnum.ts +++ b/src/api/resources/ats/types/RequestFormatEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `JSON` - JSON - * - `XML` - XML - * - `MULTIPART` - MULTIPART + * * `JSON` - JSON + * * `XML` - XML + * * `MULTIPART` - MULTIPART */ export type RequestFormatEnum = "JSON" | "XML" | "MULTIPART"; export const RequestFormatEnum = { diff --git a/src/api/resources/ats/types/ResponseTypeEnum.ts b/src/api/resources/ats/types/ResponseTypeEnum.ts index e123001a6..5bef2d16e 100644 --- a/src/api/resources/ats/types/ResponseTypeEnum.ts +++ b/src/api/resources/ats/types/ResponseTypeEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `JSON` - JSON - * - `BASE64_GZIP` - BASE64_GZIP + * * `JSON` - JSON + * * `BASE64_GZIP` - BASE64_GZIP */ export type ResponseTypeEnum = "JSON" | "BASE64_GZIP"; export const ResponseTypeEnum = { diff --git a/src/api/resources/ats/types/RoleEnum.ts b/src/api/resources/ats/types/RoleEnum.ts index d7b99ac49..a3341a6e1 100644 --- a/src/api/resources/ats/types/RoleEnum.ts +++ b/src/api/resources/ats/types/RoleEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `ADMIN` - ADMIN - * - `DEVELOPER` - DEVELOPER - * - `MEMBER` - MEMBER - * - `API` - API - * - `SYSTEM` - SYSTEM - * - `MERGE_TEAM` - MERGE_TEAM + * * `ADMIN` - ADMIN + * * `DEVELOPER` - DEVELOPER + * * `MEMBER` - MEMBER + * * `API` - API + * * `SYSTEM` - SYSTEM + * * `MERGE_TEAM` - MERGE_TEAM */ export type RoleEnum = "ADMIN" | "DEVELOPER" | "MEMBER" | "API" | "SYSTEM" | "MERGE_TEAM"; export const RoleEnum = { diff --git a/src/api/resources/ats/types/ScheduledInterview.ts b/src/api/resources/ats/types/ScheduledInterview.ts index 257928e24..a5a4c50a1 100644 --- a/src/api/resources/ats/types/ScheduledInterview.ts +++ b/src/api/resources/ats/types/ScheduledInterview.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The ScheduledInterview Object - * * ### Description - * * The `ScheduledInterview` object is used to represent a scheduled interview for a given candidate’s application to a job. An `Application` can have multiple `ScheduledInterview`s depending on the particular hiring process. - * * ### Usage Example - * * Fetch from the `LIST ScheduledInterviews` endpoint and filter by `interviewers` to show all office locations. */ export interface ScheduledInterview { @@ -44,9 +40,9 @@ export interface ScheduledInterview { /** * The interview's status. * - * - `SCHEDULED` - SCHEDULED - * - `AWAITING_FEEDBACK` - AWAITING_FEEDBACK - * - `COMPLETE` - COMPLETE + * * `SCHEDULED` - SCHEDULED + * * `AWAITING_FEEDBACK` - AWAITING_FEEDBACK + * * `COMPLETE` - COMPLETE */ status?: Merge.ats.ScheduledInterviewStatus; /** 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/). */ diff --git a/src/api/resources/ats/types/ScheduledInterviewRequest.ts b/src/api/resources/ats/types/ScheduledInterviewRequest.ts index a04b547db..8a3be9eb5 100644 --- a/src/api/resources/ats/types/ScheduledInterviewRequest.ts +++ b/src/api/resources/ats/types/ScheduledInterviewRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The ScheduledInterview Object - * * ### Description - * * The `ScheduledInterview` object is used to represent a scheduled interview for a given candidate’s application to a job. An `Application` can have multiple `ScheduledInterview`s depending on the particular hiring process. - * * ### Usage Example - * * Fetch from the `LIST ScheduledInterviews` endpoint and filter by `interviewers` to show all office locations. */ export interface ScheduledInterviewRequest { @@ -33,9 +29,9 @@ export interface ScheduledInterviewRequest { /** * The interview's status. * - * - `SCHEDULED` - SCHEDULED - * - `AWAITING_FEEDBACK` - AWAITING_FEEDBACK - * - `COMPLETE` - COMPLETE + * * `SCHEDULED` - SCHEDULED + * * `AWAITING_FEEDBACK` - AWAITING_FEEDBACK + * * `COMPLETE` - COMPLETE */ status?: Merge.ats.ScheduledInterviewRequestStatus; integrationParams?: Record; diff --git a/src/api/resources/ats/types/ScheduledInterviewRequestStatus.ts b/src/api/resources/ats/types/ScheduledInterviewRequestStatus.ts index f8ec24a69..189ff3067 100644 --- a/src/api/resources/ats/types/ScheduledInterviewRequestStatus.ts +++ b/src/api/resources/ats/types/ScheduledInterviewRequestStatus.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The interview's status. * - * - `SCHEDULED` - SCHEDULED - * - `AWAITING_FEEDBACK` - AWAITING_FEEDBACK - * - `COMPLETE` - COMPLETE + * * `SCHEDULED` - SCHEDULED + * * `AWAITING_FEEDBACK` - AWAITING_FEEDBACK + * * `COMPLETE` - COMPLETE */ export type ScheduledInterviewRequestStatus = Merge.ats.ScheduledInterviewStatusEnum | string; diff --git a/src/api/resources/ats/types/ScheduledInterviewStatus.ts b/src/api/resources/ats/types/ScheduledInterviewStatus.ts index e9b3613e8..68b05af01 100644 --- a/src/api/resources/ats/types/ScheduledInterviewStatus.ts +++ b/src/api/resources/ats/types/ScheduledInterviewStatus.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The interview's status. * - * - `SCHEDULED` - SCHEDULED - * - `AWAITING_FEEDBACK` - AWAITING_FEEDBACK - * - `COMPLETE` - COMPLETE + * * `SCHEDULED` - SCHEDULED + * * `AWAITING_FEEDBACK` - AWAITING_FEEDBACK + * * `COMPLETE` - COMPLETE */ export type ScheduledInterviewStatus = Merge.ats.ScheduledInterviewStatusEnum | string; diff --git a/src/api/resources/ats/types/ScheduledInterviewStatusEnum.ts b/src/api/resources/ats/types/ScheduledInterviewStatusEnum.ts index 166d072e2..3ad2a5591 100644 --- a/src/api/resources/ats/types/ScheduledInterviewStatusEnum.ts +++ b/src/api/resources/ats/types/ScheduledInterviewStatusEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `SCHEDULED` - SCHEDULED - * - `AWAITING_FEEDBACK` - AWAITING_FEEDBACK - * - `COMPLETE` - COMPLETE + * * `SCHEDULED` - SCHEDULED + * * `AWAITING_FEEDBACK` - AWAITING_FEEDBACK + * * `COMPLETE` - COMPLETE */ export type ScheduledInterviewStatusEnum = "SCHEDULED" | "AWAITING_FEEDBACK" | "COMPLETE"; export const ScheduledInterviewStatusEnum = { diff --git a/src/api/resources/ats/types/Scorecard.ts b/src/api/resources/ats/types/Scorecard.ts index e86ef9dda..f71ffeade 100644 --- a/src/api/resources/ats/types/Scorecard.ts +++ b/src/api/resources/ats/types/Scorecard.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Scorecard Object - * * ### Description - * * The `Scorecard` object is used to represent an interviewer's candidate recommendation based on a particular interview. - * * ### Usage Example - * * Fetch from the `LIST Scorecards` endpoint and filter by `application` to show all scorecard for an applicant. */ export interface Scorecard { @@ -36,11 +32,11 @@ export interface Scorecard { /** * The inteviewer's recommendation. * - * - `DEFINITELY_NO` - DEFINITELY_NO - * - `NO` - NO - * - `YES` - YES - * - `STRONG_YES` - STRONG_YES - * - `NO_DECISION` - NO_DECISION + * * `DEFINITELY_NO` - DEFINITELY_NO + * * `NO` - NO + * * `YES` - YES + * * `STRONG_YES` - STRONG_YES + * * `NO_DECISION` - NO_DECISION */ overallRecommendation?: Merge.ats.ScorecardOverallRecommendation; /** 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/). */ diff --git a/src/api/resources/ats/types/ScorecardOverallRecommendation.ts b/src/api/resources/ats/types/ScorecardOverallRecommendation.ts index 9505e18ea..475f37a88 100644 --- a/src/api/resources/ats/types/ScorecardOverallRecommendation.ts +++ b/src/api/resources/ats/types/ScorecardOverallRecommendation.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The inteviewer's recommendation. * - * - `DEFINITELY_NO` - DEFINITELY_NO - * - `NO` - NO - * - `YES` - YES - * - `STRONG_YES` - STRONG_YES - * - `NO_DECISION` - NO_DECISION + * * `DEFINITELY_NO` - DEFINITELY_NO + * * `NO` - NO + * * `YES` - YES + * * `STRONG_YES` - STRONG_YES + * * `NO_DECISION` - NO_DECISION */ export type ScorecardOverallRecommendation = Merge.ats.OverallRecommendationEnum | string; diff --git a/src/api/resources/ats/types/ScreeningQuestion.ts b/src/api/resources/ats/types/ScreeningQuestion.ts index 62150da79..c801e9817 100644 --- a/src/api/resources/ats/types/ScreeningQuestion.ts +++ b/src/api/resources/ats/types/ScreeningQuestion.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The ScreeningQuestion Object - * * ### Description - * * The `ScreeningQuestion` object is used to represent questions asked to screen candidates for a job. * * ### Usage Example - * * TODO */ export interface ScreeningQuestion { @@ -32,14 +29,14 @@ export interface ScreeningQuestion { /** * The data type for the screening question. * - * - `DATE` - DATE - * - `FILE` - FILE - * - `SINGLE_SELECT` - SINGLE_SELECT - * - `MULTI_SELECT` - MULTI_SELECT - * - `SINGLE_LINE_TEXT` - SINGLE_LINE_TEXT - * - `MULTI_LINE_TEXT` - MULTI_LINE_TEXT - * - `NUMERIC` - NUMERIC - * - `BOOLEAN` - BOOLEAN + * * `DATE` - DATE + * * `FILE` - FILE + * * `SINGLE_SELECT` - SINGLE_SELECT + * * `MULTI_SELECT` - MULTI_SELECT + * * `SINGLE_LINE_TEXT` - SINGLE_LINE_TEXT + * * `MULTI_LINE_TEXT` - MULTI_LINE_TEXT + * * `NUMERIC` - NUMERIC + * * `BOOLEAN` - BOOLEAN */ type?: Merge.ats.ScreeningQuestionType; /** Whether or not the screening question is required. */ diff --git a/src/api/resources/ats/types/ScreeningQuestionAnswer.ts b/src/api/resources/ats/types/ScreeningQuestionAnswer.ts index 1afae3ba9..55a20752d 100644 --- a/src/api/resources/ats/types/ScreeningQuestionAnswer.ts +++ b/src/api/resources/ats/types/ScreeningQuestionAnswer.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The ScreeningQuestionAnswer Object - * * ### Description - * * The `ScreeningQuestionAnswer` object is used to represent candidate responses to a screening question, for a specific application. * * ### Usage Example - * * TODO */ export interface ScreeningQuestionAnswer { diff --git a/src/api/resources/ats/types/ScreeningQuestionAnswerRequest.ts b/src/api/resources/ats/types/ScreeningQuestionAnswerRequest.ts index b622272f6..a4b55ae29 100644 --- a/src/api/resources/ats/types/ScreeningQuestionAnswerRequest.ts +++ b/src/api/resources/ats/types/ScreeningQuestionAnswerRequest.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The ScreeningQuestionAnswer Object - * * ### Description - * * The `ScreeningQuestionAnswer` object is used to represent candidate responses to a screening question, for a specific application. * * ### Usage Example - * * TODO */ export interface ScreeningQuestionAnswerRequest { diff --git a/src/api/resources/ats/types/ScreeningQuestionOption.ts b/src/api/resources/ats/types/ScreeningQuestionOption.ts index 7ca064aa6..fc249432d 100644 --- a/src/api/resources/ats/types/ScreeningQuestionOption.ts +++ b/src/api/resources/ats/types/ScreeningQuestionOption.ts @@ -4,13 +4,10 @@ /** * # The ScreeningQuestionOption Object - * * ### Description - * * The `ScreeningQuestionOption` object is used to represent options for a `ScreeningQuestion` object * * ### Usage Example - * * TODO */ export interface ScreeningQuestionOption { diff --git a/src/api/resources/ats/types/ScreeningQuestionType.ts b/src/api/resources/ats/types/ScreeningQuestionType.ts index 2314bdc62..bb3cc27ab 100644 --- a/src/api/resources/ats/types/ScreeningQuestionType.ts +++ b/src/api/resources/ats/types/ScreeningQuestionType.ts @@ -7,13 +7,13 @@ import * as Merge from "../../../index"; /** * The data type for the screening question. * - * - `DATE` - DATE - * - `FILE` - FILE - * - `SINGLE_SELECT` - SINGLE_SELECT - * - `MULTI_SELECT` - MULTI_SELECT - * - `SINGLE_LINE_TEXT` - SINGLE_LINE_TEXT - * - `MULTI_LINE_TEXT` - MULTI_LINE_TEXT - * - `NUMERIC` - NUMERIC - * - `BOOLEAN` - BOOLEAN + * * `DATE` - DATE + * * `FILE` - FILE + * * `SINGLE_SELECT` - SINGLE_SELECT + * * `MULTI_SELECT` - MULTI_SELECT + * * `SINGLE_LINE_TEXT` - SINGLE_LINE_TEXT + * * `MULTI_LINE_TEXT` - MULTI_LINE_TEXT + * * `NUMERIC` - NUMERIC + * * `BOOLEAN` - BOOLEAN */ export type ScreeningQuestionType = Merge.ats.ScreeningQuestionTypeEnum | string; diff --git a/src/api/resources/ats/types/ScreeningQuestionTypeEnum.ts b/src/api/resources/ats/types/ScreeningQuestionTypeEnum.ts index 8d383be34..08bcd5dbd 100644 --- a/src/api/resources/ats/types/ScreeningQuestionTypeEnum.ts +++ b/src/api/resources/ats/types/ScreeningQuestionTypeEnum.ts @@ -3,14 +3,14 @@ */ /** - * - `DATE` - DATE - * - `FILE` - FILE - * - `SINGLE_SELECT` - SINGLE_SELECT - * - `MULTI_SELECT` - MULTI_SELECT - * - `SINGLE_LINE_TEXT` - SINGLE_LINE_TEXT - * - `MULTI_LINE_TEXT` - MULTI_LINE_TEXT - * - `NUMERIC` - NUMERIC - * - `BOOLEAN` - BOOLEAN + * * `DATE` - DATE + * * `FILE` - FILE + * * `SINGLE_SELECT` - SINGLE_SELECT + * * `MULTI_SELECT` - MULTI_SELECT + * * `SINGLE_LINE_TEXT` - SINGLE_LINE_TEXT + * * `MULTI_LINE_TEXT` - MULTI_LINE_TEXT + * * `NUMERIC` - NUMERIC + * * `BOOLEAN` - BOOLEAN */ export type ScreeningQuestionTypeEnum = | "DATE" diff --git a/src/api/resources/ats/types/SelectiveSyncConfigurationsUsageEnum.ts b/src/api/resources/ats/types/SelectiveSyncConfigurationsUsageEnum.ts index db8508f89..473a4c15e 100644 --- a/src/api/resources/ats/types/SelectiveSyncConfigurationsUsageEnum.ts +++ b/src/api/resources/ats/types/SelectiveSyncConfigurationsUsageEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `IN_NEXT_SYNC` - IN_NEXT_SYNC - * - `IN_LAST_SYNC` - IN_LAST_SYNC + * * `IN_NEXT_SYNC` - IN_NEXT_SYNC + * * `IN_LAST_SYNC` - IN_LAST_SYNC */ export type SelectiveSyncConfigurationsUsageEnum = "IN_NEXT_SYNC" | "IN_LAST_SYNC"; export const SelectiveSyncConfigurationsUsageEnum = { diff --git a/src/api/resources/ats/types/StatusFd5Enum.ts b/src/api/resources/ats/types/StatusFd5Enum.ts index 837436325..e8a7a4eec 100644 --- a/src/api/resources/ats/types/StatusFd5Enum.ts +++ b/src/api/resources/ats/types/StatusFd5Enum.ts @@ -3,12 +3,12 @@ */ /** - * - `SYNCING` - SYNCING - * - `DONE` - DONE - * - `FAILED` - FAILED - * - `DISABLED` - DISABLED - * - `PAUSED` - PAUSED - * - `PARTIALLY_SYNCED` - PARTIALLY_SYNCED + * * `SYNCING` - SYNCING + * * `DONE` - DONE + * * `FAILED` - FAILED + * * `DISABLED` - DISABLED + * * `PAUSED` - PAUSED + * * `PARTIALLY_SYNCED` - PARTIALLY_SYNCED */ export type StatusFd5Enum = "SYNCING" | "DONE" | "FAILED" | "DISABLED" | "PAUSED" | "PARTIALLY_SYNCED"; export const StatusFd5Enum = { diff --git a/src/api/resources/ats/types/SyncStatus.ts b/src/api/resources/ats/types/SyncStatus.ts index 2d2b474d3..d81c3938a 100644 --- a/src/api/resources/ats/types/SyncStatus.ts +++ b/src/api/resources/ats/types/SyncStatus.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/ats/types/Tag.ts b/src/api/resources/ats/types/Tag.ts index 54e951abc..bf66d70d9 100644 --- a/src/api/resources/ats/types/Tag.ts +++ b/src/api/resources/ats/types/Tag.ts @@ -4,13 +4,9 @@ /** * # The Tag Object - * * ### Description - * * The `Tag` object is used to represent a tag for a candidate. - * * ### Usage Example - * * Fetch from the `LIST Tags` endpoint and view the tags used within a company. */ export interface Tag { diff --git a/src/api/resources/ats/types/Url.ts b/src/api/resources/ats/types/Url.ts index 9766979b7..fc9eec7b7 100644 --- a/src/api/resources/ats/types/Url.ts +++ b/src/api/resources/ats/types/Url.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Url Object - * * ### Description - * * The `Url` object is used to represent hyperlinks associated with the parent model. - * * ### Usage Example - * * Fetch from the `GET Candidate` endpoint and view their website urls. */ export interface Url { @@ -25,13 +21,13 @@ export interface Url { /** * The type of site. * - * - `PERSONAL` - PERSONAL - * - `COMPANY` - COMPANY - * - `PORTFOLIO` - PORTFOLIO - * - `BLOG` - BLOG - * - `SOCIAL_MEDIA` - SOCIAL_MEDIA - * - `OTHER` - OTHER - * - `JOB_POSTING` - JOB_POSTING + * * `PERSONAL` - PERSONAL + * * `COMPANY` - COMPANY + * * `PORTFOLIO` - PORTFOLIO + * * `BLOG` - BLOG + * * `SOCIAL_MEDIA` - SOCIAL_MEDIA + * * `OTHER` - OTHER + * * `JOB_POSTING` - JOB_POSTING */ urlType?: Merge.ats.UrlUrlType; /** 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/). */ diff --git a/src/api/resources/ats/types/UrlRequest.ts b/src/api/resources/ats/types/UrlRequest.ts index 37a997bb2..a4d7c2d56 100644 --- a/src/api/resources/ats/types/UrlRequest.ts +++ b/src/api/resources/ats/types/UrlRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Url Object - * * ### Description - * * The `Url` object is used to represent hyperlinks associated with the parent model. - * * ### Usage Example - * * Fetch from the `GET Candidate` endpoint and view their website urls. */ export interface UrlRequest { @@ -21,13 +17,13 @@ export interface UrlRequest { /** * The type of site. * - * - `PERSONAL` - PERSONAL - * - `COMPANY` - COMPANY - * - `PORTFOLIO` - PORTFOLIO - * - `BLOG` - BLOG - * - `SOCIAL_MEDIA` - SOCIAL_MEDIA - * - `OTHER` - OTHER - * - `JOB_POSTING` - JOB_POSTING + * * `PERSONAL` - PERSONAL + * * `COMPANY` - COMPANY + * * `PORTFOLIO` - PORTFOLIO + * * `BLOG` - BLOG + * * `SOCIAL_MEDIA` - SOCIAL_MEDIA + * * `OTHER` - OTHER + * * `JOB_POSTING` - JOB_POSTING */ urlType?: Merge.ats.UrlRequestUrlType; integrationParams?: Record; diff --git a/src/api/resources/ats/types/UrlRequestUrlType.ts b/src/api/resources/ats/types/UrlRequestUrlType.ts index 6a0116a78..f9bd27fb1 100644 --- a/src/api/resources/ats/types/UrlRequestUrlType.ts +++ b/src/api/resources/ats/types/UrlRequestUrlType.ts @@ -7,12 +7,12 @@ import * as Merge from "../../../index"; /** * The type of site. * - * - `PERSONAL` - PERSONAL - * - `COMPANY` - COMPANY - * - `PORTFOLIO` - PORTFOLIO - * - `BLOG` - BLOG - * - `SOCIAL_MEDIA` - SOCIAL_MEDIA - * - `OTHER` - OTHER - * - `JOB_POSTING` - JOB_POSTING + * * `PERSONAL` - PERSONAL + * * `COMPANY` - COMPANY + * * `PORTFOLIO` - PORTFOLIO + * * `BLOG` - BLOG + * * `SOCIAL_MEDIA` - SOCIAL_MEDIA + * * `OTHER` - OTHER + * * `JOB_POSTING` - JOB_POSTING */ export type UrlRequestUrlType = Merge.ats.UrlTypeEnum | string; diff --git a/src/api/resources/ats/types/UrlTypeEnum.ts b/src/api/resources/ats/types/UrlTypeEnum.ts index 348577362..d906270c7 100644 --- a/src/api/resources/ats/types/UrlTypeEnum.ts +++ b/src/api/resources/ats/types/UrlTypeEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `PERSONAL` - PERSONAL - * - `COMPANY` - COMPANY - * - `PORTFOLIO` - PORTFOLIO - * - `BLOG` - BLOG - * - `SOCIAL_MEDIA` - SOCIAL_MEDIA - * - `OTHER` - OTHER - * - `JOB_POSTING` - JOB_POSTING + * * `PERSONAL` - PERSONAL + * * `COMPANY` - COMPANY + * * `PORTFOLIO` - PORTFOLIO + * * `BLOG` - BLOG + * * `SOCIAL_MEDIA` - SOCIAL_MEDIA + * * `OTHER` - OTHER + * * `JOB_POSTING` - JOB_POSTING */ export type UrlTypeEnum = "PERSONAL" | "COMPANY" | "PORTFOLIO" | "BLOG" | "SOCIAL_MEDIA" | "OTHER" | "JOB_POSTING"; export const UrlTypeEnum = { diff --git a/src/api/resources/ats/types/UrlUrlType.ts b/src/api/resources/ats/types/UrlUrlType.ts index c5b94332a..1f4458279 100644 --- a/src/api/resources/ats/types/UrlUrlType.ts +++ b/src/api/resources/ats/types/UrlUrlType.ts @@ -7,12 +7,12 @@ import * as Merge from "../../../index"; /** * The type of site. * - * - `PERSONAL` - PERSONAL - * - `COMPANY` - COMPANY - * - `PORTFOLIO` - PORTFOLIO - * - `BLOG` - BLOG - * - `SOCIAL_MEDIA` - SOCIAL_MEDIA - * - `OTHER` - OTHER - * - `JOB_POSTING` - JOB_POSTING + * * `PERSONAL` - PERSONAL + * * `COMPANY` - COMPANY + * * `PORTFOLIO` - PORTFOLIO + * * `BLOG` - BLOG + * * `SOCIAL_MEDIA` - SOCIAL_MEDIA + * * `OTHER` - OTHER + * * `JOB_POSTING` - JOB_POSTING */ export type UrlUrlType = Merge.ats.UrlTypeEnum | string; diff --git a/src/api/resources/ats/types/VeteranStatusEnum.ts b/src/api/resources/ats/types/VeteranStatusEnum.ts index cf1ee4038..4cdf8d19a 100644 --- a/src/api/resources/ats/types/VeteranStatusEnum.ts +++ b/src/api/resources/ats/types/VeteranStatusEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `I_AM_NOT_A_PROTECTED_VETERAN` - I_AM_NOT_A_PROTECTED_VETERAN - * - `I_IDENTIFY_AS_ONE_OR_MORE_OF_THE_CLASSIFICATIONS_OF_A_PROTECTED_VETERAN` - I_IDENTIFY_AS_ONE_OR_MORE_OF_THE_CLASSIFICATIONS_OF_A_PROTECTED_VETERAN - * - `I_DONT_WISH_TO_ANSWER` - I_DONT_WISH_TO_ANSWER + * * `I_AM_NOT_A_PROTECTED_VETERAN` - I_AM_NOT_A_PROTECTED_VETERAN + * * `I_IDENTIFY_AS_ONE_OR_MORE_OF_THE_CLASSIFICATIONS_OF_A_PROTECTED_VETERAN` - I_IDENTIFY_AS_ONE_OR_MORE_OF_THE_CLASSIFICATIONS_OF_A_PROTECTED_VETERAN + * * `I_DONT_WISH_TO_ANSWER` - I_DONT_WISH_TO_ANSWER */ export type VeteranStatusEnum = | "I_AM_NOT_A_PROTECTED_VETERAN" diff --git a/src/api/resources/ats/types/VisibilityEnum.ts b/src/api/resources/ats/types/VisibilityEnum.ts index ffecf8757..d28fcd494 100644 --- a/src/api/resources/ats/types/VisibilityEnum.ts +++ b/src/api/resources/ats/types/VisibilityEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `ADMIN_ONLY` - ADMIN_ONLY - * - `PUBLIC` - PUBLIC - * - `PRIVATE` - PRIVATE + * * `ADMIN_ONLY` - ADMIN_ONLY + * * `PUBLIC` - PUBLIC + * * `PRIVATE` - PRIVATE */ export type VisibilityEnum = "ADMIN_ONLY" | "PUBLIC" | "PRIVATE"; export const VisibilityEnum = { diff --git a/src/api/resources/crm/resources/accountDetails/client/Client.ts b/src/api/resources/crm/resources/accountDetails/client/Client.ts index 5ad1b862f..42e2dde42 100644 --- a/src/api/resources/crm/resources/accountDetails/client/Client.ts +++ b/src/api/resources/crm/resources/accountDetails/client/Client.ts @@ -70,8 +70,8 @@ export class AccountDetails { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/accountToken/client/Client.ts b/src/api/resources/crm/resources/accountToken/client/Client.ts index 6ebf08df0..be68bfc08 100644 --- a/src/api/resources/crm/resources/accountToken/client/Client.ts +++ b/src/api/resources/crm/resources/accountToken/client/Client.ts @@ -73,8 +73,8 @@ export class AccountToken { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/accounts/client/Client.ts b/src/api/resources/crm/resources/accounts/client/Client.ts index c1dadcc39..17dab122b 100644 --- a/src/api/resources/crm/resources/accounts/client/Client.ts +++ b/src/api/resources/crm/resources/accounts/client/Client.ts @@ -146,8 +146,8 @@ export class Accounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -242,8 +242,8 @@ export class Accounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -348,8 +348,8 @@ export class Accounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -447,8 +447,8 @@ export class Accounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -534,8 +534,8 @@ export class Accounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -616,8 +616,8 @@ export class Accounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -737,8 +737,8 @@ export class Accounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/associationTypes/client/Client.ts b/src/api/resources/crm/resources/associationTypes/client/Client.ts index e0aac556a..9ac8a8207 100644 --- a/src/api/resources/crm/resources/associationTypes/client/Client.ts +++ b/src/api/resources/crm/resources/associationTypes/client/Client.ts @@ -136,8 +136,8 @@ export class AssociationTypes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -249,8 +249,8 @@ export class AssociationTypes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -360,8 +360,8 @@ export class AssociationTypes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -448,8 +448,8 @@ export class AssociationTypes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/associations/client/Client.ts b/src/api/resources/crm/resources/associations/client/Client.ts index 3c94467ce..25b671fc3 100644 --- a/src/api/resources/crm/resources/associations/client/Client.ts +++ b/src/api/resources/crm/resources/associations/client/Client.ts @@ -149,8 +149,8 @@ export class Associations { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -270,8 +270,8 @@ export class Associations { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/asyncPassthrough/client/Client.ts b/src/api/resources/crm/resources/asyncPassthrough/client/Client.ts index 490325748..ed7c78b97 100644 --- a/src/api/resources/crm/resources/asyncPassthrough/client/Client.ts +++ b/src/api/resources/crm/resources/asyncPassthrough/client/Client.ts @@ -76,8 +76,8 @@ export class AsyncPassthrough { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -160,8 +160,8 @@ export class AsyncPassthrough { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/auditTrail/client/Client.ts b/src/api/resources/crm/resources/auditTrail/client/Client.ts index 6e181a37d..557317c4a 100644 --- a/src/api/resources/crm/resources/auditTrail/client/Client.ts +++ b/src/api/resources/crm/resources/auditTrail/client/Client.ts @@ -99,8 +99,8 @@ export class AuditTrail { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/availableActions/client/Client.ts b/src/api/resources/crm/resources/availableActions/client/Client.ts index 494f05ae5..d5d8d45aa 100644 --- a/src/api/resources/crm/resources/availableActions/client/Client.ts +++ b/src/api/resources/crm/resources/availableActions/client/Client.ts @@ -70,8 +70,8 @@ export class AvailableActions { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/contacts/client/Client.ts b/src/api/resources/crm/resources/contacts/client/Client.ts index 79feeb9ee..772b50293 100644 --- a/src/api/resources/crm/resources/contacts/client/Client.ts +++ b/src/api/resources/crm/resources/contacts/client/Client.ts @@ -153,8 +153,8 @@ export class Contacts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -249,8 +249,8 @@ export class Contacts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -357,8 +357,8 @@ export class Contacts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -456,8 +456,8 @@ export class Contacts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -548,8 +548,8 @@ export class Contacts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -625,8 +625,8 @@ export class Contacts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -707,8 +707,8 @@ export class Contacts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -828,8 +828,8 @@ export class Contacts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/customObjectClasses/client/Client.ts b/src/api/resources/crm/resources/customObjectClasses/client/Client.ts index af8151e1d..cb31067f9 100644 --- a/src/api/resources/crm/resources/customObjectClasses/client/Client.ts +++ b/src/api/resources/crm/resources/customObjectClasses/client/Client.ts @@ -131,8 +131,8 @@ export class CustomObjectClasses { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -232,8 +232,8 @@ export class CustomObjectClasses { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/customObjects/client/Client.ts b/src/api/resources/crm/resources/customObjects/client/Client.ts index cc9bdf3a6..7f938b2d0 100644 --- a/src/api/resources/crm/resources/customObjects/client/Client.ts +++ b/src/api/resources/crm/resources/customObjects/client/Client.ts @@ -136,8 +136,8 @@ export class CustomObjects { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -243,8 +243,8 @@ export class CustomObjects { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -354,8 +354,8 @@ export class CustomObjects { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -442,8 +442,8 @@ export class CustomObjects { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -567,8 +567,8 @@ export class CustomObjects { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/deleteAccount/client/Client.ts b/src/api/resources/crm/resources/deleteAccount/client/Client.ts index f8565d60c..c6e6539e8 100644 --- a/src/api/resources/crm/resources/deleteAccount/client/Client.ts +++ b/src/api/resources/crm/resources/deleteAccount/client/Client.ts @@ -64,8 +64,8 @@ export class DeleteAccount { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/engagementTypes/client/Client.ts b/src/api/resources/crm/resources/engagementTypes/client/Client.ts index 93f774947..db3e24405 100644 --- a/src/api/resources/crm/resources/engagementTypes/client/Client.ts +++ b/src/api/resources/crm/resources/engagementTypes/client/Client.ts @@ -131,8 +131,8 @@ export class EngagementTypes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -232,8 +232,8 @@ export class EngagementTypes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -354,8 +354,8 @@ export class EngagementTypes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/engagements/client/Client.ts b/src/api/resources/crm/resources/engagements/client/Client.ts index d4f31589d..a6e71c5d8 100644 --- a/src/api/resources/crm/resources/engagements/client/Client.ts +++ b/src/api/resources/crm/resources/engagements/client/Client.ts @@ -148,8 +148,8 @@ export class Engagements { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -244,8 +244,8 @@ export class Engagements { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -352,8 +352,8 @@ export class Engagements { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -451,8 +451,8 @@ export class Engagements { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -538,8 +538,8 @@ export class Engagements { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -620,8 +620,8 @@ export class Engagements { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -741,8 +741,8 @@ export class Engagements { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/fieldMapping/client/Client.ts b/src/api/resources/crm/resources/fieldMapping/client/Client.ts index 27cc091f8..e4f7c30ab 100644 --- a/src/api/resources/crm/resources/fieldMapping/client/Client.ts +++ b/src/api/resources/crm/resources/fieldMapping/client/Client.ts @@ -79,8 +79,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -176,8 +176,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -261,8 +261,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -351,8 +351,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -449,8 +449,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -530,8 +530,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/forceResync/client/Client.ts b/src/api/resources/crm/resources/forceResync/client/Client.ts index a2b7a6abd..6cd658c42 100644 --- a/src/api/resources/crm/resources/forceResync/client/Client.ts +++ b/src/api/resources/crm/resources/forceResync/client/Client.ts @@ -70,8 +70,8 @@ export class ForceResync { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/generateKey/client/Client.ts b/src/api/resources/crm/resources/generateKey/client/Client.ts index ec91da776..f9a21292b 100644 --- a/src/api/resources/crm/resources/generateKey/client/Client.ts +++ b/src/api/resources/crm/resources/generateKey/client/Client.ts @@ -75,8 +75,8 @@ export class GenerateKey { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/issues/client/Client.ts b/src/api/resources/crm/resources/issues/client/Client.ts index b667482df..310a9d5e5 100644 --- a/src/api/resources/crm/resources/issues/client/Client.ts +++ b/src/api/resources/crm/resources/issues/client/Client.ts @@ -148,8 +148,8 @@ export class Issues { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -229,8 +229,8 @@ export class Issues { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/issues/client/requests/IssuesListRequest.ts b/src/api/resources/crm/resources/issues/client/requests/IssuesListRequest.ts index 7f023b54a..f5a134d29 100644 --- a/src/api/resources/crm/resources/issues/client/requests/IssuesListRequest.ts +++ b/src/api/resources/crm/resources/issues/client/requests/IssuesListRequest.ts @@ -55,8 +55,8 @@ export interface IssuesListRequest { /** * Status of the issue. Options: ('ONGOING', 'RESOLVED') * - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ status?: Merge.crm.IssuesListRequestStatus; } diff --git a/src/api/resources/crm/resources/leads/client/Client.ts b/src/api/resources/crm/resources/leads/client/Client.ts index 03e1ee9a9..69f37ecf1 100644 --- a/src/api/resources/crm/resources/leads/client/Client.ts +++ b/src/api/resources/crm/resources/leads/client/Client.ts @@ -163,8 +163,8 @@ export class Leads { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -259,8 +259,8 @@ export class Leads { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -367,8 +367,8 @@ export class Leads { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -446,8 +446,8 @@ export class Leads { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -567,8 +567,8 @@ export class Leads { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/linkToken/client/Client.ts b/src/api/resources/crm/resources/linkToken/client/Client.ts index 1221badba..33431d5ca 100644 --- a/src/api/resources/crm/resources/linkToken/client/Client.ts +++ b/src/api/resources/crm/resources/linkToken/client/Client.ts @@ -78,8 +78,8 @@ export class LinkToken { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/linkedAccounts/client/Client.ts b/src/api/resources/crm/resources/linkedAccounts/client/Client.ts index cbc2e00d9..ac019ab86 100644 --- a/src/api/resources/crm/resources/linkedAccounts/client/Client.ts +++ b/src/api/resources/crm/resources/linkedAccounts/client/Client.ts @@ -143,8 +143,8 @@ export class LinkedAccounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts b/src/api/resources/crm/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts index f29675811..14f7af668 100644 --- a/src/api/resources/crm/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts +++ b/src/api/resources/crm/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts @@ -12,13 +12,13 @@ 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 + * * `hris` - hris + * * `ats` - ats + * * `accounting` - accounting + * * `ticketing` - ticketing + * * `crm` - crm + * * `mktg` - mktg + * * `filestorage` - filestorage */ category?: Merge.crm.LinkedAccountsListRequestCategory; /** diff --git a/src/api/resources/crm/resources/notes/client/Client.ts b/src/api/resources/crm/resources/notes/client/Client.ts index 1312eb90e..fc5a28a15 100644 --- a/src/api/resources/crm/resources/notes/client/Client.ts +++ b/src/api/resources/crm/resources/notes/client/Client.ts @@ -158,8 +158,8 @@ export class Notes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -254,8 +254,8 @@ export class Notes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -362,8 +362,8 @@ export class Notes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -441,8 +441,8 @@ export class Notes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -562,8 +562,8 @@ export class Notes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/opportunities/client/Client.ts b/src/api/resources/crm/resources/opportunities/client/Client.ts index c55f64434..fc00d3261 100644 --- a/src/api/resources/crm/resources/opportunities/client/Client.ts +++ b/src/api/resources/crm/resources/opportunities/client/Client.ts @@ -175,8 +175,8 @@ export class Opportunities { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -271,8 +271,8 @@ export class Opportunities { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -388,8 +388,8 @@ export class Opportunities { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -487,8 +487,8 @@ export class Opportunities { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -574,8 +574,8 @@ export class Opportunities { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -656,8 +656,8 @@ export class Opportunities { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -779,8 +779,8 @@ export class Opportunities { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/opportunities/client/requests/OpportunitiesListRequest.ts b/src/api/resources/crm/resources/opportunities/client/requests/OpportunitiesListRequest.ts index 3e1795884..463444565 100644 --- a/src/api/resources/crm/resources/opportunities/client/requests/OpportunitiesListRequest.ts +++ b/src/api/resources/crm/resources/opportunities/client/requests/OpportunitiesListRequest.ts @@ -84,9 +84,9 @@ export interface OpportunitiesListRequest { /** * If provided, will only return opportunities with this status. Options: ('OPEN', 'WON', 'LOST') * - * - `OPEN` - OPEN - * - `WON` - WON - * - `LOST` - LOST + * * `OPEN` - OPEN + * * `WON` - WON + * * `LOST` - LOST */ status?: Merge.crm.OpportunitiesListRequestStatus; } diff --git a/src/api/resources/crm/resources/passthrough/client/Client.ts b/src/api/resources/crm/resources/passthrough/client/Client.ts index a4d85fb55..8a2c68ee5 100644 --- a/src/api/resources/crm/resources/passthrough/client/Client.ts +++ b/src/api/resources/crm/resources/passthrough/client/Client.ts @@ -76,8 +76,8 @@ export class Passthrough { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/regenerateKey/client/Client.ts b/src/api/resources/crm/resources/regenerateKey/client/Client.ts index fd08401b1..cdadd51d1 100644 --- a/src/api/resources/crm/resources/regenerateKey/client/Client.ts +++ b/src/api/resources/crm/resources/regenerateKey/client/Client.ts @@ -75,8 +75,8 @@ export class RegenerateKey { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/scopes/client/Client.ts b/src/api/resources/crm/resources/scopes/client/Client.ts index cab76242c..638c76d0d 100644 --- a/src/api/resources/crm/resources/scopes/client/Client.ts +++ b/src/api/resources/crm/resources/scopes/client/Client.ts @@ -70,8 +70,8 @@ export class Scopes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -150,8 +150,8 @@ export class Scopes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -256,8 +256,8 @@ export class Scopes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/stages/client/Client.ts b/src/api/resources/crm/resources/stages/client/Client.ts index cb7ad2aac..b8c394fea 100644 --- a/src/api/resources/crm/resources/stages/client/Client.ts +++ b/src/api/resources/crm/resources/stages/client/Client.ts @@ -131,8 +131,8 @@ export class Stages { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -232,8 +232,8 @@ export class Stages { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -354,8 +354,8 @@ export class Stages { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/syncStatus/client/Client.ts b/src/api/resources/crm/resources/syncStatus/client/Client.ts index 5dadbe793..e8984b3cb 100644 --- a/src/api/resources/crm/resources/syncStatus/client/Client.ts +++ b/src/api/resources/crm/resources/syncStatus/client/Client.ts @@ -83,8 +83,8 @@ export class SyncStatus { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/tasks/client/Client.ts b/src/api/resources/crm/resources/tasks/client/Client.ts index 96929ff45..6db141894 100644 --- a/src/api/resources/crm/resources/tasks/client/Client.ts +++ b/src/api/resources/crm/resources/tasks/client/Client.ts @@ -138,8 +138,8 @@ export class Tasks { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -234,8 +234,8 @@ export class Tasks { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -342,8 +342,8 @@ export class Tasks { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -441,8 +441,8 @@ export class Tasks { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -526,8 +526,8 @@ export class Tasks { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -604,8 +604,8 @@ export class Tasks { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -725,8 +725,8 @@ export class Tasks { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/users/client/Client.ts b/src/api/resources/crm/resources/users/client/Client.ts index a4e70f55e..1a1afad08 100644 --- a/src/api/resources/crm/resources/users/client/Client.ts +++ b/src/api/resources/crm/resources/users/client/Client.ts @@ -136,8 +136,8 @@ export class Users { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -237,8 +237,8 @@ export class Users { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -326,8 +326,8 @@ export class Users { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -441,8 +441,8 @@ export class Users { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/resources/webhookReceivers/client/Client.ts b/src/api/resources/crm/resources/webhookReceivers/client/Client.ts index f4d9d8afe..1c6baa394 100644 --- a/src/api/resources/crm/resources/webhookReceivers/client/Client.ts +++ b/src/api/resources/crm/resources/webhookReceivers/client/Client.ts @@ -70,8 +70,8 @@ export class WebhookReceivers { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -156,8 +156,8 @@ export class WebhookReceivers { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/crm/types/Account.ts b/src/api/resources/crm/types/Account.ts index 34eef1807..519b4d797 100644 --- a/src/api/resources/crm/types/Account.ts +++ b/src/api/resources/crm/types/Account.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Account Object - * * ### Description - * * The `Account` object is used to represent a company in a CRM system. - * * ### Usage Example - * * TODO */ export interface Account { diff --git a/src/api/resources/crm/types/AccountDetailsAndActions.ts b/src/api/resources/crm/types/AccountDetailsAndActions.ts index e77dab556..e9e332f81 100644 --- a/src/api/resources/crm/types/AccountDetailsAndActions.ts +++ b/src/api/resources/crm/types/AccountDetailsAndActions.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/crm/types/AccountDetailsAndActionsStatusEnum.ts b/src/api/resources/crm/types/AccountDetailsAndActionsStatusEnum.ts index c0020279f..3a923df0f 100644 --- a/src/api/resources/crm/types/AccountDetailsAndActionsStatusEnum.ts +++ b/src/api/resources/crm/types/AccountDetailsAndActionsStatusEnum.ts @@ -3,10 +3,10 @@ */ /** - * - `COMPLETE` - COMPLETE - * - `INCOMPLETE` - INCOMPLETE - * - `RELINK_NEEDED` - RELINK_NEEDED - * - `IDLE` - IDLE + * * `COMPLETE` - COMPLETE + * * `INCOMPLETE` - INCOMPLETE + * * `RELINK_NEEDED` - RELINK_NEEDED + * * `IDLE` - IDLE */ export type AccountDetailsAndActionsStatusEnum = "COMPLETE" | "INCOMPLETE" | "RELINK_NEEDED" | "IDLE"; export const AccountDetailsAndActionsStatusEnum = { diff --git a/src/api/resources/crm/types/AccountRequest.ts b/src/api/resources/crm/types/AccountRequest.ts index b4075ff3a..2f5bc59ab 100644 --- a/src/api/resources/crm/types/AccountRequest.ts +++ b/src/api/resources/crm/types/AccountRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Account Object - * * ### Description - * * The `Account` object is used to represent a company in a CRM system. - * * ### Usage Example - * * TODO */ export interface AccountRequest { diff --git a/src/api/resources/crm/types/ActivityTypeEnum.ts b/src/api/resources/crm/types/ActivityTypeEnum.ts index db96cd89d..983cf5b68 100644 --- a/src/api/resources/crm/types/ActivityTypeEnum.ts +++ b/src/api/resources/crm/types/ActivityTypeEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `CALL` - CALL - * - `MEETING` - MEETING - * - `EMAIL` - EMAIL + * * `CALL` - CALL + * * `MEETING` - MEETING + * * `EMAIL` - EMAIL */ export type ActivityTypeEnum = "CALL" | "MEETING" | "EMAIL"; export const ActivityTypeEnum = { diff --git a/src/api/resources/crm/types/Address.ts b/src/api/resources/crm/types/Address.ts index f8bbdef63..3ac6fd727 100644 --- a/src/api/resources/crm/types/Address.ts +++ b/src/api/resources/crm/types/Address.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Address Object - * * ### Description - * * The `Address` object is used to represent an entity's address. - * * ### Usage Example - * * TODO */ export interface Address { @@ -33,262 +29,262 @@ export interface Address { /** * 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 + * * `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.crm.AddressCountry; /** * The address type. * - * - `BILLING` - BILLING - * - `SHIPPING` - SHIPPING + * * `BILLING` - BILLING + * * `SHIPPING` - SHIPPING */ addressType?: Merge.crm.AddressAddressType; } diff --git a/src/api/resources/crm/types/AddressAddressType.ts b/src/api/resources/crm/types/AddressAddressType.ts index ae00573c7..e426e263c 100644 --- a/src/api/resources/crm/types/AddressAddressType.ts +++ b/src/api/resources/crm/types/AddressAddressType.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The address type. * - * - `BILLING` - BILLING - * - `SHIPPING` - SHIPPING + * * `BILLING` - BILLING + * * `SHIPPING` - SHIPPING */ export type AddressAddressType = Merge.crm.AddressTypeEnum | string; diff --git a/src/api/resources/crm/types/AddressCountry.ts b/src/api/resources/crm/types/AddressCountry.ts index 2dcbd63b7..216c99208 100644 --- a/src/api/resources/crm/types/AddressCountry.ts +++ b/src/api/resources/crm/types/AddressCountry.ts @@ -7,254 +7,254 @@ import * 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 + * * `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.crm.CountryEnum | string; diff --git a/src/api/resources/crm/types/AddressRequest.ts b/src/api/resources/crm/types/AddressRequest.ts index 4aafa3f0a..c220bd7a0 100644 --- a/src/api/resources/crm/types/AddressRequest.ts +++ b/src/api/resources/crm/types/AddressRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Address Object - * * ### Description - * * The `Address` object is used to represent an entity's address. - * * ### Usage Example - * * TODO */ export interface AddressRequest { @@ -29,262 +25,262 @@ export interface AddressRequest { /** * 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 + * * `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.crm.AddressRequestCountry; /** * The address type. * - * - `BILLING` - BILLING - * - `SHIPPING` - SHIPPING + * * `BILLING` - BILLING + * * `SHIPPING` - SHIPPING */ addressType?: Merge.crm.AddressRequestAddressType; integrationParams?: Record; diff --git a/src/api/resources/crm/types/AddressRequestAddressType.ts b/src/api/resources/crm/types/AddressRequestAddressType.ts index e3f05311c..4252d4879 100644 --- a/src/api/resources/crm/types/AddressRequestAddressType.ts +++ b/src/api/resources/crm/types/AddressRequestAddressType.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The address type. * - * - `BILLING` - BILLING - * - `SHIPPING` - SHIPPING + * * `BILLING` - BILLING + * * `SHIPPING` - SHIPPING */ export type AddressRequestAddressType = Merge.crm.AddressTypeEnum | string; diff --git a/src/api/resources/crm/types/AddressRequestCountry.ts b/src/api/resources/crm/types/AddressRequestCountry.ts index a6d0c1be3..537a5da22 100644 --- a/src/api/resources/crm/types/AddressRequestCountry.ts +++ b/src/api/resources/crm/types/AddressRequestCountry.ts @@ -7,254 +7,254 @@ import * 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 + * * `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.crm.CountryEnum | string; diff --git a/src/api/resources/crm/types/AddressTypeEnum.ts b/src/api/resources/crm/types/AddressTypeEnum.ts index 4f3d78a4f..532a0f60b 100644 --- a/src/api/resources/crm/types/AddressTypeEnum.ts +++ b/src/api/resources/crm/types/AddressTypeEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `BILLING` - BILLING - * - `SHIPPING` - SHIPPING + * * `BILLING` - BILLING + * * `SHIPPING` - SHIPPING */ export type AddressTypeEnum = "BILLING" | "SHIPPING"; export const AddressTypeEnum = { diff --git a/src/api/resources/crm/types/Association.ts b/src/api/resources/crm/types/Association.ts index ba183b605..f989266e5 100644 --- a/src/api/resources/crm/types/Association.ts +++ b/src/api/resources/crm/types/Association.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Association Object - * * ### Description - * * The `Association` record refers to an instance of an Association Type. - * * ### Usage Example - * * TODO */ export interface Association { diff --git a/src/api/resources/crm/types/AssociationType.ts b/src/api/resources/crm/types/AssociationType.ts index 54a31570a..70c920dcc 100644 --- a/src/api/resources/crm/types/AssociationType.ts +++ b/src/api/resources/crm/types/AssociationType.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The AssociationType Object - * * ### Description - * * The `Association Type` object represents the relationship between two objects. - * * ### Usage Example - * * TODO */ export interface AssociationType { diff --git a/src/api/resources/crm/types/AuditLogEvent.ts b/src/api/resources/crm/types/AuditLogEvent.ts index 046ea47a3..3c2f345c3 100644 --- a/src/api/resources/crm/types/AuditLogEvent.ts +++ b/src/api/resources/crm/types/AuditLogEvent.ts @@ -13,60 +13,60 @@ export interface AuditLogEvent { /** * 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 + * * `ADMIN` - ADMIN + * * `DEVELOPER` - DEVELOPER + * * `MEMBER` - MEMBER + * * `API` - API + * * `SYSTEM` - SYSTEM + * * `MERGE_TEAM` - MERGE_TEAM */ role: Merge.crm.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 - * - `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 + * * `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 + * * `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.crm.AuditLogEventEventType; eventDescription: string; diff --git a/src/api/resources/crm/types/AuditLogEventEventType.ts b/src/api/resources/crm/types/AuditLogEventEventType.ts index 12df2f426..d00ca2fc4 100644 --- a/src/api/resources/crm/types/AuditLogEventEventType.ts +++ b/src/api/resources/crm/types/AuditLogEventEventType.ts @@ -7,47 +7,47 @@ import * 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 - * - `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 + * * `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 + * * `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.crm.EventTypeEnum | string; diff --git a/src/api/resources/crm/types/AuditLogEventRole.ts b/src/api/resources/crm/types/AuditLogEventRole.ts index ebec514db..24b43ae22 100644 --- a/src/api/resources/crm/types/AuditLogEventRole.ts +++ b/src/api/resources/crm/types/AuditLogEventRole.ts @@ -7,11 +7,11 @@ import * 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 + * * `ADMIN` - ADMIN + * * `DEVELOPER` - DEVELOPER + * * `MEMBER` - MEMBER + * * `API` - API + * * `SYSTEM` - SYSTEM + * * `MERGE_TEAM` - MERGE_TEAM */ export type AuditLogEventRole = Merge.crm.RoleEnum | string; diff --git a/src/api/resources/crm/types/AvailableActions.ts b/src/api/resources/crm/types/AvailableActions.ts index b2d66176c..27fd93aa7 100644 --- a/src/api/resources/crm/types/AvailableActions.ts +++ b/src/api/resources/crm/types/AvailableActions.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/crm/types/CardinalityEnum.ts b/src/api/resources/crm/types/CardinalityEnum.ts index 760e7aecf..9cea05f8d 100644 --- a/src/api/resources/crm/types/CardinalityEnum.ts +++ b/src/api/resources/crm/types/CardinalityEnum.ts @@ -3,10 +3,10 @@ */ /** - * - `ONE_TO_ONE` - ONE_TO_ONE - * - `MANY_TO_ONE` - MANY_TO_ONE - * - `MANY_TO_MANY` - MANY_TO_MANY - * - `ONE_TO_MANY` - ONE_TO_MANY + * * `ONE_TO_ONE` - ONE_TO_ONE + * * `MANY_TO_ONE` - MANY_TO_ONE + * * `MANY_TO_MANY` - MANY_TO_MANY + * * `ONE_TO_MANY` - ONE_TO_MANY */ export type CardinalityEnum = "ONE_TO_ONE" | "MANY_TO_ONE" | "MANY_TO_MANY" | "ONE_TO_MANY"; export const CardinalityEnum = { diff --git a/src/api/resources/crm/types/CategoriesEnum.ts b/src/api/resources/crm/types/CategoriesEnum.ts index a5eb57230..ca8bf9e21 100644 --- a/src/api/resources/crm/types/CategoriesEnum.ts +++ b/src/api/resources/crm/types/CategoriesEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `hris` - hris - * - `ats` - ats - * - `accounting` - accounting - * - `ticketing` - ticketing - * - `crm` - crm - * - `mktg` - mktg - * - `filestorage` - filestorage + * * `hris` - hris + * * `ats` - ats + * * `accounting` - accounting + * * `ticketing` - ticketing + * * `crm` - crm + * * `mktg` - mktg + * * `filestorage` - filestorage */ export type CategoriesEnum = "hris" | "ats" | "accounting" | "ticketing" | "crm" | "mktg" | "filestorage"; export const CategoriesEnum = { diff --git a/src/api/resources/crm/types/CategoryEnum.ts b/src/api/resources/crm/types/CategoryEnum.ts index 6d3d6d6ae..94af662f7 100644 --- a/src/api/resources/crm/types/CategoryEnum.ts +++ b/src/api/resources/crm/types/CategoryEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `hris` - hris - * - `ats` - ats - * - `accounting` - accounting - * - `ticketing` - ticketing - * - `crm` - crm - * - `mktg` - mktg - * - `filestorage` - filestorage + * * `hris` - hris + * * `ats` - ats + * * `accounting` - accounting + * * `ticketing` - ticketing + * * `crm` - crm + * * `mktg` - mktg + * * `filestorage` - filestorage */ export type CategoryEnum = "hris" | "ats" | "accounting" | "ticketing" | "crm" | "mktg" | "filestorage"; export const CategoryEnum = { diff --git a/src/api/resources/crm/types/Contact.ts b/src/api/resources/crm/types/Contact.ts index d388d4ea7..fec8c8d63 100644 --- a/src/api/resources/crm/types/Contact.ts +++ b/src/api/resources/crm/types/Contact.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Contact Object - * * ### Description - * * The `Contact` object is used to represent an existing point of contact at a company in a CRM system. - * * ### Usage Example - * * TODO */ export interface Contact { diff --git a/src/api/resources/crm/types/ContactRequest.ts b/src/api/resources/crm/types/ContactRequest.ts index 68bf2f6c1..9bf16b1f0 100644 --- a/src/api/resources/crm/types/ContactRequest.ts +++ b/src/api/resources/crm/types/ContactRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Contact Object - * * ### Description - * * The `Contact` object is used to represent an existing point of contact at a company in a CRM system. - * * ### Usage Example - * * TODO */ export interface ContactRequest { diff --git a/src/api/resources/crm/types/CountryEnum.ts b/src/api/resources/crm/types/CountryEnum.ts index 46d4e560b..ae6e8796c 100644 --- a/src/api/resources/crm/types/CountryEnum.ts +++ b/src/api/resources/crm/types/CountryEnum.ts @@ -3,255 +3,255 @@ */ /** - * - `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 + * * `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 CountryEnum = | "AF" diff --git a/src/api/resources/crm/types/CustomObject.ts b/src/api/resources/crm/types/CustomObject.ts index ca7138b84..6d239b98d 100644 --- a/src/api/resources/crm/types/CustomObject.ts +++ b/src/api/resources/crm/types/CustomObject.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The CustomObject Object - * * ### Description - * * The `Custom Object` record refers to an instance of a Custom Object Class. - * * ### Usage Example - * * TODO */ export interface CustomObject { diff --git a/src/api/resources/crm/types/CustomObjectClass.ts b/src/api/resources/crm/types/CustomObjectClass.ts index e83aa1fb7..4ba5dadaf 100644 --- a/src/api/resources/crm/types/CustomObjectClass.ts +++ b/src/api/resources/crm/types/CustomObjectClass.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Custom Object Class Object - * * ### Description - * * The `Custom Object Class` object is used to represent a Custom Object Schema in the remote system. - * * ### Usage Example - * * TODO */ export interface CustomObjectClass { diff --git a/src/api/resources/crm/types/DataPassthroughRequest.ts b/src/api/resources/crm/types/DataPassthroughRequest.ts index 1ae2af19e..261b16e48 100644 --- a/src/api/resources/crm/types/DataPassthroughRequest.ts +++ b/src/api/resources/crm/types/DataPassthroughRequest.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/crm/types/DirectionEnum.ts b/src/api/resources/crm/types/DirectionEnum.ts index b32224fcd..7d072075a 100644 --- a/src/api/resources/crm/types/DirectionEnum.ts +++ b/src/api/resources/crm/types/DirectionEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `INBOUND` - INBOUND - * - `OUTBOUND` - OUTBOUND + * * `INBOUND` - INBOUND + * * `OUTBOUND` - OUTBOUND */ export type DirectionEnum = "INBOUND" | "OUTBOUND"; export const DirectionEnum = { diff --git a/src/api/resources/crm/types/EmailAddress.ts b/src/api/resources/crm/types/EmailAddress.ts index 366d1e631..ead556483 100644 --- a/src/api/resources/crm/types/EmailAddress.ts +++ b/src/api/resources/crm/types/EmailAddress.ts @@ -4,13 +4,9 @@ /** * # The EmailAddress Object - * * ### Description - * * The `EmailAddress` object is used to represent an entity's email address. - * * ### Usage Example - * * Fetch from the `GET Contact` endpoint and view their email addresses. */ export interface EmailAddress { diff --git a/src/api/resources/crm/types/EmailAddressRequest.ts b/src/api/resources/crm/types/EmailAddressRequest.ts index 05e87453a..0154ca77b 100644 --- a/src/api/resources/crm/types/EmailAddressRequest.ts +++ b/src/api/resources/crm/types/EmailAddressRequest.ts @@ -4,13 +4,9 @@ /** * # The EmailAddress Object - * * ### Description - * * The `EmailAddress` object is used to represent an entity's email address. - * * ### Usage Example - * * Fetch from the `GET Contact` endpoint and view their email addresses. */ export interface EmailAddressRequest { diff --git a/src/api/resources/crm/types/EnabledActionsEnum.ts b/src/api/resources/crm/types/EnabledActionsEnum.ts index 24418b130..62022883a 100644 --- a/src/api/resources/crm/types/EnabledActionsEnum.ts +++ b/src/api/resources/crm/types/EnabledActionsEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `READ` - READ - * - `WRITE` - WRITE + * * `READ` - READ + * * `WRITE` - WRITE */ export type EnabledActionsEnum = "READ" | "WRITE"; export const EnabledActionsEnum = { diff --git a/src/api/resources/crm/types/EncodingEnum.ts b/src/api/resources/crm/types/EncodingEnum.ts index a828347f8..4dfc82b61 100644 --- a/src/api/resources/crm/types/EncodingEnum.ts +++ b/src/api/resources/crm/types/EncodingEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `RAW` - RAW - * - `BASE64` - BASE64 - * - `GZIP_BASE64` - GZIP_BASE64 + * * `RAW` - RAW + * * `BASE64` - BASE64 + * * `GZIP_BASE64` - GZIP_BASE64 */ export type EncodingEnum = "RAW" | "BASE64" | "GZIP_BASE64"; export const EncodingEnum = { diff --git a/src/api/resources/crm/types/Engagement.ts b/src/api/resources/crm/types/Engagement.ts index 7e0fd6f03..6d825c8cc 100644 --- a/src/api/resources/crm/types/Engagement.ts +++ b/src/api/resources/crm/types/Engagement.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Engagement Object - * * ### Description - * * The `Engagement` object is used to represent an interaction noted in a CRM system. - * * ### Usage Example - * * TODO */ export interface Engagement { @@ -32,8 +28,8 @@ export interface Engagement { /** * The engagement's direction. * - * - `INBOUND` - INBOUND - * - `OUTBOUND` - OUTBOUND + * * `INBOUND` - INBOUND + * * `OUTBOUND` - OUTBOUND */ direction?: Merge.crm.EngagementDirection; /** The engagement type of the engagement. */ diff --git a/src/api/resources/crm/types/EngagementDirection.ts b/src/api/resources/crm/types/EngagementDirection.ts index 66094afcc..9abbcbdbe 100644 --- a/src/api/resources/crm/types/EngagementDirection.ts +++ b/src/api/resources/crm/types/EngagementDirection.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The engagement's direction. * - * - `INBOUND` - INBOUND - * - `OUTBOUND` - OUTBOUND + * * `INBOUND` - INBOUND + * * `OUTBOUND` - OUTBOUND */ export type EngagementDirection = Merge.crm.DirectionEnum | string; diff --git a/src/api/resources/crm/types/EngagementRequest.ts b/src/api/resources/crm/types/EngagementRequest.ts index 333544c3c..a83df4724 100644 --- a/src/api/resources/crm/types/EngagementRequest.ts +++ b/src/api/resources/crm/types/EngagementRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Engagement Object - * * ### Description - * * The `Engagement` object is used to represent an interaction noted in a CRM system. - * * ### Usage Example - * * TODO */ export interface EngagementRequest { @@ -25,8 +21,8 @@ export interface EngagementRequest { /** * The engagement's direction. * - * - `INBOUND` - INBOUND - * - `OUTBOUND` - OUTBOUND + * * `INBOUND` - INBOUND + * * `OUTBOUND` - OUTBOUND */ direction?: Merge.crm.EngagementRequestDirection; /** The engagement type of the engagement. */ diff --git a/src/api/resources/crm/types/EngagementRequestDirection.ts b/src/api/resources/crm/types/EngagementRequestDirection.ts index fb1308fc5..c7b49e791 100644 --- a/src/api/resources/crm/types/EngagementRequestDirection.ts +++ b/src/api/resources/crm/types/EngagementRequestDirection.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The engagement's direction. * - * - `INBOUND` - INBOUND - * - `OUTBOUND` - OUTBOUND + * * `INBOUND` - INBOUND + * * `OUTBOUND` - OUTBOUND */ export type EngagementRequestDirection = Merge.crm.DirectionEnum | string; diff --git a/src/api/resources/crm/types/EngagementType.ts b/src/api/resources/crm/types/EngagementType.ts index a60a005c6..a07997120 100644 --- a/src/api/resources/crm/types/EngagementType.ts +++ b/src/api/resources/crm/types/EngagementType.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Engagement Type Object - * * ### Description - * * The `Engagement Type` object is used to represent an interaction activity. A given `Engagement` typically has an `Engagement Type` object represented in the engagement_type field. - * * ### Usage Example - * * TODO */ export interface EngagementType { @@ -26,9 +22,9 @@ export interface EngagementType { /** * The engagement type's activity type. * - * - `CALL` - CALL - * - `MEETING` - MEETING - * - `EMAIL` - EMAIL + * * `CALL` - CALL + * * `MEETING` - MEETING + * * `EMAIL` - EMAIL */ activityType?: Merge.crm.EngagementTypeActivityType; /** The engagement type's name. */ diff --git a/src/api/resources/crm/types/EngagementTypeActivityType.ts b/src/api/resources/crm/types/EngagementTypeActivityType.ts index cee2c6b7d..5ffa3278e 100644 --- a/src/api/resources/crm/types/EngagementTypeActivityType.ts +++ b/src/api/resources/crm/types/EngagementTypeActivityType.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The engagement type's activity type. * - * - `CALL` - CALL - * - `MEETING` - MEETING - * - `EMAIL` - EMAIL + * * `CALL` - CALL + * * `MEETING` - MEETING + * * `EMAIL` - EMAIL */ export type EngagementTypeActivityType = Merge.crm.ActivityTypeEnum | string; diff --git a/src/api/resources/crm/types/EventTypeEnum.ts b/src/api/resources/crm/types/EventTypeEnum.ts index 08d0f1ce3..316d8531b 100644 --- a/src/api/resources/crm/types/EventTypeEnum.ts +++ b/src/api/resources/crm/types/EventTypeEnum.ts @@ -3,48 +3,48 @@ */ /** - * - `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 - * - `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 + * * `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 + * * `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 EventTypeEnum = | "CREATED_REMOTE_PRODUCTION_API_KEY" diff --git a/src/api/resources/crm/types/FieldFormatEnum.ts b/src/api/resources/crm/types/FieldFormatEnum.ts index 351c87478..eb84a233b 100644 --- a/src/api/resources/crm/types/FieldFormatEnum.ts +++ b/src/api/resources/crm/types/FieldFormatEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `string` - string - * - `number` - number - * - `date` - date - * - `datetime` - datetime - * - `bool` - bool - * - `list` - list + * * `string` - string + * * `number` - number + * * `date` - date + * * `datetime` - datetime + * * `bool` - bool + * * `list` - list */ export type FieldFormatEnum = "string" | "number" | "date" | "datetime" | "bool" | "list"; export const FieldFormatEnum = { diff --git a/src/api/resources/crm/types/FieldTypeEnum.ts b/src/api/resources/crm/types/FieldTypeEnum.ts index e235eeea9..fab8ee2a4 100644 --- a/src/api/resources/crm/types/FieldTypeEnum.ts +++ b/src/api/resources/crm/types/FieldTypeEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `string` - string - * - `number` - number - * - `date` - date - * - `datetime` - datetime - * - `bool` - bool - * - `list` - list + * * `string` - string + * * `number` - number + * * `date` - date + * * `datetime` - datetime + * * `bool` - bool + * * `list` - list */ export type FieldTypeEnum = "string" | "number" | "date" | "datetime" | "bool" | "list"; export const FieldTypeEnum = { diff --git a/src/api/resources/crm/types/Issue.ts b/src/api/resources/crm/types/Issue.ts index b638381a1..69a373c94 100644 --- a/src/api/resources/crm/types/Issue.ts +++ b/src/api/resources/crm/types/Issue.ts @@ -9,8 +9,8 @@ export interface Issue { /** * Status of the issue. Options: ('ONGOING', 'RESOLVED') * - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ status?: Merge.crm.IssueStatus; errorDescription: string; diff --git a/src/api/resources/crm/types/IssueStatus.ts b/src/api/resources/crm/types/IssueStatus.ts index 8cc4e32ed..2ebc85d83 100644 --- a/src/api/resources/crm/types/IssueStatus.ts +++ b/src/api/resources/crm/types/IssueStatus.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * Status of the issue. Options: ('ONGOING', 'RESOLVED') * - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ export type IssueStatus = Merge.crm.IssueStatusEnum | string; diff --git a/src/api/resources/crm/types/IssueStatusEnum.ts b/src/api/resources/crm/types/IssueStatusEnum.ts index 56fc6d5fa..324e8bf84 100644 --- a/src/api/resources/crm/types/IssueStatusEnum.ts +++ b/src/api/resources/crm/types/IssueStatusEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ export type IssueStatusEnum = "ONGOING" | "RESOLVED"; export const IssueStatusEnum = { diff --git a/src/api/resources/crm/types/ItemFormatEnum.ts b/src/api/resources/crm/types/ItemFormatEnum.ts index 276d6e676..07bf7f260 100644 --- a/src/api/resources/crm/types/ItemFormatEnum.ts +++ b/src/api/resources/crm/types/ItemFormatEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `string` - uuid - * - `number` - url - * - `date` - email - * - `datetime` - phone - * - `bool` - currency - * - `list` - decimal + * * `string` - uuid + * * `number` - url + * * `date` - email + * * `datetime` - phone + * * `bool` - currency + * * `list` - decimal */ export type ItemFormatEnum = "string" | "number" | "date" | "datetime" | "bool" | "list"; export const ItemFormatEnum = { diff --git a/src/api/resources/crm/types/ItemTypeEnum.ts b/src/api/resources/crm/types/ItemTypeEnum.ts index 815b6314e..ec6fae79a 100644 --- a/src/api/resources/crm/types/ItemTypeEnum.ts +++ b/src/api/resources/crm/types/ItemTypeEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `string` - string - * - `number` - number - * - `date` - date - * - `datetime` - datetime - * - `bool` - bool - * - `list` - list + * * `string` - string + * * `number` - number + * * `date` - date + * * `datetime` - datetime + * * `bool` - bool + * * `list` - list */ export type ItemTypeEnum = "string" | "number" | "date" | "datetime" | "bool" | "list"; export const ItemTypeEnum = { diff --git a/src/api/resources/crm/types/LanguageEnum.ts b/src/api/resources/crm/types/LanguageEnum.ts index 180002115..6c41852c3 100644 --- a/src/api/resources/crm/types/LanguageEnum.ts +++ b/src/api/resources/crm/types/LanguageEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `en` - en - * - `de` - de + * * `en` - en + * * `de` - de */ export type LanguageEnum = "en" | "de"; export const LanguageEnum = { diff --git a/src/api/resources/crm/types/LastSyncResultEnum.ts b/src/api/resources/crm/types/LastSyncResultEnum.ts index e14779ef7..434329895 100644 --- a/src/api/resources/crm/types/LastSyncResultEnum.ts +++ b/src/api/resources/crm/types/LastSyncResultEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `SYNCING` - SYNCING - * - `DONE` - DONE - * - `FAILED` - FAILED - * - `DISABLED` - DISABLED - * - `PAUSED` - PAUSED - * - `PARTIALLY_SYNCED` - PARTIALLY_SYNCED + * * `SYNCING` - SYNCING + * * `DONE` - DONE + * * `FAILED` - FAILED + * * `DISABLED` - DISABLED + * * `PAUSED` - PAUSED + * * `PARTIALLY_SYNCED` - PARTIALLY_SYNCED */ export type LastSyncResultEnum = "SYNCING" | "DONE" | "FAILED" | "DISABLED" | "PAUSED" | "PARTIALLY_SYNCED"; export const LastSyncResultEnum = { diff --git a/src/api/resources/crm/types/Lead.ts b/src/api/resources/crm/types/Lead.ts index 9fb2baeb0..ea59c7a3b 100644 --- a/src/api/resources/crm/types/Lead.ts +++ b/src/api/resources/crm/types/Lead.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Lead Object - * * ### Description - * * The `Lead` object is used to represent an individual who is a potential customer. - * * ### Usage Example - * * TODO */ export interface Lead { diff --git a/src/api/resources/crm/types/LeadRequest.ts b/src/api/resources/crm/types/LeadRequest.ts index d5141dacf..8524bce77 100644 --- a/src/api/resources/crm/types/LeadRequest.ts +++ b/src/api/resources/crm/types/LeadRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Lead Object - * * ### Description - * * The `Lead` object is used to represent an individual who is a potential customer. - * * ### Usage Example - * * TODO */ export interface LeadRequest { diff --git a/src/api/resources/crm/types/MethodEnum.ts b/src/api/resources/crm/types/MethodEnum.ts index 5d8dae516..0c151e94f 100644 --- a/src/api/resources/crm/types/MethodEnum.ts +++ b/src/api/resources/crm/types/MethodEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `GET` - GET - * - `OPTIONS` - OPTIONS - * - `HEAD` - HEAD - * - `POST` - POST - * - `PUT` - PUT - * - `PATCH` - PATCH - * - `DELETE` - DELETE + * * `GET` - GET + * * `OPTIONS` - OPTIONS + * * `HEAD` - HEAD + * * `POST` - POST + * * `PUT` - PUT + * * `PATCH` - PATCH + * * `DELETE` - DELETE */ export type MethodEnum = "GET" | "OPTIONS" | "HEAD" | "POST" | "PUT" | "PATCH" | "DELETE"; export const MethodEnum = { diff --git a/src/api/resources/crm/types/ModelOperation.ts b/src/api/resources/crm/types/ModelOperation.ts index 8126f65f6..d2035b050 100644 --- a/src/api/resources/crm/types/ModelOperation.ts +++ b/src/api/resources/crm/types/ModelOperation.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/crm/types/MultipartFormFieldRequest.ts b/src/api/resources/crm/types/MultipartFormFieldRequest.ts index 856adf502..b85548a57 100644 --- a/src/api/resources/crm/types/MultipartFormFieldRequest.ts +++ b/src/api/resources/crm/types/MultipartFormFieldRequest.ts @@ -6,13 +6,10 @@ import * 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 { @@ -23,9 +20,9 @@ export interface MultipartFormFieldRequest { /** * The encoding of the value of `data`. Defaults to `RAW` if not defined. * - * - `RAW` - RAW - * - `BASE64` - BASE64 - * - `GZIP_BASE64` - GZIP_BASE64 + * * `RAW` - RAW + * * `BASE64` - BASE64 + * * `GZIP_BASE64` - GZIP_BASE64 */ encoding?: Merge.crm.MultipartFormFieldRequestEncoding; /** The file name of the form field, if the field is for a file. */ diff --git a/src/api/resources/crm/types/MultipartFormFieldRequestEncoding.ts b/src/api/resources/crm/types/MultipartFormFieldRequestEncoding.ts index fbfcc3e92..4d39ba852 100644 --- a/src/api/resources/crm/types/MultipartFormFieldRequestEncoding.ts +++ b/src/api/resources/crm/types/MultipartFormFieldRequestEncoding.ts @@ -7,8 +7,8 @@ import * 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 + * * `RAW` - RAW + * * `BASE64` - BASE64 + * * `GZIP_BASE64` - GZIP_BASE64 */ export type MultipartFormFieldRequestEncoding = Merge.crm.EncodingEnum | string; diff --git a/src/api/resources/crm/types/Note.ts b/src/api/resources/crm/types/Note.ts index 4116653d3..a5cb23476 100644 --- a/src/api/resources/crm/types/Note.ts +++ b/src/api/resources/crm/types/Note.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Note Object - * * ### Description - * * The `Note` object is used to represent a note on another object. - * * ### Usage Example - * * TODO */ export interface Note { diff --git a/src/api/resources/crm/types/NoteRequest.ts b/src/api/resources/crm/types/NoteRequest.ts index c01cd5307..23c1d54a0 100644 --- a/src/api/resources/crm/types/NoteRequest.ts +++ b/src/api/resources/crm/types/NoteRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Note Object - * * ### Description - * * The `Note` object is used to represent a note on another object. - * * ### Usage Example - * * TODO */ export interface NoteRequest { diff --git a/src/api/resources/crm/types/Opportunity.ts b/src/api/resources/crm/types/Opportunity.ts index 698bf438c..4307481c3 100644 --- a/src/api/resources/crm/types/Opportunity.ts +++ b/src/api/resources/crm/types/Opportunity.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Opportunity Object - * * ### Description - * * The `Opportunity` object is used to represent a deal opportunity in a CRM system. - * * ### Usage Example - * * TODO */ export interface Opportunity { @@ -38,9 +34,9 @@ export interface Opportunity { /** * The opportunity's status. * - * - `OPEN` - OPEN - * - `WON` - WON - * - `LOST` - LOST + * * `OPEN` - OPEN + * * `WON` - WON + * * `LOST` - LOST */ status?: Merge.crm.OpportunityStatus; /** When the opportunity's last activity occurred. */ diff --git a/src/api/resources/crm/types/OpportunityRequest.ts b/src/api/resources/crm/types/OpportunityRequest.ts index 82b28b355..057afd30a 100644 --- a/src/api/resources/crm/types/OpportunityRequest.ts +++ b/src/api/resources/crm/types/OpportunityRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Opportunity Object - * * ### Description - * * The `Opportunity` object is used to represent a deal opportunity in a CRM system. - * * ### Usage Example - * * TODO */ export interface OpportunityRequest { @@ -31,9 +27,9 @@ export interface OpportunityRequest { /** * The opportunity's status. * - * - `OPEN` - OPEN - * - `WON` - WON - * - `LOST` - LOST + * * `OPEN` - OPEN + * * `WON` - WON + * * `LOST` - LOST */ status?: Merge.crm.OpportunityRequestStatus; /** When the opportunity's last activity occurred. */ diff --git a/src/api/resources/crm/types/OpportunityRequestStatus.ts b/src/api/resources/crm/types/OpportunityRequestStatus.ts index f06819c68..10fc72b67 100644 --- a/src/api/resources/crm/types/OpportunityRequestStatus.ts +++ b/src/api/resources/crm/types/OpportunityRequestStatus.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The opportunity's status. * - * - `OPEN` - OPEN - * - `WON` - WON - * - `LOST` - LOST + * * `OPEN` - OPEN + * * `WON` - WON + * * `LOST` - LOST */ export type OpportunityRequestStatus = Merge.crm.OpportunityStatusEnum | string; diff --git a/src/api/resources/crm/types/OpportunityStatus.ts b/src/api/resources/crm/types/OpportunityStatus.ts index 1eecfd426..3197b0cb2 100644 --- a/src/api/resources/crm/types/OpportunityStatus.ts +++ b/src/api/resources/crm/types/OpportunityStatus.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The opportunity's status. * - * - `OPEN` - OPEN - * - `WON` - WON - * - `LOST` - LOST + * * `OPEN` - OPEN + * * `WON` - WON + * * `LOST` - LOST */ export type OpportunityStatus = Merge.crm.OpportunityStatusEnum | string; diff --git a/src/api/resources/crm/types/OpportunityStatusEnum.ts b/src/api/resources/crm/types/OpportunityStatusEnum.ts index d9d7df43a..554bd3e69 100644 --- a/src/api/resources/crm/types/OpportunityStatusEnum.ts +++ b/src/api/resources/crm/types/OpportunityStatusEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `OPEN` - OPEN - * - `WON` - WON - * - `LOST` - LOST + * * `OPEN` - OPEN + * * `WON` - WON + * * `LOST` - LOST */ export type OpportunityStatusEnum = "OPEN" | "WON" | "LOST"; export const OpportunityStatusEnum = { diff --git a/src/api/resources/crm/types/OriginTypeEnum.ts b/src/api/resources/crm/types/OriginTypeEnum.ts index 4da1bdd2a..4da704126 100644 --- a/src/api/resources/crm/types/OriginTypeEnum.ts +++ b/src/api/resources/crm/types/OriginTypeEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `CUSTOM_OBJECT` - CUSTOM_OBJECT - * - `COMMON_MODEL` - COMMON_MODEL - * - `REMOTE_ONLY_MODEL` - REMOTE_ONLY_MODEL + * * `CUSTOM_OBJECT` - CUSTOM_OBJECT + * * `COMMON_MODEL` - COMMON_MODEL + * * `REMOTE_ONLY_MODEL` - REMOTE_ONLY_MODEL */ export type OriginTypeEnum = "CUSTOM_OBJECT" | "COMMON_MODEL" | "REMOTE_ONLY_MODEL"; export const OriginTypeEnum = { diff --git a/src/api/resources/crm/types/PatchedAccountRequest.ts b/src/api/resources/crm/types/PatchedAccountRequest.ts index de6db6f6d..06a9ea8ac 100644 --- a/src/api/resources/crm/types/PatchedAccountRequest.ts +++ b/src/api/resources/crm/types/PatchedAccountRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Account Object - * * ### Description - * * The `Account` object is used to represent a company in a CRM system. - * * ### Usage Example - * * TODO */ export interface PatchedAccountRequest { diff --git a/src/api/resources/crm/types/PatchedContactRequest.ts b/src/api/resources/crm/types/PatchedContactRequest.ts index 0fefe860b..df78d843d 100644 --- a/src/api/resources/crm/types/PatchedContactRequest.ts +++ b/src/api/resources/crm/types/PatchedContactRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Contact Object - * * ### Description - * * The `Contact` object is used to represent an existing point of contact at a company in a CRM system. - * * ### Usage Example - * * TODO */ export interface PatchedContactRequest { diff --git a/src/api/resources/crm/types/PatchedEngagementRequest.ts b/src/api/resources/crm/types/PatchedEngagementRequest.ts index f1b1e1b26..b1cfe9865 100644 --- a/src/api/resources/crm/types/PatchedEngagementRequest.ts +++ b/src/api/resources/crm/types/PatchedEngagementRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Engagement Object - * * ### Description - * * The `Engagement` object is used to represent an interaction noted in a CRM system. - * * ### Usage Example - * * TODO */ export interface PatchedEngagementRequest { @@ -25,8 +21,8 @@ export interface PatchedEngagementRequest { /** * The engagement's direction. * - * - `INBOUND` - INBOUND - * - `OUTBOUND` - OUTBOUND + * * `INBOUND` - INBOUND + * * `OUTBOUND` - OUTBOUND */ direction?: Merge.crm.PatchedEngagementRequestDirection; /** The engagement type of the engagement. */ diff --git a/src/api/resources/crm/types/PatchedEngagementRequestDirection.ts b/src/api/resources/crm/types/PatchedEngagementRequestDirection.ts index b83adc131..1f104df10 100644 --- a/src/api/resources/crm/types/PatchedEngagementRequestDirection.ts +++ b/src/api/resources/crm/types/PatchedEngagementRequestDirection.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The engagement's direction. * - * - `INBOUND` - INBOUND - * - `OUTBOUND` - OUTBOUND + * * `INBOUND` - INBOUND + * * `OUTBOUND` - OUTBOUND */ export type PatchedEngagementRequestDirection = Merge.crm.DirectionEnum | string; diff --git a/src/api/resources/crm/types/PatchedOpportunityRequest.ts b/src/api/resources/crm/types/PatchedOpportunityRequest.ts index 623ab6fe5..187632809 100644 --- a/src/api/resources/crm/types/PatchedOpportunityRequest.ts +++ b/src/api/resources/crm/types/PatchedOpportunityRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Opportunity Object - * * ### Description - * * The `Opportunity` object is used to represent a deal opportunity in a CRM system. - * * ### Usage Example - * * TODO */ export interface PatchedOpportunityRequest { @@ -31,9 +27,9 @@ export interface PatchedOpportunityRequest { /** * The opportunity's status. * - * - `OPEN` - OPEN - * - `WON` - WON - * - `LOST` - LOST + * * `OPEN` - OPEN + * * `WON` - WON + * * `LOST` - LOST */ status?: Merge.crm.PatchedOpportunityRequestStatus; /** When the opportunity's last activity occurred. */ diff --git a/src/api/resources/crm/types/PatchedOpportunityRequestStatus.ts b/src/api/resources/crm/types/PatchedOpportunityRequestStatus.ts index cc5f39648..1566c2e1e 100644 --- a/src/api/resources/crm/types/PatchedOpportunityRequestStatus.ts +++ b/src/api/resources/crm/types/PatchedOpportunityRequestStatus.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The opportunity's status. * - * - `OPEN` - OPEN - * - `WON` - WON - * - `LOST` - LOST + * * `OPEN` - OPEN + * * `WON` - WON + * * `LOST` - LOST */ export type PatchedOpportunityRequestStatus = Merge.crm.OpportunityStatusEnum | string; diff --git a/src/api/resources/crm/types/PatchedTaskRequest.ts b/src/api/resources/crm/types/PatchedTaskRequest.ts index 15ff61a05..1a31d0841 100644 --- a/src/api/resources/crm/types/PatchedTaskRequest.ts +++ b/src/api/resources/crm/types/PatchedTaskRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Task Object - * * ### Description - * * The `Task` object is used to represent a task, such as a to-do item. - * * ### Usage Example - * * TODO */ export interface PatchedTaskRequest { @@ -33,8 +29,8 @@ export interface PatchedTaskRequest { /** * The task's status. * - * - `OPEN` - OPEN - * - `CLOSED` - CLOSED + * * `OPEN` - OPEN + * * `CLOSED` - CLOSED */ status?: Merge.crm.PatchedTaskRequestStatus; integrationParams?: Record; diff --git a/src/api/resources/crm/types/PatchedTaskRequestStatus.ts b/src/api/resources/crm/types/PatchedTaskRequestStatus.ts index 0e4e5df89..40f4403d5 100644 --- a/src/api/resources/crm/types/PatchedTaskRequestStatus.ts +++ b/src/api/resources/crm/types/PatchedTaskRequestStatus.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The task's status. * - * - `OPEN` - OPEN - * - `CLOSED` - CLOSED + * * `OPEN` - OPEN + * * `CLOSED` - CLOSED */ export type PatchedTaskRequestStatus = Merge.crm.TaskStatusEnum | string; diff --git a/src/api/resources/crm/types/PhoneNumber.ts b/src/api/resources/crm/types/PhoneNumber.ts index d250f19c7..30651eaea 100644 --- a/src/api/resources/crm/types/PhoneNumber.ts +++ b/src/api/resources/crm/types/PhoneNumber.ts @@ -4,13 +4,9 @@ /** * # The PhoneNumber Object - * * ### Description - * * The `PhoneNumber` object is used to represent an entity's phone number. - * * ### Usage Example - * * Fetch from the `GET Contact` endpoint and view their phone numbers. */ export interface PhoneNumber { diff --git a/src/api/resources/crm/types/PhoneNumberRequest.ts b/src/api/resources/crm/types/PhoneNumberRequest.ts index d2b74c31a..54352669f 100644 --- a/src/api/resources/crm/types/PhoneNumberRequest.ts +++ b/src/api/resources/crm/types/PhoneNumberRequest.ts @@ -4,13 +4,9 @@ /** * # The PhoneNumber Object - * * ### Description - * * The `PhoneNumber` object is used to represent an entity's phone number. - * * ### Usage Example - * * Fetch from the `GET Contact` endpoint and view their phone numbers. */ export interface PhoneNumberRequest { diff --git a/src/api/resources/crm/types/ReasonEnum.ts b/src/api/resources/crm/types/ReasonEnum.ts index 6298f17e7..d8258ee4c 100644 --- a/src/api/resources/crm/types/ReasonEnum.ts +++ b/src/api/resources/crm/types/ReasonEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `GENERAL_CUSTOMER_REQUEST` - GENERAL_CUSTOMER_REQUEST - * - `GDPR` - GDPR - * - `OTHER` - OTHER + * * `GENERAL_CUSTOMER_REQUEST` - GENERAL_CUSTOMER_REQUEST + * * `GDPR` - GDPR + * * `OTHER` - OTHER */ export type ReasonEnum = "GENERAL_CUSTOMER_REQUEST" | "GDPR" | "OTHER"; export const ReasonEnum = { diff --git a/src/api/resources/crm/types/RemoteData.ts b/src/api/resources/crm/types/RemoteData.ts index 928b06e7a..ab15ac8ee 100644 --- a/src/api/resources/crm/types/RemoteData.ts +++ b/src/api/resources/crm/types/RemoteData.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/crm/types/RemoteKey.ts b/src/api/resources/crm/types/RemoteKey.ts index 878f41321..6f8bf2dbf 100644 --- a/src/api/resources/crm/types/RemoteKey.ts +++ b/src/api/resources/crm/types/RemoteKey.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/crm/types/RemoteResponse.ts b/src/api/resources/crm/types/RemoteResponse.ts index 15e6bac87..4a0450060 100644 --- a/src/api/resources/crm/types/RemoteResponse.ts +++ b/src/api/resources/crm/types/RemoteResponse.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/crm/types/RequestFormatEnum.ts b/src/api/resources/crm/types/RequestFormatEnum.ts index 6c5f28198..132d6eea5 100644 --- a/src/api/resources/crm/types/RequestFormatEnum.ts +++ b/src/api/resources/crm/types/RequestFormatEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `JSON` - JSON - * - `XML` - XML - * - `MULTIPART` - MULTIPART + * * `JSON` - JSON + * * `XML` - XML + * * `MULTIPART` - MULTIPART */ export type RequestFormatEnum = "JSON" | "XML" | "MULTIPART"; export const RequestFormatEnum = { diff --git a/src/api/resources/crm/types/ResponseTypeEnum.ts b/src/api/resources/crm/types/ResponseTypeEnum.ts index e123001a6..5bef2d16e 100644 --- a/src/api/resources/crm/types/ResponseTypeEnum.ts +++ b/src/api/resources/crm/types/ResponseTypeEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `JSON` - JSON - * - `BASE64_GZIP` - BASE64_GZIP + * * `JSON` - JSON + * * `BASE64_GZIP` - BASE64_GZIP */ export type ResponseTypeEnum = "JSON" | "BASE64_GZIP"; export const ResponseTypeEnum = { diff --git a/src/api/resources/crm/types/RoleEnum.ts b/src/api/resources/crm/types/RoleEnum.ts index d7b99ac49..a3341a6e1 100644 --- a/src/api/resources/crm/types/RoleEnum.ts +++ b/src/api/resources/crm/types/RoleEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `ADMIN` - ADMIN - * - `DEVELOPER` - DEVELOPER - * - `MEMBER` - MEMBER - * - `API` - API - * - `SYSTEM` - SYSTEM - * - `MERGE_TEAM` - MERGE_TEAM + * * `ADMIN` - ADMIN + * * `DEVELOPER` - DEVELOPER + * * `MEMBER` - MEMBER + * * `API` - API + * * `SYSTEM` - SYSTEM + * * `MERGE_TEAM` - MERGE_TEAM */ export type RoleEnum = "ADMIN" | "DEVELOPER" | "MEMBER" | "API" | "SYSTEM" | "MERGE_TEAM"; export const RoleEnum = { diff --git a/src/api/resources/crm/types/SelectiveSyncConfigurationsUsageEnum.ts b/src/api/resources/crm/types/SelectiveSyncConfigurationsUsageEnum.ts index db8508f89..473a4c15e 100644 --- a/src/api/resources/crm/types/SelectiveSyncConfigurationsUsageEnum.ts +++ b/src/api/resources/crm/types/SelectiveSyncConfigurationsUsageEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `IN_NEXT_SYNC` - IN_NEXT_SYNC - * - `IN_LAST_SYNC` - IN_LAST_SYNC + * * `IN_NEXT_SYNC` - IN_NEXT_SYNC + * * `IN_LAST_SYNC` - IN_LAST_SYNC */ export type SelectiveSyncConfigurationsUsageEnum = "IN_NEXT_SYNC" | "IN_LAST_SYNC"; export const SelectiveSyncConfigurationsUsageEnum = { diff --git a/src/api/resources/crm/types/Stage.ts b/src/api/resources/crm/types/Stage.ts index bb7a3e9dc..7135e2845 100644 --- a/src/api/resources/crm/types/Stage.ts +++ b/src/api/resources/crm/types/Stage.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Stage Object - * * ### Description - * * The `Stage` object is used to represent the stage of an opportunity. - * * ### Usage Example - * * TODO */ export interface Stage { diff --git a/src/api/resources/crm/types/StatusFd5Enum.ts b/src/api/resources/crm/types/StatusFd5Enum.ts index 837436325..e8a7a4eec 100644 --- a/src/api/resources/crm/types/StatusFd5Enum.ts +++ b/src/api/resources/crm/types/StatusFd5Enum.ts @@ -3,12 +3,12 @@ */ /** - * - `SYNCING` - SYNCING - * - `DONE` - DONE - * - `FAILED` - FAILED - * - `DISABLED` - DISABLED - * - `PAUSED` - PAUSED - * - `PARTIALLY_SYNCED` - PARTIALLY_SYNCED + * * `SYNCING` - SYNCING + * * `DONE` - DONE + * * `FAILED` - FAILED + * * `DISABLED` - DISABLED + * * `PAUSED` - PAUSED + * * `PARTIALLY_SYNCED` - PARTIALLY_SYNCED */ export type StatusFd5Enum = "SYNCING" | "DONE" | "FAILED" | "DISABLED" | "PAUSED" | "PARTIALLY_SYNCED"; export const StatusFd5Enum = { diff --git a/src/api/resources/crm/types/SyncStatus.ts b/src/api/resources/crm/types/SyncStatus.ts index da728ea14..faa021b51 100644 --- a/src/api/resources/crm/types/SyncStatus.ts +++ b/src/api/resources/crm/types/SyncStatus.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/crm/types/Task.ts b/src/api/resources/crm/types/Task.ts index a1660cbd7..2c71d7b57 100644 --- a/src/api/resources/crm/types/Task.ts +++ b/src/api/resources/crm/types/Task.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Task Object - * * ### Description - * * The `Task` object is used to represent a task, such as a to-do item. - * * ### Usage Example - * * TODO */ export interface Task { @@ -40,8 +36,8 @@ export interface Task { /** * The task's status. * - * - `OPEN` - OPEN - * - `CLOSED` - CLOSED + * * `OPEN` - OPEN + * * `CLOSED` - CLOSED */ status?: Merge.crm.TaskStatus; /** 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/). */ diff --git a/src/api/resources/crm/types/TaskRequest.ts b/src/api/resources/crm/types/TaskRequest.ts index caf11552e..673862350 100644 --- a/src/api/resources/crm/types/TaskRequest.ts +++ b/src/api/resources/crm/types/TaskRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Task Object - * * ### Description - * * The `Task` object is used to represent a task, such as a to-do item. - * * ### Usage Example - * * TODO */ export interface TaskRequest { @@ -33,8 +29,8 @@ export interface TaskRequest { /** * The task's status. * - * - `OPEN` - OPEN - * - `CLOSED` - CLOSED + * * `OPEN` - OPEN + * * `CLOSED` - CLOSED */ status?: Merge.crm.TaskRequestStatus; integrationParams?: Record; diff --git a/src/api/resources/crm/types/TaskRequestStatus.ts b/src/api/resources/crm/types/TaskRequestStatus.ts index 952f2dc78..1816cd4a4 100644 --- a/src/api/resources/crm/types/TaskRequestStatus.ts +++ b/src/api/resources/crm/types/TaskRequestStatus.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The task's status. * - * - `OPEN` - OPEN - * - `CLOSED` - CLOSED + * * `OPEN` - OPEN + * * `CLOSED` - CLOSED */ export type TaskRequestStatus = Merge.crm.TaskStatusEnum | string; diff --git a/src/api/resources/crm/types/TaskStatus.ts b/src/api/resources/crm/types/TaskStatus.ts index b1763a2b8..577fcb78b 100644 --- a/src/api/resources/crm/types/TaskStatus.ts +++ b/src/api/resources/crm/types/TaskStatus.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The task's status. * - * - `OPEN` - OPEN - * - `CLOSED` - CLOSED + * * `OPEN` - OPEN + * * `CLOSED` - CLOSED */ export type TaskStatus = Merge.crm.TaskStatusEnum | string; diff --git a/src/api/resources/crm/types/TaskStatusEnum.ts b/src/api/resources/crm/types/TaskStatusEnum.ts index 0f89f0517..862ace488 100644 --- a/src/api/resources/crm/types/TaskStatusEnum.ts +++ b/src/api/resources/crm/types/TaskStatusEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `OPEN` - OPEN - * - `CLOSED` - CLOSED + * * `OPEN` - OPEN + * * `CLOSED` - CLOSED */ export type TaskStatusEnum = "OPEN" | "CLOSED"; export const TaskStatusEnum = { diff --git a/src/api/resources/crm/types/User.ts b/src/api/resources/crm/types/User.ts index a29e95e07..1af272fe0 100644 --- a/src/api/resources/crm/types/User.ts +++ b/src/api/resources/crm/types/User.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The User Object - * * ### Description - * * The `User` object is used to represent a user with a login to the CRM system. - * * ### Usage Example - * * TODO */ export interface User { diff --git a/src/api/resources/filestorage/resources/accountDetails/client/Client.ts b/src/api/resources/filestorage/resources/accountDetails/client/Client.ts index 4a39867c5..789973704 100644 --- a/src/api/resources/filestorage/resources/accountDetails/client/Client.ts +++ b/src/api/resources/filestorage/resources/accountDetails/client/Client.ts @@ -70,8 +70,8 @@ export class AccountDetails { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/accountToken/client/Client.ts b/src/api/resources/filestorage/resources/accountToken/client/Client.ts index fb5fc09fc..2f84883d9 100644 --- a/src/api/resources/filestorage/resources/accountToken/client/Client.ts +++ b/src/api/resources/filestorage/resources/accountToken/client/Client.ts @@ -73,8 +73,8 @@ export class AccountToken { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/asyncPassthrough/client/Client.ts b/src/api/resources/filestorage/resources/asyncPassthrough/client/Client.ts index e30df9888..d3764c0ea 100644 --- a/src/api/resources/filestorage/resources/asyncPassthrough/client/Client.ts +++ b/src/api/resources/filestorage/resources/asyncPassthrough/client/Client.ts @@ -76,8 +76,8 @@ export class AsyncPassthrough { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -164,8 +164,8 @@ export class AsyncPassthrough { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/auditTrail/client/Client.ts b/src/api/resources/filestorage/resources/auditTrail/client/Client.ts index 11cc9f58c..dfb393313 100644 --- a/src/api/resources/filestorage/resources/auditTrail/client/Client.ts +++ b/src/api/resources/filestorage/resources/auditTrail/client/Client.ts @@ -99,8 +99,8 @@ export class AuditTrail { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/availableActions/client/Client.ts b/src/api/resources/filestorage/resources/availableActions/client/Client.ts index 06d8af828..86f4132a8 100644 --- a/src/api/resources/filestorage/resources/availableActions/client/Client.ts +++ b/src/api/resources/filestorage/resources/availableActions/client/Client.ts @@ -70,8 +70,8 @@ export class AvailableActions { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/deleteAccount/client/Client.ts b/src/api/resources/filestorage/resources/deleteAccount/client/Client.ts index cec598f23..5b38354eb 100644 --- a/src/api/resources/filestorage/resources/deleteAccount/client/Client.ts +++ b/src/api/resources/filestorage/resources/deleteAccount/client/Client.ts @@ -64,8 +64,8 @@ export class DeleteAccount { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/drives/client/Client.ts b/src/api/resources/filestorage/resources/drives/client/Client.ts index c6d464aed..23d5953b1 100644 --- a/src/api/resources/filestorage/resources/drives/client/Client.ts +++ b/src/api/resources/filestorage/resources/drives/client/Client.ts @@ -131,8 +131,8 @@ export class Drives { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -228,8 +228,8 @@ export class Drives { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/fieldMapping/client/Client.ts b/src/api/resources/filestorage/resources/fieldMapping/client/Client.ts index b64682143..e38c14839 100644 --- a/src/api/resources/filestorage/resources/fieldMapping/client/Client.ts +++ b/src/api/resources/filestorage/resources/fieldMapping/client/Client.ts @@ -79,8 +79,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -176,8 +176,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -265,8 +265,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -355,8 +355,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -453,8 +453,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -534,8 +534,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/files/client/Client.ts b/src/api/resources/filestorage/resources/files/client/Client.ts index 8f1cf7b94..f3e82a8f0 100644 --- a/src/api/resources/filestorage/resources/files/client/Client.ts +++ b/src/api/resources/filestorage/resources/files/client/Client.ts @@ -154,8 +154,8 @@ export class Files { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -250,8 +250,8 @@ export class Files { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -356,8 +356,8 @@ export class Files { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -446,8 +446,8 @@ export class Files { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -533,8 +533,8 @@ export class Files { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -637,8 +637,8 @@ export class Files { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -720,8 +720,8 @@ export class Files { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/files/client/requests/FilesDownloadRetrieveRequest.ts b/src/api/resources/filestorage/resources/files/client/requests/FilesDownloadRetrieveRequest.ts index 0e902f76c..255d27419 100644 --- a/src/api/resources/filestorage/resources/files/client/requests/FilesDownloadRetrieveRequest.ts +++ b/src/api/resources/filestorage/resources/files/client/requests/FilesDownloadRetrieveRequest.ts @@ -2,13 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ -/** - * @example - * { - * includeShellData: true, - * mimeType: "string" - * } - */ export interface FilesDownloadRetrieveRequest { /** * Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). diff --git a/src/api/resources/filestorage/resources/folders/client/Client.ts b/src/api/resources/filestorage/resources/folders/client/Client.ts index 7604cc8d5..9cd5cbf0e 100644 --- a/src/api/resources/filestorage/resources/folders/client/Client.ts +++ b/src/api/resources/filestorage/resources/folders/client/Client.ts @@ -148,8 +148,8 @@ export class Folders { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -244,8 +244,8 @@ export class Folders { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -350,8 +350,8 @@ export class Folders { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -431,8 +431,8 @@ export class Folders { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/forceResync/client/Client.ts b/src/api/resources/filestorage/resources/forceResync/client/Client.ts index 17231b9a3..4ddec45ac 100644 --- a/src/api/resources/filestorage/resources/forceResync/client/Client.ts +++ b/src/api/resources/filestorage/resources/forceResync/client/Client.ts @@ -70,8 +70,8 @@ export class ForceResync { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/generateKey/client/Client.ts b/src/api/resources/filestorage/resources/generateKey/client/Client.ts index e966fb011..06dc890ee 100644 --- a/src/api/resources/filestorage/resources/generateKey/client/Client.ts +++ b/src/api/resources/filestorage/resources/generateKey/client/Client.ts @@ -75,8 +75,8 @@ export class GenerateKey { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/groups/client/Client.ts b/src/api/resources/filestorage/resources/groups/client/Client.ts index fbff66fa6..b354e4a44 100644 --- a/src/api/resources/filestorage/resources/groups/client/Client.ts +++ b/src/api/resources/filestorage/resources/groups/client/Client.ts @@ -131,8 +131,8 @@ export class Groups { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -232,8 +232,8 @@ export class Groups { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/issues/client/Client.ts b/src/api/resources/filestorage/resources/issues/client/Client.ts index e14a3bc1d..8592557c1 100644 --- a/src/api/resources/filestorage/resources/issues/client/Client.ts +++ b/src/api/resources/filestorage/resources/issues/client/Client.ts @@ -148,8 +148,8 @@ export class Issues { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -232,8 +232,8 @@ export class Issues { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/issues/client/requests/IssuesListRequest.ts b/src/api/resources/filestorage/resources/issues/client/requests/IssuesListRequest.ts index bde8d014b..aa641c700 100644 --- a/src/api/resources/filestorage/resources/issues/client/requests/IssuesListRequest.ts +++ b/src/api/resources/filestorage/resources/issues/client/requests/IssuesListRequest.ts @@ -55,8 +55,8 @@ export interface IssuesListRequest { /** * Status of the issue. Options: ('ONGOING', 'RESOLVED') * - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ status?: Merge.filestorage.IssuesListRequestStatus; } diff --git a/src/api/resources/filestorage/resources/linkToken/client/Client.ts b/src/api/resources/filestorage/resources/linkToken/client/Client.ts index 2d052f56c..850fd1701 100644 --- a/src/api/resources/filestorage/resources/linkToken/client/Client.ts +++ b/src/api/resources/filestorage/resources/linkToken/client/Client.ts @@ -78,8 +78,8 @@ export class LinkToken { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/linkedAccounts/client/Client.ts b/src/api/resources/filestorage/resources/linkedAccounts/client/Client.ts index 5c137dda4..92e935030 100644 --- a/src/api/resources/filestorage/resources/linkedAccounts/client/Client.ts +++ b/src/api/resources/filestorage/resources/linkedAccounts/client/Client.ts @@ -143,8 +143,8 @@ export class LinkedAccounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts b/src/api/resources/filestorage/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts index b221ac5e6..429d94888 100644 --- a/src/api/resources/filestorage/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts +++ b/src/api/resources/filestorage/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts @@ -12,13 +12,13 @@ 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 + * * `hris` - hris + * * `ats` - ats + * * `accounting` - accounting + * * `ticketing` - ticketing + * * `crm` - crm + * * `mktg` - mktg + * * `filestorage` - filestorage */ category?: Merge.filestorage.LinkedAccountsListRequestCategory; /** diff --git a/src/api/resources/filestorage/resources/passthrough/client/Client.ts b/src/api/resources/filestorage/resources/passthrough/client/Client.ts index 55a05019e..2e1965a2e 100644 --- a/src/api/resources/filestorage/resources/passthrough/client/Client.ts +++ b/src/api/resources/filestorage/resources/passthrough/client/Client.ts @@ -76,8 +76,8 @@ export class Passthrough { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/regenerateKey/client/Client.ts b/src/api/resources/filestorage/resources/regenerateKey/client/Client.ts index 1cc054409..612dd6335 100644 --- a/src/api/resources/filestorage/resources/regenerateKey/client/Client.ts +++ b/src/api/resources/filestorage/resources/regenerateKey/client/Client.ts @@ -75,8 +75,8 @@ export class RegenerateKey { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/scopes/client/Client.ts b/src/api/resources/filestorage/resources/scopes/client/Client.ts index b6d821688..6b4f4fca2 100644 --- a/src/api/resources/filestorage/resources/scopes/client/Client.ts +++ b/src/api/resources/filestorage/resources/scopes/client/Client.ts @@ -70,8 +70,8 @@ export class Scopes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -150,8 +150,8 @@ export class Scopes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -258,8 +258,8 @@ export class Scopes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/syncStatus/client/Client.ts b/src/api/resources/filestorage/resources/syncStatus/client/Client.ts index 5f4b08f48..9e1a282dd 100644 --- a/src/api/resources/filestorage/resources/syncStatus/client/Client.ts +++ b/src/api/resources/filestorage/resources/syncStatus/client/Client.ts @@ -83,8 +83,8 @@ export class SyncStatus { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/users/client/Client.ts b/src/api/resources/filestorage/resources/users/client/Client.ts index 1b8c42e40..a97ce250d 100644 --- a/src/api/resources/filestorage/resources/users/client/Client.ts +++ b/src/api/resources/filestorage/resources/users/client/Client.ts @@ -131,8 +131,8 @@ export class Users { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -228,8 +228,8 @@ export class Users { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/resources/webhookReceivers/client/Client.ts b/src/api/resources/filestorage/resources/webhookReceivers/client/Client.ts index b9b2640ab..37503941f 100644 --- a/src/api/resources/filestorage/resources/webhookReceivers/client/Client.ts +++ b/src/api/resources/filestorage/resources/webhookReceivers/client/Client.ts @@ -70,8 +70,8 @@ export class WebhookReceivers { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -158,8 +158,8 @@ export class WebhookReceivers { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/filestorage/types/AccountDetailsAndActions.ts b/src/api/resources/filestorage/types/AccountDetailsAndActions.ts index 3803be869..71e873ebe 100644 --- a/src/api/resources/filestorage/types/AccountDetailsAndActions.ts +++ b/src/api/resources/filestorage/types/AccountDetailsAndActions.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/filestorage/types/AccountDetailsAndActionsStatusEnum.ts b/src/api/resources/filestorage/types/AccountDetailsAndActionsStatusEnum.ts index c0020279f..3a923df0f 100644 --- a/src/api/resources/filestorage/types/AccountDetailsAndActionsStatusEnum.ts +++ b/src/api/resources/filestorage/types/AccountDetailsAndActionsStatusEnum.ts @@ -3,10 +3,10 @@ */ /** - * - `COMPLETE` - COMPLETE - * - `INCOMPLETE` - INCOMPLETE - * - `RELINK_NEEDED` - RELINK_NEEDED - * - `IDLE` - IDLE + * * `COMPLETE` - COMPLETE + * * `INCOMPLETE` - INCOMPLETE + * * `RELINK_NEEDED` - RELINK_NEEDED + * * `IDLE` - IDLE */ export type AccountDetailsAndActionsStatusEnum = "COMPLETE" | "INCOMPLETE" | "RELINK_NEEDED" | "IDLE"; export const AccountDetailsAndActionsStatusEnum = { diff --git a/src/api/resources/filestorage/types/AuditLogEvent.ts b/src/api/resources/filestorage/types/AuditLogEvent.ts index c2fa3c9e7..3288a3da2 100644 --- a/src/api/resources/filestorage/types/AuditLogEvent.ts +++ b/src/api/resources/filestorage/types/AuditLogEvent.ts @@ -13,60 +13,60 @@ export interface AuditLogEvent { /** * 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 + * * `ADMIN` - ADMIN + * * `DEVELOPER` - DEVELOPER + * * `MEMBER` - MEMBER + * * `API` - API + * * `SYSTEM` - SYSTEM + * * `MERGE_TEAM` - MERGE_TEAM */ role: Merge.filestorage.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 - * - `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 + * * `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 + * * `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.filestorage.AuditLogEventEventType; eventDescription: string; diff --git a/src/api/resources/filestorage/types/AuditLogEventEventType.ts b/src/api/resources/filestorage/types/AuditLogEventEventType.ts index 9c23dea79..c69744825 100644 --- a/src/api/resources/filestorage/types/AuditLogEventEventType.ts +++ b/src/api/resources/filestorage/types/AuditLogEventEventType.ts @@ -7,47 +7,47 @@ import * 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 - * - `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 + * * `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 + * * `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.filestorage.EventTypeEnum | string; diff --git a/src/api/resources/filestorage/types/AuditLogEventRole.ts b/src/api/resources/filestorage/types/AuditLogEventRole.ts index bb02ac92b..4607a2566 100644 --- a/src/api/resources/filestorage/types/AuditLogEventRole.ts +++ b/src/api/resources/filestorage/types/AuditLogEventRole.ts @@ -7,11 +7,11 @@ import * 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 + * * `ADMIN` - ADMIN + * * `DEVELOPER` - DEVELOPER + * * `MEMBER` - MEMBER + * * `API` - API + * * `SYSTEM` - SYSTEM + * * `MERGE_TEAM` - MERGE_TEAM */ export type AuditLogEventRole = Merge.filestorage.RoleEnum | string; diff --git a/src/api/resources/filestorage/types/AvailableActions.ts b/src/api/resources/filestorage/types/AvailableActions.ts index a69109446..1c6ff3da0 100644 --- a/src/api/resources/filestorage/types/AvailableActions.ts +++ b/src/api/resources/filestorage/types/AvailableActions.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/filestorage/types/CategoriesEnum.ts b/src/api/resources/filestorage/types/CategoriesEnum.ts index a5eb57230..ca8bf9e21 100644 --- a/src/api/resources/filestorage/types/CategoriesEnum.ts +++ b/src/api/resources/filestorage/types/CategoriesEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `hris` - hris - * - `ats` - ats - * - `accounting` - accounting - * - `ticketing` - ticketing - * - `crm` - crm - * - `mktg` - mktg - * - `filestorage` - filestorage + * * `hris` - hris + * * `ats` - ats + * * `accounting` - accounting + * * `ticketing` - ticketing + * * `crm` - crm + * * `mktg` - mktg + * * `filestorage` - filestorage */ export type CategoriesEnum = "hris" | "ats" | "accounting" | "ticketing" | "crm" | "mktg" | "filestorage"; export const CategoriesEnum = { diff --git a/src/api/resources/filestorage/types/CategoryEnum.ts b/src/api/resources/filestorage/types/CategoryEnum.ts index 6d3d6d6ae..94af662f7 100644 --- a/src/api/resources/filestorage/types/CategoryEnum.ts +++ b/src/api/resources/filestorage/types/CategoryEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `hris` - hris - * - `ats` - ats - * - `accounting` - accounting - * - `ticketing` - ticketing - * - `crm` - crm - * - `mktg` - mktg - * - `filestorage` - filestorage + * * `hris` - hris + * * `ats` - ats + * * `accounting` - accounting + * * `ticketing` - ticketing + * * `crm` - crm + * * `mktg` - mktg + * * `filestorage` - filestorage */ export type CategoryEnum = "hris" | "ats" | "accounting" | "ticketing" | "crm" | "mktg" | "filestorage"; export const CategoryEnum = { diff --git a/src/api/resources/filestorage/types/DataPassthroughRequest.ts b/src/api/resources/filestorage/types/DataPassthroughRequest.ts index db30b40e1..1cd0c3e3d 100644 --- a/src/api/resources/filestorage/types/DataPassthroughRequest.ts +++ b/src/api/resources/filestorage/types/DataPassthroughRequest.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/filestorage/types/Drive.ts b/src/api/resources/filestorage/types/Drive.ts index c69576606..4ddfafa19 100644 --- a/src/api/resources/filestorage/types/Drive.ts +++ b/src/api/resources/filestorage/types/Drive.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Drive Object - * * ### Description - * * The `Drive` object is used to represent a drive that contains the folders and files in the user's workspace. - * * ### Usage Example - * * Fetch from the `GET /api/filestorage/v1/drives` endpoint and view their drives. */ export interface Drive { diff --git a/src/api/resources/filestorage/types/EnabledActionsEnum.ts b/src/api/resources/filestorage/types/EnabledActionsEnum.ts index 24418b130..62022883a 100644 --- a/src/api/resources/filestorage/types/EnabledActionsEnum.ts +++ b/src/api/resources/filestorage/types/EnabledActionsEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `READ` - READ - * - `WRITE` - WRITE + * * `READ` - READ + * * `WRITE` - WRITE */ export type EnabledActionsEnum = "READ" | "WRITE"; export const EnabledActionsEnum = { diff --git a/src/api/resources/filestorage/types/EncodingEnum.ts b/src/api/resources/filestorage/types/EncodingEnum.ts index a828347f8..4dfc82b61 100644 --- a/src/api/resources/filestorage/types/EncodingEnum.ts +++ b/src/api/resources/filestorage/types/EncodingEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `RAW` - RAW - * - `BASE64` - BASE64 - * - `GZIP_BASE64` - GZIP_BASE64 + * * `RAW` - RAW + * * `BASE64` - BASE64 + * * `GZIP_BASE64` - GZIP_BASE64 */ export type EncodingEnum = "RAW" | "BASE64" | "GZIP_BASE64"; export const EncodingEnum = { diff --git a/src/api/resources/filestorage/types/EventTypeEnum.ts b/src/api/resources/filestorage/types/EventTypeEnum.ts index 08d0f1ce3..316d8531b 100644 --- a/src/api/resources/filestorage/types/EventTypeEnum.ts +++ b/src/api/resources/filestorage/types/EventTypeEnum.ts @@ -3,48 +3,48 @@ */ /** - * - `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 - * - `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 + * * `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 + * * `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 EventTypeEnum = | "CREATED_REMOTE_PRODUCTION_API_KEY" diff --git a/src/api/resources/filestorage/types/FileRequest.ts b/src/api/resources/filestorage/types/FileRequest.ts index 54df2ef83..298bd4401 100644 --- a/src/api/resources/filestorage/types/FileRequest.ts +++ b/src/api/resources/filestorage/types/FileRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The File Object - * * ### Description - * * The `File` object is used to represent a file in the workspace. The Object typically exists under a folder or drive, if it exists. - * * ### Usage Example - * * Fetch from the `GET /api/filestorage/v1/files` endpoint and view their files. */ export interface FileRequest { diff --git a/src/api/resources/filestorage/types/File_.ts b/src/api/resources/filestorage/types/File_.ts index b3605d3e2..c826d5381 100644 --- a/src/api/resources/filestorage/types/File_.ts +++ b/src/api/resources/filestorage/types/File_.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The File Object - * * ### Description - * * The `File` object is used to represent a file in the workspace. The Object typically exists under a folder or drive, if it exists. - * * ### Usage Example - * * Fetch from the `GET /api/filestorage/v1/files` endpoint and view their files. */ export interface File_ { diff --git a/src/api/resources/filestorage/types/Folder.ts b/src/api/resources/filestorage/types/Folder.ts index 35d968213..722c3cc28 100644 --- a/src/api/resources/filestorage/types/Folder.ts +++ b/src/api/resources/filestorage/types/Folder.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Folder Object - * * ### Description - * * The `Folder` object is used to represent a collection of files and/or folders in the workspace. Could be within a drive, if it exists. - * * ### Usage Example - * * Fetch from the `GET /api/filestorage/v1/folders` endpoint and view their folders. */ export interface Folder { diff --git a/src/api/resources/filestorage/types/FolderRequest.ts b/src/api/resources/filestorage/types/FolderRequest.ts index f80cbd1d2..2320870d2 100644 --- a/src/api/resources/filestorage/types/FolderRequest.ts +++ b/src/api/resources/filestorage/types/FolderRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Folder Object - * * ### Description - * * The `Folder` object is used to represent a collection of files and/or folders in the workspace. Could be within a drive, if it exists. - * * ### Usage Example - * * Fetch from the `GET /api/filestorage/v1/folders` endpoint and view their folders. */ export interface FolderRequest { diff --git a/src/api/resources/filestorage/types/Group.ts b/src/api/resources/filestorage/types/Group.ts index a42b2b791..3acea8d56 100644 --- a/src/api/resources/filestorage/types/Group.ts +++ b/src/api/resources/filestorage/types/Group.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Group Object - * * ### Description - * * The `Group` object is used to represent any subset of `Users`. This can extend to company domains as well. - * * ### Usage Example - * * Fetch from the `GET /api/filestorage/v1/groups` endpoint and view their groups. */ export interface Group { diff --git a/src/api/resources/filestorage/types/Issue.ts b/src/api/resources/filestorage/types/Issue.ts index 28a5b0873..f071aa601 100644 --- a/src/api/resources/filestorage/types/Issue.ts +++ b/src/api/resources/filestorage/types/Issue.ts @@ -9,8 +9,8 @@ export interface Issue { /** * Status of the issue. Options: ('ONGOING', 'RESOLVED') * - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ status?: Merge.filestorage.IssueStatus; errorDescription: string; diff --git a/src/api/resources/filestorage/types/IssueStatus.ts b/src/api/resources/filestorage/types/IssueStatus.ts index c9d8a90e9..4c2f704e4 100644 --- a/src/api/resources/filestorage/types/IssueStatus.ts +++ b/src/api/resources/filestorage/types/IssueStatus.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * Status of the issue. Options: ('ONGOING', 'RESOLVED') * - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ export type IssueStatus = Merge.filestorage.IssueStatusEnum | string; diff --git a/src/api/resources/filestorage/types/IssueStatusEnum.ts b/src/api/resources/filestorage/types/IssueStatusEnum.ts index 56fc6d5fa..324e8bf84 100644 --- a/src/api/resources/filestorage/types/IssueStatusEnum.ts +++ b/src/api/resources/filestorage/types/IssueStatusEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ export type IssueStatusEnum = "ONGOING" | "RESOLVED"; export const IssueStatusEnum = { diff --git a/src/api/resources/filestorage/types/LanguageEnum.ts b/src/api/resources/filestorage/types/LanguageEnum.ts index 180002115..6c41852c3 100644 --- a/src/api/resources/filestorage/types/LanguageEnum.ts +++ b/src/api/resources/filestorage/types/LanguageEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `en` - en - * - `de` - de + * * `en` - en + * * `de` - de */ export type LanguageEnum = "en" | "de"; export const LanguageEnum = { diff --git a/src/api/resources/filestorage/types/LastSyncResultEnum.ts b/src/api/resources/filestorage/types/LastSyncResultEnum.ts index e14779ef7..434329895 100644 --- a/src/api/resources/filestorage/types/LastSyncResultEnum.ts +++ b/src/api/resources/filestorage/types/LastSyncResultEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `SYNCING` - SYNCING - * - `DONE` - DONE - * - `FAILED` - FAILED - * - `DISABLED` - DISABLED - * - `PAUSED` - PAUSED - * - `PARTIALLY_SYNCED` - PARTIALLY_SYNCED + * * `SYNCING` - SYNCING + * * `DONE` - DONE + * * `FAILED` - FAILED + * * `DISABLED` - DISABLED + * * `PAUSED` - PAUSED + * * `PARTIALLY_SYNCED` - PARTIALLY_SYNCED */ export type LastSyncResultEnum = "SYNCING" | "DONE" | "FAILED" | "DISABLED" | "PAUSED" | "PARTIALLY_SYNCED"; export const LastSyncResultEnum = { diff --git a/src/api/resources/filestorage/types/MethodEnum.ts b/src/api/resources/filestorage/types/MethodEnum.ts index 5d8dae516..0c151e94f 100644 --- a/src/api/resources/filestorage/types/MethodEnum.ts +++ b/src/api/resources/filestorage/types/MethodEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `GET` - GET - * - `OPTIONS` - OPTIONS - * - `HEAD` - HEAD - * - `POST` - POST - * - `PUT` - PUT - * - `PATCH` - PATCH - * - `DELETE` - DELETE + * * `GET` - GET + * * `OPTIONS` - OPTIONS + * * `HEAD` - HEAD + * * `POST` - POST + * * `PUT` - PUT + * * `PATCH` - PATCH + * * `DELETE` - DELETE */ export type MethodEnum = "GET" | "OPTIONS" | "HEAD" | "POST" | "PUT" | "PATCH" | "DELETE"; export const MethodEnum = { diff --git a/src/api/resources/filestorage/types/ModelOperation.ts b/src/api/resources/filestorage/types/ModelOperation.ts index 8126f65f6..d2035b050 100644 --- a/src/api/resources/filestorage/types/ModelOperation.ts +++ b/src/api/resources/filestorage/types/ModelOperation.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/filestorage/types/MultipartFormFieldRequest.ts b/src/api/resources/filestorage/types/MultipartFormFieldRequest.ts index d80b889b5..6dfe35697 100644 --- a/src/api/resources/filestorage/types/MultipartFormFieldRequest.ts +++ b/src/api/resources/filestorage/types/MultipartFormFieldRequest.ts @@ -6,13 +6,10 @@ import * 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 { @@ -23,9 +20,9 @@ export interface MultipartFormFieldRequest { /** * The encoding of the value of `data`. Defaults to `RAW` if not defined. * - * - `RAW` - RAW - * - `BASE64` - BASE64 - * - `GZIP_BASE64` - GZIP_BASE64 + * * `RAW` - RAW + * * `BASE64` - BASE64 + * * `GZIP_BASE64` - GZIP_BASE64 */ encoding?: Merge.filestorage.MultipartFormFieldRequestEncoding; /** The file name of the form field, if the field is for a file. */ diff --git a/src/api/resources/filestorage/types/MultipartFormFieldRequestEncoding.ts b/src/api/resources/filestorage/types/MultipartFormFieldRequestEncoding.ts index a73413789..ac482b702 100644 --- a/src/api/resources/filestorage/types/MultipartFormFieldRequestEncoding.ts +++ b/src/api/resources/filestorage/types/MultipartFormFieldRequestEncoding.ts @@ -7,8 +7,8 @@ import * 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 + * * `RAW` - RAW + * * `BASE64` - BASE64 + * * `GZIP_BASE64` - GZIP_BASE64 */ export type MultipartFormFieldRequestEncoding = Merge.filestorage.EncodingEnum | string; diff --git a/src/api/resources/filestorage/types/Permission.ts b/src/api/resources/filestorage/types/Permission.ts index 9c56627c4..4c982c5f2 100644 --- a/src/api/resources/filestorage/types/Permission.ts +++ b/src/api/resources/filestorage/types/Permission.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Permission Object - * * ### Description - * * The Permission object is used to represent a user's or group's access to a File or Folder. Permissions are unexpanded by default. * * ### Usage Example - * * Fetch from the `GET Files` or `GET Folders` endpoint. Permissions are unexpanded by default. Use the query param `expand=permissions` to see more details. */ export interface Permission { @@ -30,10 +27,10 @@ export interface Permission { /** * Denotes what type of people have access to the file. * - * - `USER` - USER - * - `GROUP` - GROUP - * - `COMPANY` - COMPANY - * - `ANYONE` - ANYONE + * * `USER` - USER + * * `GROUP` - GROUP + * * `COMPANY` - COMPANY + * * `ANYONE` - ANYONE */ type?: Merge.filestorage.PermissionType; /** The permissions that the user or group has for the File or Folder. It is possible for a user or group to have multiple roles, such as viewing & uploading. Possible values include: `READ`, `WRITE`, `OWNER`. In cases where there is no clear mapping, the original value passed through will be returned. */ diff --git a/src/api/resources/filestorage/types/PermissionRequest.ts b/src/api/resources/filestorage/types/PermissionRequest.ts index 4c8be5185..d4cbd1ddc 100644 --- a/src/api/resources/filestorage/types/PermissionRequest.ts +++ b/src/api/resources/filestorage/types/PermissionRequest.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Permission Object - * * ### Description - * * The Permission object is used to represent a user's or group's access to a File or Folder. Permissions are unexpanded by default. * * ### Usage Example - * * Fetch from the `GET Files` or `GET Folders` endpoint. Permissions are unexpanded by default. Use the query param `expand=permissions` to see more details. */ export interface PermissionRequest { @@ -25,10 +22,10 @@ export interface PermissionRequest { /** * Denotes what type of people have access to the file. * - * - `USER` - USER - * - `GROUP` - GROUP - * - `COMPANY` - COMPANY - * - `ANYONE` - ANYONE + * * `USER` - USER + * * `GROUP` - GROUP + * * `COMPANY` - COMPANY + * * `ANYONE` - ANYONE */ type?: Merge.filestorage.PermissionRequestType; /** The permissions that the user or group has for the File or Folder. It is possible for a user or group to have multiple roles, such as viewing & uploading. Possible values include: `READ`, `WRITE`, `OWNER`. In cases where there is no clear mapping, the original value passed through will be returned. */ diff --git a/src/api/resources/filestorage/types/PermissionRequestRolesItem.ts b/src/api/resources/filestorage/types/PermissionRequestRolesItem.ts index 67eae6198..af9db499d 100644 --- a/src/api/resources/filestorage/types/PermissionRequestRolesItem.ts +++ b/src/api/resources/filestorage/types/PermissionRequestRolesItem.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The permissions that the user or group has for the File or Folder. * - * - `READ` - READ - * - `WRITE` - WRITE - * - `OWNER` - OWNER + * * `READ` - READ + * * `WRITE` - WRITE + * * `OWNER` - OWNER */ export type PermissionRequestRolesItem = Merge.filestorage.RolesEnum | string; diff --git a/src/api/resources/filestorage/types/PermissionRequestType.ts b/src/api/resources/filestorage/types/PermissionRequestType.ts index 99b7203dd..3d0406dab 100644 --- a/src/api/resources/filestorage/types/PermissionRequestType.ts +++ b/src/api/resources/filestorage/types/PermissionRequestType.ts @@ -7,9 +7,9 @@ import * as Merge from "../../../index"; /** * Denotes what type of people have access to the file. * - * - `USER` - USER - * - `GROUP` - GROUP - * - `COMPANY` - COMPANY - * - `ANYONE` - ANYONE + * * `USER` - USER + * * `GROUP` - GROUP + * * `COMPANY` - COMPANY + * * `ANYONE` - ANYONE */ export type PermissionRequestType = Merge.filestorage.TypeEnum | string; diff --git a/src/api/resources/filestorage/types/PermissionRolesItem.ts b/src/api/resources/filestorage/types/PermissionRolesItem.ts index ac555d33e..ea4064529 100644 --- a/src/api/resources/filestorage/types/PermissionRolesItem.ts +++ b/src/api/resources/filestorage/types/PermissionRolesItem.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The permissions that the user or group has for the File or Folder. * - * - `READ` - READ - * - `WRITE` - WRITE - * - `OWNER` - OWNER + * * `READ` - READ + * * `WRITE` - WRITE + * * `OWNER` - OWNER */ export type PermissionRolesItem = Merge.filestorage.RolesEnum | string; diff --git a/src/api/resources/filestorage/types/PermissionType.ts b/src/api/resources/filestorage/types/PermissionType.ts index 166db7959..41e0bf15d 100644 --- a/src/api/resources/filestorage/types/PermissionType.ts +++ b/src/api/resources/filestorage/types/PermissionType.ts @@ -7,9 +7,9 @@ import * as Merge from "../../../index"; /** * Denotes what type of people have access to the file. * - * - `USER` - USER - * - `GROUP` - GROUP - * - `COMPANY` - COMPANY - * - `ANYONE` - ANYONE + * * `USER` - USER + * * `GROUP` - GROUP + * * `COMPANY` - COMPANY + * * `ANYONE` - ANYONE */ export type PermissionType = Merge.filestorage.TypeEnum | string; diff --git a/src/api/resources/filestorage/types/RemoteData.ts b/src/api/resources/filestorage/types/RemoteData.ts index 928b06e7a..ab15ac8ee 100644 --- a/src/api/resources/filestorage/types/RemoteData.ts +++ b/src/api/resources/filestorage/types/RemoteData.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/filestorage/types/RemoteKey.ts b/src/api/resources/filestorage/types/RemoteKey.ts index 878f41321..6f8bf2dbf 100644 --- a/src/api/resources/filestorage/types/RemoteKey.ts +++ b/src/api/resources/filestorage/types/RemoteKey.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/filestorage/types/RemoteResponse.ts b/src/api/resources/filestorage/types/RemoteResponse.ts index 38180a016..c451553ad 100644 --- a/src/api/resources/filestorage/types/RemoteResponse.ts +++ b/src/api/resources/filestorage/types/RemoteResponse.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/filestorage/types/RequestFormatEnum.ts b/src/api/resources/filestorage/types/RequestFormatEnum.ts index 6c5f28198..132d6eea5 100644 --- a/src/api/resources/filestorage/types/RequestFormatEnum.ts +++ b/src/api/resources/filestorage/types/RequestFormatEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `JSON` - JSON - * - `XML` - XML - * - `MULTIPART` - MULTIPART + * * `JSON` - JSON + * * `XML` - XML + * * `MULTIPART` - MULTIPART */ export type RequestFormatEnum = "JSON" | "XML" | "MULTIPART"; export const RequestFormatEnum = { diff --git a/src/api/resources/filestorage/types/ResponseTypeEnum.ts b/src/api/resources/filestorage/types/ResponseTypeEnum.ts index e123001a6..5bef2d16e 100644 --- a/src/api/resources/filestorage/types/ResponseTypeEnum.ts +++ b/src/api/resources/filestorage/types/ResponseTypeEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `JSON` - JSON - * - `BASE64_GZIP` - BASE64_GZIP + * * `JSON` - JSON + * * `BASE64_GZIP` - BASE64_GZIP */ export type ResponseTypeEnum = "JSON" | "BASE64_GZIP"; export const ResponseTypeEnum = { diff --git a/src/api/resources/filestorage/types/RoleEnum.ts b/src/api/resources/filestorage/types/RoleEnum.ts index d7b99ac49..a3341a6e1 100644 --- a/src/api/resources/filestorage/types/RoleEnum.ts +++ b/src/api/resources/filestorage/types/RoleEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `ADMIN` - ADMIN - * - `DEVELOPER` - DEVELOPER - * - `MEMBER` - MEMBER - * - `API` - API - * - `SYSTEM` - SYSTEM - * - `MERGE_TEAM` - MERGE_TEAM + * * `ADMIN` - ADMIN + * * `DEVELOPER` - DEVELOPER + * * `MEMBER` - MEMBER + * * `API` - API + * * `SYSTEM` - SYSTEM + * * `MERGE_TEAM` - MERGE_TEAM */ export type RoleEnum = "ADMIN" | "DEVELOPER" | "MEMBER" | "API" | "SYSTEM" | "MERGE_TEAM"; export const RoleEnum = { diff --git a/src/api/resources/filestorage/types/RolesEnum.ts b/src/api/resources/filestorage/types/RolesEnum.ts index d3f203a33..837bf965b 100644 --- a/src/api/resources/filestorage/types/RolesEnum.ts +++ b/src/api/resources/filestorage/types/RolesEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `READ` - READ - * - `WRITE` - WRITE - * - `OWNER` - OWNER + * * `READ` - READ + * * `WRITE` - WRITE + * * `OWNER` - OWNER */ export type RolesEnum = "READ" | "WRITE" | "OWNER"; export const RolesEnum = { diff --git a/src/api/resources/filestorage/types/SelectiveSyncConfigurationsUsageEnum.ts b/src/api/resources/filestorage/types/SelectiveSyncConfigurationsUsageEnum.ts index db8508f89..473a4c15e 100644 --- a/src/api/resources/filestorage/types/SelectiveSyncConfigurationsUsageEnum.ts +++ b/src/api/resources/filestorage/types/SelectiveSyncConfigurationsUsageEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `IN_NEXT_SYNC` - IN_NEXT_SYNC - * - `IN_LAST_SYNC` - IN_LAST_SYNC + * * `IN_NEXT_SYNC` - IN_NEXT_SYNC + * * `IN_LAST_SYNC` - IN_LAST_SYNC */ export type SelectiveSyncConfigurationsUsageEnum = "IN_NEXT_SYNC" | "IN_LAST_SYNC"; export const SelectiveSyncConfigurationsUsageEnum = { diff --git a/src/api/resources/filestorage/types/StatusFd5Enum.ts b/src/api/resources/filestorage/types/StatusFd5Enum.ts index 837436325..e8a7a4eec 100644 --- a/src/api/resources/filestorage/types/StatusFd5Enum.ts +++ b/src/api/resources/filestorage/types/StatusFd5Enum.ts @@ -3,12 +3,12 @@ */ /** - * - `SYNCING` - SYNCING - * - `DONE` - DONE - * - `FAILED` - FAILED - * - `DISABLED` - DISABLED - * - `PAUSED` - PAUSED - * - `PARTIALLY_SYNCED` - PARTIALLY_SYNCED + * * `SYNCING` - SYNCING + * * `DONE` - DONE + * * `FAILED` - FAILED + * * `DISABLED` - DISABLED + * * `PAUSED` - PAUSED + * * `PARTIALLY_SYNCED` - PARTIALLY_SYNCED */ export type StatusFd5Enum = "SYNCING" | "DONE" | "FAILED" | "DISABLED" | "PAUSED" | "PARTIALLY_SYNCED"; export const StatusFd5Enum = { diff --git a/src/api/resources/filestorage/types/SyncStatus.ts b/src/api/resources/filestorage/types/SyncStatus.ts index 5ef0ce33d..69407a578 100644 --- a/src/api/resources/filestorage/types/SyncStatus.ts +++ b/src/api/resources/filestorage/types/SyncStatus.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/filestorage/types/TypeEnum.ts b/src/api/resources/filestorage/types/TypeEnum.ts index 5eac15f0d..9fdbf943f 100644 --- a/src/api/resources/filestorage/types/TypeEnum.ts +++ b/src/api/resources/filestorage/types/TypeEnum.ts @@ -3,10 +3,10 @@ */ /** - * - `USER` - USER - * - `GROUP` - GROUP - * - `COMPANY` - COMPANY - * - `ANYONE` - ANYONE + * * `USER` - USER + * * `GROUP` - GROUP + * * `COMPANY` - COMPANY + * * `ANYONE` - ANYONE */ export type TypeEnum = "USER" | "GROUP" | "COMPANY" | "ANYONE"; export const TypeEnum = { diff --git a/src/api/resources/filestorage/types/User.ts b/src/api/resources/filestorage/types/User.ts index 93fb3181c..268241650 100644 --- a/src/api/resources/filestorage/types/User.ts +++ b/src/api/resources/filestorage/types/User.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The User Object - * * ### Description - * * The `User` object is used to represent a user within the File Storage account. - * * ### Usage Example - * * Fetch from the `GET /api/filestorage/v1/users` endpoint and view their users. */ export interface User { diff --git a/src/api/resources/hris/resources/accountDetails/client/Client.ts b/src/api/resources/hris/resources/accountDetails/client/Client.ts index 6d0195c96..182a91f6e 100644 --- a/src/api/resources/hris/resources/accountDetails/client/Client.ts +++ b/src/api/resources/hris/resources/accountDetails/client/Client.ts @@ -70,8 +70,8 @@ export class AccountDetails { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/accountToken/client/Client.ts b/src/api/resources/hris/resources/accountToken/client/Client.ts index a69b4795d..fc0a141b6 100644 --- a/src/api/resources/hris/resources/accountToken/client/Client.ts +++ b/src/api/resources/hris/resources/accountToken/client/Client.ts @@ -73,8 +73,8 @@ export class AccountToken { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/asyncPassthrough/client/Client.ts b/src/api/resources/hris/resources/asyncPassthrough/client/Client.ts index 2d8c13040..622e8679e 100644 --- a/src/api/resources/hris/resources/asyncPassthrough/client/Client.ts +++ b/src/api/resources/hris/resources/asyncPassthrough/client/Client.ts @@ -76,8 +76,8 @@ export class AsyncPassthrough { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -160,8 +160,8 @@ export class AsyncPassthrough { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/auditTrail/client/Client.ts b/src/api/resources/hris/resources/auditTrail/client/Client.ts index dfd2f49ac..2215676a2 100644 --- a/src/api/resources/hris/resources/auditTrail/client/Client.ts +++ b/src/api/resources/hris/resources/auditTrail/client/Client.ts @@ -99,8 +99,8 @@ export class AuditTrail { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/availableActions/client/Client.ts b/src/api/resources/hris/resources/availableActions/client/Client.ts index 7771c9a77..8efb29740 100644 --- a/src/api/resources/hris/resources/availableActions/client/Client.ts +++ b/src/api/resources/hris/resources/availableActions/client/Client.ts @@ -70,8 +70,8 @@ export class AvailableActions { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/bankInfo/client/Client.ts b/src/api/resources/hris/resources/bankInfo/client/Client.ts index 87a6a219b..982747958 100644 --- a/src/api/resources/hris/resources/bankInfo/client/Client.ts +++ b/src/api/resources/hris/resources/bankInfo/client/Client.ts @@ -165,8 +165,8 @@ export class BankInfo { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -274,8 +274,8 @@ export class BankInfo { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/bankInfo/client/requests/BankInfoListRequest.ts b/src/api/resources/hris/resources/bankInfo/client/requests/BankInfoListRequest.ts index 21be0b6a1..a3798fc74 100644 --- a/src/api/resources/hris/resources/bankInfo/client/requests/BankInfoListRequest.ts +++ b/src/api/resources/hris/resources/bankInfo/client/requests/BankInfoListRequest.ts @@ -12,8 +12,8 @@ export interface BankInfoListRequest { /** * If provided, will only return BankInfo's with this account type. Options: ('SAVINGS', 'CHECKING') * - * - `SAVINGS` - SAVINGS - * - `CHECKING` - CHECKING + * * `SAVINGS` - SAVINGS + * * `CHECKING` - CHECKING */ accountType?: Merge.hris.BankInfoListRequestAccountType; /** diff --git a/src/api/resources/hris/resources/benefits/client/Client.ts b/src/api/resources/hris/resources/benefits/client/Client.ts index 5a5cc4938..6d135d63e 100644 --- a/src/api/resources/hris/resources/benefits/client/Client.ts +++ b/src/api/resources/hris/resources/benefits/client/Client.ts @@ -136,8 +136,8 @@ export class Benefits { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -237,8 +237,8 @@ export class Benefits { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/companies/client/Client.ts b/src/api/resources/hris/resources/companies/client/Client.ts index 5fde7880f..00893104f 100644 --- a/src/api/resources/hris/resources/companies/client/Client.ts +++ b/src/api/resources/hris/resources/companies/client/Client.ts @@ -126,8 +126,8 @@ export class Companies { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -223,8 +223,8 @@ export class Companies { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/deleteAccount/client/Client.ts b/src/api/resources/hris/resources/deleteAccount/client/Client.ts index 9852fd243..ec7f37edf 100644 --- a/src/api/resources/hris/resources/deleteAccount/client/Client.ts +++ b/src/api/resources/hris/resources/deleteAccount/client/Client.ts @@ -64,8 +64,8 @@ export class DeleteAccount { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/dependents/client/Client.ts b/src/api/resources/hris/resources/dependents/client/Client.ts index 3e88fd8f9..b23ad7f66 100644 --- a/src/api/resources/hris/resources/dependents/client/Client.ts +++ b/src/api/resources/hris/resources/dependents/client/Client.ts @@ -131,8 +131,8 @@ export class Dependents { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -232,8 +232,8 @@ export class Dependents { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/employeePayrollRuns/client/Client.ts b/src/api/resources/hris/resources/employeePayrollRuns/client/Client.ts index 1d752e7c8..b6178d6c7 100644 --- a/src/api/resources/hris/resources/employeePayrollRuns/client/Client.ts +++ b/src/api/resources/hris/resources/employeePayrollRuns/client/Client.ts @@ -163,8 +163,8 @@ export class EmployeePayrollRuns { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -266,8 +266,8 @@ export class EmployeePayrollRuns { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/employees/client/Client.ts b/src/api/resources/hris/resources/employees/client/Client.ts index 861d06a88..29f5da72f 100644 --- a/src/api/resources/hris/resources/employees/client/Client.ts +++ b/src/api/resources/hris/resources/employees/client/Client.ts @@ -252,8 +252,8 @@ export class Employees { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -348,8 +348,8 @@ export class Employees { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -471,8 +471,8 @@ export class Employees { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -560,8 +560,8 @@ export class Employees { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -634,8 +634,8 @@ export class Employees { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/employees/client/requests/EmployeesListRequest.ts b/src/api/resources/hris/resources/employees/client/requests/EmployeesListRequest.ts index 1aa67b156..22c54e6ff 100644 --- a/src/api/resources/hris/resources/employees/client/requests/EmployeesListRequest.ts +++ b/src/api/resources/hris/resources/employees/client/requests/EmployeesListRequest.ts @@ -32,9 +32,9 @@ export interface EmployeesListRequest { /** * If provided, will only return employees with this employment status. * - * - `ACTIVE` - ACTIVE - * - `PENDING` - PENDING - * - `INACTIVE` - INACTIVE + * * `ACTIVE` - ACTIVE + * * `PENDING` - PENDING + * * `INACTIVE` - INACTIVE */ employmentStatus?: Merge.hris.EmployeesListRequestEmploymentStatus; /** diff --git a/src/api/resources/hris/resources/employerBenefits/client/Client.ts b/src/api/resources/hris/resources/employerBenefits/client/Client.ts index 5c7271654..44755fa5b 100644 --- a/src/api/resources/hris/resources/employerBenefits/client/Client.ts +++ b/src/api/resources/hris/resources/employerBenefits/client/Client.ts @@ -126,8 +126,8 @@ export class EmployerBenefits { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -223,8 +223,8 @@ export class EmployerBenefits { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/employments/client/Client.ts b/src/api/resources/hris/resources/employments/client/Client.ts index 37ca50204..3cba89fa6 100644 --- a/src/api/resources/hris/resources/employments/client/Client.ts +++ b/src/api/resources/hris/resources/employments/client/Client.ts @@ -161,8 +161,8 @@ export class Employments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -278,8 +278,8 @@ export class Employments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/fieldMapping/client/Client.ts b/src/api/resources/hris/resources/fieldMapping/client/Client.ts index 138f622b2..c6242e198 100644 --- a/src/api/resources/hris/resources/fieldMapping/client/Client.ts +++ b/src/api/resources/hris/resources/fieldMapping/client/Client.ts @@ -79,8 +79,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -176,8 +176,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -261,8 +261,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -351,8 +351,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -449,8 +449,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -530,8 +530,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/forceResync/client/Client.ts b/src/api/resources/hris/resources/forceResync/client/Client.ts index 6708380ac..03d448b8c 100644 --- a/src/api/resources/hris/resources/forceResync/client/Client.ts +++ b/src/api/resources/hris/resources/forceResync/client/Client.ts @@ -70,8 +70,8 @@ export class ForceResync { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/generateKey/client/Client.ts b/src/api/resources/hris/resources/generateKey/client/Client.ts index 673577dc8..9e7ebf0d7 100644 --- a/src/api/resources/hris/resources/generateKey/client/Client.ts +++ b/src/api/resources/hris/resources/generateKey/client/Client.ts @@ -75,8 +75,8 @@ export class GenerateKey { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/groups/client/Client.ts b/src/api/resources/hris/resources/groups/client/Client.ts index f38342c6d..c5f2dcc5c 100644 --- a/src/api/resources/hris/resources/groups/client/Client.ts +++ b/src/api/resources/hris/resources/groups/client/Client.ts @@ -151,8 +151,8 @@ export class Groups { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -256,8 +256,8 @@ export class Groups { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/issues/client/Client.ts b/src/api/resources/hris/resources/issues/client/Client.ts index a8f9e7308..fc31b165a 100644 --- a/src/api/resources/hris/resources/issues/client/Client.ts +++ b/src/api/resources/hris/resources/issues/client/Client.ts @@ -148,8 +148,8 @@ export class Issues { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -229,8 +229,8 @@ export class Issues { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/issues/client/requests/IssuesListRequest.ts b/src/api/resources/hris/resources/issues/client/requests/IssuesListRequest.ts index 4c08d2cfc..99f60918b 100644 --- a/src/api/resources/hris/resources/issues/client/requests/IssuesListRequest.ts +++ b/src/api/resources/hris/resources/issues/client/requests/IssuesListRequest.ts @@ -55,8 +55,8 @@ export interface IssuesListRequest { /** * Status of the issue. Options: ('ONGOING', 'RESOLVED') * - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ status?: Merge.hris.IssuesListRequestStatus; } diff --git a/src/api/resources/hris/resources/linkToken/client/Client.ts b/src/api/resources/hris/resources/linkToken/client/Client.ts index 01d6907a3..03d184cea 100644 --- a/src/api/resources/hris/resources/linkToken/client/Client.ts +++ b/src/api/resources/hris/resources/linkToken/client/Client.ts @@ -78,8 +78,8 @@ export class LinkToken { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/linkedAccounts/client/Client.ts b/src/api/resources/hris/resources/linkedAccounts/client/Client.ts index cb16e4760..cf20d16be 100644 --- a/src/api/resources/hris/resources/linkedAccounts/client/Client.ts +++ b/src/api/resources/hris/resources/linkedAccounts/client/Client.ts @@ -143,8 +143,8 @@ export class LinkedAccounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts b/src/api/resources/hris/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts index 14e6c5190..0e0825895 100644 --- a/src/api/resources/hris/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts +++ b/src/api/resources/hris/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts @@ -12,13 +12,13 @@ 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 + * * `hris` - hris + * * `ats` - ats + * * `accounting` - accounting + * * `ticketing` - ticketing + * * `crm` - crm + * * `mktg` - mktg + * * `filestorage` - filestorage */ category?: Merge.hris.LinkedAccountsListRequestCategory; /** diff --git a/src/api/resources/hris/resources/locations/client/Client.ts b/src/api/resources/hris/resources/locations/client/Client.ts index d627080bd..0671a210c 100644 --- a/src/api/resources/hris/resources/locations/client/Client.ts +++ b/src/api/resources/hris/resources/locations/client/Client.ts @@ -150,8 +150,8 @@ export class Locations { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -261,8 +261,8 @@ export class Locations { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/locations/client/requests/LocationsListRequest.ts b/src/api/resources/hris/resources/locations/client/requests/LocationsListRequest.ts index 5e2ef135d..45c8fc963 100644 --- a/src/api/resources/hris/resources/locations/client/requests/LocationsListRequest.ts +++ b/src/api/resources/hris/resources/locations/client/requests/LocationsListRequest.ts @@ -36,8 +36,8 @@ export interface LocationsListRequest { /** * If provided, will only return locations with this location_type * - * - `HOME` - HOME - * - `WORK` - WORK + * * `HOME` - HOME + * * `WORK` - WORK */ locationType?: Merge.hris.LocationsListRequestLocationType; /** diff --git a/src/api/resources/hris/resources/passthrough/client/Client.ts b/src/api/resources/hris/resources/passthrough/client/Client.ts index 789b9d4b3..9f0c65bad 100644 --- a/src/api/resources/hris/resources/passthrough/client/Client.ts +++ b/src/api/resources/hris/resources/passthrough/client/Client.ts @@ -76,8 +76,8 @@ export class Passthrough { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/payGroups/client/Client.ts b/src/api/resources/hris/resources/payGroups/client/Client.ts index 16d4c4931..1f55209c4 100644 --- a/src/api/resources/hris/resources/payGroups/client/Client.ts +++ b/src/api/resources/hris/resources/payGroups/client/Client.ts @@ -126,8 +126,8 @@ export class PayGroups { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -223,8 +223,8 @@ export class PayGroups { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/payrollRuns/client/Client.ts b/src/api/resources/hris/resources/payrollRuns/client/Client.ts index 968522f59..828ee2a6f 100644 --- a/src/api/resources/hris/resources/payrollRuns/client/Client.ts +++ b/src/api/resources/hris/resources/payrollRuns/client/Client.ts @@ -169,8 +169,8 @@ export class PayrollRuns { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -280,8 +280,8 @@ export class PayrollRuns { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/payrollRuns/client/requests/PayrollRunsListRequest.ts b/src/api/resources/hris/resources/payrollRuns/client/requests/PayrollRunsListRequest.ts index 377e9925c..24c5fa536 100644 --- a/src/api/resources/hris/resources/payrollRuns/client/requests/PayrollRunsListRequest.ts +++ b/src/api/resources/hris/resources/payrollRuns/client/requests/PayrollRunsListRequest.ts @@ -64,11 +64,11 @@ export interface PayrollRunsListRequest { /** * If provided, will only return PayrollRun's with this status. Options: ('REGULAR', 'OFF_CYCLE', 'CORRECTION', 'TERMINATION', 'SIGN_ON_BONUS') * - * - `REGULAR` - REGULAR - * - `OFF_CYCLE` - OFF_CYCLE - * - `CORRECTION` - CORRECTION - * - `TERMINATION` - TERMINATION - * - `SIGN_ON_BONUS` - SIGN_ON_BONUS + * * `REGULAR` - REGULAR + * * `OFF_CYCLE` - OFF_CYCLE + * * `CORRECTION` - CORRECTION + * * `TERMINATION` - TERMINATION + * * `SIGN_ON_BONUS` - SIGN_ON_BONUS */ runType?: Merge.hris.PayrollRunsListRequestRunType; /** diff --git a/src/api/resources/hris/resources/regenerateKey/client/Client.ts b/src/api/resources/hris/resources/regenerateKey/client/Client.ts index bc02c82fa..0bbd307dc 100644 --- a/src/api/resources/hris/resources/regenerateKey/client/Client.ts +++ b/src/api/resources/hris/resources/regenerateKey/client/Client.ts @@ -75,8 +75,8 @@ export class RegenerateKey { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/scopes/client/Client.ts b/src/api/resources/hris/resources/scopes/client/Client.ts index d0488613f..2e41cf1aa 100644 --- a/src/api/resources/hris/resources/scopes/client/Client.ts +++ b/src/api/resources/hris/resources/scopes/client/Client.ts @@ -70,8 +70,8 @@ export class Scopes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -150,8 +150,8 @@ export class Scopes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -256,8 +256,8 @@ export class Scopes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/syncStatus/client/Client.ts b/src/api/resources/hris/resources/syncStatus/client/Client.ts index a9c7a5581..20cf26cbd 100644 --- a/src/api/resources/hris/resources/syncStatus/client/Client.ts +++ b/src/api/resources/hris/resources/syncStatus/client/Client.ts @@ -83,8 +83,8 @@ export class SyncStatus { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/teams/client/Client.ts b/src/api/resources/hris/resources/teams/client/Client.ts index 26a0025f2..2662c7ea3 100644 --- a/src/api/resources/hris/resources/teams/client/Client.ts +++ b/src/api/resources/hris/resources/teams/client/Client.ts @@ -136,8 +136,8 @@ export class Teams { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -237,8 +237,8 @@ export class Teams { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/timeOff/client/Client.ts b/src/api/resources/hris/resources/timeOff/client/Client.ts index 99b33317d..740a0a536 100644 --- a/src/api/resources/hris/resources/timeOff/client/Client.ts +++ b/src/api/resources/hris/resources/timeOff/client/Client.ts @@ -192,8 +192,8 @@ export class TimeOff { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -288,8 +288,8 @@ export class TimeOff { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -406,8 +406,8 @@ export class TimeOff { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -487,8 +487,8 @@ export class TimeOff { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/timeOff/client/requests/TimeOffListRequest.ts b/src/api/resources/hris/resources/timeOff/client/requests/TimeOffListRequest.ts index f684f0494..92f31f00f 100644 --- a/src/api/resources/hris/resources/timeOff/client/requests/TimeOffListRequest.ts +++ b/src/api/resources/hris/resources/timeOff/client/requests/TimeOffListRequest.ts @@ -76,12 +76,12 @@ export interface TimeOffListRequest { /** * If provided, will only return TimeOff with this request type. Options: ('VACATION', 'SICK', 'PERSONAL', 'JURY_DUTY', 'VOLUNTEER', 'BEREAVEMENT') * - * - `VACATION` - VACATION - * - `SICK` - SICK - * - `PERSONAL` - PERSONAL - * - `JURY_DUTY` - JURY_DUTY - * - `VOLUNTEER` - VOLUNTEER - * - `BEREAVEMENT` - BEREAVEMENT + * * `VACATION` - VACATION + * * `SICK` - SICK + * * `PERSONAL` - PERSONAL + * * `JURY_DUTY` - JURY_DUTY + * * `VOLUNTEER` - VOLUNTEER + * * `BEREAVEMENT` - BEREAVEMENT */ requestType?: Merge.hris.TimeOffListRequestRequestType; /** @@ -99,11 +99,11 @@ export interface TimeOffListRequest { /** * If provided, will only return TimeOff with this status. Options: ('REQUESTED', 'APPROVED', 'DECLINED', 'CANCELLED', 'DELETED') * - * - `REQUESTED` - REQUESTED - * - `APPROVED` - APPROVED - * - `DECLINED` - DECLINED - * - `CANCELLED` - CANCELLED - * - `DELETED` - DELETED + * * `REQUESTED` - REQUESTED + * * `APPROVED` - APPROVED + * * `DECLINED` - DECLINED + * * `CANCELLED` - CANCELLED + * * `DELETED` - DELETED */ status?: Merge.hris.TimeOffListRequestStatus; } diff --git a/src/api/resources/hris/resources/timeOffBalances/client/Client.ts b/src/api/resources/hris/resources/timeOffBalances/client/Client.ts index 0adf59477..01f557251 100644 --- a/src/api/resources/hris/resources/timeOffBalances/client/Client.ts +++ b/src/api/resources/hris/resources/timeOffBalances/client/Client.ts @@ -154,8 +154,8 @@ export class TimeOffBalances { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -263,8 +263,8 @@ export class TimeOffBalances { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/timeOffBalances/client/requests/TimeOffBalancesListRequest.ts b/src/api/resources/hris/resources/timeOffBalances/client/requests/TimeOffBalancesListRequest.ts index 323edc1b0..4a2fcc3d9 100644 --- a/src/api/resources/hris/resources/timeOffBalances/client/requests/TimeOffBalancesListRequest.ts +++ b/src/api/resources/hris/resources/timeOffBalances/client/requests/TimeOffBalancesListRequest.ts @@ -56,12 +56,12 @@ export interface TimeOffBalancesListRequest { /** * If provided, will only return TimeOffBalance with this policy type. Options: ('VACATION', 'SICK', 'PERSONAL', 'JURY_DUTY', 'VOLUNTEER', 'BEREAVEMENT') * - * - `VACATION` - VACATION - * - `SICK` - SICK - * - `PERSONAL` - PERSONAL - * - `JURY_DUTY` - JURY_DUTY - * - `VOLUNTEER` - VOLUNTEER - * - `BEREAVEMENT` - BEREAVEMENT + * * `VACATION` - VACATION + * * `SICK` - SICK + * * `PERSONAL` - PERSONAL + * * `JURY_DUTY` - JURY_DUTY + * * `VOLUNTEER` - VOLUNTEER + * * `BEREAVEMENT` - BEREAVEMENT */ policyType?: Merge.hris.TimeOffBalancesListRequestPolicyType; /** diff --git a/src/api/resources/hris/resources/timesheetEntries/client/Client.ts b/src/api/resources/hris/resources/timesheetEntries/client/Client.ts index 31b0e6935..44f9261da 100644 --- a/src/api/resources/hris/resources/timesheetEntries/client/Client.ts +++ b/src/api/resources/hris/resources/timesheetEntries/client/Client.ts @@ -163,8 +163,8 @@ export class TimesheetEntries { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -259,8 +259,8 @@ export class TimesheetEntries { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -363,8 +363,8 @@ export class TimesheetEntries { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -446,8 +446,8 @@ export class TimesheetEntries { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/resources/webhookReceivers/client/Client.ts b/src/api/resources/hris/resources/webhookReceivers/client/Client.ts index b8f24ed6c..8cd4a19c8 100644 --- a/src/api/resources/hris/resources/webhookReceivers/client/Client.ts +++ b/src/api/resources/hris/resources/webhookReceivers/client/Client.ts @@ -70,8 +70,8 @@ export class WebhookReceivers { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -156,8 +156,8 @@ export class WebhookReceivers { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/hris/types/AccountDetailsAndActions.ts b/src/api/resources/hris/types/AccountDetailsAndActions.ts index ef27775a0..ec0c62b50 100644 --- a/src/api/resources/hris/types/AccountDetailsAndActions.ts +++ b/src/api/resources/hris/types/AccountDetailsAndActions.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/hris/types/AccountDetailsAndActionsStatusEnum.ts b/src/api/resources/hris/types/AccountDetailsAndActionsStatusEnum.ts index c0020279f..3a923df0f 100644 --- a/src/api/resources/hris/types/AccountDetailsAndActionsStatusEnum.ts +++ b/src/api/resources/hris/types/AccountDetailsAndActionsStatusEnum.ts @@ -3,10 +3,10 @@ */ /** - * - `COMPLETE` - COMPLETE - * - `INCOMPLETE` - INCOMPLETE - * - `RELINK_NEEDED` - RELINK_NEEDED - * - `IDLE` - IDLE + * * `COMPLETE` - COMPLETE + * * `INCOMPLETE` - INCOMPLETE + * * `RELINK_NEEDED` - RELINK_NEEDED + * * `IDLE` - IDLE */ export type AccountDetailsAndActionsStatusEnum = "COMPLETE" | "INCOMPLETE" | "RELINK_NEEDED" | "IDLE"; export const AccountDetailsAndActionsStatusEnum = { diff --git a/src/api/resources/hris/types/AccountTypeEnum.ts b/src/api/resources/hris/types/AccountTypeEnum.ts index 2c5996aca..de2fd54ff 100644 --- a/src/api/resources/hris/types/AccountTypeEnum.ts +++ b/src/api/resources/hris/types/AccountTypeEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `SAVINGS` - SAVINGS - * - `CHECKING` - CHECKING + * * `SAVINGS` - SAVINGS + * * `CHECKING` - CHECKING */ export type AccountTypeEnum = "SAVINGS" | "CHECKING"; export const AccountTypeEnum = { diff --git a/src/api/resources/hris/types/AuditLogEvent.ts b/src/api/resources/hris/types/AuditLogEvent.ts index 1d37b9c80..6f1a8dce2 100644 --- a/src/api/resources/hris/types/AuditLogEvent.ts +++ b/src/api/resources/hris/types/AuditLogEvent.ts @@ -13,60 +13,60 @@ export interface AuditLogEvent { /** * 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 + * * `ADMIN` - ADMIN + * * `DEVELOPER` - DEVELOPER + * * `MEMBER` - MEMBER + * * `API` - API + * * `SYSTEM` - SYSTEM + * * `MERGE_TEAM` - MERGE_TEAM */ role: Merge.hris.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 - * - `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 + * * `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 + * * `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.hris.AuditLogEventEventType; eventDescription: string; diff --git a/src/api/resources/hris/types/AuditLogEventEventType.ts b/src/api/resources/hris/types/AuditLogEventEventType.ts index e97de010c..edef9133e 100644 --- a/src/api/resources/hris/types/AuditLogEventEventType.ts +++ b/src/api/resources/hris/types/AuditLogEventEventType.ts @@ -7,47 +7,47 @@ import * 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 - * - `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 + * * `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 + * * `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.hris.EventTypeEnum | string; diff --git a/src/api/resources/hris/types/AuditLogEventRole.ts b/src/api/resources/hris/types/AuditLogEventRole.ts index 13ed164f9..729c4a8ad 100644 --- a/src/api/resources/hris/types/AuditLogEventRole.ts +++ b/src/api/resources/hris/types/AuditLogEventRole.ts @@ -7,11 +7,11 @@ import * 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 + * * `ADMIN` - ADMIN + * * `DEVELOPER` - DEVELOPER + * * `MEMBER` - MEMBER + * * `API` - API + * * `SYSTEM` - SYSTEM + * * `MERGE_TEAM` - MERGE_TEAM */ export type AuditLogEventRole = Merge.hris.RoleEnum | string; diff --git a/src/api/resources/hris/types/AvailableActions.ts b/src/api/resources/hris/types/AvailableActions.ts index 626a54744..86affbb84 100644 --- a/src/api/resources/hris/types/AvailableActions.ts +++ b/src/api/resources/hris/types/AvailableActions.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/hris/types/BankInfo.ts b/src/api/resources/hris/types/BankInfo.ts index 3cd4eb7fa..e8729ad37 100644 --- a/src/api/resources/hris/types/BankInfo.ts +++ b/src/api/resources/hris/types/BankInfo.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The BankInfo Object - * * ### Description - * * The `BankInfo` object is used to represent the Bank Account information for an Employee. * * ### Usage Example - * * Fetch from the `LIST BankInfo` endpoint and filter by `ID` to show all bank information. */ export interface BankInfo { @@ -34,8 +31,8 @@ export interface BankInfo { /** * The bank account type * - * - `SAVINGS` - SAVINGS - * - `CHECKING` - CHECKING + * * `SAVINGS` - SAVINGS + * * `CHECKING` - CHECKING */ accountType?: Merge.hris.BankInfoAccountType; /** When the matching bank object was created in the third party system. */ diff --git a/src/api/resources/hris/types/BankInfoAccountType.ts b/src/api/resources/hris/types/BankInfoAccountType.ts index de75e160e..240e8152c 100644 --- a/src/api/resources/hris/types/BankInfoAccountType.ts +++ b/src/api/resources/hris/types/BankInfoAccountType.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The bank account type * - * - `SAVINGS` - SAVINGS - * - `CHECKING` - CHECKING + * * `SAVINGS` - SAVINGS + * * `CHECKING` - CHECKING */ export type BankInfoAccountType = Merge.hris.AccountTypeEnum | string; diff --git a/src/api/resources/hris/types/Benefit.ts b/src/api/resources/hris/types/Benefit.ts index abccc31a1..c2e45a91e 100644 --- a/src/api/resources/hris/types/Benefit.ts +++ b/src/api/resources/hris/types/Benefit.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Benefit Object - * * ### Description - * * The `Benefit` object is used to represent a benefit that an employee has enrolled in. * * ### Usage Example - * * Fetch from the `LIST Benefits` endpoint and filter by `ID` to show all benefits. */ export interface Benefit { diff --git a/src/api/resources/hris/types/BenefitPlanTypeEnum.ts b/src/api/resources/hris/types/BenefitPlanTypeEnum.ts index 385663ad0..6bc804a28 100644 --- a/src/api/resources/hris/types/BenefitPlanTypeEnum.ts +++ b/src/api/resources/hris/types/BenefitPlanTypeEnum.ts @@ -3,11 +3,11 @@ */ /** - * - `MEDICAL` - MEDICAL - * - `HEALTH_SAVINGS` - HEALTH_SAVINGS - * - `INSURANCE` - INSURANCE - * - `RETIREMENT` - RETIREMENT - * - `OTHER` - OTHER + * * `MEDICAL` - MEDICAL + * * `HEALTH_SAVINGS` - HEALTH_SAVINGS + * * `INSURANCE` - INSURANCE + * * `RETIREMENT` - RETIREMENT + * * `OTHER` - OTHER */ export type BenefitPlanTypeEnum = "MEDICAL" | "HEALTH_SAVINGS" | "INSURANCE" | "RETIREMENT" | "OTHER"; export const BenefitPlanTypeEnum = { diff --git a/src/api/resources/hris/types/CategoriesEnum.ts b/src/api/resources/hris/types/CategoriesEnum.ts index a5eb57230..ca8bf9e21 100644 --- a/src/api/resources/hris/types/CategoriesEnum.ts +++ b/src/api/resources/hris/types/CategoriesEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `hris` - hris - * - `ats` - ats - * - `accounting` - accounting - * - `ticketing` - ticketing - * - `crm` - crm - * - `mktg` - mktg - * - `filestorage` - filestorage + * * `hris` - hris + * * `ats` - ats + * * `accounting` - accounting + * * `ticketing` - ticketing + * * `crm` - crm + * * `mktg` - mktg + * * `filestorage` - filestorage */ export type CategoriesEnum = "hris" | "ats" | "accounting" | "ticketing" | "crm" | "mktg" | "filestorage"; export const CategoriesEnum = { diff --git a/src/api/resources/hris/types/CategoryEnum.ts b/src/api/resources/hris/types/CategoryEnum.ts index 6d3d6d6ae..94af662f7 100644 --- a/src/api/resources/hris/types/CategoryEnum.ts +++ b/src/api/resources/hris/types/CategoryEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `hris` - hris - * - `ats` - ats - * - `accounting` - accounting - * - `ticketing` - ticketing - * - `crm` - crm - * - `mktg` - mktg - * - `filestorage` - filestorage + * * `hris` - hris + * * `ats` - ats + * * `accounting` - accounting + * * `ticketing` - ticketing + * * `crm` - crm + * * `mktg` - mktg + * * `filestorage` - filestorage */ export type CategoryEnum = "hris" | "ats" | "accounting" | "ticketing" | "crm" | "mktg" | "filestorage"; export const CategoryEnum = { diff --git a/src/api/resources/hris/types/Company.ts b/src/api/resources/hris/types/Company.ts index f531ed34c..9f6cce7bb 100644 --- a/src/api/resources/hris/types/Company.ts +++ b/src/api/resources/hris/types/Company.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Company Object - * * ### Description - * * The `Company` object is used to represent a company within the HRIS / Payroll system. * * ### Usage Example - * * Fetch from the `LIST Companies` endpoint and filter by `ID` to show all companies. */ export interface Company { diff --git a/src/api/resources/hris/types/CountryEnum.ts b/src/api/resources/hris/types/CountryEnum.ts index 46d4e560b..ae6e8796c 100644 --- a/src/api/resources/hris/types/CountryEnum.ts +++ b/src/api/resources/hris/types/CountryEnum.ts @@ -3,255 +3,255 @@ */ /** - * - `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 + * * `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 CountryEnum = | "AF" diff --git a/src/api/resources/hris/types/DataPassthroughRequest.ts b/src/api/resources/hris/types/DataPassthroughRequest.ts index b743209e1..4c714fecf 100644 --- a/src/api/resources/hris/types/DataPassthroughRequest.ts +++ b/src/api/resources/hris/types/DataPassthroughRequest.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/hris/types/Deduction.ts b/src/api/resources/hris/types/Deduction.ts index e014b58f9..fa6e94b7a 100644 --- a/src/api/resources/hris/types/Deduction.ts +++ b/src/api/resources/hris/types/Deduction.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Deduction Object - * * ### Description - * * The `Deduction` object is used to represent an array of the wages withheld from total earnings for the purpose of paying taxes. * * ### Usage Example - * * Fetch from the `LIST Deductions` endpoint and filter by `ID` to show all deductions. */ export interface Deduction { diff --git a/src/api/resources/hris/types/Dependent.ts b/src/api/resources/hris/types/Dependent.ts index 985e1be1b..40b6e7650 100644 --- a/src/api/resources/hris/types/Dependent.ts +++ b/src/api/resources/hris/types/Dependent.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Dependent Object - * * ### Description - * * The `Dependent` object is used to represent a dependent (e.g. child, spouse, domestic partner, etc) of an `Employee` * * ### Usage Example - * * Fetch from the `LIST Dependents` endpoint and filter by `ID` to show all dependents. */ export interface Dependent { @@ -32,9 +29,9 @@ export interface Dependent { /** * The dependent's relationship to the employee. * - * - `CHILD` - CHILD - * - `SPOUSE` - SPOUSE - * - `DOMESTIC_PARTNER` - DOMESTIC_PARTNER + * * `CHILD` - CHILD + * * `SPOUSE` - SPOUSE + * * `DOMESTIC_PARTNER` - DOMESTIC_PARTNER */ relationship?: Merge.hris.DependentRelationship; /** The employee this person is a dependent of. */ @@ -44,11 +41,11 @@ export interface Dependent { /** * The dependent's gender. * - * - `MALE` - MALE - * - `FEMALE` - FEMALE - * - `NON-BINARY` - NON-BINARY - * - `OTHER` - OTHER - * - `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE + * * `MALE` - MALE + * * `FEMALE` - FEMALE + * * `NON-BINARY` - NON-BINARY + * * `OTHER` - OTHER + * * `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE */ gender?: Merge.hris.DependentGender; /** The dependent's phone number. */ diff --git a/src/api/resources/hris/types/DependentGender.ts b/src/api/resources/hris/types/DependentGender.ts index dad979b3d..8ae4637ef 100644 --- a/src/api/resources/hris/types/DependentGender.ts +++ b/src/api/resources/hris/types/DependentGender.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The dependent's gender. * - * - `MALE` - MALE - * - `FEMALE` - FEMALE - * - `NON-BINARY` - NON-BINARY - * - `OTHER` - OTHER - * - `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE + * * `MALE` - MALE + * * `FEMALE` - FEMALE + * * `NON-BINARY` - NON-BINARY + * * `OTHER` - OTHER + * * `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE */ export type DependentGender = Merge.hris.GenderEnum | string; diff --git a/src/api/resources/hris/types/DependentRelationship.ts b/src/api/resources/hris/types/DependentRelationship.ts index 9ff2234b3..44c028d11 100644 --- a/src/api/resources/hris/types/DependentRelationship.ts +++ b/src/api/resources/hris/types/DependentRelationship.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The dependent's relationship to the employee. * - * - `CHILD` - CHILD - * - `SPOUSE` - SPOUSE - * - `DOMESTIC_PARTNER` - DOMESTIC_PARTNER + * * `CHILD` - CHILD + * * `SPOUSE` - SPOUSE + * * `DOMESTIC_PARTNER` - DOMESTIC_PARTNER */ export type DependentRelationship = Merge.hris.RelationshipEnum | string; diff --git a/src/api/resources/hris/types/Earning.ts b/src/api/resources/hris/types/Earning.ts index 7c150ce02..7f545b88c 100644 --- a/src/api/resources/hris/types/Earning.ts +++ b/src/api/resources/hris/types/Earning.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Earning Object - * * ### Description - * * The `Earning` object is used to represent an array of different compensations that an employee receives within specific wage categories. * * ### Usage Example - * * Fetch from the `LIST Earnings` endpoint and filter by `ID` to show all earnings. */ export interface Earning { @@ -29,10 +26,10 @@ export interface Earning { /** * The type of earning. * - * - `SALARY` - SALARY - * - `REIMBURSEMENT` - REIMBURSEMENT - * - `OVERTIME` - OVERTIME - * - `BONUS` - BONUS + * * `SALARY` - SALARY + * * `REIMBURSEMENT` - REIMBURSEMENT + * * `OVERTIME` - OVERTIME + * * `BONUS` - BONUS */ type?: Merge.hris.EarningType; /** 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/). */ diff --git a/src/api/resources/hris/types/EarningType.ts b/src/api/resources/hris/types/EarningType.ts index 573ecff98..e4a83a8b4 100644 --- a/src/api/resources/hris/types/EarningType.ts +++ b/src/api/resources/hris/types/EarningType.ts @@ -7,9 +7,9 @@ import * as Merge from "../../../index"; /** * The type of earning. * - * - `SALARY` - SALARY - * - `REIMBURSEMENT` - REIMBURSEMENT - * - `OVERTIME` - OVERTIME - * - `BONUS` - BONUS + * * `SALARY` - SALARY + * * `REIMBURSEMENT` - REIMBURSEMENT + * * `OVERTIME` - OVERTIME + * * `BONUS` - BONUS */ export type EarningType = Merge.hris.EarningTypeEnum | string; diff --git a/src/api/resources/hris/types/EarningTypeEnum.ts b/src/api/resources/hris/types/EarningTypeEnum.ts index 17b210fb3..73947a90e 100644 --- a/src/api/resources/hris/types/EarningTypeEnum.ts +++ b/src/api/resources/hris/types/EarningTypeEnum.ts @@ -3,10 +3,10 @@ */ /** - * - `SALARY` - SALARY - * - `REIMBURSEMENT` - REIMBURSEMENT - * - `OVERTIME` - OVERTIME - * - `BONUS` - BONUS + * * `SALARY` - SALARY + * * `REIMBURSEMENT` - REIMBURSEMENT + * * `OVERTIME` - OVERTIME + * * `BONUS` - BONUS */ export type EarningTypeEnum = "SALARY" | "REIMBURSEMENT" | "OVERTIME" | "BONUS"; export const EarningTypeEnum = { diff --git a/src/api/resources/hris/types/Employee.ts b/src/api/resources/hris/types/Employee.ts index b29cbc6b6..fb3c97f56 100644 --- a/src/api/resources/hris/types/Employee.ts +++ b/src/api/resources/hris/types/Employee.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Employee Object - * * ### Description - * * The `Employee` object is used to represent any person who has been employed by a company. By default, it returns all employees. To filter for only active employees, set the `employment_status` query parameter to `ACTIVE`. * * ### Usage Example - * * Fetch from the `LIST Employee` endpoint and filter by `ID` to show all employees. */ export interface Employee { @@ -61,34 +58,34 @@ export interface Employee { /** * The employee's gender. * - * - `MALE` - MALE - * - `FEMALE` - FEMALE - * - `NON-BINARY` - NON-BINARY - * - `OTHER` - OTHER - * - `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE + * * `MALE` - MALE + * * `FEMALE` - FEMALE + * * `NON-BINARY` - NON-BINARY + * * `OTHER` - OTHER + * * `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE */ gender?: Merge.hris.EmployeeGender; /** * The employee's ethnicity. * - * - `AMERICAN_INDIAN_OR_ALASKA_NATIVE` - AMERICAN_INDIAN_OR_ALASKA_NATIVE - * - `ASIAN_OR_INDIAN_SUBCONTINENT` - ASIAN_OR_INDIAN_SUBCONTINENT - * - `BLACK_OR_AFRICAN_AMERICAN` - BLACK_OR_AFRICAN_AMERICAN - * - `HISPANIC_OR_LATINO` - HISPANIC_OR_LATINO - * - `NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER` - NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER - * - `TWO_OR_MORE_RACES` - TWO_OR_MORE_RACES - * - `WHITE` - WHITE - * - `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE + * * `AMERICAN_INDIAN_OR_ALASKA_NATIVE` - AMERICAN_INDIAN_OR_ALASKA_NATIVE + * * `ASIAN_OR_INDIAN_SUBCONTINENT` - ASIAN_OR_INDIAN_SUBCONTINENT + * * `BLACK_OR_AFRICAN_AMERICAN` - BLACK_OR_AFRICAN_AMERICAN + * * `HISPANIC_OR_LATINO` - HISPANIC_OR_LATINO + * * `NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER` - NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER + * * `TWO_OR_MORE_RACES` - TWO_OR_MORE_RACES + * * `WHITE` - WHITE + * * `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE */ ethnicity?: Merge.hris.EmployeeEthnicity; /** * The employee's filing status as related to marital status. * - * - `SINGLE` - SINGLE - * - `MARRIED_FILING_JOINTLY` - MARRIED_FILING_JOINTLY - * - `MARRIED_FILING_SEPARATELY` - MARRIED_FILING_SEPARATELY - * - `HEAD_OF_HOUSEHOLD` - HEAD_OF_HOUSEHOLD - * - `QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD` - QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD + * * `SINGLE` - SINGLE + * * `MARRIED_FILING_JOINTLY` - MARRIED_FILING_JOINTLY + * * `MARRIED_FILING_SEPARATELY` - MARRIED_FILING_SEPARATELY + * * `HEAD_OF_HOUSEHOLD` - HEAD_OF_HOUSEHOLD + * * `QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD` - QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD */ maritalStatus?: Merge.hris.EmployeeMaritalStatus; /** The employee's date of birth. */ @@ -102,9 +99,9 @@ export interface Employee { /** * The employment status of the employee. * - * - `ACTIVE` - ACTIVE - * - `PENDING` - PENDING - * - `INACTIVE` - INACTIVE + * * `ACTIVE` - ACTIVE + * * `PENDING` - PENDING + * * `INACTIVE` - INACTIVE */ employmentStatus?: Merge.hris.EmployeeEmploymentStatus; /** The employee's termination date. */ diff --git a/src/api/resources/hris/types/EmployeeEmploymentStatus.ts b/src/api/resources/hris/types/EmployeeEmploymentStatus.ts index 2860c8379..7ebe10c9c 100644 --- a/src/api/resources/hris/types/EmployeeEmploymentStatus.ts +++ b/src/api/resources/hris/types/EmployeeEmploymentStatus.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The employment status of the employee. * - * - `ACTIVE` - ACTIVE - * - `PENDING` - PENDING - * - `INACTIVE` - INACTIVE + * * `ACTIVE` - ACTIVE + * * `PENDING` - PENDING + * * `INACTIVE` - INACTIVE */ export type EmployeeEmploymentStatus = Merge.hris.EmploymentStatusEnum | string; diff --git a/src/api/resources/hris/types/EmployeeEthnicity.ts b/src/api/resources/hris/types/EmployeeEthnicity.ts index 9bcdf1a80..901f097ad 100644 --- a/src/api/resources/hris/types/EmployeeEthnicity.ts +++ b/src/api/resources/hris/types/EmployeeEthnicity.ts @@ -7,13 +7,13 @@ import * as Merge from "../../../index"; /** * The employee's ethnicity. * - * - `AMERICAN_INDIAN_OR_ALASKA_NATIVE` - AMERICAN_INDIAN_OR_ALASKA_NATIVE - * - `ASIAN_OR_INDIAN_SUBCONTINENT` - ASIAN_OR_INDIAN_SUBCONTINENT - * - `BLACK_OR_AFRICAN_AMERICAN` - BLACK_OR_AFRICAN_AMERICAN - * - `HISPANIC_OR_LATINO` - HISPANIC_OR_LATINO - * - `NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER` - NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER - * - `TWO_OR_MORE_RACES` - TWO_OR_MORE_RACES - * - `WHITE` - WHITE - * - `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE + * * `AMERICAN_INDIAN_OR_ALASKA_NATIVE` - AMERICAN_INDIAN_OR_ALASKA_NATIVE + * * `ASIAN_OR_INDIAN_SUBCONTINENT` - ASIAN_OR_INDIAN_SUBCONTINENT + * * `BLACK_OR_AFRICAN_AMERICAN` - BLACK_OR_AFRICAN_AMERICAN + * * `HISPANIC_OR_LATINO` - HISPANIC_OR_LATINO + * * `NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER` - NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER + * * `TWO_OR_MORE_RACES` - TWO_OR_MORE_RACES + * * `WHITE` - WHITE + * * `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE */ export type EmployeeEthnicity = Merge.hris.EthnicityEnum | string; diff --git a/src/api/resources/hris/types/EmployeeGender.ts b/src/api/resources/hris/types/EmployeeGender.ts index ea17166ad..f22aac99d 100644 --- a/src/api/resources/hris/types/EmployeeGender.ts +++ b/src/api/resources/hris/types/EmployeeGender.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The employee's gender. * - * - `MALE` - MALE - * - `FEMALE` - FEMALE - * - `NON-BINARY` - NON-BINARY - * - `OTHER` - OTHER - * - `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE + * * `MALE` - MALE + * * `FEMALE` - FEMALE + * * `NON-BINARY` - NON-BINARY + * * `OTHER` - OTHER + * * `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE */ export type EmployeeGender = Merge.hris.GenderEnum | string; diff --git a/src/api/resources/hris/types/EmployeeMaritalStatus.ts b/src/api/resources/hris/types/EmployeeMaritalStatus.ts index efc494a2b..56953be17 100644 --- a/src/api/resources/hris/types/EmployeeMaritalStatus.ts +++ b/src/api/resources/hris/types/EmployeeMaritalStatus.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The employee's filing status as related to marital status. * - * - `SINGLE` - SINGLE - * - `MARRIED_FILING_JOINTLY` - MARRIED_FILING_JOINTLY - * - `MARRIED_FILING_SEPARATELY` - MARRIED_FILING_SEPARATELY - * - `HEAD_OF_HOUSEHOLD` - HEAD_OF_HOUSEHOLD - * - `QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD` - QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD + * * `SINGLE` - SINGLE + * * `MARRIED_FILING_JOINTLY` - MARRIED_FILING_JOINTLY + * * `MARRIED_FILING_SEPARATELY` - MARRIED_FILING_SEPARATELY + * * `HEAD_OF_HOUSEHOLD` - HEAD_OF_HOUSEHOLD + * * `QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD` - QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD */ export type EmployeeMaritalStatus = Merge.hris.MaritalStatusEnum | string; diff --git a/src/api/resources/hris/types/EmployeePayrollRun.ts b/src/api/resources/hris/types/EmployeePayrollRun.ts index 3b0ab810b..ca595ea12 100644 --- a/src/api/resources/hris/types/EmployeePayrollRun.ts +++ b/src/api/resources/hris/types/EmployeePayrollRun.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The EmployeePayrollRun Object - * * ### Description - * * The `EmployeePayrollRun` object is used to represent an employee's pay statement for a specific payroll run. * * ### Usage Example - * * Fetch from the `LIST EmployeePayrollRun` endpoint and filter by `ID` to show all employee payroll runs. */ export interface EmployeePayrollRun { diff --git a/src/api/resources/hris/types/EmployeeRequest.ts b/src/api/resources/hris/types/EmployeeRequest.ts index 2446f4ee0..b73127437 100644 --- a/src/api/resources/hris/types/EmployeeRequest.ts +++ b/src/api/resources/hris/types/EmployeeRequest.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Employee Object - * * ### Description - * * The `Employee` object is used to represent any person who has been employed by a company. By default, it returns all employees. To filter for only active employees, set the `employment_status` query parameter to `ACTIVE`. * * ### Usage Example - * * Fetch from the `LIST Employee` endpoint and filter by `ID` to show all employees. */ export interface EmployeeRequest { @@ -54,34 +51,34 @@ export interface EmployeeRequest { /** * The employee's gender. * - * - `MALE` - MALE - * - `FEMALE` - FEMALE - * - `NON-BINARY` - NON-BINARY - * - `OTHER` - OTHER - * - `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE + * * `MALE` - MALE + * * `FEMALE` - FEMALE + * * `NON-BINARY` - NON-BINARY + * * `OTHER` - OTHER + * * `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE */ gender?: Merge.hris.EmployeeRequestGender; /** * The employee's ethnicity. * - * - `AMERICAN_INDIAN_OR_ALASKA_NATIVE` - AMERICAN_INDIAN_OR_ALASKA_NATIVE - * - `ASIAN_OR_INDIAN_SUBCONTINENT` - ASIAN_OR_INDIAN_SUBCONTINENT - * - `BLACK_OR_AFRICAN_AMERICAN` - BLACK_OR_AFRICAN_AMERICAN - * - `HISPANIC_OR_LATINO` - HISPANIC_OR_LATINO - * - `NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER` - NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER - * - `TWO_OR_MORE_RACES` - TWO_OR_MORE_RACES - * - `WHITE` - WHITE - * - `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE + * * `AMERICAN_INDIAN_OR_ALASKA_NATIVE` - AMERICAN_INDIAN_OR_ALASKA_NATIVE + * * `ASIAN_OR_INDIAN_SUBCONTINENT` - ASIAN_OR_INDIAN_SUBCONTINENT + * * `BLACK_OR_AFRICAN_AMERICAN` - BLACK_OR_AFRICAN_AMERICAN + * * `HISPANIC_OR_LATINO` - HISPANIC_OR_LATINO + * * `NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER` - NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER + * * `TWO_OR_MORE_RACES` - TWO_OR_MORE_RACES + * * `WHITE` - WHITE + * * `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE */ ethnicity?: Merge.hris.EmployeeRequestEthnicity; /** * The employee's filing status as related to marital status. * - * - `SINGLE` - SINGLE - * - `MARRIED_FILING_JOINTLY` - MARRIED_FILING_JOINTLY - * - `MARRIED_FILING_SEPARATELY` - MARRIED_FILING_SEPARATELY - * - `HEAD_OF_HOUSEHOLD` - HEAD_OF_HOUSEHOLD - * - `QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD` - QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD + * * `SINGLE` - SINGLE + * * `MARRIED_FILING_JOINTLY` - MARRIED_FILING_JOINTLY + * * `MARRIED_FILING_SEPARATELY` - MARRIED_FILING_SEPARATELY + * * `HEAD_OF_HOUSEHOLD` - HEAD_OF_HOUSEHOLD + * * `QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD` - QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD */ maritalStatus?: Merge.hris.EmployeeRequestMaritalStatus; /** The employee's date of birth. */ @@ -93,9 +90,9 @@ export interface EmployeeRequest { /** * The employment status of the employee. * - * - `ACTIVE` - ACTIVE - * - `PENDING` - PENDING - * - `INACTIVE` - INACTIVE + * * `ACTIVE` - ACTIVE + * * `PENDING` - PENDING + * * `INACTIVE` - INACTIVE */ employmentStatus?: Merge.hris.EmployeeRequestEmploymentStatus; /** The employee's termination date. */ diff --git a/src/api/resources/hris/types/EmployeeRequestEmploymentStatus.ts b/src/api/resources/hris/types/EmployeeRequestEmploymentStatus.ts index 70cf324c5..3b9b61e6e 100644 --- a/src/api/resources/hris/types/EmployeeRequestEmploymentStatus.ts +++ b/src/api/resources/hris/types/EmployeeRequestEmploymentStatus.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The employment status of the employee. * - * - `ACTIVE` - ACTIVE - * - `PENDING` - PENDING - * - `INACTIVE` - INACTIVE + * * `ACTIVE` - ACTIVE + * * `PENDING` - PENDING + * * `INACTIVE` - INACTIVE */ export type EmployeeRequestEmploymentStatus = Merge.hris.EmploymentStatusEnum | string; diff --git a/src/api/resources/hris/types/EmployeeRequestEthnicity.ts b/src/api/resources/hris/types/EmployeeRequestEthnicity.ts index d714de50e..b92b12510 100644 --- a/src/api/resources/hris/types/EmployeeRequestEthnicity.ts +++ b/src/api/resources/hris/types/EmployeeRequestEthnicity.ts @@ -7,13 +7,13 @@ import * as Merge from "../../../index"; /** * The employee's ethnicity. * - * - `AMERICAN_INDIAN_OR_ALASKA_NATIVE` - AMERICAN_INDIAN_OR_ALASKA_NATIVE - * - `ASIAN_OR_INDIAN_SUBCONTINENT` - ASIAN_OR_INDIAN_SUBCONTINENT - * - `BLACK_OR_AFRICAN_AMERICAN` - BLACK_OR_AFRICAN_AMERICAN - * - `HISPANIC_OR_LATINO` - HISPANIC_OR_LATINO - * - `NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER` - NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER - * - `TWO_OR_MORE_RACES` - TWO_OR_MORE_RACES - * - `WHITE` - WHITE - * - `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE + * * `AMERICAN_INDIAN_OR_ALASKA_NATIVE` - AMERICAN_INDIAN_OR_ALASKA_NATIVE + * * `ASIAN_OR_INDIAN_SUBCONTINENT` - ASIAN_OR_INDIAN_SUBCONTINENT + * * `BLACK_OR_AFRICAN_AMERICAN` - BLACK_OR_AFRICAN_AMERICAN + * * `HISPANIC_OR_LATINO` - HISPANIC_OR_LATINO + * * `NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER` - NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER + * * `TWO_OR_MORE_RACES` - TWO_OR_MORE_RACES + * * `WHITE` - WHITE + * * `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE */ export type EmployeeRequestEthnicity = Merge.hris.EthnicityEnum | string; diff --git a/src/api/resources/hris/types/EmployeeRequestGender.ts b/src/api/resources/hris/types/EmployeeRequestGender.ts index 46f5567e6..dbd8d4e42 100644 --- a/src/api/resources/hris/types/EmployeeRequestGender.ts +++ b/src/api/resources/hris/types/EmployeeRequestGender.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The employee's gender. * - * - `MALE` - MALE - * - `FEMALE` - FEMALE - * - `NON-BINARY` - NON-BINARY - * - `OTHER` - OTHER - * - `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE + * * `MALE` - MALE + * * `FEMALE` - FEMALE + * * `NON-BINARY` - NON-BINARY + * * `OTHER` - OTHER + * * `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE */ export type EmployeeRequestGender = Merge.hris.GenderEnum | string; diff --git a/src/api/resources/hris/types/EmployeeRequestMaritalStatus.ts b/src/api/resources/hris/types/EmployeeRequestMaritalStatus.ts index 0df150f91..ce6982037 100644 --- a/src/api/resources/hris/types/EmployeeRequestMaritalStatus.ts +++ b/src/api/resources/hris/types/EmployeeRequestMaritalStatus.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The employee's filing status as related to marital status. * - * - `SINGLE` - SINGLE - * - `MARRIED_FILING_JOINTLY` - MARRIED_FILING_JOINTLY - * - `MARRIED_FILING_SEPARATELY` - MARRIED_FILING_SEPARATELY - * - `HEAD_OF_HOUSEHOLD` - HEAD_OF_HOUSEHOLD - * - `QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD` - QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD + * * `SINGLE` - SINGLE + * * `MARRIED_FILING_JOINTLY` - MARRIED_FILING_JOINTLY + * * `MARRIED_FILING_SEPARATELY` - MARRIED_FILING_SEPARATELY + * * `HEAD_OF_HOUSEHOLD` - HEAD_OF_HOUSEHOLD + * * `QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD` - QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD */ export type EmployeeRequestMaritalStatus = Merge.hris.MaritalStatusEnum | string; diff --git a/src/api/resources/hris/types/EmployerBenefit.ts b/src/api/resources/hris/types/EmployerBenefit.ts index eb0d471cd..91be2fcdc 100644 --- a/src/api/resources/hris/types/EmployerBenefit.ts +++ b/src/api/resources/hris/types/EmployerBenefit.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The EmployerBenefit Object - * * ### Description - * * The `Employer Benefit` object is used to represent a benefit plan offered by a company. * * ### Usage Example - * * Fetch from the `LIST EmployerBenefits` endpoint and filter by `ID` to show all EmployerBenefits. */ export interface EmployerBenefit { @@ -26,11 +23,11 @@ export interface EmployerBenefit { /** * The type of benefit plan. * - * - `MEDICAL` - MEDICAL - * - `HEALTH_SAVINGS` - HEALTH_SAVINGS - * - `INSURANCE` - INSURANCE - * - `RETIREMENT` - RETIREMENT - * - `OTHER` - OTHER + * * `MEDICAL` - MEDICAL + * * `HEALTH_SAVINGS` - HEALTH_SAVINGS + * * `INSURANCE` - INSURANCE + * * `RETIREMENT` - RETIREMENT + * * `OTHER` - OTHER */ benefitPlanType?: Merge.hris.EmployerBenefitBenefitPlanType; /** The employer benefit's name - typically the carrier or network name. */ diff --git a/src/api/resources/hris/types/EmployerBenefitBenefitPlanType.ts b/src/api/resources/hris/types/EmployerBenefitBenefitPlanType.ts index 5275c8352..787bc79b1 100644 --- a/src/api/resources/hris/types/EmployerBenefitBenefitPlanType.ts +++ b/src/api/resources/hris/types/EmployerBenefitBenefitPlanType.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The type of benefit plan. * - * - `MEDICAL` - MEDICAL - * - `HEALTH_SAVINGS` - HEALTH_SAVINGS - * - `INSURANCE` - INSURANCE - * - `RETIREMENT` - RETIREMENT - * - `OTHER` - OTHER + * * `MEDICAL` - MEDICAL + * * `HEALTH_SAVINGS` - HEALTH_SAVINGS + * * `INSURANCE` - INSURANCE + * * `RETIREMENT` - RETIREMENT + * * `OTHER` - OTHER */ export type EmployerBenefitBenefitPlanType = Merge.hris.BenefitPlanTypeEnum | string; diff --git a/src/api/resources/hris/types/Employment.ts b/src/api/resources/hris/types/Employment.ts index fc79249fc..03bfe0390 100644 --- a/src/api/resources/hris/types/Employment.ts +++ b/src/api/resources/hris/types/Employment.ts @@ -6,15 +6,12 @@ import * as Merge from "../../../index"; /** * # The Employment Object - * * ### Description - * * The `Employment` object is used to represent a job position at a company. * * If an integration supports historical tracking of employments, it will be reflected in the data. If not, a new `Employment` object will be created whenever there is a change in job title or pay. The `effective_date` field should be used to order `Employment` objects, with the most recent date corresponding to the latest employment record for an employee. * * ### Usage Example - * * Fetch from the `LIST Employments` endpoint and filter by `ID` to show all employees. */ export interface Employment { @@ -34,340 +31,340 @@ export interface Employment { /** * The time period this pay rate encompasses. * - * - `HOUR` - HOUR - * - `DAY` - DAY - * - `WEEK` - WEEK - * - `EVERY_TWO_WEEKS` - EVERY_TWO_WEEKS - * - `SEMIMONTHLY` - SEMIMONTHLY - * - `MONTH` - MONTH - * - `QUARTER` - QUARTER - * - `EVERY_SIX_MONTHS` - EVERY_SIX_MONTHS - * - `YEAR` - YEAR + * * `HOUR` - HOUR + * * `DAY` - DAY + * * `WEEK` - WEEK + * * `EVERY_TWO_WEEKS` - EVERY_TWO_WEEKS + * * `SEMIMONTHLY` - SEMIMONTHLY + * * `MONTH` - MONTH + * * `QUARTER` - QUARTER + * * `EVERY_SIX_MONTHS` - EVERY_SIX_MONTHS + * * `YEAR` - YEAR */ payPeriod?: Merge.hris.EmploymentPayPeriod; /** * The position's pay frequency. * - * - `WEEKLY` - WEEKLY - * - `BIWEEKLY` - BIWEEKLY - * - `MONTHLY` - MONTHLY - * - `QUARTERLY` - QUARTERLY - * - `SEMIANNUALLY` - SEMIANNUALLY - * - `ANNUALLY` - ANNUALLY - * - `THIRTEEN-MONTHLY` - THIRTEEN-MONTHLY - * - `PRO_RATA` - PRO_RATA - * - `SEMIMONTHLY` - SEMIMONTHLY + * * `WEEKLY` - WEEKLY + * * `BIWEEKLY` - BIWEEKLY + * * `MONTHLY` - MONTHLY + * * `QUARTERLY` - QUARTERLY + * * `SEMIANNUALLY` - SEMIANNUALLY + * * `ANNUALLY` - ANNUALLY + * * `THIRTEEN-MONTHLY` - THIRTEEN-MONTHLY + * * `PRO_RATA` - PRO_RATA + * * `SEMIMONTHLY` - SEMIMONTHLY */ payFrequency?: Merge.hris.EmploymentPayFrequency; /** * The position's currency code. * - * - `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) + * * `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) */ payCurrency?: Merge.hris.EmploymentPayCurrency; /** The employment's pay group */ @@ -375,10 +372,10 @@ export interface Employment { /** * The position's FLSA status. * - * - `EXEMPT` - EXEMPT - * - `SALARIED_NONEXEMPT` - SALARIED_NONEXEMPT - * - `NONEXEMPT` - NONEXEMPT - * - `OWNER` - OWNER + * * `EXEMPT` - EXEMPT + * * `SALARIED_NONEXEMPT` - SALARIED_NONEXEMPT + * * `NONEXEMPT` - NONEXEMPT + * * `OWNER` - OWNER */ flsaStatus?: Merge.hris.EmploymentFlsaStatus; /** The position's effective date. */ @@ -386,11 +383,11 @@ export interface Employment { /** * The position's type of employment. * - * - `FULL_TIME` - FULL_TIME - * - `PART_TIME` - PART_TIME - * - `INTERN` - INTERN - * - `CONTRACTOR` - CONTRACTOR - * - `FREELANCE` - FREELANCE + * * `FULL_TIME` - FULL_TIME + * * `PART_TIME` - PART_TIME + * * `INTERN` - INTERN + * * `CONTRACTOR` - CONTRACTOR + * * `FREELANCE` - FREELANCE */ employmentType?: Merge.hris.EmploymentEmploymentType; /** 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/). */ diff --git a/src/api/resources/hris/types/EmploymentEmploymentType.ts b/src/api/resources/hris/types/EmploymentEmploymentType.ts index e6050c39b..13ef67fd5 100644 --- a/src/api/resources/hris/types/EmploymentEmploymentType.ts +++ b/src/api/resources/hris/types/EmploymentEmploymentType.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The position's type of employment. * - * - `FULL_TIME` - FULL_TIME - * - `PART_TIME` - PART_TIME - * - `INTERN` - INTERN - * - `CONTRACTOR` - CONTRACTOR - * - `FREELANCE` - FREELANCE + * * `FULL_TIME` - FULL_TIME + * * `PART_TIME` - PART_TIME + * * `INTERN` - INTERN + * * `CONTRACTOR` - CONTRACTOR + * * `FREELANCE` - FREELANCE */ export type EmploymentEmploymentType = Merge.hris.EmploymentTypeEnum | string; diff --git a/src/api/resources/hris/types/EmploymentFlsaStatus.ts b/src/api/resources/hris/types/EmploymentFlsaStatus.ts index eebc31d5e..f9b9c94d1 100644 --- a/src/api/resources/hris/types/EmploymentFlsaStatus.ts +++ b/src/api/resources/hris/types/EmploymentFlsaStatus.ts @@ -7,9 +7,9 @@ import * as Merge from "../../../index"; /** * The position's FLSA status. * - * - `EXEMPT` - EXEMPT - * - `SALARIED_NONEXEMPT` - SALARIED_NONEXEMPT - * - `NONEXEMPT` - NONEXEMPT - * - `OWNER` - OWNER + * * `EXEMPT` - EXEMPT + * * `SALARIED_NONEXEMPT` - SALARIED_NONEXEMPT + * * `NONEXEMPT` - NONEXEMPT + * * `OWNER` - OWNER */ export type EmploymentFlsaStatus = Merge.hris.FlsaStatusEnum | string; diff --git a/src/api/resources/hris/types/EmploymentPayCurrency.ts b/src/api/resources/hris/types/EmploymentPayCurrency.ts index e7bc54f17..45772914b 100644 --- a/src/api/resources/hris/types/EmploymentPayCurrency.ts +++ b/src/api/resources/hris/types/EmploymentPayCurrency.ts @@ -7,311 +7,311 @@ import * as Merge from "../../../index"; /** * The position's currency code. * - * - `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) + * * `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 EmploymentPayCurrency = Merge.hris.PayCurrencyEnum | string; diff --git a/src/api/resources/hris/types/EmploymentPayFrequency.ts b/src/api/resources/hris/types/EmploymentPayFrequency.ts index 827431ef5..e0127893c 100644 --- a/src/api/resources/hris/types/EmploymentPayFrequency.ts +++ b/src/api/resources/hris/types/EmploymentPayFrequency.ts @@ -7,14 +7,14 @@ import * as Merge from "../../../index"; /** * The position's pay frequency. * - * - `WEEKLY` - WEEKLY - * - `BIWEEKLY` - BIWEEKLY - * - `MONTHLY` - MONTHLY - * - `QUARTERLY` - QUARTERLY - * - `SEMIANNUALLY` - SEMIANNUALLY - * - `ANNUALLY` - ANNUALLY - * - `THIRTEEN-MONTHLY` - THIRTEEN-MONTHLY - * - `PRO_RATA` - PRO_RATA - * - `SEMIMONTHLY` - SEMIMONTHLY + * * `WEEKLY` - WEEKLY + * * `BIWEEKLY` - BIWEEKLY + * * `MONTHLY` - MONTHLY + * * `QUARTERLY` - QUARTERLY + * * `SEMIANNUALLY` - SEMIANNUALLY + * * `ANNUALLY` - ANNUALLY + * * `THIRTEEN-MONTHLY` - THIRTEEN-MONTHLY + * * `PRO_RATA` - PRO_RATA + * * `SEMIMONTHLY` - SEMIMONTHLY */ export type EmploymentPayFrequency = Merge.hris.PayFrequencyEnum | string; diff --git a/src/api/resources/hris/types/EmploymentPayPeriod.ts b/src/api/resources/hris/types/EmploymentPayPeriod.ts index 878f03e55..3812f5522 100644 --- a/src/api/resources/hris/types/EmploymentPayPeriod.ts +++ b/src/api/resources/hris/types/EmploymentPayPeriod.ts @@ -7,14 +7,14 @@ import * as Merge from "../../../index"; /** * The time period this pay rate encompasses. * - * - `HOUR` - HOUR - * - `DAY` - DAY - * - `WEEK` - WEEK - * - `EVERY_TWO_WEEKS` - EVERY_TWO_WEEKS - * - `SEMIMONTHLY` - SEMIMONTHLY - * - `MONTH` - MONTH - * - `QUARTER` - QUARTER - * - `EVERY_SIX_MONTHS` - EVERY_SIX_MONTHS - * - `YEAR` - YEAR + * * `HOUR` - HOUR + * * `DAY` - DAY + * * `WEEK` - WEEK + * * `EVERY_TWO_WEEKS` - EVERY_TWO_WEEKS + * * `SEMIMONTHLY` - SEMIMONTHLY + * * `MONTH` - MONTH + * * `QUARTER` - QUARTER + * * `EVERY_SIX_MONTHS` - EVERY_SIX_MONTHS + * * `YEAR` - YEAR */ export type EmploymentPayPeriod = Merge.hris.PayPeriodEnum | string; diff --git a/src/api/resources/hris/types/EmploymentStatusEnum.ts b/src/api/resources/hris/types/EmploymentStatusEnum.ts index 7cbe9855c..169920696 100644 --- a/src/api/resources/hris/types/EmploymentStatusEnum.ts +++ b/src/api/resources/hris/types/EmploymentStatusEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `ACTIVE` - ACTIVE - * - `PENDING` - PENDING - * - `INACTIVE` - INACTIVE + * * `ACTIVE` - ACTIVE + * * `PENDING` - PENDING + * * `INACTIVE` - INACTIVE */ export type EmploymentStatusEnum = "ACTIVE" | "PENDING" | "INACTIVE"; export const EmploymentStatusEnum = { diff --git a/src/api/resources/hris/types/EmploymentTypeEnum.ts b/src/api/resources/hris/types/EmploymentTypeEnum.ts index 71ce0034d..3aed0eaca 100644 --- a/src/api/resources/hris/types/EmploymentTypeEnum.ts +++ b/src/api/resources/hris/types/EmploymentTypeEnum.ts @@ -3,11 +3,11 @@ */ /** - * - `FULL_TIME` - FULL_TIME - * - `PART_TIME` - PART_TIME - * - `INTERN` - INTERN - * - `CONTRACTOR` - CONTRACTOR - * - `FREELANCE` - FREELANCE + * * `FULL_TIME` - FULL_TIME + * * `PART_TIME` - PART_TIME + * * `INTERN` - INTERN + * * `CONTRACTOR` - CONTRACTOR + * * `FREELANCE` - FREELANCE */ export type EmploymentTypeEnum = "FULL_TIME" | "PART_TIME" | "INTERN" | "CONTRACTOR" | "FREELANCE"; export const EmploymentTypeEnum = { diff --git a/src/api/resources/hris/types/EnabledActionsEnum.ts b/src/api/resources/hris/types/EnabledActionsEnum.ts index 24418b130..62022883a 100644 --- a/src/api/resources/hris/types/EnabledActionsEnum.ts +++ b/src/api/resources/hris/types/EnabledActionsEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `READ` - READ - * - `WRITE` - WRITE + * * `READ` - READ + * * `WRITE` - WRITE */ export type EnabledActionsEnum = "READ" | "WRITE"; export const EnabledActionsEnum = { diff --git a/src/api/resources/hris/types/EncodingEnum.ts b/src/api/resources/hris/types/EncodingEnum.ts index a828347f8..4dfc82b61 100644 --- a/src/api/resources/hris/types/EncodingEnum.ts +++ b/src/api/resources/hris/types/EncodingEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `RAW` - RAW - * - `BASE64` - BASE64 - * - `GZIP_BASE64` - GZIP_BASE64 + * * `RAW` - RAW + * * `BASE64` - BASE64 + * * `GZIP_BASE64` - GZIP_BASE64 */ export type EncodingEnum = "RAW" | "BASE64" | "GZIP_BASE64"; export const EncodingEnum = { diff --git a/src/api/resources/hris/types/EthnicityEnum.ts b/src/api/resources/hris/types/EthnicityEnum.ts index 1143997ae..6f162398f 100644 --- a/src/api/resources/hris/types/EthnicityEnum.ts +++ b/src/api/resources/hris/types/EthnicityEnum.ts @@ -3,14 +3,14 @@ */ /** - * - `AMERICAN_INDIAN_OR_ALASKA_NATIVE` - AMERICAN_INDIAN_OR_ALASKA_NATIVE - * - `ASIAN_OR_INDIAN_SUBCONTINENT` - ASIAN_OR_INDIAN_SUBCONTINENT - * - `BLACK_OR_AFRICAN_AMERICAN` - BLACK_OR_AFRICAN_AMERICAN - * - `HISPANIC_OR_LATINO` - HISPANIC_OR_LATINO - * - `NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER` - NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER - * - `TWO_OR_MORE_RACES` - TWO_OR_MORE_RACES - * - `WHITE` - WHITE - * - `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE + * * `AMERICAN_INDIAN_OR_ALASKA_NATIVE` - AMERICAN_INDIAN_OR_ALASKA_NATIVE + * * `ASIAN_OR_INDIAN_SUBCONTINENT` - ASIAN_OR_INDIAN_SUBCONTINENT + * * `BLACK_OR_AFRICAN_AMERICAN` - BLACK_OR_AFRICAN_AMERICAN + * * `HISPANIC_OR_LATINO` - HISPANIC_OR_LATINO + * * `NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER` - NATIVE_HAWAIIAN_OR_OTHER_PACIFIC_ISLANDER + * * `TWO_OR_MORE_RACES` - TWO_OR_MORE_RACES + * * `WHITE` - WHITE + * * `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE */ export type EthnicityEnum = | "AMERICAN_INDIAN_OR_ALASKA_NATIVE" diff --git a/src/api/resources/hris/types/EventTypeEnum.ts b/src/api/resources/hris/types/EventTypeEnum.ts index 08d0f1ce3..316d8531b 100644 --- a/src/api/resources/hris/types/EventTypeEnum.ts +++ b/src/api/resources/hris/types/EventTypeEnum.ts @@ -3,48 +3,48 @@ */ /** - * - `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 - * - `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 + * * `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 + * * `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 EventTypeEnum = | "CREATED_REMOTE_PRODUCTION_API_KEY" diff --git a/src/api/resources/hris/types/FlsaStatusEnum.ts b/src/api/resources/hris/types/FlsaStatusEnum.ts index bedaf430b..518675d37 100644 --- a/src/api/resources/hris/types/FlsaStatusEnum.ts +++ b/src/api/resources/hris/types/FlsaStatusEnum.ts @@ -3,10 +3,10 @@ */ /** - * - `EXEMPT` - EXEMPT - * - `SALARIED_NONEXEMPT` - SALARIED_NONEXEMPT - * - `NONEXEMPT` - NONEXEMPT - * - `OWNER` - OWNER + * * `EXEMPT` - EXEMPT + * * `SALARIED_NONEXEMPT` - SALARIED_NONEXEMPT + * * `NONEXEMPT` - NONEXEMPT + * * `OWNER` - OWNER */ export type FlsaStatusEnum = "EXEMPT" | "SALARIED_NONEXEMPT" | "NONEXEMPT" | "OWNER"; export const FlsaStatusEnum = { diff --git a/src/api/resources/hris/types/GenderEnum.ts b/src/api/resources/hris/types/GenderEnum.ts index 26d8e676e..dbf745a7b 100644 --- a/src/api/resources/hris/types/GenderEnum.ts +++ b/src/api/resources/hris/types/GenderEnum.ts @@ -3,11 +3,11 @@ */ /** - * - `MALE` - MALE - * - `FEMALE` - FEMALE - * - `NON-BINARY` - NON-BINARY - * - `OTHER` - OTHER - * - `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE + * * `MALE` - MALE + * * `FEMALE` - FEMALE + * * `NON-BINARY` - NON-BINARY + * * `OTHER` - OTHER + * * `PREFER_NOT_TO_DISCLOSE` - PREFER_NOT_TO_DISCLOSE */ export type GenderEnum = "MALE" | "FEMALE" | "NON-BINARY" | "OTHER" | "PREFER_NOT_TO_DISCLOSE"; export const GenderEnum = { diff --git a/src/api/resources/hris/types/Group.ts b/src/api/resources/hris/types/Group.ts index 00c3e6f41..0a1f415a2 100644 --- a/src/api/resources/hris/types/Group.ts +++ b/src/api/resources/hris/types/Group.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Group Object - * * ### Description - * * The `Group` object is used to represent any subset of employees across, for example, `DEPARTMENT` or `TEAM`. Employees can be in multiple Groups. * * ### Usage Example - * * Fetch from the `LIST Employee` endpoint and expand groups to view an employee's groups. */ export interface Group { @@ -30,11 +27,11 @@ export interface Group { /** * The Group type returned directly from the third-party. * - * - `TEAM` - TEAM - * - `DEPARTMENT` - DEPARTMENT - * - `COST_CENTER` - COST_CENTER - * - `BUSINESS_UNIT` - BUSINESS_UNIT - * - `GROUP` - GROUP + * * `TEAM` - TEAM + * * `DEPARTMENT` - DEPARTMENT + * * `COST_CENTER` - COST_CENTER + * * `BUSINESS_UNIT` - BUSINESS_UNIT + * * `GROUP` - GROUP */ type?: Merge.hris.GroupType; /** Indicates whether the Group refers to a team in the third party platform. Note that this is an opinionated view based on how Merge observes most organizations representing teams in each third party platform. If your customer uses a platform different from most, there is a chance this will not be correct. */ diff --git a/src/api/resources/hris/types/GroupType.ts b/src/api/resources/hris/types/GroupType.ts index 46d38b9e1..d8cb8c97f 100644 --- a/src/api/resources/hris/types/GroupType.ts +++ b/src/api/resources/hris/types/GroupType.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The Group type returned directly from the third-party. * - * - `TEAM` - TEAM - * - `DEPARTMENT` - DEPARTMENT - * - `COST_CENTER` - COST_CENTER - * - `BUSINESS_UNIT` - BUSINESS_UNIT - * - `GROUP` - GROUP + * * `TEAM` - TEAM + * * `DEPARTMENT` - DEPARTMENT + * * `COST_CENTER` - COST_CENTER + * * `BUSINESS_UNIT` - BUSINESS_UNIT + * * `GROUP` - GROUP */ export type GroupType = Merge.hris.GroupTypeEnum | string; diff --git a/src/api/resources/hris/types/GroupTypeEnum.ts b/src/api/resources/hris/types/GroupTypeEnum.ts index 3918a10ba..7ef5bda8d 100644 --- a/src/api/resources/hris/types/GroupTypeEnum.ts +++ b/src/api/resources/hris/types/GroupTypeEnum.ts @@ -3,11 +3,11 @@ */ /** - * - `TEAM` - TEAM - * - `DEPARTMENT` - DEPARTMENT - * - `COST_CENTER` - COST_CENTER - * - `BUSINESS_UNIT` - BUSINESS_UNIT - * - `GROUP` - GROUP + * * `TEAM` - TEAM + * * `DEPARTMENT` - DEPARTMENT + * * `COST_CENTER` - COST_CENTER + * * `BUSINESS_UNIT` - BUSINESS_UNIT + * * `GROUP` - GROUP */ export type GroupTypeEnum = "TEAM" | "DEPARTMENT" | "COST_CENTER" | "BUSINESS_UNIT" | "GROUP"; export const GroupTypeEnum = { diff --git a/src/api/resources/hris/types/Issue.ts b/src/api/resources/hris/types/Issue.ts index 5012ec6aa..e638e80d6 100644 --- a/src/api/resources/hris/types/Issue.ts +++ b/src/api/resources/hris/types/Issue.ts @@ -9,8 +9,8 @@ export interface Issue { /** * Status of the issue. Options: ('ONGOING', 'RESOLVED') * - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ status?: Merge.hris.IssueStatus; errorDescription: string; diff --git a/src/api/resources/hris/types/IssueStatus.ts b/src/api/resources/hris/types/IssueStatus.ts index 9d84ae29f..2c816ef34 100644 --- a/src/api/resources/hris/types/IssueStatus.ts +++ b/src/api/resources/hris/types/IssueStatus.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * Status of the issue. Options: ('ONGOING', 'RESOLVED') * - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ export type IssueStatus = Merge.hris.IssueStatusEnum | string; diff --git a/src/api/resources/hris/types/IssueStatusEnum.ts b/src/api/resources/hris/types/IssueStatusEnum.ts index 56fc6d5fa..324e8bf84 100644 --- a/src/api/resources/hris/types/IssueStatusEnum.ts +++ b/src/api/resources/hris/types/IssueStatusEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ export type IssueStatusEnum = "ONGOING" | "RESOLVED"; export const IssueStatusEnum = { diff --git a/src/api/resources/hris/types/LanguageEnum.ts b/src/api/resources/hris/types/LanguageEnum.ts index 180002115..6c41852c3 100644 --- a/src/api/resources/hris/types/LanguageEnum.ts +++ b/src/api/resources/hris/types/LanguageEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `en` - en - * - `de` - de + * * `en` - en + * * `de` - de */ export type LanguageEnum = "en" | "de"; export const LanguageEnum = { diff --git a/src/api/resources/hris/types/LastSyncResultEnum.ts b/src/api/resources/hris/types/LastSyncResultEnum.ts index e14779ef7..434329895 100644 --- a/src/api/resources/hris/types/LastSyncResultEnum.ts +++ b/src/api/resources/hris/types/LastSyncResultEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `SYNCING` - SYNCING - * - `DONE` - DONE - * - `FAILED` - FAILED - * - `DISABLED` - DISABLED - * - `PAUSED` - PAUSED - * - `PARTIALLY_SYNCED` - PARTIALLY_SYNCED + * * `SYNCING` - SYNCING + * * `DONE` - DONE + * * `FAILED` - FAILED + * * `DISABLED` - DISABLED + * * `PAUSED` - PAUSED + * * `PARTIALLY_SYNCED` - PARTIALLY_SYNCED */ export type LastSyncResultEnum = "SYNCING" | "DONE" | "FAILED" | "DISABLED" | "PAUSED" | "PARTIALLY_SYNCED"; export const LastSyncResultEnum = { diff --git a/src/api/resources/hris/types/Location.ts b/src/api/resources/hris/types/Location.ts index 53f3a1ec8..2044f956c 100644 --- a/src/api/resources/hris/types/Location.ts +++ b/src/api/resources/hris/types/Location.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Location Object - * * ### Description - * * The `Location` object is used to represent an address that can be associated with an employee. * * ### Usage Example - * * Fetch from the `LIST Locations` endpoint and filter by `ID` to show all office locations. */ export interface Location { @@ -40,262 +37,262 @@ export interface Location { /** * The location'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 + * * `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.hris.LocationCountry; /** * The location's type. Can be either WORK or HOME * - * - `HOME` - HOME - * - `WORK` - WORK + * * `HOME` - HOME + * * `WORK` - WORK */ locationType?: Merge.hris.LocationLocationType; /** 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/). */ diff --git a/src/api/resources/hris/types/LocationCountry.ts b/src/api/resources/hris/types/LocationCountry.ts index c2b6e00a0..232fe6eb1 100644 --- a/src/api/resources/hris/types/LocationCountry.ts +++ b/src/api/resources/hris/types/LocationCountry.ts @@ -7,254 +7,254 @@ import * as Merge from "../../../index"; /** * The location'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 + * * `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 LocationCountry = Merge.hris.CountryEnum | string; diff --git a/src/api/resources/hris/types/LocationLocationType.ts b/src/api/resources/hris/types/LocationLocationType.ts index d825612e3..739117279 100644 --- a/src/api/resources/hris/types/LocationLocationType.ts +++ b/src/api/resources/hris/types/LocationLocationType.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The location's type. Can be either WORK or HOME * - * - `HOME` - HOME - * - `WORK` - WORK + * * `HOME` - HOME + * * `WORK` - WORK */ export type LocationLocationType = Merge.hris.LocationTypeEnum | string; diff --git a/src/api/resources/hris/types/LocationTypeEnum.ts b/src/api/resources/hris/types/LocationTypeEnum.ts index 1c2acd82b..6008077da 100644 --- a/src/api/resources/hris/types/LocationTypeEnum.ts +++ b/src/api/resources/hris/types/LocationTypeEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `HOME` - HOME - * - `WORK` - WORK + * * `HOME` - HOME + * * `WORK` - WORK */ export type LocationTypeEnum = "HOME" | "WORK"; export const LocationTypeEnum = { diff --git a/src/api/resources/hris/types/MaritalStatusEnum.ts b/src/api/resources/hris/types/MaritalStatusEnum.ts index 52f8bb6fc..51a49b4d9 100644 --- a/src/api/resources/hris/types/MaritalStatusEnum.ts +++ b/src/api/resources/hris/types/MaritalStatusEnum.ts @@ -3,11 +3,11 @@ */ /** - * - `SINGLE` - SINGLE - * - `MARRIED_FILING_JOINTLY` - MARRIED_FILING_JOINTLY - * - `MARRIED_FILING_SEPARATELY` - MARRIED_FILING_SEPARATELY - * - `HEAD_OF_HOUSEHOLD` - HEAD_OF_HOUSEHOLD - * - `QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD` - QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD + * * `SINGLE` - SINGLE + * * `MARRIED_FILING_JOINTLY` - MARRIED_FILING_JOINTLY + * * `MARRIED_FILING_SEPARATELY` - MARRIED_FILING_SEPARATELY + * * `HEAD_OF_HOUSEHOLD` - HEAD_OF_HOUSEHOLD + * * `QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD` - QUALIFYING_WIDOW_OR_WIDOWER_WITH_DEPENDENT_CHILD */ export type MaritalStatusEnum = | "SINGLE" diff --git a/src/api/resources/hris/types/MethodEnum.ts b/src/api/resources/hris/types/MethodEnum.ts index 5d8dae516..0c151e94f 100644 --- a/src/api/resources/hris/types/MethodEnum.ts +++ b/src/api/resources/hris/types/MethodEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `GET` - GET - * - `OPTIONS` - OPTIONS - * - `HEAD` - HEAD - * - `POST` - POST - * - `PUT` - PUT - * - `PATCH` - PATCH - * - `DELETE` - DELETE + * * `GET` - GET + * * `OPTIONS` - OPTIONS + * * `HEAD` - HEAD + * * `POST` - POST + * * `PUT` - PUT + * * `PATCH` - PATCH + * * `DELETE` - DELETE */ export type MethodEnum = "GET" | "OPTIONS" | "HEAD" | "POST" | "PUT" | "PATCH" | "DELETE"; export const MethodEnum = { diff --git a/src/api/resources/hris/types/ModelOperation.ts b/src/api/resources/hris/types/ModelOperation.ts index 8126f65f6..d2035b050 100644 --- a/src/api/resources/hris/types/ModelOperation.ts +++ b/src/api/resources/hris/types/ModelOperation.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/hris/types/MultipartFormFieldRequest.ts b/src/api/resources/hris/types/MultipartFormFieldRequest.ts index d9bf314f5..cedebb5e3 100644 --- a/src/api/resources/hris/types/MultipartFormFieldRequest.ts +++ b/src/api/resources/hris/types/MultipartFormFieldRequest.ts @@ -6,13 +6,10 @@ import * 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 { @@ -23,9 +20,9 @@ export interface MultipartFormFieldRequest { /** * The encoding of the value of `data`. Defaults to `RAW` if not defined. * - * - `RAW` - RAW - * - `BASE64` - BASE64 - * - `GZIP_BASE64` - GZIP_BASE64 + * * `RAW` - RAW + * * `BASE64` - BASE64 + * * `GZIP_BASE64` - GZIP_BASE64 */ encoding?: Merge.hris.MultipartFormFieldRequestEncoding; /** The file name of the form field, if the field is for a file. */ diff --git a/src/api/resources/hris/types/MultipartFormFieldRequestEncoding.ts b/src/api/resources/hris/types/MultipartFormFieldRequestEncoding.ts index 6a263e712..02336ac58 100644 --- a/src/api/resources/hris/types/MultipartFormFieldRequestEncoding.ts +++ b/src/api/resources/hris/types/MultipartFormFieldRequestEncoding.ts @@ -7,8 +7,8 @@ import * 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 + * * `RAW` - RAW + * * `BASE64` - BASE64 + * * `GZIP_BASE64` - GZIP_BASE64 */ export type MultipartFormFieldRequestEncoding = Merge.hris.EncodingEnum | string; diff --git a/src/api/resources/hris/types/PayCurrencyEnum.ts b/src/api/resources/hris/types/PayCurrencyEnum.ts index 2d95c9365..66f4bbc63 100644 --- a/src/api/resources/hris/types/PayCurrencyEnum.ts +++ b/src/api/resources/hris/types/PayCurrencyEnum.ts @@ -3,312 +3,312 @@ */ /** - * - `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) + * * `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 PayCurrencyEnum = | "XUA" diff --git a/src/api/resources/hris/types/PayFrequencyEnum.ts b/src/api/resources/hris/types/PayFrequencyEnum.ts index b482c593f..194123415 100644 --- a/src/api/resources/hris/types/PayFrequencyEnum.ts +++ b/src/api/resources/hris/types/PayFrequencyEnum.ts @@ -3,15 +3,15 @@ */ /** - * - `WEEKLY` - WEEKLY - * - `BIWEEKLY` - BIWEEKLY - * - `MONTHLY` - MONTHLY - * - `QUARTERLY` - QUARTERLY - * - `SEMIANNUALLY` - SEMIANNUALLY - * - `ANNUALLY` - ANNUALLY - * - `THIRTEEN-MONTHLY` - THIRTEEN-MONTHLY - * - `PRO_RATA` - PRO_RATA - * - `SEMIMONTHLY` - SEMIMONTHLY + * * `WEEKLY` - WEEKLY + * * `BIWEEKLY` - BIWEEKLY + * * `MONTHLY` - MONTHLY + * * `QUARTERLY` - QUARTERLY + * * `SEMIANNUALLY` - SEMIANNUALLY + * * `ANNUALLY` - ANNUALLY + * * `THIRTEEN-MONTHLY` - THIRTEEN-MONTHLY + * * `PRO_RATA` - PRO_RATA + * * `SEMIMONTHLY` - SEMIMONTHLY */ export type PayFrequencyEnum = | "WEEKLY" diff --git a/src/api/resources/hris/types/PayGroup.ts b/src/api/resources/hris/types/PayGroup.ts index 4dad95212..32f1f2963 100644 --- a/src/api/resources/hris/types/PayGroup.ts +++ b/src/api/resources/hris/types/PayGroup.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The PayGroup Object - * * ### Description - * * The `PayGroup` object is used to represent a subset of employees that are put together for payroll processing purposes. * * ### Usage Example - * * Fetch from the `LIST PayGroup` endpoint and filter by `ID` to show all pay group information. */ export interface PayGroup { diff --git a/src/api/resources/hris/types/PayPeriodEnum.ts b/src/api/resources/hris/types/PayPeriodEnum.ts index 68001a2df..a7e3cdaef 100644 --- a/src/api/resources/hris/types/PayPeriodEnum.ts +++ b/src/api/resources/hris/types/PayPeriodEnum.ts @@ -3,15 +3,15 @@ */ /** - * - `HOUR` - HOUR - * - `DAY` - DAY - * - `WEEK` - WEEK - * - `EVERY_TWO_WEEKS` - EVERY_TWO_WEEKS - * - `SEMIMONTHLY` - SEMIMONTHLY - * - `MONTH` - MONTH - * - `QUARTER` - QUARTER - * - `EVERY_SIX_MONTHS` - EVERY_SIX_MONTHS - * - `YEAR` - YEAR + * * `HOUR` - HOUR + * * `DAY` - DAY + * * `WEEK` - WEEK + * * `EVERY_TWO_WEEKS` - EVERY_TWO_WEEKS + * * `SEMIMONTHLY` - SEMIMONTHLY + * * `MONTH` - MONTH + * * `QUARTER` - QUARTER + * * `EVERY_SIX_MONTHS` - EVERY_SIX_MONTHS + * * `YEAR` - YEAR */ export type PayPeriodEnum = | "HOUR" diff --git a/src/api/resources/hris/types/PayrollRun.ts b/src/api/resources/hris/types/PayrollRun.ts index 0358a520c..d02887259 100644 --- a/src/api/resources/hris/types/PayrollRun.ts +++ b/src/api/resources/hris/types/PayrollRun.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The PayrollRun Object - * * ### Description - * * The `PayrollRun` object is used to represent a group of pay statements for a specific pay schedule. * * ### Usage Example - * * Fetch from the `LIST PayrollRuns` endpoint and filter by `ID` to show all payroll runs. */ export interface PayrollRun { @@ -26,21 +23,21 @@ export interface PayrollRun { /** * The state of the payroll run * - * - `PAID` - PAID - * - `DRAFT` - DRAFT - * - `APPROVED` - APPROVED - * - `FAILED` - FAILED - * - `CLOSED` - CLOSED + * * `PAID` - PAID + * * `DRAFT` - DRAFT + * * `APPROVED` - APPROVED + * * `FAILED` - FAILED + * * `CLOSED` - CLOSED */ runState?: Merge.hris.PayrollRunRunState; /** * The type of the payroll run * - * - `REGULAR` - REGULAR - * - `OFF_CYCLE` - OFF_CYCLE - * - `CORRECTION` - CORRECTION - * - `TERMINATION` - TERMINATION - * - `SIGN_ON_BONUS` - SIGN_ON_BONUS + * * `REGULAR` - REGULAR + * * `OFF_CYCLE` - OFF_CYCLE + * * `CORRECTION` - CORRECTION + * * `TERMINATION` - TERMINATION + * * `SIGN_ON_BONUS` - SIGN_ON_BONUS */ runType?: Merge.hris.PayrollRunRunType; /** The day and time the payroll run started. */ diff --git a/src/api/resources/hris/types/PayrollRunRunState.ts b/src/api/resources/hris/types/PayrollRunRunState.ts index f76cda08b..6b3e0bc49 100644 --- a/src/api/resources/hris/types/PayrollRunRunState.ts +++ b/src/api/resources/hris/types/PayrollRunRunState.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The state of the payroll run * - * - `PAID` - PAID - * - `DRAFT` - DRAFT - * - `APPROVED` - APPROVED - * - `FAILED` - FAILED - * - `CLOSED` - CLOSED + * * `PAID` - PAID + * * `DRAFT` - DRAFT + * * `APPROVED` - APPROVED + * * `FAILED` - FAILED + * * `CLOSED` - CLOSED */ export type PayrollRunRunState = Merge.hris.RunStateEnum | string; diff --git a/src/api/resources/hris/types/PayrollRunRunType.ts b/src/api/resources/hris/types/PayrollRunRunType.ts index 0e137fcee..305e8f4e8 100644 --- a/src/api/resources/hris/types/PayrollRunRunType.ts +++ b/src/api/resources/hris/types/PayrollRunRunType.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The type of the payroll run * - * - `REGULAR` - REGULAR - * - `OFF_CYCLE` - OFF_CYCLE - * - `CORRECTION` - CORRECTION - * - `TERMINATION` - TERMINATION - * - `SIGN_ON_BONUS` - SIGN_ON_BONUS + * * `REGULAR` - REGULAR + * * `OFF_CYCLE` - OFF_CYCLE + * * `CORRECTION` - CORRECTION + * * `TERMINATION` - TERMINATION + * * `SIGN_ON_BONUS` - SIGN_ON_BONUS */ export type PayrollRunRunType = Merge.hris.RunTypeEnum | string; diff --git a/src/api/resources/hris/types/PolicyTypeEnum.ts b/src/api/resources/hris/types/PolicyTypeEnum.ts index 17546f254..63fc26e8b 100644 --- a/src/api/resources/hris/types/PolicyTypeEnum.ts +++ b/src/api/resources/hris/types/PolicyTypeEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `VACATION` - VACATION - * - `SICK` - SICK - * - `PERSONAL` - PERSONAL - * - `JURY_DUTY` - JURY_DUTY - * - `VOLUNTEER` - VOLUNTEER - * - `BEREAVEMENT` - BEREAVEMENT + * * `VACATION` - VACATION + * * `SICK` - SICK + * * `PERSONAL` - PERSONAL + * * `JURY_DUTY` - JURY_DUTY + * * `VOLUNTEER` - VOLUNTEER + * * `BEREAVEMENT` - BEREAVEMENT */ export type PolicyTypeEnum = "VACATION" | "SICK" | "PERSONAL" | "JURY_DUTY" | "VOLUNTEER" | "BEREAVEMENT"; export const PolicyTypeEnum = { diff --git a/src/api/resources/hris/types/ReasonEnum.ts b/src/api/resources/hris/types/ReasonEnum.ts index 6298f17e7..d8258ee4c 100644 --- a/src/api/resources/hris/types/ReasonEnum.ts +++ b/src/api/resources/hris/types/ReasonEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `GENERAL_CUSTOMER_REQUEST` - GENERAL_CUSTOMER_REQUEST - * - `GDPR` - GDPR - * - `OTHER` - OTHER + * * `GENERAL_CUSTOMER_REQUEST` - GENERAL_CUSTOMER_REQUEST + * * `GDPR` - GDPR + * * `OTHER` - OTHER */ export type ReasonEnum = "GENERAL_CUSTOMER_REQUEST" | "GDPR" | "OTHER"; export const ReasonEnum = { diff --git a/src/api/resources/hris/types/RelationshipEnum.ts b/src/api/resources/hris/types/RelationshipEnum.ts index c63b0c17f..83110b90b 100644 --- a/src/api/resources/hris/types/RelationshipEnum.ts +++ b/src/api/resources/hris/types/RelationshipEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `CHILD` - CHILD - * - `SPOUSE` - SPOUSE - * - `DOMESTIC_PARTNER` - DOMESTIC_PARTNER + * * `CHILD` - CHILD + * * `SPOUSE` - SPOUSE + * * `DOMESTIC_PARTNER` - DOMESTIC_PARTNER */ export type RelationshipEnum = "CHILD" | "SPOUSE" | "DOMESTIC_PARTNER"; export const RelationshipEnum = { diff --git a/src/api/resources/hris/types/RemoteData.ts b/src/api/resources/hris/types/RemoteData.ts index 928b06e7a..ab15ac8ee 100644 --- a/src/api/resources/hris/types/RemoteData.ts +++ b/src/api/resources/hris/types/RemoteData.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/hris/types/RemoteKey.ts b/src/api/resources/hris/types/RemoteKey.ts index 878f41321..6f8bf2dbf 100644 --- a/src/api/resources/hris/types/RemoteKey.ts +++ b/src/api/resources/hris/types/RemoteKey.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/hris/types/RemoteResponse.ts b/src/api/resources/hris/types/RemoteResponse.ts index c7d2e5e76..d436d154f 100644 --- a/src/api/resources/hris/types/RemoteResponse.ts +++ b/src/api/resources/hris/types/RemoteResponse.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/hris/types/RequestFormatEnum.ts b/src/api/resources/hris/types/RequestFormatEnum.ts index 6c5f28198..132d6eea5 100644 --- a/src/api/resources/hris/types/RequestFormatEnum.ts +++ b/src/api/resources/hris/types/RequestFormatEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `JSON` - JSON - * - `XML` - XML - * - `MULTIPART` - MULTIPART + * * `JSON` - JSON + * * `XML` - XML + * * `MULTIPART` - MULTIPART */ export type RequestFormatEnum = "JSON" | "XML" | "MULTIPART"; export const RequestFormatEnum = { diff --git a/src/api/resources/hris/types/RequestTypeEnum.ts b/src/api/resources/hris/types/RequestTypeEnum.ts index addb8fafc..bb0311558 100644 --- a/src/api/resources/hris/types/RequestTypeEnum.ts +++ b/src/api/resources/hris/types/RequestTypeEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `VACATION` - VACATION - * - `SICK` - SICK - * - `PERSONAL` - PERSONAL - * - `JURY_DUTY` - JURY_DUTY - * - `VOLUNTEER` - VOLUNTEER - * - `BEREAVEMENT` - BEREAVEMENT + * * `VACATION` - VACATION + * * `SICK` - SICK + * * `PERSONAL` - PERSONAL + * * `JURY_DUTY` - JURY_DUTY + * * `VOLUNTEER` - VOLUNTEER + * * `BEREAVEMENT` - BEREAVEMENT */ export type RequestTypeEnum = "VACATION" | "SICK" | "PERSONAL" | "JURY_DUTY" | "VOLUNTEER" | "BEREAVEMENT"; export const RequestTypeEnum = { diff --git a/src/api/resources/hris/types/ResponseTypeEnum.ts b/src/api/resources/hris/types/ResponseTypeEnum.ts index e123001a6..5bef2d16e 100644 --- a/src/api/resources/hris/types/ResponseTypeEnum.ts +++ b/src/api/resources/hris/types/ResponseTypeEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `JSON` - JSON - * - `BASE64_GZIP` - BASE64_GZIP + * * `JSON` - JSON + * * `BASE64_GZIP` - BASE64_GZIP */ export type ResponseTypeEnum = "JSON" | "BASE64_GZIP"; export const ResponseTypeEnum = { diff --git a/src/api/resources/hris/types/RoleEnum.ts b/src/api/resources/hris/types/RoleEnum.ts index d7b99ac49..a3341a6e1 100644 --- a/src/api/resources/hris/types/RoleEnum.ts +++ b/src/api/resources/hris/types/RoleEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `ADMIN` - ADMIN - * - `DEVELOPER` - DEVELOPER - * - `MEMBER` - MEMBER - * - `API` - API - * - `SYSTEM` - SYSTEM - * - `MERGE_TEAM` - MERGE_TEAM + * * `ADMIN` - ADMIN + * * `DEVELOPER` - DEVELOPER + * * `MEMBER` - MEMBER + * * `API` - API + * * `SYSTEM` - SYSTEM + * * `MERGE_TEAM` - MERGE_TEAM */ export type RoleEnum = "ADMIN" | "DEVELOPER" | "MEMBER" | "API" | "SYSTEM" | "MERGE_TEAM"; export const RoleEnum = { diff --git a/src/api/resources/hris/types/RunStateEnum.ts b/src/api/resources/hris/types/RunStateEnum.ts index 385769609..cbf82b0d3 100644 --- a/src/api/resources/hris/types/RunStateEnum.ts +++ b/src/api/resources/hris/types/RunStateEnum.ts @@ -3,11 +3,11 @@ */ /** - * - `PAID` - PAID - * - `DRAFT` - DRAFT - * - `APPROVED` - APPROVED - * - `FAILED` - FAILED - * - `CLOSED` - CLOSED + * * `PAID` - PAID + * * `DRAFT` - DRAFT + * * `APPROVED` - APPROVED + * * `FAILED` - FAILED + * * `CLOSED` - CLOSED */ export type RunStateEnum = "PAID" | "DRAFT" | "APPROVED" | "FAILED" | "CLOSED"; export const RunStateEnum = { diff --git a/src/api/resources/hris/types/RunTypeEnum.ts b/src/api/resources/hris/types/RunTypeEnum.ts index 21e27513b..d54905ffe 100644 --- a/src/api/resources/hris/types/RunTypeEnum.ts +++ b/src/api/resources/hris/types/RunTypeEnum.ts @@ -3,11 +3,11 @@ */ /** - * - `REGULAR` - REGULAR - * - `OFF_CYCLE` - OFF_CYCLE - * - `CORRECTION` - CORRECTION - * - `TERMINATION` - TERMINATION - * - `SIGN_ON_BONUS` - SIGN_ON_BONUS + * * `REGULAR` - REGULAR + * * `OFF_CYCLE` - OFF_CYCLE + * * `CORRECTION` - CORRECTION + * * `TERMINATION` - TERMINATION + * * `SIGN_ON_BONUS` - SIGN_ON_BONUS */ export type RunTypeEnum = "REGULAR" | "OFF_CYCLE" | "CORRECTION" | "TERMINATION" | "SIGN_ON_BONUS"; export const RunTypeEnum = { diff --git a/src/api/resources/hris/types/SelectiveSyncConfigurationsUsageEnum.ts b/src/api/resources/hris/types/SelectiveSyncConfigurationsUsageEnum.ts index db8508f89..473a4c15e 100644 --- a/src/api/resources/hris/types/SelectiveSyncConfigurationsUsageEnum.ts +++ b/src/api/resources/hris/types/SelectiveSyncConfigurationsUsageEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `IN_NEXT_SYNC` - IN_NEXT_SYNC - * - `IN_LAST_SYNC` - IN_LAST_SYNC + * * `IN_NEXT_SYNC` - IN_NEXT_SYNC + * * `IN_LAST_SYNC` - IN_LAST_SYNC */ export type SelectiveSyncConfigurationsUsageEnum = "IN_NEXT_SYNC" | "IN_LAST_SYNC"; export const SelectiveSyncConfigurationsUsageEnum = { diff --git a/src/api/resources/hris/types/StatusFd5Enum.ts b/src/api/resources/hris/types/StatusFd5Enum.ts index 837436325..e8a7a4eec 100644 --- a/src/api/resources/hris/types/StatusFd5Enum.ts +++ b/src/api/resources/hris/types/StatusFd5Enum.ts @@ -3,12 +3,12 @@ */ /** - * - `SYNCING` - SYNCING - * - `DONE` - DONE - * - `FAILED` - FAILED - * - `DISABLED` - DISABLED - * - `PAUSED` - PAUSED - * - `PARTIALLY_SYNCED` - PARTIALLY_SYNCED + * * `SYNCING` - SYNCING + * * `DONE` - DONE + * * `FAILED` - FAILED + * * `DISABLED` - DISABLED + * * `PAUSED` - PAUSED + * * `PARTIALLY_SYNCED` - PARTIALLY_SYNCED */ export type StatusFd5Enum = "SYNCING" | "DONE" | "FAILED" | "DISABLED" | "PAUSED" | "PARTIALLY_SYNCED"; export const StatusFd5Enum = { diff --git a/src/api/resources/hris/types/SyncStatus.ts b/src/api/resources/hris/types/SyncStatus.ts index 0d6726059..7df040373 100644 --- a/src/api/resources/hris/types/SyncStatus.ts +++ b/src/api/resources/hris/types/SyncStatus.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/hris/types/Tax.ts b/src/api/resources/hris/types/Tax.ts index 1b2edee49..b949782ae 100644 --- a/src/api/resources/hris/types/Tax.ts +++ b/src/api/resources/hris/types/Tax.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Tax Object - * * ### Description - * * The `Tax` object is used to represent an array of the tax deductions for a given employee's payroll run. * * ### Usage Example - * * Fetch from the `LIST Taxes` endpoint and filter by `ID` to show all taxes. */ export interface Tax { diff --git a/src/api/resources/hris/types/Team.ts b/src/api/resources/hris/types/Team.ts index 7b217df2a..820bfb1f3 100644 --- a/src/api/resources/hris/types/Team.ts +++ b/src/api/resources/hris/types/Team.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Team Object - * * ### Description - * * The `Team` object is used to represent a subdivision of the company, usually a department. Each employee will be grouped into one specific Team. * * ### Usage Example - * * If you're building a way to filter by `Team`, you'd hit the `GET Teams` endpoint to fetch the `Teams`, and then use the `ID` of the team your user selects to filter the `GET Employees` endpoint. */ export interface Team { diff --git a/src/api/resources/hris/types/TimeOff.ts b/src/api/resources/hris/types/TimeOff.ts index 391711005..fc37a324c 100644 --- a/src/api/resources/hris/types/TimeOff.ts +++ b/src/api/resources/hris/types/TimeOff.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The TimeOff Object - * * ### Description - * * The `TimeOff` object is used to represent all employees' Time Off entries. * * ### Usage Example - * * Fetch from the `LIST TimeOffs` endpoint and filter by `ID` to show all time off requests. */ export interface TimeOff { @@ -30,11 +27,11 @@ export interface TimeOff { /** * The status of this time off request. * - * - `REQUESTED` - REQUESTED - * - `APPROVED` - APPROVED - * - `DECLINED` - DECLINED - * - `CANCELLED` - CANCELLED - * - `DELETED` - DELETED + * * `REQUESTED` - REQUESTED + * * `APPROVED` - APPROVED + * * `DECLINED` - DECLINED + * * `CANCELLED` - CANCELLED + * * `DELETED` - DELETED */ status?: Merge.hris.TimeOffStatus; /** The employee note for this time off request. */ @@ -42,8 +39,8 @@ export interface TimeOff { /** * The measurement that the third-party integration uses to count time requested. * - * - `HOURS` - HOURS - * - `DAYS` - DAYS + * * `HOURS` - HOURS + * * `DAYS` - DAYS */ units?: Merge.hris.TimeOffUnits; /** The time off quantity measured by the prescribed “units”. */ @@ -51,12 +48,12 @@ export interface TimeOff { /** * The type of time off request. * - * - `VACATION` - VACATION - * - `SICK` - SICK - * - `PERSONAL` - PERSONAL - * - `JURY_DUTY` - JURY_DUTY - * - `VOLUNTEER` - VOLUNTEER - * - `BEREAVEMENT` - BEREAVEMENT + * * `VACATION` - VACATION + * * `SICK` - SICK + * * `PERSONAL` - PERSONAL + * * `JURY_DUTY` - JURY_DUTY + * * `VOLUNTEER` - VOLUNTEER + * * `BEREAVEMENT` - BEREAVEMENT */ requestType?: Merge.hris.TimeOffRequestType; /** The day and time of the start of the time requested off. */ diff --git a/src/api/resources/hris/types/TimeOffBalance.ts b/src/api/resources/hris/types/TimeOffBalance.ts index a2a81125e..982778a07 100644 --- a/src/api/resources/hris/types/TimeOffBalance.ts +++ b/src/api/resources/hris/types/TimeOffBalance.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The TimeOffBalance Object - * * ### Description - * * The `TimeOffBalance` object is used to represent current balances for an employee's Time Off plan. * * ### Usage Example - * * Fetch from the `LIST TimeOffBalances` endpoint and filter by `ID` to show all time off balances. */ export interface TimeOffBalance { @@ -32,12 +29,12 @@ export interface TimeOffBalance { /** * The policy type of this time off balance. * - * - `VACATION` - VACATION - * - `SICK` - SICK - * - `PERSONAL` - PERSONAL - * - `JURY_DUTY` - JURY_DUTY - * - `VOLUNTEER` - VOLUNTEER - * - `BEREAVEMENT` - BEREAVEMENT + * * `VACATION` - VACATION + * * `SICK` - SICK + * * `PERSONAL` - PERSONAL + * * `JURY_DUTY` - JURY_DUTY + * * `VOLUNTEER` - VOLUNTEER + * * `BEREAVEMENT` - BEREAVEMENT */ policyType?: Merge.hris.TimeOffBalancePolicyType; /** 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/). */ diff --git a/src/api/resources/hris/types/TimeOffBalancePolicyType.ts b/src/api/resources/hris/types/TimeOffBalancePolicyType.ts index b6eef5476..97a8f6a0f 100644 --- a/src/api/resources/hris/types/TimeOffBalancePolicyType.ts +++ b/src/api/resources/hris/types/TimeOffBalancePolicyType.ts @@ -7,11 +7,11 @@ import * as Merge from "../../../index"; /** * The policy type of this time off balance. * - * - `VACATION` - VACATION - * - `SICK` - SICK - * - `PERSONAL` - PERSONAL - * - `JURY_DUTY` - JURY_DUTY - * - `VOLUNTEER` - VOLUNTEER - * - `BEREAVEMENT` - BEREAVEMENT + * * `VACATION` - VACATION + * * `SICK` - SICK + * * `PERSONAL` - PERSONAL + * * `JURY_DUTY` - JURY_DUTY + * * `VOLUNTEER` - VOLUNTEER + * * `BEREAVEMENT` - BEREAVEMENT */ export type TimeOffBalancePolicyType = Merge.hris.PolicyTypeEnum | string; diff --git a/src/api/resources/hris/types/TimeOffRequest.ts b/src/api/resources/hris/types/TimeOffRequest.ts index 1a5920603..ccca9c1d4 100644 --- a/src/api/resources/hris/types/TimeOffRequest.ts +++ b/src/api/resources/hris/types/TimeOffRequest.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The TimeOff Object - * * ### Description - * * The `TimeOff` object is used to represent all employees' Time Off entries. * * ### Usage Example - * * Fetch from the `LIST TimeOffs` endpoint and filter by `ID` to show all time off requests. */ export interface TimeOffRequest { @@ -23,11 +20,11 @@ export interface TimeOffRequest { /** * The status of this time off request. * - * - `REQUESTED` - REQUESTED - * - `APPROVED` - APPROVED - * - `DECLINED` - DECLINED - * - `CANCELLED` - CANCELLED - * - `DELETED` - DELETED + * * `REQUESTED` - REQUESTED + * * `APPROVED` - APPROVED + * * `DECLINED` - DECLINED + * * `CANCELLED` - CANCELLED + * * `DELETED` - DELETED */ status?: Merge.hris.TimeOffRequestStatus; /** The employee note for this time off request. */ @@ -35,8 +32,8 @@ export interface TimeOffRequest { /** * The measurement that the third-party integration uses to count time requested. * - * - `HOURS` - HOURS - * - `DAYS` - DAYS + * * `HOURS` - HOURS + * * `DAYS` - DAYS */ units?: Merge.hris.TimeOffRequestUnits; /** The time off quantity measured by the prescribed “units”. */ @@ -44,12 +41,12 @@ export interface TimeOffRequest { /** * The type of time off request. * - * - `VACATION` - VACATION - * - `SICK` - SICK - * - `PERSONAL` - PERSONAL - * - `JURY_DUTY` - JURY_DUTY - * - `VOLUNTEER` - VOLUNTEER - * - `BEREAVEMENT` - BEREAVEMENT + * * `VACATION` - VACATION + * * `SICK` - SICK + * * `PERSONAL` - PERSONAL + * * `JURY_DUTY` - JURY_DUTY + * * `VOLUNTEER` - VOLUNTEER + * * `BEREAVEMENT` - BEREAVEMENT */ requestType?: Merge.hris.TimeOffRequestRequestType; /** The day and time of the start of the time requested off. */ diff --git a/src/api/resources/hris/types/TimeOffRequestRequestType.ts b/src/api/resources/hris/types/TimeOffRequestRequestType.ts index 1da7d3522..f5a8e05f1 100644 --- a/src/api/resources/hris/types/TimeOffRequestRequestType.ts +++ b/src/api/resources/hris/types/TimeOffRequestRequestType.ts @@ -7,11 +7,11 @@ import * as Merge from "../../../index"; /** * The type of time off request. * - * - `VACATION` - VACATION - * - `SICK` - SICK - * - `PERSONAL` - PERSONAL - * - `JURY_DUTY` - JURY_DUTY - * - `VOLUNTEER` - VOLUNTEER - * - `BEREAVEMENT` - BEREAVEMENT + * * `VACATION` - VACATION + * * `SICK` - SICK + * * `PERSONAL` - PERSONAL + * * `JURY_DUTY` - JURY_DUTY + * * `VOLUNTEER` - VOLUNTEER + * * `BEREAVEMENT` - BEREAVEMENT */ export type TimeOffRequestRequestType = Merge.hris.RequestTypeEnum | string; diff --git a/src/api/resources/hris/types/TimeOffRequestStatus.ts b/src/api/resources/hris/types/TimeOffRequestStatus.ts index 5a6c497c9..c2d5e5dad 100644 --- a/src/api/resources/hris/types/TimeOffRequestStatus.ts +++ b/src/api/resources/hris/types/TimeOffRequestStatus.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The status of this time off request. * - * - `REQUESTED` - REQUESTED - * - `APPROVED` - APPROVED - * - `DECLINED` - DECLINED - * - `CANCELLED` - CANCELLED - * - `DELETED` - DELETED + * * `REQUESTED` - REQUESTED + * * `APPROVED` - APPROVED + * * `DECLINED` - DECLINED + * * `CANCELLED` - CANCELLED + * * `DELETED` - DELETED */ export type TimeOffRequestStatus = Merge.hris.TimeOffStatusEnum | string; diff --git a/src/api/resources/hris/types/TimeOffRequestType.ts b/src/api/resources/hris/types/TimeOffRequestType.ts index de3da71d3..0971a9e27 100644 --- a/src/api/resources/hris/types/TimeOffRequestType.ts +++ b/src/api/resources/hris/types/TimeOffRequestType.ts @@ -7,11 +7,11 @@ import * as Merge from "../../../index"; /** * The type of time off request. * - * - `VACATION` - VACATION - * - `SICK` - SICK - * - `PERSONAL` - PERSONAL - * - `JURY_DUTY` - JURY_DUTY - * - `VOLUNTEER` - VOLUNTEER - * - `BEREAVEMENT` - BEREAVEMENT + * * `VACATION` - VACATION + * * `SICK` - SICK + * * `PERSONAL` - PERSONAL + * * `JURY_DUTY` - JURY_DUTY + * * `VOLUNTEER` - VOLUNTEER + * * `BEREAVEMENT` - BEREAVEMENT */ export type TimeOffRequestType = Merge.hris.RequestTypeEnum | string; diff --git a/src/api/resources/hris/types/TimeOffRequestUnits.ts b/src/api/resources/hris/types/TimeOffRequestUnits.ts index 2c9bfabaf..c66832e85 100644 --- a/src/api/resources/hris/types/TimeOffRequestUnits.ts +++ b/src/api/resources/hris/types/TimeOffRequestUnits.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The measurement that the third-party integration uses to count time requested. * - * - `HOURS` - HOURS - * - `DAYS` - DAYS + * * `HOURS` - HOURS + * * `DAYS` - DAYS */ export type TimeOffRequestUnits = Merge.hris.UnitsEnum | string; diff --git a/src/api/resources/hris/types/TimeOffStatus.ts b/src/api/resources/hris/types/TimeOffStatus.ts index dd0b33097..9daee2704 100644 --- a/src/api/resources/hris/types/TimeOffStatus.ts +++ b/src/api/resources/hris/types/TimeOffStatus.ts @@ -7,10 +7,10 @@ import * as Merge from "../../../index"; /** * The status of this time off request. * - * - `REQUESTED` - REQUESTED - * - `APPROVED` - APPROVED - * - `DECLINED` - DECLINED - * - `CANCELLED` - CANCELLED - * - `DELETED` - DELETED + * * `REQUESTED` - REQUESTED + * * `APPROVED` - APPROVED + * * `DECLINED` - DECLINED + * * `CANCELLED` - CANCELLED + * * `DELETED` - DELETED */ export type TimeOffStatus = Merge.hris.TimeOffStatusEnum | string; diff --git a/src/api/resources/hris/types/TimeOffStatusEnum.ts b/src/api/resources/hris/types/TimeOffStatusEnum.ts index df6d9eb8c..1ab4d5a2a 100644 --- a/src/api/resources/hris/types/TimeOffStatusEnum.ts +++ b/src/api/resources/hris/types/TimeOffStatusEnum.ts @@ -3,11 +3,11 @@ */ /** - * - `REQUESTED` - REQUESTED - * - `APPROVED` - APPROVED - * - `DECLINED` - DECLINED - * - `CANCELLED` - CANCELLED - * - `DELETED` - DELETED + * * `REQUESTED` - REQUESTED + * * `APPROVED` - APPROVED + * * `DECLINED` - DECLINED + * * `CANCELLED` - CANCELLED + * * `DELETED` - DELETED */ export type TimeOffStatusEnum = "REQUESTED" | "APPROVED" | "DECLINED" | "CANCELLED" | "DELETED"; export const TimeOffStatusEnum = { diff --git a/src/api/resources/hris/types/TimeOffUnits.ts b/src/api/resources/hris/types/TimeOffUnits.ts index 95480b5e0..2290326d4 100644 --- a/src/api/resources/hris/types/TimeOffUnits.ts +++ b/src/api/resources/hris/types/TimeOffUnits.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The measurement that the third-party integration uses to count time requested. * - * - `HOURS` - HOURS - * - `DAYS` - DAYS + * * `HOURS` - HOURS + * * `DAYS` - DAYS */ export type TimeOffUnits = Merge.hris.UnitsEnum | string; diff --git a/src/api/resources/hris/types/TimesheetEntry.ts b/src/api/resources/hris/types/TimesheetEntry.ts index 604080cd7..da274d591 100644 --- a/src/api/resources/hris/types/TimesheetEntry.ts +++ b/src/api/resources/hris/types/TimesheetEntry.ts @@ -6,13 +6,11 @@ import * as Merge from "../../../index"; /** * # The Timesheet Entry Object - * * ### Description - * * The `Timesheet Entry` object is used to track coverage for hours worked by an 'Employee'. * - * ### Usage Example * + * ### Usage Example * GET and POST Timesheet Entries */ export interface TimesheetEntry { diff --git a/src/api/resources/hris/types/TimesheetEntryRequest.ts b/src/api/resources/hris/types/TimesheetEntryRequest.ts index 2a41b5d86..5a5e9eed1 100644 --- a/src/api/resources/hris/types/TimesheetEntryRequest.ts +++ b/src/api/resources/hris/types/TimesheetEntryRequest.ts @@ -6,13 +6,11 @@ import * as Merge from "../../../index"; /** * # The Timesheet Entry Object - * * ### Description - * * The `Timesheet Entry` object is used to track coverage for hours worked by an 'Employee'. * - * ### Usage Example * + * ### Usage Example * GET and POST Timesheet Entries */ export interface TimesheetEntryRequest { diff --git a/src/api/resources/hris/types/UnitsEnum.ts b/src/api/resources/hris/types/UnitsEnum.ts index 6d153f70a..51ab149d8 100644 --- a/src/api/resources/hris/types/UnitsEnum.ts +++ b/src/api/resources/hris/types/UnitsEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `HOURS` - HOURS - * - `DAYS` - DAYS + * * `HOURS` - HOURS + * * `DAYS` - DAYS */ export type UnitsEnum = "HOURS" | "DAYS"; export const UnitsEnum = { diff --git a/src/api/resources/index.ts b/src/api/resources/index.ts index 822a7f79d..2be011c93 100644 --- a/src/api/resources/index.ts +++ b/src/api/resources/index.ts @@ -1,6 +1,6 @@ -export * as filestorage from "./filestorage"; export * as ats from "./ats"; export * as crm from "./crm"; +export * as filestorage from "./filestorage"; export * as hris from "./hris"; export * as ticketing from "./ticketing"; export * as accounting from "./accounting"; diff --git a/src/api/resources/ticketing/resources/accountDetails/client/Client.ts b/src/api/resources/ticketing/resources/accountDetails/client/Client.ts index d4aade747..40a6e7a45 100644 --- a/src/api/resources/ticketing/resources/accountDetails/client/Client.ts +++ b/src/api/resources/ticketing/resources/accountDetails/client/Client.ts @@ -70,8 +70,8 @@ export class AccountDetails { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/accountToken/client/Client.ts b/src/api/resources/ticketing/resources/accountToken/client/Client.ts index 9896ad333..f37339b2d 100644 --- a/src/api/resources/ticketing/resources/accountToken/client/Client.ts +++ b/src/api/resources/ticketing/resources/accountToken/client/Client.ts @@ -73,8 +73,8 @@ export class AccountToken { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/accounts/client/Client.ts b/src/api/resources/ticketing/resources/accounts/client/Client.ts index e27ff6b38..c7cf69c61 100644 --- a/src/api/resources/ticketing/resources/accounts/client/Client.ts +++ b/src/api/resources/ticketing/resources/accounts/client/Client.ts @@ -126,8 +126,8 @@ export class Accounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -223,8 +223,8 @@ export class Accounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/asyncPassthrough/client/Client.ts b/src/api/resources/ticketing/resources/asyncPassthrough/client/Client.ts index 8fa678432..85218e362 100644 --- a/src/api/resources/ticketing/resources/asyncPassthrough/client/Client.ts +++ b/src/api/resources/ticketing/resources/asyncPassthrough/client/Client.ts @@ -76,8 +76,8 @@ export class AsyncPassthrough { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -164,8 +164,8 @@ export class AsyncPassthrough { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/attachments/client/Client.ts b/src/api/resources/ticketing/resources/attachments/client/Client.ts index 7616c6ed2..5c678defa 100644 --- a/src/api/resources/ticketing/resources/attachments/client/Client.ts +++ b/src/api/resources/ticketing/resources/attachments/client/Client.ts @@ -142,8 +142,8 @@ export class Attachments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -238,8 +238,8 @@ export class Attachments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -342,8 +342,8 @@ export class Attachments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -432,8 +432,8 @@ export class Attachments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -507,8 +507,8 @@ export class Attachments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/attachments/client/requests/AttachmentsDownloadRetrieveRequest.ts b/src/api/resources/ticketing/resources/attachments/client/requests/AttachmentsDownloadRetrieveRequest.ts index 10288f1e1..39be3c309 100644 --- a/src/api/resources/ticketing/resources/attachments/client/requests/AttachmentsDownloadRetrieveRequest.ts +++ b/src/api/resources/ticketing/resources/attachments/client/requests/AttachmentsDownloadRetrieveRequest.ts @@ -2,13 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ -/** - * @example - * { - * includeShellData: true, - * mimeType: "string" - * } - */ export interface AttachmentsDownloadRetrieveRequest { /** * Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). diff --git a/src/api/resources/ticketing/resources/auditTrail/client/Client.ts b/src/api/resources/ticketing/resources/auditTrail/client/Client.ts index 56c007ca9..d3f35dde8 100644 --- a/src/api/resources/ticketing/resources/auditTrail/client/Client.ts +++ b/src/api/resources/ticketing/resources/auditTrail/client/Client.ts @@ -99,8 +99,8 @@ export class AuditTrail { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/availableActions/client/Client.ts b/src/api/resources/ticketing/resources/availableActions/client/Client.ts index 5f4944758..6dce1ecbb 100644 --- a/src/api/resources/ticketing/resources/availableActions/client/Client.ts +++ b/src/api/resources/ticketing/resources/availableActions/client/Client.ts @@ -70,8 +70,8 @@ export class AvailableActions { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/collections/client/Client.ts b/src/api/resources/ticketing/resources/collections/client/Client.ts index 5da668530..f7bf935fd 100644 --- a/src/api/resources/ticketing/resources/collections/client/Client.ts +++ b/src/api/resources/ticketing/resources/collections/client/Client.ts @@ -151,8 +151,8 @@ export class Collections { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -266,8 +266,8 @@ export class Collections { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -377,8 +377,8 @@ export class Collections { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/comments/client/Client.ts b/src/api/resources/ticketing/resources/comments/client/Client.ts index ba3d08b66..4fc019ca4 100644 --- a/src/api/resources/ticketing/resources/comments/client/Client.ts +++ b/src/api/resources/ticketing/resources/comments/client/Client.ts @@ -143,8 +143,8 @@ export class Comments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -239,8 +239,8 @@ export class Comments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -343,8 +343,8 @@ export class Comments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -424,8 +424,8 @@ export class Comments { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/contacts/client/Client.ts b/src/api/resources/ticketing/resources/contacts/client/Client.ts index 2bb1a20b0..2bee0d309 100644 --- a/src/api/resources/ticketing/resources/contacts/client/Client.ts +++ b/src/api/resources/ticketing/resources/contacts/client/Client.ts @@ -131,8 +131,8 @@ export class Contacts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -227,8 +227,8 @@ export class Contacts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -331,8 +331,8 @@ export class Contacts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -412,8 +412,8 @@ export class Contacts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/deleteAccount/client/Client.ts b/src/api/resources/ticketing/resources/deleteAccount/client/Client.ts index 6f2472d2b..b42afe0f5 100644 --- a/src/api/resources/ticketing/resources/deleteAccount/client/Client.ts +++ b/src/api/resources/ticketing/resources/deleteAccount/client/Client.ts @@ -64,8 +64,8 @@ export class DeleteAccount { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/fieldMapping/client/Client.ts b/src/api/resources/ticketing/resources/fieldMapping/client/Client.ts index 20504be27..4740bd81f 100644 --- a/src/api/resources/ticketing/resources/fieldMapping/client/Client.ts +++ b/src/api/resources/ticketing/resources/fieldMapping/client/Client.ts @@ -79,8 +79,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -176,8 +176,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -263,8 +263,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -353,8 +353,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -451,8 +451,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -532,8 +532,8 @@ export class FieldMapping { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/forceResync/client/Client.ts b/src/api/resources/ticketing/resources/forceResync/client/Client.ts index b99d4948e..0c90d7253 100644 --- a/src/api/resources/ticketing/resources/forceResync/client/Client.ts +++ b/src/api/resources/ticketing/resources/forceResync/client/Client.ts @@ -70,8 +70,8 @@ export class ForceResync { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/generateKey/client/Client.ts b/src/api/resources/ticketing/resources/generateKey/client/Client.ts index a97ae54f7..c9503a921 100644 --- a/src/api/resources/ticketing/resources/generateKey/client/Client.ts +++ b/src/api/resources/ticketing/resources/generateKey/client/Client.ts @@ -75,8 +75,8 @@ export class GenerateKey { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/issues/client/Client.ts b/src/api/resources/ticketing/resources/issues/client/Client.ts index bcdf62153..b04652e6a 100644 --- a/src/api/resources/ticketing/resources/issues/client/Client.ts +++ b/src/api/resources/ticketing/resources/issues/client/Client.ts @@ -148,8 +148,8 @@ export class Issues { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -232,8 +232,8 @@ export class Issues { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/issues/client/requests/IssuesListRequest.ts b/src/api/resources/ticketing/resources/issues/client/requests/IssuesListRequest.ts index e03eb3fdb..008627139 100644 --- a/src/api/resources/ticketing/resources/issues/client/requests/IssuesListRequest.ts +++ b/src/api/resources/ticketing/resources/issues/client/requests/IssuesListRequest.ts @@ -55,8 +55,8 @@ export interface IssuesListRequest { /** * Status of the issue. Options: ('ONGOING', 'RESOLVED') * - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ status?: Merge.ticketing.IssuesListRequestStatus; } diff --git a/src/api/resources/ticketing/resources/linkToken/client/Client.ts b/src/api/resources/ticketing/resources/linkToken/client/Client.ts index 6ddcdbcbe..5a88f1112 100644 --- a/src/api/resources/ticketing/resources/linkToken/client/Client.ts +++ b/src/api/resources/ticketing/resources/linkToken/client/Client.ts @@ -78,8 +78,8 @@ export class LinkToken { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/linkedAccounts/client/Client.ts b/src/api/resources/ticketing/resources/linkedAccounts/client/Client.ts index 7a8ac5eea..5f9184659 100644 --- a/src/api/resources/ticketing/resources/linkedAccounts/client/Client.ts +++ b/src/api/resources/ticketing/resources/linkedAccounts/client/Client.ts @@ -143,8 +143,8 @@ export class LinkedAccounts { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts b/src/api/resources/ticketing/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts index 659b62831..7062453ce 100644 --- a/src/api/resources/ticketing/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts +++ b/src/api/resources/ticketing/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts @@ -12,13 +12,13 @@ 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 + * * `hris` - hris + * * `ats` - ats + * * `accounting` - accounting + * * `ticketing` - ticketing + * * `crm` - crm + * * `mktg` - mktg + * * `filestorage` - filestorage */ category?: Merge.ticketing.LinkedAccountsListRequestCategory; /** diff --git a/src/api/resources/ticketing/resources/passthrough/client/Client.ts b/src/api/resources/ticketing/resources/passthrough/client/Client.ts index 4bb156eb0..b30e36218 100644 --- a/src/api/resources/ticketing/resources/passthrough/client/Client.ts +++ b/src/api/resources/ticketing/resources/passthrough/client/Client.ts @@ -76,8 +76,8 @@ export class Passthrough { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/projects/client/Client.ts b/src/api/resources/ticketing/resources/projects/client/Client.ts index 71eeabf24..7721bba9a 100644 --- a/src/api/resources/ticketing/resources/projects/client/Client.ts +++ b/src/api/resources/ticketing/resources/projects/client/Client.ts @@ -126,8 +126,8 @@ export class Projects { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -223,8 +223,8 @@ export class Projects { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -338,8 +338,8 @@ export class Projects { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/regenerateKey/client/Client.ts b/src/api/resources/ticketing/resources/regenerateKey/client/Client.ts index 1050c9428..14ed9eb3d 100644 --- a/src/api/resources/ticketing/resources/regenerateKey/client/Client.ts +++ b/src/api/resources/ticketing/resources/regenerateKey/client/Client.ts @@ -75,8 +75,8 @@ export class RegenerateKey { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/roles/client/Client.ts b/src/api/resources/ticketing/resources/roles/client/Client.ts index 885c15831..44246432d 100644 --- a/src/api/resources/ticketing/resources/roles/client/Client.ts +++ b/src/api/resources/ticketing/resources/roles/client/Client.ts @@ -126,8 +126,8 @@ export class Roles { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -223,8 +223,8 @@ export class Roles { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/scopes/client/Client.ts b/src/api/resources/ticketing/resources/scopes/client/Client.ts index d605768fc..11492a576 100644 --- a/src/api/resources/ticketing/resources/scopes/client/Client.ts +++ b/src/api/resources/ticketing/resources/scopes/client/Client.ts @@ -70,8 +70,8 @@ export class Scopes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -150,8 +150,8 @@ export class Scopes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -258,8 +258,8 @@ export class Scopes { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/syncStatus/client/Client.ts b/src/api/resources/ticketing/resources/syncStatus/client/Client.ts index 1043d0c69..58eacff04 100644 --- a/src/api/resources/ticketing/resources/syncStatus/client/Client.ts +++ b/src/api/resources/ticketing/resources/syncStatus/client/Client.ts @@ -83,8 +83,8 @@ export class SyncStatus { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/tags/client/Client.ts b/src/api/resources/ticketing/resources/tags/client/Client.ts index dddb65101..8264c35fd 100644 --- a/src/api/resources/ticketing/resources/tags/client/Client.ts +++ b/src/api/resources/ticketing/resources/tags/client/Client.ts @@ -126,8 +126,8 @@ export class Tags { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -223,8 +223,8 @@ export class Tags { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/teams/client/Client.ts b/src/api/resources/ticketing/resources/teams/client/Client.ts index a9c80a1bd..baf06680f 100644 --- a/src/api/resources/ticketing/resources/teams/client/Client.ts +++ b/src/api/resources/ticketing/resources/teams/client/Client.ts @@ -126,8 +126,8 @@ export class Teams { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -223,8 +223,8 @@ export class Teams { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/tickets/client/Client.ts b/src/api/resources/ticketing/resources/tickets/client/Client.ts index 76799f0df..107dafde9 100644 --- a/src/api/resources/ticketing/resources/tickets/client/Client.ts +++ b/src/api/resources/ticketing/resources/tickets/client/Client.ts @@ -246,8 +246,8 @@ export class Tickets { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -342,8 +342,8 @@ export class Tickets { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -465,8 +465,8 @@ export class Tickets { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -564,8 +564,8 @@ export class Tickets { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -682,8 +682,8 @@ export class Tickets { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -768,8 +768,8 @@ export class Tickets { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -850,8 +850,8 @@ export class Tickets { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -966,8 +966,8 @@ export class Tickets { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/tickets/client/requests/TicketsListRequest.ts b/src/api/resources/ticketing/resources/tickets/client/requests/TicketsListRequest.ts index 54d53eaaf..de721ca8d 100644 --- a/src/api/resources/ticketing/resources/tickets/client/requests/TicketsListRequest.ts +++ b/src/api/resources/ticketing/resources/tickets/client/requests/TicketsListRequest.ts @@ -92,10 +92,10 @@ export interface TicketsListRequest { /** * If provided, will only return tickets of this priority. * - * - `URGENT` - URGENT - * - `HIGH` - HIGH - * - `NORMAL` - NORMAL - * - `LOW` - LOW + * * `URGENT` - URGENT + * * `HIGH` - HIGH + * * `NORMAL` - NORMAL + * * `LOW` - LOW */ priority?: Merge.ticketing.TicketsListRequestPriority; /** diff --git a/src/api/resources/ticketing/resources/users/client/Client.ts b/src/api/resources/ticketing/resources/users/client/Client.ts index 62f383a76..87729cbbb 100644 --- a/src/api/resources/ticketing/resources/users/client/Client.ts +++ b/src/api/resources/ticketing/resources/users/client/Client.ts @@ -143,8 +143,8 @@ export class Users { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -246,8 +246,8 @@ export class Users { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/resources/webhookReceivers/client/Client.ts b/src/api/resources/ticketing/resources/webhookReceivers/client/Client.ts index 9864cd876..743babcc3 100644 --- a/src/api/resources/ticketing/resources/webhookReceivers/client/Client.ts +++ b/src/api/resources/ticketing/resources/webhookReceivers/client/Client.ts @@ -70,8 +70,8 @@ export class WebhookReceivers { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -158,8 +158,8 @@ export class WebhookReceivers { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@mergeapi/merge-node-client", - "X-Fern-SDK-Version": "1.1.7", - "User-Agent": "@mergeapi/merge-node-client/1.1.7", + "X-Fern-SDK-Version": "1.1.8", + "User-Agent": "@mergeapi/merge-node-client/1.1.8", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/ticketing/types/AccessLevelEnum.ts b/src/api/resources/ticketing/types/AccessLevelEnum.ts index 4f322882c..03d2d3f74 100644 --- a/src/api/resources/ticketing/types/AccessLevelEnum.ts +++ b/src/api/resources/ticketing/types/AccessLevelEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `PRIVATE` - PRIVATE - * - `COMPANY` - COMPANY - * - `PUBLIC` - PUBLIC + * * `PRIVATE` - PRIVATE + * * `COMPANY` - COMPANY + * * `PUBLIC` - PUBLIC */ export type AccessLevelEnum = "PRIVATE" | "COMPANY" | "PUBLIC"; export const AccessLevelEnum = { diff --git a/src/api/resources/ticketing/types/Account.ts b/src/api/resources/ticketing/types/Account.ts index 2c147801a..acf36767c 100644 --- a/src/api/resources/ticketing/types/Account.ts +++ b/src/api/resources/ticketing/types/Account.ts @@ -6,15 +6,12 @@ import * as Merge from "../../../index"; /** * # The Account Object - * * ### Description - * * The `Account` object is used to represent the account that a ticket is associated with. * * The account is a company that may be a customer. This does not represent the company that is receiving the ticket. * * ### Usage Example - * * TODO */ export interface Account { diff --git a/src/api/resources/ticketing/types/AccountDetailsAndActions.ts b/src/api/resources/ticketing/types/AccountDetailsAndActions.ts index 93f19a6bb..c1676ae7d 100644 --- a/src/api/resources/ticketing/types/AccountDetailsAndActions.ts +++ b/src/api/resources/ticketing/types/AccountDetailsAndActions.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/ticketing/types/AccountDetailsAndActionsStatusEnum.ts b/src/api/resources/ticketing/types/AccountDetailsAndActionsStatusEnum.ts index c0020279f..3a923df0f 100644 --- a/src/api/resources/ticketing/types/AccountDetailsAndActionsStatusEnum.ts +++ b/src/api/resources/ticketing/types/AccountDetailsAndActionsStatusEnum.ts @@ -3,10 +3,10 @@ */ /** - * - `COMPLETE` - COMPLETE - * - `INCOMPLETE` - INCOMPLETE - * - `RELINK_NEEDED` - RELINK_NEEDED - * - `IDLE` - IDLE + * * `COMPLETE` - COMPLETE + * * `INCOMPLETE` - INCOMPLETE + * * `RELINK_NEEDED` - RELINK_NEEDED + * * `IDLE` - IDLE */ export type AccountDetailsAndActionsStatusEnum = "COMPLETE" | "INCOMPLETE" | "RELINK_NEEDED" | "IDLE"; export const AccountDetailsAndActionsStatusEnum = { diff --git a/src/api/resources/ticketing/types/Attachment.ts b/src/api/resources/ticketing/types/Attachment.ts index 3a9dd0927..49b5d7938 100644 --- a/src/api/resources/ticketing/types/Attachment.ts +++ b/src/api/resources/ticketing/types/Attachment.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Attachment Object - * * ### Description - * * The `Attachment` object is used to represent an attachment for a ticket. * * ### Usage Example - * * TODO */ export interface Attachment { diff --git a/src/api/resources/ticketing/types/AttachmentRequest.ts b/src/api/resources/ticketing/types/AttachmentRequest.ts index f352b6ca7..594663a3c 100644 --- a/src/api/resources/ticketing/types/AttachmentRequest.ts +++ b/src/api/resources/ticketing/types/AttachmentRequest.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Attachment Object - * * ### Description - * * The `Attachment` object is used to represent an attachment for a ticket. * * ### Usage Example - * * TODO */ export interface AttachmentRequest { diff --git a/src/api/resources/ticketing/types/AuditLogEvent.ts b/src/api/resources/ticketing/types/AuditLogEvent.ts index 0200b0f7a..afd9c3496 100644 --- a/src/api/resources/ticketing/types/AuditLogEvent.ts +++ b/src/api/resources/ticketing/types/AuditLogEvent.ts @@ -13,60 +13,60 @@ export interface AuditLogEvent { /** * 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 + * * `ADMIN` - ADMIN + * * `DEVELOPER` - DEVELOPER + * * `MEMBER` - MEMBER + * * `API` - API + * * `SYSTEM` - SYSTEM + * * `MERGE_TEAM` - MERGE_TEAM */ role: Merge.ticketing.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 - * - `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 + * * `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 + * * `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.ticketing.AuditLogEventEventType; eventDescription: string; diff --git a/src/api/resources/ticketing/types/AuditLogEventEventType.ts b/src/api/resources/ticketing/types/AuditLogEventEventType.ts index 5e815975c..d9483438e 100644 --- a/src/api/resources/ticketing/types/AuditLogEventEventType.ts +++ b/src/api/resources/ticketing/types/AuditLogEventEventType.ts @@ -7,47 +7,47 @@ import * 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 - * - `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 + * * `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 + * * `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.ticketing.EventTypeEnum | string; diff --git a/src/api/resources/ticketing/types/AuditLogEventRole.ts b/src/api/resources/ticketing/types/AuditLogEventRole.ts index 87d0b80e4..6f1995dae 100644 --- a/src/api/resources/ticketing/types/AuditLogEventRole.ts +++ b/src/api/resources/ticketing/types/AuditLogEventRole.ts @@ -7,11 +7,11 @@ import * 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 + * * `ADMIN` - ADMIN + * * `DEVELOPER` - DEVELOPER + * * `MEMBER` - MEMBER + * * `API` - API + * * `SYSTEM` - SYSTEM + * * `MERGE_TEAM` - MERGE_TEAM */ export type AuditLogEventRole = Merge.ticketing.RoleEnum | string; diff --git a/src/api/resources/ticketing/types/AvailableActions.ts b/src/api/resources/ticketing/types/AvailableActions.ts index acabaf529..58054693d 100644 --- a/src/api/resources/ticketing/types/AvailableActions.ts +++ b/src/api/resources/ticketing/types/AvailableActions.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/ticketing/types/CategoriesEnum.ts b/src/api/resources/ticketing/types/CategoriesEnum.ts index a5eb57230..ca8bf9e21 100644 --- a/src/api/resources/ticketing/types/CategoriesEnum.ts +++ b/src/api/resources/ticketing/types/CategoriesEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `hris` - hris - * - `ats` - ats - * - `accounting` - accounting - * - `ticketing` - ticketing - * - `crm` - crm - * - `mktg` - mktg - * - `filestorage` - filestorage + * * `hris` - hris + * * `ats` - ats + * * `accounting` - accounting + * * `ticketing` - ticketing + * * `crm` - crm + * * `mktg` - mktg + * * `filestorage` - filestorage */ export type CategoriesEnum = "hris" | "ats" | "accounting" | "ticketing" | "crm" | "mktg" | "filestorage"; export const CategoriesEnum = { diff --git a/src/api/resources/ticketing/types/CategoryEnum.ts b/src/api/resources/ticketing/types/CategoryEnum.ts index 6d3d6d6ae..94af662f7 100644 --- a/src/api/resources/ticketing/types/CategoryEnum.ts +++ b/src/api/resources/ticketing/types/CategoryEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `hris` - hris - * - `ats` - ats - * - `accounting` - accounting - * - `ticketing` - ticketing - * - `crm` - crm - * - `mktg` - mktg - * - `filestorage` - filestorage + * * `hris` - hris + * * `ats` - ats + * * `accounting` - accounting + * * `ticketing` - ticketing + * * `crm` - crm + * * `mktg` - mktg + * * `filestorage` - filestorage */ export type CategoryEnum = "hris" | "ats" | "accounting" | "ticketing" | "crm" | "mktg" | "filestorage"; export const CategoryEnum = { diff --git a/src/api/resources/ticketing/types/Collection.ts b/src/api/resources/ticketing/types/Collection.ts index 4a08abad4..119d629ba 100644 --- a/src/api/resources/ticketing/types/Collection.ts +++ b/src/api/resources/ticketing/types/Collection.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Collection Object - * * ### Description - * * The `Collection` object is used to represent one or more `Tickets`. There can be a hierarchy of `Collections`, in which a sub-collection belongs to a parent-collection. * * ### Usage Example - * * TODO */ export interface Collection { @@ -30,8 +27,8 @@ export interface Collection { /** * The collection's type. * - * - `LIST` - LIST - * - `PROJECT` - PROJECT + * * `LIST` - LIST + * * `PROJECT` - PROJECT */ collectionType?: Merge.ticketing.CollectionCollectionType; /** The parent collection for this collection. */ @@ -41,9 +38,9 @@ export interface Collection { /** * The level of access a User has to the Collection and its sub-objects. * - * - `PRIVATE` - PRIVATE - * - `COMPANY` - COMPANY - * - `PUBLIC` - PUBLIC + * * `PRIVATE` - PRIVATE + * * `COMPANY` - COMPANY + * * `PUBLIC` - PUBLIC */ accessLevel?: Merge.ticketing.CollectionAccessLevel; fieldMappings?: Record; diff --git a/src/api/resources/ticketing/types/CollectionAccessLevel.ts b/src/api/resources/ticketing/types/CollectionAccessLevel.ts index 66f3bda4d..2869895bb 100644 --- a/src/api/resources/ticketing/types/CollectionAccessLevel.ts +++ b/src/api/resources/ticketing/types/CollectionAccessLevel.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The level of access a User has to the Collection and its sub-objects. * - * - `PRIVATE` - PRIVATE - * - `COMPANY` - COMPANY - * - `PUBLIC` - PUBLIC + * * `PRIVATE` - PRIVATE + * * `COMPANY` - COMPANY + * * `PUBLIC` - PUBLIC */ export type CollectionAccessLevel = Merge.ticketing.AccessLevelEnum | string; diff --git a/src/api/resources/ticketing/types/CollectionCollectionType.ts b/src/api/resources/ticketing/types/CollectionCollectionType.ts index f74d9d9ab..723cd00e0 100644 --- a/src/api/resources/ticketing/types/CollectionCollectionType.ts +++ b/src/api/resources/ticketing/types/CollectionCollectionType.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * The collection's type. * - * - `LIST` - LIST - * - `PROJECT` - PROJECT + * * `LIST` - LIST + * * `PROJECT` - PROJECT */ export type CollectionCollectionType = Merge.ticketing.CollectionTypeEnum | string; diff --git a/src/api/resources/ticketing/types/CollectionTypeEnum.ts b/src/api/resources/ticketing/types/CollectionTypeEnum.ts index add6860b0..6d857aba8 100644 --- a/src/api/resources/ticketing/types/CollectionTypeEnum.ts +++ b/src/api/resources/ticketing/types/CollectionTypeEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `LIST` - LIST - * - `PROJECT` - PROJECT + * * `LIST` - LIST + * * `PROJECT` - PROJECT */ export type CollectionTypeEnum = "LIST" | "PROJECT"; export const CollectionTypeEnum = { diff --git a/src/api/resources/ticketing/types/Comment.ts b/src/api/resources/ticketing/types/Comment.ts index 02d30d564..2159274bd 100644 --- a/src/api/resources/ticketing/types/Comment.ts +++ b/src/api/resources/ticketing/types/Comment.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Comment Object - * * ### Description - * * The `Comment` object is used to represent a comment on a ticket. * * ### Usage Example - * * TODO */ export interface Comment { diff --git a/src/api/resources/ticketing/types/CommentRequest.ts b/src/api/resources/ticketing/types/CommentRequest.ts index 83205d971..dbedb73ce 100644 --- a/src/api/resources/ticketing/types/CommentRequest.ts +++ b/src/api/resources/ticketing/types/CommentRequest.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Comment Object - * * ### Description - * * The `Comment` object is used to represent a comment on a ticket. * * ### Usage Example - * * TODO */ export interface CommentRequest { diff --git a/src/api/resources/ticketing/types/Contact.ts b/src/api/resources/ticketing/types/Contact.ts index 038fa08cb..7c7067c0e 100644 --- a/src/api/resources/ticketing/types/Contact.ts +++ b/src/api/resources/ticketing/types/Contact.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Contact Object - * * ### Description - * * The `Contact` object is used to represent the customer, lead, or external user that a ticket is associated with. * * ### Usage Example - * * TODO */ export interface Contact { diff --git a/src/api/resources/ticketing/types/ContactRequest.ts b/src/api/resources/ticketing/types/ContactRequest.ts index b763a4d00..1d71f965c 100644 --- a/src/api/resources/ticketing/types/ContactRequest.ts +++ b/src/api/resources/ticketing/types/ContactRequest.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Contact Object - * * ### Description - * * The `Contact` object is used to represent the customer, lead, or external user that a ticket is associated with. * * ### Usage Example - * * TODO */ export interface ContactRequest { diff --git a/src/api/resources/ticketing/types/DataPassthroughRequest.ts b/src/api/resources/ticketing/types/DataPassthroughRequest.ts index c24998cac..bf532b864 100644 --- a/src/api/resources/ticketing/types/DataPassthroughRequest.ts +++ b/src/api/resources/ticketing/types/DataPassthroughRequest.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/ticketing/types/EnabledActionsEnum.ts b/src/api/resources/ticketing/types/EnabledActionsEnum.ts index 24418b130..62022883a 100644 --- a/src/api/resources/ticketing/types/EnabledActionsEnum.ts +++ b/src/api/resources/ticketing/types/EnabledActionsEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `READ` - READ - * - `WRITE` - WRITE + * * `READ` - READ + * * `WRITE` - WRITE */ export type EnabledActionsEnum = "READ" | "WRITE"; export const EnabledActionsEnum = { diff --git a/src/api/resources/ticketing/types/EncodingEnum.ts b/src/api/resources/ticketing/types/EncodingEnum.ts index a828347f8..4dfc82b61 100644 --- a/src/api/resources/ticketing/types/EncodingEnum.ts +++ b/src/api/resources/ticketing/types/EncodingEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `RAW` - RAW - * - `BASE64` - BASE64 - * - `GZIP_BASE64` - GZIP_BASE64 + * * `RAW` - RAW + * * `BASE64` - BASE64 + * * `GZIP_BASE64` - GZIP_BASE64 */ export type EncodingEnum = "RAW" | "BASE64" | "GZIP_BASE64"; export const EncodingEnum = { diff --git a/src/api/resources/ticketing/types/EventTypeEnum.ts b/src/api/resources/ticketing/types/EventTypeEnum.ts index 08d0f1ce3..316d8531b 100644 --- a/src/api/resources/ticketing/types/EventTypeEnum.ts +++ b/src/api/resources/ticketing/types/EventTypeEnum.ts @@ -3,48 +3,48 @@ */ /** - * - `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 - * - `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 + * * `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 + * * `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 EventTypeEnum = | "CREATED_REMOTE_PRODUCTION_API_KEY" diff --git a/src/api/resources/ticketing/types/FieldFormatEnum.ts b/src/api/resources/ticketing/types/FieldFormatEnum.ts index 351c87478..eb84a233b 100644 --- a/src/api/resources/ticketing/types/FieldFormatEnum.ts +++ b/src/api/resources/ticketing/types/FieldFormatEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `string` - string - * - `number` - number - * - `date` - date - * - `datetime` - datetime - * - `bool` - bool - * - `list` - list + * * `string` - string + * * `number` - number + * * `date` - date + * * `datetime` - datetime + * * `bool` - bool + * * `list` - list */ export type FieldFormatEnum = "string" | "number" | "date" | "datetime" | "bool" | "list"; export const FieldFormatEnum = { diff --git a/src/api/resources/ticketing/types/FieldTypeEnum.ts b/src/api/resources/ticketing/types/FieldTypeEnum.ts index e235eeea9..fab8ee2a4 100644 --- a/src/api/resources/ticketing/types/FieldTypeEnum.ts +++ b/src/api/resources/ticketing/types/FieldTypeEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `string` - string - * - `number` - number - * - `date` - date - * - `datetime` - datetime - * - `bool` - bool - * - `list` - list + * * `string` - string + * * `number` - number + * * `date` - date + * * `datetime` - datetime + * * `bool` - bool + * * `list` - list */ export type FieldTypeEnum = "string" | "number" | "date" | "datetime" | "bool" | "list"; export const FieldTypeEnum = { diff --git a/src/api/resources/ticketing/types/Issue.ts b/src/api/resources/ticketing/types/Issue.ts index 2a2bd57b1..9981c9446 100644 --- a/src/api/resources/ticketing/types/Issue.ts +++ b/src/api/resources/ticketing/types/Issue.ts @@ -9,8 +9,8 @@ export interface Issue { /** * Status of the issue. Options: ('ONGOING', 'RESOLVED') * - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ status?: Merge.ticketing.IssueStatus; errorDescription: string; diff --git a/src/api/resources/ticketing/types/IssueStatus.ts b/src/api/resources/ticketing/types/IssueStatus.ts index 258475a02..88b063f2d 100644 --- a/src/api/resources/ticketing/types/IssueStatus.ts +++ b/src/api/resources/ticketing/types/IssueStatus.ts @@ -7,7 +7,7 @@ import * as Merge from "../../../index"; /** * Status of the issue. Options: ('ONGOING', 'RESOLVED') * - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ export type IssueStatus = Merge.ticketing.IssueStatusEnum | string; diff --git a/src/api/resources/ticketing/types/IssueStatusEnum.ts b/src/api/resources/ticketing/types/IssueStatusEnum.ts index 56fc6d5fa..324e8bf84 100644 --- a/src/api/resources/ticketing/types/IssueStatusEnum.ts +++ b/src/api/resources/ticketing/types/IssueStatusEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `ONGOING` - ONGOING - * - `RESOLVED` - RESOLVED + * * `ONGOING` - ONGOING + * * `RESOLVED` - RESOLVED */ export type IssueStatusEnum = "ONGOING" | "RESOLVED"; export const IssueStatusEnum = { diff --git a/src/api/resources/ticketing/types/ItemFormatEnum.ts b/src/api/resources/ticketing/types/ItemFormatEnum.ts index 276d6e676..07bf7f260 100644 --- a/src/api/resources/ticketing/types/ItemFormatEnum.ts +++ b/src/api/resources/ticketing/types/ItemFormatEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `string` - uuid - * - `number` - url - * - `date` - email - * - `datetime` - phone - * - `bool` - currency - * - `list` - decimal + * * `string` - uuid + * * `number` - url + * * `date` - email + * * `datetime` - phone + * * `bool` - currency + * * `list` - decimal */ export type ItemFormatEnum = "string" | "number" | "date" | "datetime" | "bool" | "list"; export const ItemFormatEnum = { diff --git a/src/api/resources/ticketing/types/ItemTypeEnum.ts b/src/api/resources/ticketing/types/ItemTypeEnum.ts index 815b6314e..ec6fae79a 100644 --- a/src/api/resources/ticketing/types/ItemTypeEnum.ts +++ b/src/api/resources/ticketing/types/ItemTypeEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `string` - string - * - `number` - number - * - `date` - date - * - `datetime` - datetime - * - `bool` - bool - * - `list` - list + * * `string` - string + * * `number` - number + * * `date` - date + * * `datetime` - datetime + * * `bool` - bool + * * `list` - list */ export type ItemTypeEnum = "string" | "number" | "date" | "datetime" | "bool" | "list"; export const ItemTypeEnum = { diff --git a/src/api/resources/ticketing/types/LanguageEnum.ts b/src/api/resources/ticketing/types/LanguageEnum.ts index 180002115..6c41852c3 100644 --- a/src/api/resources/ticketing/types/LanguageEnum.ts +++ b/src/api/resources/ticketing/types/LanguageEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `en` - en - * - `de` - de + * * `en` - en + * * `de` - de */ export type LanguageEnum = "en" | "de"; export const LanguageEnum = { diff --git a/src/api/resources/ticketing/types/LastSyncResultEnum.ts b/src/api/resources/ticketing/types/LastSyncResultEnum.ts index e14779ef7..434329895 100644 --- a/src/api/resources/ticketing/types/LastSyncResultEnum.ts +++ b/src/api/resources/ticketing/types/LastSyncResultEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `SYNCING` - SYNCING - * - `DONE` - DONE - * - `FAILED` - FAILED - * - `DISABLED` - DISABLED - * - `PAUSED` - PAUSED - * - `PARTIALLY_SYNCED` - PARTIALLY_SYNCED + * * `SYNCING` - SYNCING + * * `DONE` - DONE + * * `FAILED` - FAILED + * * `DISABLED` - DISABLED + * * `PAUSED` - PAUSED + * * `PARTIALLY_SYNCED` - PARTIALLY_SYNCED */ export type LastSyncResultEnum = "SYNCING" | "DONE" | "FAILED" | "DISABLED" | "PAUSED" | "PARTIALLY_SYNCED"; export const LastSyncResultEnum = { diff --git a/src/api/resources/ticketing/types/MethodEnum.ts b/src/api/resources/ticketing/types/MethodEnum.ts index 5d8dae516..0c151e94f 100644 --- a/src/api/resources/ticketing/types/MethodEnum.ts +++ b/src/api/resources/ticketing/types/MethodEnum.ts @@ -3,13 +3,13 @@ */ /** - * - `GET` - GET - * - `OPTIONS` - OPTIONS - * - `HEAD` - HEAD - * - `POST` - POST - * - `PUT` - PUT - * - `PATCH` - PATCH - * - `DELETE` - DELETE + * * `GET` - GET + * * `OPTIONS` - OPTIONS + * * `HEAD` - HEAD + * * `POST` - POST + * * `PUT` - PUT + * * `PATCH` - PATCH + * * `DELETE` - DELETE */ export type MethodEnum = "GET" | "OPTIONS" | "HEAD" | "POST" | "PUT" | "PATCH" | "DELETE"; export const MethodEnum = { diff --git a/src/api/resources/ticketing/types/ModelOperation.ts b/src/api/resources/ticketing/types/ModelOperation.ts index 8126f65f6..d2035b050 100644 --- a/src/api/resources/ticketing/types/ModelOperation.ts +++ b/src/api/resources/ticketing/types/ModelOperation.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/ticketing/types/MultipartFormFieldRequest.ts b/src/api/resources/ticketing/types/MultipartFormFieldRequest.ts index 543f480d8..e6df587fe 100644 --- a/src/api/resources/ticketing/types/MultipartFormFieldRequest.ts +++ b/src/api/resources/ticketing/types/MultipartFormFieldRequest.ts @@ -6,13 +6,10 @@ import * 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 { @@ -23,9 +20,9 @@ export interface MultipartFormFieldRequest { /** * The encoding of the value of `data`. Defaults to `RAW` if not defined. * - * - `RAW` - RAW - * - `BASE64` - BASE64 - * - `GZIP_BASE64` - GZIP_BASE64 + * * `RAW` - RAW + * * `BASE64` - BASE64 + * * `GZIP_BASE64` - GZIP_BASE64 */ encoding?: Merge.ticketing.MultipartFormFieldRequestEncoding; /** The file name of the form field, if the field is for a file. */ diff --git a/src/api/resources/ticketing/types/MultipartFormFieldRequestEncoding.ts b/src/api/resources/ticketing/types/MultipartFormFieldRequestEncoding.ts index b710e66e9..41ca8ffee 100644 --- a/src/api/resources/ticketing/types/MultipartFormFieldRequestEncoding.ts +++ b/src/api/resources/ticketing/types/MultipartFormFieldRequestEncoding.ts @@ -7,8 +7,8 @@ import * 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 + * * `RAW` - RAW + * * `BASE64` - BASE64 + * * `GZIP_BASE64` - GZIP_BASE64 */ export type MultipartFormFieldRequestEncoding = Merge.ticketing.EncodingEnum | string; diff --git a/src/api/resources/ticketing/types/PatchedTicketRequest.ts b/src/api/resources/ticketing/types/PatchedTicketRequest.ts index 16e285f06..6108448b4 100644 --- a/src/api/resources/ticketing/types/PatchedTicketRequest.ts +++ b/src/api/resources/ticketing/types/PatchedTicketRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Ticket Object - * * ### Description - * * The `Ticket` object is used to represent a ticket, issue, task or case. - * * ### Usage Example - * * TODO */ export interface PatchedTicketRequest { @@ -29,10 +25,10 @@ export interface PatchedTicketRequest { /** * The current status of the ticket. * - * - `OPEN` - OPEN - * - `CLOSED` - CLOSED - * - `IN_PROGRESS` - IN_PROGRESS - * - `ON_HOLD` - ON_HOLD + * * `OPEN` - OPEN + * * `CLOSED` - CLOSED + * * `IN_PROGRESS` - IN_PROGRESS + * * `ON_HOLD` - ON_HOLD */ status?: Merge.ticketing.PatchedTicketRequestStatus; /** The ticket’s description. HTML version of description is mapped if supported by the third-party platform. */ @@ -56,10 +52,10 @@ export interface PatchedTicketRequest { /** * The priority or urgency of the Ticket. * - * - `URGENT` - URGENT - * - `HIGH` - HIGH - * - `NORMAL` - NORMAL - * - `LOW` - LOW + * * `URGENT` - URGENT + * * `HIGH` - HIGH + * * `NORMAL` - NORMAL + * * `LOW` - LOW */ priority?: Merge.ticketing.PatchedTicketRequestPriority; integrationParams?: Record; diff --git a/src/api/resources/ticketing/types/PatchedTicketRequestPriority.ts b/src/api/resources/ticketing/types/PatchedTicketRequestPriority.ts index ffa04ed73..ee2254a1c 100644 --- a/src/api/resources/ticketing/types/PatchedTicketRequestPriority.ts +++ b/src/api/resources/ticketing/types/PatchedTicketRequestPriority.ts @@ -7,9 +7,9 @@ import * as Merge from "../../../index"; /** * The priority or urgency of the Ticket. * - * - `URGENT` - URGENT - * - `HIGH` - HIGH - * - `NORMAL` - NORMAL - * - `LOW` - LOW + * * `URGENT` - URGENT + * * `HIGH` - HIGH + * * `NORMAL` - NORMAL + * * `LOW` - LOW */ export type PatchedTicketRequestPriority = Merge.ticketing.PriorityEnum | string; diff --git a/src/api/resources/ticketing/types/PatchedTicketRequestStatus.ts b/src/api/resources/ticketing/types/PatchedTicketRequestStatus.ts index a1d9fdf12..4cae6da34 100644 --- a/src/api/resources/ticketing/types/PatchedTicketRequestStatus.ts +++ b/src/api/resources/ticketing/types/PatchedTicketRequestStatus.ts @@ -7,9 +7,9 @@ import * as Merge from "../../../index"; /** * The current status of the ticket. * - * - `OPEN` - OPEN - * - `CLOSED` - CLOSED - * - `IN_PROGRESS` - IN_PROGRESS - * - `ON_HOLD` - ON_HOLD + * * `OPEN` - OPEN + * * `CLOSED` - CLOSED + * * `IN_PROGRESS` - IN_PROGRESS + * * `ON_HOLD` - ON_HOLD */ export type PatchedTicketRequestStatus = Merge.ticketing.TicketStatusEnum | string; diff --git a/src/api/resources/ticketing/types/PriorityEnum.ts b/src/api/resources/ticketing/types/PriorityEnum.ts index 026e2ea3e..fe3b2f8de 100644 --- a/src/api/resources/ticketing/types/PriorityEnum.ts +++ b/src/api/resources/ticketing/types/PriorityEnum.ts @@ -3,10 +3,10 @@ */ /** - * - `URGENT` - URGENT - * - `HIGH` - HIGH - * - `NORMAL` - NORMAL - * - `LOW` - LOW + * * `URGENT` - URGENT + * * `HIGH` - HIGH + * * `NORMAL` - NORMAL + * * `LOW` - LOW */ export type PriorityEnum = "URGENT" | "HIGH" | "NORMAL" | "LOW"; export const PriorityEnum = { diff --git a/src/api/resources/ticketing/types/Project.ts b/src/api/resources/ticketing/types/Project.ts index 505cd38d6..efe53d5be 100644 --- a/src/api/resources/ticketing/types/Project.ts +++ b/src/api/resources/ticketing/types/Project.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Project Object - * * ### Description - * * Please use the `Collection` model. This model will be fully deprecated on 3/30/2024. * * ### Usage Example - * * TODO */ export interface Project { diff --git a/src/api/resources/ticketing/types/RemoteData.ts b/src/api/resources/ticketing/types/RemoteData.ts index 928b06e7a..ab15ac8ee 100644 --- a/src/api/resources/ticketing/types/RemoteData.ts +++ b/src/api/resources/ticketing/types/RemoteData.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/ticketing/types/RemoteKey.ts b/src/api/resources/ticketing/types/RemoteKey.ts index 878f41321..6f8bf2dbf 100644 --- a/src/api/resources/ticketing/types/RemoteKey.ts +++ b/src/api/resources/ticketing/types/RemoteKey.ts @@ -4,13 +4,10 @@ /** * # 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 { diff --git a/src/api/resources/ticketing/types/RemoteResponse.ts b/src/api/resources/ticketing/types/RemoteResponse.ts index 9aa00defc..7c8bb6607 100644 --- a/src/api/resources/ticketing/types/RemoteResponse.ts +++ b/src/api/resources/ticketing/types/RemoteResponse.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/ticketing/types/RequestFormatEnum.ts b/src/api/resources/ticketing/types/RequestFormatEnum.ts index 6c5f28198..132d6eea5 100644 --- a/src/api/resources/ticketing/types/RequestFormatEnum.ts +++ b/src/api/resources/ticketing/types/RequestFormatEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `JSON` - JSON - * - `XML` - XML - * - `MULTIPART` - MULTIPART + * * `JSON` - JSON + * * `XML` - XML + * * `MULTIPART` - MULTIPART */ export type RequestFormatEnum = "JSON" | "XML" | "MULTIPART"; export const RequestFormatEnum = { diff --git a/src/api/resources/ticketing/types/ResponseTypeEnum.ts b/src/api/resources/ticketing/types/ResponseTypeEnum.ts index e123001a6..5bef2d16e 100644 --- a/src/api/resources/ticketing/types/ResponseTypeEnum.ts +++ b/src/api/resources/ticketing/types/ResponseTypeEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `JSON` - JSON - * - `BASE64_GZIP` - BASE64_GZIP + * * `JSON` - JSON + * * `BASE64_GZIP` - BASE64_GZIP */ export type ResponseTypeEnum = "JSON" | "BASE64_GZIP"; export const ResponseTypeEnum = { diff --git a/src/api/resources/ticketing/types/Role.ts b/src/api/resources/ticketing/types/Role.ts index 1644bc462..bf1d27e7d 100644 --- a/src/api/resources/ticketing/types/Role.ts +++ b/src/api/resources/ticketing/types/Role.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Role Object - * * ### Description - * * The `Role` object is used to represent the set of actions & access that a user with this role is allowed to perform. * * ### Usage Example - * * TODO */ export interface Role { @@ -30,9 +27,9 @@ export interface Role { /** * The level of Ticket access that a User with this Role can perform. * - * - `ALL` - ALL - * - `ASSIGNED_ONLY` - ASSIGNED_ONLY - * - `TEAM_ONLY` - TEAM_ONLY + * * `ALL` - ALL + * * `ASSIGNED_ONLY` - ASSIGNED_ONLY + * * `TEAM_ONLY` - TEAM_ONLY */ ticketAccess?: Merge.ticketing.RoleTicketAccess; /** 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/). */ diff --git a/src/api/resources/ticketing/types/RoleEnum.ts b/src/api/resources/ticketing/types/RoleEnum.ts index d7b99ac49..a3341a6e1 100644 --- a/src/api/resources/ticketing/types/RoleEnum.ts +++ b/src/api/resources/ticketing/types/RoleEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `ADMIN` - ADMIN - * - `DEVELOPER` - DEVELOPER - * - `MEMBER` - MEMBER - * - `API` - API - * - `SYSTEM` - SYSTEM - * - `MERGE_TEAM` - MERGE_TEAM + * * `ADMIN` - ADMIN + * * `DEVELOPER` - DEVELOPER + * * `MEMBER` - MEMBER + * * `API` - API + * * `SYSTEM` - SYSTEM + * * `MERGE_TEAM` - MERGE_TEAM */ export type RoleEnum = "ADMIN" | "DEVELOPER" | "MEMBER" | "API" | "SYSTEM" | "MERGE_TEAM"; export const RoleEnum = { diff --git a/src/api/resources/ticketing/types/RoleTicketAccess.ts b/src/api/resources/ticketing/types/RoleTicketAccess.ts index 2675a456f..3861f3c60 100644 --- a/src/api/resources/ticketing/types/RoleTicketAccess.ts +++ b/src/api/resources/ticketing/types/RoleTicketAccess.ts @@ -7,8 +7,8 @@ import * as Merge from "../../../index"; /** * The level of Ticket access that a User with this Role can perform. * - * - `ALL` - ALL - * - `ASSIGNED_ONLY` - ASSIGNED_ONLY - * - `TEAM_ONLY` - TEAM_ONLY + * * `ALL` - ALL + * * `ASSIGNED_ONLY` - ASSIGNED_ONLY + * * `TEAM_ONLY` - TEAM_ONLY */ export type RoleTicketAccess = string | Merge.ticketing.TicketAccessEnum; diff --git a/src/api/resources/ticketing/types/SelectiveSyncConfigurationsUsageEnum.ts b/src/api/resources/ticketing/types/SelectiveSyncConfigurationsUsageEnum.ts index db8508f89..473a4c15e 100644 --- a/src/api/resources/ticketing/types/SelectiveSyncConfigurationsUsageEnum.ts +++ b/src/api/resources/ticketing/types/SelectiveSyncConfigurationsUsageEnum.ts @@ -3,8 +3,8 @@ */ /** - * - `IN_NEXT_SYNC` - IN_NEXT_SYNC - * - `IN_LAST_SYNC` - IN_LAST_SYNC + * * `IN_NEXT_SYNC` - IN_NEXT_SYNC + * * `IN_LAST_SYNC` - IN_LAST_SYNC */ export type SelectiveSyncConfigurationsUsageEnum = "IN_NEXT_SYNC" | "IN_LAST_SYNC"; export const SelectiveSyncConfigurationsUsageEnum = { diff --git a/src/api/resources/ticketing/types/StatusFd5Enum.ts b/src/api/resources/ticketing/types/StatusFd5Enum.ts index 837436325..e8a7a4eec 100644 --- a/src/api/resources/ticketing/types/StatusFd5Enum.ts +++ b/src/api/resources/ticketing/types/StatusFd5Enum.ts @@ -3,12 +3,12 @@ */ /** - * - `SYNCING` - SYNCING - * - `DONE` - DONE - * - `FAILED` - FAILED - * - `DISABLED` - DISABLED - * - `PAUSED` - PAUSED - * - `PARTIALLY_SYNCED` - PARTIALLY_SYNCED + * * `SYNCING` - SYNCING + * * `DONE` - DONE + * * `FAILED` - FAILED + * * `DISABLED` - DISABLED + * * `PAUSED` - PAUSED + * * `PARTIALLY_SYNCED` - PARTIALLY_SYNCED */ export type StatusFd5Enum = "SYNCING" | "DONE" | "FAILED" | "DISABLED" | "PAUSED" | "PARTIALLY_SYNCED"; export const StatusFd5Enum = { diff --git a/src/api/resources/ticketing/types/SyncStatus.ts b/src/api/resources/ticketing/types/SyncStatus.ts index 2c34c9bae..969514c47 100644 --- a/src/api/resources/ticketing/types/SyncStatus.ts +++ b/src/api/resources/ticketing/types/SyncStatus.ts @@ -6,13 +6,10 @@ import * 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 { diff --git a/src/api/resources/ticketing/types/Tag.ts b/src/api/resources/ticketing/types/Tag.ts index 8a9d1890b..ef2ffa0fc 100644 --- a/src/api/resources/ticketing/types/Tag.ts +++ b/src/api/resources/ticketing/types/Tag.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Tag Object - * * ### Description - * * The `Tag` object is used to represent a tag or label for a ticket. * * ### Usage Example - * * TODO */ export interface Tag { diff --git a/src/api/resources/ticketing/types/Team.ts b/src/api/resources/ticketing/types/Team.ts index 0929270d0..fd8024600 100644 --- a/src/api/resources/ticketing/types/Team.ts +++ b/src/api/resources/ticketing/types/Team.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Team Object - * * ### Description - * * The `Team` object is used to represent one or more `Users` within the company receiving the ticket. * * ### Usage Example - * * TODO */ export interface Team { diff --git a/src/api/resources/ticketing/types/Ticket.ts b/src/api/resources/ticketing/types/Ticket.ts index c2b4bba65..55a23f4ec 100644 --- a/src/api/resources/ticketing/types/Ticket.ts +++ b/src/api/resources/ticketing/types/Ticket.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Ticket Object - * * ### Description - * * The `Ticket` object is used to represent a ticket, issue, task or case. - * * ### Usage Example - * * TODO */ export interface Ticket { @@ -36,10 +32,10 @@ export interface Ticket { /** * The current status of the ticket. * - * - `OPEN` - OPEN - * - `CLOSED` - CLOSED - * - `IN_PROGRESS` - IN_PROGRESS - * - `ON_HOLD` - ON_HOLD + * * `OPEN` - OPEN + * * `CLOSED` - CLOSED + * * `IN_PROGRESS` - IN_PROGRESS + * * `ON_HOLD` - ON_HOLD */ status?: Merge.ticketing.TicketStatus; /** The ticket’s description. HTML version of description is mapped if supported by the third-party platform. */ @@ -70,10 +66,10 @@ export interface Ticket { /** * The priority or urgency of the Ticket. * - * - `URGENT` - URGENT - * - `HIGH` - HIGH - * - `NORMAL` - NORMAL - * - `LOW` - LOW + * * `URGENT` - URGENT + * * `HIGH` - HIGH + * * `NORMAL` - NORMAL + * * `LOW` - LOW */ priority?: Merge.ticketing.TicketPriority; fieldMappings?: Record; diff --git a/src/api/resources/ticketing/types/TicketAccessEnum.ts b/src/api/resources/ticketing/types/TicketAccessEnum.ts index 57e5772f4..3b09df051 100644 --- a/src/api/resources/ticketing/types/TicketAccessEnum.ts +++ b/src/api/resources/ticketing/types/TicketAccessEnum.ts @@ -3,9 +3,9 @@ */ /** - * - `ALL` - ALL - * - `ASSIGNED_ONLY` - ASSIGNED_ONLY - * - `TEAM_ONLY` - TEAM_ONLY + * * `ALL` - ALL + * * `ASSIGNED_ONLY` - ASSIGNED_ONLY + * * `TEAM_ONLY` - TEAM_ONLY */ export type TicketAccessEnum = "ALL" | "ASSIGNED_ONLY" | "TEAM_ONLY"; export const TicketAccessEnum = { diff --git a/src/api/resources/ticketing/types/TicketActionsEnum.ts b/src/api/resources/ticketing/types/TicketActionsEnum.ts index cd2d1f377..cadaa2f80 100644 --- a/src/api/resources/ticketing/types/TicketActionsEnum.ts +++ b/src/api/resources/ticketing/types/TicketActionsEnum.ts @@ -3,12 +3,12 @@ */ /** - * - `VIEW` - VIEW - * - `CREATE` - CREATE - * - `EDIT` - EDIT - * - `DELETE` - DELETE - * - `CLOSE` - CLOSE - * - `ASSIGN` - ASSIGN + * * `VIEW` - VIEW + * * `CREATE` - CREATE + * * `EDIT` - EDIT + * * `DELETE` - DELETE + * * `CLOSE` - CLOSE + * * `ASSIGN` - ASSIGN */ export type TicketActionsEnum = "VIEW" | "CREATE" | "EDIT" | "DELETE" | "CLOSE" | "ASSIGN"; export const TicketActionsEnum = { diff --git a/src/api/resources/ticketing/types/TicketPriority.ts b/src/api/resources/ticketing/types/TicketPriority.ts index a0964d166..5c3b570b3 100644 --- a/src/api/resources/ticketing/types/TicketPriority.ts +++ b/src/api/resources/ticketing/types/TicketPriority.ts @@ -7,9 +7,9 @@ import * as Merge from "../../../index"; /** * The priority or urgency of the Ticket. * - * - `URGENT` - URGENT - * - `HIGH` - HIGH - * - `NORMAL` - NORMAL - * - `LOW` - LOW + * * `URGENT` - URGENT + * * `HIGH` - HIGH + * * `NORMAL` - NORMAL + * * `LOW` - LOW */ export type TicketPriority = Merge.ticketing.PriorityEnum | string; diff --git a/src/api/resources/ticketing/types/TicketRequest.ts b/src/api/resources/ticketing/types/TicketRequest.ts index 00bc12e20..430220dc1 100644 --- a/src/api/resources/ticketing/types/TicketRequest.ts +++ b/src/api/resources/ticketing/types/TicketRequest.ts @@ -6,13 +6,9 @@ import * as Merge from "../../../index"; /** * # The Ticket Object - * * ### Description - * * The `Ticket` object is used to represent a ticket, issue, task or case. - * * ### Usage Example - * * TODO */ export interface TicketRequest { @@ -29,10 +25,10 @@ export interface TicketRequest { /** * The current status of the ticket. * - * - `OPEN` - OPEN - * - `CLOSED` - CLOSED - * - `IN_PROGRESS` - IN_PROGRESS - * - `ON_HOLD` - ON_HOLD + * * `OPEN` - OPEN + * * `CLOSED` - CLOSED + * * `IN_PROGRESS` - IN_PROGRESS + * * `ON_HOLD` - ON_HOLD */ status?: Merge.ticketing.TicketRequestStatus; /** The ticket’s description. HTML version of description is mapped if supported by the third-party platform. */ @@ -57,10 +53,10 @@ export interface TicketRequest { /** * The priority or urgency of the Ticket. * - * - `URGENT` - URGENT - * - `HIGH` - HIGH - * - `NORMAL` - NORMAL - * - `LOW` - LOW + * * `URGENT` - URGENT + * * `HIGH` - HIGH + * * `NORMAL` - NORMAL + * * `LOW` - LOW */ priority?: Merge.ticketing.TicketRequestPriority; integrationParams?: Record; diff --git a/src/api/resources/ticketing/types/TicketRequestPriority.ts b/src/api/resources/ticketing/types/TicketRequestPriority.ts index 31696ed2e..dede708ad 100644 --- a/src/api/resources/ticketing/types/TicketRequestPriority.ts +++ b/src/api/resources/ticketing/types/TicketRequestPriority.ts @@ -7,9 +7,9 @@ import * as Merge from "../../../index"; /** * The priority or urgency of the Ticket. * - * - `URGENT` - URGENT - * - `HIGH` - HIGH - * - `NORMAL` - NORMAL - * - `LOW` - LOW + * * `URGENT` - URGENT + * * `HIGH` - HIGH + * * `NORMAL` - NORMAL + * * `LOW` - LOW */ export type TicketRequestPriority = Merge.ticketing.PriorityEnum | string; diff --git a/src/api/resources/ticketing/types/TicketRequestStatus.ts b/src/api/resources/ticketing/types/TicketRequestStatus.ts index 2c4d97b4f..bcb9db7e1 100644 --- a/src/api/resources/ticketing/types/TicketRequestStatus.ts +++ b/src/api/resources/ticketing/types/TicketRequestStatus.ts @@ -7,9 +7,9 @@ import * as Merge from "../../../index"; /** * The current status of the ticket. * - * - `OPEN` - OPEN - * - `CLOSED` - CLOSED - * - `IN_PROGRESS` - IN_PROGRESS - * - `ON_HOLD` - ON_HOLD + * * `OPEN` - OPEN + * * `CLOSED` - CLOSED + * * `IN_PROGRESS` - IN_PROGRESS + * * `ON_HOLD` - ON_HOLD */ export type TicketRequestStatus = Merge.ticketing.TicketStatusEnum | string; diff --git a/src/api/resources/ticketing/types/TicketStatus.ts b/src/api/resources/ticketing/types/TicketStatus.ts index 5c84924d4..f411d5ba1 100644 --- a/src/api/resources/ticketing/types/TicketStatus.ts +++ b/src/api/resources/ticketing/types/TicketStatus.ts @@ -7,9 +7,9 @@ import * as Merge from "../../../index"; /** * The current status of the ticket. * - * - `OPEN` - OPEN - * - `CLOSED` - CLOSED - * - `IN_PROGRESS` - IN_PROGRESS - * - `ON_HOLD` - ON_HOLD + * * `OPEN` - OPEN + * * `CLOSED` - CLOSED + * * `IN_PROGRESS` - IN_PROGRESS + * * `ON_HOLD` - ON_HOLD */ export type TicketStatus = Merge.ticketing.TicketStatusEnum | string; diff --git a/src/api/resources/ticketing/types/TicketStatusEnum.ts b/src/api/resources/ticketing/types/TicketStatusEnum.ts index 856760f29..ed731e60a 100644 --- a/src/api/resources/ticketing/types/TicketStatusEnum.ts +++ b/src/api/resources/ticketing/types/TicketStatusEnum.ts @@ -3,10 +3,10 @@ */ /** - * - `OPEN` - OPEN - * - `CLOSED` - CLOSED - * - `IN_PROGRESS` - IN_PROGRESS - * - `ON_HOLD` - ON_HOLD + * * `OPEN` - OPEN + * * `CLOSED` - CLOSED + * * `IN_PROGRESS` - IN_PROGRESS + * * `ON_HOLD` - ON_HOLD */ export type TicketStatusEnum = "OPEN" | "CLOSED" | "IN_PROGRESS" | "ON_HOLD"; export const TicketStatusEnum = { diff --git a/src/api/resources/ticketing/types/User.ts b/src/api/resources/ticketing/types/User.ts index 32a397daa..bc92663bf 100644 --- a/src/api/resources/ticketing/types/User.ts +++ b/src/api/resources/ticketing/types/User.ts @@ -6,14 +6,11 @@ import * as Merge from "../../../index"; /** * # The User Object - * * ### Description - * * The `User` object is used to represent a user with a login to the ticketing system. * Users are either assignees who are directly responsible or a viewer on a `Ticket`/ `Collection`. * * ### Usage Example - * * TODO */ export interface User { diff --git a/src/api/resources/ticketing/types/Viewer.ts b/src/api/resources/ticketing/types/Viewer.ts index cf0ee6b99..c753bc50a 100644 --- a/src/api/resources/ticketing/types/Viewer.ts +++ b/src/api/resources/ticketing/types/Viewer.ts @@ -6,13 +6,10 @@ import * as Merge from "../../../index"; /** * # The Viewer Object - * * ### Description - * * The `Viewer` object is used to represent a User or Team within a company. * * ### Usage Example - * * TODO */ export interface Viewer { diff --git a/src/serialization/resources/accounting/types/EmployeeCompany.ts b/src/serialization/resources/accounting/types/EmployeeCompany.ts index 7a0508c42..a564391bd 100644 --- a/src/serialization/resources/accounting/types/EmployeeCompany.ts +++ b/src/serialization/resources/accounting/types/EmployeeCompany.ts @@ -5,12 +5,13 @@ import * as serializers from "../../../index"; import * as Merge from "../../../../api/index"; import * as core from "../../../../core"; +import { CompanyInfo } from "./CompanyInfo"; export const EmployeeCompany: core.serialization.Schema< serializers.accounting.EmployeeCompany.Raw, Merge.accounting.EmployeeCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), core.serialization.unknown()]); +> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); export declare namespace EmployeeCompany { - export type Raw = string | unknown; + export type Raw = string | CompanyInfo.Raw; } diff --git a/src/serialization/resources/index.ts b/src/serialization/resources/index.ts index 822a7f79d..2be011c93 100644 --- a/src/serialization/resources/index.ts +++ b/src/serialization/resources/index.ts @@ -1,6 +1,6 @@ -export * as filestorage from "./filestorage"; export * as ats from "./ats"; export * as crm from "./crm"; +export * as filestorage from "./filestorage"; export * as hris from "./hris"; export * as ticketing from "./ticketing"; export * as accounting from "./accounting"; diff --git a/src/version.ts b/src/version.ts index a98587f7e..ce7790963 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const SDK_VERSION = "1.1.7"; +export const SDK_VERSION = "1.1.8"; diff --git a/yarn.lock b/yarn.lock index bf3126fff..6943e316f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -10,114 +10,114 @@ "@jridgewell/gen-mapping" "^0.3.5" "@jridgewell/trace-mapping" "^0.3.24" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.26.2": - version "7.26.2" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85" - integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.27.1": + version "7.27.1" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz#200f715e66d52a23b221a9435534a91cc13ad5be" + integrity sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg== dependencies: - "@babel/helper-validator-identifier" "^7.25.9" + "@babel/helper-validator-identifier" "^7.27.1" js-tokens "^4.0.0" - picocolors "^1.0.0" + picocolors "^1.1.1" -"@babel/compat-data@^7.26.8": - version "7.26.8" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.8.tgz#821c1d35641c355284d4a870b8a4a7b0c141e367" - integrity sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ== +"@babel/compat-data@^7.27.2": + version "7.27.2" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.27.2.tgz#4183f9e642fd84e74e3eea7ffa93a412e3b102c9" + integrity sha512-TUtMJYRPyUb/9aU8f3K0mjmjf6M9N5Woshn2CS6nqJSeJtTtQcpLUXjGt9vbF8ZGff0El99sWkLgzwW3VXnxZQ== "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.23.9": - version "7.26.10" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.10.tgz#5c876f83c8c4dcb233ee4b670c0606f2ac3000f9" - integrity sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ== + version "7.27.1" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.27.1.tgz#89de51e86bd12246003e3524704c49541b16c3e6" + integrity sha512-IaaGWsQqfsQWVLqMn9OB92MNN7zukfVA4s7KKAI0KfrrDsZ0yhi5uV4baBuLuN7n3vsZpwP8asPPcVwApxvjBQ== dependencies: "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.26.2" - "@babel/generator" "^7.26.10" - "@babel/helper-compilation-targets" "^7.26.5" - "@babel/helper-module-transforms" "^7.26.0" - "@babel/helpers" "^7.26.10" - "@babel/parser" "^7.26.10" - "@babel/template" "^7.26.9" - "@babel/traverse" "^7.26.10" - "@babel/types" "^7.26.10" + "@babel/code-frame" "^7.27.1" + "@babel/generator" "^7.27.1" + "@babel/helper-compilation-targets" "^7.27.1" + "@babel/helper-module-transforms" "^7.27.1" + "@babel/helpers" "^7.27.1" + "@babel/parser" "^7.27.1" + "@babel/template" "^7.27.1" + "@babel/traverse" "^7.27.1" + "@babel/types" "^7.27.1" convert-source-map "^2.0.0" debug "^4.1.0" gensync "^1.0.0-beta.2" json5 "^2.2.3" semver "^6.3.1" -"@babel/generator@^7.26.10", "@babel/generator@^7.27.0", "@babel/generator@^7.7.2": - version "7.27.0" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.27.0.tgz#764382b5392e5b9aff93cadb190d0745866cbc2c" - integrity sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw== +"@babel/generator@^7.27.1", "@babel/generator@^7.7.2": + version "7.27.1" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.27.1.tgz#862d4fad858f7208edd487c28b58144036b76230" + integrity sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w== dependencies: - "@babel/parser" "^7.27.0" - "@babel/types" "^7.27.0" + "@babel/parser" "^7.27.1" + "@babel/types" "^7.27.1" "@jridgewell/gen-mapping" "^0.3.5" "@jridgewell/trace-mapping" "^0.3.25" jsesc "^3.0.2" -"@babel/helper-compilation-targets@^7.26.5": - version "7.27.0" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.0.tgz#de0c753b1cd1d9ab55d473c5a5cf7170f0a81880" - integrity sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA== +"@babel/helper-compilation-targets@^7.27.1": + version "7.27.2" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz#46a0f6efab808d51d29ce96858dd10ce8732733d" + integrity sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ== dependencies: - "@babel/compat-data" "^7.26.8" - "@babel/helper-validator-option" "^7.25.9" + "@babel/compat-data" "^7.27.2" + "@babel/helper-validator-option" "^7.27.1" browserslist "^4.24.0" lru-cache "^5.1.1" semver "^6.3.1" -"@babel/helper-module-imports@^7.25.9": - version "7.25.9" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715" - integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw== +"@babel/helper-module-imports@^7.27.1": + version "7.27.1" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz#7ef769a323e2655e126673bb6d2d6913bbead204" + integrity sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w== dependencies: - "@babel/traverse" "^7.25.9" - "@babel/types" "^7.25.9" + "@babel/traverse" "^7.27.1" + "@babel/types" "^7.27.1" -"@babel/helper-module-transforms@^7.26.0": - version "7.26.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz#8ce54ec9d592695e58d84cd884b7b5c6a2fdeeae" - integrity sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw== +"@babel/helper-module-transforms@^7.27.1": + version "7.27.1" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.27.1.tgz#e1663b8b71d2de948da5c4fb2a20ca4f3ec27a6f" + integrity sha512-9yHn519/8KvTU5BjTVEEeIM3w9/2yXNKoD82JifINImhpKkARMJKPP59kLo+BafpdN5zgNeIcS4jsGDmd3l58g== dependencies: - "@babel/helper-module-imports" "^7.25.9" - "@babel/helper-validator-identifier" "^7.25.9" - "@babel/traverse" "^7.25.9" + "@babel/helper-module-imports" "^7.27.1" + "@babel/helper-validator-identifier" "^7.27.1" + "@babel/traverse" "^7.27.1" -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.25.9", "@babel/helper-plugin-utils@^7.8.0": - version "7.26.5" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz#18580d00c9934117ad719392c4f6585c9333cc35" - integrity sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg== +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.27.1", "@babel/helper-plugin-utils@^7.8.0": + version "7.27.1" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz#ddb2f876534ff8013e6c2b299bf4d39b3c51d44c" + integrity sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw== -"@babel/helper-string-parser@^7.25.9": - version "7.25.9" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz#1aabb72ee72ed35789b4bbcad3ca2862ce614e8c" - integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA== +"@babel/helper-string-parser@^7.27.1": + version "7.27.1" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz#54da796097ab19ce67ed9f88b47bb2ec49367687" + integrity sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA== -"@babel/helper-validator-identifier@^7.25.9": - version "7.25.9" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7" - integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ== +"@babel/helper-validator-identifier@^7.27.1": + version "7.27.1" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz#a7054dcc145a967dd4dc8fee845a57c1316c9df8" + integrity sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow== -"@babel/helper-validator-option@^7.25.9": - version "7.25.9" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz#86e45bd8a49ab7e03f276577f96179653d41da72" - integrity sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw== +"@babel/helper-validator-option@^7.27.1": + version "7.27.1" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz#fa52f5b1e7db1ab049445b421c4471303897702f" + integrity sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg== -"@babel/helpers@^7.26.10": - version "7.27.0" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.27.0.tgz#53d156098defa8243eab0f32fa17589075a1b808" - integrity sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg== +"@babel/helpers@^7.27.1": + version "7.27.1" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.27.1.tgz#ffc27013038607cdba3288e692c3611c06a18aa4" + integrity sha512-FCvFTm0sWV8Fxhpp2McP5/W53GPllQ9QeQ7SiqGWjMf/LVG07lFa5+pgK05IRhVwtvafT22KF+ZSnM9I545CvQ== dependencies: - "@babel/template" "^7.27.0" - "@babel/types" "^7.27.0" + "@babel/template" "^7.27.1" + "@babel/types" "^7.27.1" -"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.26.10", "@babel/parser@^7.27.0": - version "7.27.0" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.27.0.tgz#3d7d6ee268e41d2600091cbd4e145ffee85a44ec" - integrity sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg== +"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.27.1", "@babel/parser@^7.27.2": + version "7.27.2" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.27.2.tgz#577518bedb17a2ce4212afd052e01f7df0941127" + integrity sha512-QYLs8299NA7WM/bZAdp+CviYYkVoYXlDW2rzliy3chxd1PQjej7JORuMJDJXJUb9g0TT+B99EwaVLKmX+sPXWw== dependencies: - "@babel/types" "^7.27.0" + "@babel/types" "^7.27.1" "@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4" @@ -148,11 +148,11 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-import-attributes@^7.24.7": - version "7.26.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz#3b1412847699eea739b4f2602c74ce36f6b0b0f7" - integrity sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A== + version "7.27.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz#34c017d54496f9b11b61474e7ea3dfd5563ffe07" + integrity sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" "@babel/plugin-syntax-import-meta@^7.10.4": version "7.10.4" @@ -169,11 +169,11 @@ "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-jsx@^7.7.2": - version "7.25.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz#a34313a178ea56f1951599b929c1ceacee719290" - integrity sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA== + version "7.27.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz#2f9beb5eff30fa507c5532d107daac7b888fa34c" + integrity sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w== dependencies: - "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-plugin-utils" "^7.27.1" "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": version "7.10.4" @@ -232,41 +232,41 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-typescript@^7.7.2": - version "7.25.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz#67dda2b74da43727cf21d46cf9afef23f4365399" - integrity sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ== - dependencies: - "@babel/helper-plugin-utils" "^7.25.9" - -"@babel/template@^7.26.9", "@babel/template@^7.27.0", "@babel/template@^7.3.3": - version "7.27.0" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.27.0.tgz#b253e5406cc1df1c57dcd18f11760c2dbf40c0b4" - integrity sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA== - dependencies: - "@babel/code-frame" "^7.26.2" - "@babel/parser" "^7.27.0" - "@babel/types" "^7.27.0" - -"@babel/traverse@^7.25.9", "@babel/traverse@^7.26.10": - version "7.27.0" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.27.0.tgz#11d7e644779e166c0442f9a07274d02cd91d4a70" - integrity sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA== - dependencies: - "@babel/code-frame" "^7.26.2" - "@babel/generator" "^7.27.0" - "@babel/parser" "^7.27.0" - "@babel/template" "^7.27.0" - "@babel/types" "^7.27.0" + version "7.27.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz#5147d29066a793450f220c63fa3a9431b7e6dd18" + integrity sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ== + dependencies: + "@babel/helper-plugin-utils" "^7.27.1" + +"@babel/template@^7.27.1", "@babel/template@^7.3.3": + version "7.27.2" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.27.2.tgz#fa78ceed3c4e7b63ebf6cb39e5852fca45f6809d" + integrity sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw== + dependencies: + "@babel/code-frame" "^7.27.1" + "@babel/parser" "^7.27.2" + "@babel/types" "^7.27.1" + +"@babel/traverse@^7.27.1": + version "7.27.1" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.27.1.tgz#4db772902b133bbddd1c4f7a7ee47761c1b9f291" + integrity sha512-ZCYtZciz1IWJB4U61UPu4KEaqyfj+r5T1Q5mqPo+IBpcG9kHv30Z0aD8LXPgC1trYa6rK0orRyAhqUgk4MjmEg== + dependencies: + "@babel/code-frame" "^7.27.1" + "@babel/generator" "^7.27.1" + "@babel/parser" "^7.27.1" + "@babel/template" "^7.27.1" + "@babel/types" "^7.27.1" debug "^4.3.1" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.25.9", "@babel/types@^7.26.10", "@babel/types@^7.27.0", "@babel/types@^7.3.3": - version "7.27.0" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.27.0.tgz#ef9acb6b06c3173f6632d993ecb6d4ae470b4559" - integrity sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg== +"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.27.1", "@babel/types@^7.3.3": + version "7.27.1" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.27.1.tgz#9defc53c16fc899e46941fc6901a9eea1c9d8560" + integrity sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q== dependencies: - "@babel/helper-string-parser" "^7.25.9" - "@babel/helper-validator-identifier" "^7.25.9" + "@babel/helper-string-parser" "^7.27.1" + "@babel/helper-validator-identifier" "^7.27.1" "@bcoe/v8-coverage@^0.2.3": version "0.2.3" @@ -642,7 +642,7 @@ "@types/tough-cookie" "*" parse5 "^7.0.0" -"@types/json-schema@*", "@types/json-schema@^7.0.9": +"@types/json-schema@*", "@types/json-schema@^7.0.15", "@types/json-schema@^7.0.9": version "7.0.15" resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== @@ -656,23 +656,23 @@ form-data "^4.0.0" "@types/node@*": - version "22.14.1" - resolved "https://registry.yarnpkg.com/@types/node/-/node-22.14.1.tgz#53b54585cec81c21eee3697521e31312d6ca1e6f" - integrity sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw== + version "22.15.19" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.15.19.tgz#ba9f321675243af0456d607fa82a4865931e0cef" + integrity sha512-3vMNr4TzNQyjHcRZadojpRaD9Ofr6LsonZAoQ+HMUa/9ORTPoxVIw0e0mpqWpdjj8xybyCM+oKOUH2vwFu/oEw== dependencies: undici-types "~6.21.0" "@types/node@^18.19.70": - version "18.19.86" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.86.tgz#a7e1785289c343155578b9d84a0e3e924deb948b" - integrity sha512-fifKayi175wLyKyc5qUfyENhQ1dCNI1UNjp653d8kuYcPQN5JhX3dGuP/XmvPTg/xRBn1VTLpbmi+H/Mr7tLfQ== + version "18.19.101" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.101.tgz#6c08ca62bdbc745b60b885f3c38f571ea145ccff" + integrity sha512-Ykg7fcE3+cOQlLUv2Ds3zil6DVjriGQaSN/kEpl5HQ3DIGM6W0F2n9+GkWV4bRt7KjLymgzNdTnSKCbFUUJ7Kw== dependencies: undici-types "~5.26.4" "@types/qs@^6.9.17": - version "6.9.18" - resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.18.tgz#877292caa91f7c1b213032b34626505b746624c2" - integrity sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA== + version "6.14.0" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.14.0.tgz#d8b60cecf62f2db0fb68e5e006077b9178b85de5" + integrity sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ== "@types/readable-stream@^4.0.18": version "4.0.18" @@ -867,7 +867,7 @@ acorn-walk@^8.0.2: dependencies: acorn "^8.11.0" -acorn@^8.1.0, acorn@^8.11.0, acorn@^8.14.0, acorn@^8.8.1, acorn@^8.8.2: +acorn@^8.1.0, acorn@^8.11.0, acorn@^8.14.0, acorn@^8.8.1: version "8.14.1" resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.1.tgz#721d5dc10f7d5b5609a891773d47731796935dfb" integrity sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg== @@ -1048,14 +1048,14 @@ braces@^3.0.3: fill-range "^7.1.1" browserslist@^4.24.0: - version "4.24.4" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.4.tgz#c6b2865a3f08bcb860a0e827389003b9fe686e4b" - integrity sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A== + version "4.24.5" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.5.tgz#aa0f5b8560fe81fde84c6dcb38f759bafba0e11b" + integrity sha512-FDToo4Wo82hIdgc1CQ+NQD0hEhmpPjrZ3hiUgwgOG6IuTdlpr8jdjyG24P6cNP1yJpTLzS5OcGgSw0xmDU1/Tw== dependencies: - caniuse-lite "^1.0.30001688" - electron-to-chromium "^1.5.73" + caniuse-lite "^1.0.30001716" + electron-to-chromium "^1.5.149" node-releases "^2.0.19" - update-browserslist-db "^1.1.1" + update-browserslist-db "^1.1.3" bs-logger@^0.2.6: version "0.2.6" @@ -1115,10 +1115,10 @@ camelcase@^6.2.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== -caniuse-lite@^1.0.30001688: - version "1.0.30001713" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001713.tgz#6b33a8857e6c7dcb41a0caa2dd0f0489c823a52d" - integrity sha512-wCIWIg+A4Xr7NfhTuHdX+/FKh3+Op3LBbSp2N5Pfx6T/LhdQy3GTyoTg48BReaW/MyMNZAkTadsBtai3ldWK0Q== +caniuse-lite@^1.0.30001716: + version "1.0.30001718" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001718.tgz#dae13a9c80d517c30c6197515a96131c194d8f82" + integrity sha512-AflseV1ahcSunK53NfEs9gFWgOEmzr0f+kaMFA4xiLZlr9Hzt7HxcSpIFcnNCUkz6R6dWKa54rUz3HUmI3nVcw== chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0: version "4.1.2" @@ -1250,9 +1250,9 @@ data-urls@^3.0.2: whatwg-url "^11.0.0" debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1: - version "4.4.0" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a" - integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA== + version "4.4.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.1.tgz#e5a8bc6cbc4c6cd3e64308b0693a3d4fa550189b" + integrity sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ== dependencies: ms "^2.1.3" @@ -1262,9 +1262,9 @@ decimal.js@^10.4.2: integrity sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw== dedent@^1.0.0: - version "1.5.3" - resolved "https://registry.yarnpkg.com/dedent/-/dedent-1.5.3.tgz#99aee19eb9bae55a67327717b6e848d0bf777e5a" - integrity sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ== + version "1.6.0" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-1.6.0.tgz#79d52d6389b1ffa67d2bcef59ba51847a9d503b2" + integrity sha512-F1Z+5UCFpmQUzJa11agbyPVMbpgT/qA3/SKyJ1jyBgm7dUcUEa8v9JwDkerSQXfakBwFljIxhOJqGkjUwZ9FSA== deepmerge@^4.2.2: version "4.3.1" @@ -1309,10 +1309,10 @@ ejs@^3.1.10: dependencies: jake "^10.8.5" -electron-to-chromium@^1.5.73: - version "1.5.137" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.137.tgz#53a7fef3ea9f7eb5fcf704454050ff930c43ed92" - integrity sha512-/QSJaU2JyIuTbbABAo/crOs+SuAZLS+fVVS10PVrIT9hrRkmZl8Hb0xPSkKRUUWHQtYzXHpQUW3Dy5hwMzGZkA== +electron-to-chromium@^1.5.149: + version "1.5.155" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.155.tgz#809dd0ae9ae1db87c358e0c0c17c09a2ffc432d1" + integrity sha512-ps5KcGGmwL8VaeJlvlDlu4fORQpv3+GIcF5I3f9tUKUlJ/wsysh6HU8P5L1XWRYeXfA0oJd4PyM8ds8zTFf6Ng== emittery@^0.13.1: version "0.13.1" @@ -1332,10 +1332,10 @@ enhanced-resolve@^5.0.0, enhanced-resolve@^5.17.1: graceful-fs "^4.2.4" tapable "^2.2.0" -entities@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" - integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== +entities@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-6.0.0.tgz#09c9e29cb79b0a6459a9b9db9efb418ac5bb8e51" + integrity sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw== error-ex@^1.3.1: version "1.3.2" @@ -1355,9 +1355,9 @@ es-errors@^1.3.0: integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== es-module-lexer@^1.2.1: - version "1.6.0" - resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.6.0.tgz#da49f587fd9e68ee2404fe4e256c0c7d3a81be21" - integrity sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ== + version "1.7.0" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.7.0.tgz#9159601561880a85f2734560a9099b2c31e5372a" + integrity sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA== es-object-atoms@^1.0.0, es-object-atoms@^1.1.1: version "1.1.1" @@ -2487,11 +2487,11 @@ parse-json@^5.2.0: lines-and-columns "^1.1.6" parse5@^7.0.0, parse5@^7.1.1: - version "7.2.1" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.2.1.tgz#8928f55915e6125f430cc44309765bf17556a33a" - integrity sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ== + version "7.3.0" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.3.0.tgz#d7e224fa72399c7a175099f45fc2ad024b05ec05" + integrity sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw== dependencies: - entities "^4.5.0" + entities "^6.0.0" path-exists@^4.0.0: version "4.0.0" @@ -2513,7 +2513,7 @@ path-parse@^1.0.7: resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== -picocolors@^1.0.0, picocolors@^1.1.1: +picocolors@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== @@ -2677,10 +2677,10 @@ saxes@^6.0.0: dependencies: xmlchars "^2.2.0" -schema-utils@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.3.0.tgz#3b669f04f71ff2dfb5aba7ce2d5a9d79b35622c0" - integrity sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g== +schema-utils@^4.3.0, schema-utils@^4.3.2: + version "4.3.2" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.3.2.tgz#0c10878bf4a73fd2b1dfd14b9462b26788c806ae" + integrity sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ== dependencies: "@types/json-schema" "^7.0.9" ajv "^8.9.0" @@ -2692,10 +2692,10 @@ semver@^6.3.0, semver@^6.3.1: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.4, semver@^7.5.3, semver@^7.5.4, semver@^7.7.1: - version "7.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.1.tgz#abd5098d82b18c6c81f6074ff2647fd3e7220c9f" - integrity sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA== +semver@^7.3.4, semver@^7.5.3, semver@^7.5.4, semver@^7.7.2: + version "7.7.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.2.tgz#67d99fdcd35cec21e6f8b87a7fd515a33f982b58" + integrity sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA== serialize-javascript@^6.0.2: version "6.0.2" @@ -2880,9 +2880,9 @@ symbol-tree@^3.2.4: integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== tapable@^2.1.1, tapable@^2.2.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" - integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== + version "2.2.2" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.2.tgz#ab4984340d30cb9989a490032f086dbb8b56d872" + integrity sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg== terser-webpack-plugin@^5.3.11: version "5.3.14" @@ -2896,12 +2896,12 @@ terser-webpack-plugin@^5.3.11: terser "^5.31.1" terser@^5.31.1: - version "5.39.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.39.0.tgz#0e82033ed57b3ddf1f96708d123cca717d86ca3a" - integrity sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw== + version "5.39.2" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.39.2.tgz#5a1626030724a672e2e5b5c9cd9070308c20e8f9" + integrity sha512-yEPUmWve+VA78bI71BW70Dh0TuV4HHd+I5SHOAfS1+QBOmvmCiiffgjR8ryyEd3KIfvPGFqoADt8LdQ6XpXIvg== dependencies: "@jridgewell/source-map" "^0.3.3" - acorn "^8.8.2" + acorn "^8.14.0" commander "^2.20.0" source-map-support "~0.5.20" @@ -2949,9 +2949,9 @@ tr46@~0.0.3: integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== ts-jest@^29.1.1: - version "29.3.2" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.3.2.tgz#0576cdf0a507f811fe73dcd16d135ce89f8156cb" - integrity sha512-bJJkrWc6PjFVz5g2DGCNUo8z7oFEYaz1xP1NpeDU7KNLMWPpEyV8Chbpkn8xjzgRDpQhnGMyvyldoL7h8JXyug== + version "29.3.4" + resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.3.4.tgz#9354472aceae1d3867a80e8e02014ea5901aee41" + integrity sha512-Iqbrm8IXOmV+ggWHOTEbjwyCf2xZlUMv5npExksXohL+tk8va4Fjhb+X2+Rt9NBmgO7bJ8WpnMLOwih/DnMlFA== dependencies: bs-logger "^0.2.6" ejs "^3.1.10" @@ -2960,8 +2960,8 @@ ts-jest@^29.1.1: json5 "^2.2.3" lodash.memoize "^4.1.2" make-error "^1.3.6" - semver "^7.7.1" - type-fest "^4.39.1" + semver "^7.7.2" + type-fest "^4.41.0" yargs-parser "^21.1.1" ts-loader@^9.5.1: @@ -2985,10 +2985,10 @@ type-fest@^0.21.3: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== -type-fest@^4.39.1: - version "4.39.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-4.39.1.tgz#7521f6944e279abaf79cf60cfbc4823f4858083e" - integrity sha512-uW9qzd66uyHYxwyVBYiwS4Oi0qZyUqwjU+Oevr6ZogYiXt99EOYtwvzMSLw1c3lYo2HzJsep/NB23iEVEgjG/w== +type-fest@^4.41.0: + version "4.41.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-4.41.0.tgz#6ae1c8e5731273c2bf1f58ad39cbae2c91a46c58" + integrity sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA== typescript@~5.7.2: version "5.7.3" @@ -3010,7 +3010,7 @@ universalify@^0.2.0: resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== -update-browserslist-db@^1.1.1: +update-browserslist-db@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz#348377dd245216f9e7060ff50b15a1b740b75420" integrity sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw== @@ -3055,9 +3055,9 @@ walker@^1.0.8: makeerror "1.0.12" watchpack@^2.4.1: - version "2.4.2" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.2.tgz#2feeaed67412e7c33184e5a79ca738fbd38564da" - integrity sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw== + version "2.4.3" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.3.tgz#110b3a600c525f6a39ab66cf354cf08b205c29dc" + integrity sha512-adBYQLivcg1jbdKEJeqScJJFvgm4qY9+3tXw+jdG6lkVeqRJEtiQmSWjmth8GKmDZuX7sYM4YFxQsf0AzMfGGw== dependencies: glob-to-regexp "^0.4.1" graceful-fs "^4.1.2" @@ -3078,12 +3078,13 @@ webpack-sources@^3.2.3: integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== webpack@^5.97.1: - version "5.99.5" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.99.5.tgz#86e3b3a5a03377ea5da271c929934003f5ac5dd8" - integrity sha512-q+vHBa6H9qwBLUlHL4Y7L0L1/LlyBKZtS9FHNCQmtayxjI5RKC9yD8gpvLeqGv5lCQp1Re04yi0MF40pf30Pvg== + version "5.99.9" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.99.9.tgz#d7de799ec17d0cce3c83b70744b4aedb537d8247" + integrity sha512-brOPwM3JnmOa+7kd3NsmOUOwbDAj8FT9xDsG3IW0MgbN9yZV7Oi/s/+MNQ/EcSMqw7qfoRyXPoeEWT8zLVdVGg== dependencies: "@types/eslint-scope" "^3.7.7" "@types/estree" "^1.0.6" + "@types/json-schema" "^7.0.15" "@webassemblyjs/ast" "^1.14.1" "@webassemblyjs/wasm-edit" "^1.14.1" "@webassemblyjs/wasm-parser" "^1.14.1" @@ -3100,7 +3101,7 @@ webpack@^5.97.1: loader-runner "^4.2.0" mime-types "^2.1.27" neo-async "^2.6.2" - schema-utils "^4.3.0" + schema-utils "^4.3.2" tapable "^2.1.1" terser-webpack-plugin "^5.3.11" watchpack "^2.4.1" @@ -3164,9 +3165,9 @@ write-file-atomic@^4.0.2: signal-exit "^3.0.7" ws@^8.11.0: - version "8.18.1" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.1.tgz#ea131d3784e1dfdff91adb0a4a116b127515e3cb" - integrity sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w== + version "8.18.2" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.2.tgz#42738b2be57ced85f46154320aabb51ab003705a" + integrity sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ== xml-name-validator@^4.0.0: version "4.0.0"