@docupace/ihub-config 1.1.22 → 1.1.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/model/graphs/config/fields.graphql +23 -8
- package/dist/model/graphs/config/rules.graphql +2 -2
- package/dist/types/graphql.d.ts +24 -24
- package/dist/types/graphql.d.ts.map +1 -1
- package/model/graphs/config/fields.graphql +23 -8
- package/model/graphs/config/rules.graphql +2 -2
- package/package.json +17 -19
|
@@ -32,6 +32,8 @@ interface IDateRangeField {
|
|
|
32
32
|
excludeFromQueryInput: Boolean
|
|
33
33
|
visibilityCondition: String
|
|
34
34
|
disabledCondition: String
|
|
35
|
+
validation: GenericFieldValidation
|
|
36
|
+
|
|
35
37
|
}
|
|
36
38
|
|
|
37
39
|
type InputField implements IField & IRowElement & IElement {
|
|
@@ -116,7 +118,7 @@ type PhoneField implements IField & IRowElement & IElement {
|
|
|
116
118
|
excludeFromQueryInput: Boolean
|
|
117
119
|
visibilityCondition: String
|
|
118
120
|
disabledCondition: String
|
|
119
|
-
validation:
|
|
121
|
+
validation: GenericFieldValidation
|
|
120
122
|
}
|
|
121
123
|
|
|
122
124
|
type DateField implements IField & IRowElement & IElement {
|
|
@@ -135,7 +137,7 @@ type DateField implements IField & IRowElement & IElement {
|
|
|
135
137
|
disabledCondition: String
|
|
136
138
|
minDate: String # e.q. "now" or "2025-03-20"
|
|
137
139
|
maxDate: String # e.q. "now" or "2025-03-20"
|
|
138
|
-
validation:
|
|
140
|
+
validation: GenericFieldValidation
|
|
139
141
|
}
|
|
140
142
|
|
|
141
143
|
type DateRangeField implements IDateRangeField & IRowElement & IElement {
|
|
@@ -154,6 +156,7 @@ type DateRangeField implements IDateRangeField & IRowElement & IElement {
|
|
|
154
156
|
excludeFromQueryInput: Boolean
|
|
155
157
|
visibilityCondition: String
|
|
156
158
|
disabledCondition: String
|
|
159
|
+
validation: GenericFieldValidation
|
|
157
160
|
}
|
|
158
161
|
|
|
159
162
|
type SelectField implements IField & IRowElement & IElement {
|
|
@@ -178,7 +181,7 @@ type SelectField implements IField & IRowElement & IElement {
|
|
|
178
181
|
excludeId: Boolean
|
|
179
182
|
helperText: String
|
|
180
183
|
autoSelectSingleOption: Boolean
|
|
181
|
-
validation:
|
|
184
|
+
validation: GenericFieldValidation
|
|
182
185
|
}
|
|
183
186
|
|
|
184
187
|
type ToggleField implements IField & IRowElement & IElement {
|
|
@@ -200,7 +203,7 @@ type ToggleField implements IField & IRowElement & IElement {
|
|
|
200
203
|
visibilityCondition: String
|
|
201
204
|
disabledCondition: String
|
|
202
205
|
linkedFields: [String!]
|
|
203
|
-
validation:
|
|
206
|
+
validation: GenericFieldValidation
|
|
204
207
|
}
|
|
205
208
|
|
|
206
209
|
type BooleanField implements IField & IRowElement & IElement {
|
|
@@ -218,7 +221,7 @@ type BooleanField implements IField & IRowElement & IElement {
|
|
|
218
221
|
visibilityCondition: String
|
|
219
222
|
disabledCondition: String
|
|
220
223
|
linkedFields: [String!]
|
|
221
|
-
validation:
|
|
224
|
+
validation: GenericFieldValidation
|
|
222
225
|
}
|
|
223
226
|
|
|
224
227
|
type ChipSelectWithInputField implements IField & IRowElement & IElement {
|
|
@@ -262,7 +265,7 @@ type CustomField implements IField & IRowElement & IElement {
|
|
|
262
265
|
excludeFromQueryInput: Boolean
|
|
263
266
|
visibilityCondition: String
|
|
264
267
|
disabledCondition: String
|
|
265
|
-
validation:
|
|
268
|
+
validation: GenericFieldValidation
|
|
266
269
|
}
|
|
267
270
|
|
|
268
271
|
type StatusChipField implements IField & IRowElement & IElement {
|
|
@@ -271,7 +274,7 @@ type StatusChipField implements IField & IRowElement & IElement {
|
|
|
271
274
|
label: String
|
|
272
275
|
name: String!
|
|
273
276
|
path: String!
|
|
274
|
-
validation:
|
|
277
|
+
validation: GenericFieldValidation
|
|
275
278
|
}
|
|
276
279
|
|
|
277
280
|
type CheckboxGroupValue {
|
|
@@ -299,9 +302,19 @@ enum FieldValueType {
|
|
|
299
302
|
Float
|
|
300
303
|
}
|
|
301
304
|
|
|
302
|
-
type
|
|
305
|
+
type GenericFieldValidation {
|
|
306
|
+
custom : CustomFieldValidation
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
type CustomFieldValidation {
|
|
303
310
|
expression: String
|
|
304
311
|
message: String
|
|
312
|
+
"""
|
|
313
|
+
Paths of other fields this expression reads. When one of these fields changes, this
|
|
314
|
+
field's validation is re-triggered so its error state stays in sync without requiring
|
|
315
|
+
the user to re-touch this field directly.
|
|
316
|
+
"""
|
|
317
|
+
dependentPaths: [String!]
|
|
305
318
|
}
|
|
306
319
|
|
|
307
320
|
type StringValidationRule {
|
|
@@ -333,11 +346,13 @@ type InputValidation {
|
|
|
333
346
|
format: [FormatValidationRule!]
|
|
334
347
|
min: FloatValidationRule
|
|
335
348
|
max: FloatValidationRule
|
|
349
|
+
custom: CustomFieldValidation
|
|
336
350
|
}
|
|
337
351
|
|
|
338
352
|
type ChipSelectValidation {
|
|
339
353
|
compatibleWith: CompatibleWithRule
|
|
340
354
|
uniqueInList: UniqueInListRule
|
|
355
|
+
custom : CustomFieldValidation
|
|
341
356
|
}
|
|
342
357
|
|
|
343
358
|
type CompatibleWithRule {
|
|
@@ -56,7 +56,7 @@ type ListFieldRule implements IFieldRule {
|
|
|
56
56
|
requiredCondition: String
|
|
57
57
|
availabilityCondition: String # maps to visibilityCondition on UI
|
|
58
58
|
validationRules: [ListFieldValidationRule!]
|
|
59
|
-
validation:
|
|
59
|
+
validation: GenericFieldValidation
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
type ListFieldValidationRule {
|
|
@@ -100,5 +100,5 @@ type DateFieldRule implements IFieldRule {
|
|
|
100
100
|
availabilityCondition: String # maps to visibilityCondition on UI
|
|
101
101
|
minDate: String # e.q. "now" or "2025-03-20"
|
|
102
102
|
maxDate: String # e.q. "now" or "2025-03-20"
|
|
103
|
-
validation:
|
|
103
|
+
validation: GenericFieldValidation
|
|
104
104
|
}
|
package/dist/types/graphql.d.ts
CHANGED
|
@@ -146,7 +146,7 @@ export type BooleanField = IElement & IField & IRowElement & {
|
|
|
146
146
|
/** Always include this field in the mutation input, even if it is hidden or has not been modified by the user. */
|
|
147
147
|
skipDirtyCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
148
148
|
skipQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
149
|
-
validation?: Maybe<
|
|
149
|
+
validation?: Maybe<GenericFieldValidation>;
|
|
150
150
|
visibilityCondition?: Maybe<Scalars['String']['output']>;
|
|
151
151
|
};
|
|
152
152
|
export type BooleanFieldRule = IFieldRule & {
|
|
@@ -334,7 +334,7 @@ export type CustomField = IElement & IField & IRowElement & {
|
|
|
334
334
|
/** Always include this field in the mutation input, even if it is hidden or has not been modified by the user. */
|
|
335
335
|
skipDirtyCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
336
336
|
skipQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
337
|
-
validation?: Maybe<
|
|
337
|
+
validation?: Maybe<GenericFieldValidation>;
|
|
338
338
|
visibilityCondition?: Maybe<Scalars['String']['output']>;
|
|
339
339
|
};
|
|
340
340
|
export type CustomValidator = IElement & IRowElement & {
|
|
@@ -424,7 +424,7 @@ export type DateField = IElement & IField & IRowElement & {
|
|
|
424
424
|
/** Always include this field in the mutation input, even if it is hidden or has not been modified by the user. */
|
|
425
425
|
skipDirtyCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
426
426
|
skipQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
427
|
-
validation?: Maybe<
|
|
427
|
+
validation?: Maybe<GenericFieldValidation>;
|
|
428
428
|
visibilityCondition?: Maybe<Scalars['String']['output']>;
|
|
429
429
|
};
|
|
430
430
|
export type DateFieldRule = IFieldRule & {
|
|
@@ -438,7 +438,7 @@ export type DateFieldRule = IFieldRule & {
|
|
|
438
438
|
readonly?: Maybe<Scalars['Boolean']['output']>;
|
|
439
439
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
440
440
|
requiredCondition?: Maybe<Scalars['String']['output']>;
|
|
441
|
-
validation?: Maybe<
|
|
441
|
+
validation?: Maybe<GenericFieldValidation>;
|
|
442
442
|
};
|
|
443
443
|
export type DateRangeField = IDateRangeField & IElement & IRowElement & {
|
|
444
444
|
__typename?: 'DateRangeField';
|
|
@@ -497,8 +497,8 @@ export type ExternalWidget = {
|
|
|
497
497
|
visibilityCondition?: Maybe<Scalars['String']['output']>;
|
|
498
498
|
};
|
|
499
499
|
export type FieldMasking = NumericMasking | PatternMasking;
|
|
500
|
-
export type
|
|
501
|
-
__typename?: '
|
|
500
|
+
export type GenericFieldValidation = {
|
|
501
|
+
__typename?: 'GenericFieldValidation';
|
|
502
502
|
expression?: Maybe<Scalars['String']['output']>;
|
|
503
503
|
message?: Maybe<Scalars['String']['output']>;
|
|
504
504
|
};
|
|
@@ -708,7 +708,7 @@ export type ListFieldRule = IFieldRule & {
|
|
|
708
708
|
readonly?: Maybe<Scalars['Boolean']['output']>;
|
|
709
709
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
710
710
|
requiredCondition?: Maybe<Scalars['String']['output']>;
|
|
711
|
-
validation?: Maybe<
|
|
711
|
+
validation?: Maybe<GenericFieldValidation>;
|
|
712
712
|
validationRules?: Maybe<Array<ListFieldValidationRule>>;
|
|
713
713
|
};
|
|
714
714
|
export type ListFieldValidationRule = {
|
|
@@ -898,7 +898,7 @@ export type PhoneField = IElement & IField & IRowElement & {
|
|
|
898
898
|
/** Always include this field in the mutation input, even if it is hidden or has not been modified by the user. */
|
|
899
899
|
skipDirtyCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
900
900
|
skipQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
901
|
-
validation?: Maybe<
|
|
901
|
+
validation?: Maybe<GenericFieldValidation>;
|
|
902
902
|
visibilityCondition?: Maybe<Scalars['String']['output']>;
|
|
903
903
|
};
|
|
904
904
|
export type Preview = {
|
|
@@ -1019,7 +1019,7 @@ export type SelectField = IElement & IField & IRowElement & {
|
|
|
1019
1019
|
/** Always include this field in the mutation input, even if it is hidden or has not been modified by the user. */
|
|
1020
1020
|
skipDirtyCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
1021
1021
|
skipQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
1022
|
-
validation?: Maybe<
|
|
1022
|
+
validation?: Maybe<GenericFieldValidation>;
|
|
1023
1023
|
visibilityCondition?: Maybe<Scalars['String']['output']>;
|
|
1024
1024
|
};
|
|
1025
1025
|
export type SelectOptionsFilter = {
|
|
@@ -1061,7 +1061,7 @@ export type StatusChipField = IElement & IField & IRowElement & {
|
|
|
1061
1061
|
/** Always include this field in the mutation input, even if it is hidden or has not been modified by the user. */
|
|
1062
1062
|
skipDirtyCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
1063
1063
|
skipQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
1064
|
-
validation?: Maybe<
|
|
1064
|
+
validation?: Maybe<GenericFieldValidation>;
|
|
1065
1065
|
visibilityCondition?: Maybe<Scalars['String']['output']>;
|
|
1066
1066
|
};
|
|
1067
1067
|
export type Step = {
|
|
@@ -1319,7 +1319,7 @@ export type ToggleField = IElement & IField & IRowElement & {
|
|
|
1319
1319
|
/** Always include this field in the mutation input, even if it is hidden or has not been modified by the user. */
|
|
1320
1320
|
skipDirtyCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
1321
1321
|
skipQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
1322
|
-
validation?: Maybe<
|
|
1322
|
+
validation?: Maybe<GenericFieldValidation>;
|
|
1323
1323
|
visibilityCondition?: Maybe<Scalars['String']['output']>;
|
|
1324
1324
|
};
|
|
1325
1325
|
export type Toolbar = {
|
|
@@ -1549,7 +1549,7 @@ export type ResolversTypes = {
|
|
|
1549
1549
|
Expandable: ResolverTypeWrapper<Expandable>;
|
|
1550
1550
|
ExternalWidget: ResolverTypeWrapper<ExternalWidget>;
|
|
1551
1551
|
FieldMasking: ResolverTypeWrapper<ResolversUnionTypes<ResolversTypes>['FieldMasking']>;
|
|
1552
|
-
|
|
1552
|
+
GenericFieldValidation: ResolverTypeWrapper<GenericFieldValidation>;
|
|
1553
1553
|
FieldValueType: FieldValueType;
|
|
1554
1554
|
Fields: ResolverTypeWrapper<ResolversUnionTypes<ResolversTypes>['Fields']>;
|
|
1555
1555
|
Float: ResolverTypeWrapper<Scalars['Float']['output']>;
|
|
@@ -1713,7 +1713,7 @@ export type ResolversParentTypes = {
|
|
|
1713
1713
|
Expandable: Expandable;
|
|
1714
1714
|
ExternalWidget: ExternalWidget;
|
|
1715
1715
|
FieldMasking: ResolversUnionTypes<ResolversParentTypes>['FieldMasking'];
|
|
1716
|
-
|
|
1716
|
+
GenericFieldValidation: GenericFieldValidation;
|
|
1717
1717
|
Fields: ResolversUnionTypes<ResolversParentTypes>['Fields'];
|
|
1718
1718
|
Float: Scalars['Float']['output'];
|
|
1719
1719
|
FloatValidationRule: FloatValidationRule;
|
|
@@ -1896,7 +1896,7 @@ export type BooleanFieldResolvers<ContextType = any, ParentType extends Resolver
|
|
|
1896
1896
|
requiredCondition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1897
1897
|
skipDirtyCheck?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1898
1898
|
skipQuery?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1899
|
-
validation?: Resolver<Maybe<ResolversTypes['
|
|
1899
|
+
validation?: Resolver<Maybe<ResolversTypes['GenericFieldValidation']>, ParentType, ContextType>;
|
|
1900
1900
|
visibilityCondition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1901
1901
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1902
1902
|
};
|
|
@@ -2082,7 +2082,7 @@ export type CustomFieldResolvers<ContextType = any, ParentType extends Resolvers
|
|
|
2082
2082
|
requiredCondition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2083
2083
|
skipDirtyCheck?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2084
2084
|
skipQuery?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2085
|
-
validation?: Resolver<Maybe<ResolversTypes['
|
|
2085
|
+
validation?: Resolver<Maybe<ResolversTypes['GenericFieldValidation']>, ParentType, ContextType>;
|
|
2086
2086
|
visibilityCondition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2087
2087
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2088
2088
|
};
|
|
@@ -2148,7 +2148,7 @@ export type DateFieldResolvers<ContextType = any, ParentType extends ResolversPa
|
|
|
2148
2148
|
requiredCondition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2149
2149
|
skipDirtyCheck?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2150
2150
|
skipQuery?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2151
|
-
validation?: Resolver<Maybe<ResolversTypes['
|
|
2151
|
+
validation?: Resolver<Maybe<ResolversTypes['GenericFieldValidation']>, ParentType, ContextType>;
|
|
2152
2152
|
visibilityCondition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2153
2153
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2154
2154
|
};
|
|
@@ -2162,7 +2162,7 @@ export type DateFieldRuleResolvers<ContextType = any, ParentType extends Resolve
|
|
|
2162
2162
|
readonly?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2163
2163
|
required?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2164
2164
|
requiredCondition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2165
|
-
validation?: Resolver<Maybe<ResolversTypes['
|
|
2165
|
+
validation?: Resolver<Maybe<ResolversTypes['GenericFieldValidation']>, ParentType, ContextType>;
|
|
2166
2166
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2167
2167
|
};
|
|
2168
2168
|
export type DateRangeFieldResolvers<ContextType = any, ParentType extends ResolversParentTypes['DateRangeField'] = ResolversParentTypes['DateRangeField']> = {
|
|
@@ -2224,7 +2224,7 @@ export type ExternalWidgetResolvers<ContextType = any, ParentType extends Resolv
|
|
|
2224
2224
|
export type FieldMaskingResolvers<ContextType = any, ParentType extends ResolversParentTypes['FieldMasking'] = ResolversParentTypes['FieldMasking']> = {
|
|
2225
2225
|
__resolveType: TypeResolveFn<'NumericMasking' | 'PatternMasking', ParentType, ContextType>;
|
|
2226
2226
|
};
|
|
2227
|
-
export type FieldValidationResolvers<ContextType = any, ParentType extends ResolversParentTypes['
|
|
2227
|
+
export type FieldValidationResolvers<ContextType = any, ParentType extends ResolversParentTypes['GenericFieldValidation'] = ResolversParentTypes['GenericFieldValidation']> = {
|
|
2228
2228
|
expression?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2229
2229
|
message?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2230
2230
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
@@ -2444,7 +2444,7 @@ export type ListFieldRuleResolvers<ContextType = any, ParentType extends Resolve
|
|
|
2444
2444
|
readonly?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2445
2445
|
required?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2446
2446
|
requiredCondition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2447
|
-
validation?: Resolver<Maybe<ResolversTypes['
|
|
2447
|
+
validation?: Resolver<Maybe<ResolversTypes['GenericFieldValidation']>, ParentType, ContextType>;
|
|
2448
2448
|
validationRules?: Resolver<Maybe<Array<ResolversTypes['ListFieldValidationRule']>>, ParentType, ContextType>;
|
|
2449
2449
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2450
2450
|
};
|
|
@@ -2606,7 +2606,7 @@ export type PhoneFieldResolvers<ContextType = any, ParentType extends ResolversP
|
|
|
2606
2606
|
requiredCondition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2607
2607
|
skipDirtyCheck?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2608
2608
|
skipQuery?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2609
|
-
validation?: Resolver<Maybe<ResolversTypes['
|
|
2609
|
+
validation?: Resolver<Maybe<ResolversTypes['GenericFieldValidation']>, ParentType, ContextType>;
|
|
2610
2610
|
visibilityCondition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2611
2611
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2612
2612
|
};
|
|
@@ -2719,7 +2719,7 @@ export type SelectFieldResolvers<ContextType = any, ParentType extends Resolvers
|
|
|
2719
2719
|
selectOptions?: Resolver<ResolversTypes['ISelectOptions'], ParentType, ContextType>;
|
|
2720
2720
|
skipDirtyCheck?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2721
2721
|
skipQuery?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2722
|
-
validation?: Resolver<Maybe<ResolversTypes['
|
|
2722
|
+
validation?: Resolver<Maybe<ResolversTypes['GenericFieldValidation']>, ParentType, ContextType>;
|
|
2723
2723
|
visibilityCondition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2724
2724
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2725
2725
|
};
|
|
@@ -2760,7 +2760,7 @@ export type StatusChipFieldResolvers<ContextType = any, ParentType extends Resol
|
|
|
2760
2760
|
requiredCondition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2761
2761
|
skipDirtyCheck?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2762
2762
|
skipQuery?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2763
|
-
validation?: Resolver<Maybe<ResolversTypes['
|
|
2763
|
+
validation?: Resolver<Maybe<ResolversTypes['GenericFieldValidation']>, ParentType, ContextType>;
|
|
2764
2764
|
visibilityCondition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2765
2765
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2766
2766
|
};
|
|
@@ -2979,7 +2979,7 @@ export type ToggleFieldResolvers<ContextType = any, ParentType extends Resolvers
|
|
|
2979
2979
|
size?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2980
2980
|
skipDirtyCheck?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2981
2981
|
skipQuery?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2982
|
-
validation?: Resolver<Maybe<ResolversTypes['
|
|
2982
|
+
validation?: Resolver<Maybe<ResolversTypes['GenericFieldValidation']>, ParentType, ContextType>;
|
|
2983
2983
|
visibilityCondition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2984
2984
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2985
2985
|
};
|
|
@@ -3120,7 +3120,7 @@ export type Resolvers<ContextType = any> = {
|
|
|
3120
3120
|
Expandable?: ExpandableResolvers<ContextType>;
|
|
3121
3121
|
ExternalWidget?: ExternalWidgetResolvers<ContextType>;
|
|
3122
3122
|
FieldMasking?: FieldMaskingResolvers<ContextType>;
|
|
3123
|
-
|
|
3123
|
+
GenericFieldValidation?: FieldValidationResolvers<ContextType>;
|
|
3124
3124
|
Fields?: FieldsResolvers<ContextType>;
|
|
3125
3125
|
FloatValidationRule?: FloatValidationRuleResolvers<ContextType>;
|
|
3126
3126
|
FormatValidationRule?: FormatValidationRuleResolvers<ContextType>;
|