@sprig-technologies/sprig-bundled 2.35.0 → 2.36.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-D8ZoPLNT.js → index-BmLWLmjC.js} +1514 -1487
- package/dist/{index-Clr9gLre.cjs → index-C8J9g3RV.cjs} +29 -23
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1 -1
- package/dist/view-CNVa1mke.js +2245 -0
- package/dist/view-Qe_1uCI8.cjs +12 -0
- package/package.json +2 -2
- package/dist/view-DNRNShTq.js +0 -2039
- package/dist/view-DkgdLDj2.cjs +0 -12
package/dist/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-C8J9g3RV.cjs");exports.DismissReason=e.DismissReason,exports.SprigAPI=e.SprigAPI,exports.SprigEvent=e.SprigEvent,exports.sprig=e.sprig;
|
package/dist/index.d.ts
CHANGED
|
@@ -1009,6 +1009,9 @@ interface PassthroughData {
|
|
|
1009
1009
|
responseGroupUid: UUID;
|
|
1010
1010
|
}
|
|
1011
1011
|
|
|
1012
|
+
type MultiChoiceSecondaryValueType = Record<string, {
|
|
1013
|
+
userText: string;
|
|
1014
|
+
}> | null;
|
|
1012
1015
|
interface RecordedTaskResponseValueType {
|
|
1013
1016
|
mediaRecordingUids?: string[] | null;
|
|
1014
1017
|
taskDurationMillisecond?: number;
|
|
@@ -1029,6 +1032,7 @@ interface BaseCard {
|
|
|
1029
1032
|
value?: unknown;
|
|
1030
1033
|
type: CardType;
|
|
1031
1034
|
groupId?: number;
|
|
1035
|
+
secondaryValue?: MultiChoiceSecondaryValueType | null;
|
|
1032
1036
|
}
|
|
1033
1037
|
type Comparator = "answered" | "contains" | "notcontains" | "list_dni" | "eq" | "given_up" | "gt" | "gte" | "lt" | "lte" | "list_all" | "list_alo" | "list_exact" | "neq" | "partial" | "skipped";
|
|
1034
1038
|
type Randomize = "none" | "all";
|
package/dist/index.js
CHANGED