@uniformdev/canvas 19.184.0 → 19.184.1-alpha.22
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 +744 -1
- package/dist/index.d.ts +744 -1
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
@@ -660,6 +660,35 @@ interface external$j {
|
|
660
660
|
* @enum {string}
|
661
661
|
*/
|
662
662
|
OverrideOptions: "yes" | "no";
|
663
|
+
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
664
|
+
AlternativeDataSourceData: {
|
665
|
+
/** @description Base resource URL of the data source. No trailing slash */
|
666
|
+
baseUrl: string;
|
667
|
+
/** @description HTTP headers to pass with requests to the data source */
|
668
|
+
headers?: {
|
669
|
+
key: string;
|
670
|
+
value: string;
|
671
|
+
omitIfEmpty?: boolean;
|
672
|
+
}[];
|
673
|
+
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
674
|
+
parameters?: {
|
675
|
+
key: string;
|
676
|
+
value: string;
|
677
|
+
omitIfEmpty?: boolean;
|
678
|
+
}[];
|
679
|
+
/** @description Variables needed to make calls to the data source */
|
680
|
+
variables?: {
|
681
|
+
[key: string]: external$j["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
682
|
+
};
|
683
|
+
/** @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 */
|
684
|
+
customPublic?: {
|
685
|
+
[key: string]: unknown;
|
686
|
+
};
|
687
|
+
/** @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 */
|
688
|
+
custom?: {
|
689
|
+
[key: string]: unknown;
|
690
|
+
};
|
691
|
+
};
|
663
692
|
/**
|
664
693
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
665
694
|
* These are created in the UI and shared across a whole project.
|
@@ -696,6 +725,11 @@ interface external$j {
|
|
696
725
|
localeMapping?: {
|
697
726
|
[key: string]: string;
|
698
727
|
};
|
728
|
+
/**
|
729
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
730
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
731
|
+
*/
|
732
|
+
enableUnpublishedMode?: boolean;
|
699
733
|
/** @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 */
|
700
734
|
customPublic?: {
|
701
735
|
[key: string]: unknown;
|
@@ -704,6 +738,10 @@ interface external$j {
|
|
704
738
|
custom?: {
|
705
739
|
[key: string]: unknown;
|
706
740
|
};
|
741
|
+
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
742
|
+
variants?: {
|
743
|
+
unpublished?: external$j["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
744
|
+
};
|
707
745
|
};
|
708
746
|
/** @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 */
|
709
747
|
DataType: {
|
@@ -802,6 +840,12 @@ interface external$j {
|
|
802
840
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
803
841
|
*/
|
804
842
|
optionalPatternParameter?: boolean;
|
843
|
+
/**
|
844
|
+
* @description Resolve this data resource with draft mode content. TBD
|
845
|
+
*
|
846
|
+
* @enum {string}
|
847
|
+
*/
|
848
|
+
dataSourceVariant?: "unpublished";
|
805
849
|
variables?: external$j["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
806
850
|
};
|
807
851
|
/** @description Variable values for a data resource */
|
@@ -1877,6 +1921,35 @@ interface components$8 {
|
|
1877
1921
|
* @enum {string}
|
1878
1922
|
*/
|
1879
1923
|
OverrideOptions: "yes" | "no";
|
1924
|
+
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
1925
|
+
AlternativeDataSourceData: {
|
1926
|
+
/** @description Base resource URL of the data source. No trailing slash */
|
1927
|
+
baseUrl: string;
|
1928
|
+
/** @description HTTP headers to pass with requests to the data source */
|
1929
|
+
headers?: {
|
1930
|
+
key: string;
|
1931
|
+
value: string;
|
1932
|
+
omitIfEmpty?: boolean;
|
1933
|
+
}[];
|
1934
|
+
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
1935
|
+
parameters?: {
|
1936
|
+
key: string;
|
1937
|
+
value: string;
|
1938
|
+
omitIfEmpty?: boolean;
|
1939
|
+
}[];
|
1940
|
+
/** @description Variables needed to make calls to the data source */
|
1941
|
+
variables?: {
|
1942
|
+
[key: string]: components$8["schemas"]["DataVariableDefinition"];
|
1943
|
+
};
|
1944
|
+
/** @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 */
|
1945
|
+
customPublic?: {
|
1946
|
+
[key: string]: unknown;
|
1947
|
+
};
|
1948
|
+
/** @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 */
|
1949
|
+
custom?: {
|
1950
|
+
[key: string]: unknown;
|
1951
|
+
};
|
1952
|
+
};
|
1880
1953
|
/**
|
1881
1954
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
1882
1955
|
* These are created in the UI and shared across a whole project.
|
@@ -1913,6 +1986,11 @@ interface components$8 {
|
|
1913
1986
|
localeMapping?: {
|
1914
1987
|
[key: string]: string;
|
1915
1988
|
};
|
1989
|
+
/**
|
1990
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
1991
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
1992
|
+
*/
|
1993
|
+
enableUnpublishedMode?: boolean;
|
1916
1994
|
/** @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 */
|
1917
1995
|
customPublic?: {
|
1918
1996
|
[key: string]: unknown;
|
@@ -1921,6 +1999,10 @@ interface components$8 {
|
|
1921
1999
|
custom?: {
|
1922
2000
|
[key: string]: unknown;
|
1923
2001
|
};
|
2002
|
+
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
2003
|
+
variants?: {
|
2004
|
+
unpublished?: components$8["schemas"]["AlternativeDataSourceData"];
|
2005
|
+
};
|
1924
2006
|
};
|
1925
2007
|
/** @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 */
|
1926
2008
|
DataType: {
|
@@ -2019,6 +2101,12 @@ interface components$8 {
|
|
2019
2101
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
2020
2102
|
*/
|
2021
2103
|
optionalPatternParameter?: boolean;
|
2104
|
+
/**
|
2105
|
+
* @description Resolve this data resource with draft mode content. TBD
|
2106
|
+
*
|
2107
|
+
* @enum {string}
|
2108
|
+
*/
|
2109
|
+
dataSourceVariant?: "unpublished";
|
2022
2110
|
variables?: components$8["schemas"]["DataResourceVariables"];
|
2023
2111
|
};
|
2024
2112
|
/** @description Variable values for a data resource */
|
@@ -3251,6 +3339,35 @@ interface external$h {
|
|
3251
3339
|
* @enum {string}
|
3252
3340
|
*/
|
3253
3341
|
OverrideOptions: "yes" | "no";
|
3342
|
+
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
3343
|
+
AlternativeDataSourceData: {
|
3344
|
+
/** @description Base resource URL of the data source. No trailing slash */
|
3345
|
+
baseUrl: string;
|
3346
|
+
/** @description HTTP headers to pass with requests to the data source */
|
3347
|
+
headers?: {
|
3348
|
+
key: string;
|
3349
|
+
value: string;
|
3350
|
+
omitIfEmpty?: boolean;
|
3351
|
+
}[];
|
3352
|
+
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
3353
|
+
parameters?: {
|
3354
|
+
key: string;
|
3355
|
+
value: string;
|
3356
|
+
omitIfEmpty?: boolean;
|
3357
|
+
}[];
|
3358
|
+
/** @description Variables needed to make calls to the data source */
|
3359
|
+
variables?: {
|
3360
|
+
[key: string]: external$h["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
3361
|
+
};
|
3362
|
+
/** @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 */
|
3363
|
+
customPublic?: {
|
3364
|
+
[key: string]: unknown;
|
3365
|
+
};
|
3366
|
+
/** @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 */
|
3367
|
+
custom?: {
|
3368
|
+
[key: string]: unknown;
|
3369
|
+
};
|
3370
|
+
};
|
3254
3371
|
/**
|
3255
3372
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
3256
3373
|
* These are created in the UI and shared across a whole project.
|
@@ -3287,6 +3404,11 @@ interface external$h {
|
|
3287
3404
|
localeMapping?: {
|
3288
3405
|
[key: string]: string;
|
3289
3406
|
};
|
3407
|
+
/**
|
3408
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
3409
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
3410
|
+
*/
|
3411
|
+
enableUnpublishedMode?: boolean;
|
3290
3412
|
/** @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 */
|
3291
3413
|
customPublic?: {
|
3292
3414
|
[key: string]: unknown;
|
@@ -3295,6 +3417,10 @@ interface external$h {
|
|
3295
3417
|
custom?: {
|
3296
3418
|
[key: string]: unknown;
|
3297
3419
|
};
|
3420
|
+
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
3421
|
+
variants?: {
|
3422
|
+
unpublished?: external$h["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
3423
|
+
};
|
3298
3424
|
};
|
3299
3425
|
/** @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 */
|
3300
3426
|
DataType: {
|
@@ -3393,6 +3519,12 @@ interface external$h {
|
|
3393
3519
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
3394
3520
|
*/
|
3395
3521
|
optionalPatternParameter?: boolean;
|
3522
|
+
/**
|
3523
|
+
* @description Resolve this data resource with draft mode content. TBD
|
3524
|
+
*
|
3525
|
+
* @enum {string}
|
3526
|
+
*/
|
3527
|
+
dataSourceVariant?: "unpublished";
|
3396
3528
|
variables?: external$h["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
3397
3529
|
};
|
3398
3530
|
/** @description Variable values for a data resource */
|
@@ -4726,6 +4858,35 @@ interface external$g {
|
|
4726
4858
|
* @enum {string}
|
4727
4859
|
*/
|
4728
4860
|
OverrideOptions: "yes" | "no";
|
4861
|
+
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
4862
|
+
AlternativeDataSourceData: {
|
4863
|
+
/** @description Base resource URL of the data source. No trailing slash */
|
4864
|
+
baseUrl: string;
|
4865
|
+
/** @description HTTP headers to pass with requests to the data source */
|
4866
|
+
headers?: {
|
4867
|
+
key: string;
|
4868
|
+
value: string;
|
4869
|
+
omitIfEmpty?: boolean;
|
4870
|
+
}[];
|
4871
|
+
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
4872
|
+
parameters?: {
|
4873
|
+
key: string;
|
4874
|
+
value: string;
|
4875
|
+
omitIfEmpty?: boolean;
|
4876
|
+
}[];
|
4877
|
+
/** @description Variables needed to make calls to the data source */
|
4878
|
+
variables?: {
|
4879
|
+
[key: string]: external$g["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
4880
|
+
};
|
4881
|
+
/** @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 */
|
4882
|
+
customPublic?: {
|
4883
|
+
[key: string]: unknown;
|
4884
|
+
};
|
4885
|
+
/** @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 */
|
4886
|
+
custom?: {
|
4887
|
+
[key: string]: unknown;
|
4888
|
+
};
|
4889
|
+
};
|
4729
4890
|
/**
|
4730
4891
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
4731
4892
|
* These are created in the UI and shared across a whole project.
|
@@ -4762,6 +4923,11 @@ interface external$g {
|
|
4762
4923
|
localeMapping?: {
|
4763
4924
|
[key: string]: string;
|
4764
4925
|
};
|
4926
|
+
/**
|
4927
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
4928
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
4929
|
+
*/
|
4930
|
+
enableUnpublishedMode?: boolean;
|
4765
4931
|
/** @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 */
|
4766
4932
|
customPublic?: {
|
4767
4933
|
[key: string]: unknown;
|
@@ -4770,6 +4936,10 @@ interface external$g {
|
|
4770
4936
|
custom?: {
|
4771
4937
|
[key: string]: unknown;
|
4772
4938
|
};
|
4939
|
+
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
4940
|
+
variants?: {
|
4941
|
+
unpublished?: external$g["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
4942
|
+
};
|
4773
4943
|
};
|
4774
4944
|
/** @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 */
|
4775
4945
|
DataType: {
|
@@ -4868,6 +5038,12 @@ interface external$g {
|
|
4868
5038
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
4869
5039
|
*/
|
4870
5040
|
optionalPatternParameter?: boolean;
|
5041
|
+
/**
|
5042
|
+
* @description Resolve this data resource with draft mode content. TBD
|
5043
|
+
*
|
5044
|
+
* @enum {string}
|
5045
|
+
*/
|
5046
|
+
dataSourceVariant?: "unpublished";
|
4871
5047
|
variables?: external$g["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
4872
5048
|
};
|
4873
5049
|
/** @description Variable values for a data resource */
|
@@ -6522,6 +6698,35 @@ interface external$f {
|
|
6522
6698
|
* @enum {string}
|
6523
6699
|
*/
|
6524
6700
|
OverrideOptions: "yes" | "no";
|
6701
|
+
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
6702
|
+
AlternativeDataSourceData: {
|
6703
|
+
/** @description Base resource URL of the data source. No trailing slash */
|
6704
|
+
baseUrl: string;
|
6705
|
+
/** @description HTTP headers to pass with requests to the data source */
|
6706
|
+
headers?: {
|
6707
|
+
key: string;
|
6708
|
+
value: string;
|
6709
|
+
omitIfEmpty?: boolean;
|
6710
|
+
}[];
|
6711
|
+
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
6712
|
+
parameters?: {
|
6713
|
+
key: string;
|
6714
|
+
value: string;
|
6715
|
+
omitIfEmpty?: boolean;
|
6716
|
+
}[];
|
6717
|
+
/** @description Variables needed to make calls to the data source */
|
6718
|
+
variables?: {
|
6719
|
+
[key: string]: external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
6720
|
+
};
|
6721
|
+
/** @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 */
|
6722
|
+
customPublic?: {
|
6723
|
+
[key: string]: unknown;
|
6724
|
+
};
|
6725
|
+
/** @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 */
|
6726
|
+
custom?: {
|
6727
|
+
[key: string]: unknown;
|
6728
|
+
};
|
6729
|
+
};
|
6525
6730
|
/**
|
6526
6731
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
6527
6732
|
* These are created in the UI and shared across a whole project.
|
@@ -6558,6 +6763,11 @@ interface external$f {
|
|
6558
6763
|
localeMapping?: {
|
6559
6764
|
[key: string]: string;
|
6560
6765
|
};
|
6766
|
+
/**
|
6767
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
6768
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
6769
|
+
*/
|
6770
|
+
enableUnpublishedMode?: boolean;
|
6561
6771
|
/** @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 */
|
6562
6772
|
customPublic?: {
|
6563
6773
|
[key: string]: unknown;
|
@@ -6566,6 +6776,10 @@ interface external$f {
|
|
6566
6776
|
custom?: {
|
6567
6777
|
[key: string]: unknown;
|
6568
6778
|
};
|
6779
|
+
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
6780
|
+
variants?: {
|
6781
|
+
unpublished?: external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
6782
|
+
};
|
6569
6783
|
};
|
6570
6784
|
/** @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 */
|
6571
6785
|
DataType: {
|
@@ -6664,6 +6878,12 @@ interface external$f {
|
|
6664
6878
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
6665
6879
|
*/
|
6666
6880
|
optionalPatternParameter?: boolean;
|
6881
|
+
/**
|
6882
|
+
* @description Resolve this data resource with draft mode content. TBD
|
6883
|
+
*
|
6884
|
+
* @enum {string}
|
6885
|
+
*/
|
6886
|
+
dataSourceVariant?: "unpublished";
|
6667
6887
|
variables?: external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
6668
6888
|
};
|
6669
6889
|
/** @description Variable values for a data resource */
|
@@ -7825,6 +8045,35 @@ interface external$e {
|
|
7825
8045
|
* @enum {string}
|
7826
8046
|
*/
|
7827
8047
|
OverrideOptions: "yes" | "no";
|
8048
|
+
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
8049
|
+
AlternativeDataSourceData: {
|
8050
|
+
/** @description Base resource URL of the data source. No trailing slash */
|
8051
|
+
baseUrl: string;
|
8052
|
+
/** @description HTTP headers to pass with requests to the data source */
|
8053
|
+
headers?: {
|
8054
|
+
key: string;
|
8055
|
+
value: string;
|
8056
|
+
omitIfEmpty?: boolean;
|
8057
|
+
}[];
|
8058
|
+
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
8059
|
+
parameters?: {
|
8060
|
+
key: string;
|
8061
|
+
value: string;
|
8062
|
+
omitIfEmpty?: boolean;
|
8063
|
+
}[];
|
8064
|
+
/** @description Variables needed to make calls to the data source */
|
8065
|
+
variables?: {
|
8066
|
+
[key: string]: external$e["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
8067
|
+
};
|
8068
|
+
/** @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 */
|
8069
|
+
customPublic?: {
|
8070
|
+
[key: string]: unknown;
|
8071
|
+
};
|
8072
|
+
/** @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 */
|
8073
|
+
custom?: {
|
8074
|
+
[key: string]: unknown;
|
8075
|
+
};
|
8076
|
+
};
|
7828
8077
|
/**
|
7829
8078
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
7830
8079
|
* These are created in the UI and shared across a whole project.
|
@@ -7861,6 +8110,11 @@ interface external$e {
|
|
7861
8110
|
localeMapping?: {
|
7862
8111
|
[key: string]: string;
|
7863
8112
|
};
|
8113
|
+
/**
|
8114
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
8115
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
8116
|
+
*/
|
8117
|
+
enableUnpublishedMode?: boolean;
|
7864
8118
|
/** @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 */
|
7865
8119
|
customPublic?: {
|
7866
8120
|
[key: string]: unknown;
|
@@ -7869,6 +8123,10 @@ interface external$e {
|
|
7869
8123
|
custom?: {
|
7870
8124
|
[key: string]: unknown;
|
7871
8125
|
};
|
8126
|
+
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
8127
|
+
variants?: {
|
8128
|
+
unpublished?: external$e["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
8129
|
+
};
|
7872
8130
|
};
|
7873
8131
|
/** @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 */
|
7874
8132
|
DataType: {
|
@@ -7967,6 +8225,12 @@ interface external$e {
|
|
7967
8225
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
7968
8226
|
*/
|
7969
8227
|
optionalPatternParameter?: boolean;
|
8228
|
+
/**
|
8229
|
+
* @description Resolve this data resource with draft mode content. TBD
|
8230
|
+
*
|
8231
|
+
* @enum {string}
|
8232
|
+
*/
|
8233
|
+
dataSourceVariant?: "unpublished";
|
7970
8234
|
variables?: external$e["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
7971
8235
|
};
|
7972
8236
|
/** @description Variable values for a data resource */
|
@@ -9185,6 +9449,35 @@ interface external$d {
|
|
9185
9449
|
* @enum {string}
|
9186
9450
|
*/
|
9187
9451
|
OverrideOptions: "yes" | "no";
|
9452
|
+
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
9453
|
+
AlternativeDataSourceData: {
|
9454
|
+
/** @description Base resource URL of the data source. No trailing slash */
|
9455
|
+
baseUrl: string;
|
9456
|
+
/** @description HTTP headers to pass with requests to the data source */
|
9457
|
+
headers?: {
|
9458
|
+
key: string;
|
9459
|
+
value: string;
|
9460
|
+
omitIfEmpty?: boolean;
|
9461
|
+
}[];
|
9462
|
+
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
9463
|
+
parameters?: {
|
9464
|
+
key: string;
|
9465
|
+
value: string;
|
9466
|
+
omitIfEmpty?: boolean;
|
9467
|
+
}[];
|
9468
|
+
/** @description Variables needed to make calls to the data source */
|
9469
|
+
variables?: {
|
9470
|
+
[key: string]: external$d["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
9471
|
+
};
|
9472
|
+
/** @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 */
|
9473
|
+
customPublic?: {
|
9474
|
+
[key: string]: unknown;
|
9475
|
+
};
|
9476
|
+
/** @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 */
|
9477
|
+
custom?: {
|
9478
|
+
[key: string]: unknown;
|
9479
|
+
};
|
9480
|
+
};
|
9188
9481
|
/**
|
9189
9482
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
9190
9483
|
* These are created in the UI and shared across a whole project.
|
@@ -9221,6 +9514,11 @@ interface external$d {
|
|
9221
9514
|
localeMapping?: {
|
9222
9515
|
[key: string]: string;
|
9223
9516
|
};
|
9517
|
+
/**
|
9518
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
9519
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
9520
|
+
*/
|
9521
|
+
enableUnpublishedMode?: boolean;
|
9224
9522
|
/** @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 */
|
9225
9523
|
customPublic?: {
|
9226
9524
|
[key: string]: unknown;
|
@@ -9229,6 +9527,10 @@ interface external$d {
|
|
9229
9527
|
custom?: {
|
9230
9528
|
[key: string]: unknown;
|
9231
9529
|
};
|
9530
|
+
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
9531
|
+
variants?: {
|
9532
|
+
unpublished?: external$d["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
9533
|
+
};
|
9232
9534
|
};
|
9233
9535
|
/** @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 */
|
9234
9536
|
DataType: {
|
@@ -9327,6 +9629,12 @@ interface external$d {
|
|
9327
9629
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
9328
9630
|
*/
|
9329
9631
|
optionalPatternParameter?: boolean;
|
9632
|
+
/**
|
9633
|
+
* @description Resolve this data resource with draft mode content. TBD
|
9634
|
+
*
|
9635
|
+
* @enum {string}
|
9636
|
+
*/
|
9637
|
+
dataSourceVariant?: "unpublished";
|
9330
9638
|
variables?: external$d["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
9331
9639
|
};
|
9332
9640
|
/** @description Variable values for a data resource */
|
@@ -10482,6 +10790,35 @@ interface external$c {
|
|
10482
10790
|
* @enum {string}
|
10483
10791
|
*/
|
10484
10792
|
OverrideOptions: "yes" | "no";
|
10793
|
+
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
10794
|
+
AlternativeDataSourceData: {
|
10795
|
+
/** @description Base resource URL of the data source. No trailing slash */
|
10796
|
+
baseUrl: string;
|
10797
|
+
/** @description HTTP headers to pass with requests to the data source */
|
10798
|
+
headers?: {
|
10799
|
+
key: string;
|
10800
|
+
value: string;
|
10801
|
+
omitIfEmpty?: boolean;
|
10802
|
+
}[];
|
10803
|
+
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
10804
|
+
parameters?: {
|
10805
|
+
key: string;
|
10806
|
+
value: string;
|
10807
|
+
omitIfEmpty?: boolean;
|
10808
|
+
}[];
|
10809
|
+
/** @description Variables needed to make calls to the data source */
|
10810
|
+
variables?: {
|
10811
|
+
[key: string]: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
10812
|
+
};
|
10813
|
+
/** @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 */
|
10814
|
+
customPublic?: {
|
10815
|
+
[key: string]: unknown;
|
10816
|
+
};
|
10817
|
+
/** @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 */
|
10818
|
+
custom?: {
|
10819
|
+
[key: string]: unknown;
|
10820
|
+
};
|
10821
|
+
};
|
10485
10822
|
/**
|
10486
10823
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
10487
10824
|
* These are created in the UI and shared across a whole project.
|
@@ -10518,6 +10855,11 @@ interface external$c {
|
|
10518
10855
|
localeMapping?: {
|
10519
10856
|
[key: string]: string;
|
10520
10857
|
};
|
10858
|
+
/**
|
10859
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
10860
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
10861
|
+
*/
|
10862
|
+
enableUnpublishedMode?: boolean;
|
10521
10863
|
/** @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 */
|
10522
10864
|
customPublic?: {
|
10523
10865
|
[key: string]: unknown;
|
@@ -10526,6 +10868,10 @@ interface external$c {
|
|
10526
10868
|
custom?: {
|
10527
10869
|
[key: string]: unknown;
|
10528
10870
|
};
|
10871
|
+
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
10872
|
+
variants?: {
|
10873
|
+
unpublished?: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
10874
|
+
};
|
10529
10875
|
};
|
10530
10876
|
/** @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 */
|
10531
10877
|
DataType: {
|
@@ -10624,6 +10970,12 @@ interface external$c {
|
|
10624
10970
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
10625
10971
|
*/
|
10626
10972
|
optionalPatternParameter?: boolean;
|
10973
|
+
/**
|
10974
|
+
* @description Resolve this data resource with draft mode content. TBD
|
10975
|
+
*
|
10976
|
+
* @enum {string}
|
10977
|
+
*/
|
10978
|
+
dataSourceVariant?: "unpublished";
|
10627
10979
|
variables?: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
10628
10980
|
};
|
10629
10981
|
/** @description Variable values for a data resource */
|
@@ -11814,6 +12166,35 @@ interface external$b {
|
|
11814
12166
|
* @enum {string}
|
11815
12167
|
*/
|
11816
12168
|
OverrideOptions: "yes" | "no";
|
12169
|
+
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
12170
|
+
AlternativeDataSourceData: {
|
12171
|
+
/** @description Base resource URL of the data source. No trailing slash */
|
12172
|
+
baseUrl: string;
|
12173
|
+
/** @description HTTP headers to pass with requests to the data source */
|
12174
|
+
headers?: {
|
12175
|
+
key: string;
|
12176
|
+
value: string;
|
12177
|
+
omitIfEmpty?: boolean;
|
12178
|
+
}[];
|
12179
|
+
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
12180
|
+
parameters?: {
|
12181
|
+
key: string;
|
12182
|
+
value: string;
|
12183
|
+
omitIfEmpty?: boolean;
|
12184
|
+
}[];
|
12185
|
+
/** @description Variables needed to make calls to the data source */
|
12186
|
+
variables?: {
|
12187
|
+
[key: string]: external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
12188
|
+
};
|
12189
|
+
/** @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 */
|
12190
|
+
customPublic?: {
|
12191
|
+
[key: string]: unknown;
|
12192
|
+
};
|
12193
|
+
/** @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 */
|
12194
|
+
custom?: {
|
12195
|
+
[key: string]: unknown;
|
12196
|
+
};
|
12197
|
+
};
|
11817
12198
|
/**
|
11818
12199
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
11819
12200
|
* These are created in the UI and shared across a whole project.
|
@@ -11850,6 +12231,11 @@ interface external$b {
|
|
11850
12231
|
localeMapping?: {
|
11851
12232
|
[key: string]: string;
|
11852
12233
|
};
|
12234
|
+
/**
|
12235
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
12236
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
12237
|
+
*/
|
12238
|
+
enableUnpublishedMode?: boolean;
|
11853
12239
|
/** @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 */
|
11854
12240
|
customPublic?: {
|
11855
12241
|
[key: string]: unknown;
|
@@ -11858,6 +12244,10 @@ interface external$b {
|
|
11858
12244
|
custom?: {
|
11859
12245
|
[key: string]: unknown;
|
11860
12246
|
};
|
12247
|
+
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
12248
|
+
variants?: {
|
12249
|
+
unpublished?: external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
12250
|
+
};
|
11861
12251
|
};
|
11862
12252
|
/** @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 */
|
11863
12253
|
DataType: {
|
@@ -11956,6 +12346,12 @@ interface external$b {
|
|
11956
12346
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
11957
12347
|
*/
|
11958
12348
|
optionalPatternParameter?: boolean;
|
12349
|
+
/**
|
12350
|
+
* @description Resolve this data resource with draft mode content. TBD
|
12351
|
+
*
|
12352
|
+
* @enum {string}
|
12353
|
+
*/
|
12354
|
+
dataSourceVariant?: "unpublished";
|
11959
12355
|
variables?: external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
11960
12356
|
};
|
11961
12357
|
/** @description Variable values for a data resource */
|
@@ -13146,6 +13542,35 @@ interface external$a {
|
|
13146
13542
|
* @enum {string}
|
13147
13543
|
*/
|
13148
13544
|
OverrideOptions: "yes" | "no";
|
13545
|
+
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
13546
|
+
AlternativeDataSourceData: {
|
13547
|
+
/** @description Base resource URL of the data source. No trailing slash */
|
13548
|
+
baseUrl: string;
|
13549
|
+
/** @description HTTP headers to pass with requests to the data source */
|
13550
|
+
headers?: {
|
13551
|
+
key: string;
|
13552
|
+
value: string;
|
13553
|
+
omitIfEmpty?: boolean;
|
13554
|
+
}[];
|
13555
|
+
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
13556
|
+
parameters?: {
|
13557
|
+
key: string;
|
13558
|
+
value: string;
|
13559
|
+
omitIfEmpty?: boolean;
|
13560
|
+
}[];
|
13561
|
+
/** @description Variables needed to make calls to the data source */
|
13562
|
+
variables?: {
|
13563
|
+
[key: string]: external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
13564
|
+
};
|
13565
|
+
/** @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 */
|
13566
|
+
customPublic?: {
|
13567
|
+
[key: string]: unknown;
|
13568
|
+
};
|
13569
|
+
/** @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 */
|
13570
|
+
custom?: {
|
13571
|
+
[key: string]: unknown;
|
13572
|
+
};
|
13573
|
+
};
|
13149
13574
|
/**
|
13150
13575
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
13151
13576
|
* These are created in the UI and shared across a whole project.
|
@@ -13182,6 +13607,11 @@ interface external$a {
|
|
13182
13607
|
localeMapping?: {
|
13183
13608
|
[key: string]: string;
|
13184
13609
|
};
|
13610
|
+
/**
|
13611
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
13612
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
13613
|
+
*/
|
13614
|
+
enableUnpublishedMode?: boolean;
|
13185
13615
|
/** @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 */
|
13186
13616
|
customPublic?: {
|
13187
13617
|
[key: string]: unknown;
|
@@ -13190,6 +13620,10 @@ interface external$a {
|
|
13190
13620
|
custom?: {
|
13191
13621
|
[key: string]: unknown;
|
13192
13622
|
};
|
13623
|
+
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
13624
|
+
variants?: {
|
13625
|
+
unpublished?: external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
13626
|
+
};
|
13193
13627
|
};
|
13194
13628
|
/** @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 */
|
13195
13629
|
DataType: {
|
@@ -13288,6 +13722,12 @@ interface external$a {
|
|
13288
13722
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
13289
13723
|
*/
|
13290
13724
|
optionalPatternParameter?: boolean;
|
13725
|
+
/**
|
13726
|
+
* @description Resolve this data resource with draft mode content. TBD
|
13727
|
+
*
|
13728
|
+
* @enum {string}
|
13729
|
+
*/
|
13730
|
+
dataSourceVariant?: "unpublished";
|
13291
13731
|
variables?: external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
13292
13732
|
};
|
13293
13733
|
/** @description Variable values for a data resource */
|
@@ -13889,6 +14329,8 @@ type DataType = components$8['schemas']['DataType'];
|
|
13889
14329
|
type DataSource = components$8['schemas']['DataSource'];
|
13890
14330
|
type DataVariableDefinition = components$8['schemas']['DataVariableDefinition'];
|
13891
14331
|
type Prompt = components$8['schemas']['Prompt'];
|
14332
|
+
type DataSourceVariantsKeys = keyof NonNullable<DataSource['variants']>;
|
14333
|
+
type DataSourceVariantData = NonNullable<DataSource['variants']>['unpublished'];
|
13892
14334
|
|
13893
14335
|
/**
|
13894
14336
|
* This file was auto-generated by openapi-typescript.
|
@@ -15227,6 +15669,35 @@ interface external$8 {
|
|
15227
15669
|
* @enum {string}
|
15228
15670
|
*/
|
15229
15671
|
OverrideOptions: "yes" | "no";
|
15672
|
+
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
15673
|
+
AlternativeDataSourceData: {
|
15674
|
+
/** @description Base resource URL of the data source. No trailing slash */
|
15675
|
+
baseUrl: string;
|
15676
|
+
/** @description HTTP headers to pass with requests to the data source */
|
15677
|
+
headers?: {
|
15678
|
+
key: string;
|
15679
|
+
value: string;
|
15680
|
+
omitIfEmpty?: boolean;
|
15681
|
+
}[];
|
15682
|
+
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
15683
|
+
parameters?: {
|
15684
|
+
key: string;
|
15685
|
+
value: string;
|
15686
|
+
omitIfEmpty?: boolean;
|
15687
|
+
}[];
|
15688
|
+
/** @description Variables needed to make calls to the data source */
|
15689
|
+
variables?: {
|
15690
|
+
[key: string]: external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
15691
|
+
};
|
15692
|
+
/** @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 */
|
15693
|
+
customPublic?: {
|
15694
|
+
[key: string]: unknown;
|
15695
|
+
};
|
15696
|
+
/** @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 */
|
15697
|
+
custom?: {
|
15698
|
+
[key: string]: unknown;
|
15699
|
+
};
|
15700
|
+
};
|
15230
15701
|
/**
|
15231
15702
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
15232
15703
|
* These are created in the UI and shared across a whole project.
|
@@ -15263,6 +15734,11 @@ interface external$8 {
|
|
15263
15734
|
localeMapping?: {
|
15264
15735
|
[key: string]: string;
|
15265
15736
|
};
|
15737
|
+
/**
|
15738
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
15739
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
15740
|
+
*/
|
15741
|
+
enableUnpublishedMode?: boolean;
|
15266
15742
|
/** @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 */
|
15267
15743
|
customPublic?: {
|
15268
15744
|
[key: string]: unknown;
|
@@ -15271,6 +15747,10 @@ interface external$8 {
|
|
15271
15747
|
custom?: {
|
15272
15748
|
[key: string]: unknown;
|
15273
15749
|
};
|
15750
|
+
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
15751
|
+
variants?: {
|
15752
|
+
unpublished?: external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
15753
|
+
};
|
15274
15754
|
};
|
15275
15755
|
/** @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 */
|
15276
15756
|
DataType: {
|
@@ -15369,6 +15849,12 @@ interface external$8 {
|
|
15369
15849
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
15370
15850
|
*/
|
15371
15851
|
optionalPatternParameter?: boolean;
|
15852
|
+
/**
|
15853
|
+
* @description Resolve this data resource with draft mode content. TBD
|
15854
|
+
*
|
15855
|
+
* @enum {string}
|
15856
|
+
*/
|
15857
|
+
dataSourceVariant?: "unpublished";
|
15372
15858
|
variables?: external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
15373
15859
|
};
|
15374
15860
|
/** @description Variable values for a data resource */
|
@@ -16530,6 +17016,35 @@ interface external$7 {
|
|
16530
17016
|
* @enum {string}
|
16531
17017
|
*/
|
16532
17018
|
OverrideOptions: "yes" | "no";
|
17019
|
+
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
17020
|
+
AlternativeDataSourceData: {
|
17021
|
+
/** @description Base resource URL of the data source. No trailing slash */
|
17022
|
+
baseUrl: string;
|
17023
|
+
/** @description HTTP headers to pass with requests to the data source */
|
17024
|
+
headers?: {
|
17025
|
+
key: string;
|
17026
|
+
value: string;
|
17027
|
+
omitIfEmpty?: boolean;
|
17028
|
+
}[];
|
17029
|
+
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
17030
|
+
parameters?: {
|
17031
|
+
key: string;
|
17032
|
+
value: string;
|
17033
|
+
omitIfEmpty?: boolean;
|
17034
|
+
}[];
|
17035
|
+
/** @description Variables needed to make calls to the data source */
|
17036
|
+
variables?: {
|
17037
|
+
[key: string]: external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
17038
|
+
};
|
17039
|
+
/** @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 */
|
17040
|
+
customPublic?: {
|
17041
|
+
[key: string]: unknown;
|
17042
|
+
};
|
17043
|
+
/** @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 */
|
17044
|
+
custom?: {
|
17045
|
+
[key: string]: unknown;
|
17046
|
+
};
|
17047
|
+
};
|
16533
17048
|
/**
|
16534
17049
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
16535
17050
|
* These are created in the UI and shared across a whole project.
|
@@ -16566,6 +17081,11 @@ interface external$7 {
|
|
16566
17081
|
localeMapping?: {
|
16567
17082
|
[key: string]: string;
|
16568
17083
|
};
|
17084
|
+
/**
|
17085
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
17086
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
17087
|
+
*/
|
17088
|
+
enableUnpublishedMode?: boolean;
|
16569
17089
|
/** @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 */
|
16570
17090
|
customPublic?: {
|
16571
17091
|
[key: string]: unknown;
|
@@ -16574,6 +17094,10 @@ interface external$7 {
|
|
16574
17094
|
custom?: {
|
16575
17095
|
[key: string]: unknown;
|
16576
17096
|
};
|
17097
|
+
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
17098
|
+
variants?: {
|
17099
|
+
unpublished?: external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
17100
|
+
};
|
16577
17101
|
};
|
16578
17102
|
/** @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 */
|
16579
17103
|
DataType: {
|
@@ -16672,6 +17196,12 @@ interface external$7 {
|
|
16672
17196
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
16673
17197
|
*/
|
16674
17198
|
optionalPatternParameter?: boolean;
|
17199
|
+
/**
|
17200
|
+
* @description Resolve this data resource with draft mode content. TBD
|
17201
|
+
*
|
17202
|
+
* @enum {string}
|
17203
|
+
*/
|
17204
|
+
dataSourceVariant?: "unpublished";
|
16675
17205
|
variables?: external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
16676
17206
|
};
|
16677
17207
|
/** @description Variable values for a data resource */
|
@@ -17985,6 +18515,35 @@ interface external$6 {
|
|
17985
18515
|
* @enum {string}
|
17986
18516
|
*/
|
17987
18517
|
OverrideOptions: "yes" | "no";
|
18518
|
+
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
18519
|
+
AlternativeDataSourceData: {
|
18520
|
+
/** @description Base resource URL of the data source. No trailing slash */
|
18521
|
+
baseUrl: string;
|
18522
|
+
/** @description HTTP headers to pass with requests to the data source */
|
18523
|
+
headers?: {
|
18524
|
+
key: string;
|
18525
|
+
value: string;
|
18526
|
+
omitIfEmpty?: boolean;
|
18527
|
+
}[];
|
18528
|
+
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
18529
|
+
parameters?: {
|
18530
|
+
key: string;
|
18531
|
+
value: string;
|
18532
|
+
omitIfEmpty?: boolean;
|
18533
|
+
}[];
|
18534
|
+
/** @description Variables needed to make calls to the data source */
|
18535
|
+
variables?: {
|
18536
|
+
[key: string]: external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
18537
|
+
};
|
18538
|
+
/** @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 */
|
18539
|
+
customPublic?: {
|
18540
|
+
[key: string]: unknown;
|
18541
|
+
};
|
18542
|
+
/** @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 */
|
18543
|
+
custom?: {
|
18544
|
+
[key: string]: unknown;
|
18545
|
+
};
|
18546
|
+
};
|
17988
18547
|
/**
|
17989
18548
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
17990
18549
|
* These are created in the UI and shared across a whole project.
|
@@ -18021,6 +18580,11 @@ interface external$6 {
|
|
18021
18580
|
localeMapping?: {
|
18022
18581
|
[key: string]: string;
|
18023
18582
|
};
|
18583
|
+
/**
|
18584
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
18585
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
18586
|
+
*/
|
18587
|
+
enableUnpublishedMode?: boolean;
|
18024
18588
|
/** @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 */
|
18025
18589
|
customPublic?: {
|
18026
18590
|
[key: string]: unknown;
|
@@ -18029,6 +18593,10 @@ interface external$6 {
|
|
18029
18593
|
custom?: {
|
18030
18594
|
[key: string]: unknown;
|
18031
18595
|
};
|
18596
|
+
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
18597
|
+
variants?: {
|
18598
|
+
unpublished?: external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
18599
|
+
};
|
18032
18600
|
};
|
18033
18601
|
/** @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 */
|
18034
18602
|
DataType: {
|
@@ -18127,6 +18695,12 @@ interface external$6 {
|
|
18127
18695
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
18128
18696
|
*/
|
18129
18697
|
optionalPatternParameter?: boolean;
|
18698
|
+
/**
|
18699
|
+
* @description Resolve this data resource with draft mode content. TBD
|
18700
|
+
*
|
18701
|
+
* @enum {string}
|
18702
|
+
*/
|
18703
|
+
dataSourceVariant?: "unpublished";
|
18130
18704
|
variables?: external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
18131
18705
|
};
|
18132
18706
|
/** @description Variable values for a data resource */
|
@@ -20087,6 +20661,8 @@ interface external$6 {
|
|
20087
20661
|
* 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
|
20088
20662
|
*/
|
20089
20663
|
releaseId?: external$6["../../../lambda/functions/v1-route.swagger.yml"]["components"]["parameters"]["releaseId"];
|
20664
|
+
/** Instructs Uniform to resolve data using Unpublished Mode for Data Sources which support it, */
|
20665
|
+
dataResourcesVariant?: external$6["../../../lambda/functions/v1-route.swagger.yml"]["components"]["parameters"]["dataResourcesVariant"];
|
20090
20666
|
};
|
20091
20667
|
};
|
20092
20668
|
responses: {
|
@@ -20132,6 +20708,13 @@ interface external$6 {
|
|
20132
20708
|
/** @description The route that was matched in the project map */
|
20133
20709
|
matchedRoute: string;
|
20134
20710
|
dynamicInputs?: external$6["../../../lambda/functions/v1-route.swagger.yml"]["components"]["schemas"]["RouteDynamicInputs"];
|
20711
|
+
/**
|
20712
|
+
* @description Indicates that the data resources were resolved using Unpublished Mode for Data Sources which support it.
|
20713
|
+
* So it can contained unpublished data.
|
20714
|
+
*
|
20715
|
+
* @enum {string}
|
20716
|
+
*/
|
20717
|
+
dataResourcesVariant?: "unpublished";
|
20135
20718
|
/** @enum {string} */
|
20136
20719
|
type: "composition";
|
20137
20720
|
compositionApiResponse: external$6["../../../lambda/functions/v1-canvas.swagger.yml"]["components"]["schemas"]["CompositionApiResponse"];
|
@@ -20212,6 +20795,8 @@ interface external$6 {
|
|
20212
20795
|
* 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
|
20213
20796
|
*/
|
20214
20797
|
releaseId: string;
|
20798
|
+
/** @description Instructs Uniform to resolve data using Unpublished Mode for Data Sources which support it, */
|
20799
|
+
dataResourcesVariant: "unpublished";
|
20215
20800
|
};
|
20216
20801
|
};
|
20217
20802
|
operations: {};
|
@@ -20287,6 +20872,8 @@ interface paths$5 {
|
|
20287
20872
|
* 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
|
20288
20873
|
*/
|
20289
20874
|
releaseId?: components$3["parameters"]["releaseId"];
|
20875
|
+
/** Instructs Uniform to resolve data using Unpublished Mode for Data Sources which support it, */
|
20876
|
+
dataResourcesVariant?: components$3["parameters"]["dataResourcesVariant"];
|
20290
20877
|
};
|
20291
20878
|
};
|
20292
20879
|
responses: {
|
@@ -20332,6 +20919,13 @@ interface components$3 {
|
|
20332
20919
|
/** @description The route that was matched in the project map */
|
20333
20920
|
matchedRoute: string;
|
20334
20921
|
dynamicInputs?: components$3["schemas"]["RouteDynamicInputs"];
|
20922
|
+
/**
|
20923
|
+
* @description Indicates that the data resources were resolved using Unpublished Mode for Data Sources which support it.
|
20924
|
+
* So it can contained unpublished data.
|
20925
|
+
*
|
20926
|
+
* @enum {string}
|
20927
|
+
*/
|
20928
|
+
dataResourcesVariant?: "unpublished";
|
20335
20929
|
/** @enum {string} */
|
20336
20930
|
type: "composition";
|
20337
20931
|
compositionApiResponse: external$5["v1-canvas.swagger.yml"]["components"]["schemas"]["CompositionApiResponse"];
|
@@ -20412,6 +21006,8 @@ interface components$3 {
|
|
20412
21006
|
* 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
|
20413
21007
|
*/
|
20414
21008
|
releaseId: string;
|
21009
|
+
/** @description Instructs Uniform to resolve data using Unpublished Mode for Data Sources which support it, */
|
21010
|
+
dataResourcesVariant: "unpublished";
|
20415
21011
|
};
|
20416
21012
|
}
|
20417
21013
|
interface external$5 {
|
@@ -20969,6 +21565,35 @@ interface external$5 {
|
|
20969
21565
|
* @enum {string}
|
20970
21566
|
*/
|
20971
21567
|
OverrideOptions: "yes" | "no";
|
21568
|
+
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
21569
|
+
AlternativeDataSourceData: {
|
21570
|
+
/** @description Base resource URL of the data source. No trailing slash */
|
21571
|
+
baseUrl: string;
|
21572
|
+
/** @description HTTP headers to pass with requests to the data source */
|
21573
|
+
headers?: {
|
21574
|
+
key: string;
|
21575
|
+
value: string;
|
21576
|
+
omitIfEmpty?: boolean;
|
21577
|
+
}[];
|
21578
|
+
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
21579
|
+
parameters?: {
|
21580
|
+
key: string;
|
21581
|
+
value: string;
|
21582
|
+
omitIfEmpty?: boolean;
|
21583
|
+
}[];
|
21584
|
+
/** @description Variables needed to make calls to the data source */
|
21585
|
+
variables?: {
|
21586
|
+
[key: string]: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
21587
|
+
};
|
21588
|
+
/** @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 */
|
21589
|
+
customPublic?: {
|
21590
|
+
[key: string]: unknown;
|
21591
|
+
};
|
21592
|
+
/** @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 */
|
21593
|
+
custom?: {
|
21594
|
+
[key: string]: unknown;
|
21595
|
+
};
|
21596
|
+
};
|
20972
21597
|
/**
|
20973
21598
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
20974
21599
|
* These are created in the UI and shared across a whole project.
|
@@ -21005,6 +21630,11 @@ interface external$5 {
|
|
21005
21630
|
localeMapping?: {
|
21006
21631
|
[key: string]: string;
|
21007
21632
|
};
|
21633
|
+
/**
|
21634
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
21635
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
21636
|
+
*/
|
21637
|
+
enableUnpublishedMode?: boolean;
|
21008
21638
|
/** @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 */
|
21009
21639
|
customPublic?: {
|
21010
21640
|
[key: string]: unknown;
|
@@ -21013,6 +21643,10 @@ interface external$5 {
|
|
21013
21643
|
custom?: {
|
21014
21644
|
[key: string]: unknown;
|
21015
21645
|
};
|
21646
|
+
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
21647
|
+
variants?: {
|
21648
|
+
unpublished?: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
21649
|
+
};
|
21016
21650
|
};
|
21017
21651
|
/** @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 */
|
21018
21652
|
DataType: {
|
@@ -21111,6 +21745,12 @@ interface external$5 {
|
|
21111
21745
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
21112
21746
|
*/
|
21113
21747
|
optionalPatternParameter?: boolean;
|
21748
|
+
/**
|
21749
|
+
* @description Resolve this data resource with draft mode content. TBD
|
21750
|
+
*
|
21751
|
+
* @enum {string}
|
21752
|
+
*/
|
21753
|
+
dataSourceVariant?: "unpublished";
|
21114
21754
|
variables?: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
21115
21755
|
};
|
21116
21756
|
/** @description Variable values for a data resource */
|
@@ -22638,6 +23278,11 @@ type DataResolutionParameters = {
|
|
22638
23278
|
* Controls how many levels deep content references should be resolved.
|
22639
23279
|
*/
|
22640
23280
|
resolutionDepth?: number;
|
23281
|
+
/**
|
23282
|
+
* Controls which data source variant to use when fetching this data resources for "editing" or "testing" fetch context.
|
23283
|
+
* For example if it contains "unpublished" we will fetch unpublished data inside Canvas Editor by default.
|
23284
|
+
*/
|
23285
|
+
dataSourceVariant?: DataSourceVariantsKeys;
|
22641
23286
|
};
|
22642
23287
|
/** Types of issue that can occur when fetching composition data */
|
22643
23288
|
type DataResolutionIssue = PatternIssue | DataResourceIssue | MaxDepthExceededIssue | DataElementBindingIssue | DynamicInputIssue | DataResolutionConfigIssue;
|
@@ -22661,6 +23306,16 @@ type DataElementBindingIssue = DataResolutionIssueCore & {
|
|
22661
23306
|
/** An error that occurred fetching a data defined on the composition or a pattern within */
|
22662
23307
|
type DataResourceIssue = DataResolutionIssueCore & {
|
22663
23308
|
type: 'data';
|
23309
|
+
/** subtype that helps to distinguish between different issues coming from Data Resource to address those issues in a better way
|
23310
|
+
*
|
23311
|
+
* - `unpublishedData` - issue related to unpublished data, for example a warning that resolved data is contains Draft Data and may affect the published content
|
23312
|
+
* - `configuration` - special handling of wrong credentials like token has expired, wrong token, etc.
|
23313
|
+
*/
|
23314
|
+
subType?: 'unpublishedData' | 'configuration';
|
23315
|
+
/**
|
23316
|
+
* Id of a data which caused the issue. This is useful when the issue may benefot from having e.g. Entry Id and we can render a deep link to act upon it.
|
23317
|
+
*/
|
23318
|
+
issueReference?: string;
|
22664
23319
|
dataName: string;
|
22665
23320
|
dataType: string;
|
22666
23321
|
};
|
@@ -23843,6 +24498,35 @@ interface external$3 {
|
|
23843
24498
|
* @enum {string}
|
23844
24499
|
*/
|
23845
24500
|
OverrideOptions: "yes" | "no";
|
24501
|
+
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
24502
|
+
AlternativeDataSourceData: {
|
24503
|
+
/** @description Base resource URL of the data source. No trailing slash */
|
24504
|
+
baseUrl: string;
|
24505
|
+
/** @description HTTP headers to pass with requests to the data source */
|
24506
|
+
headers?: {
|
24507
|
+
key: string;
|
24508
|
+
value: string;
|
24509
|
+
omitIfEmpty?: boolean;
|
24510
|
+
}[];
|
24511
|
+
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
24512
|
+
parameters?: {
|
24513
|
+
key: string;
|
24514
|
+
value: string;
|
24515
|
+
omitIfEmpty?: boolean;
|
24516
|
+
}[];
|
24517
|
+
/** @description Variables needed to make calls to the data source */
|
24518
|
+
variables?: {
|
24519
|
+
[key: string]: external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
24520
|
+
};
|
24521
|
+
/** @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 */
|
24522
|
+
customPublic?: {
|
24523
|
+
[key: string]: unknown;
|
24524
|
+
};
|
24525
|
+
/** @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 */
|
24526
|
+
custom?: {
|
24527
|
+
[key: string]: unknown;
|
24528
|
+
};
|
24529
|
+
};
|
23846
24530
|
/**
|
23847
24531
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
23848
24532
|
* These are created in the UI and shared across a whole project.
|
@@ -23879,6 +24563,11 @@ interface external$3 {
|
|
23879
24563
|
localeMapping?: {
|
23880
24564
|
[key: string]: string;
|
23881
24565
|
};
|
24566
|
+
/**
|
24567
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
24568
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
24569
|
+
*/
|
24570
|
+
enableUnpublishedMode?: boolean;
|
23882
24571
|
/** @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 */
|
23883
24572
|
customPublic?: {
|
23884
24573
|
[key: string]: unknown;
|
@@ -23887,6 +24576,10 @@ interface external$3 {
|
|
23887
24576
|
custom?: {
|
23888
24577
|
[key: string]: unknown;
|
23889
24578
|
};
|
24579
|
+
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
24580
|
+
variants?: {
|
24581
|
+
unpublished?: external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
24582
|
+
};
|
23890
24583
|
};
|
23891
24584
|
/** @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 */
|
23892
24585
|
DataType: {
|
@@ -23985,6 +24678,12 @@ interface external$3 {
|
|
23985
24678
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
23986
24679
|
*/
|
23987
24680
|
optionalPatternParameter?: boolean;
|
24681
|
+
/**
|
24682
|
+
* @description Resolve this data resource with draft mode content. TBD
|
24683
|
+
*
|
24684
|
+
* @enum {string}
|
24685
|
+
*/
|
24686
|
+
dataSourceVariant?: "unpublished";
|
23988
24687
|
variables?: external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
23989
24688
|
};
|
23990
24689
|
/** @description Variable values for a data resource */
|
@@ -25432,6 +26131,35 @@ interface external$1 {
|
|
25432
26131
|
* @enum {string}
|
25433
26132
|
*/
|
25434
26133
|
OverrideOptions: "yes" | "no";
|
26134
|
+
/** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
|
26135
|
+
AlternativeDataSourceData: {
|
26136
|
+
/** @description Base resource URL of the data source. No trailing slash */
|
26137
|
+
baseUrl: string;
|
26138
|
+
/** @description HTTP headers to pass with requests to the data source */
|
26139
|
+
headers?: {
|
26140
|
+
key: string;
|
26141
|
+
value: string;
|
26142
|
+
omitIfEmpty?: boolean;
|
26143
|
+
}[];
|
26144
|
+
/** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
|
26145
|
+
parameters?: {
|
26146
|
+
key: string;
|
26147
|
+
value: string;
|
26148
|
+
omitIfEmpty?: boolean;
|
26149
|
+
}[];
|
26150
|
+
/** @description Variables needed to make calls to the data source */
|
26151
|
+
variables?: {
|
26152
|
+
[key: string]: external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
|
26153
|
+
};
|
26154
|
+
/** @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 */
|
26155
|
+
customPublic?: {
|
26156
|
+
[key: string]: unknown;
|
26157
|
+
};
|
26158
|
+
/** @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 */
|
26159
|
+
custom?: {
|
26160
|
+
[key: string]: unknown;
|
26161
|
+
};
|
26162
|
+
};
|
25435
26163
|
/**
|
25436
26164
|
* @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
|
25437
26165
|
* These are created in the UI and shared across a whole project.
|
@@ -25468,6 +26196,11 @@ interface external$1 {
|
|
25468
26196
|
localeMapping?: {
|
25469
26197
|
[key: string]: string;
|
25470
26198
|
};
|
26199
|
+
/**
|
26200
|
+
* @description If true, data source will require additional credentials to access unpublished data.
|
26201
|
+
* If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
|
26202
|
+
*/
|
26203
|
+
enableUnpublishedMode?: boolean;
|
25471
26204
|
/** @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 */
|
25472
26205
|
customPublic?: {
|
25473
26206
|
[key: string]: unknown;
|
@@ -25476,6 +26209,10 @@ interface external$1 {
|
|
25476
26209
|
custom?: {
|
25477
26210
|
[key: string]: unknown;
|
25478
26211
|
};
|
26212
|
+
/** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
|
26213
|
+
variants?: {
|
26214
|
+
unpublished?: external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
|
26215
|
+
};
|
25479
26216
|
};
|
25480
26217
|
/** @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 */
|
25481
26218
|
DataType: {
|
@@ -25574,6 +26311,12 @@ interface external$1 {
|
|
25574
26311
|
* If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
|
25575
26312
|
*/
|
25576
26313
|
optionalPatternParameter?: boolean;
|
26314
|
+
/**
|
26315
|
+
* @description Resolve this data resource with draft mode content. TBD
|
26316
|
+
*
|
26317
|
+
* @enum {string}
|
26318
|
+
*/
|
26319
|
+
dataSourceVariant?: "unpublished";
|
25577
26320
|
variables?: external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
|
25578
26321
|
};
|
25579
26322
|
/** @description Variable values for a data resource */
|
@@ -27546,4 +28289,4 @@ declare class WorkflowClient extends ApiClient {
|
|
27546
28289
|
|
27547
28290
|
declare const CanvasClientError: typeof ApiClientError;
|
27548
28291
|
|
27549
|
-
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, BlockFormatError, 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_DYNAMIC_TOKEN_RULE, CANVAS_VIZ_LOCALE_RULE, CANVAS_VIZ_QUIRKS_RULE, CanvasClient, CanvasClientError, type CanvasDefinitions, type CategoriesDeleteParameters, type CategoriesGetParameters, type CategoriesGetResponse, type CategoriesPutParameters, type Category, CategoryClient, type Channel, type ChannelMessage, type ChannelSubscription, ChildEnhancerBuilder, type ComponentDefinition, type ComponentDefinitionDeleteParameters, type ComponentDefinitionGetParameters, type ComponentDefinitionGetResponse, type ComponentDefinitionParameter, type ComponentDefinitionPermission, type ComponentDefinitionPutParameters, type ComponentDefinitionSlot, type ComponentDefinitionSlugSettings, type ComponentDefinitionVariant, type ComponentEnhancer, type ComponentEnhancerFunction, type ComponentEnhancerOptions, type ComponentInstance, type ComponentInstanceContextualEditing, type ComponentInstanceHistoryEntry, type ComponentInstanceHistoryGetParameters, type ComponentInstanceHistoryGetResponse, type ComponentLocationReference, type ComponentLocationReferenceV2, type ComponentOverridability, type ComponentOverride, type ComponentOverrides, type ComponentParameter, type ComponentParameterBlock, type ComponentParameterConditionalValue, type ComponentParameterContextualEditing, type ComponentParameterEnhancer, type ComponentParameterEnhancerFunction, type ComponentParameterEnhancerOptions, type CompositionDataDiagnostic, type CompositionDeleteParameters, type CompositionDiagnostics, type CompositionFilters, type CompositionGetByComponentIdParameters, type CompositionGetByIdParameters, type CompositionGetByNodeIdParameters, type CompositionGetByNodePathParameters, type CompositionGetBySlugParameters, type CompositionGetListResponse, type CompositionGetOrderBy, type CompositionGetParameters, type CompositionGetResponse, type CompositionGetValidResponses, type CompositionIssue, type CompositionPatternIssue, type CompositionPutParameters, type CompositionResolvedGetResponse, type CompositionResolvedListResponse, type CompositionUIStatus, ContentClient, type ContentType, type ContentTypeField, type ContextStorageUpdatedMessage, type ContextualEditingComponentReference, type CopiedComponentSubtree, type DataDiagnostic, type DataElementBindingIssue, type DataElementConnectionDefinition, type DataElementConnectionFailureAction, type DataElementConnectionFailureLogLevel, type DataResolutionConfigIssue, type DataResolutionIssue, type DataResolutionOption, type DataResolutionOptionNegative, type DataResolutionOptionPositive, type DataResolutionParameters, type DataResourceDefinition, type DataResourceDefinitions, type DataResourceIssue, type DataResourceVariables, type DataSource, DataSourceClient, type DataSourceDeleteParameters, type DataSourceGetParameters, type DataSourceGetResponse, type DataSourcePutParameters, type DataSourcesGetParameters, type DataSourcesGetResponse, type DataType, DataTypeClient, type DataTypeDeleteParameters, type DataTypeGetParameters, type DataTypeGetResponse, type DataTypePutParameters, type DataVariableDefinition, type DataWithProperties, type DeleteContentTypeOptions, type DeleteEntryOptions, type DismissPlaceholderMessage, type DynamicInputIssue, EDGE_CACHE_DISABLED, EDGE_DEFAULT_CACHE_TTL, EDGE_MAX_CACHE_TTL, EDGE_MIN_CACHE_TTL, EMPTY_COMPOSITION, type EdgehancersDiagnostics, type EdgehancersWholeResponseCacheDiagnostics, type EditorStateUpdatedMessage, EnhancerBuilder, type EnhancerContext, type EnhancerError, EntityReleasesClient, type EntityReleasesGetParameters, type EntityReleasesGetResponse, type EntriesGetParameters, type EntriesGetResponse, type EntriesHistoryGetParameters, type EntriesHistoryGetResponse, type EntriesResolvedListResponse, type Entry, type EntryData, type EntryFilters, type EntryList, type EvaluateCriteriaGroupOptions, type EvaluateNodeTreeVisibilityOptions, type EvaluateNodeVisibilityParameterOptions, type EvaluatePropertyCriteriaOptions, type EvaluateWalkTreePropertyCriteriaOptions, type EventNames, type Filters, type FindInNodeTreeReference, type FlattenProperty, type FlattenValues, type FlattenValuesOptions, type GetContentTypesOptions, type GetContentTypesResponse, type GetEntriesOptions, type GetEntriesResponse, type GetParameterAttributesProps, IN_CONTEXT_EDITOR_COMPONENT_END_ROLE, IN_CONTEXT_EDITOR_COMPONENT_START_ROLE, IN_CONTEXT_EDITOR_CONFIG_CHECK_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_EMBED_SCRIPT_ID, IN_CONTEXT_EDITOR_FORCED_SETTINGS_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_QUERY_STRING_PARAM, IS_RENDERED_BY_UNIFORM_ATTRIBUTE, type InvalidationPayload, LOCALE_DYNAMIC_INPUT_NAME, type LimitPolicy, type LinkComponentParameterValue, type LinkParamConfiguration, type LinkParamValue, type LinkParameterType, type LinkTypeConfiguration, type Locale, LocaleClient, type LocaleDeleteParameters, type LocalePutParameters, type LocalesGetParameters, type LocalesGetResponse, type LocalizeDeprecatedOptions, type LocalizeModernOptions, type 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 PropertyCriteriaMatch, type PutContentTypeBody, type PutEntryBody, type ReadyMessage, RelationshipClient, type RelationshipResultInstance, type Release, ReleaseClient, type ReleaseContent, ReleaseContentsClient, type ReleaseContentsDeleteBody, type ReleaseContentsGetParameters, type ReleaseContentsGetResponse, type ReleaseDeleteParameters, type ReleasePatchParameters, type ReleasePutParameters, type ReleaseState, type ReleasesGetParameters, type ReleasesGetResponse, type ReportRenderedCompositionsMessage, type RequestComponentSuggestionMessage, type ResolvedRouteGetResponse, type RichTextBuiltInElement, type RichTextBuiltInFormat, type RichTextParamConfiguration, type RichTextParamValue, type RootComponentInstance, type RootEntryReference, type RootLocationReference, RouteClient, type RouteDynamicInputs, type RouteGetParameters, type RouteGetResponse, type RouteGetResponseComposition, type RouteGetResponseEdgehancedComposition, type RouteGetResponseEdgehancedNotFound, type RouteGetResponseNotFound, type RouteGetResponseRedirect, SECRET_QUERY_STRING_PARAM, type SelectComponentMessage, type SelectParameterMessage, type SpecificProjectMap, type StringOperators, type SubscribeToCompositionOptions, type SuggestComponentMessage, type TreeNodeInfoTypes, type TriggerComponentActionMessage, type TriggerCompositionActionMessage, UncachedCanvasClient, UncachedCategoryClient, UncachedContentClient, UniqueBatchEntries, type UnsubscribeCallback, type UpdateComponentParameterMessage, type UpdateComponentReferencesMessage, type UpdateCompositionInternalMessage, type UpdateCompositionMessage, type UpdateContextualEditingStateInternalMessage, type UpdateFeatureFlagsMessage, type UpdatePreviewSettingsMessage, type VisibilityCriteria, type VisibilityCriteriaEvaluationResult, type VisibilityCriteriaGroup, type VisibilityParameterValue, type VisibilityRule, type VisibilityRules, type WalkComponentTreeActions, type WalkNodeTreeActions, type WalkNodeTreeOptions, WorkflowClient, type WorkflowDefinition, type WorkflowStage, type WorkflowStagePermission, type WorkflowStageTransition, type WorkflowStageTransitionPermission, type WorkflowsDeleteParameters, type WorkflowsGetParameters, type WorkflowsGetResponse, type WorkflowsPutParameters, bindVariables, bindVariablesToObject, compose, convertEntryToPutEntry, createBatchEnhancer, createCanvasChannel, createDynamicInputVisibilityRule, createDynamicTokenVisibilityRule, createEventBus, createLimitPolicy, createLocaleVisibilityRule, createQuirksVisibilityRule, createUniformApiEnhancer, createVariableReference, enhance, evaluateNodeVisibilityParameter, evaluatePropertyCriteria, evaluateVisibilityCriteriaGroup, evaluateWalkTreeNodeVisibility, evaluateWalkTreePropertyCriteria, extractLocales, findParameterInNodeTree, flattenValues, generateComponentPlaceholderId, generateHash, getBlockValue, getChannelName, getComponentJsonPointer, getComponentPath, getLocalizedPropertyValues, getNounForLocation, getNounForNode, getParameterAttributes, getPropertiesValue, getPropertyValue, hasReferencedVariables, isAddComponentMessage, isAllowedReferrer, isAssetParamValue, isAssetParamValueItem, isComponentActionMessage, isComponentPlaceholderId, isContextStorageUpdatedMessage, isDismissPlaceholderMessage, isEntryData, isLinkParamValue, 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 };
|
28292
|
+
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, BlockFormatError, 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_DYNAMIC_TOKEN_RULE, CANVAS_VIZ_LOCALE_RULE, CANVAS_VIZ_QUIRKS_RULE, CanvasClient, CanvasClientError, type CanvasDefinitions, type CategoriesDeleteParameters, type CategoriesGetParameters, type CategoriesGetResponse, type CategoriesPutParameters, type Category, CategoryClient, type Channel, type ChannelMessage, type ChannelSubscription, ChildEnhancerBuilder, type ComponentDefinition, type ComponentDefinitionDeleteParameters, type ComponentDefinitionGetParameters, type ComponentDefinitionGetResponse, type ComponentDefinitionParameter, type ComponentDefinitionPermission, type ComponentDefinitionPutParameters, type ComponentDefinitionSlot, type ComponentDefinitionSlugSettings, type ComponentDefinitionVariant, type ComponentEnhancer, type ComponentEnhancerFunction, type ComponentEnhancerOptions, type ComponentInstance, type ComponentInstanceContextualEditing, type ComponentInstanceHistoryEntry, type ComponentInstanceHistoryGetParameters, type ComponentInstanceHistoryGetResponse, type ComponentLocationReference, type ComponentLocationReferenceV2, type ComponentOverridability, type ComponentOverride, type ComponentOverrides, type ComponentParameter, type ComponentParameterBlock, type ComponentParameterConditionalValue, type ComponentParameterContextualEditing, type ComponentParameterEnhancer, type ComponentParameterEnhancerFunction, type ComponentParameterEnhancerOptions, type CompositionDataDiagnostic, type CompositionDeleteParameters, type CompositionDiagnostics, type CompositionFilters, type CompositionGetByComponentIdParameters, type CompositionGetByIdParameters, type CompositionGetByNodeIdParameters, type CompositionGetByNodePathParameters, type CompositionGetBySlugParameters, type CompositionGetListResponse, type CompositionGetOrderBy, type CompositionGetParameters, type CompositionGetResponse, type CompositionGetValidResponses, type CompositionIssue, type CompositionPatternIssue, type CompositionPutParameters, type CompositionResolvedGetResponse, type CompositionResolvedListResponse, type CompositionUIStatus, ContentClient, type ContentType, type ContentTypeField, type ContextStorageUpdatedMessage, type ContextualEditingComponentReference, type CopiedComponentSubtree, type DataDiagnostic, type DataElementBindingIssue, type DataElementConnectionDefinition, type DataElementConnectionFailureAction, type DataElementConnectionFailureLogLevel, type DataResolutionConfigIssue, type DataResolutionIssue, type DataResolutionOption, type DataResolutionOptionNegative, type DataResolutionOptionPositive, type DataResolutionParameters, type DataResourceDefinition, type DataResourceDefinitions, type DataResourceIssue, type DataResourceVariables, type DataSource, DataSourceClient, type DataSourceDeleteParameters, type DataSourceGetParameters, type DataSourceGetResponse, type DataSourcePutParameters, type 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 EvaluatePropertyCriteriaOptions, type EvaluateWalkTreePropertyCriteriaOptions, type EventNames, type Filters, type FindInNodeTreeReference, type FlattenProperty, type FlattenValues, type FlattenValuesOptions, type GetContentTypesOptions, type GetContentTypesResponse, type GetEntriesOptions, type GetEntriesResponse, type GetParameterAttributesProps, IN_CONTEXT_EDITOR_COMPONENT_END_ROLE, IN_CONTEXT_EDITOR_COMPONENT_START_ROLE, IN_CONTEXT_EDITOR_CONFIG_CHECK_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_EMBED_SCRIPT_ID, IN_CONTEXT_EDITOR_FORCED_SETTINGS_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_PLAYGROUND_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_QUERY_STRING_PARAM, IS_RENDERED_BY_UNIFORM_ATTRIBUTE, type InvalidationPayload, LOCALE_DYNAMIC_INPUT_NAME, type LimitPolicy, type LinkComponentParameterValue, type LinkParamConfiguration, type LinkParamValue, type LinkParameterType, type LinkTypeConfiguration, type Locale, LocaleClient, type LocaleDeleteParameters, type LocalePutParameters, type LocalesGetParameters, type LocalesGetResponse, type LocalizeDeprecatedOptions, type LocalizeModernOptions, type 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 PropertyCriteriaMatch, type PutContentTypeBody, type PutEntryBody, type ReadyMessage, RelationshipClient, type RelationshipResultInstance, type Release, ReleaseClient, type ReleaseContent, ReleaseContentsClient, type ReleaseContentsDeleteBody, type ReleaseContentsGetParameters, type ReleaseContentsGetResponse, type ReleaseDeleteParameters, type ReleasePatchParameters, type ReleasePutParameters, type ReleaseState, type ReleasesGetParameters, type ReleasesGetResponse, type ReportRenderedCompositionsMessage, type RequestComponentSuggestionMessage, type ResolvedRouteGetResponse, type RichTextBuiltInElement, type RichTextBuiltInFormat, type RichTextParamConfiguration, type RichTextParamValue, type RootComponentInstance, type RootEntryReference, type RootLocationReference, RouteClient, type RouteDynamicInputs, type RouteGetParameters, type RouteGetResponse, type RouteGetResponseComposition, type RouteGetResponseEdgehancedComposition, type RouteGetResponseEdgehancedNotFound, type RouteGetResponseNotFound, type RouteGetResponseRedirect, SECRET_QUERY_STRING_PARAM, type SelectComponentMessage, type SelectParameterMessage, type SpecificProjectMap, type StringOperators, type SubscribeToCompositionOptions, type SuggestComponentMessage, type TreeNodeInfoTypes, type TriggerComponentActionMessage, type TriggerCompositionActionMessage, UncachedCanvasClient, UncachedCategoryClient, UncachedContentClient, UniqueBatchEntries, type UnsubscribeCallback, type UpdateComponentParameterMessage, type UpdateComponentReferencesMessage, type UpdateCompositionInternalMessage, type UpdateCompositionMessage, type UpdateContextualEditingStateInternalMessage, type UpdateFeatureFlagsMessage, type UpdatePreviewSettingsMessage, type VisibilityCriteria, type VisibilityCriteriaEvaluationResult, type VisibilityCriteriaGroup, type VisibilityParameterValue, type VisibilityRule, type VisibilityRules, type WalkComponentTreeActions, type WalkNodeTreeActions, type WalkNodeTreeOptions, WorkflowClient, type WorkflowDefinition, type WorkflowStage, type WorkflowStagePermission, type WorkflowStageTransition, type WorkflowStageTransitionPermission, type WorkflowsDeleteParameters, type WorkflowsGetParameters, type WorkflowsGetResponse, type WorkflowsPutParameters, bindVariables, bindVariablesToObject, compose, convertEntryToPutEntry, createBatchEnhancer, createCanvasChannel, createDynamicInputVisibilityRule, createDynamicTokenVisibilityRule, createEventBus, createLimitPolicy, createLocaleVisibilityRule, createQuirksVisibilityRule, createUniformApiEnhancer, createVariableReference, enhance, evaluateNodeVisibilityParameter, evaluatePropertyCriteria, evaluateVisibilityCriteriaGroup, evaluateWalkTreeNodeVisibility, evaluateWalkTreePropertyCriteria, extractLocales, findParameterInNodeTree, flattenValues, generateComponentPlaceholderId, generateHash, getBlockValue, getChannelName, getComponentJsonPointer, getComponentPath, getLocalizedPropertyValues, getNounForLocation, getNounForNode, getParameterAttributes, getPropertiesValue, getPropertyValue, hasReferencedVariables, isAddComponentMessage, isAllowedReferrer, isAssetParamValue, isAssetParamValueItem, isComponentActionMessage, isComponentPlaceholderId, isContextStorageUpdatedMessage, isDismissPlaceholderMessage, isEntryData, isLinkParamValue, 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 };
|