@uniformdev/canvas 19.140.2-alpha.7 → 19.142.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/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: {
@@ -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: {
@@ -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: {
@@ -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: {
@@ -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: {
@@ -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: {
@@ -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: {
@@ -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: {
@@ -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: {
@@ -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: {
@@ -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: {
@@ -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: {
@@ -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: {
@@ -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: {
@@ -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: {
@@ -20997,8 +21473,6 @@ interface paths$2 {
20997
21473
  /** Adds or updates a release */
20998
21474
  put: {
20999
21475
  responses: {
21000
- /** OK */
21001
- 201: unknown;
21002
21476
  /** OK */
21003
21477
  204: never;
21004
21478
  400: external$2["swagger.yml"]["components"]["responses"]["BadRequestError"];
@@ -21825,7 +22299,6 @@ type UpdateFeatureFlagsMessage = {
21825
22299
  type UpdateContextualEditingStateInternalMessage = {
21826
22300
  type: 'update-contextual-editing-state-internal';
21827
22301
  state: {
21828
- previewMode: 'editor' | 'preview';
21829
22302
  selectedComponentReference?: {
21830
22303
  id: string;
21831
22304
  slotName?: string;
@@ -22306,7 +22779,7 @@ type RouteClientOptions = Omit<ClientOptions, 'apiHost'> & {
22306
22779
  disableSWR?: boolean;
22307
22780
  };
22308
22781
  /** A route API response with edgehancer composition result */
22309
- type ResolvedRouteGetResponse = RouteGetResponseNotFound | RouteGetResponseRedirect | RouteGetResponseEdgehancedComposition;
22782
+ type ResolvedRouteGetResponse = RouteGetResponseEdgehancedNotFound | RouteGetResponseRedirect | RouteGetResponseEdgehancedComposition;
22310
22783
  /**
22311
22784
  * Resolves a route using Uniform Project Map and Uniform Redirects,
22312
22785
  * returning a composition, redirection, or not found result.
@@ -22340,6 +22813,9 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
22340
22813
  connectedData?: {
22341
22814
  pointer: string;
22342
22815
  syntax: "jptr";
22816
+ failureAction?: "t" | "p" | "c" | "a" | undefined;
22817
+ failureLogLevel?: "e" | "w" | "i" | undefined;
22818
+ failureDefault?: string | undefined;
22343
22819
  } | undefined;
22344
22820
  locales?: {
22345
22821
  [key: string]: unknown;
@@ -22377,6 +22853,9 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
22377
22853
  connectedData?: {
22378
22854
  pointer: string;
22379
22855
  syntax: "jptr";
22856
+ failureAction?: "t" | "p" | "c" | "a" | undefined;
22857
+ failureLogLevel?: "e" | "w" | "i" | undefined;
22858
+ failureDefault?: string | undefined;
22380
22859
  } | undefined;
22381
22860
  locales?: {
22382
22861
  [key: string]: unknown;
@@ -22419,6 +22898,9 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
22419
22898
  connectedData?: {
22420
22899
  pointer: string;
22421
22900
  syntax: "jptr";
22901
+ failureAction?: "t" | "p" | "c" | "a" | undefined;
22902
+ failureLogLevel?: "e" | "w" | "i" | undefined;
22903
+ failureDefault?: string | undefined;
22422
22904
  } | undefined;
22423
22905
  locales?: {
22424
22906
  [key: string]: unknown;
@@ -22475,6 +22957,9 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
22475
22957
  connectedData?: {
22476
22958
  pointer: string;
22477
22959
  syntax: "jptr";
22960
+ failureAction?: "t" | "p" | "c" | "a" | undefined;
22961
+ failureLogLevel?: "e" | "w" | "i" | undefined;
22962
+ failureDefault?: string | undefined;
22478
22963
  } | undefined;
22479
22964
  locales?: {
22480
22965
  [key: string]: unknown;
@@ -22699,4 +23184,4 @@ declare function parseVariableExpression(serialized: string, onToken?: (token: s
22699
23184
 
22700
23185
  declare const CanvasClientError: typeof ApiClientError;
22701
23186
 
22702
- 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 };
23187
+ 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 };