@connectedxm/admin 2.8.21 → 2.8.22
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 +7 -1
- package/dist/index.d.ts +7 -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
|
@@ -800,7 +800,9 @@ declare enum BadgeFieldType {
|
|
|
800
800
|
question = "question",
|
|
801
801
|
tier = "tier",
|
|
802
802
|
ticket = "ticket",
|
|
803
|
-
pass = "pass"
|
|
803
|
+
pass = "pass",
|
|
804
|
+
session = "session",
|
|
805
|
+
session_question = "session_question"
|
|
804
806
|
}
|
|
805
807
|
declare enum BadgeFieldTransformation {
|
|
806
808
|
uppercase = "uppercase",
|
|
@@ -815,6 +817,8 @@ interface BaseEventOnSiteBadgeField {
|
|
|
815
817
|
maxLength: number | null;
|
|
816
818
|
defaultValue: string | null;
|
|
817
819
|
transformation: BadgeFieldTransformation | null;
|
|
820
|
+
iconData: string | null;
|
|
821
|
+
sessionId: string | null;
|
|
818
822
|
sortOrder: number;
|
|
819
823
|
createdAt: string;
|
|
820
824
|
updatedAt: string;
|
|
@@ -3943,6 +3947,8 @@ interface EventBadgeFieldUpdateInputs {
|
|
|
3943
3947
|
defaultValue?: string | null;
|
|
3944
3948
|
transformation?: keyof typeof BadgeFieldTransformation | null;
|
|
3945
3949
|
sortOrder?: number | string | null;
|
|
3950
|
+
iconData?: string | null;
|
|
3951
|
+
sessionId?: string | null;
|
|
3946
3952
|
}
|
|
3947
3953
|
interface EventCouponCreateInputs {
|
|
3948
3954
|
code: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -800,7 +800,9 @@ declare enum BadgeFieldType {
|
|
|
800
800
|
question = "question",
|
|
801
801
|
tier = "tier",
|
|
802
802
|
ticket = "ticket",
|
|
803
|
-
pass = "pass"
|
|
803
|
+
pass = "pass",
|
|
804
|
+
session = "session",
|
|
805
|
+
session_question = "session_question"
|
|
804
806
|
}
|
|
805
807
|
declare enum BadgeFieldTransformation {
|
|
806
808
|
uppercase = "uppercase",
|
|
@@ -815,6 +817,8 @@ interface BaseEventOnSiteBadgeField {
|
|
|
815
817
|
maxLength: number | null;
|
|
816
818
|
defaultValue: string | null;
|
|
817
819
|
transformation: BadgeFieldTransformation | null;
|
|
820
|
+
iconData: string | null;
|
|
821
|
+
sessionId: string | null;
|
|
818
822
|
sortOrder: number;
|
|
819
823
|
createdAt: string;
|
|
820
824
|
updatedAt: string;
|
|
@@ -3943,6 +3947,8 @@ interface EventBadgeFieldUpdateInputs {
|
|
|
3943
3947
|
defaultValue?: string | null;
|
|
3944
3948
|
transformation?: keyof typeof BadgeFieldTransformation | null;
|
|
3945
3949
|
sortOrder?: number | string | null;
|
|
3950
|
+
iconData?: string | null;
|
|
3951
|
+
sessionId?: string | null;
|
|
3946
3952
|
}
|
|
3947
3953
|
interface EventCouponCreateInputs {
|
|
3948
3954
|
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) => {
|