@uniformdev/canvas 19.173.2-alpha.8 → 19.175.1-alpha.36
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 +149 -1
- package/dist/index.d.ts +149 -1
- package/dist/index.esm.js +22 -9
- package/dist/index.js +23 -9
- package/dist/index.mjs +22 -9
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
@@ -479,6 +479,11 @@ interface components$8 {
|
|
479
479
|
localeMapping?: {
|
480
480
|
[key: string]: string;
|
481
481
|
};
|
482
|
+
/**
|
483
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
484
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
485
|
+
*/
|
486
|
+
enableUnpublishedMode?: boolean;
|
482
487
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
483
488
|
customPublic?: {
|
484
489
|
[key: string]: unknown;
|
@@ -585,6 +590,8 @@ interface components$8 {
|
|
585
590
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
586
591
|
*/
|
587
592
|
optionalPatternParameter?: boolean;
|
593
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
594
|
+
isDraft?: boolean;
|
588
595
|
variables?: components$8["schemas"]["DataResourceVariables"];
|
589
596
|
};
|
590
597
|
/** @description Variable values for a data resource */
|
@@ -1779,6 +1786,11 @@ interface external$i {
|
|
1779
1786
|
localeMapping?: {
|
1780
1787
|
[key: string]: string;
|
1781
1788
|
};
|
1789
|
+
/**
|
1790
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
1791
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
1792
|
+
*/
|
1793
|
+
enableUnpublishedMode?: boolean;
|
1782
1794
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
1783
1795
|
customPublic?: {
|
1784
1796
|
[key: string]: unknown;
|
@@ -1885,6 +1897,8 @@ interface external$i {
|
|
1885
1897
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
1886
1898
|
*/
|
1887
1899
|
optionalPatternParameter?: boolean;
|
1900
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
1901
|
+
isDraft?: boolean;
|
1888
1902
|
variables?: external$i["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
1889
1903
|
};
|
1890
1904
|
/** @description Variable values for a data resource */
|
@@ -3078,6 +3092,11 @@ interface external$h {
|
|
3078
3092
|
localeMapping?: {
|
3079
3093
|
[key: string]: string;
|
3080
3094
|
};
|
3095
|
+
/**
|
3096
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
3097
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
3098
|
+
*/
|
3099
|
+
enableUnpublishedMode?: boolean;
|
3081
3100
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
3082
3101
|
customPublic?: {
|
3083
3102
|
[key: string]: unknown;
|
@@ -3184,6 +3203,8 @@ interface external$h {
|
|
3184
3203
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
3185
3204
|
*/
|
3186
3205
|
optionalPatternParameter?: boolean;
|
3206
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
3207
|
+
isDraft?: boolean;
|
3187
3208
|
variables?: external$h["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
3188
3209
|
};
|
3189
3210
|
/** @description Variable values for a data resource */
|
@@ -4466,6 +4487,11 @@ interface external$g {
|
|
4466
4487
|
localeMapping?: {
|
4467
4488
|
[key: string]: string;
|
4468
4489
|
};
|
4490
|
+
/**
|
4491
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
4492
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
4493
|
+
*/
|
4494
|
+
enableUnpublishedMode?: boolean;
|
4469
4495
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
4470
4496
|
customPublic?: {
|
4471
4497
|
[key: string]: unknown;
|
@@ -4572,6 +4598,8 @@ interface external$g {
|
|
4572
4598
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
4573
4599
|
*/
|
4574
4600
|
optionalPatternParameter?: boolean;
|
4601
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
4602
|
+
isDraft?: boolean;
|
4575
4603
|
variables?: external$g["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
4576
4604
|
};
|
4577
4605
|
/** @description Variable values for a data resource */
|
@@ -6188,6 +6216,11 @@ interface external$f {
|
|
6188
6216
|
localeMapping?: {
|
6189
6217
|
[key: string]: string;
|
6190
6218
|
};
|
6219
|
+
/**
|
6220
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
6221
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
6222
|
+
*/
|
6223
|
+
enableUnpublishedMode?: boolean;
|
6191
6224
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
6192
6225
|
customPublic?: {
|
6193
6226
|
[key: string]: unknown;
|
@@ -6294,6 +6327,8 @@ interface external$f {
|
|
6294
6327
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
6295
6328
|
*/
|
6296
6329
|
optionalPatternParameter?: boolean;
|
6330
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
6331
|
+
isDraft?: boolean;
|
6297
6332
|
variables?: external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
6298
6333
|
};
|
6299
6334
|
/** @description Variable values for a data resource */
|
@@ -7417,6 +7452,11 @@ interface external$e {
|
|
7417
7452
|
localeMapping?: {
|
7418
7453
|
[key: string]: string;
|
7419
7454
|
};
|
7455
|
+
/**
|
7456
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
7457
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
7458
|
+
*/
|
7459
|
+
enableUnpublishedMode?: boolean;
|
7420
7460
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
7421
7461
|
customPublic?: {
|
7422
7462
|
[key: string]: unknown;
|
@@ -7523,6 +7563,8 @@ interface external$e {
|
|
7523
7563
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
7524
7564
|
*/
|
7525
7565
|
optionalPatternParameter?: boolean;
|
7566
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
7567
|
+
isDraft?: boolean;
|
7526
7568
|
variables?: external$e["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
7527
7569
|
};
|
7528
7570
|
/** @description Variable values for a data resource */
|
@@ -8703,6 +8745,11 @@ interface external$d {
|
|
8703
8745
|
localeMapping?: {
|
8704
8746
|
[key: string]: string;
|
8705
8747
|
};
|
8748
|
+
/**
|
8749
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
8750
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
8751
|
+
*/
|
8752
|
+
enableUnpublishedMode?: boolean;
|
8706
8753
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
8707
8754
|
customPublic?: {
|
8708
8755
|
[key: string]: unknown;
|
@@ -8809,6 +8856,8 @@ interface external$d {
|
|
8809
8856
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
8810
8857
|
*/
|
8811
8858
|
optionalPatternParameter?: boolean;
|
8859
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
8860
|
+
isDraft?: boolean;
|
8812
8861
|
variables?: external$d["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
8813
8862
|
};
|
8814
8863
|
/** @description Variable values for a data resource */
|
@@ -9926,6 +9975,11 @@ interface external$c {
|
|
9926
9975
|
localeMapping?: {
|
9927
9976
|
[key: string]: string;
|
9928
9977
|
};
|
9978
|
+
/**
|
9979
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
9980
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
9981
|
+
*/
|
9982
|
+
enableUnpublishedMode?: boolean;
|
9929
9983
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
9930
9984
|
customPublic?: {
|
9931
9985
|
[key: string]: unknown;
|
@@ -10032,6 +10086,8 @@ interface external$c {
|
|
10032
10086
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
10033
10087
|
*/
|
10034
10088
|
optionalPatternParameter?: boolean;
|
10089
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
10090
|
+
isDraft?: boolean;
|
10035
10091
|
variables?: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
10036
10092
|
};
|
10037
10093
|
/** @description Variable values for a data resource */
|
@@ -11184,6 +11240,11 @@ interface external$b {
|
|
11184
11240
|
localeMapping?: {
|
11185
11241
|
[key: string]: string;
|
11186
11242
|
};
|
11243
|
+
/**
|
11244
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
11245
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
11246
|
+
*/
|
11247
|
+
enableUnpublishedMode?: boolean;
|
11187
11248
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
11188
11249
|
customPublic?: {
|
11189
11250
|
[key: string]: unknown;
|
@@ -11290,6 +11351,8 @@ interface external$b {
|
|
11290
11351
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
11291
11352
|
*/
|
11292
11353
|
optionalPatternParameter?: boolean;
|
11354
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
11355
|
+
isDraft?: boolean;
|
11293
11356
|
variables?: external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
11294
11357
|
};
|
11295
11358
|
/** @description Variable values for a data resource */
|
@@ -12442,6 +12505,11 @@ interface external$a {
|
|
12442
12505
|
localeMapping?: {
|
12443
12506
|
[key: string]: string;
|
12444
12507
|
};
|
12508
|
+
/**
|
12509
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
12510
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
12511
|
+
*/
|
12512
|
+
enableUnpublishedMode?: boolean;
|
12445
12513
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
12446
12514
|
customPublic?: {
|
12447
12515
|
[key: string]: unknown;
|
@@ -12548,6 +12616,8 @@ interface external$a {
|
|
12548
12616
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
12549
12617
|
*/
|
12550
12618
|
optionalPatternParameter?: boolean;
|
12619
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
12620
|
+
isDraft?: boolean;
|
12551
12621
|
variables?: external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
12552
12622
|
};
|
12553
12623
|
/** @description Variable values for a data resource */
|
@@ -14437,6 +14507,11 @@ interface external$8 {
|
|
14437
14507
|
localeMapping?: {
|
14438
14508
|
[key: string]: string;
|
14439
14509
|
};
|
14510
|
+
/**
|
14511
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
14512
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
14513
|
+
*/
|
14514
|
+
enableUnpublishedMode?: boolean;
|
14440
14515
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
14441
14516
|
customPublic?: {
|
14442
14517
|
[key: string]: unknown;
|
@@ -14543,6 +14618,8 @@ interface external$8 {
|
|
14543
14618
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
14544
14619
|
*/
|
14545
14620
|
optionalPatternParameter?: boolean;
|
14621
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
14622
|
+
isDraft?: boolean;
|
14546
14623
|
variables?: external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
14547
14624
|
};
|
14548
14625
|
/** @description Variable values for a data resource */
|
@@ -15666,6 +15743,11 @@ interface external$7 {
|
|
15666
15743
|
localeMapping?: {
|
15667
15744
|
[key: string]: string;
|
15668
15745
|
};
|
15746
|
+
/**
|
15747
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
15748
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
15749
|
+
*/
|
15750
|
+
enableUnpublishedMode?: boolean;
|
15669
15751
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
15670
15752
|
customPublic?: {
|
15671
15753
|
[key: string]: unknown;
|
@@ -15772,6 +15854,8 @@ interface external$7 {
|
|
15772
15854
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
15773
15855
|
*/
|
15774
15856
|
optionalPatternParameter?: boolean;
|
15857
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
15858
|
+
isDraft?: boolean;
|
15775
15859
|
variables?: external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
15776
15860
|
};
|
15777
15861
|
/** @description Variable values for a data resource */
|
@@ -17035,6 +17119,11 @@ interface external$6 {
|
|
17035
17119
|
localeMapping?: {
|
17036
17120
|
[key: string]: string;
|
17037
17121
|
};
|
17122
|
+
/**
|
17123
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
17124
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
17125
|
+
*/
|
17126
|
+
enableUnpublishedMode?: boolean;
|
17038
17127
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
17039
17128
|
customPublic?: {
|
17040
17129
|
[key: string]: unknown;
|
@@ -17141,6 +17230,8 @@ interface external$6 {
|
|
17141
17230
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
17142
17231
|
*/
|
17143
17232
|
optionalPatternParameter?: boolean;
|
17233
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
17234
|
+
isDraft?: boolean;
|
17144
17235
|
variables?: external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
17145
17236
|
};
|
17146
17237
|
/** @description Variable values for a data resource */
|
@@ -19089,6 +19180,8 @@ interface external$6 {
|
|
19089
19180
|
* Content copied to a release can be differentiated from base content by the `releaseId` property on the content. If the content is not copied to the release, this property will be null
|
19090
19181
|
*/
|
19091
19182
|
releaseId?: external$6["../../../lambda/functions/v1-route.swagger.yml"]["components"]["parameters"]["releaseId"];
|
19183
|
+
/** If true, the response will include draft/unpublished/modified content. If false, such content will be excluded. */
|
19184
|
+
isDraft?: external$6["../../../lambda/functions/v1-route.swagger.yml"]["components"]["parameters"]["isDraft"];
|
19092
19185
|
};
|
19093
19186
|
};
|
19094
19187
|
responses: {
|
@@ -19134,6 +19227,11 @@ interface external$6 {
|
|
19134
19227
|
/** @description The route that was matched in the project map */
|
19135
19228
|
matchedRoute: string;
|
19136
19229
|
dynamicInputs?: external$6["../../../lambda/functions/v1-route.swagger.yml"]["components"]["schemas"]["RouteDynamicInputs"];
|
19230
|
+
/**
|
19231
|
+
* @description If true, the response includes draft/unpublished/modified content.
|
19232
|
+
* If false, such content is excluded.
|
19233
|
+
*/
|
19234
|
+
isDraft?: boolean;
|
19137
19235
|
/** @enum {string} */
|
19138
19236
|
type: "composition";
|
19139
19237
|
compositionApiResponse: external$6["../../../lambda/functions/v1-canvas.swagger.yml"]["components"]["schemas"]["CompositionApiResponse"];
|
@@ -19214,6 +19312,8 @@ interface external$6 {
|
|
19214
19312
|
* Content copied to a release can be differentiated from base content by the `releaseId` property on the content. If the content is not copied to the release, this property will be null
|
19215
19313
|
*/
|
19216
19314
|
releaseId: string;
|
19315
|
+
/** @description If true, the response will include draft/unpublished/modified content. If false, such content will be excluded. */
|
19316
|
+
isDraft: boolean;
|
19217
19317
|
};
|
19218
19318
|
};
|
19219
19319
|
operations: {};
|
@@ -19289,6 +19389,8 @@ interface paths$5 {
|
|
19289
19389
|
* Content copied to a release can be differentiated from base content by the `releaseId` property on the content. If the content is not copied to the release, this property will be null
|
19290
19390
|
*/
|
19291
19391
|
releaseId?: components$3["parameters"]["releaseId"];
|
19392
|
+
/** If true, the response will include draft/unpublished/modified content. If false, such content will be excluded. */
|
19393
|
+
isDraft?: components$3["parameters"]["isDraft"];
|
19292
19394
|
};
|
19293
19395
|
};
|
19294
19396
|
responses: {
|
@@ -19334,6 +19436,11 @@ interface components$3 {
|
|
19334
19436
|
/** @description The route that was matched in the project map */
|
19335
19437
|
matchedRoute: string;
|
19336
19438
|
dynamicInputs?: components$3["schemas"]["RouteDynamicInputs"];
|
19439
|
+
/**
|
19440
|
+
* @description If true, the response includes draft/unpublished/modified content.
|
19441
|
+
* If false, such content is excluded.
|
19442
|
+
*/
|
19443
|
+
isDraft?: boolean;
|
19337
19444
|
/** @enum {string} */
|
19338
19445
|
type: "composition";
|
19339
19446
|
compositionApiResponse: external$5["v1-canvas.swagger.yml"]["components"]["schemas"]["CompositionApiResponse"];
|
@@ -19414,6 +19521,8 @@ interface components$3 {
|
|
19414
19521
|
* Content copied to a release can be differentiated from base content by the `releaseId` property on the content. If the content is not copied to the release, this property will be null
|
19415
19522
|
*/
|
19416
19523
|
releaseId: string;
|
19524
|
+
/** @description If true, the response will include draft/unpublished/modified content. If false, such content will be excluded. */
|
19525
|
+
isDraft: boolean;
|
19417
19526
|
};
|
19418
19527
|
}
|
19419
19528
|
interface external$5 {
|
@@ -19933,6 +20042,11 @@ interface external$5 {
|
|
19933
20042
|
localeMapping?: {
|
19934
20043
|
[key: string]: string;
|
19935
20044
|
};
|
20045
|
+
/**
|
20046
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
20047
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
20048
|
+
*/
|
20049
|
+
enableUnpublishedMode?: boolean;
|
19936
20050
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
19937
20051
|
customPublic?: {
|
19938
20052
|
[key: string]: unknown;
|
@@ -20039,6 +20153,8 @@ interface external$5 {
|
|
20039
20153
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
20040
20154
|
*/
|
20041
20155
|
optionalPatternParameter?: boolean;
|
20156
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
20157
|
+
isDraft?: boolean;
|
20042
20158
|
variables?: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
20043
20159
|
};
|
20044
20160
|
/** @description Variable values for a data resource */
|
@@ -22716,6 +22832,11 @@ interface external$3 {
|
|
22716
22832
|
localeMapping?: {
|
22717
22833
|
[key: string]: string;
|
22718
22834
|
};
|
22835
|
+
/**
|
22836
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
22837
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
22838
|
+
*/
|
22839
|
+
enableUnpublishedMode?: boolean;
|
22719
22840
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
22720
22841
|
customPublic?: {
|
22721
22842
|
[key: string]: unknown;
|
@@ -22822,6 +22943,8 @@ interface external$3 {
|
|
22822
22943
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
22823
22944
|
*/
|
22824
22945
|
optionalPatternParameter?: boolean;
|
22946
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
22947
|
+
isDraft?: boolean;
|
22825
22948
|
variables?: external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
22826
22949
|
};
|
22827
22950
|
/** @description Variable values for a data resource */
|
@@ -24231,6 +24354,11 @@ interface external$1 {
|
|
24231
24354
|
localeMapping?: {
|
24232
24355
|
[key: string]: string;
|
24233
24356
|
};
|
24357
|
+
/**
|
24358
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
24359
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
24360
|
+
*/
|
24361
|
+
enableUnpublishedMode?: boolean;
|
24234
24362
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
24235
24363
|
customPublic?: {
|
24236
24364
|
[key: string]: unknown;
|
@@ -24337,6 +24465,8 @@ interface external$1 {
|
|
24337
24465
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
24338
24466
|
*/
|
24339
24467
|
optionalPatternParameter?: boolean;
|
24468
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
24469
|
+
isDraft?: boolean;
|
24340
24470
|
variables?: external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
24341
24471
|
};
|
24342
24472
|
/** @description Variable values for a data resource */
|
@@ -25044,6 +25174,7 @@ declare class CanvasClient extends ApiClient<CanvasClientOptions> {
|
|
25044
25174
|
isPatternParameter?: boolean | undefined;
|
25045
25175
|
ignorePatternParameterDefault?: boolean | undefined;
|
25046
25176
|
optionalPatternParameter?: boolean | undefined;
|
25177
|
+
isDraft?: boolean | undefined;
|
25047
25178
|
variables?: {
|
25048
25179
|
[key: string]: string;
|
25049
25180
|
} | undefined;
|
@@ -25055,6 +25186,7 @@ declare class CanvasClient extends ApiClient<CanvasClientOptions> {
|
|
25055
25186
|
isPatternParameter?: boolean | undefined;
|
25056
25187
|
ignorePatternParameterDefault?: boolean | undefined;
|
25057
25188
|
optionalPatternParameter?: boolean | undefined;
|
25189
|
+
isDraft?: boolean | undefined;
|
25058
25190
|
variables?: {
|
25059
25191
|
[key: string]: string;
|
25060
25192
|
} | undefined;
|
@@ -25198,6 +25330,7 @@ declare class DataSourceClient extends ApiClient {
|
|
25198
25330
|
localeMapping?: {
|
25199
25331
|
[key: string]: string;
|
25200
25332
|
} | undefined;
|
25333
|
+
enableUnpublishedMode?: boolean | undefined;
|
25201
25334
|
customPublic?: {
|
25202
25335
|
[key: string]: unknown;
|
25203
25336
|
} | undefined;
|
@@ -25234,6 +25367,7 @@ declare class DataSourceClient extends ApiClient {
|
|
25234
25367
|
localeMapping?: {
|
25235
25368
|
[key: string]: string;
|
25236
25369
|
} | undefined;
|
25370
|
+
enableUnpublishedMode?: boolean | undefined;
|
25237
25371
|
customPublic?: {
|
25238
25372
|
[key: string]: unknown;
|
25239
25373
|
} | undefined;
|
@@ -25642,6 +25776,16 @@ type EvaluateCriteriaGroupOptions = {
|
|
25642
25776
|
*/
|
25643
25777
|
declare function evaluateVisibilityCriteriaGroup(options: EvaluateCriteriaGroupOptions): VisibilityCriteriaEvaluationResult;
|
25644
25778
|
|
25779
|
+
interface EvaluateNodeVisibilityParameterOptions extends Omit<EvaluateCriteriaGroupOptions, 'criteriaGroup'> {
|
25780
|
+
/** The parameter to evaluate visibility rules on */
|
25781
|
+
parameter: VisibilityParameterValue | undefined;
|
25782
|
+
}
|
25783
|
+
/**
|
25784
|
+
*
|
25785
|
+
* @deprecated beta functionality subject to change
|
25786
|
+
*/
|
25787
|
+
declare function evaluateNodeVisibilityParameter({ parameter, ...evaluateGroupOptions }: EvaluateNodeVisibilityParameterOptions): VisibilityCriteriaEvaluationResult;
|
25788
|
+
|
25645
25789
|
interface EvaluateNodeVisibilityOptions extends Omit<EvaluateCriteriaGroupOptions, 'criteriaGroup'> {
|
25646
25790
|
/** The node to evaluate visibility rules on */
|
25647
25791
|
node: ComponentInstance;
|
@@ -26260,6 +26404,7 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
26260
26404
|
isPatternParameter?: boolean | undefined;
|
26261
26405
|
ignorePatternParameterDefault?: boolean | undefined;
|
26262
26406
|
optionalPatternParameter?: boolean | undefined;
|
26407
|
+
isDraft?: boolean | undefined;
|
26263
26408
|
variables?: {
|
26264
26409
|
[key: string]: string;
|
26265
26410
|
} | undefined;
|
@@ -26271,6 +26416,7 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
26271
26416
|
isPatternParameter?: boolean | undefined;
|
26272
26417
|
ignorePatternParameterDefault?: boolean | undefined;
|
26273
26418
|
optionalPatternParameter?: boolean | undefined;
|
26419
|
+
isDraft?: boolean | undefined;
|
26274
26420
|
variables?: {
|
26275
26421
|
[key: string]: string;
|
26276
26422
|
} | undefined;
|
@@ -26325,6 +26471,7 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
26325
26471
|
isPatternParameter?: boolean | undefined;
|
26326
26472
|
ignorePatternParameterDefault?: boolean | undefined;
|
26327
26473
|
optionalPatternParameter?: boolean | undefined;
|
26474
|
+
isDraft?: boolean | undefined;
|
26328
26475
|
variables?: {
|
26329
26476
|
[key: string]: string;
|
26330
26477
|
} | undefined;
|
@@ -26336,6 +26483,7 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
26336
26483
|
isPatternParameter?: boolean | undefined;
|
26337
26484
|
ignorePatternParameterDefault?: boolean | undefined;
|
26338
26485
|
optionalPatternParameter?: boolean | undefined;
|
26486
|
+
isDraft?: boolean | undefined;
|
26339
26487
|
variables?: {
|
26340
26488
|
[key: string]: string;
|
26341
26489
|
} | undefined;
|
@@ -26633,4 +26781,4 @@ declare class WorkflowClient extends ApiClient {
|
|
26633
26781
|
|
26634
26782
|
declare const CanvasClientError: typeof ApiClientError;
|
26635
26783
|
|
26636
|
-
export { ASSETS_SOURCE_CUSTOM_URL, ASSETS_SOURCE_UNIFORM, ASSET_PARAMETER_TYPE, ATTRIBUTE_COMPONENT_ID, ATTRIBUTE_MULTILINE, ATTRIBUTE_PARAMETER_ID, ATTRIBUTE_PARAMETER_TYPE, ATTRIBUTE_PARAMETER_VALUE, ATTRIBUTE_PLACEHOLDER, type AddComponentMessage, type AssetParamValue, type AssetParamValueItem, type BatchEnhancer, BatchEntry, type BatchInvalidationPayload, type BindVariablesOptions, type BindVariablesResult, type BindVariablesToObjectOptions, type BlockLocationReference, type BlockValue, CANVAS_BLOCK_PARAM_TYPE, CANVAS_DRAFT_STATE, CANVAS_EDITOR_STATE, CANVAS_ENRICHMENT_TAG_PARAM, CANVAS_INTENT_TAG_PARAM, CANVAS_LOCALE_TAG_PARAM, CANVAS_LOCALIZATION_SLOT, CANVAS_LOCALIZATION_TYPE, CANVAS_PERSONALIZATION_PARAM, CANVAS_PERSONALIZE_SLOT, CANVAS_PERSONALIZE_TYPE, CANVAS_PUBLISHED_STATE, CANVAS_SLOT_SECTION_SLOT, CANVAS_SLOT_SECTION_TYPE, CANVAS_TEST_SLOT, CANVAS_TEST_TYPE, CANVAS_TEST_VARIANT_PARAM, CANVAS_VIZ_CONTROL_PARAM, CANVAS_VIZ_DI_RULE, CANVAS_VIZ_LOCALE_RULE, CANVAS_VIZ_QUIRKS_RULE, CanvasClient, CanvasClientError, type CanvasDefinitions, type CategoriesDeleteParameters, type CategoriesGetParameters, type CategoriesGetResponse, type CategoriesPutParameters, type Category, CategoryClient, type Channel, type ChannelMessage, type ChannelSubscription, ChildEnhancerBuilder, type ComponentDefinition, type ComponentDefinitionDeleteParameters, type ComponentDefinitionGetParameters, type ComponentDefinitionGetResponse, type ComponentDefinitionParameter, type ComponentDefinitionPermission, type ComponentDefinitionPutParameters, type ComponentDefinitionSlot, type ComponentDefinitionSlugSettings, type ComponentDefinitionVariant, type ComponentEnhancer, type ComponentEnhancerFunction, type ComponentEnhancerOptions, type ComponentInstance, type ComponentInstanceContextualEditing, type ComponentInstanceHistoryEntry, type ComponentInstanceHistoryGetParameters, type ComponentInstanceHistoryGetResponse, type ComponentLocationReference, type ComponentLocationReferenceV2, type ComponentOverridability, type ComponentOverride, type ComponentOverrides, type ComponentParameter, type ComponentParameterBlock, type ComponentParameterContextualEditing, type ComponentParameterEnhancer, type ComponentParameterEnhancerFunction, type ComponentParameterEnhancerOptions, type CompositionDataDiagnostic, type CompositionDeleteParameters, type CompositionDiagnostics, type CompositionFilters, type CompositionGetByComponentIdParameters, type CompositionGetByIdParameters, type CompositionGetByNodeIdParameters, type CompositionGetByNodePathParameters, type CompositionGetBySlugParameters, type CompositionGetListResponse, type CompositionGetOrderBy, type CompositionGetParameters, type CompositionGetResponse, type CompositionGetValidResponses, type CompositionIssue, type CompositionPatternIssue, type CompositionPutParameters, type CompositionResolvedGetResponse, type CompositionResolvedListResponse, type CompositionUIStatus, ContentClient, type ContentType, type ContentTypeField, type ContextStorageUpdatedMessage, type ContextualEditingComponentReference, type CopiedComponentSubtree, type DataDiagnostic, type DataElementBindingIssue, type DataElementConnectionDefinition, type DataElementConnectionFailureAction, type DataElementConnectionFailureLogLevel, type DataResolutionConfigIssue, type DataResolutionIssue, type DataResolutionOption, type DataResolutionOptionNegative, type DataResolutionOptionPositive, type DataResolutionParameters, type DataResourceDefinition, type DataResourceDefinitions, type DataResourceIssue, type DataResourceVariables, type DataSource, DataSourceClient, type DataSourceDeleteParameters, type DataSourceGetParameters, type DataSourceGetResponse, type DataSourcePutParameters, type DataSourcesGetParameters, type DataSourcesGetResponse, type DataType, DataTypeClient, type DataTypeDeleteParameters, type DataTypeGetParameters, type DataTypeGetResponse, type DataTypePutParameters, type DataVariableDefinition, type DataWithProperties, type DeleteContentTypeOptions, type DeleteEntryOptions, type DismissPlaceholderMessage, type DynamicInputIssue, EDGE_CACHE_DISABLED, EDGE_DEFAULT_CACHE_TTL, EDGE_MAX_CACHE_TTL, EDGE_MIN_CACHE_TTL, EMPTY_COMPOSITION, type EdgehancersDiagnostics, type EdgehancersWholeResponseCacheDiagnostics, type EditorStateUpdatedMessage, EnhancerBuilder, type EnhancerContext, type EnhancerError, EntityReleasesClient, type EntityReleasesGetParameters, type EntityReleasesGetResponse, type EntriesGetParameters, type EntriesGetResponse, type EntriesHistoryGetParameters, type EntriesHistoryGetResponse, type EntriesResolvedListResponse, type Entry, type EntryData, type EntryFilters, type EntryList, type EvaluateCriteriaGroupOptions, type EvaluateNodeTreeVisibilityOptions, type EventNames, type Filters, type FindInNodeTreeReference, type FlattenProperty, type FlattenValues, type FlattenValuesOptions, type GetContentTypesOptions, type GetContentTypesResponse, type GetEntriesOptions, type GetEntriesResponse, type GetParameterAttributesProps, IN_CONTEXT_EDITOR_COMPONENT_END_ROLE, IN_CONTEXT_EDITOR_COMPONENT_START_ROLE, IN_CONTEXT_EDITOR_CONFIG_CHECK_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_EMBED_SCRIPT_ID, IN_CONTEXT_EDITOR_FORCED_SETTINGS_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_QUERY_STRING_PARAM, IS_RENDERED_BY_UNIFORM_ATTRIBUTE, type InvalidationPayload, LOCALE_DYNAMIC_INPUT_NAME, type LimitPolicy, type LinkComponentParameterValue, type LinkParamConfiguration, type LinkParamValue, type LinkParameterType, type LinkTypeConfiguration, type Locale, LocaleClient, type LocaleDeleteParameters, type LocalePutParameters, type LocalesGetParameters, type LocalesGetResponse, type LocalizeDeprecatedOptions, type LocalizeModernOptions, type MaxDepthExceededIssue, type MessageHandler, type MoveComponentMessage, type NodeLocationReference, type NonProjectMapLinkParamValue, type OpenParameterEditorMessage, type OverrideOptions, PLACEHOLDER_ID, type PatternIssue, type PreviewEventBus, type PreviewPanelSettings, type ProjectMapLinkComponentParameterValue, type ProjectMapLinkParamValue, type Prompt, PromptClient, type PromptsDeleteParameters, type PromptsGetParameters, type PromptsGetResponse, type PromptsPutParameters, type PutContentTypeBody, type PutEntryBody, type ReadyMessage, RelationshipClient, type RelationshipResultInstance, type Release, ReleaseClient, type ReleaseContent, ReleaseContentsClient, type ReleaseContentsDeleteBody, type ReleaseContentsGetParameters, type ReleaseContentsGetResponse, type ReleaseDeleteParameters, type ReleasePatchParameters, type ReleasePutParameters, type ReleaseState, type ReleasesGetParameters, type ReleasesGetResponse, type ReportRenderedCompositionsMessage, type RequestComponentSuggestionMessage, type ResolvedRouteGetResponse, type RichTextBuiltInElement, type RichTextBuiltInFormat, type RichTextParamConfiguration, type RichTextParamValue, type RootComponentInstance, type RootEntryReference, type RootLocationReference, RouteClient, type RouteDynamicInputs, type RouteGetParameters, type RouteGetResponse, type RouteGetResponseComposition, type RouteGetResponseEdgehancedComposition, type RouteGetResponseEdgehancedNotFound, type RouteGetResponseNotFound, type RouteGetResponseRedirect, SECRET_QUERY_STRING_PARAM, type SelectComponentMessage, type SelectParameterMessage, type SpecificProjectMap, type StringOperators, type SubscribeToCompositionOptions, type SuggestComponentMessage, type TreeNodeInfoTypes, type TriggerComponentActionMessage, type TriggerCompositionActionMessage, UncachedCanvasClient, UncachedCategoryClient, UncachedContentClient, UniqueBatchEntries, type UnsubscribeCallback, type UpdateComponentParameterMessage, type UpdateComponentReferencesMessage, type UpdateCompositionInternalMessage, type UpdateCompositionMessage, type UpdateContextualEditingStateInternalMessage, type UpdateFeatureFlagsMessage, type UpdatePreviewSettingsMessage, type VisibilityCriteria, type VisibilityCriteriaEvaluationResult, type VisibilityCriteriaGroup, type VisibilityParameterValue, type VisibilityRule, type VisibilityRules, type WalkComponentTreeActions, type WalkNodeTreeActions, type WalkNodeTreeOptions, WorkflowClient, type WorkflowDefinition, type WorkflowStage, type WorkflowStagePermission, type WorkflowStageTransition, type WorkflowStageTransitionPermission, type WorkflowsDeleteParameters, type WorkflowsGetParameters, type WorkflowsGetResponse, type WorkflowsPutParameters, bindVariables, bindVariablesToObject, compose, convertEntryToPutEntry, createBatchEnhancer, createCanvasChannel, createDynamicInputVisibilityRule, createEventBus, createLimitPolicy, createLocaleVisibilityRule, createQuirksVisibilityRule, createUniformApiEnhancer, createVariableReference, enhance, evaluateVisibilityCriteriaGroup, evaluateWalkTreeVisibility, extractLocales, findParameterInNodeTree, flattenValues, generateComponentPlaceholderId, generateHash, getBlockValue, getChannelName, getComponentJsonPointer, getComponentPath, getLocalizedPropertyValues, getNounForLocation, getNounForNode, getParameterAttributes, getPropertiesValue, getPropertyValue, isAddComponentMessage, isAllowedReferrer, isAssetParamValue, isAssetParamValueItem, isComponentActionMessage, isComponentPlaceholderId, isContextStorageUpdatedMessage, isDismissPlaceholderMessage, isEntryData, isMovingComponentMessage, isNestedNodeType, isOpenParameterEditorMessage, isReadyMessage, isReportRenderedCompositionsMessage, isRequestComponentSuggestionMessage, isRootEntryReference, isSelectComponentMessage, isSelectParameterMessage, isSuggestComponentMessage, isSystemComponentDefinition, isTriggerCompositionActionMessage, isUpdateComponentParameterMessage, isUpdateComponentReferencesMessage, isUpdateCompositionInternalMessage, isUpdateCompositionMessage, isUpdateContextualEditingStateInternalMessage, isUpdateFeatureFlagsMessage, isUpdatePreviewSettingsMessage, localize, mapSlotToPersonalizedVariations, mapSlotToTestVariations, nullLimitPolicy, parseComponentPlaceholderId, parseVariableExpression, subscribeToComposition, walkComponentTree, walkNodeTree };
|
26784
|
+
export { ASSETS_SOURCE_CUSTOM_URL, ASSETS_SOURCE_UNIFORM, ASSET_PARAMETER_TYPE, ATTRIBUTE_COMPONENT_ID, ATTRIBUTE_MULTILINE, ATTRIBUTE_PARAMETER_ID, ATTRIBUTE_PARAMETER_TYPE, ATTRIBUTE_PARAMETER_VALUE, ATTRIBUTE_PLACEHOLDER, type AddComponentMessage, type AssetParamValue, type AssetParamValueItem, type BatchEnhancer, BatchEntry, type BatchInvalidationPayload, type BindVariablesOptions, type BindVariablesResult, type BindVariablesToObjectOptions, type BlockLocationReference, type BlockValue, CANVAS_BLOCK_PARAM_TYPE, CANVAS_DRAFT_STATE, CANVAS_EDITOR_STATE, CANVAS_ENRICHMENT_TAG_PARAM, CANVAS_INTENT_TAG_PARAM, CANVAS_LOCALE_TAG_PARAM, CANVAS_LOCALIZATION_SLOT, CANVAS_LOCALIZATION_TYPE, CANVAS_PERSONALIZATION_PARAM, CANVAS_PERSONALIZE_SLOT, CANVAS_PERSONALIZE_TYPE, CANVAS_PUBLISHED_STATE, CANVAS_SLOT_SECTION_SLOT, CANVAS_SLOT_SECTION_TYPE, CANVAS_TEST_SLOT, CANVAS_TEST_TYPE, CANVAS_TEST_VARIANT_PARAM, CANVAS_VIZ_CONTROL_PARAM, CANVAS_VIZ_DI_RULE, CANVAS_VIZ_LOCALE_RULE, CANVAS_VIZ_QUIRKS_RULE, CanvasClient, CanvasClientError, type CanvasDefinitions, type CategoriesDeleteParameters, type CategoriesGetParameters, type CategoriesGetResponse, type CategoriesPutParameters, type Category, CategoryClient, type Channel, type ChannelMessage, type ChannelSubscription, ChildEnhancerBuilder, type ComponentDefinition, type ComponentDefinitionDeleteParameters, type ComponentDefinitionGetParameters, type ComponentDefinitionGetResponse, type ComponentDefinitionParameter, type ComponentDefinitionPermission, type ComponentDefinitionPutParameters, type ComponentDefinitionSlot, type ComponentDefinitionSlugSettings, type ComponentDefinitionVariant, type ComponentEnhancer, type ComponentEnhancerFunction, type ComponentEnhancerOptions, type ComponentInstance, type ComponentInstanceContextualEditing, type ComponentInstanceHistoryEntry, type ComponentInstanceHistoryGetParameters, type ComponentInstanceHistoryGetResponse, type ComponentLocationReference, type ComponentLocationReferenceV2, type ComponentOverridability, type ComponentOverride, type ComponentOverrides, type ComponentParameter, type ComponentParameterBlock, type ComponentParameterContextualEditing, type ComponentParameterEnhancer, type ComponentParameterEnhancerFunction, type ComponentParameterEnhancerOptions, type CompositionDataDiagnostic, type CompositionDeleteParameters, type CompositionDiagnostics, type CompositionFilters, type CompositionGetByComponentIdParameters, type CompositionGetByIdParameters, type CompositionGetByNodeIdParameters, type CompositionGetByNodePathParameters, type CompositionGetBySlugParameters, type CompositionGetListResponse, type CompositionGetOrderBy, type CompositionGetParameters, type CompositionGetResponse, type CompositionGetValidResponses, type CompositionIssue, type CompositionPatternIssue, type CompositionPutParameters, type CompositionResolvedGetResponse, type CompositionResolvedListResponse, type CompositionUIStatus, ContentClient, type ContentType, type ContentTypeField, type ContextStorageUpdatedMessage, type ContextualEditingComponentReference, type CopiedComponentSubtree, type DataDiagnostic, type DataElementBindingIssue, type DataElementConnectionDefinition, type DataElementConnectionFailureAction, type DataElementConnectionFailureLogLevel, type DataResolutionConfigIssue, type DataResolutionIssue, type DataResolutionOption, type DataResolutionOptionNegative, type DataResolutionOptionPositive, type DataResolutionParameters, type DataResourceDefinition, type DataResourceDefinitions, type DataResourceIssue, type DataResourceVariables, type DataSource, DataSourceClient, type DataSourceDeleteParameters, type DataSourceGetParameters, type DataSourceGetResponse, type DataSourcePutParameters, type DataSourcesGetParameters, type DataSourcesGetResponse, type DataType, DataTypeClient, type DataTypeDeleteParameters, type DataTypeGetParameters, type DataTypeGetResponse, type DataTypePutParameters, type DataVariableDefinition, type DataWithProperties, type DeleteContentTypeOptions, type DeleteEntryOptions, type DismissPlaceholderMessage, type DynamicInputIssue, EDGE_CACHE_DISABLED, EDGE_DEFAULT_CACHE_TTL, EDGE_MAX_CACHE_TTL, EDGE_MIN_CACHE_TTL, EMPTY_COMPOSITION, type EdgehancersDiagnostics, type EdgehancersWholeResponseCacheDiagnostics, type EditorStateUpdatedMessage, EnhancerBuilder, type EnhancerContext, type EnhancerError, EntityReleasesClient, type EntityReleasesGetParameters, type EntityReleasesGetResponse, type EntriesGetParameters, type EntriesGetResponse, type EntriesHistoryGetParameters, type EntriesHistoryGetResponse, type EntriesResolvedListResponse, type Entry, type EntryData, type EntryFilters, type EntryList, type EvaluateCriteriaGroupOptions, type EvaluateNodeTreeVisibilityOptions, type EvaluateNodeVisibilityParameterOptions, type EventNames, type Filters, type FindInNodeTreeReference, type FlattenProperty, type FlattenValues, type FlattenValuesOptions, type GetContentTypesOptions, type GetContentTypesResponse, type GetEntriesOptions, type GetEntriesResponse, type GetParameterAttributesProps, IN_CONTEXT_EDITOR_COMPONENT_END_ROLE, IN_CONTEXT_EDITOR_COMPONENT_START_ROLE, IN_CONTEXT_EDITOR_CONFIG_CHECK_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_EMBED_SCRIPT_ID, IN_CONTEXT_EDITOR_FORCED_SETTINGS_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_QUERY_STRING_PARAM, IS_RENDERED_BY_UNIFORM_ATTRIBUTE, type InvalidationPayload, LOCALE_DYNAMIC_INPUT_NAME, type LimitPolicy, type LinkComponentParameterValue, type LinkParamConfiguration, type LinkParamValue, type LinkParameterType, type LinkTypeConfiguration, type Locale, LocaleClient, type LocaleDeleteParameters, type LocalePutParameters, type LocalesGetParameters, type LocalesGetResponse, type LocalizeDeprecatedOptions, type LocalizeModernOptions, type MaxDepthExceededIssue, type MessageHandler, type MoveComponentMessage, type NodeLocationReference, type NonProjectMapLinkParamValue, type OpenParameterEditorMessage, type OverrideOptions, PLACEHOLDER_ID, type PatternIssue, type PreviewEventBus, type PreviewPanelSettings, type ProjectMapLinkComponentParameterValue, type ProjectMapLinkParamValue, type Prompt, PromptClient, type PromptsDeleteParameters, type PromptsGetParameters, type PromptsGetResponse, type PromptsPutParameters, type PutContentTypeBody, type PutEntryBody, type ReadyMessage, RelationshipClient, type RelationshipResultInstance, type Release, ReleaseClient, type ReleaseContent, ReleaseContentsClient, type ReleaseContentsDeleteBody, type ReleaseContentsGetParameters, type ReleaseContentsGetResponse, type ReleaseDeleteParameters, type ReleasePatchParameters, type ReleasePutParameters, type ReleaseState, type ReleasesGetParameters, type ReleasesGetResponse, type ReportRenderedCompositionsMessage, type RequestComponentSuggestionMessage, type ResolvedRouteGetResponse, type RichTextBuiltInElement, type RichTextBuiltInFormat, type RichTextParamConfiguration, type RichTextParamValue, type RootComponentInstance, type RootEntryReference, type RootLocationReference, RouteClient, type RouteDynamicInputs, type RouteGetParameters, type RouteGetResponse, type RouteGetResponseComposition, type RouteGetResponseEdgehancedComposition, type RouteGetResponseEdgehancedNotFound, type RouteGetResponseNotFound, type RouteGetResponseRedirect, SECRET_QUERY_STRING_PARAM, type SelectComponentMessage, type SelectParameterMessage, type SpecificProjectMap, type StringOperators, type SubscribeToCompositionOptions, type SuggestComponentMessage, type TreeNodeInfoTypes, type TriggerComponentActionMessage, type TriggerCompositionActionMessage, UncachedCanvasClient, UncachedCategoryClient, UncachedContentClient, UniqueBatchEntries, type UnsubscribeCallback, type UpdateComponentParameterMessage, type UpdateComponentReferencesMessage, type UpdateCompositionInternalMessage, type UpdateCompositionMessage, type UpdateContextualEditingStateInternalMessage, type UpdateFeatureFlagsMessage, type UpdatePreviewSettingsMessage, type VisibilityCriteria, type VisibilityCriteriaEvaluationResult, type VisibilityCriteriaGroup, type VisibilityParameterValue, type VisibilityRule, type VisibilityRules, type WalkComponentTreeActions, type WalkNodeTreeActions, type WalkNodeTreeOptions, WorkflowClient, type WorkflowDefinition, type WorkflowStage, type WorkflowStagePermission, type WorkflowStageTransition, type WorkflowStageTransitionPermission, type WorkflowsDeleteParameters, type WorkflowsGetParameters, type WorkflowsGetResponse, type WorkflowsPutParameters, bindVariables, bindVariablesToObject, compose, convertEntryToPutEntry, createBatchEnhancer, createCanvasChannel, createDynamicInputVisibilityRule, createEventBus, createLimitPolicy, createLocaleVisibilityRule, createQuirksVisibilityRule, createUniformApiEnhancer, createVariableReference, enhance, evaluateNodeVisibilityParameter, evaluateVisibilityCriteriaGroup, evaluateWalkTreeVisibility, extractLocales, findParameterInNodeTree, flattenValues, generateComponentPlaceholderId, generateHash, getBlockValue, getChannelName, getComponentJsonPointer, getComponentPath, getLocalizedPropertyValues, getNounForLocation, getNounForNode, getParameterAttributes, getPropertiesValue, getPropertyValue, isAddComponentMessage, isAllowedReferrer, isAssetParamValue, isAssetParamValueItem, isComponentActionMessage, isComponentPlaceholderId, isContextStorageUpdatedMessage, isDismissPlaceholderMessage, isEntryData, isMovingComponentMessage, isNestedNodeType, isOpenParameterEditorMessage, isReadyMessage, isReportRenderedCompositionsMessage, isRequestComponentSuggestionMessage, isRootEntryReference, isSelectComponentMessage, isSelectParameterMessage, isSuggestComponentMessage, isSystemComponentDefinition, isTriggerCompositionActionMessage, isUpdateComponentParameterMessage, isUpdateComponentReferencesMessage, isUpdateCompositionInternalMessage, isUpdateCompositionMessage, isUpdateContextualEditingStateInternalMessage, isUpdateFeatureFlagsMessage, isUpdatePreviewSettingsMessage, localize, mapSlotToPersonalizedVariations, mapSlotToTestVariations, nullLimitPolicy, parseComponentPlaceholderId, parseVariableExpression, subscribeToComposition, walkComponentTree, walkNodeTree };
|
package/dist/index.d.ts
CHANGED
@@ -479,6 +479,11 @@ interface components$8 {
|
|
479
479
|
localeMapping?: {
|
480
480
|
[key: string]: string;
|
481
481
|
};
|
482
|
+
/**
|
483
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
484
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
485
|
+
*/
|
486
|
+
enableUnpublishedMode?: boolean;
|
482
487
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
483
488
|
customPublic?: {
|
484
489
|
[key: string]: unknown;
|
@@ -585,6 +590,8 @@ interface components$8 {
|
|
585
590
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
586
591
|
*/
|
587
592
|
optionalPatternParameter?: boolean;
|
593
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
594
|
+
isDraft?: boolean;
|
588
595
|
variables?: components$8["schemas"]["DataResourceVariables"];
|
589
596
|
};
|
590
597
|
/** @description Variable values for a data resource */
|
@@ -1779,6 +1786,11 @@ interface external$i {
|
|
1779
1786
|
localeMapping?: {
|
1780
1787
|
[key: string]: string;
|
1781
1788
|
};
|
1789
|
+
/**
|
1790
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
1791
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
1792
|
+
*/
|
1793
|
+
enableUnpublishedMode?: boolean;
|
1782
1794
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
1783
1795
|
customPublic?: {
|
1784
1796
|
[key: string]: unknown;
|
@@ -1885,6 +1897,8 @@ interface external$i {
|
|
1885
1897
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
1886
1898
|
*/
|
1887
1899
|
optionalPatternParameter?: boolean;
|
1900
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
1901
|
+
isDraft?: boolean;
|
1888
1902
|
variables?: external$i["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
1889
1903
|
};
|
1890
1904
|
/** @description Variable values for a data resource */
|
@@ -3078,6 +3092,11 @@ interface external$h {
|
|
3078
3092
|
localeMapping?: {
|
3079
3093
|
[key: string]: string;
|
3080
3094
|
};
|
3095
|
+
/**
|
3096
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
3097
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
3098
|
+
*/
|
3099
|
+
enableUnpublishedMode?: boolean;
|
3081
3100
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
3082
3101
|
customPublic?: {
|
3083
3102
|
[key: string]: unknown;
|
@@ -3184,6 +3203,8 @@ interface external$h {
|
|
3184
3203
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
3185
3204
|
*/
|
3186
3205
|
optionalPatternParameter?: boolean;
|
3206
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
3207
|
+
isDraft?: boolean;
|
3187
3208
|
variables?: external$h["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
3188
3209
|
};
|
3189
3210
|
/** @description Variable values for a data resource */
|
@@ -4466,6 +4487,11 @@ interface external$g {
|
|
4466
4487
|
localeMapping?: {
|
4467
4488
|
[key: string]: string;
|
4468
4489
|
};
|
4490
|
+
/**
|
4491
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
4492
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
4493
|
+
*/
|
4494
|
+
enableUnpublishedMode?: boolean;
|
4469
4495
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
4470
4496
|
customPublic?: {
|
4471
4497
|
[key: string]: unknown;
|
@@ -4572,6 +4598,8 @@ interface external$g {
|
|
4572
4598
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
4573
4599
|
*/
|
4574
4600
|
optionalPatternParameter?: boolean;
|
4601
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
4602
|
+
isDraft?: boolean;
|
4575
4603
|
variables?: external$g["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
4576
4604
|
};
|
4577
4605
|
/** @description Variable values for a data resource */
|
@@ -6188,6 +6216,11 @@ interface external$f {
|
|
6188
6216
|
localeMapping?: {
|
6189
6217
|
[key: string]: string;
|
6190
6218
|
};
|
6219
|
+
/**
|
6220
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
6221
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
6222
|
+
*/
|
6223
|
+
enableUnpublishedMode?: boolean;
|
6191
6224
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
6192
6225
|
customPublic?: {
|
6193
6226
|
[key: string]: unknown;
|
@@ -6294,6 +6327,8 @@ interface external$f {
|
|
6294
6327
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
6295
6328
|
*/
|
6296
6329
|
optionalPatternParameter?: boolean;
|
6330
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
6331
|
+
isDraft?: boolean;
|
6297
6332
|
variables?: external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
6298
6333
|
};
|
6299
6334
|
/** @description Variable values for a data resource */
|
@@ -7417,6 +7452,11 @@ interface external$e {
|
|
7417
7452
|
localeMapping?: {
|
7418
7453
|
[key: string]: string;
|
7419
7454
|
};
|
7455
|
+
/**
|
7456
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
7457
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
7458
|
+
*/
|
7459
|
+
enableUnpublishedMode?: boolean;
|
7420
7460
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
7421
7461
|
customPublic?: {
|
7422
7462
|
[key: string]: unknown;
|
@@ -7523,6 +7563,8 @@ interface external$e {
|
|
7523
7563
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
7524
7564
|
*/
|
7525
7565
|
optionalPatternParameter?: boolean;
|
7566
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
7567
|
+
isDraft?: boolean;
|
7526
7568
|
variables?: external$e["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
7527
7569
|
};
|
7528
7570
|
/** @description Variable values for a data resource */
|
@@ -8703,6 +8745,11 @@ interface external$d {
|
|
8703
8745
|
localeMapping?: {
|
8704
8746
|
[key: string]: string;
|
8705
8747
|
};
|
8748
|
+
/**
|
8749
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
8750
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
8751
|
+
*/
|
8752
|
+
enableUnpublishedMode?: boolean;
|
8706
8753
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
8707
8754
|
customPublic?: {
|
8708
8755
|
[key: string]: unknown;
|
@@ -8809,6 +8856,8 @@ interface external$d {
|
|
8809
8856
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
8810
8857
|
*/
|
8811
8858
|
optionalPatternParameter?: boolean;
|
8859
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
8860
|
+
isDraft?: boolean;
|
8812
8861
|
variables?: external$d["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
8813
8862
|
};
|
8814
8863
|
/** @description Variable values for a data resource */
|
@@ -9926,6 +9975,11 @@ interface external$c {
|
|
9926
9975
|
localeMapping?: {
|
9927
9976
|
[key: string]: string;
|
9928
9977
|
};
|
9978
|
+
/**
|
9979
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
9980
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
9981
|
+
*/
|
9982
|
+
enableUnpublishedMode?: boolean;
|
9929
9983
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
9930
9984
|
customPublic?: {
|
9931
9985
|
[key: string]: unknown;
|
@@ -10032,6 +10086,8 @@ interface external$c {
|
|
10032
10086
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
10033
10087
|
*/
|
10034
10088
|
optionalPatternParameter?: boolean;
|
10089
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
10090
|
+
isDraft?: boolean;
|
10035
10091
|
variables?: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
10036
10092
|
};
|
10037
10093
|
/** @description Variable values for a data resource */
|
@@ -11184,6 +11240,11 @@ interface external$b {
|
|
11184
11240
|
localeMapping?: {
|
11185
11241
|
[key: string]: string;
|
11186
11242
|
};
|
11243
|
+
/**
|
11244
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
11245
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
11246
|
+
*/
|
11247
|
+
enableUnpublishedMode?: boolean;
|
11187
11248
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
11188
11249
|
customPublic?: {
|
11189
11250
|
[key: string]: unknown;
|
@@ -11290,6 +11351,8 @@ interface external$b {
|
|
11290
11351
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
11291
11352
|
*/
|
11292
11353
|
optionalPatternParameter?: boolean;
|
11354
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
11355
|
+
isDraft?: boolean;
|
11293
11356
|
variables?: external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
11294
11357
|
};
|
11295
11358
|
/** @description Variable values for a data resource */
|
@@ -12442,6 +12505,11 @@ interface external$a {
|
|
12442
12505
|
localeMapping?: {
|
12443
12506
|
[key: string]: string;
|
12444
12507
|
};
|
12508
|
+
/**
|
12509
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
12510
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
12511
|
+
*/
|
12512
|
+
enableUnpublishedMode?: boolean;
|
12445
12513
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
12446
12514
|
customPublic?: {
|
12447
12515
|
[key: string]: unknown;
|
@@ -12548,6 +12616,8 @@ interface external$a {
|
|
12548
12616
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
12549
12617
|
*/
|
12550
12618
|
optionalPatternParameter?: boolean;
|
12619
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
12620
|
+
isDraft?: boolean;
|
12551
12621
|
variables?: external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
12552
12622
|
};
|
12553
12623
|
/** @description Variable values for a data resource */
|
@@ -14437,6 +14507,11 @@ interface external$8 {
|
|
14437
14507
|
localeMapping?: {
|
14438
14508
|
[key: string]: string;
|
14439
14509
|
};
|
14510
|
+
/**
|
14511
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
14512
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
14513
|
+
*/
|
14514
|
+
enableUnpublishedMode?: boolean;
|
14440
14515
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
14441
14516
|
customPublic?: {
|
14442
14517
|
[key: string]: unknown;
|
@@ -14543,6 +14618,8 @@ interface external$8 {
|
|
14543
14618
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
14544
14619
|
*/
|
14545
14620
|
optionalPatternParameter?: boolean;
|
14621
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
14622
|
+
isDraft?: boolean;
|
14546
14623
|
variables?: external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
14547
14624
|
};
|
14548
14625
|
/** @description Variable values for a data resource */
|
@@ -15666,6 +15743,11 @@ interface external$7 {
|
|
15666
15743
|
localeMapping?: {
|
15667
15744
|
[key: string]: string;
|
15668
15745
|
};
|
15746
|
+
/**
|
15747
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
15748
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
15749
|
+
*/
|
15750
|
+
enableUnpublishedMode?: boolean;
|
15669
15751
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
15670
15752
|
customPublic?: {
|
15671
15753
|
[key: string]: unknown;
|
@@ -15772,6 +15854,8 @@ interface external$7 {
|
|
15772
15854
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
15773
15855
|
*/
|
15774
15856
|
optionalPatternParameter?: boolean;
|
15857
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
15858
|
+
isDraft?: boolean;
|
15775
15859
|
variables?: external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
15776
15860
|
};
|
15777
15861
|
/** @description Variable values for a data resource */
|
@@ -17035,6 +17119,11 @@ interface external$6 {
|
|
17035
17119
|
localeMapping?: {
|
17036
17120
|
[key: string]: string;
|
17037
17121
|
};
|
17122
|
+
/**
|
17123
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
17124
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
17125
|
+
*/
|
17126
|
+
enableUnpublishedMode?: boolean;
|
17038
17127
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
17039
17128
|
customPublic?: {
|
17040
17129
|
[key: string]: unknown;
|
@@ -17141,6 +17230,8 @@ interface external$6 {
|
|
17141
17230
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
17142
17231
|
*/
|
17143
17232
|
optionalPatternParameter?: boolean;
|
17233
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
17234
|
+
isDraft?: boolean;
|
17144
17235
|
variables?: external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
17145
17236
|
};
|
17146
17237
|
/** @description Variable values for a data resource */
|
@@ -19089,6 +19180,8 @@ interface external$6 {
|
|
19089
19180
|
* Content copied to a release can be differentiated from base content by the `releaseId` property on the content. If the content is not copied to the release, this property will be null
|
19090
19181
|
*/
|
19091
19182
|
releaseId?: external$6["../../../lambda/functions/v1-route.swagger.yml"]["components"]["parameters"]["releaseId"];
|
19183
|
+
/** If true, the response will include draft/unpublished/modified content. If false, such content will be excluded. */
|
19184
|
+
isDraft?: external$6["../../../lambda/functions/v1-route.swagger.yml"]["components"]["parameters"]["isDraft"];
|
19092
19185
|
};
|
19093
19186
|
};
|
19094
19187
|
responses: {
|
@@ -19134,6 +19227,11 @@ interface external$6 {
|
|
19134
19227
|
/** @description The route that was matched in the project map */
|
19135
19228
|
matchedRoute: string;
|
19136
19229
|
dynamicInputs?: external$6["../../../lambda/functions/v1-route.swagger.yml"]["components"]["schemas"]["RouteDynamicInputs"];
|
19230
|
+
/**
|
19231
|
+
* @description If true, the response includes draft/unpublished/modified content.
|
19232
|
+
* If false, such content is excluded.
|
19233
|
+
*/
|
19234
|
+
isDraft?: boolean;
|
19137
19235
|
/** @enum {string} */
|
19138
19236
|
type: "composition";
|
19139
19237
|
compositionApiResponse: external$6["../../../lambda/functions/v1-canvas.swagger.yml"]["components"]["schemas"]["CompositionApiResponse"];
|
@@ -19214,6 +19312,8 @@ interface external$6 {
|
|
19214
19312
|
* Content copied to a release can be differentiated from base content by the `releaseId` property on the content. If the content is not copied to the release, this property will be null
|
19215
19313
|
*/
|
19216
19314
|
releaseId: string;
|
19315
|
+
/** @description If true, the response will include draft/unpublished/modified content. If false, such content will be excluded. */
|
19316
|
+
isDraft: boolean;
|
19217
19317
|
};
|
19218
19318
|
};
|
19219
19319
|
operations: {};
|
@@ -19289,6 +19389,8 @@ interface paths$5 {
|
|
19289
19389
|
* Content copied to a release can be differentiated from base content by the `releaseId` property on the content. If the content is not copied to the release, this property will be null
|
19290
19390
|
*/
|
19291
19391
|
releaseId?: components$3["parameters"]["releaseId"];
|
19392
|
+
/** If true, the response will include draft/unpublished/modified content. If false, such content will be excluded. */
|
19393
|
+
isDraft?: components$3["parameters"]["isDraft"];
|
19292
19394
|
};
|
19293
19395
|
};
|
19294
19396
|
responses: {
|
@@ -19334,6 +19436,11 @@ interface components$3 {
|
|
19334
19436
|
/** @description The route that was matched in the project map */
|
19335
19437
|
matchedRoute: string;
|
19336
19438
|
dynamicInputs?: components$3["schemas"]["RouteDynamicInputs"];
|
19439
|
+
/**
|
19440
|
+
* @description If true, the response includes draft/unpublished/modified content.
|
19441
|
+
* If false, such content is excluded.
|
19442
|
+
*/
|
19443
|
+
isDraft?: boolean;
|
19337
19444
|
/** @enum {string} */
|
19338
19445
|
type: "composition";
|
19339
19446
|
compositionApiResponse: external$5["v1-canvas.swagger.yml"]["components"]["schemas"]["CompositionApiResponse"];
|
@@ -19414,6 +19521,8 @@ interface components$3 {
|
|
19414
19521
|
* Content copied to a release can be differentiated from base content by the `releaseId` property on the content. If the content is not copied to the release, this property will be null
|
19415
19522
|
*/
|
19416
19523
|
releaseId: string;
|
19524
|
+
/** @description If true, the response will include draft/unpublished/modified content. If false, such content will be excluded. */
|
19525
|
+
isDraft: boolean;
|
19417
19526
|
};
|
19418
19527
|
}
|
19419
19528
|
interface external$5 {
|
@@ -19933,6 +20042,11 @@ interface external$5 {
|
|
19933
20042
|
localeMapping?: {
|
19934
20043
|
[key: string]: string;
|
19935
20044
|
};
|
20045
|
+
/**
|
20046
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
20047
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
20048
|
+
*/
|
20049
|
+
enableUnpublishedMode?: boolean;
|
19936
20050
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
19937
20051
|
customPublic?: {
|
19938
20052
|
[key: string]: unknown;
|
@@ -20039,6 +20153,8 @@ interface external$5 {
|
|
20039
20153
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
20040
20154
|
*/
|
20041
20155
|
optionalPatternParameter?: boolean;
|
20156
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
20157
|
+
isDraft?: boolean;
|
20042
20158
|
variables?: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
20043
20159
|
};
|
20044
20160
|
/** @description Variable values for a data resource */
|
@@ -22716,6 +22832,11 @@ interface external$3 {
|
|
22716
22832
|
localeMapping?: {
|
22717
22833
|
[key: string]: string;
|
22718
22834
|
};
|
22835
|
+
/**
|
22836
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
22837
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
22838
|
+
*/
|
22839
|
+
enableUnpublishedMode?: boolean;
|
22719
22840
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
22720
22841
|
customPublic?: {
|
22721
22842
|
[key: string]: unknown;
|
@@ -22822,6 +22943,8 @@ interface external$3 {
|
|
22822
22943
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
22823
22944
|
*/
|
22824
22945
|
optionalPatternParameter?: boolean;
|
22946
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
22947
|
+
isDraft?: boolean;
|
22825
22948
|
variables?: external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
22826
22949
|
};
|
22827
22950
|
/** @description Variable values for a data resource */
|
@@ -24231,6 +24354,11 @@ interface external$1 {
|
|
24231
24354
|
localeMapping?: {
|
24232
24355
|
[key: string]: string;
|
24233
24356
|
};
|
24357
|
+
/**
|
24358
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
24359
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
24360
|
+
*/
|
24361
|
+
enableUnpublishedMode?: boolean;
|
24234
24362
|
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets */
|
24235
24363
|
customPublic?: {
|
24236
24364
|
[key: string]: unknown;
|
@@ -24337,6 +24465,8 @@ interface external$1 {
|
|
24337
24465
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
24338
24466
|
*/
|
24339
24467
|
optionalPatternParameter?: boolean;
|
24468
|
+
/** @description Resolve this data resource with draft mode content. TBD */
|
24469
|
+
isDraft?: boolean;
|
24340
24470
|
variables?: external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
24341
24471
|
};
|
24342
24472
|
/** @description Variable values for a data resource */
|
@@ -25044,6 +25174,7 @@ declare class CanvasClient extends ApiClient<CanvasClientOptions> {
|
|
25044
25174
|
isPatternParameter?: boolean | undefined;
|
25045
25175
|
ignorePatternParameterDefault?: boolean | undefined;
|
25046
25176
|
optionalPatternParameter?: boolean | undefined;
|
25177
|
+
isDraft?: boolean | undefined;
|
25047
25178
|
variables?: {
|
25048
25179
|
[key: string]: string;
|
25049
25180
|
} | undefined;
|
@@ -25055,6 +25186,7 @@ declare class CanvasClient extends ApiClient<CanvasClientOptions> {
|
|
25055
25186
|
isPatternParameter?: boolean | undefined;
|
25056
25187
|
ignorePatternParameterDefault?: boolean | undefined;
|
25057
25188
|
optionalPatternParameter?: boolean | undefined;
|
25189
|
+
isDraft?: boolean | undefined;
|
25058
25190
|
variables?: {
|
25059
25191
|
[key: string]: string;
|
25060
25192
|
} | undefined;
|
@@ -25198,6 +25330,7 @@ declare class DataSourceClient extends ApiClient {
|
|
25198
25330
|
localeMapping?: {
|
25199
25331
|
[key: string]: string;
|
25200
25332
|
} | undefined;
|
25333
|
+
enableUnpublishedMode?: boolean | undefined;
|
25201
25334
|
customPublic?: {
|
25202
25335
|
[key: string]: unknown;
|
25203
25336
|
} | undefined;
|
@@ -25234,6 +25367,7 @@ declare class DataSourceClient extends ApiClient {
|
|
25234
25367
|
localeMapping?: {
|
25235
25368
|
[key: string]: string;
|
25236
25369
|
} | undefined;
|
25370
|
+
enableUnpublishedMode?: boolean | undefined;
|
25237
25371
|
customPublic?: {
|
25238
25372
|
[key: string]: unknown;
|
25239
25373
|
} | undefined;
|
@@ -25642,6 +25776,16 @@ type EvaluateCriteriaGroupOptions = {
|
|
25642
25776
|
*/
|
25643
25777
|
declare function evaluateVisibilityCriteriaGroup(options: EvaluateCriteriaGroupOptions): VisibilityCriteriaEvaluationResult;
|
25644
25778
|
|
25779
|
+
interface EvaluateNodeVisibilityParameterOptions extends Omit<EvaluateCriteriaGroupOptions, 'criteriaGroup'> {
|
25780
|
+
/** The parameter to evaluate visibility rules on */
|
25781
|
+
parameter: VisibilityParameterValue | undefined;
|
25782
|
+
}
|
25783
|
+
/**
|
25784
|
+
*
|
25785
|
+
* @deprecated beta functionality subject to change
|
25786
|
+
*/
|
25787
|
+
declare function evaluateNodeVisibilityParameter({ parameter, ...evaluateGroupOptions }: EvaluateNodeVisibilityParameterOptions): VisibilityCriteriaEvaluationResult;
|
25788
|
+
|
25645
25789
|
interface EvaluateNodeVisibilityOptions extends Omit<EvaluateCriteriaGroupOptions, 'criteriaGroup'> {
|
25646
25790
|
/** The node to evaluate visibility rules on */
|
25647
25791
|
node: ComponentInstance;
|
@@ -26260,6 +26404,7 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
26260
26404
|
isPatternParameter?: boolean | undefined;
|
26261
26405
|
ignorePatternParameterDefault?: boolean | undefined;
|
26262
26406
|
optionalPatternParameter?: boolean | undefined;
|
26407
|
+
isDraft?: boolean | undefined;
|
26263
26408
|
variables?: {
|
26264
26409
|
[key: string]: string;
|
26265
26410
|
} | undefined;
|
@@ -26271,6 +26416,7 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
26271
26416
|
isPatternParameter?: boolean | undefined;
|
26272
26417
|
ignorePatternParameterDefault?: boolean | undefined;
|
26273
26418
|
optionalPatternParameter?: boolean | undefined;
|
26419
|
+
isDraft?: boolean | undefined;
|
26274
26420
|
variables?: {
|
26275
26421
|
[key: string]: string;
|
26276
26422
|
} | undefined;
|
@@ -26325,6 +26471,7 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
26325
26471
|
isPatternParameter?: boolean | undefined;
|
26326
26472
|
ignorePatternParameterDefault?: boolean | undefined;
|
26327
26473
|
optionalPatternParameter?: boolean | undefined;
|
26474
|
+
isDraft?: boolean | undefined;
|
26328
26475
|
variables?: {
|
26329
26476
|
[key: string]: string;
|
26330
26477
|
} | undefined;
|
@@ -26336,6 +26483,7 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
26336
26483
|
isPatternParameter?: boolean | undefined;
|
26337
26484
|
ignorePatternParameterDefault?: boolean | undefined;
|
26338
26485
|
optionalPatternParameter?: boolean | undefined;
|
26486
|
+
isDraft?: boolean | undefined;
|
26339
26487
|
variables?: {
|
26340
26488
|
[key: string]: string;
|
26341
26489
|
} | undefined;
|
@@ -26633,4 +26781,4 @@ declare class WorkflowClient extends ApiClient {
|
|
26633
26781
|
|
26634
26782
|
declare const CanvasClientError: typeof ApiClientError;
|
26635
26783
|
|
26636
|
-
export { ASSETS_SOURCE_CUSTOM_URL, ASSETS_SOURCE_UNIFORM, ASSET_PARAMETER_TYPE, ATTRIBUTE_COMPONENT_ID, ATTRIBUTE_MULTILINE, ATTRIBUTE_PARAMETER_ID, ATTRIBUTE_PARAMETER_TYPE, ATTRIBUTE_PARAMETER_VALUE, ATTRIBUTE_PLACEHOLDER, type AddComponentMessage, type AssetParamValue, type AssetParamValueItem, type BatchEnhancer, BatchEntry, type BatchInvalidationPayload, type BindVariablesOptions, type BindVariablesResult, type BindVariablesToObjectOptions, type BlockLocationReference, type BlockValue, CANVAS_BLOCK_PARAM_TYPE, CANVAS_DRAFT_STATE, CANVAS_EDITOR_STATE, CANVAS_ENRICHMENT_TAG_PARAM, CANVAS_INTENT_TAG_PARAM, CANVAS_LOCALE_TAG_PARAM, CANVAS_LOCALIZATION_SLOT, CANVAS_LOCALIZATION_TYPE, CANVAS_PERSONALIZATION_PARAM, CANVAS_PERSONALIZE_SLOT, CANVAS_PERSONALIZE_TYPE, CANVAS_PUBLISHED_STATE, CANVAS_SLOT_SECTION_SLOT, CANVAS_SLOT_SECTION_TYPE, CANVAS_TEST_SLOT, CANVAS_TEST_TYPE, CANVAS_TEST_VARIANT_PARAM, CANVAS_VIZ_CONTROL_PARAM, CANVAS_VIZ_DI_RULE, CANVAS_VIZ_LOCALE_RULE, CANVAS_VIZ_QUIRKS_RULE, CanvasClient, CanvasClientError, type CanvasDefinitions, type CategoriesDeleteParameters, type CategoriesGetParameters, type CategoriesGetResponse, type CategoriesPutParameters, type Category, CategoryClient, type Channel, type ChannelMessage, type ChannelSubscription, ChildEnhancerBuilder, type ComponentDefinition, type ComponentDefinitionDeleteParameters, type ComponentDefinitionGetParameters, type ComponentDefinitionGetResponse, type ComponentDefinitionParameter, type ComponentDefinitionPermission, type ComponentDefinitionPutParameters, type ComponentDefinitionSlot, type ComponentDefinitionSlugSettings, type ComponentDefinitionVariant, type ComponentEnhancer, type ComponentEnhancerFunction, type ComponentEnhancerOptions, type ComponentInstance, type ComponentInstanceContextualEditing, type ComponentInstanceHistoryEntry, type ComponentInstanceHistoryGetParameters, type ComponentInstanceHistoryGetResponse, type ComponentLocationReference, type ComponentLocationReferenceV2, type ComponentOverridability, type ComponentOverride, type ComponentOverrides, type ComponentParameter, type ComponentParameterBlock, type ComponentParameterContextualEditing, type ComponentParameterEnhancer, type ComponentParameterEnhancerFunction, type ComponentParameterEnhancerOptions, type CompositionDataDiagnostic, type CompositionDeleteParameters, type CompositionDiagnostics, type CompositionFilters, type CompositionGetByComponentIdParameters, type CompositionGetByIdParameters, type CompositionGetByNodeIdParameters, type CompositionGetByNodePathParameters, type CompositionGetBySlugParameters, type CompositionGetListResponse, type CompositionGetOrderBy, type CompositionGetParameters, type CompositionGetResponse, type CompositionGetValidResponses, type CompositionIssue, type CompositionPatternIssue, type CompositionPutParameters, type CompositionResolvedGetResponse, type CompositionResolvedListResponse, type CompositionUIStatus, ContentClient, type ContentType, type ContentTypeField, type ContextStorageUpdatedMessage, type ContextualEditingComponentReference, type CopiedComponentSubtree, type DataDiagnostic, type DataElementBindingIssue, type DataElementConnectionDefinition, type DataElementConnectionFailureAction, type DataElementConnectionFailureLogLevel, type DataResolutionConfigIssue, type DataResolutionIssue, type DataResolutionOption, type DataResolutionOptionNegative, type DataResolutionOptionPositive, type DataResolutionParameters, type DataResourceDefinition, type DataResourceDefinitions, type DataResourceIssue, type DataResourceVariables, type DataSource, DataSourceClient, type DataSourceDeleteParameters, type DataSourceGetParameters, type DataSourceGetResponse, type DataSourcePutParameters, type DataSourcesGetParameters, type DataSourcesGetResponse, type DataType, DataTypeClient, type DataTypeDeleteParameters, type DataTypeGetParameters, type DataTypeGetResponse, type DataTypePutParameters, type DataVariableDefinition, type DataWithProperties, type DeleteContentTypeOptions, type DeleteEntryOptions, type DismissPlaceholderMessage, type DynamicInputIssue, EDGE_CACHE_DISABLED, EDGE_DEFAULT_CACHE_TTL, EDGE_MAX_CACHE_TTL, EDGE_MIN_CACHE_TTL, EMPTY_COMPOSITION, type EdgehancersDiagnostics, type EdgehancersWholeResponseCacheDiagnostics, type EditorStateUpdatedMessage, EnhancerBuilder, type EnhancerContext, type EnhancerError, EntityReleasesClient, type EntityReleasesGetParameters, type EntityReleasesGetResponse, type EntriesGetParameters, type EntriesGetResponse, type EntriesHistoryGetParameters, type EntriesHistoryGetResponse, type EntriesResolvedListResponse, type Entry, type EntryData, type EntryFilters, type EntryList, type EvaluateCriteriaGroupOptions, type EvaluateNodeTreeVisibilityOptions, type EventNames, type Filters, type FindInNodeTreeReference, type FlattenProperty, type FlattenValues, type FlattenValuesOptions, type GetContentTypesOptions, type GetContentTypesResponse, type GetEntriesOptions, type GetEntriesResponse, type GetParameterAttributesProps, IN_CONTEXT_EDITOR_COMPONENT_END_ROLE, IN_CONTEXT_EDITOR_COMPONENT_START_ROLE, IN_CONTEXT_EDITOR_CONFIG_CHECK_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_EMBED_SCRIPT_ID, IN_CONTEXT_EDITOR_FORCED_SETTINGS_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_QUERY_STRING_PARAM, IS_RENDERED_BY_UNIFORM_ATTRIBUTE, type InvalidationPayload, LOCALE_DYNAMIC_INPUT_NAME, type LimitPolicy, type LinkComponentParameterValue, type LinkParamConfiguration, type LinkParamValue, type LinkParameterType, type LinkTypeConfiguration, type Locale, LocaleClient, type LocaleDeleteParameters, type LocalePutParameters, type LocalesGetParameters, type LocalesGetResponse, type LocalizeDeprecatedOptions, type LocalizeModernOptions, type MaxDepthExceededIssue, type MessageHandler, type MoveComponentMessage, type NodeLocationReference, type NonProjectMapLinkParamValue, type OpenParameterEditorMessage, type OverrideOptions, PLACEHOLDER_ID, type PatternIssue, type PreviewEventBus, type PreviewPanelSettings, type ProjectMapLinkComponentParameterValue, type ProjectMapLinkParamValue, type Prompt, PromptClient, type PromptsDeleteParameters, type PromptsGetParameters, type PromptsGetResponse, type PromptsPutParameters, type PutContentTypeBody, type PutEntryBody, type ReadyMessage, RelationshipClient, type RelationshipResultInstance, type Release, ReleaseClient, type ReleaseContent, ReleaseContentsClient, type ReleaseContentsDeleteBody, type ReleaseContentsGetParameters, type ReleaseContentsGetResponse, type ReleaseDeleteParameters, type ReleasePatchParameters, type ReleasePutParameters, type ReleaseState, type ReleasesGetParameters, type ReleasesGetResponse, type ReportRenderedCompositionsMessage, type RequestComponentSuggestionMessage, type ResolvedRouteGetResponse, type RichTextBuiltInElement, type RichTextBuiltInFormat, type RichTextParamConfiguration, type RichTextParamValue, type RootComponentInstance, type RootEntryReference, type RootLocationReference, RouteClient, type RouteDynamicInputs, type RouteGetParameters, type RouteGetResponse, type RouteGetResponseComposition, type RouteGetResponseEdgehancedComposition, type RouteGetResponseEdgehancedNotFound, type RouteGetResponseNotFound, type RouteGetResponseRedirect, SECRET_QUERY_STRING_PARAM, type SelectComponentMessage, type SelectParameterMessage, type SpecificProjectMap, type StringOperators, type SubscribeToCompositionOptions, type SuggestComponentMessage, type TreeNodeInfoTypes, type TriggerComponentActionMessage, type TriggerCompositionActionMessage, UncachedCanvasClient, UncachedCategoryClient, UncachedContentClient, UniqueBatchEntries, type UnsubscribeCallback, type UpdateComponentParameterMessage, type UpdateComponentReferencesMessage, type UpdateCompositionInternalMessage, type UpdateCompositionMessage, type UpdateContextualEditingStateInternalMessage, type UpdateFeatureFlagsMessage, type UpdatePreviewSettingsMessage, type VisibilityCriteria, type VisibilityCriteriaEvaluationResult, type VisibilityCriteriaGroup, type VisibilityParameterValue, type VisibilityRule, type VisibilityRules, type WalkComponentTreeActions, type WalkNodeTreeActions, type WalkNodeTreeOptions, WorkflowClient, type WorkflowDefinition, type WorkflowStage, type WorkflowStagePermission, type WorkflowStageTransition, type WorkflowStageTransitionPermission, type WorkflowsDeleteParameters, type WorkflowsGetParameters, type WorkflowsGetResponse, type WorkflowsPutParameters, bindVariables, bindVariablesToObject, compose, convertEntryToPutEntry, createBatchEnhancer, createCanvasChannel, createDynamicInputVisibilityRule, createEventBus, createLimitPolicy, createLocaleVisibilityRule, createQuirksVisibilityRule, createUniformApiEnhancer, createVariableReference, enhance, evaluateVisibilityCriteriaGroup, evaluateWalkTreeVisibility, extractLocales, findParameterInNodeTree, flattenValues, generateComponentPlaceholderId, generateHash, getBlockValue, getChannelName, getComponentJsonPointer, getComponentPath, getLocalizedPropertyValues, getNounForLocation, getNounForNode, getParameterAttributes, getPropertiesValue, getPropertyValue, isAddComponentMessage, isAllowedReferrer, isAssetParamValue, isAssetParamValueItem, isComponentActionMessage, isComponentPlaceholderId, isContextStorageUpdatedMessage, isDismissPlaceholderMessage, isEntryData, isMovingComponentMessage, isNestedNodeType, isOpenParameterEditorMessage, isReadyMessage, isReportRenderedCompositionsMessage, isRequestComponentSuggestionMessage, isRootEntryReference, isSelectComponentMessage, isSelectParameterMessage, isSuggestComponentMessage, isSystemComponentDefinition, isTriggerCompositionActionMessage, isUpdateComponentParameterMessage, isUpdateComponentReferencesMessage, isUpdateCompositionInternalMessage, isUpdateCompositionMessage, isUpdateContextualEditingStateInternalMessage, isUpdateFeatureFlagsMessage, isUpdatePreviewSettingsMessage, localize, mapSlotToPersonalizedVariations, mapSlotToTestVariations, nullLimitPolicy, parseComponentPlaceholderId, parseVariableExpression, subscribeToComposition, walkComponentTree, walkNodeTree };
|
26784
|
+
export { ASSETS_SOURCE_CUSTOM_URL, ASSETS_SOURCE_UNIFORM, ASSET_PARAMETER_TYPE, ATTRIBUTE_COMPONENT_ID, ATTRIBUTE_MULTILINE, ATTRIBUTE_PARAMETER_ID, ATTRIBUTE_PARAMETER_TYPE, ATTRIBUTE_PARAMETER_VALUE, ATTRIBUTE_PLACEHOLDER, type AddComponentMessage, type AssetParamValue, type AssetParamValueItem, type BatchEnhancer, BatchEntry, type BatchInvalidationPayload, type BindVariablesOptions, type BindVariablesResult, type BindVariablesToObjectOptions, type BlockLocationReference, type BlockValue, CANVAS_BLOCK_PARAM_TYPE, CANVAS_DRAFT_STATE, CANVAS_EDITOR_STATE, CANVAS_ENRICHMENT_TAG_PARAM, CANVAS_INTENT_TAG_PARAM, CANVAS_LOCALE_TAG_PARAM, CANVAS_LOCALIZATION_SLOT, CANVAS_LOCALIZATION_TYPE, CANVAS_PERSONALIZATION_PARAM, CANVAS_PERSONALIZE_SLOT, CANVAS_PERSONALIZE_TYPE, CANVAS_PUBLISHED_STATE, CANVAS_SLOT_SECTION_SLOT, CANVAS_SLOT_SECTION_TYPE, CANVAS_TEST_SLOT, CANVAS_TEST_TYPE, CANVAS_TEST_VARIANT_PARAM, CANVAS_VIZ_CONTROL_PARAM, CANVAS_VIZ_DI_RULE, CANVAS_VIZ_LOCALE_RULE, CANVAS_VIZ_QUIRKS_RULE, CanvasClient, CanvasClientError, type CanvasDefinitions, type CategoriesDeleteParameters, type CategoriesGetParameters, type CategoriesGetResponse, type CategoriesPutParameters, type Category, CategoryClient, type Channel, type ChannelMessage, type ChannelSubscription, ChildEnhancerBuilder, type ComponentDefinition, type ComponentDefinitionDeleteParameters, type ComponentDefinitionGetParameters, type ComponentDefinitionGetResponse, type ComponentDefinitionParameter, type ComponentDefinitionPermission, type ComponentDefinitionPutParameters, type ComponentDefinitionSlot, type ComponentDefinitionSlugSettings, type ComponentDefinitionVariant, type ComponentEnhancer, type ComponentEnhancerFunction, type ComponentEnhancerOptions, type ComponentInstance, type ComponentInstanceContextualEditing, type ComponentInstanceHistoryEntry, type ComponentInstanceHistoryGetParameters, type ComponentInstanceHistoryGetResponse, type ComponentLocationReference, type ComponentLocationReferenceV2, type ComponentOverridability, type ComponentOverride, type ComponentOverrides, type ComponentParameter, type ComponentParameterBlock, type ComponentParameterContextualEditing, type ComponentParameterEnhancer, type ComponentParameterEnhancerFunction, type ComponentParameterEnhancerOptions, type CompositionDataDiagnostic, type CompositionDeleteParameters, type CompositionDiagnostics, type CompositionFilters, type CompositionGetByComponentIdParameters, type CompositionGetByIdParameters, type CompositionGetByNodeIdParameters, type CompositionGetByNodePathParameters, type CompositionGetBySlugParameters, type CompositionGetListResponse, type CompositionGetOrderBy, type CompositionGetParameters, type CompositionGetResponse, type CompositionGetValidResponses, type CompositionIssue, type CompositionPatternIssue, type CompositionPutParameters, type CompositionResolvedGetResponse, type CompositionResolvedListResponse, type CompositionUIStatus, ContentClient, type ContentType, type ContentTypeField, type ContextStorageUpdatedMessage, type ContextualEditingComponentReference, type CopiedComponentSubtree, type DataDiagnostic, type DataElementBindingIssue, type DataElementConnectionDefinition, type DataElementConnectionFailureAction, type DataElementConnectionFailureLogLevel, type DataResolutionConfigIssue, type DataResolutionIssue, type DataResolutionOption, type DataResolutionOptionNegative, type DataResolutionOptionPositive, type DataResolutionParameters, type DataResourceDefinition, type DataResourceDefinitions, type DataResourceIssue, type DataResourceVariables, type DataSource, DataSourceClient, type DataSourceDeleteParameters, type DataSourceGetParameters, type DataSourceGetResponse, type DataSourcePutParameters, type DataSourcesGetParameters, type DataSourcesGetResponse, type DataType, DataTypeClient, type DataTypeDeleteParameters, type DataTypeGetParameters, type DataTypeGetResponse, type DataTypePutParameters, type DataVariableDefinition, type DataWithProperties, type DeleteContentTypeOptions, type DeleteEntryOptions, type DismissPlaceholderMessage, type DynamicInputIssue, EDGE_CACHE_DISABLED, EDGE_DEFAULT_CACHE_TTL, EDGE_MAX_CACHE_TTL, EDGE_MIN_CACHE_TTL, EMPTY_COMPOSITION, type EdgehancersDiagnostics, type EdgehancersWholeResponseCacheDiagnostics, type EditorStateUpdatedMessage, EnhancerBuilder, type EnhancerContext, type EnhancerError, EntityReleasesClient, type EntityReleasesGetParameters, type EntityReleasesGetResponse, type EntriesGetParameters, type EntriesGetResponse, type EntriesHistoryGetParameters, type EntriesHistoryGetResponse, type EntriesResolvedListResponse, type Entry, type EntryData, type EntryFilters, type EntryList, type EvaluateCriteriaGroupOptions, type EvaluateNodeTreeVisibilityOptions, type EvaluateNodeVisibilityParameterOptions, type EventNames, type Filters, type FindInNodeTreeReference, type FlattenProperty, type FlattenValues, type FlattenValuesOptions, type GetContentTypesOptions, type GetContentTypesResponse, type GetEntriesOptions, type GetEntriesResponse, type GetParameterAttributesProps, IN_CONTEXT_EDITOR_COMPONENT_END_ROLE, IN_CONTEXT_EDITOR_COMPONENT_START_ROLE, IN_CONTEXT_EDITOR_CONFIG_CHECK_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_EMBED_SCRIPT_ID, IN_CONTEXT_EDITOR_FORCED_SETTINGS_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_QUERY_STRING_PARAM, IS_RENDERED_BY_UNIFORM_ATTRIBUTE, type InvalidationPayload, LOCALE_DYNAMIC_INPUT_NAME, type LimitPolicy, type LinkComponentParameterValue, type LinkParamConfiguration, type LinkParamValue, type LinkParameterType, type LinkTypeConfiguration, type Locale, LocaleClient, type LocaleDeleteParameters, type LocalePutParameters, type LocalesGetParameters, type LocalesGetResponse, type LocalizeDeprecatedOptions, type LocalizeModernOptions, type MaxDepthExceededIssue, type MessageHandler, type MoveComponentMessage, type NodeLocationReference, type NonProjectMapLinkParamValue, type OpenParameterEditorMessage, type OverrideOptions, PLACEHOLDER_ID, type PatternIssue, type PreviewEventBus, type PreviewPanelSettings, type ProjectMapLinkComponentParameterValue, type ProjectMapLinkParamValue, type Prompt, PromptClient, type PromptsDeleteParameters, type PromptsGetParameters, type PromptsGetResponse, type PromptsPutParameters, type PutContentTypeBody, type PutEntryBody, type ReadyMessage, RelationshipClient, type RelationshipResultInstance, type Release, ReleaseClient, type ReleaseContent, ReleaseContentsClient, type ReleaseContentsDeleteBody, type ReleaseContentsGetParameters, type ReleaseContentsGetResponse, type ReleaseDeleteParameters, type ReleasePatchParameters, type ReleasePutParameters, type ReleaseState, type ReleasesGetParameters, type ReleasesGetResponse, type ReportRenderedCompositionsMessage, type RequestComponentSuggestionMessage, type ResolvedRouteGetResponse, type RichTextBuiltInElement, type RichTextBuiltInFormat, type RichTextParamConfiguration, type RichTextParamValue, type RootComponentInstance, type RootEntryReference, type RootLocationReference, RouteClient, type RouteDynamicInputs, type RouteGetParameters, type RouteGetResponse, type RouteGetResponseComposition, type RouteGetResponseEdgehancedComposition, type RouteGetResponseEdgehancedNotFound, type RouteGetResponseNotFound, type RouteGetResponseRedirect, SECRET_QUERY_STRING_PARAM, type SelectComponentMessage, type SelectParameterMessage, type SpecificProjectMap, type StringOperators, type SubscribeToCompositionOptions, type SuggestComponentMessage, type TreeNodeInfoTypes, type TriggerComponentActionMessage, type TriggerCompositionActionMessage, UncachedCanvasClient, UncachedCategoryClient, UncachedContentClient, UniqueBatchEntries, type UnsubscribeCallback, type UpdateComponentParameterMessage, type UpdateComponentReferencesMessage, type UpdateCompositionInternalMessage, type UpdateCompositionMessage, type UpdateContextualEditingStateInternalMessage, type UpdateFeatureFlagsMessage, type UpdatePreviewSettingsMessage, type VisibilityCriteria, type VisibilityCriteriaEvaluationResult, type VisibilityCriteriaGroup, type VisibilityParameterValue, type VisibilityRule, type VisibilityRules, type WalkComponentTreeActions, type WalkNodeTreeActions, type WalkNodeTreeOptions, WorkflowClient, type WorkflowDefinition, type WorkflowStage, type WorkflowStagePermission, type WorkflowStageTransition, type WorkflowStageTransitionPermission, type WorkflowsDeleteParameters, type WorkflowsGetParameters, type WorkflowsGetResponse, type WorkflowsPutParameters, bindVariables, bindVariablesToObject, compose, convertEntryToPutEntry, createBatchEnhancer, createCanvasChannel, createDynamicInputVisibilityRule, createEventBus, createLimitPolicy, createLocaleVisibilityRule, createQuirksVisibilityRule, createUniformApiEnhancer, createVariableReference, enhance, evaluateNodeVisibilityParameter, evaluateVisibilityCriteriaGroup, evaluateWalkTreeVisibility, extractLocales, findParameterInNodeTree, flattenValues, generateComponentPlaceholderId, generateHash, getBlockValue, getChannelName, getComponentJsonPointer, getComponentPath, getLocalizedPropertyValues, getNounForLocation, getNounForNode, getParameterAttributes, getPropertiesValue, getPropertyValue, isAddComponentMessage, isAllowedReferrer, isAssetParamValue, isAssetParamValueItem, isComponentActionMessage, isComponentPlaceholderId, isContextStorageUpdatedMessage, isDismissPlaceholderMessage, isEntryData, isMovingComponentMessage, isNestedNodeType, isOpenParameterEditorMessage, isReadyMessage, isReportRenderedCompositionsMessage, isRequestComponentSuggestionMessage, isRootEntryReference, isSelectComponentMessage, isSelectParameterMessage, isSuggestComponentMessage, isSystemComponentDefinition, isTriggerCompositionActionMessage, isUpdateComponentParameterMessage, isUpdateComponentReferencesMessage, isUpdateCompositionInternalMessage, isUpdateCompositionMessage, isUpdateContextualEditingStateInternalMessage, isUpdateFeatureFlagsMessage, isUpdatePreviewSettingsMessage, localize, mapSlotToPersonalizedVariations, mapSlotToTestVariations, nullLimitPolicy, parseComponentPlaceholderId, parseVariableExpression, subscribeToComposition, walkComponentTree, walkNodeTree };
|
package/dist/index.esm.js
CHANGED
@@ -1631,6 +1631,24 @@ function evaluateCriterion(clause, rootOptions) {
|
|
1631
1631
|
return null;
|
1632
1632
|
}
|
1633
1633
|
|
1634
|
+
// src/enhancement/visibility/evaluateNodeVisibilityParameter.ts
|
1635
|
+
function evaluateNodeVisibilityParameter({
|
1636
|
+
parameter,
|
1637
|
+
...evaluateGroupOptions
|
1638
|
+
}) {
|
1639
|
+
if (parameter == null ? void 0 : parameter.explicitlyHidden) {
|
1640
|
+
return false;
|
1641
|
+
}
|
1642
|
+
if (!(parameter == null ? void 0 : parameter.criteria)) {
|
1643
|
+
return true;
|
1644
|
+
}
|
1645
|
+
const result = evaluateVisibilityCriteriaGroup({
|
1646
|
+
...evaluateGroupOptions,
|
1647
|
+
criteriaGroup: parameter.criteria
|
1648
|
+
});
|
1649
|
+
return result;
|
1650
|
+
}
|
1651
|
+
|
1634
1652
|
// src/enhancement/visibility/types.ts
|
1635
1653
|
var CANVAS_VIZ_CONTROL_PARAM = "$viz";
|
1636
1654
|
|
@@ -1642,17 +1660,11 @@ function evaluateNodeVisibility({
|
|
1642
1660
|
var _a;
|
1643
1661
|
const properties = getPropertiesValue(node);
|
1644
1662
|
const vizCriteria = (_a = properties == null ? void 0 : properties[CANVAS_VIZ_CONTROL_PARAM]) == null ? void 0 : _a.value;
|
1645
|
-
|
1646
|
-
return false;
|
1647
|
-
}
|
1648
|
-
if (!(vizCriteria == null ? void 0 : vizCriteria.criteria)) {
|
1649
|
-
return true;
|
1650
|
-
}
|
1651
|
-
const result = evaluateVisibilityCriteriaGroup({
|
1663
|
+
const result = evaluateNodeVisibilityParameter({
|
1652
1664
|
...evaluateGroupOptions,
|
1653
|
-
|
1665
|
+
parameter: vizCriteria
|
1654
1666
|
});
|
1655
|
-
if (vizCriteria.criteria.clauses.length === 0 && evaluateGroupOptions.simplifyCriteria) {
|
1667
|
+
if ((vizCriteria == null ? void 0 : vizCriteria.criteria) && vizCriteria.criteria.clauses.length === 0 && evaluateGroupOptions.simplifyCriteria) {
|
1656
1668
|
properties == null ? true : delete properties[CANVAS_VIZ_CONTROL_PARAM];
|
1657
1669
|
}
|
1658
1670
|
return result;
|
@@ -3082,6 +3094,7 @@ export {
|
|
3082
3094
|
createUniformApiEnhancer,
|
3083
3095
|
createVariableReference,
|
3084
3096
|
enhance,
|
3097
|
+
evaluateNodeVisibilityParameter,
|
3085
3098
|
evaluateVisibilityCriteriaGroup,
|
3086
3099
|
evaluateWalkTreeVisibility,
|
3087
3100
|
extractLocales,
|
package/dist/index.js
CHANGED
@@ -352,6 +352,7 @@ __export(src_exports, {
|
|
352
352
|
createUniformApiEnhancer: () => createUniformApiEnhancer,
|
353
353
|
createVariableReference: () => createVariableReference,
|
354
354
|
enhance: () => enhance,
|
355
|
+
evaluateNodeVisibilityParameter: () => evaluateNodeVisibilityParameter,
|
355
356
|
evaluateVisibilityCriteriaGroup: () => evaluateVisibilityCriteriaGroup,
|
356
357
|
evaluateWalkTreeVisibility: () => evaluateWalkTreeVisibility,
|
357
358
|
extractLocales: () => extractLocales,
|
@@ -1779,6 +1780,24 @@ function evaluateCriterion(clause, rootOptions) {
|
|
1779
1780
|
return null;
|
1780
1781
|
}
|
1781
1782
|
|
1783
|
+
// src/enhancement/visibility/evaluateNodeVisibilityParameter.ts
|
1784
|
+
function evaluateNodeVisibilityParameter({
|
1785
|
+
parameter,
|
1786
|
+
...evaluateGroupOptions
|
1787
|
+
}) {
|
1788
|
+
if (parameter == null ? void 0 : parameter.explicitlyHidden) {
|
1789
|
+
return false;
|
1790
|
+
}
|
1791
|
+
if (!(parameter == null ? void 0 : parameter.criteria)) {
|
1792
|
+
return true;
|
1793
|
+
}
|
1794
|
+
const result = evaluateVisibilityCriteriaGroup({
|
1795
|
+
...evaluateGroupOptions,
|
1796
|
+
criteriaGroup: parameter.criteria
|
1797
|
+
});
|
1798
|
+
return result;
|
1799
|
+
}
|
1800
|
+
|
1782
1801
|
// src/enhancement/visibility/types.ts
|
1783
1802
|
var CANVAS_VIZ_CONTROL_PARAM = "$viz";
|
1784
1803
|
|
@@ -1790,17 +1809,11 @@ function evaluateNodeVisibility({
|
|
1790
1809
|
var _a;
|
1791
1810
|
const properties = getPropertiesValue(node);
|
1792
1811
|
const vizCriteria = (_a = properties == null ? void 0 : properties[CANVAS_VIZ_CONTROL_PARAM]) == null ? void 0 : _a.value;
|
1793
|
-
|
1794
|
-
return false;
|
1795
|
-
}
|
1796
|
-
if (!(vizCriteria == null ? void 0 : vizCriteria.criteria)) {
|
1797
|
-
return true;
|
1798
|
-
}
|
1799
|
-
const result = evaluateVisibilityCriteriaGroup({
|
1812
|
+
const result = evaluateNodeVisibilityParameter({
|
1800
1813
|
...evaluateGroupOptions,
|
1801
|
-
|
1814
|
+
parameter: vizCriteria
|
1802
1815
|
});
|
1803
|
-
if (vizCriteria.criteria.clauses.length === 0 && evaluateGroupOptions.simplifyCriteria) {
|
1816
|
+
if ((vizCriteria == null ? void 0 : vizCriteria.criteria) && vizCriteria.criteria.clauses.length === 0 && evaluateGroupOptions.simplifyCriteria) {
|
1804
1817
|
properties == null ? true : delete properties[CANVAS_VIZ_CONTROL_PARAM];
|
1805
1818
|
}
|
1806
1819
|
return result;
|
@@ -3231,6 +3244,7 @@ var CanvasClientError = import_api15.ApiClientError;
|
|
3231
3244
|
createUniformApiEnhancer,
|
3232
3245
|
createVariableReference,
|
3233
3246
|
enhance,
|
3247
|
+
evaluateNodeVisibilityParameter,
|
3234
3248
|
evaluateVisibilityCriteriaGroup,
|
3235
3249
|
evaluateWalkTreeVisibility,
|
3236
3250
|
extractLocales,
|
package/dist/index.mjs
CHANGED
@@ -1631,6 +1631,24 @@ function evaluateCriterion(clause, rootOptions) {
|
|
1631
1631
|
return null;
|
1632
1632
|
}
|
1633
1633
|
|
1634
|
+
// src/enhancement/visibility/evaluateNodeVisibilityParameter.ts
|
1635
|
+
function evaluateNodeVisibilityParameter({
|
1636
|
+
parameter,
|
1637
|
+
...evaluateGroupOptions
|
1638
|
+
}) {
|
1639
|
+
if (parameter == null ? void 0 : parameter.explicitlyHidden) {
|
1640
|
+
return false;
|
1641
|
+
}
|
1642
|
+
if (!(parameter == null ? void 0 : parameter.criteria)) {
|
1643
|
+
return true;
|
1644
|
+
}
|
1645
|
+
const result = evaluateVisibilityCriteriaGroup({
|
1646
|
+
...evaluateGroupOptions,
|
1647
|
+
criteriaGroup: parameter.criteria
|
1648
|
+
});
|
1649
|
+
return result;
|
1650
|
+
}
|
1651
|
+
|
1634
1652
|
// src/enhancement/visibility/types.ts
|
1635
1653
|
var CANVAS_VIZ_CONTROL_PARAM = "$viz";
|
1636
1654
|
|
@@ -1642,17 +1660,11 @@ function evaluateNodeVisibility({
|
|
1642
1660
|
var _a;
|
1643
1661
|
const properties = getPropertiesValue(node);
|
1644
1662
|
const vizCriteria = (_a = properties == null ? void 0 : properties[CANVAS_VIZ_CONTROL_PARAM]) == null ? void 0 : _a.value;
|
1645
|
-
|
1646
|
-
return false;
|
1647
|
-
}
|
1648
|
-
if (!(vizCriteria == null ? void 0 : vizCriteria.criteria)) {
|
1649
|
-
return true;
|
1650
|
-
}
|
1651
|
-
const result = evaluateVisibilityCriteriaGroup({
|
1663
|
+
const result = evaluateNodeVisibilityParameter({
|
1652
1664
|
...evaluateGroupOptions,
|
1653
|
-
|
1665
|
+
parameter: vizCriteria
|
1654
1666
|
});
|
1655
|
-
if (vizCriteria.criteria.clauses.length === 0 && evaluateGroupOptions.simplifyCriteria) {
|
1667
|
+
if ((vizCriteria == null ? void 0 : vizCriteria.criteria) && vizCriteria.criteria.clauses.length === 0 && evaluateGroupOptions.simplifyCriteria) {
|
1656
1668
|
properties == null ? true : delete properties[CANVAS_VIZ_CONTROL_PARAM];
|
1657
1669
|
}
|
1658
1670
|
return result;
|
@@ -3082,6 +3094,7 @@ export {
|
|
3082
3094
|
createUniformApiEnhancer,
|
3083
3095
|
createVariableReference,
|
3084
3096
|
enhance,
|
3097
|
+
evaluateNodeVisibilityParameter,
|
3085
3098
|
evaluateVisibilityCriteriaGroup,
|
3086
3099
|
evaluateWalkTreeVisibility,
|
3087
3100
|
extractLocales,
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/canvas",
|
3
|
-
"version": "19.
|
3
|
+
"version": "19.175.1-alpha.36+4682f8aebe",
|
4
4
|
"description": "Common functionality and types for Uniform Canvas",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"main": "./dist/index.js",
|
@@ -38,8 +38,8 @@
|
|
38
38
|
"pusher-js": "8.2.0"
|
39
39
|
},
|
40
40
|
"dependencies": {
|
41
|
-
"@uniformdev/assets": "19.
|
42
|
-
"@uniformdev/context": "19.
|
41
|
+
"@uniformdev/assets": "19.175.1-alpha.36+4682f8aebe",
|
42
|
+
"@uniformdev/context": "19.175.1-alpha.36+4682f8aebe",
|
43
43
|
"immer": "10.1.1"
|
44
44
|
},
|
45
45
|
"files": [
|
@@ -48,5 +48,5 @@
|
|
48
48
|
"publishConfig": {
|
49
49
|
"access": "public"
|
50
50
|
},
|
51
|
-
"gitHead": "
|
51
|
+
"gitHead": "4682f8aebe6c4e2f22b7f7db182c51ff313d9894"
|
52
52
|
}
|