@connectedxm/admin 7.9.0 → 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
@@ -1054,6 +1054,7 @@ interface Event extends BaseEvent {
1054
1054
  groupId: string | null;
1055
1055
  group: BaseGroup | null;
1056
1056
  groupOnly: boolean;
1057
+ guestRegistration: boolean;
1057
1058
  backgroundImageId: string | null;
1058
1059
  backgroundImage: BaseImage | null;
1059
1060
  registrationHeaderImageId: string | null;
@@ -1959,6 +1960,7 @@ interface TaxIntegration {
1959
1960
  id: string;
1960
1961
  type: TaxIntegrationType;
1961
1962
  connectionId: string;
1963
+ instanceUrl: string | null;
1962
1964
  sandbox: boolean;
1963
1965
  enabled: boolean;
1964
1966
  companyCode: string;
@@ -5330,6 +5332,7 @@ interface EventCreateInputs {
5330
5332
  streamReplayId?: string | null;
5331
5333
  groupId?: string | null;
5332
5334
  groupOnly?: boolean;
5335
+ guestRegistration?: boolean;
5333
5336
  passSupply?: number | string | null;
5334
5337
  passLimitPerAccount?: string | number | null;
5335
5338
  roundName?: string | null;
@@ -5388,6 +5391,7 @@ interface EventUpdateInputs {
5388
5391
  streamReplayId?: string | null;
5389
5392
  groupId?: string | null;
5390
5393
  groupOnly?: boolean;
5394
+ guestRegistration?: boolean;
5391
5395
  passSupply?: number | string | null;
5392
5396
  passLimitPerAccount?: string | number | null;
5393
5397
  roundName?: string | null;
@@ -6666,9 +6670,14 @@ interface TaxIntegrationCreateInputs {
6666
6670
  apiKey?: string;
6667
6671
  accountId?: string;
6668
6672
  licenseKey?: string;
6673
+ clientId?: string;
6674
+ clientSecret?: string;
6675
+ instanceUrl?: string;
6676
+ companyCode?: string;
6669
6677
  }
6670
6678
  interface TaxIntegrationUpdateInputs {
6671
6679
  companyCode?: string | null;
6680
+ instanceUrl?: string | null;
6672
6681
  commit?: boolean;
6673
6682
  logging?: boolean;
6674
6683
  passTaxCode?: string | null;
package/dist/index.d.ts CHANGED
@@ -1054,6 +1054,7 @@ interface Event extends BaseEvent {
1054
1054
  groupId: string | null;
1055
1055
  group: BaseGroup | null;
1056
1056
  groupOnly: boolean;
1057
+ guestRegistration: boolean;
1057
1058
  backgroundImageId: string | null;
1058
1059
  backgroundImage: BaseImage | null;
1059
1060
  registrationHeaderImageId: string | null;
@@ -1959,6 +1960,7 @@ interface TaxIntegration {
1959
1960
  id: string;
1960
1961
  type: TaxIntegrationType;
1961
1962
  connectionId: string;
1963
+ instanceUrl: string | null;
1962
1964
  sandbox: boolean;
1963
1965
  enabled: boolean;
1964
1966
  companyCode: string;
@@ -5330,6 +5332,7 @@ interface EventCreateInputs {
5330
5332
  streamReplayId?: string | null;
5331
5333
  groupId?: string | null;
5332
5334
  groupOnly?: boolean;
5335
+ guestRegistration?: boolean;
5333
5336
  passSupply?: number | string | null;
5334
5337
  passLimitPerAccount?: string | number | null;
5335
5338
  roundName?: string | null;
@@ -5388,6 +5391,7 @@ interface EventUpdateInputs {
5388
5391
  streamReplayId?: string | null;
5389
5392
  groupId?: string | null;
5390
5393
  groupOnly?: boolean;
5394
+ guestRegistration?: boolean;
5391
5395
  passSupply?: number | string | null;
5392
5396
  passLimitPerAccount?: string | number | null;
5393
5397
  roundName?: string | null;
@@ -6666,9 +6670,14 @@ interface TaxIntegrationCreateInputs {
6666
6670
  apiKey?: string;
6667
6671
  accountId?: string;
6668
6672
  licenseKey?: string;
6673
+ clientId?: string;
6674
+ clientSecret?: string;
6675
+ instanceUrl?: string;
6676
+ companyCode?: string;
6669
6677
  }
6670
6678
  interface TaxIntegrationUpdateInputs {
6671
6679
  companyCode?: string | null;
6680
+ instanceUrl?: string | null;
6672
6681
  commit?: boolean;
6673
6682
  logging?: boolean;
6674
6683
  passTaxCode?: string | null;
package/openapi.json CHANGED
@@ -98214,6 +98214,9 @@
98214
98214
  "groupOnly": {
98215
98215
  "type": "boolean"
98216
98216
  },
98217
+ "guestRegistration": {
98218
+ "type": "boolean"
98219
+ },
98217
98220
  "backgroundImageId": {
98218
98221
  "type": "string",
98219
98222
  "nullable": true
@@ -98321,6 +98324,7 @@
98321
98324
  "groupId",
98322
98325
  "group",
98323
98326
  "groupOnly",
98327
+ "guestRegistration",
98324
98328
  "backgroundImageId",
98325
98329
  "backgroundImage",
98326
98330
  "registrationHeaderImageId",
@@ -102071,6 +102075,10 @@
102071
102075
  "connectionId": {
102072
102076
  "type": "string"
102073
102077
  },
102078
+ "instanceUrl": {
102079
+ "type": "string",
102080
+ "nullable": true
102081
+ },
102074
102082
  "sandbox": {
102075
102083
  "type": "boolean"
102076
102084
  },
@@ -102121,6 +102129,7 @@
102121
102129
  "id",
102122
102130
  "type",
102123
102131
  "connectionId",
102132
+ "instanceUrl",
102124
102133
  "sandbox",
102125
102134
  "enabled",
102126
102135
  "companyCode",
@@ -116309,6 +116318,9 @@
116309
116318
  "groupOnly": {
116310
116319
  "type": "boolean"
116311
116320
  },
116321
+ "guestRegistration": {
116322
+ "type": "boolean"
116323
+ },
116312
116324
  "passSupply": {
116313
116325
  "oneOf": [
116314
116326
  {
@@ -116570,6 +116582,9 @@
116570
116582
  "groupOnly": {
116571
116583
  "type": "boolean"
116572
116584
  },
116585
+ "guestRegistration": {
116586
+ "type": "boolean"
116587
+ },
116573
116588
  "passSupply": {
116574
116589
  "oneOf": [
116575
116590
  {
@@ -121804,6 +121819,18 @@
121804
121819
  },
121805
121820
  "licenseKey": {
121806
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"
121807
121834
  }
121808
121835
  }
121809
121836
  },
@@ -121814,6 +121841,10 @@
121814
121841
  "type": "string",
121815
121842
  "nullable": true
121816
121843
  },
121844
+ "instanceUrl": {
121845
+ "type": "string",
121846
+ "nullable": true
121847
+ },
121817
121848
  "commit": {
121818
121849
  "type": "boolean"
121819
121850
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "7.9.0",
3
+ "version": "7.9.2",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",
@@ -1,11 +0,0 @@
1
- {
2
- "permissions": {
3
- "allow": [
4
- "Bash(git fetch *)",
5
- "Bash(node -p \"JSON.parse\\(require\\('fs'\\).readFileSync\\(0,'utf8'\\)\\).version\")",
6
- "Bash(gh pr *)",
7
- "Bash(git rev-list *)",
8
- "Bash(gh api *)"
9
- ]
10
- }
11
- }