@smvtech/x-flux 1.1.21 → 1.1.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.d.mts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -102,6 +102,7 @@ declare const QuestionnaireSchema: z.ZodObject<{
|
|
|
102
102
|
is_root: z.ZodBoolean;
|
|
103
103
|
type: z.ZodNativeEnum<typeof QUESTION_TYPE>;
|
|
104
104
|
doc_type: z.ZodOptional<z.ZodNativeEnum<typeof DOC_TYPES>>;
|
|
105
|
+
automation_label: z.ZodOptional<z.ZodString>;
|
|
105
106
|
renders: z.ZodArray<z.ZodObject<{
|
|
106
107
|
operation: z.ZodString;
|
|
107
108
|
value: z.ZodString;
|
|
@@ -131,6 +132,7 @@ declare const QuestionnaireSchema: z.ZodObject<{
|
|
|
131
132
|
question_ids: string[];
|
|
132
133
|
}[];
|
|
133
134
|
doc_type?: DOC_TYPES | undefined;
|
|
135
|
+
automation_label?: string | undefined;
|
|
134
136
|
}, {
|
|
135
137
|
options: string[];
|
|
136
138
|
type: QUESTION_TYPE;
|
|
@@ -147,6 +149,7 @@ declare const QuestionnaireSchema: z.ZodObject<{
|
|
|
147
149
|
question_ids: string[];
|
|
148
150
|
}[];
|
|
149
151
|
doc_type?: DOC_TYPES | undefined;
|
|
152
|
+
automation_label?: string | undefined;
|
|
150
153
|
}>>;
|
|
151
154
|
}, "strip", z.ZodTypeAny, {
|
|
152
155
|
questionsWithRank: {
|
|
@@ -169,6 +172,7 @@ declare const QuestionnaireSchema: z.ZodObject<{
|
|
|
169
172
|
question_ids: string[];
|
|
170
173
|
}[];
|
|
171
174
|
doc_type?: DOC_TYPES | undefined;
|
|
175
|
+
automation_label?: string | undefined;
|
|
172
176
|
}>;
|
|
173
177
|
}, {
|
|
174
178
|
questionsWithRank: {
|
|
@@ -191,6 +195,7 @@ declare const QuestionnaireSchema: z.ZodObject<{
|
|
|
191
195
|
question_ids: string[];
|
|
192
196
|
}[];
|
|
193
197
|
doc_type?: DOC_TYPES | undefined;
|
|
198
|
+
automation_label?: string | undefined;
|
|
194
199
|
}>;
|
|
195
200
|
}>;
|
|
196
201
|
declare const ApplicationSchema: z.ZodObject<{
|
package/dist/index.d.ts
CHANGED
|
@@ -102,6 +102,7 @@ declare const QuestionnaireSchema: z.ZodObject<{
|
|
|
102
102
|
is_root: z.ZodBoolean;
|
|
103
103
|
type: z.ZodNativeEnum<typeof QUESTION_TYPE>;
|
|
104
104
|
doc_type: z.ZodOptional<z.ZodNativeEnum<typeof DOC_TYPES>>;
|
|
105
|
+
automation_label: z.ZodOptional<z.ZodString>;
|
|
105
106
|
renders: z.ZodArray<z.ZodObject<{
|
|
106
107
|
operation: z.ZodString;
|
|
107
108
|
value: z.ZodString;
|
|
@@ -131,6 +132,7 @@ declare const QuestionnaireSchema: z.ZodObject<{
|
|
|
131
132
|
question_ids: string[];
|
|
132
133
|
}[];
|
|
133
134
|
doc_type?: DOC_TYPES | undefined;
|
|
135
|
+
automation_label?: string | undefined;
|
|
134
136
|
}, {
|
|
135
137
|
options: string[];
|
|
136
138
|
type: QUESTION_TYPE;
|
|
@@ -147,6 +149,7 @@ declare const QuestionnaireSchema: z.ZodObject<{
|
|
|
147
149
|
question_ids: string[];
|
|
148
150
|
}[];
|
|
149
151
|
doc_type?: DOC_TYPES | undefined;
|
|
152
|
+
automation_label?: string | undefined;
|
|
150
153
|
}>>;
|
|
151
154
|
}, "strip", z.ZodTypeAny, {
|
|
152
155
|
questionsWithRank: {
|
|
@@ -169,6 +172,7 @@ declare const QuestionnaireSchema: z.ZodObject<{
|
|
|
169
172
|
question_ids: string[];
|
|
170
173
|
}[];
|
|
171
174
|
doc_type?: DOC_TYPES | undefined;
|
|
175
|
+
automation_label?: string | undefined;
|
|
172
176
|
}>;
|
|
173
177
|
}, {
|
|
174
178
|
questionsWithRank: {
|
|
@@ -191,6 +195,7 @@ declare const QuestionnaireSchema: z.ZodObject<{
|
|
|
191
195
|
question_ids: string[];
|
|
192
196
|
}[];
|
|
193
197
|
doc_type?: DOC_TYPES | undefined;
|
|
198
|
+
automation_label?: string | undefined;
|
|
194
199
|
}>;
|
|
195
200
|
}>;
|
|
196
201
|
declare const ApplicationSchema: z.ZodObject<{
|
package/dist/index.js
CHANGED
|
@@ -150,6 +150,7 @@ var QuestionnaireSchema = z2__namespace.object({
|
|
|
150
150
|
is_root: z2__namespace.boolean(),
|
|
151
151
|
type: z2__namespace.nativeEnum(QUESTION_TYPE),
|
|
152
152
|
doc_type: z2__namespace.nativeEnum(DOC_TYPES).optional(),
|
|
153
|
+
automation_label: z2__namespace.string().optional(),
|
|
153
154
|
renders: z2__namespace.array(
|
|
154
155
|
z2__namespace.object({
|
|
155
156
|
operation: z2__namespace.string(),
|
package/dist/index.mjs
CHANGED
|
@@ -124,6 +124,7 @@ var QuestionnaireSchema = z2.object({
|
|
|
124
124
|
is_root: z2.boolean(),
|
|
125
125
|
type: z2.nativeEnum(QUESTION_TYPE),
|
|
126
126
|
doc_type: z2.nativeEnum(DOC_TYPES).optional(),
|
|
127
|
+
automation_label: z2.string().optional(),
|
|
127
128
|
renders: z2.array(
|
|
128
129
|
z2.object({
|
|
129
130
|
operation: z2.string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smvtech/x-flux",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.22",
|
|
4
4
|
"description": "x-flux - A powerful React package for managing effective document collection flows, visa questionnaires, travellers, and applications",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|