@encatch/schema 1.2.0-beta.1 → 1.2.0-beta.3

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.
@@ -170,6 +170,7 @@ export declare const fetchFeedbackDetailsSchema: z.ZodObject<{
170
170
  export declare const formConfigurationResponseSchema: z.ZodObject<{
171
171
  formTitle: z.ZodString;
172
172
  formDescription: z.ZodString;
173
+ respondentsCount: z.ZodOptional<z.ZodNumber>;
173
174
  }, z.core.$strip>;
174
175
  export declare const logicJumpRuleSchema: z.ZodObject<{
175
176
  jsonLogic: z.ZodRecord<z.ZodString, z.ZodUnknown>;
@@ -2326,6 +2327,7 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
2326
2327
  formConfiguration: z.ZodObject<{
2327
2328
  formTitle: z.ZodString;
2328
2329
  formDescription: z.ZodString;
2330
+ respondentsCount: z.ZodOptional<z.ZodNumber>;
2329
2331
  }, z.core.$strip>;
2330
2332
  questionnaireFields: z.ZodObject<{
2331
2333
  questions: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -4480,6 +4482,7 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
4480
4482
  remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
4481
4483
  estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
4482
4484
  respondentsShowMinThreshold: z.ZodOptional<z.ZodNumber>;
4485
+ respondentsLabel: z.ZodOptional<z.ZodString>;
4483
4486
  windowTitle: z.ZodOptional<z.ZodString>;
4484
4487
  }, z.core.$strip>;
4485
4488
  translations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -4505,6 +4508,7 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
4505
4508
  remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
4506
4509
  estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
4507
4510
  respondentsShowMinThreshold: z.ZodOptional<z.ZodNumber>;
4511
+ respondentsLabel: z.ZodOptional<z.ZodString>;
4508
4512
  windowTitle: z.ZodOptional<z.ZodString>;
4509
4513
  }, z.core.$strip>;
4510
4514
  translations: z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -5718,7 +5722,6 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
5718
5722
  }, z.core.$strip>>;
5719
5723
  }, z.core.$strip>>>;
5720
5724
  }, z.core.$strip>;
5721
- respondentsCount: z.ZodOptional<z.ZodNumber>;
5722
5725
  }, z.core.$strict>;
5723
5726
  export declare const fetchConfigurationListResponseSchema: z.ZodObject<{
5724
5727
  masterProperties: z.ZodObject<{
@@ -2152,6 +2152,7 @@ export declare const appPropsSchema: z.ZodObject<{
2152
2152
  remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
2153
2153
  estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
2154
2154
  respondentsShowMinThreshold: z.ZodOptional<z.ZodNumber>;
2155
+ respondentsLabel: z.ZodOptional<z.ZodString>;
2155
2156
  windowTitle: z.ZodOptional<z.ZodString>;
2156
2157
  }, z.core.$strip>;
2157
2158
  translations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -2177,6 +2178,7 @@ export declare const appPropsSchema: z.ZodObject<{
2177
2178
  remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
2178
2179
  estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
2179
2180
  respondentsShowMinThreshold: z.ZodOptional<z.ZodNumber>;
2181
+ respondentsLabel: z.ZodOptional<z.ZodString>;
2180
2182
  windowTitle: z.ZodOptional<z.ZodString>;
2181
2183
  }, z.core.$strip>;
2182
2184
  translations: z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -12,6 +12,7 @@ export declare const otherConfigurationPropertiesSchema: z.ZodDiscriminatedUnion
12
12
  remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
13
13
  estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
14
14
  respondentsShowMinThreshold: z.ZodOptional<z.ZodNumber>;
15
+ respondentsLabel: z.ZodOptional<z.ZodString>;
15
16
  windowTitle: z.ZodOptional<z.ZodString>;
16
17
  }, z.core.$strip>;
17
18
  translations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -37,6 +38,7 @@ export declare const otherConfigurationPropertiesSchema: z.ZodDiscriminatedUnion
37
38
  remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
38
39
  estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
39
40
  respondentsShowMinThreshold: z.ZodOptional<z.ZodNumber>;
41
+ respondentsLabel: z.ZodOptional<z.ZodString>;
40
42
  windowTitle: z.ZodOptional<z.ZodString>;
41
43
  }, z.core.$strip>;
42
44
  translations: z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -3591,6 +3593,7 @@ export declare const formPropertiesSchema: z.ZodObject<{
3591
3593
  remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
3592
3594
  estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
3593
3595
  respondentsShowMinThreshold: z.ZodOptional<z.ZodNumber>;
3596
+ respondentsLabel: z.ZodOptional<z.ZodString>;
3594
3597
  windowTitle: z.ZodOptional<z.ZodString>;
3595
3598
  }, z.core.$strip>;
3596
3599
  translations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -3616,6 +3619,7 @@ export declare const formPropertiesSchema: z.ZodObject<{
3616
3619
  remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
3617
3620
  estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
3618
3621
  respondentsShowMinThreshold: z.ZodOptional<z.ZodNumber>;
3622
+ respondentsLabel: z.ZodOptional<z.ZodString>;
3619
3623
  windowTitle: z.ZodOptional<z.ZodString>;
3620
3624
  }, z.core.$strip>;
3621
3625
  translations: z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -9,6 +9,7 @@ export declare const OtherFieldsSchema: z.ZodObject<{
9
9
  remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
10
10
  estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
11
11
  respondentsShowMinThreshold: z.ZodOptional<z.ZodNumber>;
12
+ respondentsLabel: z.ZodOptional<z.ZodString>;
12
13
  windowTitle: z.ZodOptional<z.ZodString>;
13
14
  }, z.core.$strip>;
14
15
  export declare const LanguageFieldSchema: z.ZodObject<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@encatch/schema",
3
- "version": "1.2.0-beta.1",
3
+ "version": "1.2.0-beta.3",
4
4
  "description": "TypeScript schema definitions using Zod for validation and type inference of encatch product",
5
5
  "homepage": "https://encatch.com",
6
6
  "type": "module",