@connectedxm/admin 6.30.0 → 6.30.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.cjs CHANGED
@@ -3822,11 +3822,12 @@ var AdvertisementType = /* @__PURE__ */ ((AdvertisementType2) => {
3822
3822
  })(AdvertisementType || {});
3823
3823
  var ImageType = /* @__PURE__ */ ((ImageType2) => {
3824
3824
  ImageType2["admin"] = "admin";
3825
- ImageType2["people"] = "people";
3826
- ImageType2["activity"] = "activity";
3827
- ImageType2["banner"] = "banner";
3828
- ImageType2["chat"] = "chat";
3825
+ ImageType2["account"] = "account";
3826
+ ImageType2["thread"] = "thread";
3829
3827
  ImageType2["content"] = "content";
3828
+ ImageType2["activity"] = "activity";
3829
+ ImageType2["event"] = "event";
3830
+ ImageType2["activation"] = "activation";
3830
3831
  return ImageType2;
3831
3832
  })(ImageType || {});
3832
3833
  var SupportTicketType = /* @__PURE__ */ ((SupportTicketType2) => {
package/dist/index.d.cts CHANGED
@@ -163,11 +163,12 @@ declare enum AdvertisementType {
163
163
  }
164
164
  declare enum ImageType {
165
165
  admin = "admin",
166
- people = "people",
166
+ account = "account",
167
+ thread = "thread",
168
+ content = "content",
167
169
  activity = "activity",
168
- banner = "banner",
169
- chat = "chat",
170
- content = "content"
170
+ event = "event",
171
+ activation = "activation"
171
172
  }
172
173
  declare enum SupportTicketType {
173
174
  support = "support",
@@ -411,6 +412,8 @@ interface BaseActivationCompletion {
411
412
  eventActivation: BaseEventActivation;
412
413
  earnedPoints: number;
413
414
  passId: string;
415
+ imageId: string | null;
416
+ image: BaseImage | null;
414
417
  }
415
418
  interface ActivationCompletion extends BaseActivationCompletion {
416
419
  pass: BaseEventPass;
@@ -434,6 +437,7 @@ interface BaseEventActivation {
434
437
  accessLevel: keyof typeof PassTypeAccessLevel;
435
438
  sortOrder: number;
436
439
  survey: BaseSurvey | null;
440
+ imageUpload: boolean;
437
441
  _count: {
438
442
  sessions: number;
439
443
  };
@@ -5095,6 +5099,7 @@ interface EventActivationCreateInputs {
5095
5099
  continuousScanning?: boolean;
5096
5100
  scanType?: keyof typeof OnSiteScanType | null;
5097
5101
  sortOrder?: number | string | null;
5102
+ imageUpload?: boolean;
5098
5103
  }
5099
5104
  interface EventActivationTranslationUpdateInputs {
5100
5105
  name?: string | null;
@@ -5116,6 +5121,7 @@ interface EventActivationUpdateInputs {
5116
5121
  continuousScanning?: boolean;
5117
5122
  scanType?: keyof typeof OnSiteScanType | null;
5118
5123
  sortOrder?: number | string | null;
5124
+ imageUpload?: boolean;
5119
5125
  }
5120
5126
  interface EventActivationCompletionCreateInputs {
5121
5127
  passId: string;
package/dist/index.d.ts CHANGED
@@ -163,11 +163,12 @@ declare enum AdvertisementType {
163
163
  }
164
164
  declare enum ImageType {
165
165
  admin = "admin",
166
- people = "people",
166
+ account = "account",
167
+ thread = "thread",
168
+ content = "content",
167
169
  activity = "activity",
168
- banner = "banner",
169
- chat = "chat",
170
- content = "content"
170
+ event = "event",
171
+ activation = "activation"
171
172
  }
172
173
  declare enum SupportTicketType {
173
174
  support = "support",
@@ -411,6 +412,8 @@ interface BaseActivationCompletion {
411
412
  eventActivation: BaseEventActivation;
412
413
  earnedPoints: number;
413
414
  passId: string;
415
+ imageId: string | null;
416
+ image: BaseImage | null;
414
417
  }
415
418
  interface ActivationCompletion extends BaseActivationCompletion {
416
419
  pass: BaseEventPass;
@@ -434,6 +437,7 @@ interface BaseEventActivation {
434
437
  accessLevel: keyof typeof PassTypeAccessLevel;
435
438
  sortOrder: number;
436
439
  survey: BaseSurvey | null;
440
+ imageUpload: boolean;
437
441
  _count: {
438
442
  sessions: number;
439
443
  };
@@ -5095,6 +5099,7 @@ interface EventActivationCreateInputs {
5095
5099
  continuousScanning?: boolean;
5096
5100
  scanType?: keyof typeof OnSiteScanType | null;
5097
5101
  sortOrder?: number | string | null;
5102
+ imageUpload?: boolean;
5098
5103
  }
5099
5104
  interface EventActivationTranslationUpdateInputs {
5100
5105
  name?: string | null;
@@ -5116,6 +5121,7 @@ interface EventActivationUpdateInputs {
5116
5121
  continuousScanning?: boolean;
5117
5122
  scanType?: keyof typeof OnSiteScanType | null;
5118
5123
  sortOrder?: number | string | null;
5124
+ imageUpload?: boolean;
5119
5125
  }
5120
5126
  interface EventActivationCompletionCreateInputs {
5121
5127
  passId: string;
package/dist/index.js CHANGED
@@ -229,11 +229,12 @@ var AdvertisementType = /* @__PURE__ */ ((AdvertisementType2) => {
229
229
  })(AdvertisementType || {});
230
230
  var ImageType = /* @__PURE__ */ ((ImageType2) => {
231
231
  ImageType2["admin"] = "admin";
232
- ImageType2["people"] = "people";
233
- ImageType2["activity"] = "activity";
234
- ImageType2["banner"] = "banner";
235
- ImageType2["chat"] = "chat";
232
+ ImageType2["account"] = "account";
233
+ ImageType2["thread"] = "thread";
236
234
  ImageType2["content"] = "content";
235
+ ImageType2["activity"] = "activity";
236
+ ImageType2["event"] = "event";
237
+ ImageType2["activation"] = "activation";
237
238
  return ImageType2;
238
239
  })(ImageType || {});
239
240
  var SupportTicketType = /* @__PURE__ */ ((SupportTicketType2) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "6.30.0",
3
+ "version": "6.30.1",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",