@uniformdev/canvas 19.173.1-alpha.17 → 19.173.2-alpha.8
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 +39 -1462
- package/dist/index.d.ts +39 -1462
- package/dist/index.esm.js +4 -127
- package/dist/index.js +5 -130
- package/dist/index.mjs +4 -127
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
@@ -25,21 +25,6 @@ interface components$8 {
|
|
25
25
|
* this property will have a single value that is shared for all locales
|
26
26
|
*/
|
27
27
|
localizable?: boolean;
|
28
|
-
/**
|
29
|
-
* @description When `localizable` is true, this property controls the default localizability of the property.
|
30
|
-
* true - when the property has no existing value, it will be in 'single value' mode and not store locale specific values
|
31
|
-
* false/undefined - when the property has no existing value, it will store separate values for each enabled locale
|
32
|
-
*
|
33
|
-
* If `localized` is false, this has no effect.
|
34
|
-
*/
|
35
|
-
notLocalizedByDefault?: boolean;
|
36
|
-
/**
|
37
|
-
* @description Enables creating additional conditional values for the parameter based on criteria such as dynamic inputs.
|
38
|
-
* When combined with a localized value, each locale has independent conditional values.
|
39
|
-
*
|
40
|
-
* When not defined, conditional values are not allowed.
|
41
|
-
*/
|
42
|
-
allowConditionalValues?: boolean;
|
43
28
|
/** @description The configuration object for the type (type-specific) */
|
44
29
|
typeConfig?: unknown;
|
45
30
|
};
|
@@ -248,65 +233,6 @@ interface components$8 {
|
|
248
233
|
locales?: {
|
249
234
|
[key: string]: unknown;
|
250
235
|
};
|
251
|
-
conditions?: components$8["schemas"]["ComponentParameterConditions"];
|
252
|
-
/** @description Locale-specific conditional values for this parameter. Keys are locale codes, and values are the `conditions` for that locale. */
|
253
|
-
localesConditions?: {
|
254
|
-
[key: string]: components$8["schemas"]["ComponentParameterConditions"];
|
255
|
-
};
|
256
|
-
};
|
257
|
-
/**
|
258
|
-
* @description Array of alternate values which are based on conditions.
|
259
|
-
*
|
260
|
-
* When requested with an explicit locale parameter, or via the route API:
|
261
|
-
* * Conditions are evaluated sequentially and the first match is used. If a match is found, the conditions are eliminated.
|
262
|
-
* * If no conditions match, the `value` property is used.
|
263
|
-
* * If a condition cannot be evaluated yet (i.e. a client-side criteria), it is left alone.
|
264
|
-
*
|
265
|
-
* When no locale is passed to a non-route API, conditions are not processed and all conditions are returned.
|
266
|
-
*/
|
267
|
-
ComponentParameterConditions: components$8["schemas"]["ComponentParameterConditionalValue"][];
|
268
|
-
/** @description Defines a conditional value for a component parameter */
|
269
|
-
ComponentParameterConditionalValue: {
|
270
|
-
when: components$8["schemas"]["VisibilityCriteriaGroup"];
|
271
|
-
/**
|
272
|
-
* @description The value of the parameter. Any JSON-serializable value is acceptable.
|
273
|
-
* A value of `null` will cause the parameter value to be removed, if it matches.
|
274
|
-
*/
|
275
|
-
value: unknown;
|
276
|
-
/**
|
277
|
-
* @description Unique sequence identifier of the conditional value within the component parameter.
|
278
|
-
* This value must be unique within the conditional values array, and it should not change after a condition is created.
|
279
|
-
*/
|
280
|
-
id: number;
|
281
|
-
};
|
282
|
-
/**
|
283
|
-
* @deprecated
|
284
|
-
* @description beta functionality subject to change
|
285
|
-
*/
|
286
|
-
VisibilityCriteriaGroup: {
|
287
|
-
/**
|
288
|
-
* @description The boolean operator to join the clauses with. Defaults to & if not specified.
|
289
|
-
* @enum {string}
|
290
|
-
*/
|
291
|
-
op?: "&" | "|";
|
292
|
-
clauses: (components$8["schemas"]["VisibilityCriteria"] | components$8["schemas"]["VisibilityCriteriaGroup"])[];
|
293
|
-
};
|
294
|
-
/**
|
295
|
-
* @deprecated
|
296
|
-
* @description beta functionality subject to change
|
297
|
-
*/
|
298
|
-
VisibilityCriteria: {
|
299
|
-
/** @description The rule type to execute */
|
300
|
-
rule: string;
|
301
|
-
/**
|
302
|
-
* @description The source value of the rule.
|
303
|
-
* For rules which have multiple classes of match, for example a dynamic input matches on a named DI, the rule is dynamic input and the DI name is the source.
|
304
|
-
*/
|
305
|
-
source?: string;
|
306
|
-
/** @description The rule-definition-specific operator to test against */
|
307
|
-
op: string;
|
308
|
-
/** @description The value, or if an array several potential values, to test against. In most rules, multiple values are OR'd together ('any of') but this is not a hard requirement. */
|
309
|
-
value: string | string[];
|
310
236
|
};
|
311
237
|
/** @description Defines a connection to a dynamic token on a data resource */
|
312
238
|
DataElementConnectionDefinition: {
|
@@ -1399,21 +1325,6 @@ interface external$i {
|
|
1399
1325
|
* this property will have a single value that is shared for all locales
|
1400
1326
|
*/
|
1401
1327
|
localizable?: boolean;
|
1402
|
-
/**
|
1403
|
-
* @description When `localizable` is true, this property controls the default localizability of the property.
|
1404
|
-
* true - when the property has no existing value, it will be in 'single value' mode and not store locale specific values
|
1405
|
-
* false/undefined - when the property has no existing value, it will store separate values for each enabled locale
|
1406
|
-
*
|
1407
|
-
* If `localized` is false, this has no effect.
|
1408
|
-
*/
|
1409
|
-
notLocalizedByDefault?: boolean;
|
1410
|
-
/**
|
1411
|
-
* @description Enables creating additional conditional values for the parameter based on criteria such as dynamic inputs.
|
1412
|
-
* When combined with a localized value, each locale has independent conditional values.
|
1413
|
-
*
|
1414
|
-
* When not defined, conditional values are not allowed.
|
1415
|
-
*/
|
1416
|
-
allowConditionalValues?: boolean;
|
1417
1328
|
/** @description The configuration object for the type (type-specific) */
|
1418
1329
|
typeConfig?: unknown;
|
1419
1330
|
};
|
@@ -1622,65 +1533,6 @@ interface external$i {
|
|
1622
1533
|
locales?: {
|
1623
1534
|
[key: string]: unknown;
|
1624
1535
|
};
|
1625
|
-
conditions?: external$i["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
1626
|
-
/** @description Locale-specific conditional values for this parameter. Keys are locale codes, and values are the `conditions` for that locale. */
|
1627
|
-
localesConditions?: {
|
1628
|
-
[key: string]: external$i["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
1629
|
-
};
|
1630
|
-
};
|
1631
|
-
/**
|
1632
|
-
* @description Array of alternate values which are based on conditions.
|
1633
|
-
*
|
1634
|
-
* When requested with an explicit locale parameter, or via the route API:
|
1635
|
-
* * Conditions are evaluated sequentially and the first match is used. If a match is found, the conditions are eliminated.
|
1636
|
-
* * If no conditions match, the `value` property is used.
|
1637
|
-
* * If a condition cannot be evaluated yet (i.e. a client-side criteria), it is left alone.
|
1638
|
-
*
|
1639
|
-
* When no locale is passed to a non-route API, conditions are not processed and all conditions are returned.
|
1640
|
-
*/
|
1641
|
-
ComponentParameterConditions: external$i["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditionalValue"][];
|
1642
|
-
/** @description Defines a conditional value for a component parameter */
|
1643
|
-
ComponentParameterConditionalValue: {
|
1644
|
-
when: external$i["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"];
|
1645
|
-
/**
|
1646
|
-
* @description The value of the parameter. Any JSON-serializable value is acceptable.
|
1647
|
-
* A value of `null` will cause the parameter value to be removed, if it matches.
|
1648
|
-
*/
|
1649
|
-
value: unknown;
|
1650
|
-
/**
|
1651
|
-
* @description Unique sequence identifier of the conditional value within the component parameter.
|
1652
|
-
* This value must be unique within the conditional values array, and it should not change after a condition is created.
|
1653
|
-
*/
|
1654
|
-
id: number;
|
1655
|
-
};
|
1656
|
-
/**
|
1657
|
-
* @deprecated
|
1658
|
-
* @description beta functionality subject to change
|
1659
|
-
*/
|
1660
|
-
VisibilityCriteriaGroup: {
|
1661
|
-
/**
|
1662
|
-
* @description The boolean operator to join the clauses with. Defaults to & if not specified.
|
1663
|
-
* @enum {string}
|
1664
|
-
*/
|
1665
|
-
op?: "&" | "|";
|
1666
|
-
clauses: (external$i["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteria"] | external$i["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"])[];
|
1667
|
-
};
|
1668
|
-
/**
|
1669
|
-
* @deprecated
|
1670
|
-
* @description beta functionality subject to change
|
1671
|
-
*/
|
1672
|
-
VisibilityCriteria: {
|
1673
|
-
/** @description The rule type to execute */
|
1674
|
-
rule: string;
|
1675
|
-
/**
|
1676
|
-
* @description The source value of the rule.
|
1677
|
-
* For rules which have multiple classes of match, for example a dynamic input matches on a named DI, the rule is dynamic input and the DI name is the source.
|
1678
|
-
*/
|
1679
|
-
source?: string;
|
1680
|
-
/** @description The rule-definition-specific operator to test against */
|
1681
|
-
op: string;
|
1682
|
-
/** @description The value, or if an array several potential values, to test against. In most rules, multiple values are OR'd together ('any of') but this is not a hard requirement. */
|
1683
|
-
value: string | string[];
|
1684
1536
|
};
|
1685
1537
|
/** @description Defines a connection to a dynamic token on a data resource */
|
1686
1538
|
DataElementConnectionDefinition: {
|
@@ -2772,21 +2624,6 @@ interface external$h {
|
|
2772
2624
|
* this property will have a single value that is shared for all locales
|
2773
2625
|
*/
|
2774
2626
|
localizable?: boolean;
|
2775
|
-
/**
|
2776
|
-
* @description When `localizable` is true, this property controls the default localizability of the property.
|
2777
|
-
* true - when the property has no existing value, it will be in 'single value' mode and not store locale specific values
|
2778
|
-
* false/undefined - when the property has no existing value, it will store separate values for each enabled locale
|
2779
|
-
*
|
2780
|
-
* If `localized` is false, this has no effect.
|
2781
|
-
*/
|
2782
|
-
notLocalizedByDefault?: boolean;
|
2783
|
-
/**
|
2784
|
-
* @description Enables creating additional conditional values for the parameter based on criteria such as dynamic inputs.
|
2785
|
-
* When combined with a localized value, each locale has independent conditional values.
|
2786
|
-
*
|
2787
|
-
* When not defined, conditional values are not allowed.
|
2788
|
-
*/
|
2789
|
-
allowConditionalValues?: boolean;
|
2790
2627
|
/** @description The configuration object for the type (type-specific) */
|
2791
2628
|
typeConfig?: unknown;
|
2792
2629
|
};
|
@@ -2995,65 +2832,6 @@ interface external$h {
|
|
2995
2832
|
locales?: {
|
2996
2833
|
[key: string]: unknown;
|
2997
2834
|
};
|
2998
|
-
conditions?: external$h["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
2999
|
-
/** @description Locale-specific conditional values for this parameter. Keys are locale codes, and values are the `conditions` for that locale. */
|
3000
|
-
localesConditions?: {
|
3001
|
-
[key: string]: external$h["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
3002
|
-
};
|
3003
|
-
};
|
3004
|
-
/**
|
3005
|
-
* @description Array of alternate values which are based on conditions.
|
3006
|
-
*
|
3007
|
-
* When requested with an explicit locale parameter, or via the route API:
|
3008
|
-
* * Conditions are evaluated sequentially and the first match is used. If a match is found, the conditions are eliminated.
|
3009
|
-
* * If no conditions match, the `value` property is used.
|
3010
|
-
* * If a condition cannot be evaluated yet (i.e. a client-side criteria), it is left alone.
|
3011
|
-
*
|
3012
|
-
* When no locale is passed to a non-route API, conditions are not processed and all conditions are returned.
|
3013
|
-
*/
|
3014
|
-
ComponentParameterConditions: external$h["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditionalValue"][];
|
3015
|
-
/** @description Defines a conditional value for a component parameter */
|
3016
|
-
ComponentParameterConditionalValue: {
|
3017
|
-
when: external$h["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"];
|
3018
|
-
/**
|
3019
|
-
* @description The value of the parameter. Any JSON-serializable value is acceptable.
|
3020
|
-
* A value of `null` will cause the parameter value to be removed, if it matches.
|
3021
|
-
*/
|
3022
|
-
value: unknown;
|
3023
|
-
/**
|
3024
|
-
* @description Unique sequence identifier of the conditional value within the component parameter.
|
3025
|
-
* This value must be unique within the conditional values array, and it should not change after a condition is created.
|
3026
|
-
*/
|
3027
|
-
id: number;
|
3028
|
-
};
|
3029
|
-
/**
|
3030
|
-
* @deprecated
|
3031
|
-
* @description beta functionality subject to change
|
3032
|
-
*/
|
3033
|
-
VisibilityCriteriaGroup: {
|
3034
|
-
/**
|
3035
|
-
* @description The boolean operator to join the clauses with. Defaults to & if not specified.
|
3036
|
-
* @enum {string}
|
3037
|
-
*/
|
3038
|
-
op?: "&" | "|";
|
3039
|
-
clauses: (external$h["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteria"] | external$h["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"])[];
|
3040
|
-
};
|
3041
|
-
/**
|
3042
|
-
* @deprecated
|
3043
|
-
* @description beta functionality subject to change
|
3044
|
-
*/
|
3045
|
-
VisibilityCriteria: {
|
3046
|
-
/** @description The rule type to execute */
|
3047
|
-
rule: string;
|
3048
|
-
/**
|
3049
|
-
* @description The source value of the rule.
|
3050
|
-
* For rules which have multiple classes of match, for example a dynamic input matches on a named DI, the rule is dynamic input and the DI name is the source.
|
3051
|
-
*/
|
3052
|
-
source?: string;
|
3053
|
-
/** @description The rule-definition-specific operator to test against */
|
3054
|
-
op: string;
|
3055
|
-
/** @description The value, or if an array several potential values, to test against. In most rules, multiple values are OR'd together ('any of') but this is not a hard requirement. */
|
3056
|
-
value: string | string[];
|
3057
2835
|
};
|
3058
2836
|
/** @description Defines a connection to a dynamic token on a data resource */
|
3059
2837
|
DataElementConnectionDefinition: {
|
@@ -4234,21 +4012,6 @@ interface external$g {
|
|
4234
4012
|
* this property will have a single value that is shared for all locales
|
4235
4013
|
*/
|
4236
4014
|
localizable?: boolean;
|
4237
|
-
/**
|
4238
|
-
* @description When `localizable` is true, this property controls the default localizability of the property.
|
4239
|
-
* true - when the property has no existing value, it will be in 'single value' mode and not store locale specific values
|
4240
|
-
* false/undefined - when the property has no existing value, it will store separate values for each enabled locale
|
4241
|
-
*
|
4242
|
-
* If `localized` is false, this has no effect.
|
4243
|
-
*/
|
4244
|
-
notLocalizedByDefault?: boolean;
|
4245
|
-
/**
|
4246
|
-
* @description Enables creating additional conditional values for the parameter based on criteria such as dynamic inputs.
|
4247
|
-
* When combined with a localized value, each locale has independent conditional values.
|
4248
|
-
*
|
4249
|
-
* When not defined, conditional values are not allowed.
|
4250
|
-
*/
|
4251
|
-
allowConditionalValues?: boolean;
|
4252
4015
|
/** @description The configuration object for the type (type-specific) */
|
4253
4016
|
typeConfig?: unknown;
|
4254
4017
|
};
|
@@ -4457,65 +4220,6 @@ interface external$g {
|
|
4457
4220
|
locales?: {
|
4458
4221
|
[key: string]: unknown;
|
4459
4222
|
};
|
4460
|
-
conditions?: external$g["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
4461
|
-
/** @description Locale-specific conditional values for this parameter. Keys are locale codes, and values are the `conditions` for that locale. */
|
4462
|
-
localesConditions?: {
|
4463
|
-
[key: string]: external$g["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
4464
|
-
};
|
4465
|
-
};
|
4466
|
-
/**
|
4467
|
-
* @description Array of alternate values which are based on conditions.
|
4468
|
-
*
|
4469
|
-
* When requested with an explicit locale parameter, or via the route API:
|
4470
|
-
* * Conditions are evaluated sequentially and the first match is used. If a match is found, the conditions are eliminated.
|
4471
|
-
* * If no conditions match, the `value` property is used.
|
4472
|
-
* * If a condition cannot be evaluated yet (i.e. a client-side criteria), it is left alone.
|
4473
|
-
*
|
4474
|
-
* When no locale is passed to a non-route API, conditions are not processed and all conditions are returned.
|
4475
|
-
*/
|
4476
|
-
ComponentParameterConditions: external$g["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditionalValue"][];
|
4477
|
-
/** @description Defines a conditional value for a component parameter */
|
4478
|
-
ComponentParameterConditionalValue: {
|
4479
|
-
when: external$g["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"];
|
4480
|
-
/**
|
4481
|
-
* @description The value of the parameter. Any JSON-serializable value is acceptable.
|
4482
|
-
* A value of `null` will cause the parameter value to be removed, if it matches.
|
4483
|
-
*/
|
4484
|
-
value: unknown;
|
4485
|
-
/**
|
4486
|
-
* @description Unique sequence identifier of the conditional value within the component parameter.
|
4487
|
-
* This value must be unique within the conditional values array, and it should not change after a condition is created.
|
4488
|
-
*/
|
4489
|
-
id: number;
|
4490
|
-
};
|
4491
|
-
/**
|
4492
|
-
* @deprecated
|
4493
|
-
* @description beta functionality subject to change
|
4494
|
-
*/
|
4495
|
-
VisibilityCriteriaGroup: {
|
4496
|
-
/**
|
4497
|
-
* @description The boolean operator to join the clauses with. Defaults to & if not specified.
|
4498
|
-
* @enum {string}
|
4499
|
-
*/
|
4500
|
-
op?: "&" | "|";
|
4501
|
-
clauses: (external$g["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteria"] | external$g["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"])[];
|
4502
|
-
};
|
4503
|
-
/**
|
4504
|
-
* @deprecated
|
4505
|
-
* @description beta functionality subject to change
|
4506
|
-
*/
|
4507
|
-
VisibilityCriteria: {
|
4508
|
-
/** @description The rule type to execute */
|
4509
|
-
rule: string;
|
4510
|
-
/**
|
4511
|
-
* @description The source value of the rule.
|
4512
|
-
* For rules which have multiple classes of match, for example a dynamic input matches on a named DI, the rule is dynamic input and the DI name is the source.
|
4513
|
-
*/
|
4514
|
-
source?: string;
|
4515
|
-
/** @description The rule-definition-specific operator to test against */
|
4516
|
-
op: string;
|
4517
|
-
/** @description The value, or if an array several potential values, to test against. In most rules, multiple values are OR'd together ('any of') but this is not a hard requirement. */
|
4518
|
-
value: string | string[];
|
4519
4223
|
};
|
4520
4224
|
/** @description Defines a connection to a dynamic token on a data resource */
|
4521
4225
|
DataElementConnectionDefinition: {
|
@@ -5847,6 +5551,11 @@ interface components$7 {
|
|
5847
5551
|
workflowStageId?: string;
|
5848
5552
|
/** @description The full definition of the assigned workflow, if any, including stages, permissions, etc. Only returned when `withWorkflowDefinition` is true */
|
5849
5553
|
workflowDefinition?: external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["WorkflowDefinition"];
|
5554
|
+
/**
|
5555
|
+
* @description Only present if an imcomplete entry is returned; indicates reason for stubbing
|
5556
|
+
* @enum {string}
|
5557
|
+
*/
|
5558
|
+
stubType?: "missing" | "tooDeep";
|
5850
5559
|
};
|
5851
5560
|
EntryListResponse: {
|
5852
5561
|
entries: components$7["schemas"]["EntryApiResponse"][];
|
@@ -6025,21 +5734,6 @@ interface external$f {
|
|
6025
5734
|
* this property will have a single value that is shared for all locales
|
6026
5735
|
*/
|
6027
5736
|
localizable?: boolean;
|
6028
|
-
/**
|
6029
|
-
* @description When `localizable` is true, this property controls the default localizability of the property.
|
6030
|
-
* true - when the property has no existing value, it will be in 'single value' mode and not store locale specific values
|
6031
|
-
* false/undefined - when the property has no existing value, it will store separate values for each enabled locale
|
6032
|
-
*
|
6033
|
-
* If `localized` is false, this has no effect.
|
6034
|
-
*/
|
6035
|
-
notLocalizedByDefault?: boolean;
|
6036
|
-
/**
|
6037
|
-
* @description Enables creating additional conditional values for the parameter based on criteria such as dynamic inputs.
|
6038
|
-
* When combined with a localized value, each locale has independent conditional values.
|
6039
|
-
*
|
6040
|
-
* When not defined, conditional values are not allowed.
|
6041
|
-
*/
|
6042
|
-
allowConditionalValues?: boolean;
|
6043
5737
|
/** @description The configuration object for the type (type-specific) */
|
6044
5738
|
typeConfig?: unknown;
|
6045
5739
|
};
|
@@ -6248,65 +5942,6 @@ interface external$f {
|
|
6248
5942
|
locales?: {
|
6249
5943
|
[key: string]: unknown;
|
6250
5944
|
};
|
6251
|
-
conditions?: external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
6252
|
-
/** @description Locale-specific conditional values for this parameter. Keys are locale codes, and values are the `conditions` for that locale. */
|
6253
|
-
localesConditions?: {
|
6254
|
-
[key: string]: external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
6255
|
-
};
|
6256
|
-
};
|
6257
|
-
/**
|
6258
|
-
* @description Array of alternate values which are based on conditions.
|
6259
|
-
*
|
6260
|
-
* When requested with an explicit locale parameter, or via the route API:
|
6261
|
-
* * Conditions are evaluated sequentially and the first match is used. If a match is found, the conditions are eliminated.
|
6262
|
-
* * If no conditions match, the `value` property is used.
|
6263
|
-
* * If a condition cannot be evaluated yet (i.e. a client-side criteria), it is left alone.
|
6264
|
-
*
|
6265
|
-
* When no locale is passed to a non-route API, conditions are not processed and all conditions are returned.
|
6266
|
-
*/
|
6267
|
-
ComponentParameterConditions: external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditionalValue"][];
|
6268
|
-
/** @description Defines a conditional value for a component parameter */
|
6269
|
-
ComponentParameterConditionalValue: {
|
6270
|
-
when: external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"];
|
6271
|
-
/**
|
6272
|
-
* @description The value of the parameter. Any JSON-serializable value is acceptable.
|
6273
|
-
* A value of `null` will cause the parameter value to be removed, if it matches.
|
6274
|
-
*/
|
6275
|
-
value: unknown;
|
6276
|
-
/**
|
6277
|
-
* @description Unique sequence identifier of the conditional value within the component parameter.
|
6278
|
-
* This value must be unique within the conditional values array, and it should not change after a condition is created.
|
6279
|
-
*/
|
6280
|
-
id: number;
|
6281
|
-
};
|
6282
|
-
/**
|
6283
|
-
* @deprecated
|
6284
|
-
* @description beta functionality subject to change
|
6285
|
-
*/
|
6286
|
-
VisibilityCriteriaGroup: {
|
6287
|
-
/**
|
6288
|
-
* @description The boolean operator to join the clauses with. Defaults to & if not specified.
|
6289
|
-
* @enum {string}
|
6290
|
-
*/
|
6291
|
-
op?: "&" | "|";
|
6292
|
-
clauses: (external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteria"] | external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"])[];
|
6293
|
-
};
|
6294
|
-
/**
|
6295
|
-
* @deprecated
|
6296
|
-
* @description beta functionality subject to change
|
6297
|
-
*/
|
6298
|
-
VisibilityCriteria: {
|
6299
|
-
/** @description The rule type to execute */
|
6300
|
-
rule: string;
|
6301
|
-
/**
|
6302
|
-
* @description The source value of the rule.
|
6303
|
-
* For rules which have multiple classes of match, for example a dynamic input matches on a named DI, the rule is dynamic input and the DI name is the source.
|
6304
|
-
*/
|
6305
|
-
source?: string;
|
6306
|
-
/** @description The rule-definition-specific operator to test against */
|
6307
|
-
op: string;
|
6308
|
-
/** @description The value, or if an array several potential values, to test against. In most rules, multiple values are OR'd together ('any of') but this is not a hard requirement. */
|
6309
|
-
value: string | string[];
|
6310
5945
|
};
|
6311
5946
|
/** @description Defines a connection to a dynamic token on a data resource */
|
6312
5947
|
DataElementConnectionDefinition: {
|
@@ -7328,21 +6963,6 @@ interface external$e {
|
|
7328
6963
|
* this property will have a single value that is shared for all locales
|
7329
6964
|
*/
|
7330
6965
|
localizable?: boolean;
|
7331
|
-
/**
|
7332
|
-
* @description When `localizable` is true, this property controls the default localizability of the property.
|
7333
|
-
* true - when the property has no existing value, it will be in 'single value' mode and not store locale specific values
|
7334
|
-
* false/undefined - when the property has no existing value, it will store separate values for each enabled locale
|
7335
|
-
*
|
7336
|
-
* If `localized` is false, this has no effect.
|
7337
|
-
*/
|
7338
|
-
notLocalizedByDefault?: boolean;
|
7339
|
-
/**
|
7340
|
-
* @description Enables creating additional conditional values for the parameter based on criteria such as dynamic inputs.
|
7341
|
-
* When combined with a localized value, each locale has independent conditional values.
|
7342
|
-
*
|
7343
|
-
* When not defined, conditional values are not allowed.
|
7344
|
-
*/
|
7345
|
-
allowConditionalValues?: boolean;
|
7346
6966
|
/** @description The configuration object for the type (type-specific) */
|
7347
6967
|
typeConfig?: unknown;
|
7348
6968
|
};
|
@@ -7551,65 +7171,6 @@ interface external$e {
|
|
7551
7171
|
locales?: {
|
7552
7172
|
[key: string]: unknown;
|
7553
7173
|
};
|
7554
|
-
conditions?: external$e["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
7555
|
-
/** @description Locale-specific conditional values for this parameter. Keys are locale codes, and values are the `conditions` for that locale. */
|
7556
|
-
localesConditions?: {
|
7557
|
-
[key: string]: external$e["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
7558
|
-
};
|
7559
|
-
};
|
7560
|
-
/**
|
7561
|
-
* @description Array of alternate values which are based on conditions.
|
7562
|
-
*
|
7563
|
-
* When requested with an explicit locale parameter, or via the route API:
|
7564
|
-
* * Conditions are evaluated sequentially and the first match is used. If a match is found, the conditions are eliminated.
|
7565
|
-
* * If no conditions match, the `value` property is used.
|
7566
|
-
* * If a condition cannot be evaluated yet (i.e. a client-side criteria), it is left alone.
|
7567
|
-
*
|
7568
|
-
* When no locale is passed to a non-route API, conditions are not processed and all conditions are returned.
|
7569
|
-
*/
|
7570
|
-
ComponentParameterConditions: external$e["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditionalValue"][];
|
7571
|
-
/** @description Defines a conditional value for a component parameter */
|
7572
|
-
ComponentParameterConditionalValue: {
|
7573
|
-
when: external$e["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"];
|
7574
|
-
/**
|
7575
|
-
* @description The value of the parameter. Any JSON-serializable value is acceptable.
|
7576
|
-
* A value of `null` will cause the parameter value to be removed, if it matches.
|
7577
|
-
*/
|
7578
|
-
value: unknown;
|
7579
|
-
/**
|
7580
|
-
* @description Unique sequence identifier of the conditional value within the component parameter.
|
7581
|
-
* This value must be unique within the conditional values array, and it should not change after a condition is created.
|
7582
|
-
*/
|
7583
|
-
id: number;
|
7584
|
-
};
|
7585
|
-
/**
|
7586
|
-
* @deprecated
|
7587
|
-
* @description beta functionality subject to change
|
7588
|
-
*/
|
7589
|
-
VisibilityCriteriaGroup: {
|
7590
|
-
/**
|
7591
|
-
* @description The boolean operator to join the clauses with. Defaults to & if not specified.
|
7592
|
-
* @enum {string}
|
7593
|
-
*/
|
7594
|
-
op?: "&" | "|";
|
7595
|
-
clauses: (external$e["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteria"] | external$e["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"])[];
|
7596
|
-
};
|
7597
|
-
/**
|
7598
|
-
* @deprecated
|
7599
|
-
* @description beta functionality subject to change
|
7600
|
-
*/
|
7601
|
-
VisibilityCriteria: {
|
7602
|
-
/** @description The rule type to execute */
|
7603
|
-
rule: string;
|
7604
|
-
/**
|
7605
|
-
* @description The source value of the rule.
|
7606
|
-
* For rules which have multiple classes of match, for example a dynamic input matches on a named DI, the rule is dynamic input and the DI name is the source.
|
7607
|
-
*/
|
7608
|
-
source?: string;
|
7609
|
-
/** @description The rule-definition-specific operator to test against */
|
7610
|
-
op: string;
|
7611
|
-
/** @description The value, or if an array several potential values, to test against. In most rules, multiple values are OR'd together ('any of') but this is not a hard requirement. */
|
7612
|
-
value: string | string[];
|
7613
7174
|
};
|
7614
7175
|
/** @description Defines a connection to a dynamic token on a data resource */
|
7615
7176
|
DataElementConnectionDefinition: {
|
@@ -8688,21 +8249,6 @@ interface external$d {
|
|
8688
8249
|
* this property will have a single value that is shared for all locales
|
8689
8250
|
*/
|
8690
8251
|
localizable?: boolean;
|
8691
|
-
/**
|
8692
|
-
* @description When `localizable` is true, this property controls the default localizability of the property.
|
8693
|
-
* true - when the property has no existing value, it will be in 'single value' mode and not store locale specific values
|
8694
|
-
* false/undefined - when the property has no existing value, it will store separate values for each enabled locale
|
8695
|
-
*
|
8696
|
-
* If `localized` is false, this has no effect.
|
8697
|
-
*/
|
8698
|
-
notLocalizedByDefault?: boolean;
|
8699
|
-
/**
|
8700
|
-
* @description Enables creating additional conditional values for the parameter based on criteria such as dynamic inputs.
|
8701
|
-
* When combined with a localized value, each locale has independent conditional values.
|
8702
|
-
*
|
8703
|
-
* When not defined, conditional values are not allowed.
|
8704
|
-
*/
|
8705
|
-
allowConditionalValues?: boolean;
|
8706
8252
|
/** @description The configuration object for the type (type-specific) */
|
8707
8253
|
typeConfig?: unknown;
|
8708
8254
|
};
|
@@ -8911,65 +8457,6 @@ interface external$d {
|
|
8911
8457
|
locales?: {
|
8912
8458
|
[key: string]: unknown;
|
8913
8459
|
};
|
8914
|
-
conditions?: external$d["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
8915
|
-
/** @description Locale-specific conditional values for this parameter. Keys are locale codes, and values are the `conditions` for that locale. */
|
8916
|
-
localesConditions?: {
|
8917
|
-
[key: string]: external$d["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
8918
|
-
};
|
8919
|
-
};
|
8920
|
-
/**
|
8921
|
-
* @description Array of alternate values which are based on conditions.
|
8922
|
-
*
|
8923
|
-
* When requested with an explicit locale parameter, or via the route API:
|
8924
|
-
* * Conditions are evaluated sequentially and the first match is used. If a match is found, the conditions are eliminated.
|
8925
|
-
* * If no conditions match, the `value` property is used.
|
8926
|
-
* * If a condition cannot be evaluated yet (i.e. a client-side criteria), it is left alone.
|
8927
|
-
*
|
8928
|
-
* When no locale is passed to a non-route API, conditions are not processed and all conditions are returned.
|
8929
|
-
*/
|
8930
|
-
ComponentParameterConditions: external$d["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditionalValue"][];
|
8931
|
-
/** @description Defines a conditional value for a component parameter */
|
8932
|
-
ComponentParameterConditionalValue: {
|
8933
|
-
when: external$d["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"];
|
8934
|
-
/**
|
8935
|
-
* @description The value of the parameter. Any JSON-serializable value is acceptable.
|
8936
|
-
* A value of `null` will cause the parameter value to be removed, if it matches.
|
8937
|
-
*/
|
8938
|
-
value: unknown;
|
8939
|
-
/**
|
8940
|
-
* @description Unique sequence identifier of the conditional value within the component parameter.
|
8941
|
-
* This value must be unique within the conditional values array, and it should not change after a condition is created.
|
8942
|
-
*/
|
8943
|
-
id: number;
|
8944
|
-
};
|
8945
|
-
/**
|
8946
|
-
* @deprecated
|
8947
|
-
* @description beta functionality subject to change
|
8948
|
-
*/
|
8949
|
-
VisibilityCriteriaGroup: {
|
8950
|
-
/**
|
8951
|
-
* @description The boolean operator to join the clauses with. Defaults to & if not specified.
|
8952
|
-
* @enum {string}
|
8953
|
-
*/
|
8954
|
-
op?: "&" | "|";
|
8955
|
-
clauses: (external$d["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteria"] | external$d["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"])[];
|
8956
|
-
};
|
8957
|
-
/**
|
8958
|
-
* @deprecated
|
8959
|
-
* @description beta functionality subject to change
|
8960
|
-
*/
|
8961
|
-
VisibilityCriteria: {
|
8962
|
-
/** @description The rule type to execute */
|
8963
|
-
rule: string;
|
8964
|
-
/**
|
8965
|
-
* @description The source value of the rule.
|
8966
|
-
* For rules which have multiple classes of match, for example a dynamic input matches on a named DI, the rule is dynamic input and the DI name is the source.
|
8967
|
-
*/
|
8968
|
-
source?: string;
|
8969
|
-
/** @description The rule-definition-specific operator to test against */
|
8970
|
-
op: string;
|
8971
|
-
/** @description The value, or if an array several potential values, to test against. In most rules, multiple values are OR'd together ('any of') but this is not a hard requirement. */
|
8972
|
-
value: string | string[];
|
8973
8460
|
};
|
8974
8461
|
/** @description Defines a connection to a dynamic token on a data resource */
|
8975
8462
|
DataElementConnectionDefinition: {
|
@@ -9985,21 +9472,6 @@ interface external$c {
|
|
9985
9472
|
* this property will have a single value that is shared for all locales
|
9986
9473
|
*/
|
9987
9474
|
localizable?: boolean;
|
9988
|
-
/**
|
9989
|
-
* @description When `localizable` is true, this property controls the default localizability of the property.
|
9990
|
-
* true - when the property has no existing value, it will be in 'single value' mode and not store locale specific values
|
9991
|
-
* false/undefined - when the property has no existing value, it will store separate values for each enabled locale
|
9992
|
-
*
|
9993
|
-
* If `localized` is false, this has no effect.
|
9994
|
-
*/
|
9995
|
-
notLocalizedByDefault?: boolean;
|
9996
|
-
/**
|
9997
|
-
* @description Enables creating additional conditional values for the parameter based on criteria such as dynamic inputs.
|
9998
|
-
* When combined with a localized value, each locale has independent conditional values.
|
9999
|
-
*
|
10000
|
-
* When not defined, conditional values are not allowed.
|
10001
|
-
*/
|
10002
|
-
allowConditionalValues?: boolean;
|
10003
9475
|
/** @description The configuration object for the type (type-specific) */
|
10004
9476
|
typeConfig?: unknown;
|
10005
9477
|
};
|
@@ -10208,65 +9680,6 @@ interface external$c {
|
|
10208
9680
|
locales?: {
|
10209
9681
|
[key: string]: unknown;
|
10210
9682
|
};
|
10211
|
-
conditions?: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
10212
|
-
/** @description Locale-specific conditional values for this parameter. Keys are locale codes, and values are the `conditions` for that locale. */
|
10213
|
-
localesConditions?: {
|
10214
|
-
[key: string]: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
10215
|
-
};
|
10216
|
-
};
|
10217
|
-
/**
|
10218
|
-
* @description Array of alternate values which are based on conditions.
|
10219
|
-
*
|
10220
|
-
* When requested with an explicit locale parameter, or via the route API:
|
10221
|
-
* * Conditions are evaluated sequentially and the first match is used. If a match is found, the conditions are eliminated.
|
10222
|
-
* * If no conditions match, the `value` property is used.
|
10223
|
-
* * If a condition cannot be evaluated yet (i.e. a client-side criteria), it is left alone.
|
10224
|
-
*
|
10225
|
-
* When no locale is passed to a non-route API, conditions are not processed and all conditions are returned.
|
10226
|
-
*/
|
10227
|
-
ComponentParameterConditions: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditionalValue"][];
|
10228
|
-
/** @description Defines a conditional value for a component parameter */
|
10229
|
-
ComponentParameterConditionalValue: {
|
10230
|
-
when: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"];
|
10231
|
-
/**
|
10232
|
-
* @description The value of the parameter. Any JSON-serializable value is acceptable.
|
10233
|
-
* A value of `null` will cause the parameter value to be removed, if it matches.
|
10234
|
-
*/
|
10235
|
-
value: unknown;
|
10236
|
-
/**
|
10237
|
-
* @description Unique sequence identifier of the conditional value within the component parameter.
|
10238
|
-
* This value must be unique within the conditional values array, and it should not change after a condition is created.
|
10239
|
-
*/
|
10240
|
-
id: number;
|
10241
|
-
};
|
10242
|
-
/**
|
10243
|
-
* @deprecated
|
10244
|
-
* @description beta functionality subject to change
|
10245
|
-
*/
|
10246
|
-
VisibilityCriteriaGroup: {
|
10247
|
-
/**
|
10248
|
-
* @description The boolean operator to join the clauses with. Defaults to & if not specified.
|
10249
|
-
* @enum {string}
|
10250
|
-
*/
|
10251
|
-
op?: "&" | "|";
|
10252
|
-
clauses: (external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteria"] | external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"])[];
|
10253
|
-
};
|
10254
|
-
/**
|
10255
|
-
* @deprecated
|
10256
|
-
* @description beta functionality subject to change
|
10257
|
-
*/
|
10258
|
-
VisibilityCriteria: {
|
10259
|
-
/** @description The rule type to execute */
|
10260
|
-
rule: string;
|
10261
|
-
/**
|
10262
|
-
* @description The source value of the rule.
|
10263
|
-
* For rules which have multiple classes of match, for example a dynamic input matches on a named DI, the rule is dynamic input and the DI name is the source.
|
10264
|
-
*/
|
10265
|
-
source?: string;
|
10266
|
-
/** @description The rule-definition-specific operator to test against */
|
10267
|
-
op: string;
|
10268
|
-
/** @description The value, or if an array several potential values, to test against. In most rules, multiple values are OR'd together ('any of') but this is not a hard requirement. */
|
10269
|
-
value: string | string[];
|
10270
9683
|
};
|
10271
9684
|
/** @description Defines a connection to a dynamic token on a data resource */
|
10272
9685
|
DataElementConnectionDefinition: {
|
@@ -11317,21 +10730,6 @@ interface external$b {
|
|
11317
10730
|
* this property will have a single value that is shared for all locales
|
11318
10731
|
*/
|
11319
10732
|
localizable?: boolean;
|
11320
|
-
/**
|
11321
|
-
* @description When `localizable` is true, this property controls the default localizability of the property.
|
11322
|
-
* true - when the property has no existing value, it will be in 'single value' mode and not store locale specific values
|
11323
|
-
* false/undefined - when the property has no existing value, it will store separate values for each enabled locale
|
11324
|
-
*
|
11325
|
-
* If `localized` is false, this has no effect.
|
11326
|
-
*/
|
11327
|
-
notLocalizedByDefault?: boolean;
|
11328
|
-
/**
|
11329
|
-
* @description Enables creating additional conditional values for the parameter based on criteria such as dynamic inputs.
|
11330
|
-
* When combined with a localized value, each locale has independent conditional values.
|
11331
|
-
*
|
11332
|
-
* When not defined, conditional values are not allowed.
|
11333
|
-
*/
|
11334
|
-
allowConditionalValues?: boolean;
|
11335
10733
|
/** @description The configuration object for the type (type-specific) */
|
11336
10734
|
typeConfig?: unknown;
|
11337
10735
|
};
|
@@ -11540,65 +10938,6 @@ interface external$b {
|
|
11540
10938
|
locales?: {
|
11541
10939
|
[key: string]: unknown;
|
11542
10940
|
};
|
11543
|
-
conditions?: external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
11544
|
-
/** @description Locale-specific conditional values for this parameter. Keys are locale codes, and values are the `conditions` for that locale. */
|
11545
|
-
localesConditions?: {
|
11546
|
-
[key: string]: external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
11547
|
-
};
|
11548
|
-
};
|
11549
|
-
/**
|
11550
|
-
* @description Array of alternate values which are based on conditions.
|
11551
|
-
*
|
11552
|
-
* When requested with an explicit locale parameter, or via the route API:
|
11553
|
-
* * Conditions are evaluated sequentially and the first match is used. If a match is found, the conditions are eliminated.
|
11554
|
-
* * If no conditions match, the `value` property is used.
|
11555
|
-
* * If a condition cannot be evaluated yet (i.e. a client-side criteria), it is left alone.
|
11556
|
-
*
|
11557
|
-
* When no locale is passed to a non-route API, conditions are not processed and all conditions are returned.
|
11558
|
-
*/
|
11559
|
-
ComponentParameterConditions: external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditionalValue"][];
|
11560
|
-
/** @description Defines a conditional value for a component parameter */
|
11561
|
-
ComponentParameterConditionalValue: {
|
11562
|
-
when: external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"];
|
11563
|
-
/**
|
11564
|
-
* @description The value of the parameter. Any JSON-serializable value is acceptable.
|
11565
|
-
* A value of `null` will cause the parameter value to be removed, if it matches.
|
11566
|
-
*/
|
11567
|
-
value: unknown;
|
11568
|
-
/**
|
11569
|
-
* @description Unique sequence identifier of the conditional value within the component parameter.
|
11570
|
-
* This value must be unique within the conditional values array, and it should not change after a condition is created.
|
11571
|
-
*/
|
11572
|
-
id: number;
|
11573
|
-
};
|
11574
|
-
/**
|
11575
|
-
* @deprecated
|
11576
|
-
* @description beta functionality subject to change
|
11577
|
-
*/
|
11578
|
-
VisibilityCriteriaGroup: {
|
11579
|
-
/**
|
11580
|
-
* @description The boolean operator to join the clauses with. Defaults to & if not specified.
|
11581
|
-
* @enum {string}
|
11582
|
-
*/
|
11583
|
-
op?: "&" | "|";
|
11584
|
-
clauses: (external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteria"] | external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"])[];
|
11585
|
-
};
|
11586
|
-
/**
|
11587
|
-
* @deprecated
|
11588
|
-
* @description beta functionality subject to change
|
11589
|
-
*/
|
11590
|
-
VisibilityCriteria: {
|
11591
|
-
/** @description The rule type to execute */
|
11592
|
-
rule: string;
|
11593
|
-
/**
|
11594
|
-
* @description The source value of the rule.
|
11595
|
-
* For rules which have multiple classes of match, for example a dynamic input matches on a named DI, the rule is dynamic input and the DI name is the source.
|
11596
|
-
*/
|
11597
|
-
source?: string;
|
11598
|
-
/** @description The rule-definition-specific operator to test against */
|
11599
|
-
op: string;
|
11600
|
-
/** @description The value, or if an array several potential values, to test against. In most rules, multiple values are OR'd together ('any of') but this is not a hard requirement. */
|
11601
|
-
value: string | string[];
|
11602
10941
|
};
|
11603
10942
|
/** @description Defines a connection to a dynamic token on a data resource */
|
11604
10943
|
DataElementConnectionDefinition: {
|
@@ -12649,21 +11988,6 @@ interface external$a {
|
|
12649
11988
|
* this property will have a single value that is shared for all locales
|
12650
11989
|
*/
|
12651
11990
|
localizable?: boolean;
|
12652
|
-
/**
|
12653
|
-
* @description When `localizable` is true, this property controls the default localizability of the property.
|
12654
|
-
* true - when the property has no existing value, it will be in 'single value' mode and not store locale specific values
|
12655
|
-
* false/undefined - when the property has no existing value, it will store separate values for each enabled locale
|
12656
|
-
*
|
12657
|
-
* If `localized` is false, this has no effect.
|
12658
|
-
*/
|
12659
|
-
notLocalizedByDefault?: boolean;
|
12660
|
-
/**
|
12661
|
-
* @description Enables creating additional conditional values for the parameter based on criteria such as dynamic inputs.
|
12662
|
-
* When combined with a localized value, each locale has independent conditional values.
|
12663
|
-
*
|
12664
|
-
* When not defined, conditional values are not allowed.
|
12665
|
-
*/
|
12666
|
-
allowConditionalValues?: boolean;
|
12667
11991
|
/** @description The configuration object for the type (type-specific) */
|
12668
11992
|
typeConfig?: unknown;
|
12669
11993
|
};
|
@@ -12872,65 +12196,6 @@ interface external$a {
|
|
12872
12196
|
locales?: {
|
12873
12197
|
[key: string]: unknown;
|
12874
12198
|
};
|
12875
|
-
conditions?: external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
12876
|
-
/** @description Locale-specific conditional values for this parameter. Keys are locale codes, and values are the `conditions` for that locale. */
|
12877
|
-
localesConditions?: {
|
12878
|
-
[key: string]: external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
12879
|
-
};
|
12880
|
-
};
|
12881
|
-
/**
|
12882
|
-
* @description Array of alternate values which are based on conditions.
|
12883
|
-
*
|
12884
|
-
* When requested with an explicit locale parameter, or via the route API:
|
12885
|
-
* * Conditions are evaluated sequentially and the first match is used. If a match is found, the conditions are eliminated.
|
12886
|
-
* * If no conditions match, the `value` property is used.
|
12887
|
-
* * If a condition cannot be evaluated yet (i.e. a client-side criteria), it is left alone.
|
12888
|
-
*
|
12889
|
-
* When no locale is passed to a non-route API, conditions are not processed and all conditions are returned.
|
12890
|
-
*/
|
12891
|
-
ComponentParameterConditions: external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditionalValue"][];
|
12892
|
-
/** @description Defines a conditional value for a component parameter */
|
12893
|
-
ComponentParameterConditionalValue: {
|
12894
|
-
when: external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"];
|
12895
|
-
/**
|
12896
|
-
* @description The value of the parameter. Any JSON-serializable value is acceptable.
|
12897
|
-
* A value of `null` will cause the parameter value to be removed, if it matches.
|
12898
|
-
*/
|
12899
|
-
value: unknown;
|
12900
|
-
/**
|
12901
|
-
* @description Unique sequence identifier of the conditional value within the component parameter.
|
12902
|
-
* This value must be unique within the conditional values array, and it should not change after a condition is created.
|
12903
|
-
*/
|
12904
|
-
id: number;
|
12905
|
-
};
|
12906
|
-
/**
|
12907
|
-
* @deprecated
|
12908
|
-
* @description beta functionality subject to change
|
12909
|
-
*/
|
12910
|
-
VisibilityCriteriaGroup: {
|
12911
|
-
/**
|
12912
|
-
* @description The boolean operator to join the clauses with. Defaults to & if not specified.
|
12913
|
-
* @enum {string}
|
12914
|
-
*/
|
12915
|
-
op?: "&" | "|";
|
12916
|
-
clauses: (external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteria"] | external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"])[];
|
12917
|
-
};
|
12918
|
-
/**
|
12919
|
-
* @deprecated
|
12920
|
-
* @description beta functionality subject to change
|
12921
|
-
*/
|
12922
|
-
VisibilityCriteria: {
|
12923
|
-
/** @description The rule type to execute */
|
12924
|
-
rule: string;
|
12925
|
-
/**
|
12926
|
-
* @description The source value of the rule.
|
12927
|
-
* For rules which have multiple classes of match, for example a dynamic input matches on a named DI, the rule is dynamic input and the DI name is the source.
|
12928
|
-
*/
|
12929
|
-
source?: string;
|
12930
|
-
/** @description The rule-definition-specific operator to test against */
|
12931
|
-
op: string;
|
12932
|
-
/** @description The value, or if an array several potential values, to test against. In most rules, multiple values are OR'd together ('any of') but this is not a hard requirement. */
|
12933
|
-
value: string | string[];
|
12934
12199
|
};
|
12935
12200
|
/** @description Defines a connection to a dynamic token on a data resource */
|
12936
12201
|
DataElementConnectionDefinition: {
|
@@ -14714,25 +13979,10 @@ interface external$8 {
|
|
14714
13979
|
/** @description Type name of the parameter (provided by a Uniform integration) */
|
14715
13980
|
type: string;
|
14716
13981
|
/**
|
14717
|
-
* @description If true, this property can have locale-specific values. If false or not defined,
|
14718
|
-
* this property will have a single value that is shared for all locales
|
14719
|
-
*/
|
14720
|
-
localizable?: boolean;
|
14721
|
-
/**
|
14722
|
-
* @description When `localizable` is true, this property controls the default localizability of the property.
|
14723
|
-
* true - when the property has no existing value, it will be in 'single value' mode and not store locale specific values
|
14724
|
-
* false/undefined - when the property has no existing value, it will store separate values for each enabled locale
|
14725
|
-
*
|
14726
|
-
* If `localized` is false, this has no effect.
|
14727
|
-
*/
|
14728
|
-
notLocalizedByDefault?: boolean;
|
14729
|
-
/**
|
14730
|
-
* @description Enables creating additional conditional values for the parameter based on criteria such as dynamic inputs.
|
14731
|
-
* When combined with a localized value, each locale has independent conditional values.
|
14732
|
-
*
|
14733
|
-
* When not defined, conditional values are not allowed.
|
13982
|
+
* @description If true, this property can have locale-specific values. If false or not defined,
|
13983
|
+
* this property will have a single value that is shared for all locales
|
14734
13984
|
*/
|
14735
|
-
|
13985
|
+
localizable?: boolean;
|
14736
13986
|
/** @description The configuration object for the type (type-specific) */
|
14737
13987
|
typeConfig?: unknown;
|
14738
13988
|
};
|
@@ -14941,65 +14191,6 @@ interface external$8 {
|
|
14941
14191
|
locales?: {
|
14942
14192
|
[key: string]: unknown;
|
14943
14193
|
};
|
14944
|
-
conditions?: external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
14945
|
-
/** @description Locale-specific conditional values for this parameter. Keys are locale codes, and values are the `conditions` for that locale. */
|
14946
|
-
localesConditions?: {
|
14947
|
-
[key: string]: external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
14948
|
-
};
|
14949
|
-
};
|
14950
|
-
/**
|
14951
|
-
* @description Array of alternate values which are based on conditions.
|
14952
|
-
*
|
14953
|
-
* When requested with an explicit locale parameter, or via the route API:
|
14954
|
-
* * Conditions are evaluated sequentially and the first match is used. If a match is found, the conditions are eliminated.
|
14955
|
-
* * If no conditions match, the `value` property is used.
|
14956
|
-
* * If a condition cannot be evaluated yet (i.e. a client-side criteria), it is left alone.
|
14957
|
-
*
|
14958
|
-
* When no locale is passed to a non-route API, conditions are not processed and all conditions are returned.
|
14959
|
-
*/
|
14960
|
-
ComponentParameterConditions: external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditionalValue"][];
|
14961
|
-
/** @description Defines a conditional value for a component parameter */
|
14962
|
-
ComponentParameterConditionalValue: {
|
14963
|
-
when: external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"];
|
14964
|
-
/**
|
14965
|
-
* @description The value of the parameter. Any JSON-serializable value is acceptable.
|
14966
|
-
* A value of `null` will cause the parameter value to be removed, if it matches.
|
14967
|
-
*/
|
14968
|
-
value: unknown;
|
14969
|
-
/**
|
14970
|
-
* @description Unique sequence identifier of the conditional value within the component parameter.
|
14971
|
-
* This value must be unique within the conditional values array, and it should not change after a condition is created.
|
14972
|
-
*/
|
14973
|
-
id: number;
|
14974
|
-
};
|
14975
|
-
/**
|
14976
|
-
* @deprecated
|
14977
|
-
* @description beta functionality subject to change
|
14978
|
-
*/
|
14979
|
-
VisibilityCriteriaGroup: {
|
14980
|
-
/**
|
14981
|
-
* @description The boolean operator to join the clauses with. Defaults to & if not specified.
|
14982
|
-
* @enum {string}
|
14983
|
-
*/
|
14984
|
-
op?: "&" | "|";
|
14985
|
-
clauses: (external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteria"] | external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"])[];
|
14986
|
-
};
|
14987
|
-
/**
|
14988
|
-
* @deprecated
|
14989
|
-
* @description beta functionality subject to change
|
14990
|
-
*/
|
14991
|
-
VisibilityCriteria: {
|
14992
|
-
/** @description The rule type to execute */
|
14993
|
-
rule: string;
|
14994
|
-
/**
|
14995
|
-
* @description The source value of the rule.
|
14996
|
-
* For rules which have multiple classes of match, for example a dynamic input matches on a named DI, the rule is dynamic input and the DI name is the source.
|
14997
|
-
*/
|
14998
|
-
source?: string;
|
14999
|
-
/** @description The rule-definition-specific operator to test against */
|
15000
|
-
op: string;
|
15001
|
-
/** @description The value, or if an array several potential values, to test against. In most rules, multiple values are OR'd together ('any of') but this is not a hard requirement. */
|
15002
|
-
value: string | string[];
|
15003
14194
|
};
|
15004
14195
|
/** @description Defines a connection to a dynamic token on a data resource */
|
15005
14196
|
DataElementConnectionDefinition: {
|
@@ -16021,21 +15212,6 @@ interface external$7 {
|
|
16021
15212
|
* this property will have a single value that is shared for all locales
|
16022
15213
|
*/
|
16023
15214
|
localizable?: boolean;
|
16024
|
-
/**
|
16025
|
-
* @description When `localizable` is true, this property controls the default localizability of the property.
|
16026
|
-
* true - when the property has no existing value, it will be in 'single value' mode and not store locale specific values
|
16027
|
-
* false/undefined - when the property has no existing value, it will store separate values for each enabled locale
|
16028
|
-
*
|
16029
|
-
* If `localized` is false, this has no effect.
|
16030
|
-
*/
|
16031
|
-
notLocalizedByDefault?: boolean;
|
16032
|
-
/**
|
16033
|
-
* @description Enables creating additional conditional values for the parameter based on criteria such as dynamic inputs.
|
16034
|
-
* When combined with a localized value, each locale has independent conditional values.
|
16035
|
-
*
|
16036
|
-
* When not defined, conditional values are not allowed.
|
16037
|
-
*/
|
16038
|
-
allowConditionalValues?: boolean;
|
16039
15215
|
/** @description The configuration object for the type (type-specific) */
|
16040
15216
|
typeConfig?: unknown;
|
16041
15217
|
};
|
@@ -16244,65 +15420,6 @@ interface external$7 {
|
|
16244
15420
|
locales?: {
|
16245
15421
|
[key: string]: unknown;
|
16246
15422
|
};
|
16247
|
-
conditions?: external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
16248
|
-
/** @description Locale-specific conditional values for this parameter. Keys are locale codes, and values are the `conditions` for that locale. */
|
16249
|
-
localesConditions?: {
|
16250
|
-
[key: string]: external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
16251
|
-
};
|
16252
|
-
};
|
16253
|
-
/**
|
16254
|
-
* @description Array of alternate values which are based on conditions.
|
16255
|
-
*
|
16256
|
-
* When requested with an explicit locale parameter, or via the route API:
|
16257
|
-
* * Conditions are evaluated sequentially and the first match is used. If a match is found, the conditions are eliminated.
|
16258
|
-
* * If no conditions match, the `value` property is used.
|
16259
|
-
* * If a condition cannot be evaluated yet (i.e. a client-side criteria), it is left alone.
|
16260
|
-
*
|
16261
|
-
* When no locale is passed to a non-route API, conditions are not processed and all conditions are returned.
|
16262
|
-
*/
|
16263
|
-
ComponentParameterConditions: external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditionalValue"][];
|
16264
|
-
/** @description Defines a conditional value for a component parameter */
|
16265
|
-
ComponentParameterConditionalValue: {
|
16266
|
-
when: external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"];
|
16267
|
-
/**
|
16268
|
-
* @description The value of the parameter. Any JSON-serializable value is acceptable.
|
16269
|
-
* A value of `null` will cause the parameter value to be removed, if it matches.
|
16270
|
-
*/
|
16271
|
-
value: unknown;
|
16272
|
-
/**
|
16273
|
-
* @description Unique sequence identifier of the conditional value within the component parameter.
|
16274
|
-
* This value must be unique within the conditional values array, and it should not change after a condition is created.
|
16275
|
-
*/
|
16276
|
-
id: number;
|
16277
|
-
};
|
16278
|
-
/**
|
16279
|
-
* @deprecated
|
16280
|
-
* @description beta functionality subject to change
|
16281
|
-
*/
|
16282
|
-
VisibilityCriteriaGroup: {
|
16283
|
-
/**
|
16284
|
-
* @description The boolean operator to join the clauses with. Defaults to & if not specified.
|
16285
|
-
* @enum {string}
|
16286
|
-
*/
|
16287
|
-
op?: "&" | "|";
|
16288
|
-
clauses: (external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteria"] | external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"])[];
|
16289
|
-
};
|
16290
|
-
/**
|
16291
|
-
* @deprecated
|
16292
|
-
* @description beta functionality subject to change
|
16293
|
-
*/
|
16294
|
-
VisibilityCriteria: {
|
16295
|
-
/** @description The rule type to execute */
|
16296
|
-
rule: string;
|
16297
|
-
/**
|
16298
|
-
* @description The source value of the rule.
|
16299
|
-
* For rules which have multiple classes of match, for example a dynamic input matches on a named DI, the rule is dynamic input and the DI name is the source.
|
16300
|
-
*/
|
16301
|
-
source?: string;
|
16302
|
-
/** @description The rule-definition-specific operator to test against */
|
16303
|
-
op: string;
|
16304
|
-
/** @description The value, or if an array several potential values, to test against. In most rules, multiple values are OR'd together ('any of') but this is not a hard requirement. */
|
16305
|
-
value: string | string[];
|
16306
15423
|
};
|
16307
15424
|
/** @description Defines a connection to a dynamic token on a data resource */
|
16308
15425
|
DataElementConnectionDefinition: {
|
@@ -17348,7 +16465,6 @@ interface components$4 {
|
|
17348
16465
|
inputName?: string;
|
17349
16466
|
code?: string;
|
17350
16467
|
locale?: string;
|
17351
|
-
conditionIndex?: number;
|
17352
16468
|
};
|
17353
16469
|
};
|
17354
16470
|
responses: {
|
@@ -17465,21 +16581,6 @@ interface external$6 {
|
|
17465
16581
|
* this property will have a single value that is shared for all locales
|
17466
16582
|
*/
|
17467
16583
|
localizable?: boolean;
|
17468
|
-
/**
|
17469
|
-
* @description When `localizable` is true, this property controls the default localizability of the property.
|
17470
|
-
* true - when the property has no existing value, it will be in 'single value' mode and not store locale specific values
|
17471
|
-
* false/undefined - when the property has no existing value, it will store separate values for each enabled locale
|
17472
|
-
*
|
17473
|
-
* If `localized` is false, this has no effect.
|
17474
|
-
*/
|
17475
|
-
notLocalizedByDefault?: boolean;
|
17476
|
-
/**
|
17477
|
-
* @description Enables creating additional conditional values for the parameter based on criteria such as dynamic inputs.
|
17478
|
-
* When combined with a localized value, each locale has independent conditional values.
|
17479
|
-
*
|
17480
|
-
* When not defined, conditional values are not allowed.
|
17481
|
-
*/
|
17482
|
-
allowConditionalValues?: boolean;
|
17483
16584
|
/** @description The configuration object for the type (type-specific) */
|
17484
16585
|
typeConfig?: unknown;
|
17485
16586
|
};
|
@@ -17688,65 +16789,6 @@ interface external$6 {
|
|
17688
16789
|
locales?: {
|
17689
16790
|
[key: string]: unknown;
|
17690
16791
|
};
|
17691
|
-
conditions?: external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
17692
|
-
/** @description Locale-specific conditional values for this parameter. Keys are locale codes, and values are the `conditions` for that locale. */
|
17693
|
-
localesConditions?: {
|
17694
|
-
[key: string]: external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
17695
|
-
};
|
17696
|
-
};
|
17697
|
-
/**
|
17698
|
-
* @description Array of alternate values which are based on conditions.
|
17699
|
-
*
|
17700
|
-
* When requested with an explicit locale parameter, or via the route API:
|
17701
|
-
* * Conditions are evaluated sequentially and the first match is used. If a match is found, the conditions are eliminated.
|
17702
|
-
* * If no conditions match, the `value` property is used.
|
17703
|
-
* * If a condition cannot be evaluated yet (i.e. a client-side criteria), it is left alone.
|
17704
|
-
*
|
17705
|
-
* When no locale is passed to a non-route API, conditions are not processed and all conditions are returned.
|
17706
|
-
*/
|
17707
|
-
ComponentParameterConditions: external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditionalValue"][];
|
17708
|
-
/** @description Defines a conditional value for a component parameter */
|
17709
|
-
ComponentParameterConditionalValue: {
|
17710
|
-
when: external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"];
|
17711
|
-
/**
|
17712
|
-
* @description The value of the parameter. Any JSON-serializable value is acceptable.
|
17713
|
-
* A value of `null` will cause the parameter value to be removed, if it matches.
|
17714
|
-
*/
|
17715
|
-
value: unknown;
|
17716
|
-
/**
|
17717
|
-
* @description Unique sequence identifier of the conditional value within the component parameter.
|
17718
|
-
* This value must be unique within the conditional values array, and it should not change after a condition is created.
|
17719
|
-
*/
|
17720
|
-
id: number;
|
17721
|
-
};
|
17722
|
-
/**
|
17723
|
-
* @deprecated
|
17724
|
-
* @description beta functionality subject to change
|
17725
|
-
*/
|
17726
|
-
VisibilityCriteriaGroup: {
|
17727
|
-
/**
|
17728
|
-
* @description The boolean operator to join the clauses with. Defaults to & if not specified.
|
17729
|
-
* @enum {string}
|
17730
|
-
*/
|
17731
|
-
op?: "&" | "|";
|
17732
|
-
clauses: (external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteria"] | external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"])[];
|
17733
|
-
};
|
17734
|
-
/**
|
17735
|
-
* @deprecated
|
17736
|
-
* @description beta functionality subject to change
|
17737
|
-
*/
|
17738
|
-
VisibilityCriteria: {
|
17739
|
-
/** @description The rule type to execute */
|
17740
|
-
rule: string;
|
17741
|
-
/**
|
17742
|
-
* @description The source value of the rule.
|
17743
|
-
* For rules which have multiple classes of match, for example a dynamic input matches on a named DI, the rule is dynamic input and the DI name is the source.
|
17744
|
-
*/
|
17745
|
-
source?: string;
|
17746
|
-
/** @description The rule-definition-specific operator to test against */
|
17747
|
-
op: string;
|
17748
|
-
/** @description The value, or if an array several potential values, to test against. In most rules, multiple values are OR'd together ('any of') but this is not a hard requirement. */
|
17749
|
-
value: string | string[];
|
17750
16792
|
};
|
17751
16793
|
/** @description Defines a connection to a dynamic token on a data resource */
|
17752
16794
|
DataElementConnectionDefinition: {
|
@@ -19317,6 +18359,11 @@ interface external$6 {
|
|
19317
18359
|
workflowStageId?: string;
|
19318
18360
|
/** @description The full definition of the assigned workflow, if any, including stages, permissions, etc. Only returned when `withWorkflowDefinition` is true */
|
19319
18361
|
workflowDefinition?: external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["WorkflowDefinition"];
|
18362
|
+
/**
|
18363
|
+
* @description Only present if an imcomplete entry is returned; indicates reason for stubbing
|
18364
|
+
* @enum {string}
|
18365
|
+
*/
|
18366
|
+
stubType?: "missing" | "tooDeep";
|
19320
18367
|
};
|
19321
18368
|
EntryListResponse: {
|
19322
18369
|
entries: external$6["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["schemas"]["EntryApiResponse"][];
|
@@ -20432,21 +19479,6 @@ interface external$5 {
|
|
20432
19479
|
* this property will have a single value that is shared for all locales
|
20433
19480
|
*/
|
20434
19481
|
localizable?: boolean;
|
20435
|
-
/**
|
20436
|
-
* @description When `localizable` is true, this property controls the default localizability of the property.
|
20437
|
-
* true - when the property has no existing value, it will be in 'single value' mode and not store locale specific values
|
20438
|
-
* false/undefined - when the property has no existing value, it will store separate values for each enabled locale
|
20439
|
-
*
|
20440
|
-
* If `localized` is false, this has no effect.
|
20441
|
-
*/
|
20442
|
-
notLocalizedByDefault?: boolean;
|
20443
|
-
/**
|
20444
|
-
* @description Enables creating additional conditional values for the parameter based on criteria such as dynamic inputs.
|
20445
|
-
* When combined with a localized value, each locale has independent conditional values.
|
20446
|
-
*
|
20447
|
-
* When not defined, conditional values are not allowed.
|
20448
|
-
*/
|
20449
|
-
allowConditionalValues?: boolean;
|
20450
19482
|
/** @description The configuration object for the type (type-specific) */
|
20451
19483
|
typeConfig?: unknown;
|
20452
19484
|
};
|
@@ -20655,65 +19687,6 @@ interface external$5 {
|
|
20655
19687
|
locales?: {
|
20656
19688
|
[key: string]: unknown;
|
20657
19689
|
};
|
20658
|
-
conditions?: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
20659
|
-
/** @description Locale-specific conditional values for this parameter. Keys are locale codes, and values are the `conditions` for that locale. */
|
20660
|
-
localesConditions?: {
|
20661
|
-
[key: string]: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
20662
|
-
};
|
20663
|
-
};
|
20664
|
-
/**
|
20665
|
-
* @description Array of alternate values which are based on conditions.
|
20666
|
-
*
|
20667
|
-
* When requested with an explicit locale parameter, or via the route API:
|
20668
|
-
* * Conditions are evaluated sequentially and the first match is used. If a match is found, the conditions are eliminated.
|
20669
|
-
* * If no conditions match, the `value` property is used.
|
20670
|
-
* * If a condition cannot be evaluated yet (i.e. a client-side criteria), it is left alone.
|
20671
|
-
*
|
20672
|
-
* When no locale is passed to a non-route API, conditions are not processed and all conditions are returned.
|
20673
|
-
*/
|
20674
|
-
ComponentParameterConditions: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditionalValue"][];
|
20675
|
-
/** @description Defines a conditional value for a component parameter */
|
20676
|
-
ComponentParameterConditionalValue: {
|
20677
|
-
when: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"];
|
20678
|
-
/**
|
20679
|
-
* @description The value of the parameter. Any JSON-serializable value is acceptable.
|
20680
|
-
* A value of `null` will cause the parameter value to be removed, if it matches.
|
20681
|
-
*/
|
20682
|
-
value: unknown;
|
20683
|
-
/**
|
20684
|
-
* @description Unique sequence identifier of the conditional value within the component parameter.
|
20685
|
-
* This value must be unique within the conditional values array, and it should not change after a condition is created.
|
20686
|
-
*/
|
20687
|
-
id: number;
|
20688
|
-
};
|
20689
|
-
/**
|
20690
|
-
* @deprecated
|
20691
|
-
* @description beta functionality subject to change
|
20692
|
-
*/
|
20693
|
-
VisibilityCriteriaGroup: {
|
20694
|
-
/**
|
20695
|
-
* @description The boolean operator to join the clauses with. Defaults to & if not specified.
|
20696
|
-
* @enum {string}
|
20697
|
-
*/
|
20698
|
-
op?: "&" | "|";
|
20699
|
-
clauses: (external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteria"] | external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"])[];
|
20700
|
-
};
|
20701
|
-
/**
|
20702
|
-
* @deprecated
|
20703
|
-
* @description beta functionality subject to change
|
20704
|
-
*/
|
20705
|
-
VisibilityCriteria: {
|
20706
|
-
/** @description The rule type to execute */
|
20707
|
-
rule: string;
|
20708
|
-
/**
|
20709
|
-
* @description The source value of the rule.
|
20710
|
-
* For rules which have multiple classes of match, for example a dynamic input matches on a named DI, the rule is dynamic input and the DI name is the source.
|
20711
|
-
*/
|
20712
|
-
source?: string;
|
20713
|
-
/** @description The rule-definition-specific operator to test against */
|
20714
|
-
op: string;
|
20715
|
-
/** @description The value, or if an array several potential values, to test against. In most rules, multiple values are OR'd together ('any of') but this is not a hard requirement. */
|
20716
|
-
value: string | string[];
|
20717
19690
|
};
|
20718
19691
|
/** @description Defines a connection to a dynamic token on a data resource */
|
20719
19692
|
DataElementConnectionDefinition: {
|
@@ -22577,9 +21550,10 @@ type DataResolutionParameters = {
|
|
22577
21550
|
* Controls how many levels deep content references should be resolved.
|
22578
21551
|
*/
|
22579
21552
|
resolutionDepth?: number;
|
21553
|
+
isDraft?: boolean;
|
22580
21554
|
};
|
22581
21555
|
/** Types of issue that can occur when fetching composition data */
|
22582
|
-
type DataResolutionIssue = PatternIssue | DataResourceIssue | DataElementBindingIssue | DynamicInputIssue | DataResolutionConfigIssue;
|
21556
|
+
type DataResolutionIssue = PatternIssue | DataResourceIssue | MaxDepthExceededIssue | DataElementBindingIssue | DynamicInputIssue | DataResolutionConfigIssue;
|
22583
21557
|
/** @deprecated use DataResolutionIssue instead */
|
22584
21558
|
type CompositionIssue = DataResolutionIssue;
|
22585
21559
|
type DataResolutionIssueCore = components$4['schemas']['DataResolutionIssue'];
|
@@ -22594,7 +21568,6 @@ type CompositionPatternIssue = PatternIssue;
|
|
22594
21568
|
type DataElementBindingIssue = DataResolutionIssueCore & {
|
22595
21569
|
type: 'binding';
|
22596
21570
|
parameterName: string;
|
22597
|
-
conditionIndex?: number;
|
22598
21571
|
expression?: DataElementConnectionDefinition;
|
22599
21572
|
};
|
22600
21573
|
/** An error that occurred fetching a data defined on the composition or a pattern within */
|
@@ -22603,6 +21576,10 @@ type DataResourceIssue = DataResolutionIssueCore & {
|
|
22603
21576
|
dataName: string;
|
22604
21577
|
dataType: string;
|
22605
21578
|
};
|
21579
|
+
type MaxDepthExceededIssue = DataResolutionIssueCore & {
|
21580
|
+
type: 'maxDepthExceeded';
|
21581
|
+
resolutionDepth: number;
|
21582
|
+
};
|
22606
21583
|
/**
|
22607
21584
|
* An issue that occurred while binding dynamic inputs to composition data resources,
|
22608
21585
|
* specifically when an expected dynamic input did not have a value.
|
@@ -22674,7 +21651,6 @@ type ContextualEditingComponentReference = {
|
|
22674
21651
|
isReadOnly?: boolean;
|
22675
21652
|
localizable?: boolean;
|
22676
21653
|
targetLocale?: Locale;
|
22677
|
-
targetConditionIndex: number;
|
22678
21654
|
}>;
|
22679
21655
|
/** The ID of the pattern if the component is actually a pattern node. */
|
22680
21656
|
patternId?: string;
|
@@ -23286,21 +22262,6 @@ interface external$3 {
|
|
23286
22262
|
* this property will have a single value that is shared for all locales
|
23287
22263
|
*/
|
23288
22264
|
localizable?: boolean;
|
23289
|
-
/**
|
23290
|
-
* @description When `localizable` is true, this property controls the default localizability of the property.
|
23291
|
-
* true - when the property has no existing value, it will be in 'single value' mode and not store locale specific values
|
23292
|
-
* false/undefined - when the property has no existing value, it will store separate values for each enabled locale
|
23293
|
-
*
|
23294
|
-
* If `localized` is false, this has no effect.
|
23295
|
-
*/
|
23296
|
-
notLocalizedByDefault?: boolean;
|
23297
|
-
/**
|
23298
|
-
* @description Enables creating additional conditional values for the parameter based on criteria such as dynamic inputs.
|
23299
|
-
* When combined with a localized value, each locale has independent conditional values.
|
23300
|
-
*
|
23301
|
-
* When not defined, conditional values are not allowed.
|
23302
|
-
*/
|
23303
|
-
allowConditionalValues?: boolean;
|
23304
22265
|
/** @description The configuration object for the type (type-specific) */
|
23305
22266
|
typeConfig?: unknown;
|
23306
22267
|
};
|
@@ -23509,65 +22470,6 @@ interface external$3 {
|
|
23509
22470
|
locales?: {
|
23510
22471
|
[key: string]: unknown;
|
23511
22472
|
};
|
23512
|
-
conditions?: external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
23513
|
-
/** @description Locale-specific conditional values for this parameter. Keys are locale codes, and values are the `conditions` for that locale. */
|
23514
|
-
localesConditions?: {
|
23515
|
-
[key: string]: external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
23516
|
-
};
|
23517
|
-
};
|
23518
|
-
/**
|
23519
|
-
* @description Array of alternate values which are based on conditions.
|
23520
|
-
*
|
23521
|
-
* When requested with an explicit locale parameter, or via the route API:
|
23522
|
-
* * Conditions are evaluated sequentially and the first match is used. If a match is found, the conditions are eliminated.
|
23523
|
-
* * If no conditions match, the `value` property is used.
|
23524
|
-
* * If a condition cannot be evaluated yet (i.e. a client-side criteria), it is left alone.
|
23525
|
-
*
|
23526
|
-
* When no locale is passed to a non-route API, conditions are not processed and all conditions are returned.
|
23527
|
-
*/
|
23528
|
-
ComponentParameterConditions: external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditionalValue"][];
|
23529
|
-
/** @description Defines a conditional value for a component parameter */
|
23530
|
-
ComponentParameterConditionalValue: {
|
23531
|
-
when: external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"];
|
23532
|
-
/**
|
23533
|
-
* @description The value of the parameter. Any JSON-serializable value is acceptable.
|
23534
|
-
* A value of `null` will cause the parameter value to be removed, if it matches.
|
23535
|
-
*/
|
23536
|
-
value: unknown;
|
23537
|
-
/**
|
23538
|
-
* @description Unique sequence identifier of the conditional value within the component parameter.
|
23539
|
-
* This value must be unique within the conditional values array, and it should not change after a condition is created.
|
23540
|
-
*/
|
23541
|
-
id: number;
|
23542
|
-
};
|
23543
|
-
/**
|
23544
|
-
* @deprecated
|
23545
|
-
* @description beta functionality subject to change
|
23546
|
-
*/
|
23547
|
-
VisibilityCriteriaGroup: {
|
23548
|
-
/**
|
23549
|
-
* @description The boolean operator to join the clauses with. Defaults to & if not specified.
|
23550
|
-
* @enum {string}
|
23551
|
-
*/
|
23552
|
-
op?: "&" | "|";
|
23553
|
-
clauses: (external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteria"] | external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"])[];
|
23554
|
-
};
|
23555
|
-
/**
|
23556
|
-
* @deprecated
|
23557
|
-
* @description beta functionality subject to change
|
23558
|
-
*/
|
23559
|
-
VisibilityCriteria: {
|
23560
|
-
/** @description The rule type to execute */
|
23561
|
-
rule: string;
|
23562
|
-
/**
|
23563
|
-
* @description The source value of the rule.
|
23564
|
-
* For rules which have multiple classes of match, for example a dynamic input matches on a named DI, the rule is dynamic input and the DI name is the source.
|
23565
|
-
*/
|
23566
|
-
source?: string;
|
23567
|
-
/** @description The rule-definition-specific operator to test against */
|
23568
|
-
op: string;
|
23569
|
-
/** @description The value, or if an array several potential values, to test against. In most rules, multiple values are OR'd together ('any of') but this is not a hard requirement. */
|
23570
|
-
value: string | string[];
|
23571
22473
|
};
|
23572
22474
|
/** @description Defines a connection to a dynamic token on a data resource */
|
23573
22475
|
DataElementConnectionDefinition: {
|
@@ -24875,21 +23777,6 @@ interface external$1 {
|
|
24875
23777
|
* this property will have a single value that is shared for all locales
|
24876
23778
|
*/
|
24877
23779
|
localizable?: boolean;
|
24878
|
-
/**
|
24879
|
-
* @description When `localizable` is true, this property controls the default localizability of the property.
|
24880
|
-
* true - when the property has no existing value, it will be in 'single value' mode and not store locale specific values
|
24881
|
-
* false/undefined - when the property has no existing value, it will store separate values for each enabled locale
|
24882
|
-
*
|
24883
|
-
* If `localized` is false, this has no effect.
|
24884
|
-
*/
|
24885
|
-
notLocalizedByDefault?: boolean;
|
24886
|
-
/**
|
24887
|
-
* @description Enables creating additional conditional values for the parameter based on criteria such as dynamic inputs.
|
24888
|
-
* When combined with a localized value, each locale has independent conditional values.
|
24889
|
-
*
|
24890
|
-
* When not defined, conditional values are not allowed.
|
24891
|
-
*/
|
24892
|
-
allowConditionalValues?: boolean;
|
24893
23780
|
/** @description The configuration object for the type (type-specific) */
|
24894
23781
|
typeConfig?: unknown;
|
24895
23782
|
};
|
@@ -25098,65 +23985,6 @@ interface external$1 {
|
|
25098
23985
|
locales?: {
|
25099
23986
|
[key: string]: unknown;
|
25100
23987
|
};
|
25101
|
-
conditions?: external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
25102
|
-
/** @description Locale-specific conditional values for this parameter. Keys are locale codes, and values are the `conditions` for that locale. */
|
25103
|
-
localesConditions?: {
|
25104
|
-
[key: string]: external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditions"];
|
25105
|
-
};
|
25106
|
-
};
|
25107
|
-
/**
|
25108
|
-
* @description Array of alternate values which are based on conditions.
|
25109
|
-
*
|
25110
|
-
* When requested with an explicit locale parameter, or via the route API:
|
25111
|
-
* * Conditions are evaluated sequentially and the first match is used. If a match is found, the conditions are eliminated.
|
25112
|
-
* * If no conditions match, the `value` property is used.
|
25113
|
-
* * If a condition cannot be evaluated yet (i.e. a client-side criteria), it is left alone.
|
25114
|
-
*
|
25115
|
-
* When no locale is passed to a non-route API, conditions are not processed and all conditions are returned.
|
25116
|
-
*/
|
25117
|
-
ComponentParameterConditions: external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameterConditionalValue"][];
|
25118
|
-
/** @description Defines a conditional value for a component parameter */
|
25119
|
-
ComponentParameterConditionalValue: {
|
25120
|
-
when: external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"];
|
25121
|
-
/**
|
25122
|
-
* @description The value of the parameter. Any JSON-serializable value is acceptable.
|
25123
|
-
* A value of `null` will cause the parameter value to be removed, if it matches.
|
25124
|
-
*/
|
25125
|
-
value: unknown;
|
25126
|
-
/**
|
25127
|
-
* @description Unique sequence identifier of the conditional value within the component parameter.
|
25128
|
-
* This value must be unique within the conditional values array, and it should not change after a condition is created.
|
25129
|
-
*/
|
25130
|
-
id: number;
|
25131
|
-
};
|
25132
|
-
/**
|
25133
|
-
* @deprecated
|
25134
|
-
* @description beta functionality subject to change
|
25135
|
-
*/
|
25136
|
-
VisibilityCriteriaGroup: {
|
25137
|
-
/**
|
25138
|
-
* @description The boolean operator to join the clauses with. Defaults to & if not specified.
|
25139
|
-
* @enum {string}
|
25140
|
-
*/
|
25141
|
-
op?: "&" | "|";
|
25142
|
-
clauses: (external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteria"] | external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["VisibilityCriteriaGroup"])[];
|
25143
|
-
};
|
25144
|
-
/**
|
25145
|
-
* @deprecated
|
25146
|
-
* @description beta functionality subject to change
|
25147
|
-
*/
|
25148
|
-
VisibilityCriteria: {
|
25149
|
-
/** @description The rule type to execute */
|
25150
|
-
rule: string;
|
25151
|
-
/**
|
25152
|
-
* @description The source value of the rule.
|
25153
|
-
* For rules which have multiple classes of match, for example a dynamic input matches on a named DI, the rule is dynamic input and the DI name is the source.
|
25154
|
-
*/
|
25155
|
-
source?: string;
|
25156
|
-
/** @description The rule-definition-specific operator to test against */
|
25157
|
-
op: string;
|
25158
|
-
/** @description The value, or if an array several potential values, to test against. In most rules, multiple values are OR'd together ('any of') but this is not a hard requirement. */
|
25159
|
-
value: string | string[];
|
25160
23988
|
};
|
25161
23989
|
/** @description Defines a connection to a dynamic token on a data resource */
|
25162
23990
|
DataElementConnectionDefinition: {
|
@@ -26159,8 +24987,6 @@ declare class CanvasClient extends ApiClient<CanvasClientOptions> {
|
|
26159
24987
|
helpText?: string | undefined;
|
26160
24988
|
type: string;
|
26161
24989
|
localizable?: boolean | undefined;
|
26162
|
-
notLocalizedByDefault?: boolean | undefined;
|
26163
|
-
allowConditionalValues?: boolean | undefined;
|
26164
24990
|
typeConfig?: unknown;
|
26165
24991
|
}[] | undefined;
|
26166
24992
|
categoryId?: string | null | undefined;
|
@@ -26204,34 +25030,6 @@ declare class CanvasClient extends ApiClient<CanvasClientOptions> {
|
|
26204
25030
|
locales?: {
|
26205
25031
|
[key: string]: unknown;
|
26206
25032
|
} | undefined;
|
26207
|
-
conditions?: {
|
26208
|
-
when: {
|
26209
|
-
op?: "&" | "|" | undefined;
|
26210
|
-
clauses: (any | {
|
26211
|
-
rule: string;
|
26212
|
-
source?: string | undefined;
|
26213
|
-
op: string;
|
26214
|
-
value: string | string[];
|
26215
|
-
})[];
|
26216
|
-
};
|
26217
|
-
value: unknown;
|
26218
|
-
id: number;
|
26219
|
-
}[] | undefined;
|
26220
|
-
localesConditions?: {
|
26221
|
-
[key: string]: {
|
26222
|
-
when: {
|
26223
|
-
op?: "&" | "|" | undefined;
|
26224
|
-
clauses: (any | {
|
26225
|
-
rule: string;
|
26226
|
-
source?: string | undefined;
|
26227
|
-
op: string;
|
26228
|
-
value: string | string[];
|
26229
|
-
})[];
|
26230
|
-
};
|
26231
|
-
value: unknown;
|
26232
|
-
id: number;
|
26233
|
-
}[];
|
26234
|
-
} | undefined;
|
26235
25033
|
};
|
26236
25034
|
} | undefined;
|
26237
25035
|
variant?: string | undefined;
|
@@ -26279,34 +25077,6 @@ declare class CanvasClient extends ApiClient<CanvasClientOptions> {
|
|
26279
25077
|
locales?: {
|
26280
25078
|
[key: string]: unknown;
|
26281
25079
|
} | undefined;
|
26282
|
-
conditions?: {
|
26283
|
-
when: {
|
26284
|
-
op?: "&" | "|" | undefined;
|
26285
|
-
clauses: (any | {
|
26286
|
-
rule: string;
|
26287
|
-
source?: string | undefined;
|
26288
|
-
op: string;
|
26289
|
-
value: string | string[];
|
26290
|
-
})[];
|
26291
|
-
};
|
26292
|
-
value: unknown;
|
26293
|
-
id: number;
|
26294
|
-
}[] | undefined;
|
26295
|
-
localesConditions?: {
|
26296
|
-
[key: string]: {
|
26297
|
-
when: {
|
26298
|
-
op?: "&" | "|" | undefined;
|
26299
|
-
clauses: (any | {
|
26300
|
-
rule: string;
|
26301
|
-
source?: string | undefined;
|
26302
|
-
op: string;
|
26303
|
-
value: string | string[];
|
26304
|
-
})[];
|
26305
|
-
};
|
26306
|
-
value: unknown;
|
26307
|
-
id: number;
|
26308
|
-
}[];
|
26309
|
-
} | undefined;
|
26310
25080
|
};
|
26311
25081
|
} | undefined;
|
26312
25082
|
slots?: {
|
@@ -26806,7 +25576,6 @@ declare class UniqueBatchEntries<TArgs, TResult> {
|
|
26806
25576
|
}
|
26807
25577
|
|
26808
25578
|
declare const CANVAS_VIZ_CONTROL_PARAM = "$viz";
|
26809
|
-
|
26810
25579
|
/**
|
26811
25580
|
* @deprecated beta functionality subject to change
|
26812
25581
|
*/
|
@@ -26832,21 +25601,26 @@ type VisibilityParameterValue = {
|
|
26832
25601
|
/**
|
26833
25602
|
* @deprecated beta functionality subject to change
|
26834
25603
|
*/
|
26835
|
-
type VisibilityCriteriaGroup =
|
26836
|
-
/**
|
26837
|
-
|
26838
|
-
|
26839
|
-
|
25604
|
+
type VisibilityCriteriaGroup = {
|
25605
|
+
/** The boolean operator to join the clauses with. Defaults to & if not specified. */
|
25606
|
+
op?: '&' | '|';
|
25607
|
+
clauses: Array<VisibilityCriteria | VisibilityCriteriaGroup>;
|
25608
|
+
};
|
26840
25609
|
/**
|
26841
25610
|
* @deprecated beta functionality subject to change
|
26842
25611
|
*/
|
26843
|
-
type
|
25612
|
+
type VisibilityCriteria = {
|
25613
|
+
/** The rule type to execute */
|
25614
|
+
rule: string;
|
25615
|
+
/** The source value of the rule. For rules which have multiple classes of match, for example a dynamic input matches on a named DI. The rule is dynamic input. The DI name is the source. */
|
25616
|
+
source?: string;
|
25617
|
+
/** The rule-definition-specific operator to test against */
|
25618
|
+
op: string;
|
25619
|
+
/** The value, or if an array several potential values, to test against. In most rules, multiple values are OR'd together ('any of') but this is not a hard requirement. */
|
25620
|
+
value: string | string[];
|
25621
|
+
};
|
26844
25622
|
/**
|
26845
25623
|
* @deprecated beta functionality subject to change
|
26846
|
-
*
|
26847
|
-
* true: criteria group is true
|
26848
|
-
* false: criteria group is false
|
26849
|
-
* null: criteria group has clauses which are indeterminate with the current rule-set
|
26850
25624
|
*/
|
26851
25625
|
type VisibilityCriteriaEvaluationResult = boolean | null;
|
26852
25626
|
|
@@ -26868,45 +25642,6 @@ type EvaluateCriteriaGroupOptions = {
|
|
26868
25642
|
*/
|
26869
25643
|
declare function evaluateVisibilityCriteriaGroup(options: EvaluateCriteriaGroupOptions): VisibilityCriteriaEvaluationResult;
|
26870
25644
|
|
26871
|
-
interface EvaluatePropertyCriteriaOptions extends Omit<EvaluateCriteriaGroupOptions, 'criteriaGroup'> {
|
26872
|
-
/** The base value of the property. May be a localized value. */
|
26873
|
-
baseValue: unknown;
|
26874
|
-
/** Conditional values that are possible for the property. May be localized conditions. */
|
26875
|
-
conditionalValues: ComponentParameterConditionalValue[] | undefined;
|
26876
|
-
/**
|
26877
|
-
* Controls the overall result when indeterminate criteria are found
|
26878
|
-
* (unknown rule types, or rule evaluators that return null)
|
26879
|
-
* When true, indeterminate criteria will be kept for downstream evaluation when more rule types are available
|
26880
|
-
* When false, indeterminate criteria will be treated as non-matching and removed (appropriate for the final rules evaluation before rendering)
|
26881
|
-
*/
|
26882
|
-
keepIndeterminate?: boolean;
|
26883
|
-
}
|
26884
|
-
type PropertyCriteriaMatch = {
|
26885
|
-
/** The conditional value that matched. When undefined, the default value matched. */
|
26886
|
-
matched?: ComponentParameterConditionalValue;
|
26887
|
-
/** The current value of the property from the conditional or default value. */
|
26888
|
-
currentValue: unknown;
|
26889
|
-
/**
|
26890
|
-
* The index of the matched condition, or -1 if no condition matched
|
26891
|
-
* NOTE: if simplifyCriteria is true, this index reflects the original index
|
26892
|
-
* in the `conditionalValues` parameter before any criteria simplification occurred.
|
26893
|
-
*/
|
26894
|
-
currentConditionIndex: number;
|
26895
|
-
/**
|
26896
|
-
* Remaining criteria after simplifying the expressions using the rules.
|
26897
|
-
* If undefined, all criteria have been eliminated as candidates, and the `currentValue` is the final value.
|
26898
|
-
*/
|
26899
|
-
remainingConditionalValues: ComponentParameterConditionalValue[] | undefined;
|
26900
|
-
};
|
26901
|
-
/**
|
26902
|
-
*
|
26903
|
-
* NOTE: function mutates the conditionalValues input parameter when `simplifyCriteria` is passed for max performance.
|
26904
|
-
* If you want immutability, wrap it in immer.
|
26905
|
-
*
|
26906
|
-
* @deprecated beta functionality subject to change
|
26907
|
-
*/
|
26908
|
-
declare function evaluatePropertyCriteria({ baseValue, conditionalValues, keepIndeterminate, ...evaluateGroupOptions }: EvaluatePropertyCriteriaOptions): PropertyCriteriaMatch;
|
26909
|
-
|
26910
25645
|
interface EvaluateNodeVisibilityOptions extends Omit<EvaluateCriteriaGroupOptions, 'criteriaGroup'> {
|
26911
25646
|
/** The node to evaluate visibility rules on */
|
26912
25647
|
node: ComponentInstance;
|
@@ -26929,24 +25664,7 @@ interface EvaluateNodeTreeVisibilityOptions extends Pick<EvaluateNodeVisibilityO
|
|
26929
25664
|
*
|
26930
25665
|
* @deprecated beta functionality subject to change
|
26931
25666
|
*/
|
26932
|
-
declare function
|
26933
|
-
|
26934
|
-
interface EvaluateWalkTreePropertyCriteriaOptions extends Pick<EvaluatePropertyCriteriaOptions, 'rules' | 'keepIndeterminate'> {
|
26935
|
-
node: ComponentInstance;
|
26936
|
-
}
|
26937
|
-
/**
|
26938
|
-
* Function to call to evaluate conditional properties rules when traversing the node tree with walkNodeTree or other traversal tool.
|
26939
|
-
* This function will perform a simplification of the conditional property values,
|
26940
|
-
* removing known-non-matching conditions, and for authoritative matches the match value
|
26941
|
-
* replaces the `value` property, clearing the conditionals.
|
26942
|
-
*
|
26943
|
-
* Automatically also evaluates localizable conditional values.
|
26944
|
-
*
|
26945
|
-
* NOTE: this function may mutate its input object for maximum performance.
|
26946
|
-
*
|
26947
|
-
* @deprecated beta functionality subject to change
|
26948
|
-
*/
|
26949
|
-
declare function evaluateWalkTreePropertyCriteria({ rules, node, keepIndeterminate, }: EvaluateWalkTreePropertyCriteriaOptions): void;
|
25667
|
+
declare function evaluateWalkTreeVisibility({ rules, showIndeterminate, context, }: EvaluateNodeTreeVisibilityOptions): boolean | undefined;
|
26950
25668
|
|
26951
25669
|
/**
|
26952
25670
|
* @deprecated beta functionality subject to change
|
@@ -27288,7 +26006,7 @@ interface paths {
|
|
27288
26006
|
parameters: {
|
27289
26007
|
query: {
|
27290
26008
|
projectId: string;
|
27291
|
-
type: "component" | "contentType" | "blockType" | "asset" | "componentPattern" | "entryPattern";
|
26009
|
+
type: "component" | "contentType" | "blockType" | "asset" | "componentPattern" | "entryPattern" | "compositionPattern" | "entry";
|
27292
26010
|
ids: string[];
|
27293
26011
|
withInstances?: boolean | null;
|
27294
26012
|
limit?: number;
|
@@ -27488,34 +26206,6 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
27488
26206
|
locales?: {
|
27489
26207
|
[key: string]: unknown;
|
27490
26208
|
} | undefined;
|
27491
|
-
conditions?: {
|
27492
|
-
when: {
|
27493
|
-
op?: "&" | "|" | undefined;
|
27494
|
-
clauses: (any | {
|
27495
|
-
rule: string;
|
27496
|
-
source?: string | undefined;
|
27497
|
-
op: string;
|
27498
|
-
value: string | string[];
|
27499
|
-
})[];
|
27500
|
-
};
|
27501
|
-
value: unknown;
|
27502
|
-
id: number;
|
27503
|
-
}[] | undefined;
|
27504
|
-
localesConditions?: {
|
27505
|
-
[key: string]: {
|
27506
|
-
when: {
|
27507
|
-
op?: "&" | "|" | undefined;
|
27508
|
-
clauses: (any | {
|
27509
|
-
rule: string;
|
27510
|
-
source?: string | undefined;
|
27511
|
-
op: string;
|
27512
|
-
value: string | string[];
|
27513
|
-
})[];
|
27514
|
-
};
|
27515
|
-
value: unknown;
|
27516
|
-
id: number;
|
27517
|
-
}[];
|
27518
|
-
} | undefined;
|
27519
26209
|
};
|
27520
26210
|
} | undefined;
|
27521
26211
|
variant?: string | undefined;
|
@@ -27556,34 +26246,6 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
27556
26246
|
locales?: {
|
27557
26247
|
[key: string]: unknown;
|
27558
26248
|
} | undefined;
|
27559
|
-
conditions?: {
|
27560
|
-
when: {
|
27561
|
-
op?: "&" | "|" | undefined;
|
27562
|
-
clauses: (any | {
|
27563
|
-
rule: string;
|
27564
|
-
source?: string | undefined;
|
27565
|
-
op: string;
|
27566
|
-
value: string | string[];
|
27567
|
-
})[];
|
27568
|
-
};
|
27569
|
-
value: unknown;
|
27570
|
-
id: number;
|
27571
|
-
}[] | undefined;
|
27572
|
-
localesConditions?: {
|
27573
|
-
[key: string]: {
|
27574
|
-
when: {
|
27575
|
-
op?: "&" | "|" | undefined;
|
27576
|
-
clauses: (any | {
|
27577
|
-
rule: string;
|
27578
|
-
source?: string | undefined;
|
27579
|
-
op: string;
|
27580
|
-
value: string | string[];
|
27581
|
-
})[];
|
27582
|
-
};
|
27583
|
-
value: unknown;
|
27584
|
-
id: number;
|
27585
|
-
}[];
|
27586
|
-
} | undefined;
|
27587
26249
|
};
|
27588
26250
|
} | undefined;
|
27589
26251
|
variant?: string | undefined;
|
@@ -27631,34 +26293,6 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
27631
26293
|
locales?: {
|
27632
26294
|
[key: string]: unknown;
|
27633
26295
|
} | undefined;
|
27634
|
-
conditions?: {
|
27635
|
-
when: {
|
27636
|
-
op?: "&" | "|" | undefined;
|
27637
|
-
clauses: (any | {
|
27638
|
-
rule: string;
|
27639
|
-
source?: string | undefined;
|
27640
|
-
op: string;
|
27641
|
-
value: string | string[];
|
27642
|
-
})[];
|
27643
|
-
};
|
27644
|
-
value: unknown;
|
27645
|
-
id: number;
|
27646
|
-
}[] | undefined;
|
27647
|
-
localesConditions?: {
|
27648
|
-
[key: string]: {
|
27649
|
-
when: {
|
27650
|
-
op?: "&" | "|" | undefined;
|
27651
|
-
clauses: (any | {
|
27652
|
-
rule: string;
|
27653
|
-
source?: string | undefined;
|
27654
|
-
op: string;
|
27655
|
-
value: string | string[];
|
27656
|
-
})[];
|
27657
|
-
};
|
27658
|
-
value: unknown;
|
27659
|
-
id: number;
|
27660
|
-
}[];
|
27661
|
-
} | undefined;
|
27662
26296
|
};
|
27663
26297
|
} | undefined;
|
27664
26298
|
slots?: {
|
@@ -27724,34 +26358,6 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
27724
26358
|
locales?: {
|
27725
26359
|
[key: string]: unknown;
|
27726
26360
|
} | undefined;
|
27727
|
-
conditions?: {
|
27728
|
-
when: {
|
27729
|
-
op?: "&" | "|" | undefined;
|
27730
|
-
clauses: (any | {
|
27731
|
-
rule: string;
|
27732
|
-
source?: string | undefined;
|
27733
|
-
op: string;
|
27734
|
-
value: string | string[];
|
27735
|
-
})[];
|
27736
|
-
};
|
27737
|
-
value: unknown;
|
27738
|
-
id: number;
|
27739
|
-
}[] | undefined;
|
27740
|
-
localesConditions?: {
|
27741
|
-
[key: string]: {
|
27742
|
-
when: {
|
27743
|
-
op?: "&" | "|" | undefined;
|
27744
|
-
clauses: (any | {
|
27745
|
-
rule: string;
|
27746
|
-
source?: string | undefined;
|
27747
|
-
op: string;
|
27748
|
-
value: string | string[];
|
27749
|
-
})[];
|
27750
|
-
};
|
27751
|
-
value: unknown;
|
27752
|
-
id: number;
|
27753
|
-
}[];
|
27754
|
-
} | undefined;
|
27755
26361
|
};
|
27756
26362
|
} | undefined;
|
27757
26363
|
slots?: {
|
@@ -27862,15 +26468,9 @@ declare const parseComponentPlaceholderId: (id: string) => {
|
|
27862
26468
|
parent?: PlaceholderParent | undefined;
|
27863
26469
|
} | undefined;
|
27864
26470
|
|
27865
|
-
/**
|
27866
|
-
* @deprecated do not use, will be removed in a future version
|
27867
|
-
*/
|
27868
26471
|
type FlattenProperty<P> = P extends {
|
27869
26472
|
value: unknown;
|
27870
26473
|
} ? P['value'] : P;
|
27871
|
-
/**
|
27872
|
-
* @deprecated do not use, will be removed in a future version
|
27873
|
-
*/
|
27874
26474
|
type FlattenValues<T extends DataWithProperties> = T extends Pick<ComponentInstance, 'parameters'> ? Record<string, unknown> & {
|
27875
26475
|
[Property in keyof T['parameters']]: FlattenProperty<T['parameters'][Property]>;
|
27876
26476
|
} : T extends Pick<EntryData, 'fields'> ? Record<string, unknown> & {
|
@@ -27881,9 +26481,6 @@ type FlattenValues<T extends DataWithProperties> = T extends Pick<ComponentInsta
|
|
27881
26481
|
* If no properties are defined, returns undefined.
|
27882
26482
|
*/
|
27883
26483
|
declare function getPropertiesValue(entity: Pick<ComponentInstance, 'parameters'> | Pick<EntryData, 'fields'>): ComponentInstance['parameters'];
|
27884
|
-
/**
|
27885
|
-
* @deprecated do not use, will be removed in a future version
|
27886
|
-
*/
|
27887
26484
|
interface FlattenValuesOptions {
|
27888
26485
|
/**
|
27889
26486
|
* Take only the first item from an array
|
@@ -27907,16 +26504,11 @@ interface FlattenValuesOptions {
|
|
27907
26504
|
levels?: number;
|
27908
26505
|
}
|
27909
26506
|
/**
|
27910
|
-
*
|
26507
|
+
* Get the data stored in the value of a component parameter
|
26508
|
+
* or a field attached to an Entry, Block or Asset
|
27911
26509
|
*/
|
27912
26510
|
declare function getPropertyValue<TValue, T extends ComponentParameter<TValue>>(parameter: T): TValue;
|
27913
|
-
/**
|
27914
|
-
* @deprecated do not use, will be removed in a future version
|
27915
|
-
*/
|
27916
26511
|
declare function getPropertyValue(parameter: null): null;
|
27917
|
-
/**
|
27918
|
-
* @deprecated do not use, will be removed in a future version
|
27919
|
-
*/
|
27920
26512
|
declare function getPropertyValue(parameter: undefined): undefined;
|
27921
26513
|
/**
|
27922
26514
|
* Get the localized values of a component parameter
|
@@ -27929,27 +26521,12 @@ declare function getLocalizedPropertyValues<TValue, T extends ComponentParameter
|
|
27929
26521
|
declare function getLocalizedPropertyValues(parameter: null): null;
|
27930
26522
|
declare function getLocalizedPropertyValues(parameter: undefined): undefined;
|
27931
26523
|
type DataWithProperties = Pick<ComponentInstance, 'parameters'> | Pick<EntryData, 'fields'>;
|
27932
|
-
/**
|
27933
|
-
* @deprecated do not use, will be removed in a future version
|
27934
|
-
*/
|
27935
26524
|
declare function flattenValues(data: null, options?: FlattenValuesOptions): null;
|
27936
|
-
/**
|
27937
|
-
* @deprecated do not use, will be removed in a future version
|
27938
|
-
*/
|
27939
26525
|
declare function flattenValues(data: undefined, options?: FlattenValuesOptions): undefined;
|
27940
|
-
/**
|
27941
|
-
* @deprecated do not use, will be removed in a future version
|
27942
|
-
*/
|
27943
26526
|
declare function flattenValues<Data extends DataWithProperties>(data: Data | null | undefined, options?: FlattenValuesOptions): FlattenValues<Data> | null | undefined;
|
27944
|
-
/**
|
27945
|
-
* @deprecated do not use, will be removed in a future version
|
27946
|
-
*/
|
27947
26527
|
declare function flattenValues<Data extends DataWithProperties>(data: Array<Data> | null | undefined, options: {
|
27948
26528
|
toSingle: true;
|
27949
26529
|
} & Omit<FlattenValuesOptions, 'toSingle'>): FlattenValues<Data> | null | undefined;
|
27950
|
-
/**
|
27951
|
-
* @deprecated do not use, will be removed in a future version
|
27952
|
-
*/
|
27953
26530
|
declare function flattenValues<Data extends DataWithProperties>(data: Array<Data> | null | undefined, options?: FlattenValuesOptions): Array<FlattenValues<Data>> | null | undefined;
|
27954
26531
|
|
27955
26532
|
type BindVariablesResult<TValue> = {
|
@@ -28056,4 +26633,4 @@ declare class WorkflowClient extends ApiClient {
|
|
28056
26633
|
|
28057
26634
|
declare const CanvasClientError: typeof ApiClientError;
|
28058
26635
|
|
28059
|
-
export { ASSETS_SOURCE_CUSTOM_URL, ASSETS_SOURCE_UNIFORM, ASSET_PARAMETER_TYPE, ATTRIBUTE_COMPONENT_ID, ATTRIBUTE_MULTILINE, ATTRIBUTE_PARAMETER_ID, ATTRIBUTE_PARAMETER_TYPE, ATTRIBUTE_PARAMETER_VALUE, ATTRIBUTE_PLACEHOLDER, type AddComponentMessage, type AssetParamValue, type AssetParamValueItem, type BatchEnhancer, BatchEntry, type BatchInvalidationPayload, type BindVariablesOptions, type BindVariablesResult, type BindVariablesToObjectOptions, type BlockLocationReference, type BlockValue, CANVAS_BLOCK_PARAM_TYPE, CANVAS_DRAFT_STATE, CANVAS_EDITOR_STATE, CANVAS_ENRICHMENT_TAG_PARAM, CANVAS_INTENT_TAG_PARAM, CANVAS_LOCALE_TAG_PARAM, CANVAS_LOCALIZATION_SLOT, CANVAS_LOCALIZATION_TYPE, CANVAS_PERSONALIZATION_PARAM, CANVAS_PERSONALIZE_SLOT, CANVAS_PERSONALIZE_TYPE, CANVAS_PUBLISHED_STATE, CANVAS_SLOT_SECTION_SLOT, CANVAS_SLOT_SECTION_TYPE, CANVAS_TEST_SLOT, CANVAS_TEST_TYPE, CANVAS_TEST_VARIANT_PARAM, CANVAS_VIZ_CONTROL_PARAM, CANVAS_VIZ_DI_RULE, CANVAS_VIZ_LOCALE_RULE, CANVAS_VIZ_QUIRKS_RULE, CanvasClient, CanvasClientError, type CanvasDefinitions, type CategoriesDeleteParameters, type CategoriesGetParameters, type CategoriesGetResponse, type CategoriesPutParameters, type Category, CategoryClient, type Channel, type ChannelMessage, type ChannelSubscription, ChildEnhancerBuilder, type ComponentDefinition, type ComponentDefinitionDeleteParameters, type ComponentDefinitionGetParameters, type ComponentDefinitionGetResponse, type ComponentDefinitionParameter, type ComponentDefinitionPermission, type ComponentDefinitionPutParameters, type ComponentDefinitionSlot, type ComponentDefinitionSlugSettings, type ComponentDefinitionVariant, type ComponentEnhancer, type ComponentEnhancerFunction, type ComponentEnhancerOptions, type ComponentInstance, type ComponentInstanceContextualEditing, type ComponentInstanceHistoryEntry, type ComponentInstanceHistoryGetParameters, type ComponentInstanceHistoryGetResponse, type ComponentLocationReference, type ComponentLocationReferenceV2, type ComponentOverridability, type ComponentOverride, type ComponentOverrides, type ComponentParameter, type ComponentParameterBlock, type ComponentParameterConditionalValue, type ComponentParameterContextualEditing, type ComponentParameterEnhancer, type ComponentParameterEnhancerFunction, type ComponentParameterEnhancerOptions, type CompositionDataDiagnostic, type CompositionDeleteParameters, type CompositionDiagnostics, type CompositionFilters, type CompositionGetByComponentIdParameters, type CompositionGetByIdParameters, type CompositionGetByNodeIdParameters, type CompositionGetByNodePathParameters, type CompositionGetBySlugParameters, type CompositionGetListResponse, type CompositionGetOrderBy, type CompositionGetParameters, type CompositionGetResponse, type CompositionGetValidResponses, type CompositionIssue, type CompositionPatternIssue, type CompositionPutParameters, type CompositionResolvedGetResponse, type CompositionResolvedListResponse, type CompositionUIStatus, ContentClient, type ContentType, type ContentTypeField, type ContextStorageUpdatedMessage, type ContextualEditingComponentReference, type CopiedComponentSubtree, type DataDiagnostic, type DataElementBindingIssue, type DataElementConnectionDefinition, type DataElementConnectionFailureAction, type DataElementConnectionFailureLogLevel, type DataResolutionConfigIssue, type DataResolutionIssue, type DataResolutionOption, type DataResolutionOptionNegative, type DataResolutionOptionPositive, type DataResolutionParameters, type DataResourceDefinition, type DataResourceDefinitions, type DataResourceIssue, type DataResourceVariables, type DataSource, DataSourceClient, type DataSourceDeleteParameters, type DataSourceGetParameters, type DataSourceGetResponse, type DataSourcePutParameters, type DataSourcesGetParameters, type DataSourcesGetResponse, type DataType, DataTypeClient, type DataTypeDeleteParameters, type DataTypeGetParameters, type DataTypeGetResponse, type DataTypePutParameters, type DataVariableDefinition, type DataWithProperties, type DeleteContentTypeOptions, type DeleteEntryOptions, type DismissPlaceholderMessage, type DynamicInputIssue, EDGE_CACHE_DISABLED, EDGE_DEFAULT_CACHE_TTL, EDGE_MAX_CACHE_TTL, EDGE_MIN_CACHE_TTL, EMPTY_COMPOSITION, type EdgehancersDiagnostics, type EdgehancersWholeResponseCacheDiagnostics, type EditorStateUpdatedMessage, EnhancerBuilder, type EnhancerContext, type EnhancerError, EntityReleasesClient, type EntityReleasesGetParameters, type EntityReleasesGetResponse, type EntriesGetParameters, type EntriesGetResponse, type EntriesHistoryGetParameters, type EntriesHistoryGetResponse, type EntriesResolvedListResponse, type Entry, type EntryData, type EntryFilters, type EntryList, type EvaluateCriteriaGroupOptions, type EvaluateNodeTreeVisibilityOptions, type EvaluatePropertyCriteriaOptions, type EvaluateWalkTreePropertyCriteriaOptions, type EventNames, type Filters, type FindInNodeTreeReference, type FlattenProperty, type FlattenValues, type FlattenValuesOptions, type GetContentTypesOptions, type GetContentTypesResponse, type GetEntriesOptions, type GetEntriesResponse, type GetParameterAttributesProps, IN_CONTEXT_EDITOR_COMPONENT_END_ROLE, IN_CONTEXT_EDITOR_COMPONENT_START_ROLE, IN_CONTEXT_EDITOR_CONFIG_CHECK_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_EMBED_SCRIPT_ID, IN_CONTEXT_EDITOR_FORCED_SETTINGS_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_QUERY_STRING_PARAM, IS_RENDERED_BY_UNIFORM_ATTRIBUTE, type InvalidationPayload, LOCALE_DYNAMIC_INPUT_NAME, type LimitPolicy, type LinkComponentParameterValue, type LinkParamConfiguration, type LinkParamValue, type LinkParameterType, type LinkTypeConfiguration, type Locale, LocaleClient, type LocaleDeleteParameters, type LocalePutParameters, type LocalesGetParameters, type LocalesGetResponse, type LocalizeDeprecatedOptions, type LocalizeModernOptions, type MessageHandler, type MoveComponentMessage, type NodeLocationReference, type NonProjectMapLinkParamValue, type OpenParameterEditorMessage, type OverrideOptions, PLACEHOLDER_ID, type PatternIssue, type PreviewEventBus, type PreviewPanelSettings, type ProjectMapLinkComponentParameterValue, type ProjectMapLinkParamValue, type Prompt, PromptClient, type PromptsDeleteParameters, type PromptsGetParameters, type PromptsGetResponse, type PromptsPutParameters, type PropertyCriteriaMatch, type PutContentTypeBody, type PutEntryBody, type ReadyMessage, RelationshipClient, type RelationshipResultInstance, type Release, ReleaseClient, type ReleaseContent, ReleaseContentsClient, type ReleaseContentsDeleteBody, type ReleaseContentsGetParameters, type ReleaseContentsGetResponse, type ReleaseDeleteParameters, type ReleasePatchParameters, type ReleasePutParameters, type ReleaseState, type ReleasesGetParameters, type ReleasesGetResponse, type ReportRenderedCompositionsMessage, type RequestComponentSuggestionMessage, type ResolvedRouteGetResponse, type RichTextBuiltInElement, type RichTextBuiltInFormat, type RichTextParamConfiguration, type RichTextParamValue, type RootComponentInstance, type RootEntryReference, type RootLocationReference, RouteClient, type RouteDynamicInputs, type RouteGetParameters, type RouteGetResponse, type RouteGetResponseComposition, type RouteGetResponseEdgehancedComposition, type RouteGetResponseEdgehancedNotFound, type RouteGetResponseNotFound, type RouteGetResponseRedirect, SECRET_QUERY_STRING_PARAM, type SelectComponentMessage, type SelectParameterMessage, type SpecificProjectMap, type StringOperators, type SubscribeToCompositionOptions, type SuggestComponentMessage, type TreeNodeInfoTypes, type TriggerComponentActionMessage, type TriggerCompositionActionMessage, UncachedCanvasClient, UncachedCategoryClient, UncachedContentClient, UniqueBatchEntries, type UnsubscribeCallback, type UpdateComponentParameterMessage, type UpdateComponentReferencesMessage, type UpdateCompositionInternalMessage, type UpdateCompositionMessage, type UpdateContextualEditingStateInternalMessage, type UpdateFeatureFlagsMessage, type UpdatePreviewSettingsMessage, type VisibilityCriteria, type VisibilityCriteriaEvaluationResult, type VisibilityCriteriaGroup, type VisibilityParameterValue, type VisibilityRule, type VisibilityRules, type WalkComponentTreeActions, type WalkNodeTreeActions, type WalkNodeTreeOptions, WorkflowClient, type WorkflowDefinition, type WorkflowStage, type WorkflowStagePermission, type WorkflowStageTransition, type WorkflowStageTransitionPermission, type WorkflowsDeleteParameters, type WorkflowsGetParameters, type WorkflowsGetResponse, type WorkflowsPutParameters, bindVariables, bindVariablesToObject, compose, convertEntryToPutEntry, createBatchEnhancer, createCanvasChannel, createDynamicInputVisibilityRule, createEventBus, createLimitPolicy, createLocaleVisibilityRule, createQuirksVisibilityRule, createUniformApiEnhancer, createVariableReference, enhance, evaluatePropertyCriteria, evaluateVisibilityCriteriaGroup, evaluateWalkTreeNodeVisibility, evaluateWalkTreePropertyCriteria, extractLocales, findParameterInNodeTree, flattenValues, generateComponentPlaceholderId, generateHash, getBlockValue, getChannelName, getComponentJsonPointer, getComponentPath, getLocalizedPropertyValues, getNounForLocation, getNounForNode, getParameterAttributes, getPropertiesValue, getPropertyValue, isAddComponentMessage, isAllowedReferrer, isAssetParamValue, isAssetParamValueItem, isComponentActionMessage, isComponentPlaceholderId, isContextStorageUpdatedMessage, isDismissPlaceholderMessage, isEntryData, isMovingComponentMessage, isNestedNodeType, isOpenParameterEditorMessage, isReadyMessage, isReportRenderedCompositionsMessage, isRequestComponentSuggestionMessage, isRootEntryReference, isSelectComponentMessage, isSelectParameterMessage, isSuggestComponentMessage, isSystemComponentDefinition, isTriggerCompositionActionMessage, isUpdateComponentParameterMessage, isUpdateComponentReferencesMessage, isUpdateCompositionInternalMessage, isUpdateCompositionMessage, isUpdateContextualEditingStateInternalMessage, isUpdateFeatureFlagsMessage, isUpdatePreviewSettingsMessage, localize, mapSlotToPersonalizedVariations, mapSlotToTestVariations, nullLimitPolicy, parseComponentPlaceholderId, parseVariableExpression, subscribeToComposition, walkComponentTree, walkNodeTree };
|
26636
|
+
export { ASSETS_SOURCE_CUSTOM_URL, ASSETS_SOURCE_UNIFORM, ASSET_PARAMETER_TYPE, ATTRIBUTE_COMPONENT_ID, ATTRIBUTE_MULTILINE, ATTRIBUTE_PARAMETER_ID, ATTRIBUTE_PARAMETER_TYPE, ATTRIBUTE_PARAMETER_VALUE, ATTRIBUTE_PLACEHOLDER, type AddComponentMessage, type AssetParamValue, type AssetParamValueItem, type BatchEnhancer, BatchEntry, type BatchInvalidationPayload, type BindVariablesOptions, type BindVariablesResult, type BindVariablesToObjectOptions, type BlockLocationReference, type BlockValue, CANVAS_BLOCK_PARAM_TYPE, CANVAS_DRAFT_STATE, CANVAS_EDITOR_STATE, CANVAS_ENRICHMENT_TAG_PARAM, CANVAS_INTENT_TAG_PARAM, CANVAS_LOCALE_TAG_PARAM, CANVAS_LOCALIZATION_SLOT, CANVAS_LOCALIZATION_TYPE, CANVAS_PERSONALIZATION_PARAM, CANVAS_PERSONALIZE_SLOT, CANVAS_PERSONALIZE_TYPE, CANVAS_PUBLISHED_STATE, CANVAS_SLOT_SECTION_SLOT, CANVAS_SLOT_SECTION_TYPE, CANVAS_TEST_SLOT, CANVAS_TEST_TYPE, CANVAS_TEST_VARIANT_PARAM, CANVAS_VIZ_CONTROL_PARAM, CANVAS_VIZ_DI_RULE, CANVAS_VIZ_LOCALE_RULE, CANVAS_VIZ_QUIRKS_RULE, CanvasClient, CanvasClientError, type CanvasDefinitions, type CategoriesDeleteParameters, type CategoriesGetParameters, type CategoriesGetResponse, type CategoriesPutParameters, type Category, CategoryClient, type Channel, type ChannelMessage, type ChannelSubscription, ChildEnhancerBuilder, type ComponentDefinition, type ComponentDefinitionDeleteParameters, type ComponentDefinitionGetParameters, type ComponentDefinitionGetResponse, type ComponentDefinitionParameter, type ComponentDefinitionPermission, type ComponentDefinitionPutParameters, type ComponentDefinitionSlot, type ComponentDefinitionSlugSettings, type ComponentDefinitionVariant, type ComponentEnhancer, type ComponentEnhancerFunction, type ComponentEnhancerOptions, type ComponentInstance, type ComponentInstanceContextualEditing, type ComponentInstanceHistoryEntry, type ComponentInstanceHistoryGetParameters, type ComponentInstanceHistoryGetResponse, type ComponentLocationReference, type ComponentLocationReferenceV2, type ComponentOverridability, type ComponentOverride, type ComponentOverrides, type ComponentParameter, type ComponentParameterBlock, type ComponentParameterContextualEditing, type ComponentParameterEnhancer, type ComponentParameterEnhancerFunction, type ComponentParameterEnhancerOptions, type CompositionDataDiagnostic, type CompositionDeleteParameters, type CompositionDiagnostics, type CompositionFilters, type CompositionGetByComponentIdParameters, type CompositionGetByIdParameters, type CompositionGetByNodeIdParameters, type CompositionGetByNodePathParameters, type CompositionGetBySlugParameters, type CompositionGetListResponse, type CompositionGetOrderBy, type CompositionGetParameters, type CompositionGetResponse, type CompositionGetValidResponses, type CompositionIssue, type CompositionPatternIssue, type CompositionPutParameters, type CompositionResolvedGetResponse, type CompositionResolvedListResponse, type CompositionUIStatus, ContentClient, type ContentType, type ContentTypeField, type ContextStorageUpdatedMessage, type ContextualEditingComponentReference, type CopiedComponentSubtree, type DataDiagnostic, type DataElementBindingIssue, type DataElementConnectionDefinition, type DataElementConnectionFailureAction, type DataElementConnectionFailureLogLevel, type DataResolutionConfigIssue, type DataResolutionIssue, type DataResolutionOption, type DataResolutionOptionNegative, type DataResolutionOptionPositive, type DataResolutionParameters, type DataResourceDefinition, type DataResourceDefinitions, type DataResourceIssue, type DataResourceVariables, type DataSource, DataSourceClient, type DataSourceDeleteParameters, type DataSourceGetParameters, type DataSourceGetResponse, type DataSourcePutParameters, type DataSourcesGetParameters, type DataSourcesGetResponse, type DataType, DataTypeClient, type DataTypeDeleteParameters, type DataTypeGetParameters, type DataTypeGetResponse, type DataTypePutParameters, type DataVariableDefinition, type DataWithProperties, type DeleteContentTypeOptions, type DeleteEntryOptions, type DismissPlaceholderMessage, type DynamicInputIssue, EDGE_CACHE_DISABLED, EDGE_DEFAULT_CACHE_TTL, EDGE_MAX_CACHE_TTL, EDGE_MIN_CACHE_TTL, EMPTY_COMPOSITION, type EdgehancersDiagnostics, type EdgehancersWholeResponseCacheDiagnostics, type EditorStateUpdatedMessage, EnhancerBuilder, type EnhancerContext, type EnhancerError, EntityReleasesClient, type EntityReleasesGetParameters, type EntityReleasesGetResponse, type EntriesGetParameters, type EntriesGetResponse, type EntriesHistoryGetParameters, type EntriesHistoryGetResponse, type EntriesResolvedListResponse, type Entry, type EntryData, type EntryFilters, type EntryList, type EvaluateCriteriaGroupOptions, type EvaluateNodeTreeVisibilityOptions, type EventNames, type Filters, type FindInNodeTreeReference, type FlattenProperty, type FlattenValues, type FlattenValuesOptions, type GetContentTypesOptions, type GetContentTypesResponse, type GetEntriesOptions, type GetEntriesResponse, type GetParameterAttributesProps, IN_CONTEXT_EDITOR_COMPONENT_END_ROLE, IN_CONTEXT_EDITOR_COMPONENT_START_ROLE, IN_CONTEXT_EDITOR_CONFIG_CHECK_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_EMBED_SCRIPT_ID, IN_CONTEXT_EDITOR_FORCED_SETTINGS_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_QUERY_STRING_PARAM, IS_RENDERED_BY_UNIFORM_ATTRIBUTE, type InvalidationPayload, LOCALE_DYNAMIC_INPUT_NAME, type LimitPolicy, type LinkComponentParameterValue, type LinkParamConfiguration, type LinkParamValue, type LinkParameterType, type LinkTypeConfiguration, type Locale, LocaleClient, type LocaleDeleteParameters, type LocalePutParameters, type LocalesGetParameters, type LocalesGetResponse, type LocalizeDeprecatedOptions, type LocalizeModernOptions, type MaxDepthExceededIssue, type MessageHandler, type MoveComponentMessage, type NodeLocationReference, type NonProjectMapLinkParamValue, type OpenParameterEditorMessage, type OverrideOptions, PLACEHOLDER_ID, type PatternIssue, type PreviewEventBus, type PreviewPanelSettings, type ProjectMapLinkComponentParameterValue, type ProjectMapLinkParamValue, type Prompt, PromptClient, type PromptsDeleteParameters, type PromptsGetParameters, type PromptsGetResponse, type PromptsPutParameters, type PutContentTypeBody, type PutEntryBody, type ReadyMessage, RelationshipClient, type RelationshipResultInstance, type Release, ReleaseClient, type ReleaseContent, ReleaseContentsClient, type ReleaseContentsDeleteBody, type ReleaseContentsGetParameters, type ReleaseContentsGetResponse, type ReleaseDeleteParameters, type ReleasePatchParameters, type ReleasePutParameters, type ReleaseState, type ReleasesGetParameters, type ReleasesGetResponse, type ReportRenderedCompositionsMessage, type RequestComponentSuggestionMessage, type ResolvedRouteGetResponse, type RichTextBuiltInElement, type RichTextBuiltInFormat, type RichTextParamConfiguration, type RichTextParamValue, type RootComponentInstance, type RootEntryReference, type RootLocationReference, RouteClient, type RouteDynamicInputs, type RouteGetParameters, type RouteGetResponse, type RouteGetResponseComposition, type RouteGetResponseEdgehancedComposition, type RouteGetResponseEdgehancedNotFound, type RouteGetResponseNotFound, type RouteGetResponseRedirect, SECRET_QUERY_STRING_PARAM, type SelectComponentMessage, type SelectParameterMessage, type SpecificProjectMap, type StringOperators, type SubscribeToCompositionOptions, type SuggestComponentMessage, type TreeNodeInfoTypes, type TriggerComponentActionMessage, type TriggerCompositionActionMessage, UncachedCanvasClient, UncachedCategoryClient, UncachedContentClient, UniqueBatchEntries, type UnsubscribeCallback, type UpdateComponentParameterMessage, type UpdateComponentReferencesMessage, type UpdateCompositionInternalMessage, type UpdateCompositionMessage, type UpdateContextualEditingStateInternalMessage, type UpdateFeatureFlagsMessage, type UpdatePreviewSettingsMessage, type VisibilityCriteria, type VisibilityCriteriaEvaluationResult, type VisibilityCriteriaGroup, type VisibilityParameterValue, type VisibilityRule, type VisibilityRules, type WalkComponentTreeActions, type WalkNodeTreeActions, type WalkNodeTreeOptions, WorkflowClient, type WorkflowDefinition, type WorkflowStage, type WorkflowStagePermission, type WorkflowStageTransition, type WorkflowStageTransitionPermission, type WorkflowsDeleteParameters, type WorkflowsGetParameters, type WorkflowsGetResponse, type WorkflowsPutParameters, bindVariables, bindVariablesToObject, compose, convertEntryToPutEntry, createBatchEnhancer, createCanvasChannel, createDynamicInputVisibilityRule, createEventBus, createLimitPolicy, createLocaleVisibilityRule, createQuirksVisibilityRule, createUniformApiEnhancer, createVariableReference, enhance, evaluateVisibilityCriteriaGroup, evaluateWalkTreeVisibility, extractLocales, findParameterInNodeTree, flattenValues, generateComponentPlaceholderId, generateHash, getBlockValue, getChannelName, getComponentJsonPointer, getComponentPath, getLocalizedPropertyValues, getNounForLocation, getNounForNode, getParameterAttributes, getPropertiesValue, getPropertyValue, isAddComponentMessage, isAllowedReferrer, isAssetParamValue, isAssetParamValueItem, isComponentActionMessage, isComponentPlaceholderId, isContextStorageUpdatedMessage, isDismissPlaceholderMessage, isEntryData, isMovingComponentMessage, isNestedNodeType, isOpenParameterEditorMessage, isReadyMessage, isReportRenderedCompositionsMessage, isRequestComponentSuggestionMessage, isRootEntryReference, isSelectComponentMessage, isSelectParameterMessage, isSuggestComponentMessage, isSystemComponentDefinition, isTriggerCompositionActionMessage, isUpdateComponentParameterMessage, isUpdateComponentReferencesMessage, isUpdateCompositionInternalMessage, isUpdateCompositionMessage, isUpdateContextualEditingStateInternalMessage, isUpdateFeatureFlagsMessage, isUpdatePreviewSettingsMessage, localize, mapSlotToPersonalizedVariations, mapSlotToTestVariations, nullLimitPolicy, parseComponentPlaceholderId, parseVariableExpression, subscribeToComposition, walkComponentTree, walkNodeTree };
|