@uniformdev/canvas 19.141.1-alpha.5 → 19.142.1
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 +507 -18
- package/dist/index.d.ts +507 -18
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
@@ -242,6 +242,35 @@ interface components$7 {
|
|
242
242
|
* @enum {string}
|
243
243
|
*/
|
244
244
|
syntax: "jptr";
|
245
|
+
/**
|
246
|
+
* @description The action to take if the dynamic token cannot be resolved
|
247
|
+
* - t: TOKEN: Removes the failed dynamic token value, leaving the rest of the property value, if any, intact [default]
|
248
|
+
* NOTE: if the _only_ value in the property is a dynamic token, the property value is removed (as with 'p' below)
|
249
|
+
* NOTE: if the _failureDefault_ property is also set, that default value will be used instead of removing the token.
|
250
|
+
* this only applies when the failureAction is 't' or undefined, the default is otherwise ignored.
|
251
|
+
* - p: PROPERTY: Removes the entire property value, including any other dynamic tokens or static values in the property
|
252
|
+
* - c: COMPONENT: Removes the whole parent component or block that contains the property.
|
253
|
+
* NOTE: If a 'component' failure occurs on the root component of a composition, or on an entry,
|
254
|
+
* it is treated as an 'a' failure because removing the root means we must remove all.
|
255
|
+
* - a: ALL: Fails the whole entry or composition. This will result in the item returning a 404 from APIs, and being removed from API list responses.
|
256
|
+
*
|
257
|
+
* @enum {string}
|
258
|
+
*/
|
259
|
+
failureAction?: "t" | "p" | "c" | "a";
|
260
|
+
/**
|
261
|
+
* @description How to report when the dynamic token cannot be resolved
|
262
|
+
* - e: ERROR: Report an error message (this will prevent publishing)
|
263
|
+
* - w: WARNING: Report a warning message [default]
|
264
|
+
* - i: INFO: Log an informative message (failure is expected/normal, i.e. optional data)
|
265
|
+
*
|
266
|
+
* @enum {string}
|
267
|
+
*/
|
268
|
+
failureLogLevel?: "e" | "w" | "i";
|
269
|
+
/**
|
270
|
+
* @description The default value to use if the dynamic token cannot be resolved.
|
271
|
+
* This is only used if the failureAction is the default (undefined, or explicitly token).
|
272
|
+
*/
|
273
|
+
failureDefault?: string;
|
245
274
|
};
|
246
275
|
/** @description Defines the shape of a component instance served by the composition API. */
|
247
276
|
ComponentInstance: {
|
@@ -1017,7 +1046,7 @@ interface external$i {
|
|
1017
1046
|
/** @description The name of the query string parameter */
|
1018
1047
|
name: string;
|
1019
1048
|
/** @description The default value of the query string if it is not provided by an incoming route path */
|
1020
|
-
value
|
1049
|
+
value?: string;
|
1021
1050
|
/** @description Help text for authors who might be setting up a preview value for this query string */
|
1022
1051
|
helpText?: string;
|
1023
1052
|
};
|
@@ -1419,6 +1448,35 @@ interface external$h {
|
|
1419
1448
|
* @enum {string}
|
1420
1449
|
*/
|
1421
1450
|
syntax: "jptr";
|
1451
|
+
/**
|
1452
|
+
* @description The action to take if the dynamic token cannot be resolved
|
1453
|
+
* - t: TOKEN: Removes the failed dynamic token value, leaving the rest of the property value, if any, intact [default]
|
1454
|
+
* NOTE: if the _only_ value in the property is a dynamic token, the property value is removed (as with 'p' below)
|
1455
|
+
* NOTE: if the _failureDefault_ property is also set, that default value will be used instead of removing the token.
|
1456
|
+
* this only applies when the failureAction is 't' or undefined, the default is otherwise ignored.
|
1457
|
+
* - p: PROPERTY: Removes the entire property value, including any other dynamic tokens or static values in the property
|
1458
|
+
* - c: COMPONENT: Removes the whole parent component or block that contains the property.
|
1459
|
+
* NOTE: If a 'component' failure occurs on the root component of a composition, or on an entry,
|
1460
|
+
* it is treated as an 'a' failure because removing the root means we must remove all.
|
1461
|
+
* - a: ALL: Fails the whole entry or composition. This will result in the item returning a 404 from APIs, and being removed from API list responses.
|
1462
|
+
*
|
1463
|
+
* @enum {string}
|
1464
|
+
*/
|
1465
|
+
failureAction?: "t" | "p" | "c" | "a";
|
1466
|
+
/**
|
1467
|
+
* @description How to report when the dynamic token cannot be resolved
|
1468
|
+
* - e: ERROR: Report an error message (this will prevent publishing)
|
1469
|
+
* - w: WARNING: Report a warning message [default]
|
1470
|
+
* - i: INFO: Log an informative message (failure is expected/normal, i.e. optional data)
|
1471
|
+
*
|
1472
|
+
* @enum {string}
|
1473
|
+
*/
|
1474
|
+
failureLogLevel?: "e" | "w" | "i";
|
1475
|
+
/**
|
1476
|
+
* @description The default value to use if the dynamic token cannot be resolved.
|
1477
|
+
* This is only used if the failureAction is the default (undefined, or explicitly token).
|
1478
|
+
*/
|
1479
|
+
failureDefault?: string;
|
1422
1480
|
};
|
1423
1481
|
/** @description Defines the shape of a component instance served by the composition API. */
|
1424
1482
|
ComponentInstance: {
|
@@ -2153,7 +2211,7 @@ interface external$h {
|
|
2153
2211
|
/** @description The name of the query string parameter */
|
2154
2212
|
name: string;
|
2155
2213
|
/** @description The default value of the query string if it is not provided by an incoming route path */
|
2156
|
-
value
|
2214
|
+
value?: string;
|
2157
2215
|
/** @description Help text for authors who might be setting up a preview value for this query string */
|
2158
2216
|
helpText?: string;
|
2159
2217
|
};
|
@@ -2634,6 +2692,35 @@ interface external$g {
|
|
2634
2692
|
* @enum {string}
|
2635
2693
|
*/
|
2636
2694
|
syntax: "jptr";
|
2695
|
+
/**
|
2696
|
+
* @description The action to take if the dynamic token cannot be resolved
|
2697
|
+
* - t: TOKEN: Removes the failed dynamic token value, leaving the rest of the property value, if any, intact [default]
|
2698
|
+
* NOTE: if the _only_ value in the property is a dynamic token, the property value is removed (as with 'p' below)
|
2699
|
+
* NOTE: if the _failureDefault_ property is also set, that default value will be used instead of removing the token.
|
2700
|
+
* this only applies when the failureAction is 't' or undefined, the default is otherwise ignored.
|
2701
|
+
* - p: PROPERTY: Removes the entire property value, including any other dynamic tokens or static values in the property
|
2702
|
+
* - c: COMPONENT: Removes the whole parent component or block that contains the property.
|
2703
|
+
* NOTE: If a 'component' failure occurs on the root component of a composition, or on an entry,
|
2704
|
+
* it is treated as an 'a' failure because removing the root means we must remove all.
|
2705
|
+
* - a: ALL: Fails the whole entry or composition. This will result in the item returning a 404 from APIs, and being removed from API list responses.
|
2706
|
+
*
|
2707
|
+
* @enum {string}
|
2708
|
+
*/
|
2709
|
+
failureAction?: "t" | "p" | "c" | "a";
|
2710
|
+
/**
|
2711
|
+
* @description How to report when the dynamic token cannot be resolved
|
2712
|
+
* - e: ERROR: Report an error message (this will prevent publishing)
|
2713
|
+
* - w: WARNING: Report a warning message [default]
|
2714
|
+
* - i: INFO: Log an informative message (failure is expected/normal, i.e. optional data)
|
2715
|
+
*
|
2716
|
+
* @enum {string}
|
2717
|
+
*/
|
2718
|
+
failureLogLevel?: "e" | "w" | "i";
|
2719
|
+
/**
|
2720
|
+
* @description The default value to use if the dynamic token cannot be resolved.
|
2721
|
+
* This is only used if the failureAction is the default (undefined, or explicitly token).
|
2722
|
+
*/
|
2723
|
+
failureDefault?: string;
|
2637
2724
|
};
|
2638
2725
|
/** @description Defines the shape of a component instance served by the composition API. */
|
2639
2726
|
ComponentInstance: {
|
@@ -3368,7 +3455,7 @@ interface external$g {
|
|
3368
3455
|
/** @description The name of the query string parameter */
|
3369
3456
|
name: string;
|
3370
3457
|
/** @description The default value of the query string if it is not provided by an incoming route path */
|
3371
|
-
value
|
3458
|
+
value?: string;
|
3372
3459
|
/** @description Help text for authors who might be setting up a preview value for this query string */
|
3373
3460
|
helpText?: string;
|
3374
3461
|
};
|
@@ -3779,6 +3866,35 @@ interface external$f {
|
|
3779
3866
|
* @enum {string}
|
3780
3867
|
*/
|
3781
3868
|
syntax: "jptr";
|
3869
|
+
/**
|
3870
|
+
* @description The action to take if the dynamic token cannot be resolved
|
3871
|
+
* - t: TOKEN: Removes the failed dynamic token value, leaving the rest of the property value, if any, intact [default]
|
3872
|
+
* NOTE: if the _only_ value in the property is a dynamic token, the property value is removed (as with 'p' below)
|
3873
|
+
* NOTE: if the _failureDefault_ property is also set, that default value will be used instead of removing the token.
|
3874
|
+
* this only applies when the failureAction is 't' or undefined, the default is otherwise ignored.
|
3875
|
+
* - p: PROPERTY: Removes the entire property value, including any other dynamic tokens or static values in the property
|
3876
|
+
* - c: COMPONENT: Removes the whole parent component or block that contains the property.
|
3877
|
+
* NOTE: If a 'component' failure occurs on the root component of a composition, or on an entry,
|
3878
|
+
* it is treated as an 'a' failure because removing the root means we must remove all.
|
3879
|
+
* - a: ALL: Fails the whole entry or composition. This will result in the item returning a 404 from APIs, and being removed from API list responses.
|
3880
|
+
*
|
3881
|
+
* @enum {string}
|
3882
|
+
*/
|
3883
|
+
failureAction?: "t" | "p" | "c" | "a";
|
3884
|
+
/**
|
3885
|
+
* @description How to report when the dynamic token cannot be resolved
|
3886
|
+
* - e: ERROR: Report an error message (this will prevent publishing)
|
3887
|
+
* - w: WARNING: Report a warning message [default]
|
3888
|
+
* - i: INFO: Log an informative message (failure is expected/normal, i.e. optional data)
|
3889
|
+
*
|
3890
|
+
* @enum {string}
|
3891
|
+
*/
|
3892
|
+
failureLogLevel?: "e" | "w" | "i";
|
3893
|
+
/**
|
3894
|
+
* @description The default value to use if the dynamic token cannot be resolved.
|
3895
|
+
* This is only used if the failureAction is the default (undefined, or explicitly token).
|
3896
|
+
*/
|
3897
|
+
failureDefault?: string;
|
3782
3898
|
};
|
3783
3899
|
/** @description Defines the shape of a component instance served by the composition API. */
|
3784
3900
|
ComponentInstance: {
|
@@ -4513,7 +4629,7 @@ interface external$f {
|
|
4513
4629
|
/** @description The name of the query string parameter */
|
4514
4630
|
name: string;
|
4515
4631
|
/** @description The default value of the query string if it is not provided by an incoming route path */
|
4516
|
-
value
|
4632
|
+
value?: string;
|
4517
4633
|
/** @description Help text for authors who might be setting up a preview value for this query string */
|
4518
4634
|
helpText?: string;
|
4519
4635
|
};
|
@@ -5313,6 +5429,35 @@ interface external$e {
|
|
5313
5429
|
* @enum {string}
|
5314
5430
|
*/
|
5315
5431
|
syntax: "jptr";
|
5432
|
+
/**
|
5433
|
+
* @description The action to take if the dynamic token cannot be resolved
|
5434
|
+
* - t: TOKEN: Removes the failed dynamic token value, leaving the rest of the property value, if any, intact [default]
|
5435
|
+
* NOTE: if the _only_ value in the property is a dynamic token, the property value is removed (as with 'p' below)
|
5436
|
+
* NOTE: if the _failureDefault_ property is also set, that default value will be used instead of removing the token.
|
5437
|
+
* this only applies when the failureAction is 't' or undefined, the default is otherwise ignored.
|
5438
|
+
* - p: PROPERTY: Removes the entire property value, including any other dynamic tokens or static values in the property
|
5439
|
+
* - c: COMPONENT: Removes the whole parent component or block that contains the property.
|
5440
|
+
* NOTE: If a 'component' failure occurs on the root component of a composition, or on an entry,
|
5441
|
+
* it is treated as an 'a' failure because removing the root means we must remove all.
|
5442
|
+
* - a: ALL: Fails the whole entry or composition. This will result in the item returning a 404 from APIs, and being removed from API list responses.
|
5443
|
+
*
|
5444
|
+
* @enum {string}
|
5445
|
+
*/
|
5446
|
+
failureAction?: "t" | "p" | "c" | "a";
|
5447
|
+
/**
|
5448
|
+
* @description How to report when the dynamic token cannot be resolved
|
5449
|
+
* - e: ERROR: Report an error message (this will prevent publishing)
|
5450
|
+
* - w: WARNING: Report a warning message [default]
|
5451
|
+
* - i: INFO: Log an informative message (failure is expected/normal, i.e. optional data)
|
5452
|
+
*
|
5453
|
+
* @enum {string}
|
5454
|
+
*/
|
5455
|
+
failureLogLevel?: "e" | "w" | "i";
|
5456
|
+
/**
|
5457
|
+
* @description The default value to use if the dynamic token cannot be resolved.
|
5458
|
+
* This is only used if the failureAction is the default (undefined, or explicitly token).
|
5459
|
+
*/
|
5460
|
+
failureDefault?: string;
|
5316
5461
|
};
|
5317
5462
|
/** @description Defines the shape of a component instance served by the composition API. */
|
5318
5463
|
ComponentInstance: {
|
@@ -6047,7 +6192,7 @@ interface external$e {
|
|
6047
6192
|
/** @description The name of the query string parameter */
|
6048
6193
|
name: string;
|
6049
6194
|
/** @description The default value of the query string if it is not provided by an incoming route path */
|
6050
|
-
value
|
6195
|
+
value?: string;
|
6051
6196
|
/** @description Help text for authors who might be setting up a preview value for this query string */
|
6052
6197
|
helpText?: string;
|
6053
6198
|
};
|
@@ -6392,6 +6537,35 @@ interface external$d {
|
|
6392
6537
|
* @enum {string}
|
6393
6538
|
*/
|
6394
6539
|
syntax: "jptr";
|
6540
|
+
/**
|
6541
|
+
* @description The action to take if the dynamic token cannot be resolved
|
6542
|
+
* - t: TOKEN: Removes the failed dynamic token value, leaving the rest of the property value, if any, intact [default]
|
6543
|
+
* NOTE: if the _only_ value in the property is a dynamic token, the property value is removed (as with 'p' below)
|
6544
|
+
* NOTE: if the _failureDefault_ property is also set, that default value will be used instead of removing the token.
|
6545
|
+
* this only applies when the failureAction is 't' or undefined, the default is otherwise ignored.
|
6546
|
+
* - p: PROPERTY: Removes the entire property value, including any other dynamic tokens or static values in the property
|
6547
|
+
* - c: COMPONENT: Removes the whole parent component or block that contains the property.
|
6548
|
+
* NOTE: If a 'component' failure occurs on the root component of a composition, or on an entry,
|
6549
|
+
* it is treated as an 'a' failure because removing the root means we must remove all.
|
6550
|
+
* - a: ALL: Fails the whole entry or composition. This will result in the item returning a 404 from APIs, and being removed from API list responses.
|
6551
|
+
*
|
6552
|
+
* @enum {string}
|
6553
|
+
*/
|
6554
|
+
failureAction?: "t" | "p" | "c" | "a";
|
6555
|
+
/**
|
6556
|
+
* @description How to report when the dynamic token cannot be resolved
|
6557
|
+
* - e: ERROR: Report an error message (this will prevent publishing)
|
6558
|
+
* - w: WARNING: Report a warning message [default]
|
6559
|
+
* - i: INFO: Log an informative message (failure is expected/normal, i.e. optional data)
|
6560
|
+
*
|
6561
|
+
* @enum {string}
|
6562
|
+
*/
|
6563
|
+
failureLogLevel?: "e" | "w" | "i";
|
6564
|
+
/**
|
6565
|
+
* @description The default value to use if the dynamic token cannot be resolved.
|
6566
|
+
* This is only used if the failureAction is the default (undefined, or explicitly token).
|
6567
|
+
*/
|
6568
|
+
failureDefault?: string;
|
6395
6569
|
};
|
6396
6570
|
/** @description Defines the shape of a component instance served by the composition API. */
|
6397
6571
|
ComponentInstance: {
|
@@ -7126,7 +7300,7 @@ interface external$d {
|
|
7126
7300
|
/** @description The name of the query string parameter */
|
7127
7301
|
name: string;
|
7128
7302
|
/** @description The default value of the query string if it is not provided by an incoming route path */
|
7129
|
-
value
|
7303
|
+
value?: string;
|
7130
7304
|
/** @description Help text for authors who might be setting up a preview value for this query string */
|
7131
7305
|
helpText?: string;
|
7132
7306
|
};
|
@@ -7528,6 +7702,35 @@ interface external$c {
|
|
7528
7702
|
* @enum {string}
|
7529
7703
|
*/
|
7530
7704
|
syntax: "jptr";
|
7705
|
+
/**
|
7706
|
+
* @description The action to take if the dynamic token cannot be resolved
|
7707
|
+
* - t: TOKEN: Removes the failed dynamic token value, leaving the rest of the property value, if any, intact [default]
|
7708
|
+
* NOTE: if the _only_ value in the property is a dynamic token, the property value is removed (as with 'p' below)
|
7709
|
+
* NOTE: if the _failureDefault_ property is also set, that default value will be used instead of removing the token.
|
7710
|
+
* this only applies when the failureAction is 't' or undefined, the default is otherwise ignored.
|
7711
|
+
* - p: PROPERTY: Removes the entire property value, including any other dynamic tokens or static values in the property
|
7712
|
+
* - c: COMPONENT: Removes the whole parent component or block that contains the property.
|
7713
|
+
* NOTE: If a 'component' failure occurs on the root component of a composition, or on an entry,
|
7714
|
+
* it is treated as an 'a' failure because removing the root means we must remove all.
|
7715
|
+
* - a: ALL: Fails the whole entry or composition. This will result in the item returning a 404 from APIs, and being removed from API list responses.
|
7716
|
+
*
|
7717
|
+
* @enum {string}
|
7718
|
+
*/
|
7719
|
+
failureAction?: "t" | "p" | "c" | "a";
|
7720
|
+
/**
|
7721
|
+
* @description How to report when the dynamic token cannot be resolved
|
7722
|
+
* - e: ERROR: Report an error message (this will prevent publishing)
|
7723
|
+
* - w: WARNING: Report a warning message [default]
|
7724
|
+
* - i: INFO: Log an informative message (failure is expected/normal, i.e. optional data)
|
7725
|
+
*
|
7726
|
+
* @enum {string}
|
7727
|
+
*/
|
7728
|
+
failureLogLevel?: "e" | "w" | "i";
|
7729
|
+
/**
|
7730
|
+
* @description The default value to use if the dynamic token cannot be resolved.
|
7731
|
+
* This is only used if the failureAction is the default (undefined, or explicitly token).
|
7732
|
+
*/
|
7733
|
+
failureDefault?: string;
|
7531
7734
|
};
|
7532
7735
|
/** @description Defines the shape of a component instance served by the composition API. */
|
7533
7736
|
ComponentInstance: {
|
@@ -8262,7 +8465,7 @@ interface external$c {
|
|
8262
8465
|
/** @description The name of the query string parameter */
|
8263
8466
|
name: string;
|
8264
8467
|
/** @description The default value of the query string if it is not provided by an incoming route path */
|
8265
|
-
value
|
8468
|
+
value?: string;
|
8266
8469
|
/** @description Help text for authors who might be setting up a preview value for this query string */
|
8267
8470
|
helpText?: string;
|
8268
8471
|
};
|
@@ -8601,6 +8804,35 @@ interface external$b {
|
|
8601
8804
|
* @enum {string}
|
8602
8805
|
*/
|
8603
8806
|
syntax: "jptr";
|
8807
|
+
/**
|
8808
|
+
* @description The action to take if the dynamic token cannot be resolved
|
8809
|
+
* - t: TOKEN: Removes the failed dynamic token value, leaving the rest of the property value, if any, intact [default]
|
8810
|
+
* NOTE: if the _only_ value in the property is a dynamic token, the property value is removed (as with 'p' below)
|
8811
|
+
* NOTE: if the _failureDefault_ property is also set, that default value will be used instead of removing the token.
|
8812
|
+
* this only applies when the failureAction is 't' or undefined, the default is otherwise ignored.
|
8813
|
+
* - p: PROPERTY: Removes the entire property value, including any other dynamic tokens or static values in the property
|
8814
|
+
* - c: COMPONENT: Removes the whole parent component or block that contains the property.
|
8815
|
+
* NOTE: If a 'component' failure occurs on the root component of a composition, or on an entry,
|
8816
|
+
* it is treated as an 'a' failure because removing the root means we must remove all.
|
8817
|
+
* - a: ALL: Fails the whole entry or composition. This will result in the item returning a 404 from APIs, and being removed from API list responses.
|
8818
|
+
*
|
8819
|
+
* @enum {string}
|
8820
|
+
*/
|
8821
|
+
failureAction?: "t" | "p" | "c" | "a";
|
8822
|
+
/**
|
8823
|
+
* @description How to report when the dynamic token cannot be resolved
|
8824
|
+
* - e: ERROR: Report an error message (this will prevent publishing)
|
8825
|
+
* - w: WARNING: Report a warning message [default]
|
8826
|
+
* - i: INFO: Log an informative message (failure is expected/normal, i.e. optional data)
|
8827
|
+
*
|
8828
|
+
* @enum {string}
|
8829
|
+
*/
|
8830
|
+
failureLogLevel?: "e" | "w" | "i";
|
8831
|
+
/**
|
8832
|
+
* @description The default value to use if the dynamic token cannot be resolved.
|
8833
|
+
* This is only used if the failureAction is the default (undefined, or explicitly token).
|
8834
|
+
*/
|
8835
|
+
failureDefault?: string;
|
8604
8836
|
};
|
8605
8837
|
/** @description Defines the shape of a component instance served by the composition API. */
|
8606
8838
|
ComponentInstance: {
|
@@ -9335,7 +9567,7 @@ interface external$b {
|
|
9335
9567
|
/** @description The name of the query string parameter */
|
9336
9568
|
name: string;
|
9337
9569
|
/** @description The default value of the query string if it is not provided by an incoming route path */
|
9338
|
-
value
|
9570
|
+
value?: string;
|
9339
9571
|
/** @description Help text for authors who might be setting up a preview value for this query string */
|
9340
9572
|
helpText?: string;
|
9341
9573
|
};
|
@@ -9709,6 +9941,35 @@ interface external$a {
|
|
9709
9941
|
* @enum {string}
|
9710
9942
|
*/
|
9711
9943
|
syntax: "jptr";
|
9944
|
+
/**
|
9945
|
+
* @description The action to take if the dynamic token cannot be resolved
|
9946
|
+
* - t: TOKEN: Removes the failed dynamic token value, leaving the rest of the property value, if any, intact [default]
|
9947
|
+
* NOTE: if the _only_ value in the property is a dynamic token, the property value is removed (as with 'p' below)
|
9948
|
+
* NOTE: if the _failureDefault_ property is also set, that default value will be used instead of removing the token.
|
9949
|
+
* this only applies when the failureAction is 't' or undefined, the default is otherwise ignored.
|
9950
|
+
* - p: PROPERTY: Removes the entire property value, including any other dynamic tokens or static values in the property
|
9951
|
+
* - c: COMPONENT: Removes the whole parent component or block that contains the property.
|
9952
|
+
* NOTE: If a 'component' failure occurs on the root component of a composition, or on an entry,
|
9953
|
+
* it is treated as an 'a' failure because removing the root means we must remove all.
|
9954
|
+
* - a: ALL: Fails the whole entry or composition. This will result in the item returning a 404 from APIs, and being removed from API list responses.
|
9955
|
+
*
|
9956
|
+
* @enum {string}
|
9957
|
+
*/
|
9958
|
+
failureAction?: "t" | "p" | "c" | "a";
|
9959
|
+
/**
|
9960
|
+
* @description How to report when the dynamic token cannot be resolved
|
9961
|
+
* - e: ERROR: Report an error message (this will prevent publishing)
|
9962
|
+
* - w: WARNING: Report a warning message [default]
|
9963
|
+
* - i: INFO: Log an informative message (failure is expected/normal, i.e. optional data)
|
9964
|
+
*
|
9965
|
+
* @enum {string}
|
9966
|
+
*/
|
9967
|
+
failureLogLevel?: "e" | "w" | "i";
|
9968
|
+
/**
|
9969
|
+
* @description The default value to use if the dynamic token cannot be resolved.
|
9970
|
+
* This is only used if the failureAction is the default (undefined, or explicitly token).
|
9971
|
+
*/
|
9972
|
+
failureDefault?: string;
|
9712
9973
|
};
|
9713
9974
|
/** @description Defines the shape of a component instance served by the composition API. */
|
9714
9975
|
ComponentInstance: {
|
@@ -10443,7 +10704,7 @@ interface external$a {
|
|
10443
10704
|
/** @description The name of the query string parameter */
|
10444
10705
|
name: string;
|
10445
10706
|
/** @description The default value of the query string if it is not provided by an incoming route path */
|
10446
|
-
value
|
10707
|
+
value?: string;
|
10447
10708
|
/** @description Help text for authors who might be setting up a preview value for this query string */
|
10448
10709
|
helpText?: string;
|
10449
10710
|
};
|
@@ -10817,6 +11078,35 @@ interface external$9 {
|
|
10817
11078
|
* @enum {string}
|
10818
11079
|
*/
|
10819
11080
|
syntax: "jptr";
|
11081
|
+
/**
|
11082
|
+
* @description The action to take if the dynamic token cannot be resolved
|
11083
|
+
* - t: TOKEN: Removes the failed dynamic token value, leaving the rest of the property value, if any, intact [default]
|
11084
|
+
* NOTE: if the _only_ value in the property is a dynamic token, the property value is removed (as with 'p' below)
|
11085
|
+
* NOTE: if the _failureDefault_ property is also set, that default value will be used instead of removing the token.
|
11086
|
+
* this only applies when the failureAction is 't' or undefined, the default is otherwise ignored.
|
11087
|
+
* - p: PROPERTY: Removes the entire property value, including any other dynamic tokens or static values in the property
|
11088
|
+
* - c: COMPONENT: Removes the whole parent component or block that contains the property.
|
11089
|
+
* NOTE: If a 'component' failure occurs on the root component of a composition, or on an entry,
|
11090
|
+
* it is treated as an 'a' failure because removing the root means we must remove all.
|
11091
|
+
* - a: ALL: Fails the whole entry or composition. This will result in the item returning a 404 from APIs, and being removed from API list responses.
|
11092
|
+
*
|
11093
|
+
* @enum {string}
|
11094
|
+
*/
|
11095
|
+
failureAction?: "t" | "p" | "c" | "a";
|
11096
|
+
/**
|
11097
|
+
* @description How to report when the dynamic token cannot be resolved
|
11098
|
+
* - e: ERROR: Report an error message (this will prevent publishing)
|
11099
|
+
* - w: WARNING: Report a warning message [default]
|
11100
|
+
* - i: INFO: Log an informative message (failure is expected/normal, i.e. optional data)
|
11101
|
+
*
|
11102
|
+
* @enum {string}
|
11103
|
+
*/
|
11104
|
+
failureLogLevel?: "e" | "w" | "i";
|
11105
|
+
/**
|
11106
|
+
* @description The default value to use if the dynamic token cannot be resolved.
|
11107
|
+
* This is only used if the failureAction is the default (undefined, or explicitly token).
|
11108
|
+
*/
|
11109
|
+
failureDefault?: string;
|
10820
11110
|
};
|
10821
11111
|
/** @description Defines the shape of a component instance served by the composition API. */
|
10822
11112
|
ComponentInstance: {
|
@@ -11551,7 +11841,7 @@ interface external$9 {
|
|
11551
11841
|
/** @description The name of the query string parameter */
|
11552
11842
|
name: string;
|
11553
11843
|
/** @description The default value of the query string if it is not provided by an incoming route path */
|
11554
|
-
value
|
11844
|
+
value?: string;
|
11555
11845
|
/** @description Help text for authors who might be setting up a preview value for this query string */
|
11556
11846
|
helpText?: string;
|
11557
11847
|
};
|
@@ -12600,6 +12890,35 @@ interface external$7 {
|
|
12600
12890
|
* @enum {string}
|
12601
12891
|
*/
|
12602
12892
|
syntax: "jptr";
|
12893
|
+
/**
|
12894
|
+
* @description The action to take if the dynamic token cannot be resolved
|
12895
|
+
* - t: TOKEN: Removes the failed dynamic token value, leaving the rest of the property value, if any, intact [default]
|
12896
|
+
* NOTE: if the _only_ value in the property is a dynamic token, the property value is removed (as with 'p' below)
|
12897
|
+
* NOTE: if the _failureDefault_ property is also set, that default value will be used instead of removing the token.
|
12898
|
+
* this only applies when the failureAction is 't' or undefined, the default is otherwise ignored.
|
12899
|
+
* - p: PROPERTY: Removes the entire property value, including any other dynamic tokens or static values in the property
|
12900
|
+
* - c: COMPONENT: Removes the whole parent component or block that contains the property.
|
12901
|
+
* NOTE: If a 'component' failure occurs on the root component of a composition, or on an entry,
|
12902
|
+
* it is treated as an 'a' failure because removing the root means we must remove all.
|
12903
|
+
* - a: ALL: Fails the whole entry or composition. This will result in the item returning a 404 from APIs, and being removed from API list responses.
|
12904
|
+
*
|
12905
|
+
* @enum {string}
|
12906
|
+
*/
|
12907
|
+
failureAction?: "t" | "p" | "c" | "a";
|
12908
|
+
/**
|
12909
|
+
* @description How to report when the dynamic token cannot be resolved
|
12910
|
+
* - e: ERROR: Report an error message (this will prevent publishing)
|
12911
|
+
* - w: WARNING: Report a warning message [default]
|
12912
|
+
* - i: INFO: Log an informative message (failure is expected/normal, i.e. optional data)
|
12913
|
+
*
|
12914
|
+
* @enum {string}
|
12915
|
+
*/
|
12916
|
+
failureLogLevel?: "e" | "w" | "i";
|
12917
|
+
/**
|
12918
|
+
* @description The default value to use if the dynamic token cannot be resolved.
|
12919
|
+
* This is only used if the failureAction is the default (undefined, or explicitly token).
|
12920
|
+
*/
|
12921
|
+
failureDefault?: string;
|
12603
12922
|
};
|
12604
12923
|
/** @description Defines the shape of a component instance served by the composition API. */
|
12605
12924
|
ComponentInstance: {
|
@@ -13334,7 +13653,7 @@ interface external$7 {
|
|
13334
13653
|
/** @description The name of the query string parameter */
|
13335
13654
|
name: string;
|
13336
13655
|
/** @description The default value of the query string if it is not provided by an incoming route path */
|
13337
|
-
value
|
13656
|
+
value?: string;
|
13338
13657
|
/** @description Help text for authors who might be setting up a preview value for this query string */
|
13339
13658
|
helpText?: string;
|
13340
13659
|
};
|
@@ -13679,6 +13998,35 @@ interface external$6 {
|
|
13679
13998
|
* @enum {string}
|
13680
13999
|
*/
|
13681
14000
|
syntax: "jptr";
|
14001
|
+
/**
|
14002
|
+
* @description The action to take if the dynamic token cannot be resolved
|
14003
|
+
* - t: TOKEN: Removes the failed dynamic token value, leaving the rest of the property value, if any, intact [default]
|
14004
|
+
* NOTE: if the _only_ value in the property is a dynamic token, the property value is removed (as with 'p' below)
|
14005
|
+
* NOTE: if the _failureDefault_ property is also set, that default value will be used instead of removing the token.
|
14006
|
+
* this only applies when the failureAction is 't' or undefined, the default is otherwise ignored.
|
14007
|
+
* - p: PROPERTY: Removes the entire property value, including any other dynamic tokens or static values in the property
|
14008
|
+
* - c: COMPONENT: Removes the whole parent component or block that contains the property.
|
14009
|
+
* NOTE: If a 'component' failure occurs on the root component of a composition, or on an entry,
|
14010
|
+
* it is treated as an 'a' failure because removing the root means we must remove all.
|
14011
|
+
* - a: ALL: Fails the whole entry or composition. This will result in the item returning a 404 from APIs, and being removed from API list responses.
|
14012
|
+
*
|
14013
|
+
* @enum {string}
|
14014
|
+
*/
|
14015
|
+
failureAction?: "t" | "p" | "c" | "a";
|
14016
|
+
/**
|
14017
|
+
* @description How to report when the dynamic token cannot be resolved
|
14018
|
+
* - e: ERROR: Report an error message (this will prevent publishing)
|
14019
|
+
* - w: WARNING: Report a warning message [default]
|
14020
|
+
* - i: INFO: Log an informative message (failure is expected/normal, i.e. optional data)
|
14021
|
+
*
|
14022
|
+
* @enum {string}
|
14023
|
+
*/
|
14024
|
+
failureLogLevel?: "e" | "w" | "i";
|
14025
|
+
/**
|
14026
|
+
* @description The default value to use if the dynamic token cannot be resolved.
|
14027
|
+
* This is only used if the failureAction is the default (undefined, or explicitly token).
|
14028
|
+
*/
|
14029
|
+
failureDefault?: string;
|
13682
14030
|
};
|
13683
14031
|
/** @description Defines the shape of a component instance served by the composition API. */
|
13684
14032
|
ComponentInstance: {
|
@@ -14413,7 +14761,7 @@ interface external$6 {
|
|
14413
14761
|
/** @description The name of the query string parameter */
|
14414
14762
|
name: string;
|
14415
14763
|
/** @description The default value of the query string if it is not provided by an incoming route path */
|
14416
|
-
value
|
14764
|
+
value?: string;
|
14417
14765
|
/** @description Help text for authors who might be setting up a preview value for this query string */
|
14418
14766
|
helpText?: string;
|
14419
14767
|
};
|
@@ -14452,6 +14800,9 @@ interface components$3 {
|
|
14452
14800
|
warnings?: {
|
14453
14801
|
[key: string]: components$3["schemas"]["DataResolutionIssue"][];
|
14454
14802
|
};
|
14803
|
+
infos?: {
|
14804
|
+
[key: string]: components$3["schemas"]["DataResolutionIssue"][];
|
14805
|
+
};
|
14455
14806
|
} & external$5["../../../lambda/functions/v1-canvas.swagger.yml"]["components"]["schemas"]["CompositionListResponse"];
|
14456
14807
|
EntryResolvedListResponse: {
|
14457
14808
|
diagnostics?: components$3["schemas"]["EdgehancersDiagnostics"] & {
|
@@ -14465,6 +14816,9 @@ interface components$3 {
|
|
14465
14816
|
warnings?: {
|
14466
14817
|
[key: string]: components$3["schemas"]["DataResolutionIssue"][];
|
14467
14818
|
};
|
14819
|
+
infos?: {
|
14820
|
+
[key: string]: components$3["schemas"]["DataResolutionIssue"][];
|
14821
|
+
};
|
14468
14822
|
} & external$5["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["schemas"]["EntryListResponse"];
|
14469
14823
|
EdgehancersResolutionInfo: {
|
14470
14824
|
wholeResponseCacheDiagnostics?: {
|
@@ -14479,6 +14833,7 @@ interface components$3 {
|
|
14479
14833
|
};
|
14480
14834
|
errors?: components$3["schemas"]["DataResolutionIssue"][];
|
14481
14835
|
warnings?: components$3["schemas"]["DataResolutionIssue"][];
|
14836
|
+
infos?: components$3["schemas"]["DataResolutionIssue"][];
|
14482
14837
|
};
|
14483
14838
|
EdgehancersError: {
|
14484
14839
|
message: string;
|
@@ -14891,6 +15246,35 @@ interface external$5 {
|
|
14891
15246
|
* @enum {string}
|
14892
15247
|
*/
|
14893
15248
|
syntax: "jptr";
|
15249
|
+
/**
|
15250
|
+
* @description The action to take if the dynamic token cannot be resolved
|
15251
|
+
* - t: TOKEN: Removes the failed dynamic token value, leaving the rest of the property value, if any, intact [default]
|
15252
|
+
* NOTE: if the _only_ value in the property is a dynamic token, the property value is removed (as with 'p' below)
|
15253
|
+
* NOTE: if the _failureDefault_ property is also set, that default value will be used instead of removing the token.
|
15254
|
+
* this only applies when the failureAction is 't' or undefined, the default is otherwise ignored.
|
15255
|
+
* - p: PROPERTY: Removes the entire property value, including any other dynamic tokens or static values in the property
|
15256
|
+
* - c: COMPONENT: Removes the whole parent component or block that contains the property.
|
15257
|
+
* NOTE: If a 'component' failure occurs on the root component of a composition, or on an entry,
|
15258
|
+
* it is treated as an 'a' failure because removing the root means we must remove all.
|
15259
|
+
* - a: ALL: Fails the whole entry or composition. This will result in the item returning a 404 from APIs, and being removed from API list responses.
|
15260
|
+
*
|
15261
|
+
* @enum {string}
|
15262
|
+
*/
|
15263
|
+
failureAction?: "t" | "p" | "c" | "a";
|
15264
|
+
/**
|
15265
|
+
* @description How to report when the dynamic token cannot be resolved
|
15266
|
+
* - e: ERROR: Report an error message (this will prevent publishing)
|
15267
|
+
* - w: WARNING: Report a warning message [default]
|
15268
|
+
* - i: INFO: Log an informative message (failure is expected/normal, i.e. optional data)
|
15269
|
+
*
|
15270
|
+
* @enum {string}
|
15271
|
+
*/
|
15272
|
+
failureLogLevel?: "e" | "w" | "i";
|
15273
|
+
/**
|
15274
|
+
* @description The default value to use if the dynamic token cannot be resolved.
|
15275
|
+
* This is only used if the failureAction is the default (undefined, or explicitly token).
|
15276
|
+
*/
|
15277
|
+
failureDefault?: string;
|
14894
15278
|
};
|
14895
15279
|
/** @description Defines the shape of a component instance served by the composition API. */
|
14896
15280
|
ComponentInstance: {
|
@@ -16670,7 +17054,7 @@ interface external$5 {
|
|
16670
17054
|
/** @description The name of the query string parameter */
|
16671
17055
|
name: string;
|
16672
17056
|
/** @description The default value of the query string if it is not provided by an incoming route path */
|
16673
|
-
value
|
17057
|
+
value?: string;
|
16674
17058
|
/** @description Help text for authors who might be setting up a preview value for this query string */
|
16675
17059
|
helpText?: string;
|
16676
17060
|
};
|
@@ -17562,6 +17946,35 @@ interface external$4 {
|
|
17562
17946
|
* @enum {string}
|
17563
17947
|
*/
|
17564
17948
|
syntax: "jptr";
|
17949
|
+
/**
|
17950
|
+
* @description The action to take if the dynamic token cannot be resolved
|
17951
|
+
* - t: TOKEN: Removes the failed dynamic token value, leaving the rest of the property value, if any, intact [default]
|
17952
|
+
* NOTE: if the _only_ value in the property is a dynamic token, the property value is removed (as with 'p' below)
|
17953
|
+
* NOTE: if the _failureDefault_ property is also set, that default value will be used instead of removing the token.
|
17954
|
+
* this only applies when the failureAction is 't' or undefined, the default is otherwise ignored.
|
17955
|
+
* - p: PROPERTY: Removes the entire property value, including any other dynamic tokens or static values in the property
|
17956
|
+
* - c: COMPONENT: Removes the whole parent component or block that contains the property.
|
17957
|
+
* NOTE: If a 'component' failure occurs on the root component of a composition, or on an entry,
|
17958
|
+
* it is treated as an 'a' failure because removing the root means we must remove all.
|
17959
|
+
* - a: ALL: Fails the whole entry or composition. This will result in the item returning a 404 from APIs, and being removed from API list responses.
|
17960
|
+
*
|
17961
|
+
* @enum {string}
|
17962
|
+
*/
|
17963
|
+
failureAction?: "t" | "p" | "c" | "a";
|
17964
|
+
/**
|
17965
|
+
* @description How to report when the dynamic token cannot be resolved
|
17966
|
+
* - e: ERROR: Report an error message (this will prevent publishing)
|
17967
|
+
* - w: WARNING: Report a warning message [default]
|
17968
|
+
* - i: INFO: Log an informative message (failure is expected/normal, i.e. optional data)
|
17969
|
+
*
|
17970
|
+
* @enum {string}
|
17971
|
+
*/
|
17972
|
+
failureLogLevel?: "e" | "w" | "i";
|
17973
|
+
/**
|
17974
|
+
* @description The default value to use if the dynamic token cannot be resolved.
|
17975
|
+
* This is only used if the failureAction is the default (undefined, or explicitly token).
|
17976
|
+
*/
|
17977
|
+
failureDefault?: string;
|
17565
17978
|
};
|
17566
17979
|
/** @description Defines the shape of a component instance served by the composition API. */
|
17567
17980
|
ComponentInstance: {
|
@@ -18846,7 +19259,7 @@ interface external$4 {
|
|
18846
19259
|
/** @description The name of the query string parameter */
|
18847
19260
|
name: string;
|
18848
19261
|
/** @description The default value of the query string if it is not provided by an incoming route path */
|
18849
|
-
value
|
19262
|
+
value?: string;
|
18850
19263
|
/** @description Help text for authors who might be setting up a preview value for this query string */
|
18851
19264
|
helpText?: string;
|
18852
19265
|
};
|
@@ -19122,6 +19535,26 @@ type ComponentInstanceContextualEditing = ComponentInstance & {
|
|
19122
19535
|
};
|
19123
19536
|
/** Defines a connection to a dynamic token on a data resource. */
|
19124
19537
|
type DataElementConnectionDefinition = SharedComponents['DataElementConnectionDefinition'];
|
19538
|
+
/**
|
19539
|
+
* The action to take if the dynamic token cannot be resolved
|
19540
|
+
* - t: TOKEN: Removes the failed dynamic token value, leaving the rest of the property value, if any, intact [default]
|
19541
|
+
* NOTE: if the _only_ value in the property is a dynamic token, the property value is removed (as with 'p' below)
|
19542
|
+
* NOTE: if the _failureDefault_ property is also set, that default value will be used instead of removing the token.
|
19543
|
+
this only applies when the failureAction is 't' or undefined, the default is otherwise ignored.
|
19544
|
+
* - p: PROPERTY: Removes the entire property value, including any other dynamic tokens or static values in the property
|
19545
|
+
* - c: COMPONENT: Removes the whole parent component or block that contains the property.
|
19546
|
+
* NOTE: If a 'component' failure occurs on the root component of a composition, or on an entry,
|
19547
|
+
it is treated as an 'a' failure because removing the root means we must remove all.
|
19548
|
+
* - a: ALL: Fails the whole entry or composition. This will result in the item returning a 404 from APIs, and being removed from API list responses.
|
19549
|
+
*/
|
19550
|
+
type DataElementConnectionFailureAction = SharedComponents['DataElementConnectionDefinition']['failureAction'];
|
19551
|
+
/**
|
19552
|
+
* How to report when the dynamic token cannot be resolved
|
19553
|
+
* - e: ERROR: Report an error message (this will prevent publishing)
|
19554
|
+
* - w: WARNING: Report a warning message [default]
|
19555
|
+
* - i: INFO: Report an info message (failure is expected/normal, i.e. optional data)
|
19556
|
+
*/
|
19557
|
+
type DataElementConnectionFailureLogLevel = SharedComponents['DataElementConnectionDefinition']['failureLogLevel'];
|
19125
19558
|
/** Variable values for a data resource. */
|
19126
19559
|
type DataResourceVariables = SharedComponents['DataResourceVariables'];
|
19127
19560
|
/**
|
@@ -19268,6 +19701,14 @@ type EntriesResolvedListResponse = components$3['schemas']['EntryResolvedListRes
|
|
19268
19701
|
type RouteGetResponseEdgehancedComposition = Omit<RouteGetResponseComposition, 'compositionApiResponse'> & {
|
19269
19702
|
compositionApiResponse: CompositionResolvedGetResponse;
|
19270
19703
|
};
|
19704
|
+
/** GET response from uniform.global/api/v1/route when result is not found */
|
19705
|
+
type RouteGetResponseEdgehancedNotFound = RouteGetResponseNotFound & {
|
19706
|
+
/**
|
19707
|
+
* When a composition was matched, but turned into a not found response by a failed dynamic token, we still return the errors and warnings from that response along with the not found
|
19708
|
+
* for diagnostic purposes. This is always undefined for a not found response due to a missing project map node for the route, or for a project map node which has no valid attached composition.
|
19709
|
+
*/
|
19710
|
+
compositionApiResponse?: Pick<CompositionResolvedGetResponse, 'errors' | 'warnings' | 'infos' | 'diagnostics' | 'wholeResponseCacheDiagnostics'>;
|
19711
|
+
};
|
19271
19712
|
|
19272
19713
|
type CanvasClientOptions = ClientOptions & {
|
19273
19714
|
edgeApiHost?: string;
|
@@ -19446,6 +19887,9 @@ declare class CanvasClient extends ApiClient<CanvasClientOptions> {
|
|
19446
19887
|
connectedData?: {
|
19447
19888
|
pointer: string;
|
19448
19889
|
syntax: "jptr";
|
19890
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
19891
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
19892
|
+
failureDefault?: string | undefined;
|
19449
19893
|
} | undefined;
|
19450
19894
|
locales?: {
|
19451
19895
|
[key: string]: unknown;
|
@@ -19488,6 +19932,9 @@ declare class CanvasClient extends ApiClient<CanvasClientOptions> {
|
|
19488
19932
|
connectedData?: {
|
19489
19933
|
pointer: string;
|
19490
19934
|
syntax: "jptr";
|
19935
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
19936
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
19937
|
+
failureDefault?: string | undefined;
|
19491
19938
|
} | undefined;
|
19492
19939
|
locales?: {
|
19493
19940
|
[key: string]: unknown;
|
@@ -20197,6 +20644,35 @@ interface external$3 {
|
|
20197
20644
|
* @enum {string}
|
20198
20645
|
*/
|
20199
20646
|
syntax: "jptr";
|
20647
|
+
/**
|
20648
|
+
* @description The action to take if the dynamic token cannot be resolved
|
20649
|
+
* - t: TOKEN: Removes the failed dynamic token value, leaving the rest of the property value, if any, intact [default]
|
20650
|
+
* NOTE: if the _only_ value in the property is a dynamic token, the property value is removed (as with 'p' below)
|
20651
|
+
* NOTE: if the _failureDefault_ property is also set, that default value will be used instead of removing the token.
|
20652
|
+
* this only applies when the failureAction is 't' or undefined, the default is otherwise ignored.
|
20653
|
+
* - p: PROPERTY: Removes the entire property value, including any other dynamic tokens or static values in the property
|
20654
|
+
* - c: COMPONENT: Removes the whole parent component or block that contains the property.
|
20655
|
+
* NOTE: If a 'component' failure occurs on the root component of a composition, or on an entry,
|
20656
|
+
* it is treated as an 'a' failure because removing the root means we must remove all.
|
20657
|
+
* - a: ALL: Fails the whole entry or composition. This will result in the item returning a 404 from APIs, and being removed from API list responses.
|
20658
|
+
*
|
20659
|
+
* @enum {string}
|
20660
|
+
*/
|
20661
|
+
failureAction?: "t" | "p" | "c" | "a";
|
20662
|
+
/**
|
20663
|
+
* @description How to report when the dynamic token cannot be resolved
|
20664
|
+
* - e: ERROR: Report an error message (this will prevent publishing)
|
20665
|
+
* - w: WARNING: Report a warning message [default]
|
20666
|
+
* - i: INFO: Log an informative message (failure is expected/normal, i.e. optional data)
|
20667
|
+
*
|
20668
|
+
* @enum {string}
|
20669
|
+
*/
|
20670
|
+
failureLogLevel?: "e" | "w" | "i";
|
20671
|
+
/**
|
20672
|
+
* @description The default value to use if the dynamic token cannot be resolved.
|
20673
|
+
* This is only used if the failureAction is the default (undefined, or explicitly token).
|
20674
|
+
*/
|
20675
|
+
failureDefault?: string;
|
20200
20676
|
};
|
20201
20677
|
/** @description Defines the shape of a component instance served by the composition API. */
|
20202
20678
|
ComponentInstance: {
|
@@ -20931,7 +21407,7 @@ interface external$3 {
|
|
20931
21407
|
/** @description The name of the query string parameter */
|
20932
21408
|
name: string;
|
20933
21409
|
/** @description The default value of the query string if it is not provided by an incoming route path */
|
20934
|
-
value
|
21410
|
+
value?: string;
|
20935
21411
|
/** @description Help text for authors who might be setting up a preview value for this query string */
|
20936
21412
|
helpText?: string;
|
20937
21413
|
};
|
@@ -21823,6 +22299,7 @@ type UpdateFeatureFlagsMessage = {
|
|
21823
22299
|
type UpdateContextualEditingStateInternalMessage = {
|
21824
22300
|
type: 'update-contextual-editing-state-internal';
|
21825
22301
|
state: {
|
22302
|
+
previewMode: 'editor' | 'preview';
|
21826
22303
|
selectedComponentReference?: {
|
21827
22304
|
id: string;
|
21828
22305
|
slotName?: string;
|
@@ -22303,7 +22780,7 @@ type RouteClientOptions = Omit<ClientOptions, 'apiHost'> & {
|
|
22303
22780
|
disableSWR?: boolean;
|
22304
22781
|
};
|
22305
22782
|
/** A route API response with edgehancer composition result */
|
22306
|
-
type ResolvedRouteGetResponse =
|
22783
|
+
type ResolvedRouteGetResponse = RouteGetResponseEdgehancedNotFound | RouteGetResponseRedirect | RouteGetResponseEdgehancedComposition;
|
22307
22784
|
/**
|
22308
22785
|
* Resolves a route using Uniform Project Map and Uniform Redirects,
|
22309
22786
|
* returning a composition, redirection, or not found result.
|
@@ -22337,6 +22814,9 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
22337
22814
|
connectedData?: {
|
22338
22815
|
pointer: string;
|
22339
22816
|
syntax: "jptr";
|
22817
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
22818
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
22819
|
+
failureDefault?: string | undefined;
|
22340
22820
|
} | undefined;
|
22341
22821
|
locales?: {
|
22342
22822
|
[key: string]: unknown;
|
@@ -22352,7 +22832,7 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
22352
22832
|
isSearchHit?: boolean | undefined;
|
22353
22833
|
queryStrings?: {
|
22354
22834
|
name: string;
|
22355
|
-
value
|
22835
|
+
value?: string | undefined;
|
22356
22836
|
helpText?: string | undefined;
|
22357
22837
|
}[] | undefined;
|
22358
22838
|
previewValue?: string | undefined;
|
@@ -22374,6 +22854,9 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
22374
22854
|
connectedData?: {
|
22375
22855
|
pointer: string;
|
22376
22856
|
syntax: "jptr";
|
22857
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
22858
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
22859
|
+
failureDefault?: string | undefined;
|
22377
22860
|
} | undefined;
|
22378
22861
|
locales?: {
|
22379
22862
|
[key: string]: unknown;
|
@@ -22416,6 +22899,9 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
22416
22899
|
connectedData?: {
|
22417
22900
|
pointer: string;
|
22418
22901
|
syntax: "jptr";
|
22902
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
22903
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
22904
|
+
failureDefault?: string | undefined;
|
22419
22905
|
} | undefined;
|
22420
22906
|
locales?: {
|
22421
22907
|
[key: string]: unknown;
|
@@ -22472,6 +22958,9 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
22472
22958
|
connectedData?: {
|
22473
22959
|
pointer: string;
|
22474
22960
|
syntax: "jptr";
|
22961
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
22962
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
22963
|
+
failureDefault?: string | undefined;
|
22475
22964
|
} | undefined;
|
22476
22965
|
locales?: {
|
22477
22966
|
[key: string]: unknown;
|
@@ -22696,4 +23185,4 @@ declare function parseVariableExpression(serialized: string, onToken?: (token: s
|
|
22696
23185
|
|
22697
23186
|
declare const CanvasClientError: typeof ApiClientError;
|
22698
23187
|
|
22699
|
-
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, 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 ContextualEditingComponentReference, type CopiedComponentSubtree, type DataDiagnostic, type DataElementBindingIssue, type DataElementConnectionDefinition, 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, type EntriesGetParameters, type EntriesGetResponse, type EntriesHistoryGetParameters, type EntriesHistoryGetResponse, type EntriesResolvedListResponse, type Entry, type EntryData, type EntryList, 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 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 RouteGetResponseNotFound, type RouteGetResponseRedirect, SECRET_QUERY_STRING_PARAM, type SelectComponentMessage, type SelectParameterMessage, type SpecificProjectMap, 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 WalkComponentTreeActions, type WalkNodeTreeActions, type WalkNodeTreeOptions, bindVariables, bindVariablesToObject, compose, convertEntryToPutEntry, createBatchEnhancer, createCanvasChannel, createEventBus, createLimitPolicy, createUniformApiEnhancer, createVariableReference, enhance, extractLocales, findParameterInNodeTree, flattenValues, generateComponentPlaceholderId, generateHash, getBlockValue, getChannelName, getComponentJsonPointer, getComponentPath, getNounForLocation, getNounForNode, getParameterAttributes, getPropertiesValue, getPropertyValue, isAddComponentMessage, isAllowedReferrer, isAssetParamValue, isAssetParamValueItem, isComponentActionMessage, isComponentPlaceholderId, 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 };
|
23188
|
+
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, 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 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, type EntriesGetParameters, type EntriesGetResponse, type EntriesHistoryGetParameters, type EntriesHistoryGetResponse, type EntriesResolvedListResponse, type Entry, type EntryData, type EntryList, 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 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 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 WalkComponentTreeActions, type WalkNodeTreeActions, type WalkNodeTreeOptions, bindVariables, bindVariablesToObject, compose, convertEntryToPutEntry, createBatchEnhancer, createCanvasChannel, createEventBus, createLimitPolicy, createUniformApiEnhancer, createVariableReference, enhance, extractLocales, findParameterInNodeTree, flattenValues, generateComponentPlaceholderId, generateHash, getBlockValue, getChannelName, getComponentJsonPointer, getComponentPath, getNounForLocation, getNounForNode, getParameterAttributes, getPropertiesValue, getPropertyValue, isAddComponentMessage, isAllowedReferrer, isAssetParamValue, isAssetParamValueItem, isComponentActionMessage, isComponentPlaceholderId, 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 };
|