@connectedxm/admin 2.8.21 → 2.8.23
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 +2 -0
- package/dist/index.d.cts +10 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -15760,6 +15760,8 @@ var BadgeFieldType = /* @__PURE__ */ ((BadgeFieldType2) => {
|
|
|
15760
15760
|
BadgeFieldType2["tier"] = "tier";
|
|
15761
15761
|
BadgeFieldType2["ticket"] = "ticket";
|
|
15762
15762
|
BadgeFieldType2["pass"] = "pass";
|
|
15763
|
+
BadgeFieldType2["session"] = "session";
|
|
15764
|
+
BadgeFieldType2["session_question"] = "session_question";
|
|
15763
15765
|
return BadgeFieldType2;
|
|
15764
15766
|
})(BadgeFieldType || {});
|
|
15765
15767
|
var BadgeFieldTransformation = /* @__PURE__ */ ((BadgeFieldTransformation2) => {
|
package/dist/index.d.cts
CHANGED
|
@@ -473,6 +473,7 @@ interface BaseAnnouncement {
|
|
|
473
473
|
email: boolean;
|
|
474
474
|
push: boolean;
|
|
475
475
|
sms: boolean;
|
|
476
|
+
includePasses: boolean;
|
|
476
477
|
accountId: string | null;
|
|
477
478
|
creatorId: string | null;
|
|
478
479
|
eventId: string | null;
|
|
@@ -800,7 +801,9 @@ declare enum BadgeFieldType {
|
|
|
800
801
|
question = "question",
|
|
801
802
|
tier = "tier",
|
|
802
803
|
ticket = "ticket",
|
|
803
|
-
pass = "pass"
|
|
804
|
+
pass = "pass",
|
|
805
|
+
session = "session",
|
|
806
|
+
session_question = "session_question"
|
|
804
807
|
}
|
|
805
808
|
declare enum BadgeFieldTransformation {
|
|
806
809
|
uppercase = "uppercase",
|
|
@@ -815,6 +818,8 @@ interface BaseEventOnSiteBadgeField {
|
|
|
815
818
|
maxLength: number | null;
|
|
816
819
|
defaultValue: string | null;
|
|
817
820
|
transformation: BadgeFieldTransformation | null;
|
|
821
|
+
iconData: string | null;
|
|
822
|
+
sessionId: string | null;
|
|
818
823
|
sortOrder: number;
|
|
819
824
|
createdAt: string;
|
|
820
825
|
updatedAt: string;
|
|
@@ -3675,6 +3680,7 @@ interface AnnouncementCreateInputs {
|
|
|
3675
3680
|
email?: boolean;
|
|
3676
3681
|
push?: boolean;
|
|
3677
3682
|
filters?: EventAnnouncementFilters | null;
|
|
3683
|
+
includePasses?: boolean;
|
|
3678
3684
|
}
|
|
3679
3685
|
interface AnnouncementUpdateInputs {
|
|
3680
3686
|
title?: string | null;
|
|
@@ -3683,6 +3689,7 @@ interface AnnouncementUpdateInputs {
|
|
|
3683
3689
|
email?: boolean;
|
|
3684
3690
|
push?: boolean;
|
|
3685
3691
|
filters?: EventAnnouncementFilters | null;
|
|
3692
|
+
includePasses?: boolean;
|
|
3686
3693
|
}
|
|
3687
3694
|
interface AnnouncementTranslationUpdateInputs {
|
|
3688
3695
|
title?: string | null;
|
|
@@ -3943,6 +3950,8 @@ interface EventBadgeFieldUpdateInputs {
|
|
|
3943
3950
|
defaultValue?: string | null;
|
|
3944
3951
|
transformation?: keyof typeof BadgeFieldTransformation | null;
|
|
3945
3952
|
sortOrder?: number | string | null;
|
|
3953
|
+
iconData?: string | null;
|
|
3954
|
+
sessionId?: string | null;
|
|
3946
3955
|
}
|
|
3947
3956
|
interface EventCouponCreateInputs {
|
|
3948
3957
|
code: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -473,6 +473,7 @@ interface BaseAnnouncement {
|
|
|
473
473
|
email: boolean;
|
|
474
474
|
push: boolean;
|
|
475
475
|
sms: boolean;
|
|
476
|
+
includePasses: boolean;
|
|
476
477
|
accountId: string | null;
|
|
477
478
|
creatorId: string | null;
|
|
478
479
|
eventId: string | null;
|
|
@@ -800,7 +801,9 @@ declare enum BadgeFieldType {
|
|
|
800
801
|
question = "question",
|
|
801
802
|
tier = "tier",
|
|
802
803
|
ticket = "ticket",
|
|
803
|
-
pass = "pass"
|
|
804
|
+
pass = "pass",
|
|
805
|
+
session = "session",
|
|
806
|
+
session_question = "session_question"
|
|
804
807
|
}
|
|
805
808
|
declare enum BadgeFieldTransformation {
|
|
806
809
|
uppercase = "uppercase",
|
|
@@ -815,6 +818,8 @@ interface BaseEventOnSiteBadgeField {
|
|
|
815
818
|
maxLength: number | null;
|
|
816
819
|
defaultValue: string | null;
|
|
817
820
|
transformation: BadgeFieldTransformation | null;
|
|
821
|
+
iconData: string | null;
|
|
822
|
+
sessionId: string | null;
|
|
818
823
|
sortOrder: number;
|
|
819
824
|
createdAt: string;
|
|
820
825
|
updatedAt: string;
|
|
@@ -3675,6 +3680,7 @@ interface AnnouncementCreateInputs {
|
|
|
3675
3680
|
email?: boolean;
|
|
3676
3681
|
push?: boolean;
|
|
3677
3682
|
filters?: EventAnnouncementFilters | null;
|
|
3683
|
+
includePasses?: boolean;
|
|
3678
3684
|
}
|
|
3679
3685
|
interface AnnouncementUpdateInputs {
|
|
3680
3686
|
title?: string | null;
|
|
@@ -3683,6 +3689,7 @@ interface AnnouncementUpdateInputs {
|
|
|
3683
3689
|
email?: boolean;
|
|
3684
3690
|
push?: boolean;
|
|
3685
3691
|
filters?: EventAnnouncementFilters | null;
|
|
3692
|
+
includePasses?: boolean;
|
|
3686
3693
|
}
|
|
3687
3694
|
interface AnnouncementTranslationUpdateInputs {
|
|
3688
3695
|
title?: string | null;
|
|
@@ -3943,6 +3950,8 @@ interface EventBadgeFieldUpdateInputs {
|
|
|
3943
3950
|
defaultValue?: string | null;
|
|
3944
3951
|
transformation?: keyof typeof BadgeFieldTransformation | null;
|
|
3945
3952
|
sortOrder?: number | string | null;
|
|
3953
|
+
iconData?: string | null;
|
|
3954
|
+
sessionId?: string | null;
|
|
3946
3955
|
}
|
|
3947
3956
|
interface EventCouponCreateInputs {
|
|
3948
3957
|
code: string;
|
package/dist/index.js
CHANGED
|
@@ -12721,6 +12721,8 @@ var BadgeFieldType = /* @__PURE__ */ ((BadgeFieldType2) => {
|
|
|
12721
12721
|
BadgeFieldType2["tier"] = "tier";
|
|
12722
12722
|
BadgeFieldType2["ticket"] = "ticket";
|
|
12723
12723
|
BadgeFieldType2["pass"] = "pass";
|
|
12724
|
+
BadgeFieldType2["session"] = "session";
|
|
12725
|
+
BadgeFieldType2["session_question"] = "session_question";
|
|
12724
12726
|
return BadgeFieldType2;
|
|
12725
12727
|
})(BadgeFieldType || {});
|
|
12726
12728
|
var BadgeFieldTransformation = /* @__PURE__ */ ((BadgeFieldTransformation2) => {
|