@connectedxm/admin 6.9.12 → 6.10.1

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.js CHANGED
@@ -318,11 +318,6 @@ var FileSource = /* @__PURE__ */ ((FileSource2) => {
318
318
  FileSource2["content"] = "content";
319
319
  return FileSource2;
320
320
  })(FileSource || {});
321
- var SessionAccess = /* @__PURE__ */ ((SessionAccess2) => {
322
- SessionAccess2["public"] = "PUBLIC";
323
- SessionAccess2["private"] = "PRIVATE";
324
- return SessionAccess2;
325
- })(SessionAccess || {});
326
321
  var AccountAttributeType = /* @__PURE__ */ ((AccountAttributeType2) => {
327
322
  AccountAttributeType2["text"] = "text";
328
323
  AccountAttributeType2["number"] = "number";
@@ -580,6 +575,13 @@ var EventReportDateType = /* @__PURE__ */ ((EventReportDateType2) => {
580
575
  EventReportDateType2["month"] = "month";
581
576
  return EventReportDateType2;
582
577
  })(EventReportDateType || {});
578
+ var EventSessionVisibility = /* @__PURE__ */ ((EventSessionVisibility2) => {
579
+ EventSessionVisibility2["PUBLIC"] = "PUBLIC";
580
+ EventSessionVisibility2["RESTRICTED"] = "RESTRICTED";
581
+ EventSessionVisibility2["REGISTERED"] = "REGISTERED";
582
+ EventSessionVisibility2["HIDDEN"] = "HIDDEN";
583
+ return EventSessionVisibility2;
584
+ })(EventSessionVisibility || {});
583
585
  var EventSessionQuestionType = /* @__PURE__ */ ((EventSessionQuestionType2) => {
584
586
  EventSessionQuestionType2["text"] = "text";
585
587
  EventSessionQuestionType2["textarea"] = "textarea";
@@ -37703,6 +37705,7 @@ export {
37703
37705
  EventGetPassTypeCoupons,
37704
37706
  EventReportDateType,
37705
37707
  EventSessionQuestionType,
37708
+ EventSessionVisibility,
37706
37709
  EventSource,
37707
37710
  EventType,
37708
37711
  ExportAccount,
@@ -38986,7 +38989,6 @@ export {
38986
38989
  SelfLeaveOrganization,
38987
38990
  SendAnnouncementPreview,
38988
38991
  SendInvoice,
38989
- SessionAccess,
38990
38992
  SideEffectActionType,
38991
38993
  SideEffectTriggerType,
38992
38994
  StartEventRoundMatchmaking,
package/openapi.json CHANGED
@@ -72836,13 +72836,6 @@
72836
72836
  "content"
72837
72837
  ]
72838
72838
  },
72839
- "SessionAccess": {
72840
- "type": "string",
72841
- "enum": [
72842
- "PUBLIC",
72843
- "PRIVATE"
72844
- ]
72845
- },
72846
72839
  "AccountAttributeType": {
72847
72840
  "type": "string",
72848
72841
  "enum": [
@@ -81894,6 +81887,15 @@
81894
81887
  }
81895
81888
  ]
81896
81889
  },
81890
+ "EventSessionVisibility": {
81891
+ "type": "string",
81892
+ "enum": [
81893
+ "PUBLIC",
81894
+ "RESTRICTED",
81895
+ "REGISTERED",
81896
+ "HIDDEN"
81897
+ ]
81898
+ },
81897
81899
  "BaseEventSession": {
81898
81900
  "type": "object",
81899
81901
  "properties": {
@@ -81947,11 +81949,8 @@
81947
81949
  "nonSession": {
81948
81950
  "type": "boolean"
81949
81951
  },
81950
- "visible": {
81951
- "type": "boolean"
81952
- },
81953
- "access": {
81954
- "$ref": "#/components/schemas/SessionAccess"
81952
+ "visibility": {
81953
+ "$ref": "#/components/schemas/EventSessionVisibility"
81955
81954
  },
81956
81955
  "location": {
81957
81956
  "allOf": [
@@ -82002,8 +82001,7 @@
82002
82001
  "allowQuickRegister",
82003
82002
  "tracks",
82004
82003
  "nonSession",
82005
- "visible",
82006
- "access",
82004
+ "visibility",
82007
82005
  "location",
82008
82006
  "registrationEnabled",
82009
82007
  "price",
@@ -93938,11 +93936,8 @@
93938
93936
  "type": "string",
93939
93937
  "nullable": true
93940
93938
  },
93941
- "visible": {
93942
- "type": "boolean"
93943
- },
93944
- "access": {
93945
- "$ref": "#/components/schemas/SessionAccess"
93939
+ "visibility": {
93940
+ "$ref": "#/components/schemas/EventSessionVisibility"
93946
93941
  },
93947
93942
  "sortOrder": {
93948
93943
  "oneOf": [
@@ -94098,11 +94093,8 @@
94098
94093
  "type": "string",
94099
94094
  "nullable": true
94100
94095
  },
94101
- "visible": {
94102
- "type": "boolean"
94103
- },
94104
- "access": {
94105
- "$ref": "#/components/schemas/SessionAccess"
94096
+ "visibility": {
94097
+ "$ref": "#/components/schemas/EventSessionVisibility"
94106
94098
  },
94107
94099
  "sortOrder": {
94108
94100
  "oneOf": [
@@ -98348,6 +98340,9 @@
98348
98340
  "sessions": {
98349
98341
  "type": "boolean"
98350
98342
  },
98343
+ "blocks": {
98344
+ "type": "boolean"
98345
+ },
98351
98346
  "rounds": {
98352
98347
  "type": "boolean"
98353
98348
  },
@@ -98385,6 +98380,7 @@
98385
98380
  "sponsorshipLevels",
98386
98381
  "locations",
98387
98382
  "sessions",
98383
+ "blocks",
98388
98384
  "rounds",
98389
98385
  "sideEffects",
98390
98386
  "advancedSettings"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "6.9.12",
3
+ "version": "6.10.1",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",