@uniformdev/canvas 19.177.2-alpha.18 → 19.178.2-alpha.25
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 +5 -802
- package/dist/index.d.ts +5 -802
- package/dist/index.esm.js +6 -2
- package/dist/index.js +5 -1
- package/dist/index.mjs +6 -2
- package/package.json +6 -5
package/dist/index.d.ts
CHANGED
@@ -5,7 +5,7 @@ import { Quirks, StorageCommands, PersonalizedVariant, TestVariant } from '@unif
|
|
5
5
|
import Pusher from 'pusher-js';
|
6
6
|
import { Options as Options$1 } from 'p-retry';
|
7
7
|
import { Options } from 'p-throttle';
|
8
|
-
import {
|
8
|
+
import { RichTextBuiltInFormat as RichTextBuiltInFormat$1, RichTextBuiltInElement as RichTextBuiltInElement$1, ParameterRichTextValue } from '@uniformdev/richtext';
|
9
9
|
|
10
10
|
interface components$8 {
|
11
11
|
schemas: {
|
@@ -443,35 +443,6 @@ interface components$8 {
|
|
443
443
|
* @enum {string}
|
444
444
|
*/
|
445
445
|
OverrideOptions: "yes" | "no";
|
446
|
-
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
447
|
-
AlternativeDataSourceData: {
|
448
|
-
/** @description Base resource URL of the data source. No trailing slash */
|
449
|
-
baseUrl: string;
|
450
|
-
/** @description HTTP headers to pass with requests to the data source */
|
451
|
-
headers?: {
|
452
|
-
key: string;
|
453
|
-
value: string;
|
454
|
-
omitIfEmpty?: boolean;
|
455
|
-
}[];
|
456
|
-
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
457
|
-
parameters?: {
|
458
|
-
key: string;
|
459
|
-
value: string;
|
460
|
-
omitIfEmpty?: boolean;
|
461
|
-
}[];
|
462
|
-
/** @description Variables needed to make calls to the data source */
|
463
|
-
variables?: {
|
464
|
-
[key: string]: components$8["schemas"]["DataVariableDefinition"];
|
465
|
-
};
|
466
|
-
/** @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 */
|
467
|
-
customPublic?: {
|
468
|
-
[key: string]: unknown;
|
469
|
-
};
|
470
|
-
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
|
471
|
-
custom?: {
|
472
|
-
[key: string]: unknown;
|
473
|
-
};
|
474
|
-
};
|
475
446
|
/**
|
476
447
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
477
448
|
* These are created in the UI and shared across a whole project.
|
@@ -508,11 +479,6 @@ interface components$8 {
|
|
508
479
|
localeMapping?: {
|
509
480
|
[key: string]: string;
|
510
481
|
};
|
511
|
-
/**
|
512
|
-
* @description If true, data source will require additional credentials to access unpublished data.
|
513
|
-
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
514
|
-
*/
|
515
|
-
enableUnpublishedMode?: boolean;
|
516
482
|
/** @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 */
|
517
483
|
customPublic?: {
|
518
484
|
[key: string]: unknown;
|
@@ -521,10 +487,6 @@ interface components$8 {
|
|
521
487
|
custom?: {
|
522
488
|
[key: string]: unknown;
|
523
489
|
};
|
524
|
-
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
525
|
-
variants?: {
|
526
|
-
unpublished?: components$8["schemas"]["AlternativeDataSourceData"];
|
527
|
-
};
|
528
490
|
};
|
529
491
|
/** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
|
530
492
|
DataType: {
|
@@ -623,12 +585,6 @@ interface components$8 {
|
|
623
585
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
624
586
|
*/
|
625
587
|
optionalPatternParameter?: boolean;
|
626
|
-
/**
|
627
|
-
* @description Resolve this data resource with draft mode content. TBD
|
628
|
-
*
|
629
|
-
* @enum {string}
|
630
|
-
*/
|
631
|
-
dataSourceVariant?: "unpublished";
|
632
588
|
variables?: components$8["schemas"]["DataResourceVariables"];
|
633
589
|
};
|
634
590
|
/** @description Variable values for a data resource */
|
@@ -1787,35 +1743,6 @@ interface external$i {
|
|
1787
1743
|
* @enum {string}
|
1788
1744
|
*/
|
1789
1745
|
OverrideOptions: "yes" | "no";
|
1790
|
-
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
1791
|
-
AlternativeDataSourceData: {
|
1792
|
-
/** @description Base resource URL of the data source. No trailing slash */
|
1793
|
-
baseUrl: string;
|
1794
|
-
/** @description HTTP headers to pass with requests to the data source */
|
1795
|
-
headers?: {
|
1796
|
-
key: string;
|
1797
|
-
value: string;
|
1798
|
-
omitIfEmpty?: boolean;
|
1799
|
-
}[];
|
1800
|
-
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
1801
|
-
parameters?: {
|
1802
|
-
key: string;
|
1803
|
-
value: string;
|
1804
|
-
omitIfEmpty?: boolean;
|
1805
|
-
}[];
|
1806
|
-
/** @description Variables needed to make calls to the data source */
|
1807
|
-
variables?: {
|
1808
|
-
[key: string]: external$i["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
1809
|
-
};
|
1810
|
-
/** @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 */
|
1811
|
-
customPublic?: {
|
1812
|
-
[key: string]: unknown;
|
1813
|
-
};
|
1814
|
-
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
|
1815
|
-
custom?: {
|
1816
|
-
[key: string]: unknown;
|
1817
|
-
};
|
1818
|
-
};
|
1819
1746
|
/**
|
1820
1747
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
1821
1748
|
* These are created in the UI and shared across a whole project.
|
@@ -1852,11 +1779,6 @@ interface external$i {
|
|
1852
1779
|
localeMapping?: {
|
1853
1780
|
[key: string]: string;
|
1854
1781
|
};
|
1855
|
-
/**
|
1856
|
-
* @description If true, data source will require additional credentials to access unpublished data.
|
1857
|
-
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
1858
|
-
*/
|
1859
|
-
enableUnpublishedMode?: boolean;
|
1860
1782
|
/** @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 */
|
1861
1783
|
customPublic?: {
|
1862
1784
|
[key: string]: unknown;
|
@@ -1865,10 +1787,6 @@ interface external$i {
|
|
1865
1787
|
custom?: {
|
1866
1788
|
[key: string]: unknown;
|
1867
1789
|
};
|
1868
|
-
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
1869
|
-
variants?: {
|
1870
|
-
unpublished?: external$i["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
1871
|
-
};
|
1872
1790
|
};
|
1873
1791
|
/** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
|
1874
1792
|
DataType: {
|
@@ -1967,12 +1885,6 @@ interface external$i {
|
|
1967
1885
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
1968
1886
|
*/
|
1969
1887
|
optionalPatternParameter?: boolean;
|
1970
|
-
/**
|
1971
|
-
* @description Resolve this data resource with draft mode content. TBD
|
1972
|
-
*
|
1973
|
-
* @enum {string}
|
1974
|
-
*/
|
1975
|
-
dataSourceVariant?: "unpublished";
|
1976
1888
|
variables?: external$i["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
1977
1889
|
};
|
1978
1890
|
/** @description Variable values for a data resource */
|
@@ -3130,35 +3042,6 @@ interface external$h {
|
|
3130
3042
|
* @enum {string}
|
3131
3043
|
*/
|
3132
3044
|
OverrideOptions: "yes" | "no";
|
3133
|
-
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
3134
|
-
AlternativeDataSourceData: {
|
3135
|
-
/** @description Base resource URL of the data source. No trailing slash */
|
3136
|
-
baseUrl: string;
|
3137
|
-
/** @description HTTP headers to pass with requests to the data source */
|
3138
|
-
headers?: {
|
3139
|
-
key: string;
|
3140
|
-
value: string;
|
3141
|
-
omitIfEmpty?: boolean;
|
3142
|
-
}[];
|
3143
|
-
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
3144
|
-
parameters?: {
|
3145
|
-
key: string;
|
3146
|
-
value: string;
|
3147
|
-
omitIfEmpty?: boolean;
|
3148
|
-
}[];
|
3149
|
-
/** @description Variables needed to make calls to the data source */
|
3150
|
-
variables?: {
|
3151
|
-
[key: string]: external$h["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
3152
|
-
};
|
3153
|
-
/** @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 */
|
3154
|
-
customPublic?: {
|
3155
|
-
[key: string]: unknown;
|
3156
|
-
};
|
3157
|
-
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
|
3158
|
-
custom?: {
|
3159
|
-
[key: string]: unknown;
|
3160
|
-
};
|
3161
|
-
};
|
3162
3045
|
/**
|
3163
3046
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
3164
3047
|
* These are created in the UI and shared across a whole project.
|
@@ -3195,11 +3078,6 @@ interface external$h {
|
|
3195
3078
|
localeMapping?: {
|
3196
3079
|
[key: string]: string;
|
3197
3080
|
};
|
3198
|
-
/**
|
3199
|
-
* @description If true, data source will require additional credentials to access unpublished data.
|
3200
|
-
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
3201
|
-
*/
|
3202
|
-
enableUnpublishedMode?: boolean;
|
3203
3081
|
/** @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 */
|
3204
3082
|
customPublic?: {
|
3205
3083
|
[key: string]: unknown;
|
@@ -3208,10 +3086,6 @@ interface external$h {
|
|
3208
3086
|
custom?: {
|
3209
3087
|
[key: string]: unknown;
|
3210
3088
|
};
|
3211
|
-
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
3212
|
-
variants?: {
|
3213
|
-
unpublished?: external$h["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
3214
|
-
};
|
3215
3089
|
};
|
3216
3090
|
/** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
|
3217
3091
|
DataType: {
|
@@ -3310,12 +3184,6 @@ interface external$h {
|
|
3310
3184
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
3311
3185
|
*/
|
3312
3186
|
optionalPatternParameter?: boolean;
|
3313
|
-
/**
|
3314
|
-
* @description Resolve this data resource with draft mode content. TBD
|
3315
|
-
*
|
3316
|
-
* @enum {string}
|
3317
|
-
*/
|
3318
|
-
dataSourceVariant?: "unpublished";
|
3319
3187
|
variables?: external$h["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
3320
3188
|
};
|
3321
3189
|
/** @description Variable values for a data resource */
|
@@ -4562,35 +4430,6 @@ interface external$g {
|
|
4562
4430
|
* @enum {string}
|
4563
4431
|
*/
|
4564
4432
|
OverrideOptions: "yes" | "no";
|
4565
|
-
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
4566
|
-
AlternativeDataSourceData: {
|
4567
|
-
/** @description Base resource URL of the data source. No trailing slash */
|
4568
|
-
baseUrl: string;
|
4569
|
-
/** @description HTTP headers to pass with requests to the data source */
|
4570
|
-
headers?: {
|
4571
|
-
key: string;
|
4572
|
-
value: string;
|
4573
|
-
omitIfEmpty?: boolean;
|
4574
|
-
}[];
|
4575
|
-
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
4576
|
-
parameters?: {
|
4577
|
-
key: string;
|
4578
|
-
value: string;
|
4579
|
-
omitIfEmpty?: boolean;
|
4580
|
-
}[];
|
4581
|
-
/** @description Variables needed to make calls to the data source */
|
4582
|
-
variables?: {
|
4583
|
-
[key: string]: external$g["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
4584
|
-
};
|
4585
|
-
/** @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 */
|
4586
|
-
customPublic?: {
|
4587
|
-
[key: string]: unknown;
|
4588
|
-
};
|
4589
|
-
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
|
4590
|
-
custom?: {
|
4591
|
-
[key: string]: unknown;
|
4592
|
-
};
|
4593
|
-
};
|
4594
4433
|
/**
|
4595
4434
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
4596
4435
|
* These are created in the UI and shared across a whole project.
|
@@ -4627,11 +4466,6 @@ interface external$g {
|
|
4627
4466
|
localeMapping?: {
|
4628
4467
|
[key: string]: string;
|
4629
4468
|
};
|
4630
|
-
/**
|
4631
|
-
* @description If true, data source will require additional credentials to access unpublished data.
|
4632
|
-
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
4633
|
-
*/
|
4634
|
-
enableUnpublishedMode?: boolean;
|
4635
4469
|
/** @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 */
|
4636
4470
|
customPublic?: {
|
4637
4471
|
[key: string]: unknown;
|
@@ -4640,10 +4474,6 @@ interface external$g {
|
|
4640
4474
|
custom?: {
|
4641
4475
|
[key: string]: unknown;
|
4642
4476
|
};
|
4643
|
-
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
4644
|
-
variants?: {
|
4645
|
-
unpublished?: external$g["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
4646
|
-
};
|
4647
4477
|
};
|
4648
4478
|
/** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
|
4649
4479
|
DataType: {
|
@@ -4742,12 +4572,6 @@ interface external$g {
|
|
4742
4572
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
4743
4573
|
*/
|
4744
4574
|
optionalPatternParameter?: boolean;
|
4745
|
-
/**
|
4746
|
-
* @description Resolve this data resource with draft mode content. TBD
|
4747
|
-
*
|
4748
|
-
* @enum {string}
|
4749
|
-
*/
|
4750
|
-
dataSourceVariant?: "unpublished";
|
4751
4575
|
variables?: external$g["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
4752
4576
|
};
|
4753
4577
|
/** @description Variable values for a data resource */
|
@@ -6328,35 +6152,6 @@ interface external$f {
|
|
6328
6152
|
* @enum {string}
|
6329
6153
|
*/
|
6330
6154
|
OverrideOptions: "yes" | "no";
|
6331
|
-
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
6332
|
-
AlternativeDataSourceData: {
|
6333
|
-
/** @description Base resource URL of the data source. No trailing slash */
|
6334
|
-
baseUrl: string;
|
6335
|
-
/** @description HTTP headers to pass with requests to the data source */
|
6336
|
-
headers?: {
|
6337
|
-
key: string;
|
6338
|
-
value: string;
|
6339
|
-
omitIfEmpty?: boolean;
|
6340
|
-
}[];
|
6341
|
-
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
6342
|
-
parameters?: {
|
6343
|
-
key: string;
|
6344
|
-
value: string;
|
6345
|
-
omitIfEmpty?: boolean;
|
6346
|
-
}[];
|
6347
|
-
/** @description Variables needed to make calls to the data source */
|
6348
|
-
variables?: {
|
6349
|
-
[key: string]: external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
6350
|
-
};
|
6351
|
-
/** @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 */
|
6352
|
-
customPublic?: {
|
6353
|
-
[key: string]: unknown;
|
6354
|
-
};
|
6355
|
-
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
|
6356
|
-
custom?: {
|
6357
|
-
[key: string]: unknown;
|
6358
|
-
};
|
6359
|
-
};
|
6360
6155
|
/**
|
6361
6156
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
6362
6157
|
* These are created in the UI and shared across a whole project.
|
@@ -6393,11 +6188,6 @@ interface external$f {
|
|
6393
6188
|
localeMapping?: {
|
6394
6189
|
[key: string]: string;
|
6395
6190
|
};
|
6396
|
-
/**
|
6397
|
-
* @description If true, data source will require additional credentials to access unpublished data.
|
6398
|
-
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
6399
|
-
*/
|
6400
|
-
enableUnpublishedMode?: boolean;
|
6401
6191
|
/** @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 */
|
6402
6192
|
customPublic?: {
|
6403
6193
|
[key: string]: unknown;
|
@@ -6406,10 +6196,6 @@ interface external$f {
|
|
6406
6196
|
custom?: {
|
6407
6197
|
[key: string]: unknown;
|
6408
6198
|
};
|
6409
|
-
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
6410
|
-
variants?: {
|
6411
|
-
unpublished?: external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
6412
|
-
};
|
6413
6199
|
};
|
6414
6200
|
/** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
|
6415
6201
|
DataType: {
|
@@ -6508,12 +6294,6 @@ interface external$f {
|
|
6508
6294
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
6509
6295
|
*/
|
6510
6296
|
optionalPatternParameter?: boolean;
|
6511
|
-
/**
|
6512
|
-
* @description Resolve this data resource with draft mode content. TBD
|
6513
|
-
*
|
6514
|
-
* @enum {string}
|
6515
|
-
*/
|
6516
|
-
dataSourceVariant?: "unpublished";
|
6517
6297
|
variables?: external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
6518
6298
|
};
|
6519
6299
|
/** @description Variable values for a data resource */
|
@@ -7601,35 +7381,6 @@ interface external$e {
|
|
7601
7381
|
* @enum {string}
|
7602
7382
|
*/
|
7603
7383
|
OverrideOptions: "yes" | "no";
|
7604
|
-
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
7605
|
-
AlternativeDataSourceData: {
|
7606
|
-
/** @description Base resource URL of the data source. No trailing slash */
|
7607
|
-
baseUrl: string;
|
7608
|
-
/** @description HTTP headers to pass with requests to the data source */
|
7609
|
-
headers?: {
|
7610
|
-
key: string;
|
7611
|
-
value: string;
|
7612
|
-
omitIfEmpty?: boolean;
|
7613
|
-
}[];
|
7614
|
-
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
7615
|
-
parameters?: {
|
7616
|
-
key: string;
|
7617
|
-
value: string;
|
7618
|
-
omitIfEmpty?: boolean;
|
7619
|
-
}[];
|
7620
|
-
/** @description Variables needed to make calls to the data source */
|
7621
|
-
variables?: {
|
7622
|
-
[key: string]: external$e["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
7623
|
-
};
|
7624
|
-
/** @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 */
|
7625
|
-
customPublic?: {
|
7626
|
-
[key: string]: unknown;
|
7627
|
-
};
|
7628
|
-
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
|
7629
|
-
custom?: {
|
7630
|
-
[key: string]: unknown;
|
7631
|
-
};
|
7632
|
-
};
|
7633
7384
|
/**
|
7634
7385
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
7635
7386
|
* These are created in the UI and shared across a whole project.
|
@@ -7666,11 +7417,6 @@ interface external$e {
|
|
7666
7417
|
localeMapping?: {
|
7667
7418
|
[key: string]: string;
|
7668
7419
|
};
|
7669
|
-
/**
|
7670
|
-
* @description If true, data source will require additional credentials to access unpublished data.
|
7671
|
-
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
7672
|
-
*/
|
7673
|
-
enableUnpublishedMode?: boolean;
|
7674
7420
|
/** @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 */
|
7675
7421
|
customPublic?: {
|
7676
7422
|
[key: string]: unknown;
|
@@ -7679,10 +7425,6 @@ interface external$e {
|
|
7679
7425
|
custom?: {
|
7680
7426
|
[key: string]: unknown;
|
7681
7427
|
};
|
7682
|
-
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
7683
|
-
variants?: {
|
7684
|
-
unpublished?: external$e["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
7685
|
-
};
|
7686
7428
|
};
|
7687
7429
|
/** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
|
7688
7430
|
DataType: {
|
@@ -7781,12 +7523,6 @@ interface external$e {
|
|
7781
7523
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
7782
7524
|
*/
|
7783
7525
|
optionalPatternParameter?: boolean;
|
7784
|
-
/**
|
7785
|
-
* @description Resolve this data resource with draft mode content. TBD
|
7786
|
-
*
|
7787
|
-
* @enum {string}
|
7788
|
-
*/
|
7789
|
-
dataSourceVariant?: "unpublished";
|
7790
7526
|
variables?: external$e["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
7791
7527
|
};
|
7792
7528
|
/** @description Variable values for a data resource */
|
@@ -8931,35 +8667,6 @@ interface external$d {
|
|
8931
8667
|
* @enum {string}
|
8932
8668
|
*/
|
8933
8669
|
OverrideOptions: "yes" | "no";
|
8934
|
-
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
8935
|
-
AlternativeDataSourceData: {
|
8936
|
-
/** @description Base resource URL of the data source. No trailing slash */
|
8937
|
-
baseUrl: string;
|
8938
|
-
/** @description HTTP headers to pass with requests to the data source */
|
8939
|
-
headers?: {
|
8940
|
-
key: string;
|
8941
|
-
value: string;
|
8942
|
-
omitIfEmpty?: boolean;
|
8943
|
-
}[];
|
8944
|
-
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
8945
|
-
parameters?: {
|
8946
|
-
key: string;
|
8947
|
-
value: string;
|
8948
|
-
omitIfEmpty?: boolean;
|
8949
|
-
}[];
|
8950
|
-
/** @description Variables needed to make calls to the data source */
|
8951
|
-
variables?: {
|
8952
|
-
[key: string]: external$d["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
8953
|
-
};
|
8954
|
-
/** @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 */
|
8955
|
-
customPublic?: {
|
8956
|
-
[key: string]: unknown;
|
8957
|
-
};
|
8958
|
-
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
|
8959
|
-
custom?: {
|
8960
|
-
[key: string]: unknown;
|
8961
|
-
};
|
8962
|
-
};
|
8963
8670
|
/**
|
8964
8671
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
8965
8672
|
* These are created in the UI and shared across a whole project.
|
@@ -8996,11 +8703,6 @@ interface external$d {
|
|
8996
8703
|
localeMapping?: {
|
8997
8704
|
[key: string]: string;
|
8998
8705
|
};
|
8999
|
-
/**
|
9000
|
-
* @description If true, data source will require additional credentials to access unpublished data.
|
9001
|
-
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
9002
|
-
*/
|
9003
|
-
enableUnpublishedMode?: boolean;
|
9004
8706
|
/** @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 */
|
9005
8707
|
customPublic?: {
|
9006
8708
|
[key: string]: unknown;
|
@@ -9009,10 +8711,6 @@ interface external$d {
|
|
9009
8711
|
custom?: {
|
9010
8712
|
[key: string]: unknown;
|
9011
8713
|
};
|
9012
|
-
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
9013
|
-
variants?: {
|
9014
|
-
unpublished?: external$d["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
9015
|
-
};
|
9016
8714
|
};
|
9017
8715
|
/** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
|
9018
8716
|
DataType: {
|
@@ -9111,12 +8809,6 @@ interface external$d {
|
|
9111
8809
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
9112
8810
|
*/
|
9113
8811
|
optionalPatternParameter?: boolean;
|
9114
|
-
/**
|
9115
|
-
* @description Resolve this data resource with draft mode content. TBD
|
9116
|
-
*
|
9117
|
-
* @enum {string}
|
9118
|
-
*/
|
9119
|
-
dataSourceVariant?: "unpublished";
|
9120
8812
|
variables?: external$d["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
9121
8813
|
};
|
9122
8814
|
/** @description Variable values for a data resource */
|
@@ -10198,35 +9890,6 @@ interface external$c {
|
|
10198
9890
|
* @enum {string}
|
10199
9891
|
*/
|
10200
9892
|
OverrideOptions: "yes" | "no";
|
10201
|
-
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
10202
|
-
AlternativeDataSourceData: {
|
10203
|
-
/** @description Base resource URL of the data source. No trailing slash */
|
10204
|
-
baseUrl: string;
|
10205
|
-
/** @description HTTP headers to pass with requests to the data source */
|
10206
|
-
headers?: {
|
10207
|
-
key: string;
|
10208
|
-
value: string;
|
10209
|
-
omitIfEmpty?: boolean;
|
10210
|
-
}[];
|
10211
|
-
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
10212
|
-
parameters?: {
|
10213
|
-
key: string;
|
10214
|
-
value: string;
|
10215
|
-
omitIfEmpty?: boolean;
|
10216
|
-
}[];
|
10217
|
-
/** @description Variables needed to make calls to the data source */
|
10218
|
-
variables?: {
|
10219
|
-
[key: string]: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
10220
|
-
};
|
10221
|
-
/** @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 */
|
10222
|
-
customPublic?: {
|
10223
|
-
[key: string]: unknown;
|
10224
|
-
};
|
10225
|
-
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
|
10226
|
-
custom?: {
|
10227
|
-
[key: string]: unknown;
|
10228
|
-
};
|
10229
|
-
};
|
10230
9893
|
/**
|
10231
9894
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
10232
9895
|
* These are created in the UI and shared across a whole project.
|
@@ -10263,11 +9926,6 @@ interface external$c {
|
|
10263
9926
|
localeMapping?: {
|
10264
9927
|
[key: string]: string;
|
10265
9928
|
};
|
10266
|
-
/**
|
10267
|
-
* @description If true, data source will require additional credentials to access unpublished data.
|
10268
|
-
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
10269
|
-
*/
|
10270
|
-
enableUnpublishedMode?: boolean;
|
10271
9929
|
/** @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 */
|
10272
9930
|
customPublic?: {
|
10273
9931
|
[key: string]: unknown;
|
@@ -10276,10 +9934,6 @@ interface external$c {
|
|
10276
9934
|
custom?: {
|
10277
9935
|
[key: string]: unknown;
|
10278
9936
|
};
|
10279
|
-
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
10280
|
-
variants?: {
|
10281
|
-
unpublished?: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
10282
|
-
};
|
10283
9937
|
};
|
10284
9938
|
/** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
|
10285
9939
|
DataType: {
|
@@ -10378,12 +10032,6 @@ interface external$c {
|
|
10378
10032
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
10379
10033
|
*/
|
10380
10034
|
optionalPatternParameter?: boolean;
|
10381
|
-
/**
|
10382
|
-
* @description Resolve this data resource with draft mode content. TBD
|
10383
|
-
*
|
10384
|
-
* @enum {string}
|
10385
|
-
*/
|
10386
|
-
dataSourceVariant?: "unpublished";
|
10387
10035
|
variables?: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
10388
10036
|
};
|
10389
10037
|
/** @description Variable values for a data resource */
|
@@ -11500,35 +11148,6 @@ interface external$b {
|
|
11500
11148
|
* @enum {string}
|
11501
11149
|
*/
|
11502
11150
|
OverrideOptions: "yes" | "no";
|
11503
|
-
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
11504
|
-
AlternativeDataSourceData: {
|
11505
|
-
/** @description Base resource URL of the data source. No trailing slash */
|
11506
|
-
baseUrl: string;
|
11507
|
-
/** @description HTTP headers to pass with requests to the data source */
|
11508
|
-
headers?: {
|
11509
|
-
key: string;
|
11510
|
-
value: string;
|
11511
|
-
omitIfEmpty?: boolean;
|
11512
|
-
}[];
|
11513
|
-
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
11514
|
-
parameters?: {
|
11515
|
-
key: string;
|
11516
|
-
value: string;
|
11517
|
-
omitIfEmpty?: boolean;
|
11518
|
-
}[];
|
11519
|
-
/** @description Variables needed to make calls to the data source */
|
11520
|
-
variables?: {
|
11521
|
-
[key: string]: external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
11522
|
-
};
|
11523
|
-
/** @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 */
|
11524
|
-
customPublic?: {
|
11525
|
-
[key: string]: unknown;
|
11526
|
-
};
|
11527
|
-
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
|
11528
|
-
custom?: {
|
11529
|
-
[key: string]: unknown;
|
11530
|
-
};
|
11531
|
-
};
|
11532
11151
|
/**
|
11533
11152
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
11534
11153
|
* These are created in the UI and shared across a whole project.
|
@@ -11565,11 +11184,6 @@ interface external$b {
|
|
11565
11184
|
localeMapping?: {
|
11566
11185
|
[key: string]: string;
|
11567
11186
|
};
|
11568
|
-
/**
|
11569
|
-
* @description If true, data source will require additional credentials to access unpublished data.
|
11570
|
-
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
11571
|
-
*/
|
11572
|
-
enableUnpublishedMode?: boolean;
|
11573
11187
|
/** @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 */
|
11574
11188
|
customPublic?: {
|
11575
11189
|
[key: string]: unknown;
|
@@ -11578,10 +11192,6 @@ interface external$b {
|
|
11578
11192
|
custom?: {
|
11579
11193
|
[key: string]: unknown;
|
11580
11194
|
};
|
11581
|
-
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
11582
|
-
variants?: {
|
11583
|
-
unpublished?: external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
11584
|
-
};
|
11585
11195
|
};
|
11586
11196
|
/** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
|
11587
11197
|
DataType: {
|
@@ -11680,12 +11290,6 @@ interface external$b {
|
|
11680
11290
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
11681
11291
|
*/
|
11682
11292
|
optionalPatternParameter?: boolean;
|
11683
|
-
/**
|
11684
|
-
* @description Resolve this data resource with draft mode content. TBD
|
11685
|
-
*
|
11686
|
-
* @enum {string}
|
11687
|
-
*/
|
11688
|
-
dataSourceVariant?: "unpublished";
|
11689
11293
|
variables?: external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
11690
11294
|
};
|
11691
11295
|
/** @description Variable values for a data resource */
|
@@ -12802,35 +12406,6 @@ interface external$a {
|
|
12802
12406
|
* @enum {string}
|
12803
12407
|
*/
|
12804
12408
|
OverrideOptions: "yes" | "no";
|
12805
|
-
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
12806
|
-
AlternativeDataSourceData: {
|
12807
|
-
/** @description Base resource URL of the data source. No trailing slash */
|
12808
|
-
baseUrl: string;
|
12809
|
-
/** @description HTTP headers to pass with requests to the data source */
|
12810
|
-
headers?: {
|
12811
|
-
key: string;
|
12812
|
-
value: string;
|
12813
|
-
omitIfEmpty?: boolean;
|
12814
|
-
}[];
|
12815
|
-
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
12816
|
-
parameters?: {
|
12817
|
-
key: string;
|
12818
|
-
value: string;
|
12819
|
-
omitIfEmpty?: boolean;
|
12820
|
-
}[];
|
12821
|
-
/** @description Variables needed to make calls to the data source */
|
12822
|
-
variables?: {
|
12823
|
-
[key: string]: external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
12824
|
-
};
|
12825
|
-
/** @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 */
|
12826
|
-
customPublic?: {
|
12827
|
-
[key: string]: unknown;
|
12828
|
-
};
|
12829
|
-
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
|
12830
|
-
custom?: {
|
12831
|
-
[key: string]: unknown;
|
12832
|
-
};
|
12833
|
-
};
|
12834
12409
|
/**
|
12835
12410
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
12836
12411
|
* These are created in the UI and shared across a whole project.
|
@@ -12867,11 +12442,6 @@ interface external$a {
|
|
12867
12442
|
localeMapping?: {
|
12868
12443
|
[key: string]: string;
|
12869
12444
|
};
|
12870
|
-
/**
|
12871
|
-
* @description If true, data source will require additional credentials to access unpublished data.
|
12872
|
-
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
12873
|
-
*/
|
12874
|
-
enableUnpublishedMode?: boolean;
|
12875
12445
|
/** @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 */
|
12876
12446
|
customPublic?: {
|
12877
12447
|
[key: string]: unknown;
|
@@ -12880,10 +12450,6 @@ interface external$a {
|
|
12880
12450
|
custom?: {
|
12881
12451
|
[key: string]: unknown;
|
12882
12452
|
};
|
12883
|
-
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
12884
|
-
variants?: {
|
12885
|
-
unpublished?: external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
12886
|
-
};
|
12887
12453
|
};
|
12888
12454
|
/** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
|
12889
12455
|
DataType: {
|
@@ -12982,12 +12548,6 @@ interface external$a {
|
|
12982
12548
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
12983
12549
|
*/
|
12984
12550
|
optionalPatternParameter?: boolean;
|
12985
|
-
/**
|
12986
|
-
* @description Resolve this data resource with draft mode content. TBD
|
12987
|
-
*
|
12988
|
-
* @enum {string}
|
12989
|
-
*/
|
12990
|
-
dataSourceVariant?: "unpublished";
|
12991
12551
|
variables?: external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
12992
12552
|
};
|
12993
12553
|
/** @description Variable values for a data resource */
|
@@ -13589,8 +13149,6 @@ type DataType = components$8['schemas']['DataType'];
|
|
13589
13149
|
type DataSource = components$8['schemas']['DataSource'];
|
13590
13150
|
type DataVariableDefinition = components$8['schemas']['DataVariableDefinition'];
|
13591
13151
|
type Prompt = components$8['schemas']['Prompt'];
|
13592
|
-
type DataSourceVariantsKeys = keyof NonNullable<DataSource['variants']>;
|
13593
|
-
type DataSourceVariantData = NonNullable<DataSource['variants']>['unpublished'];
|
13594
13152
|
|
13595
13153
|
/**
|
13596
13154
|
* This file was auto-generated by openapi-typescript.
|
@@ -14855,35 +14413,6 @@ interface external$8 {
|
|
14855
14413
|
* @enum {string}
|
14856
14414
|
*/
|
14857
14415
|
OverrideOptions: "yes" | "no";
|
14858
|
-
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
14859
|
-
AlternativeDataSourceData: {
|
14860
|
-
/** @description Base resource URL of the data source. No trailing slash */
|
14861
|
-
baseUrl: string;
|
14862
|
-
/** @description HTTP headers to pass with requests to the data source */
|
14863
|
-
headers?: {
|
14864
|
-
key: string;
|
14865
|
-
value: string;
|
14866
|
-
omitIfEmpty?: boolean;
|
14867
|
-
}[];
|
14868
|
-
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
14869
|
-
parameters?: {
|
14870
|
-
key: string;
|
14871
|
-
value: string;
|
14872
|
-
omitIfEmpty?: boolean;
|
14873
|
-
}[];
|
14874
|
-
/** @description Variables needed to make calls to the data source */
|
14875
|
-
variables?: {
|
14876
|
-
[key: string]: external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
14877
|
-
};
|
14878
|
-
/** @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 */
|
14879
|
-
customPublic?: {
|
14880
|
-
[key: string]: unknown;
|
14881
|
-
};
|
14882
|
-
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
|
14883
|
-
custom?: {
|
14884
|
-
[key: string]: unknown;
|
14885
|
-
};
|
14886
|
-
};
|
14887
14416
|
/**
|
14888
14417
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
14889
14418
|
* These are created in the UI and shared across a whole project.
|
@@ -14920,11 +14449,6 @@ interface external$8 {
|
|
14920
14449
|
localeMapping?: {
|
14921
14450
|
[key: string]: string;
|
14922
14451
|
};
|
14923
|
-
/**
|
14924
|
-
* @description If true, data source will require additional credentials to access unpublished data.
|
14925
|
-
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
14926
|
-
*/
|
14927
|
-
enableUnpublishedMode?: boolean;
|
14928
14452
|
/** @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 */
|
14929
14453
|
customPublic?: {
|
14930
14454
|
[key: string]: unknown;
|
@@ -14933,10 +14457,6 @@ interface external$8 {
|
|
14933
14457
|
custom?: {
|
14934
14458
|
[key: string]: unknown;
|
14935
14459
|
};
|
14936
|
-
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
14937
|
-
variants?: {
|
14938
|
-
unpublished?: external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
14939
|
-
};
|
14940
14460
|
};
|
14941
14461
|
/** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
|
14942
14462
|
DataType: {
|
@@ -15035,12 +14555,6 @@ interface external$8 {
|
|
15035
14555
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
15036
14556
|
*/
|
15037
14557
|
optionalPatternParameter?: boolean;
|
15038
|
-
/**
|
15039
|
-
* @description Resolve this data resource with draft mode content. TBD
|
15040
|
-
*
|
15041
|
-
* @enum {string}
|
15042
|
-
*/
|
15043
|
-
dataSourceVariant?: "unpublished";
|
15044
14558
|
variables?: external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
15045
14559
|
};
|
15046
14560
|
/** @description Variable values for a data resource */
|
@@ -16128,35 +15642,6 @@ interface external$7 {
|
|
16128
15642
|
* @enum {string}
|
16129
15643
|
*/
|
16130
15644
|
OverrideOptions: "yes" | "no";
|
16131
|
-
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
16132
|
-
AlternativeDataSourceData: {
|
16133
|
-
/** @description Base resource URL of the data source. No trailing slash */
|
16134
|
-
baseUrl: string;
|
16135
|
-
/** @description HTTP headers to pass with requests to the data source */
|
16136
|
-
headers?: {
|
16137
|
-
key: string;
|
16138
|
-
value: string;
|
16139
|
-
omitIfEmpty?: boolean;
|
16140
|
-
}[];
|
16141
|
-
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
16142
|
-
parameters?: {
|
16143
|
-
key: string;
|
16144
|
-
value: string;
|
16145
|
-
omitIfEmpty?: boolean;
|
16146
|
-
}[];
|
16147
|
-
/** @description Variables needed to make calls to the data source */
|
16148
|
-
variables?: {
|
16149
|
-
[key: string]: external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
16150
|
-
};
|
16151
|
-
/** @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 */
|
16152
|
-
customPublic?: {
|
16153
|
-
[key: string]: unknown;
|
16154
|
-
};
|
16155
|
-
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
|
16156
|
-
custom?: {
|
16157
|
-
[key: string]: unknown;
|
16158
|
-
};
|
16159
|
-
};
|
16160
15645
|
/**
|
16161
15646
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
16162
15647
|
* These are created in the UI and shared across a whole project.
|
@@ -16193,11 +15678,6 @@ interface external$7 {
|
|
16193
15678
|
localeMapping?: {
|
16194
15679
|
[key: string]: string;
|
16195
15680
|
};
|
16196
|
-
/**
|
16197
|
-
* @description If true, data source will require additional credentials to access unpublished data.
|
16198
|
-
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
16199
|
-
*/
|
16200
|
-
enableUnpublishedMode?: boolean;
|
16201
15681
|
/** @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 */
|
16202
15682
|
customPublic?: {
|
16203
15683
|
[key: string]: unknown;
|
@@ -16206,10 +15686,6 @@ interface external$7 {
|
|
16206
15686
|
custom?: {
|
16207
15687
|
[key: string]: unknown;
|
16208
15688
|
};
|
16209
|
-
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
16210
|
-
variants?: {
|
16211
|
-
unpublished?: external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
16212
|
-
};
|
16213
15689
|
};
|
16214
15690
|
/** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
|
16215
15691
|
DataType: {
|
@@ -16308,12 +15784,6 @@ interface external$7 {
|
|
16308
15784
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
16309
15785
|
*/
|
16310
15786
|
optionalPatternParameter?: boolean;
|
16311
|
-
/**
|
16312
|
-
* @description Resolve this data resource with draft mode content. TBD
|
16313
|
-
*
|
16314
|
-
* @enum {string}
|
16315
|
-
*/
|
16316
|
-
dataSourceVariant?: "unpublished";
|
16317
15787
|
variables?: external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
16318
15788
|
};
|
16319
15789
|
/** @description Variable values for a data resource */
|
@@ -17541,35 +17011,6 @@ interface external$6 {
|
|
17541
17011
|
* @enum {string}
|
17542
17012
|
*/
|
17543
17013
|
OverrideOptions: "yes" | "no";
|
17544
|
-
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
17545
|
-
AlternativeDataSourceData: {
|
17546
|
-
/** @description Base resource URL of the data source. No trailing slash */
|
17547
|
-
baseUrl: string;
|
17548
|
-
/** @description HTTP headers to pass with requests to the data source */
|
17549
|
-
headers?: {
|
17550
|
-
key: string;
|
17551
|
-
value: string;
|
17552
|
-
omitIfEmpty?: boolean;
|
17553
|
-
}[];
|
17554
|
-
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
17555
|
-
parameters?: {
|
17556
|
-
key: string;
|
17557
|
-
value: string;
|
17558
|
-
omitIfEmpty?: boolean;
|
17559
|
-
}[];
|
17560
|
-
/** @description Variables needed to make calls to the data source */
|
17561
|
-
variables?: {
|
17562
|
-
[key: string]: external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
17563
|
-
};
|
17564
|
-
/** @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 */
|
17565
|
-
customPublic?: {
|
17566
|
-
[key: string]: unknown;
|
17567
|
-
};
|
17568
|
-
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
|
17569
|
-
custom?: {
|
17570
|
-
[key: string]: unknown;
|
17571
|
-
};
|
17572
|
-
};
|
17573
17014
|
/**
|
17574
17015
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
17575
17016
|
* These are created in the UI and shared across a whole project.
|
@@ -17606,11 +17047,6 @@ interface external$6 {
|
|
17606
17047
|
localeMapping?: {
|
17607
17048
|
[key: string]: string;
|
17608
17049
|
};
|
17609
|
-
/**
|
17610
|
-
* @description If true, data source will require additional credentials to access unpublished data.
|
17611
|
-
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
17612
|
-
*/
|
17613
|
-
enableUnpublishedMode?: boolean;
|
17614
17050
|
/** @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 */
|
17615
17051
|
customPublic?: {
|
17616
17052
|
[key: string]: unknown;
|
@@ -17619,10 +17055,6 @@ interface external$6 {
|
|
17619
17055
|
custom?: {
|
17620
17056
|
[key: string]: unknown;
|
17621
17057
|
};
|
17622
|
-
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
17623
|
-
variants?: {
|
17624
|
-
unpublished?: external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
17625
|
-
};
|
17626
17058
|
};
|
17627
17059
|
/** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
|
17628
17060
|
DataType: {
|
@@ -17721,12 +17153,6 @@ interface external$6 {
|
|
17721
17153
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
17722
17154
|
*/
|
17723
17155
|
optionalPatternParameter?: boolean;
|
17724
|
-
/**
|
17725
|
-
* @description Resolve this data resource with draft mode content. TBD
|
17726
|
-
*
|
17727
|
-
* @enum {string}
|
17728
|
-
*/
|
17729
|
-
dataSourceVariant?: "unpublished";
|
17730
17156
|
variables?: external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
17731
17157
|
};
|
17732
17158
|
/** @description Variable values for a data resource */
|
@@ -19687,8 +19113,6 @@ interface external$6 {
|
|
19687
19113
|
* 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
|
19688
19114
|
*/
|
19689
19115
|
releaseId?: external$6["../../../lambda/functions/v1-route.swagger.yml"]["components"]["parameters"]["releaseId"];
|
19690
|
-
/** TBD */
|
19691
|
-
dataResourcesEnvironment?: external$6["../../../lambda/functions/v1-route.swagger.yml"]["components"]["parameters"]["dataResourcesEnvironment"];
|
19692
19116
|
};
|
19693
19117
|
};
|
19694
19118
|
responses: {
|
@@ -19734,12 +19158,6 @@ interface external$6 {
|
|
19734
19158
|
/** @description The route that was matched in the project map */
|
19735
19159
|
matchedRoute: string;
|
19736
19160
|
dynamicInputs?: external$6["../../../lambda/functions/v1-route.swagger.yml"]["components"]["schemas"]["RouteDynamicInputs"];
|
19737
|
-
/**
|
19738
|
-
* @description TBD
|
19739
|
-
*
|
19740
|
-
* @enum {string}
|
19741
|
-
*/
|
19742
|
-
dataResourcesEnvironment?: "unpublishedData";
|
19743
19161
|
/** @enum {string} */
|
19744
19162
|
type: "composition";
|
19745
19163
|
compositionApiResponse: external$6["../../../lambda/functions/v1-canvas.swagger.yml"]["components"]["schemas"]["CompositionApiResponse"];
|
@@ -19820,8 +19238,6 @@ interface external$6 {
|
|
19820
19238
|
* 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
|
19821
19239
|
*/
|
19822
19240
|
releaseId: string;
|
19823
|
-
/** @description TBD */
|
19824
|
-
dataResourcesEnvironment: "unpublishedData";
|
19825
19241
|
};
|
19826
19242
|
};
|
19827
19243
|
operations: {};
|
@@ -19897,8 +19313,6 @@ interface paths$5 {
|
|
19897
19313
|
* 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
|
19898
19314
|
*/
|
19899
19315
|
releaseId?: components$3["parameters"]["releaseId"];
|
19900
|
-
/** TBD */
|
19901
|
-
dataResourcesEnvironment?: components$3["parameters"]["dataResourcesEnvironment"];
|
19902
19316
|
};
|
19903
19317
|
};
|
19904
19318
|
responses: {
|
@@ -19944,12 +19358,6 @@ interface components$3 {
|
|
19944
19358
|
/** @description The route that was matched in the project map */
|
19945
19359
|
matchedRoute: string;
|
19946
19360
|
dynamicInputs?: components$3["schemas"]["RouteDynamicInputs"];
|
19947
|
-
/**
|
19948
|
-
* @description TBD
|
19949
|
-
*
|
19950
|
-
* @enum {string}
|
19951
|
-
*/
|
19952
|
-
dataResourcesEnvironment?: "unpublishedData";
|
19953
19361
|
/** @enum {string} */
|
19954
19362
|
type: "composition";
|
19955
19363
|
compositionApiResponse: external$5["v1-canvas.swagger.yml"]["components"]["schemas"]["CompositionApiResponse"];
|
@@ -20030,8 +19438,6 @@ interface components$3 {
|
|
20030
19438
|
* 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
|
20031
19439
|
*/
|
20032
19440
|
releaseId: string;
|
20033
|
-
/** @description TBD */
|
20034
|
-
dataResourcesEnvironment: "unpublishedData";
|
20035
19441
|
};
|
20036
19442
|
}
|
20037
19443
|
interface external$5 {
|
@@ -20515,35 +19921,6 @@ interface external$5 {
|
|
20515
19921
|
* @enum {string}
|
20516
19922
|
*/
|
20517
19923
|
OverrideOptions: "yes" | "no";
|
20518
|
-
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
20519
|
-
AlternativeDataSourceData: {
|
20520
|
-
/** @description Base resource URL of the data source. No trailing slash */
|
20521
|
-
baseUrl: string;
|
20522
|
-
/** @description HTTP headers to pass with requests to the data source */
|
20523
|
-
headers?: {
|
20524
|
-
key: string;
|
20525
|
-
value: string;
|
20526
|
-
omitIfEmpty?: boolean;
|
20527
|
-
}[];
|
20528
|
-
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
20529
|
-
parameters?: {
|
20530
|
-
key: string;
|
20531
|
-
value: string;
|
20532
|
-
omitIfEmpty?: boolean;
|
20533
|
-
}[];
|
20534
|
-
/** @description Variables needed to make calls to the data source */
|
20535
|
-
variables?: {
|
20536
|
-
[key: string]: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
20537
|
-
};
|
20538
|
-
/** @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 */
|
20539
|
-
customPublic?: {
|
20540
|
-
[key: string]: unknown;
|
20541
|
-
};
|
20542
|
-
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
|
20543
|
-
custom?: {
|
20544
|
-
[key: string]: unknown;
|
20545
|
-
};
|
20546
|
-
};
|
20547
19924
|
/**
|
20548
19925
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
20549
19926
|
* These are created in the UI and shared across a whole project.
|
@@ -20580,11 +19957,6 @@ interface external$5 {
|
|
20580
19957
|
localeMapping?: {
|
20581
19958
|
[key: string]: string;
|
20582
19959
|
};
|
20583
|
-
/**
|
20584
|
-
* @description If true, data source will require additional credentials to access unpublished data.
|
20585
|
-
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
20586
|
-
*/
|
20587
|
-
enableUnpublishedMode?: boolean;
|
20588
19960
|
/** @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 */
|
20589
19961
|
customPublic?: {
|
20590
19962
|
[key: string]: unknown;
|
@@ -20593,10 +19965,6 @@ interface external$5 {
|
|
20593
19965
|
custom?: {
|
20594
19966
|
[key: string]: unknown;
|
20595
19967
|
};
|
20596
|
-
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
20597
|
-
variants?: {
|
20598
|
-
unpublished?: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
20599
|
-
};
|
20600
19968
|
};
|
20601
19969
|
/** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
|
20602
19970
|
DataType: {
|
@@ -20695,12 +20063,6 @@ interface external$5 {
|
|
20695
20063
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
20696
20064
|
*/
|
20697
20065
|
optionalPatternParameter?: boolean;
|
20698
|
-
/**
|
20699
|
-
* @description Resolve this data resource with draft mode content. TBD
|
20700
|
-
*
|
20701
|
-
* @enum {string}
|
20702
|
-
*/
|
20703
|
-
dataSourceVariant?: "unpublished";
|
20704
20066
|
variables?: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
20705
20067
|
};
|
20706
20068
|
/** @description Variable values for a data resource */
|
@@ -22224,7 +21586,6 @@ type DataResolutionParameters = {
|
|
22224
21586
|
* Controls how many levels deep content references should be resolved.
|
22225
21587
|
*/
|
22226
21588
|
resolutionDepth?: number;
|
22227
|
-
dataSourceVariant?: DataSourceVariantsKeys;
|
22228
21589
|
};
|
22229
21590
|
/** Types of issue that can occur when fetching composition data */
|
22230
21591
|
type DataResolutionIssue = PatternIssue | DataResourceIssue | MaxDepthExceededIssue | DataElementBindingIssue | DynamicInputIssue | DataResolutionConfigIssue;
|
@@ -22636,8 +21997,8 @@ type ProjectMapLinkComponentParameterValue = ProjectMapLinkParamValue | undefine
|
|
22636
21997
|
*/
|
22637
21998
|
type LinkComponentParameterValue = LinkParamValue;
|
22638
21999
|
|
22639
|
-
type RichTextBuiltInFormat =
|
22640
|
-
type RichTextBuiltInElement =
|
22000
|
+
type RichTextBuiltInFormat = RichTextBuiltInFormat$1;
|
22001
|
+
type RichTextBuiltInElement = RichTextBuiltInElement$1;
|
22641
22002
|
type RichTextParamConfiguration = {
|
22642
22003
|
required?: boolean;
|
22643
22004
|
formatting?: {
|
@@ -22647,7 +22008,7 @@ type RichTextParamConfiguration = {
|
|
22647
22008
|
builtIn?: Array<RichTextBuiltInElement>;
|
22648
22009
|
};
|
22649
22010
|
};
|
22650
|
-
type RichTextParamValue =
|
22011
|
+
type RichTextParamValue = ParameterRichTextValue;
|
22651
22012
|
|
22652
22013
|
/**
|
22653
22014
|
* This file was auto-generated by openapi-typescript.
|
@@ -23354,35 +22715,6 @@ interface external$3 {
|
|
23354
22715
|
* @enum {string}
|
23355
22716
|
*/
|
23356
22717
|
OverrideOptions: "yes" | "no";
|
23357
|
-
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
23358
|
-
AlternativeDataSourceData: {
|
23359
|
-
/** @description Base resource URL of the data source. No trailing slash */
|
23360
|
-
baseUrl: string;
|
23361
|
-
/** @description HTTP headers to pass with requests to the data source */
|
23362
|
-
headers?: {
|
23363
|
-
key: string;
|
23364
|
-
value: string;
|
23365
|
-
omitIfEmpty?: boolean;
|
23366
|
-
}[];
|
23367
|
-
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
23368
|
-
parameters?: {
|
23369
|
-
key: string;
|
23370
|
-
value: string;
|
23371
|
-
omitIfEmpty?: boolean;
|
23372
|
-
}[];
|
23373
|
-
/** @description Variables needed to make calls to the data source */
|
23374
|
-
variables?: {
|
23375
|
-
[key: string]: external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
23376
|
-
};
|
23377
|
-
/** @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 */
|
23378
|
-
customPublic?: {
|
23379
|
-
[key: string]: unknown;
|
23380
|
-
};
|
23381
|
-
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
|
23382
|
-
custom?: {
|
23383
|
-
[key: string]: unknown;
|
23384
|
-
};
|
23385
|
-
};
|
23386
22718
|
/**
|
23387
22719
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
23388
22720
|
* These are created in the UI and shared across a whole project.
|
@@ -23419,11 +22751,6 @@ interface external$3 {
|
|
23419
22751
|
localeMapping?: {
|
23420
22752
|
[key: string]: string;
|
23421
22753
|
};
|
23422
|
-
/**
|
23423
|
-
* @description If true, data source will require additional credentials to access unpublished data.
|
23424
|
-
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
23425
|
-
*/
|
23426
|
-
enableUnpublishedMode?: boolean;
|
23427
22754
|
/** @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 */
|
23428
22755
|
customPublic?: {
|
23429
22756
|
[key: string]: unknown;
|
@@ -23432,10 +22759,6 @@ interface external$3 {
|
|
23432
22759
|
custom?: {
|
23433
22760
|
[key: string]: unknown;
|
23434
22761
|
};
|
23435
|
-
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
23436
|
-
variants?: {
|
23437
|
-
unpublished?: external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
23438
|
-
};
|
23439
22762
|
};
|
23440
22763
|
/** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
|
23441
22764
|
DataType: {
|
@@ -23534,12 +22857,6 @@ interface external$3 {
|
|
23534
22857
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
23535
22858
|
*/
|
23536
22859
|
optionalPatternParameter?: boolean;
|
23537
|
-
/**
|
23538
|
-
* @description Resolve this data resource with draft mode content. TBD
|
23539
|
-
*
|
23540
|
-
* @enum {string}
|
23541
|
-
*/
|
23542
|
-
dataSourceVariant?: "unpublished";
|
23543
22860
|
variables?: external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
23544
22861
|
};
|
23545
22862
|
/** @description Variable values for a data resource */
|
@@ -24913,35 +24230,6 @@ interface external$1 {
|
|
24913
24230
|
* @enum {string}
|
24914
24231
|
*/
|
24915
24232
|
OverrideOptions: "yes" | "no";
|
24916
|
-
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
24917
|
-
AlternativeDataSourceData: {
|
24918
|
-
/** @description Base resource URL of the data source. No trailing slash */
|
24919
|
-
baseUrl: string;
|
24920
|
-
/** @description HTTP headers to pass with requests to the data source */
|
24921
|
-
headers?: {
|
24922
|
-
key: string;
|
24923
|
-
value: string;
|
24924
|
-
omitIfEmpty?: boolean;
|
24925
|
-
}[];
|
24926
|
-
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
24927
|
-
parameters?: {
|
24928
|
-
key: string;
|
24929
|
-
value: string;
|
24930
|
-
omitIfEmpty?: boolean;
|
24931
|
-
}[];
|
24932
|
-
/** @description Variables needed to make calls to the data source */
|
24933
|
-
variables?: {
|
24934
|
-
[key: string]: external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
24935
|
-
};
|
24936
|
-
/** @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 */
|
24937
|
-
customPublic?: {
|
24938
|
-
[key: string]: unknown;
|
24939
|
-
};
|
24940
|
-
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors */
|
24941
|
-
custom?: {
|
24942
|
-
[key: string]: unknown;
|
24943
|
-
};
|
24944
|
-
};
|
24945
24233
|
/**
|
24946
24234
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
24947
24235
|
* These are created in the UI and shared across a whole project.
|
@@ -24978,11 +24266,6 @@ interface external$1 {
|
|
24978
24266
|
localeMapping?: {
|
24979
24267
|
[key: string]: string;
|
24980
24268
|
};
|
24981
|
-
/**
|
24982
|
-
* @description If true, data source will require additional credentials to access unpublished data.
|
24983
|
-
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
24984
|
-
*/
|
24985
|
-
enableUnpublishedMode?: boolean;
|
24986
24269
|
/** @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 */
|
24987
24270
|
customPublic?: {
|
24988
24271
|
[key: string]: unknown;
|
@@ -24991,10 +24274,6 @@ interface external$1 {
|
|
24991
24274
|
custom?: {
|
24992
24275
|
[key: string]: unknown;
|
24993
24276
|
};
|
24994
|
-
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
24995
|
-
variants?: {
|
24996
|
-
unpublished?: external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
24997
|
-
};
|
24998
24277
|
};
|
24999
24278
|
/** @description A specific type of data that a Data Source can provide (i.e. "Recipe", "Recipes List by Tag", "Yelp Reviews of My Restaurant"). These are created in the UI and shared a whole project */
|
25000
24279
|
DataType: {
|
@@ -25093,12 +24372,6 @@ interface external$1 {
|
|
25093
24372
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
25094
24373
|
*/
|
25095
24374
|
optionalPatternParameter?: boolean;
|
25096
|
-
/**
|
25097
|
-
* @description Resolve this data resource with draft mode content. TBD
|
25098
|
-
*
|
25099
|
-
* @enum {string}
|
25100
|
-
*/
|
25101
|
-
dataSourceVariant?: "unpublished";
|
25102
24375
|
variables?: external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
25103
24376
|
};
|
25104
24377
|
/** @description Variable values for a data resource */
|
@@ -25806,7 +25079,6 @@ declare class CanvasClient extends ApiClient<CanvasClientOptions> {
|
|
25806
25079
|
isPatternParameter?: boolean | undefined;
|
25807
25080
|
ignorePatternParameterDefault?: boolean | undefined;
|
25808
25081
|
optionalPatternParameter?: boolean | undefined;
|
25809
|
-
dataSourceVariant?: "unpublished" | undefined;
|
25810
25082
|
variables?: {
|
25811
25083
|
[key: string]: string;
|
25812
25084
|
} | undefined;
|
@@ -25818,7 +25090,6 @@ declare class CanvasClient extends ApiClient<CanvasClientOptions> {
|
|
25818
25090
|
isPatternParameter?: boolean | undefined;
|
25819
25091
|
ignorePatternParameterDefault?: boolean | undefined;
|
25820
25092
|
optionalPatternParameter?: boolean | undefined;
|
25821
|
-
dataSourceVariant?: "unpublished" | undefined;
|
25822
25093
|
variables?: {
|
25823
25094
|
[key: string]: string;
|
25824
25095
|
} | undefined;
|
@@ -25962,44 +25233,12 @@ declare class DataSourceClient extends ApiClient {
|
|
25962
25233
|
localeMapping?: {
|
25963
25234
|
[key: string]: string;
|
25964
25235
|
} | undefined;
|
25965
|
-
enableUnpublishedMode?: boolean | undefined;
|
25966
25236
|
customPublic?: {
|
25967
25237
|
[key: string]: unknown;
|
25968
25238
|
} | undefined;
|
25969
25239
|
custom?: {
|
25970
25240
|
[key: string]: unknown;
|
25971
25241
|
} | undefined;
|
25972
|
-
variants?: {
|
25973
|
-
unpublished?: {
|
25974
|
-
baseUrl: string;
|
25975
|
-
headers?: {
|
25976
|
-
key: string;
|
25977
|
-
value: string;
|
25978
|
-
omitIfEmpty?: boolean | undefined;
|
25979
|
-
}[] | undefined;
|
25980
|
-
parameters?: {
|
25981
|
-
key: string;
|
25982
|
-
value: string;
|
25983
|
-
omitIfEmpty?: boolean | undefined;
|
25984
|
-
}[] | undefined;
|
25985
|
-
variables?: {
|
25986
|
-
[key: string]: {
|
25987
|
-
displayName?: string | undefined;
|
25988
|
-
helpText?: string | undefined;
|
25989
|
-
type?: string | undefined;
|
25990
|
-
default: string;
|
25991
|
-
order?: number | undefined;
|
25992
|
-
source?: string | undefined;
|
25993
|
-
};
|
25994
|
-
} | undefined;
|
25995
|
-
customPublic?: {
|
25996
|
-
[key: string]: unknown;
|
25997
|
-
} | undefined;
|
25998
|
-
custom?: {
|
25999
|
-
[key: string]: unknown;
|
26000
|
-
} | undefined;
|
26001
|
-
} | undefined;
|
26002
|
-
} | undefined;
|
26003
25242
|
};
|
26004
25243
|
}>;
|
26005
25244
|
/** Fetches all DataSources for a project */
|
@@ -26030,44 +25269,12 @@ declare class DataSourceClient extends ApiClient {
|
|
26030
25269
|
localeMapping?: {
|
26031
25270
|
[key: string]: string;
|
26032
25271
|
} | undefined;
|
26033
|
-
enableUnpublishedMode?: boolean | undefined;
|
26034
25272
|
customPublic?: {
|
26035
25273
|
[key: string]: unknown;
|
26036
25274
|
} | undefined;
|
26037
25275
|
custom?: {
|
26038
25276
|
[key: string]: unknown;
|
26039
25277
|
} | undefined;
|
26040
|
-
variants?: {
|
26041
|
-
unpublished?: {
|
26042
|
-
baseUrl: string;
|
26043
|
-
headers?: {
|
26044
|
-
key: string;
|
26045
|
-
value: string;
|
26046
|
-
omitIfEmpty?: boolean | undefined;
|
26047
|
-
}[] | undefined;
|
26048
|
-
parameters?: {
|
26049
|
-
key: string;
|
26050
|
-
value: string;
|
26051
|
-
omitIfEmpty?: boolean | undefined;
|
26052
|
-
}[] | undefined;
|
26053
|
-
variables?: {
|
26054
|
-
[key: string]: {
|
26055
|
-
displayName?: string | undefined;
|
26056
|
-
helpText?: string | undefined;
|
26057
|
-
type?: string | undefined;
|
26058
|
-
default: string;
|
26059
|
-
order?: number | undefined;
|
26060
|
-
source?: string | undefined;
|
26061
|
-
};
|
26062
|
-
} | undefined;
|
26063
|
-
customPublic?: {
|
26064
|
-
[key: string]: unknown;
|
26065
|
-
} | undefined;
|
26066
|
-
custom?: {
|
26067
|
-
[key: string]: unknown;
|
26068
|
-
} | undefined;
|
26069
|
-
} | undefined;
|
26070
|
-
} | undefined;
|
26071
25278
|
}[];
|
26072
25279
|
}>;
|
26073
25280
|
/** Updates or creates (based on id) a DataSource */
|
@@ -27098,7 +26305,6 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
27098
26305
|
isPatternParameter?: boolean | undefined;
|
27099
26306
|
ignorePatternParameterDefault?: boolean | undefined;
|
27100
26307
|
optionalPatternParameter?: boolean | undefined;
|
27101
|
-
dataSourceVariant?: "unpublished" | undefined;
|
27102
26308
|
variables?: {
|
27103
26309
|
[key: string]: string;
|
27104
26310
|
} | undefined;
|
@@ -27110,7 +26316,6 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
27110
26316
|
isPatternParameter?: boolean | undefined;
|
27111
26317
|
ignorePatternParameterDefault?: boolean | undefined;
|
27112
26318
|
optionalPatternParameter?: boolean | undefined;
|
27113
|
-
dataSourceVariant?: "unpublished" | undefined;
|
27114
26319
|
variables?: {
|
27115
26320
|
[key: string]: string;
|
27116
26321
|
} | undefined;
|
@@ -27165,7 +26370,6 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
27165
26370
|
isPatternParameter?: boolean | undefined;
|
27166
26371
|
ignorePatternParameterDefault?: boolean | undefined;
|
27167
26372
|
optionalPatternParameter?: boolean | undefined;
|
27168
|
-
dataSourceVariant?: "unpublished" | undefined;
|
27169
26373
|
variables?: {
|
27170
26374
|
[key: string]: string;
|
27171
26375
|
} | undefined;
|
@@ -27177,7 +26381,6 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
|
|
27177
26381
|
isPatternParameter?: boolean | undefined;
|
27178
26382
|
ignorePatternParameterDefault?: boolean | undefined;
|
27179
26383
|
optionalPatternParameter?: boolean | undefined;
|
27180
|
-
dataSourceVariant?: "unpublished" | undefined;
|
27181
26384
|
variables?: {
|
27182
26385
|
[key: string]: string;
|
27183
26386
|
} | undefined;
|
@@ -27475,4 +26678,4 @@ declare class WorkflowClient extends ApiClient {
|
|
27475
26678
|
|
27476
26679
|
declare const CanvasClientError: typeof ApiClientError;
|
27477
26680
|
|
27478
|
-
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 DataSourceVariantData, type DataSourceVariantsKeys, 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 };
|
26681
|
+
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 };
|