@connectedxm/admin 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/dist/index.d.cts CHANGED
@@ -1960,6 +1960,7 @@ interface TaxIntegration {
1960
1960
  id: string;
1961
1961
  type: TaxIntegrationType;
1962
1962
  connectionId: string;
1963
+ instanceUrl: string | null;
1963
1964
  sandbox: boolean;
1964
1965
  enabled: boolean;
1965
1966
  companyCode: string;
@@ -6669,9 +6670,14 @@ interface TaxIntegrationCreateInputs {
6669
6670
  apiKey?: string;
6670
6671
  accountId?: string;
6671
6672
  licenseKey?: string;
6673
+ clientId?: string;
6674
+ clientSecret?: string;
6675
+ instanceUrl?: string;
6676
+ companyCode?: string;
6672
6677
  }
6673
6678
  interface TaxIntegrationUpdateInputs {
6674
6679
  companyCode?: string | null;
6680
+ instanceUrl?: string | null;
6675
6681
  commit?: boolean;
6676
6682
  logging?: boolean;
6677
6683
  passTaxCode?: string | null;
package/dist/index.d.ts CHANGED
@@ -1960,6 +1960,7 @@ interface TaxIntegration {
1960
1960
  id: string;
1961
1961
  type: TaxIntegrationType;
1962
1962
  connectionId: string;
1963
+ instanceUrl: string | null;
1963
1964
  sandbox: boolean;
1964
1965
  enabled: boolean;
1965
1966
  companyCode: string;
@@ -6669,9 +6670,14 @@ interface TaxIntegrationCreateInputs {
6669
6670
  apiKey?: string;
6670
6671
  accountId?: string;
6671
6672
  licenseKey?: string;
6673
+ clientId?: string;
6674
+ clientSecret?: string;
6675
+ instanceUrl?: string;
6676
+ companyCode?: string;
6672
6677
  }
6673
6678
  interface TaxIntegrationUpdateInputs {
6674
6679
  companyCode?: string | null;
6680
+ instanceUrl?: string | null;
6675
6681
  commit?: boolean;
6676
6682
  logging?: boolean;
6677
6683
  passTaxCode?: string | null;
package/openapi.json CHANGED
@@ -102075,6 +102075,10 @@
102075
102075
  "connectionId": {
102076
102076
  "type": "string"
102077
102077
  },
102078
+ "instanceUrl": {
102079
+ "type": "string",
102080
+ "nullable": true
102081
+ },
102078
102082
  "sandbox": {
102079
102083
  "type": "boolean"
102080
102084
  },
@@ -102125,6 +102129,7 @@
102125
102129
  "id",
102126
102130
  "type",
102127
102131
  "connectionId",
102132
+ "instanceUrl",
102128
102133
  "sandbox",
102129
102134
  "enabled",
102130
102135
  "companyCode",
@@ -121814,6 +121819,18 @@
121814
121819
  },
121815
121820
  "licenseKey": {
121816
121821
  "type": "string"
121822
+ },
121823
+ "clientId": {
121824
+ "type": "string"
121825
+ },
121826
+ "clientSecret": {
121827
+ "type": "string"
121828
+ },
121829
+ "instanceUrl": {
121830
+ "type": "string"
121831
+ },
121832
+ "companyCode": {
121833
+ "type": "string"
121817
121834
  }
121818
121835
  }
121819
121836
  },
@@ -121824,6 +121841,10 @@
121824
121841
  "type": "string",
121825
121842
  "nullable": true
121826
121843
  },
121844
+ "instanceUrl": {
121845
+ "type": "string",
121846
+ "nullable": true
121847
+ },
121827
121848
  "commit": {
121828
121849
  "type": "boolean"
121829
121850
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "7.9.1",
3
+ "version": "7.9.2",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",