@connectedxm/admin-sdk 7.9.1 → 7.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/api.ts CHANGED
@@ -13691,6 +13691,7 @@ export interface TaxIntegration {
13691
13691
  'id': string;
13692
13692
  'type': TaxIntegrationType;
13693
13693
  'connectionId': string;
13694
+ 'instanceUrl': string | null;
13694
13695
  'sandbox': boolean;
13695
13696
  'enabled': boolean;
13696
13697
  'companyCode': string;
@@ -13714,6 +13715,10 @@ export interface TaxIntegrationCreateInputs {
13714
13715
  'apiKey'?: string;
13715
13716
  'accountId'?: string;
13716
13717
  'licenseKey'?: string;
13718
+ 'clientId'?: string;
13719
+ 'clientSecret'?: string;
13720
+ 'instanceUrl'?: string;
13721
+ 'companyCode'?: string;
13717
13722
  }
13718
13723
  export interface TaxIntegrationLog {
13719
13724
  'id': string;
@@ -13746,6 +13751,7 @@ export enum TaxIntegrationType {
13746
13751
 
13747
13752
  export interface TaxIntegrationUpdateInputs {
13748
13753
  'companyCode'?: string | null;
13754
+ 'instanceUrl'?: string | null;
13749
13755
  'commit'?: boolean;
13750
13756
  'logging'?: boolean;
13751
13757
  'passTaxCode'?: string | null;
package/dist/api.d.ts CHANGED
@@ -12187,6 +12187,7 @@ export interface TaxIntegration {
12187
12187
  'id': string;
12188
12188
  'type': TaxIntegrationType;
12189
12189
  'connectionId': string;
12190
+ 'instanceUrl': string | null;
12190
12191
  'sandbox': boolean;
12191
12192
  'enabled': boolean;
12192
12193
  'companyCode': string;
@@ -12208,6 +12209,10 @@ export interface TaxIntegrationCreateInputs {
12208
12209
  'apiKey'?: string;
12209
12210
  'accountId'?: string;
12210
12211
  'licenseKey'?: string;
12212
+ 'clientId'?: string;
12213
+ 'clientSecret'?: string;
12214
+ 'instanceUrl'?: string;
12215
+ 'companyCode'?: string;
12211
12216
  }
12212
12217
  export interface TaxIntegrationLog {
12213
12218
  'id': string;
@@ -12232,6 +12237,7 @@ export declare enum TaxIntegrationType {
12232
12237
  }
12233
12238
  export interface TaxIntegrationUpdateInputs {
12234
12239
  'companyCode'?: string | null;
12240
+ 'instanceUrl'?: string | null;
12235
12241
  'commit'?: boolean;
12236
12242
  'logging'?: boolean;
12237
12243
  'passTaxCode'?: string | null;
package/dist/esm/api.d.ts CHANGED
@@ -12187,6 +12187,7 @@ export interface TaxIntegration {
12187
12187
  'id': string;
12188
12188
  'type': TaxIntegrationType;
12189
12189
  'connectionId': string;
12190
+ 'instanceUrl': string | null;
12190
12191
  'sandbox': boolean;
12191
12192
  'enabled': boolean;
12192
12193
  'companyCode': string;
@@ -12208,6 +12209,10 @@ export interface TaxIntegrationCreateInputs {
12208
12209
  'apiKey'?: string;
12209
12210
  'accountId'?: string;
12210
12211
  'licenseKey'?: string;
12212
+ 'clientId'?: string;
12213
+ 'clientSecret'?: string;
12214
+ 'instanceUrl'?: string;
12215
+ 'companyCode'?: string;
12211
12216
  }
12212
12217
  export interface TaxIntegrationLog {
12213
12218
  'id': string;
@@ -12232,6 +12237,7 @@ export declare enum TaxIntegrationType {
12232
12237
  }
12233
12238
  export interface TaxIntegrationUpdateInputs {
12234
12239
  'companyCode'?: string | null;
12240
+ 'instanceUrl'?: string | null;
12235
12241
  'commit'?: boolean;
12236
12242
  'logging'?: boolean;
12237
12243
  'passTaxCode'?: string | null;
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
  **id** | **string** | | [default to undefined]
9
9
  **type** | [**TaxIntegrationType**](TaxIntegrationType.md) | | [default to undefined]
10
10
  **connectionId** | **string** | | [default to undefined]
11
+ **instanceUrl** | **string** | | [default to undefined]
11
12
  **sandbox** | **boolean** | | [default to undefined]
12
13
  **enabled** | **boolean** | | [default to undefined]
13
14
  **companyCode** | **string** | | [default to undefined]
@@ -33,6 +34,7 @@ const instance: TaxIntegration = {
33
34
  id,
34
35
  type,
35
36
  connectionId,
37
+ instanceUrl,
36
38
  sandbox,
37
39
  enabled,
38
40
  companyCode,
@@ -9,6 +9,10 @@ Name | Type | Description | Notes
9
9
  **apiKey** | **string** | | [optional] [default to undefined]
10
10
  **accountId** | **string** | | [optional] [default to undefined]
11
11
  **licenseKey** | **string** | | [optional] [default to undefined]
12
+ **clientId** | **string** | | [optional] [default to undefined]
13
+ **clientSecret** | **string** | | [optional] [default to undefined]
14
+ **instanceUrl** | **string** | | [optional] [default to undefined]
15
+ **companyCode** | **string** | | [optional] [default to undefined]
12
16
 
13
17
  ## Example
14
18
 
@@ -20,6 +24,10 @@ const instance: TaxIntegrationCreateInputs = {
20
24
  apiKey,
21
25
  accountId,
22
26
  licenseKey,
27
+ clientId,
28
+ clientSecret,
29
+ instanceUrl,
30
+ companyCode,
23
31
  };
24
32
  ```
25
33
 
@@ -6,6 +6,7 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **companyCode** | **string** | | [optional] [default to undefined]
9
+ **instanceUrl** | **string** | | [optional] [default to undefined]
9
10
  **commit** | **boolean** | | [optional] [default to undefined]
10
11
  **logging** | **boolean** | | [optional] [default to undefined]
11
12
  **passTaxCode** | **string** | | [optional] [default to undefined]
@@ -24,6 +25,7 @@ import { TaxIntegrationUpdateInputs } from '@connectedxm/admin-sdk';
24
25
 
25
26
  const instance: TaxIntegrationUpdateInputs = {
26
27
  companyCode,
28
+ instanceUrl,
27
29
  commit,
28
30
  logging,
29
31
  passTaxCode,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin-sdk",
3
- "version": "7.9.1",
3
+ "version": "7.9.2",
4
4
  "description": "OpenAPI client for @connectedxm/admin-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {