@docupace/ihub-config 1.1.20 → 1.1.21-admin.0
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/README.md +182 -182
- package/dist/config-extension.d.ts +12 -0
- package/dist/config-extension.d.ts.map +1 -1
- package/dist/config-extension.js +4 -0
- package/dist/config-extension.js.map +1 -1
- package/dist/config-service.d.ts +9 -2
- package/dist/config-service.d.ts.map +1 -1
- package/dist/config-service.js +77 -16
- package/dist/config-service.js.map +1 -1
- package/dist/mappers/config-mapper.d.ts.map +1 -1
- package/dist/mappers/config-mapper.js +2 -0
- package/dist/mappers/config-mapper.js.map +1 -1
- package/dist/model/graphs/config/common.graphql +7 -7
- package/dist/model/graphs/config/fields.graphql +412 -382
- package/dist/model/graphs/config/menu.graphql +60 -54
- package/dist/model/graphs/config/mutation.graphql +30 -30
- package/dist/model/graphs/config/page.graphql +263 -256
- package/dist/model/graphs/config/panel.graphql +30 -30
- package/dist/model/graphs/config/query.graphql +84 -84
- package/dist/model/graphs/config/rules.graphql +104 -80
- package/dist/model/graphs/config/selectOptions.graphql +48 -47
- package/dist/model/graphs/config/table.graphql +185 -182
- package/dist/model/graphs/config/tests.graphql +16 -16
- package/dist/model/graphs/config/theme.graphql +41 -41
- package/dist/model/graphs/config/ui-components.graphql +10 -10
- package/dist/model/graphs/domains/scalars.graphql +3 -3
- package/dist/model/graphs/filter.graphql +5 -5
- package/dist/model/graphs/schema.graphql +7 -7
- package/dist/types/graphql.d.ts +71 -16
- package/dist/types/graphql.d.ts.map +1 -1
- package/dist/types/graphql.js.map +1 -1
- package/model/graphs/config/common.graphql +7 -7
- package/model/graphs/config/fields.graphql +412 -382
- package/model/graphs/config/menu.graphql +60 -54
- package/model/graphs/config/mutation.graphql +30 -30
- package/model/graphs/config/page.graphql +263 -256
- package/model/graphs/config/panel.graphql +30 -30
- package/model/graphs/config/query.graphql +84 -84
- package/model/graphs/config/rules.graphql +104 -80
- package/model/graphs/config/selectOptions.graphql +48 -47
- package/model/graphs/config/table.graphql +185 -182
- package/model/graphs/config/tests.graphql +16 -16
- package/model/graphs/config/theme.graphql +41 -41
- package/model/graphs/config/ui-components.graphql +10 -10
- package/model/graphs/domains/scalars.graphql +3 -3
- package/model/graphs/filter.graphql +5 -5
- package/model/graphs/schema.graphql +7 -7
- package/package.json +79 -81
package/dist/types/graphql.d.ts
CHANGED
|
@@ -93,6 +93,21 @@ export type AnyPage = Page & {
|
|
|
93
93
|
title?: Maybe<Scalars['String']['output']>;
|
|
94
94
|
};
|
|
95
95
|
export type AnyTable = TabbedTable | Table;
|
|
96
|
+
export type ArrayTotalRule = {
|
|
97
|
+
__typename?: 'ArrayTotalRule';
|
|
98
|
+
/** Determines whether empty data should be considered valid. */
|
|
99
|
+
emptyIsValid?: Maybe<Scalars['Boolean']['output']>;
|
|
100
|
+
/** Expected sum of the selected field values. */
|
|
101
|
+
expectedTotal: Scalars['Int']['output'];
|
|
102
|
+
/** Field from each matching collection element to include in the sum. */
|
|
103
|
+
fieldToSum: Scalars['String']['output'];
|
|
104
|
+
/** Optional condition used to select collection elements. */
|
|
105
|
+
filterCondition?: Maybe<Scalars['String']['output']>;
|
|
106
|
+
message: Scalars['String']['output'];
|
|
107
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
108
|
+
/** Path to the collection whose elements should be validated. */
|
|
109
|
+
path: Scalars['String']['output'];
|
|
110
|
+
};
|
|
96
111
|
export type Base64Image = {
|
|
97
112
|
__typename?: 'Base64Image';
|
|
98
113
|
/** Base64 encoded image data */
|
|
@@ -128,6 +143,7 @@ export type BooleanField = IElement & IField & IRowElement & {
|
|
|
128
143
|
readonly?: Maybe<Scalars['Boolean']['output']>;
|
|
129
144
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
130
145
|
requiredCondition?: Maybe<Scalars['String']['output']>;
|
|
146
|
+
/** Always include this field in the mutation input, even if it is hidden or has not been modified by the user. */
|
|
131
147
|
skipDirtyCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
132
148
|
skipQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
133
149
|
validation?: Maybe<FieldValidation>;
|
|
@@ -148,8 +164,9 @@ export type Breadcrumb = {
|
|
|
148
164
|
__typename?: 'Breadcrumb';
|
|
149
165
|
isLabelExpression?: Maybe<Scalars['Boolean']['output']>;
|
|
150
166
|
isPathExpression?: Maybe<Scalars['Boolean']['output']>;
|
|
151
|
-
label
|
|
167
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
152
168
|
path?: Maybe<Scalars['String']['output']>;
|
|
169
|
+
valuePaths?: Maybe<Array<Scalars['String']['output']>>;
|
|
153
170
|
};
|
|
154
171
|
export type Card = ICard & IElement & IRowElement & {
|
|
155
172
|
__typename?: 'Card';
|
|
@@ -225,6 +242,7 @@ export type ChipSelectWithInputField = IElement & IField & IRowElement & {
|
|
|
225
242
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
226
243
|
requiredCondition?: Maybe<Scalars['String']['output']>;
|
|
227
244
|
selectOptions: ISelectOptions;
|
|
245
|
+
/** Always include this field in the mutation input, even if it is hidden or has not been modified by the user. */
|
|
228
246
|
skipDirtyCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
229
247
|
skipQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
230
248
|
subTitle?: Maybe<Scalars['String']['output']>;
|
|
@@ -314,6 +332,7 @@ export type CustomField = IElement & IField & IRowElement & {
|
|
|
314
332
|
readonly?: Maybe<Scalars['Boolean']['output']>;
|
|
315
333
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
316
334
|
requiredCondition?: Maybe<Scalars['String']['output']>;
|
|
335
|
+
/** Always include this field in the mutation input, even if it is hidden or has not been modified by the user. */
|
|
317
336
|
skipDirtyCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
318
337
|
skipQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
319
338
|
validation?: Maybe<FieldValidation>;
|
|
@@ -403,6 +422,7 @@ export type DateField = IElement & IField & IRowElement & {
|
|
|
403
422
|
readonly?: Maybe<Scalars['Boolean']['output']>;
|
|
404
423
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
405
424
|
requiredCondition?: Maybe<Scalars['String']['output']>;
|
|
425
|
+
/** Always include this field in the mutation input, even if it is hidden or has not been modified by the user. */
|
|
406
426
|
skipDirtyCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
407
427
|
skipQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
408
428
|
validation?: Maybe<FieldValidation>;
|
|
@@ -549,6 +569,7 @@ export type IField = {
|
|
|
549
569
|
readonly?: Maybe<Scalars['Boolean']['output']>;
|
|
550
570
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
551
571
|
requiredCondition?: Maybe<Scalars['String']['output']>;
|
|
572
|
+
/** Always include this field in the mutation input, even if it is hidden or has not been modified by the user. */
|
|
552
573
|
skipDirtyCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
553
574
|
skipQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
554
575
|
visibilityCondition?: Maybe<Scalars['String']['output']>;
|
|
@@ -652,6 +673,7 @@ export type InputField = IElement & IField & IRowElement & {
|
|
|
652
673
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
653
674
|
requiredCondition?: Maybe<Scalars['String']['output']>;
|
|
654
675
|
rows?: Maybe<Scalars['Int']['output']>;
|
|
676
|
+
/** Always include this field in the mutation input, even if it is hidden or has not been modified by the user. */
|
|
655
677
|
skipDirtyCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
656
678
|
skipQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
657
679
|
startAdornment?: Maybe<Scalars['String']['output']>;
|
|
@@ -688,7 +710,12 @@ export type ListFieldRule = IFieldRule & {
|
|
|
688
710
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
689
711
|
requiredCondition?: Maybe<Scalars['String']['output']>;
|
|
690
712
|
validation?: Maybe<FieldValidation>;
|
|
691
|
-
validationRules?: Maybe<Array<
|
|
713
|
+
validationRules?: Maybe<Array<ListFieldValidationRule>>;
|
|
714
|
+
};
|
|
715
|
+
export type ListFieldValidationRule = {
|
|
716
|
+
__typename?: 'ListFieldValidationRule';
|
|
717
|
+
condition?: Maybe<Scalars['String']['output']>;
|
|
718
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
692
719
|
};
|
|
693
720
|
export type LoadWizardByCustodian = {
|
|
694
721
|
__typename?: 'LoadWizardByCustodian';
|
|
@@ -869,6 +896,7 @@ export type PhoneField = IElement & IField & IRowElement & {
|
|
|
869
896
|
readonly?: Maybe<Scalars['Boolean']['output']>;
|
|
870
897
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
871
898
|
requiredCondition?: Maybe<Scalars['String']['output']>;
|
|
899
|
+
/** Always include this field in the mutation input, even if it is hidden or has not been modified by the user. */
|
|
872
900
|
skipDirtyCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
873
901
|
skipQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
874
902
|
validation?: Maybe<FieldValidation>;
|
|
@@ -945,6 +973,8 @@ export type RuleGroup = {
|
|
|
945
973
|
priority?: Maybe<Scalars['Int']['output']>;
|
|
946
974
|
/** Type to apply the role group to. For example IContact or BaseWorkItem */
|
|
947
975
|
type?: Maybe<Scalars['String']['output']>;
|
|
976
|
+
/** Custom validators that are not individual field rules (e.g. validation across multiple fields or collections). */
|
|
977
|
+
validationRules?: Maybe<Array<ValidationRule>>;
|
|
948
978
|
};
|
|
949
979
|
export type RulesQuery = {
|
|
950
980
|
__typename?: 'RulesQuery';
|
|
@@ -987,6 +1017,7 @@ export type SelectField = IElement & IField & IRowElement & {
|
|
|
987
1017
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
988
1018
|
requiredCondition?: Maybe<Scalars['String']['output']>;
|
|
989
1019
|
selectOptions: ISelectOptions;
|
|
1020
|
+
/** Always include this field in the mutation input, even if it is hidden or has not been modified by the user. */
|
|
990
1021
|
skipDirtyCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
991
1022
|
skipQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
992
1023
|
validation?: Maybe<FieldValidation>;
|
|
@@ -1028,6 +1059,7 @@ export type StatusChipField = IElement & IField & IRowElement & {
|
|
|
1028
1059
|
readonly?: Maybe<Scalars['Boolean']['output']>;
|
|
1029
1060
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
1030
1061
|
requiredCondition?: Maybe<Scalars['String']['output']>;
|
|
1062
|
+
/** Always include this field in the mutation input, even if it is hidden or has not been modified by the user. */
|
|
1031
1063
|
skipDirtyCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
1032
1064
|
skipQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
1033
1065
|
validation?: Maybe<FieldValidation>;
|
|
@@ -1285,6 +1317,7 @@ export type ToggleField = IElement & IField & IRowElement & {
|
|
|
1285
1317
|
requiredCondition?: Maybe<Scalars['String']['output']>;
|
|
1286
1318
|
selectOptions: ISelectOptions;
|
|
1287
1319
|
size?: Maybe<Scalars['String']['output']>;
|
|
1320
|
+
/** Always include this field in the mutation input, even if it is hidden or has not been modified by the user. */
|
|
1288
1321
|
skipDirtyCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
1289
1322
|
skipQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
1290
1323
|
validation?: Maybe<FieldValidation>;
|
|
@@ -1311,11 +1344,7 @@ export type UniqueInListRule = {
|
|
|
1311
1344
|
message: Scalars['String']['output'];
|
|
1312
1345
|
value?: Maybe<Scalars['String']['output']>;
|
|
1313
1346
|
};
|
|
1314
|
-
export type ValidationRule =
|
|
1315
|
-
__typename?: 'ValidationRule';
|
|
1316
|
-
condition?: Maybe<Scalars['String']['output']>;
|
|
1317
|
-
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
1318
|
-
};
|
|
1347
|
+
export type ValidationRule = ArrayTotalRule;
|
|
1319
1348
|
export type ValueSelectOptions = ISelectOptions & {
|
|
1320
1349
|
__typename?: 'ValueSelectOptions';
|
|
1321
1350
|
type?: Maybe<Scalars['String']['output']>;
|
|
@@ -1427,6 +1456,7 @@ export type ResolversUnionTypes<RefType extends Record<string, unknown>> = {
|
|
|
1427
1456
|
Fields: (BooleanField) | (DateField) | (DateRangeField) | (Omit<InputField, 'masking'> & {
|
|
1428
1457
|
masking?: Maybe<RefType['FieldMasking']>;
|
|
1429
1458
|
}) | (PhoneField) | (SelectField) | (TextElement) | (ToggleField);
|
|
1459
|
+
ValidationRule: (ArrayTotalRule);
|
|
1430
1460
|
};
|
|
1431
1461
|
/** Mapping of interface types */
|
|
1432
1462
|
export type ResolversInterfaceTypes<RefType extends Record<string, unknown>> = {
|
|
@@ -1474,6 +1504,7 @@ export type ResolversTypes = {
|
|
|
1474
1504
|
ActionButtonVariant: ActionButtonVariant;
|
|
1475
1505
|
AnyPage: ResolverTypeWrapper<AnyPage>;
|
|
1476
1506
|
AnyTable: ResolverTypeWrapper<ResolversUnionTypes<ResolversTypes>['AnyTable']>;
|
|
1507
|
+
ArrayTotalRule: ResolverTypeWrapper<ArrayTotalRule>;
|
|
1477
1508
|
Base64Image: ResolverTypeWrapper<Base64Image>;
|
|
1478
1509
|
BaseWorkItemQueryParams: ResolverTypeWrapper<BaseWorkItemQueryParams>;
|
|
1479
1510
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']['output']>;
|
|
@@ -1547,6 +1578,7 @@ export type ResolversTypes = {
|
|
|
1547
1578
|
ItemValidation: ResolverTypeWrapper<ItemValidation>;
|
|
1548
1579
|
JSON: ResolverTypeWrapper<Scalars['JSON']['output']>;
|
|
1549
1580
|
ListFieldRule: ResolverTypeWrapper<ListFieldRule>;
|
|
1581
|
+
ListFieldValidationRule: ResolverTypeWrapper<ListFieldValidationRule>;
|
|
1550
1582
|
LoadWizardByCustodian: ResolverTypeWrapper<LoadWizardByCustodian>;
|
|
1551
1583
|
MenuInput: MenuInput;
|
|
1552
1584
|
MenuItem: ResolverTypeWrapper<MenuItem>;
|
|
@@ -1574,7 +1606,9 @@ export type ResolversTypes = {
|
|
|
1574
1606
|
fields: Array<ResolversTypes['Fields']>;
|
|
1575
1607
|
}>;
|
|
1576
1608
|
ReportPage: ResolverTypeWrapper<ReportPage>;
|
|
1577
|
-
RuleGroup: ResolverTypeWrapper<RuleGroup
|
|
1609
|
+
RuleGroup: ResolverTypeWrapper<Omit<RuleGroup, 'validationRules'> & {
|
|
1610
|
+
validationRules?: Maybe<Array<ResolversTypes['ValidationRule']>>;
|
|
1611
|
+
}>;
|
|
1578
1612
|
RulesQuery: ResolverTypeWrapper<RulesQuery>;
|
|
1579
1613
|
SeedConfigResult: ResolverTypeWrapper<SeedConfigResult>;
|
|
1580
1614
|
SelectField: ResolverTypeWrapper<SelectField>;
|
|
@@ -1614,7 +1648,7 @@ export type ResolversTypes = {
|
|
|
1614
1648
|
ToolbarColumns: ResolverTypeWrapper<ToolbarColumns>;
|
|
1615
1649
|
TotalsItem: ResolverTypeWrapper<TotalsItem>;
|
|
1616
1650
|
UniqueInListRule: ResolverTypeWrapper<UniqueInListRule>;
|
|
1617
|
-
ValidationRule: ResolverTypeWrapper<ValidationRule>;
|
|
1651
|
+
ValidationRule: ResolverTypeWrapper<ResolversUnionTypes<ResolversTypes>['ValidationRule']>;
|
|
1618
1652
|
ValueSelectOptions: ResolverTypeWrapper<ValueSelectOptions>;
|
|
1619
1653
|
Viewer: ResolverTypeWrapper<Viewer>;
|
|
1620
1654
|
ViewerOptions: ResolverTypeWrapper<ViewerOptions>;
|
|
@@ -1634,6 +1668,7 @@ export type ResolversParentTypes = {
|
|
|
1634
1668
|
ActionButton: ActionButton;
|
|
1635
1669
|
AnyPage: AnyPage;
|
|
1636
1670
|
AnyTable: ResolversUnionTypes<ResolversParentTypes>['AnyTable'];
|
|
1671
|
+
ArrayTotalRule: ArrayTotalRule;
|
|
1637
1672
|
Base64Image: Base64Image;
|
|
1638
1673
|
BaseWorkItemQueryParams: BaseWorkItemQueryParams;
|
|
1639
1674
|
Boolean: Scalars['Boolean']['output'];
|
|
@@ -1706,6 +1741,7 @@ export type ResolversParentTypes = {
|
|
|
1706
1741
|
ItemValidation: ItemValidation;
|
|
1707
1742
|
JSON: Scalars['JSON']['output'];
|
|
1708
1743
|
ListFieldRule: ListFieldRule;
|
|
1744
|
+
ListFieldValidationRule: ListFieldValidationRule;
|
|
1709
1745
|
LoadWizardByCustodian: LoadWizardByCustodian;
|
|
1710
1746
|
MenuInput: MenuInput;
|
|
1711
1747
|
MenuItem: MenuItem;
|
|
@@ -1732,7 +1768,9 @@ export type ResolversParentTypes = {
|
|
|
1732
1768
|
fields: Array<ResolversParentTypes['Fields']>;
|
|
1733
1769
|
};
|
|
1734
1770
|
ReportPage: ReportPage;
|
|
1735
|
-
RuleGroup: RuleGroup
|
|
1771
|
+
RuleGroup: Omit<RuleGroup, 'validationRules'> & {
|
|
1772
|
+
validationRules?: Maybe<Array<ResolversParentTypes['ValidationRule']>>;
|
|
1773
|
+
};
|
|
1736
1774
|
RulesQuery: RulesQuery;
|
|
1737
1775
|
SeedConfigResult: SeedConfigResult;
|
|
1738
1776
|
SelectField: SelectField;
|
|
@@ -1770,7 +1808,7 @@ export type ResolversParentTypes = {
|
|
|
1770
1808
|
ToolbarColumns: ToolbarColumns;
|
|
1771
1809
|
TotalsItem: TotalsItem;
|
|
1772
1810
|
UniqueInListRule: UniqueInListRule;
|
|
1773
|
-
ValidationRule: ValidationRule;
|
|
1811
|
+
ValidationRule: ResolversUnionTypes<ResolversParentTypes>['ValidationRule'];
|
|
1774
1812
|
ValueSelectOptions: ValueSelectOptions;
|
|
1775
1813
|
Viewer: Viewer;
|
|
1776
1814
|
ViewerOptions: ViewerOptions;
|
|
@@ -1816,6 +1854,16 @@ export type AnyPageResolvers<ContextType = any, ParentType extends ResolversPare
|
|
|
1816
1854
|
export type AnyTableResolvers<ContextType = any, ParentType extends ResolversParentTypes['AnyTable'] = ResolversParentTypes['AnyTable']> = {
|
|
1817
1855
|
__resolveType: TypeResolveFn<'TabbedTable' | 'Table', ParentType, ContextType>;
|
|
1818
1856
|
};
|
|
1857
|
+
export type ArrayTotalRuleResolvers<ContextType = any, ParentType extends ResolversParentTypes['ArrayTotalRule'] = ResolversParentTypes['ArrayTotalRule']> = {
|
|
1858
|
+
emptyIsValid?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1859
|
+
expectedTotal?: Resolver<ResolversTypes['Int'], ParentType, ContextType>;
|
|
1860
|
+
fieldToSum?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1861
|
+
filterCondition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1862
|
+
message?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1863
|
+
name?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1864
|
+
path?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1865
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1866
|
+
};
|
|
1819
1867
|
export type Base64ImageResolvers<ContextType = any, ParentType extends ResolversParentTypes['Base64Image'] = ResolversParentTypes['Base64Image']> = {
|
|
1820
1868
|
data?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1821
1869
|
hash?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
@@ -1867,8 +1915,9 @@ export type BooleanFieldRuleResolvers<ContextType = any, ParentType extends Reso
|
|
|
1867
1915
|
export type BreadcrumbResolvers<ContextType = any, ParentType extends ResolversParentTypes['Breadcrumb'] = ResolversParentTypes['Breadcrumb']> = {
|
|
1868
1916
|
isLabelExpression?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1869
1917
|
isPathExpression?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1870
|
-
label?: Resolver<ResolversTypes['String']
|
|
1918
|
+
label?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1871
1919
|
path?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1920
|
+
valuePaths?: Resolver<Maybe<Array<ResolversTypes['String']>>, ParentType, ContextType>;
|
|
1872
1921
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1873
1922
|
};
|
|
1874
1923
|
export type CardResolvers<ContextType = any, ParentType extends ResolversParentTypes['Card'] = ResolversParentTypes['Card']> = {
|
|
@@ -2398,7 +2447,12 @@ export type ListFieldRuleResolvers<ContextType = any, ParentType extends Resolve
|
|
|
2398
2447
|
required?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2399
2448
|
requiredCondition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2400
2449
|
validation?: Resolver<Maybe<ResolversTypes['FieldValidation']>, ParentType, ContextType>;
|
|
2401
|
-
validationRules?: Resolver<Maybe<Array<ResolversTypes['
|
|
2450
|
+
validationRules?: Resolver<Maybe<Array<ResolversTypes['ListFieldValidationRule']>>, ParentType, ContextType>;
|
|
2451
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2452
|
+
};
|
|
2453
|
+
export type ListFieldValidationRuleResolvers<ContextType = any, ParentType extends ResolversParentTypes['ListFieldValidationRule'] = ResolversParentTypes['ListFieldValidationRule']> = {
|
|
2454
|
+
condition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2455
|
+
errorMessage?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2402
2456
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2403
2457
|
};
|
|
2404
2458
|
export type LoadWizardByCustodianResolvers<ContextType = any, ParentType extends ResolversParentTypes['LoadWizardByCustodian'] = ResolversParentTypes['LoadWizardByCustodian']> = {
|
|
@@ -2625,6 +2679,7 @@ export type RuleGroupResolvers<ContextType = any, ParentType extends ResolversPa
|
|
|
2625
2679
|
name?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2626
2680
|
priority?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
2627
2681
|
type?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2682
|
+
validationRules?: Resolver<Maybe<Array<ResolversTypes['ValidationRule']>>, ParentType, ContextType>;
|
|
2628
2683
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2629
2684
|
};
|
|
2630
2685
|
export type RulesQueryResolvers<ContextType = any, ParentType extends ResolversParentTypes['RulesQuery'] = ResolversParentTypes['RulesQuery']> = {
|
|
@@ -2952,9 +3007,7 @@ export type UniqueInListRuleResolvers<ContextType = any, ParentType extends Reso
|
|
|
2952
3007
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2953
3008
|
};
|
|
2954
3009
|
export type ValidationRuleResolvers<ContextType = any, ParentType extends ResolversParentTypes['ValidationRule'] = ResolversParentTypes['ValidationRule']> = {
|
|
2955
|
-
|
|
2956
|
-
errorMessage?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2957
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3010
|
+
__resolveType: TypeResolveFn<'ArrayTotalRule', ParentType, ContextType>;
|
|
2958
3011
|
};
|
|
2959
3012
|
export type ValueSelectOptionsResolvers<ContextType = any, ParentType extends ResolversParentTypes['ValueSelectOptions'] = ResolversParentTypes['ValueSelectOptions']> = {
|
|
2960
3013
|
type?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -3029,6 +3082,7 @@ export type Resolvers<ContextType = any> = {
|
|
|
3029
3082
|
ActionButton?: ActionButtonResolvers<ContextType>;
|
|
3030
3083
|
AnyPage?: AnyPageResolvers<ContextType>;
|
|
3031
3084
|
AnyTable?: AnyTableResolvers<ContextType>;
|
|
3085
|
+
ArrayTotalRule?: ArrayTotalRuleResolvers<ContextType>;
|
|
3032
3086
|
Base64Image?: Base64ImageResolvers<ContextType>;
|
|
3033
3087
|
BaseWorkItemQueryParams?: BaseWorkItemQueryParamsResolvers<ContextType>;
|
|
3034
3088
|
BooleanField?: BooleanFieldResolvers<ContextType>;
|
|
@@ -3091,6 +3145,7 @@ export type Resolvers<ContextType = any> = {
|
|
|
3091
3145
|
ItemValidation?: ItemValidationResolvers<ContextType>;
|
|
3092
3146
|
JSON?: GraphQLScalarType;
|
|
3093
3147
|
ListFieldRule?: ListFieldRuleResolvers<ContextType>;
|
|
3148
|
+
ListFieldValidationRule?: ListFieldValidationRuleResolvers<ContextType>;
|
|
3094
3149
|
LoadWizardByCustodian?: LoadWizardByCustodianResolvers<ContextType>;
|
|
3095
3150
|
MenuItem?: MenuItemResolvers<ContextType>;
|
|
3096
3151
|
MenuQuery?: MenuQueryResolvers<ContextType>;
|