@uniformdev/canvas 19.184.1 → 19.184.3-alpha.32

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.ts 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 */
@@ -13128,24 +13524,53 @@ interface external$a {
13128
13524
  parameters?: {
13129
13525
  [key: string]: external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["OverrideOptions"];
13130
13526
  };
13131
- /** @description Allows overriding a display variant is allowed if it is defined on the component the pattern is derived from. Default = false */
13132
- variants?: boolean;
13133
- /**
13134
- * @description If true, parameters that are not overridable will be hidden by default on pattern instances' editors.
13135
- * If false, all parameters will be shown on pattern instances' editors, but locked parameters will be read-only.
13136
- * If not set, the default is false
13137
- */
13138
- hideLockedParameters?: boolean;
13527
+ /** @description Allows overriding a display variant is allowed if it is defined on the component the pattern is derived from. Default = false */
13528
+ variants?: boolean;
13529
+ /**
13530
+ * @description If true, parameters that are not overridable will be hidden by default on pattern instances' editors.
13531
+ * If false, all parameters will be shown on pattern instances' editors, but locked parameters will be read-only.
13532
+ * If not set, the default is false
13533
+ */
13534
+ hideLockedParameters?: boolean;
13535
+ };
13536
+ /**
13537
+ * @description Whether a parameter is overridable
13538
+ *
13539
+ * NOTE: This is considered an internal data structure and is not guaranteed to be stable.
13540
+ * Future updates that do not break the overrides-applied state of a composition may be made without notice
13541
+ *
13542
+ * @enum {string}
13543
+ */
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
+ };
13139
13573
  };
13140
- /**
13141
- * @description Whether a parameter is overridable
13142
- *
13143
- * NOTE: This is considered an internal data structure and is not guaranteed to be stable.
13144
- * Future updates that do not break the overrides-applied state of a composition may be made without notice
13145
- *
13146
- * @enum {string}
13147
- */
13148
- OverrideOptions: "yes" | "no";
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 */
@@ -17428,6 +17958,11 @@ interface components$4 {
17428
17958
  limit: number;
17429
17959
  /** @description Includes stubs in the response (enabled by default); set to false to omit all stubs */
17430
17960
  withStubs: boolean;
17961
+ /**
17962
+ * @deprecated
17963
+ * @description Fetches unpublished data from all data resources which support unpublished data
17964
+ */
17965
+ dataSourceVariant: "unpublished";
17431
17966
  };
17432
17967
  }
17433
17968
  interface external$6 {
@@ -17985,6 +18520,35 @@ interface external$6 {
17985
18520
  * @enum {string}
17986
18521
  */
17987
18522
  OverrideOptions: "yes" | "no";
18523
+ /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
18524
+ AlternativeDataSourceData: {
18525
+ /** @description Base resource URL of the data source. No trailing slash */
18526
+ baseUrl: string;
18527
+ /** @description HTTP headers to pass with requests to the data source */
18528
+ headers?: {
18529
+ key: string;
18530
+ value: string;
18531
+ omitIfEmpty?: boolean;
18532
+ }[];
18533
+ /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
18534
+ parameters?: {
18535
+ key: string;
18536
+ value: string;
18537
+ omitIfEmpty?: boolean;
18538
+ }[];
18539
+ /** @description Variables needed to make calls to the data source */
18540
+ variables?: {
18541
+ [key: string]: external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
18542
+ };
18543
+ /** @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 */
18544
+ customPublic?: {
18545
+ [key: string]: unknown;
18546
+ };
18547
+ /** @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 */
18548
+ custom?: {
18549
+ [key: string]: unknown;
18550
+ };
18551
+ };
17988
18552
  /**
17989
18553
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
17990
18554
  * These are created in the UI and shared across a whole project.
@@ -18021,6 +18585,11 @@ interface external$6 {
18021
18585
  localeMapping?: {
18022
18586
  [key: string]: string;
18023
18587
  };
18588
+ /**
18589
+ * @description If true, data source will require additional credentials to access unpublished data.
18590
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
18591
+ */
18592
+ enableUnpublishedMode?: boolean;
18024
18593
  /** @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
18594
  customPublic?: {
18026
18595
  [key: string]: unknown;
@@ -18029,6 +18598,10 @@ interface external$6 {
18029
18598
  custom?: {
18030
18599
  [key: string]: unknown;
18031
18600
  };
18601
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
18602
+ variants?: {
18603
+ unpublished?: external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
18604
+ };
18032
18605
  };
18033
18606
  /** @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
18607
  DataType: {
@@ -18127,6 +18700,12 @@ interface external$6 {
18127
18700
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
18128
18701
  */
18129
18702
  optionalPatternParameter?: boolean;
18703
+ /**
18704
+ * @description Resolve this data resource with draft mode content. TBD
18705
+ *
18706
+ * @enum {string}
18707
+ */
18708
+ dataSourceVariant?: "unpublished";
18130
18709
  variables?: external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
18131
18710
  };
18132
18711
  /** @description Variable values for a data resource */
@@ -20087,6 +20666,12 @@ interface external$6 {
20087
20666
  * 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
20667
  */
20089
20668
  releaseId?: external$6["../../../lambda/functions/v1-route.swagger.yml"]["components"]["parameters"]["releaseId"];
20669
+ /**
20670
+ * Indicates the data variant that was fetched for data resources.
20671
+ * undefined: Data resources were resolved using published data from their data source
20672
+ * unpublished: Data resources which support unpublished data retrieved unpublished data from their data source. Data resources that did not support unpublished data retrieved published data instead.
20673
+ */
20674
+ dataResourcesVariant?: external$6["../../../lambda/functions/v1-route.swagger.yml"]["components"]["parameters"]["dataResourcesVariant"];
20090
20675
  };
20091
20676
  };
20092
20677
  responses: {
@@ -20132,6 +20717,14 @@ interface external$6 {
20132
20717
  /** @description The route that was matched in the project map */
20133
20718
  matchedRoute: string;
20134
20719
  dynamicInputs?: external$6["../../../lambda/functions/v1-route.swagger.yml"]["components"]["schemas"]["RouteDynamicInputs"];
20720
+ /**
20721
+ * @description Indicates the data variant that was fetched for data resources.
20722
+ * undefined: Data resources were resolved using published data from their data source
20723
+ * unpublished: Data resources which support unpublished data retrieved unpublished data from their data source. Data resources that did not support unpublished data retrieved published data instead.
20724
+ *
20725
+ * @enum {string}
20726
+ */
20727
+ dataResourcesVariant?: "unpublished";
20135
20728
  /** @enum {string} */
20136
20729
  type: "composition";
20137
20730
  compositionApiResponse: external$6["../../../lambda/functions/v1-canvas.swagger.yml"]["components"]["schemas"]["CompositionApiResponse"];
@@ -20212,6 +20805,12 @@ interface external$6 {
20212
20805
  * 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
20806
  */
20214
20807
  releaseId: string;
20808
+ /**
20809
+ * @description Indicates the data variant that was fetched for data resources.
20810
+ * undefined: Data resources were resolved using published data from their data source
20811
+ * unpublished: Data resources which support unpublished data retrieved unpublished data from their data source. Data resources that did not support unpublished data retrieved published data instead.
20812
+ */
20813
+ dataResourcesVariant: "unpublished";
20215
20814
  };
20216
20815
  };
20217
20816
  operations: {};
@@ -20287,6 +20886,12 @@ interface paths$5 {
20287
20886
  * 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
20887
  */
20289
20888
  releaseId?: components$3["parameters"]["releaseId"];
20889
+ /**
20890
+ * Indicates the data variant that was fetched for data resources.
20891
+ * undefined: Data resources were resolved using published data from their data source
20892
+ * unpublished: Data resources which support unpublished data retrieved unpublished data from their data source. Data resources that did not support unpublished data retrieved published data instead.
20893
+ */
20894
+ dataResourcesVariant?: components$3["parameters"]["dataResourcesVariant"];
20290
20895
  };
20291
20896
  };
20292
20897
  responses: {
@@ -20332,6 +20937,14 @@ interface components$3 {
20332
20937
  /** @description The route that was matched in the project map */
20333
20938
  matchedRoute: string;
20334
20939
  dynamicInputs?: components$3["schemas"]["RouteDynamicInputs"];
20940
+ /**
20941
+ * @description Indicates the data variant that was fetched for data resources.
20942
+ * undefined: Data resources were resolved using published data from their data source
20943
+ * unpublished: Data resources which support unpublished data retrieved unpublished data from their data source. Data resources that did not support unpublished data retrieved published data instead.
20944
+ *
20945
+ * @enum {string}
20946
+ */
20947
+ dataResourcesVariant?: "unpublished";
20335
20948
  /** @enum {string} */
20336
20949
  type: "composition";
20337
20950
  compositionApiResponse: external$5["v1-canvas.swagger.yml"]["components"]["schemas"]["CompositionApiResponse"];
@@ -20412,6 +21025,12 @@ interface components$3 {
20412
21025
  * 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
21026
  */
20414
21027
  releaseId: string;
21028
+ /**
21029
+ * @description Indicates the data variant that was fetched for data resources.
21030
+ * undefined: Data resources were resolved using published data from their data source
21031
+ * unpublished: Data resources which support unpublished data retrieved unpublished data from their data source. Data resources that did not support unpublished data retrieved published data instead.
21032
+ */
21033
+ dataResourcesVariant: "unpublished";
20415
21034
  };
20416
21035
  }
20417
21036
  interface external$5 {
@@ -20969,6 +21588,35 @@ interface external$5 {
20969
21588
  * @enum {string}
20970
21589
  */
20971
21590
  OverrideOptions: "yes" | "no";
21591
+ /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
21592
+ AlternativeDataSourceData: {
21593
+ /** @description Base resource URL of the data source. No trailing slash */
21594
+ baseUrl: string;
21595
+ /** @description HTTP headers to pass with requests to the data source */
21596
+ headers?: {
21597
+ key: string;
21598
+ value: string;
21599
+ omitIfEmpty?: boolean;
21600
+ }[];
21601
+ /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
21602
+ parameters?: {
21603
+ key: string;
21604
+ value: string;
21605
+ omitIfEmpty?: boolean;
21606
+ }[];
21607
+ /** @description Variables needed to make calls to the data source */
21608
+ variables?: {
21609
+ [key: string]: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
21610
+ };
21611
+ /** @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 */
21612
+ customPublic?: {
21613
+ [key: string]: unknown;
21614
+ };
21615
+ /** @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 */
21616
+ custom?: {
21617
+ [key: string]: unknown;
21618
+ };
21619
+ };
20972
21620
  /**
20973
21621
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
20974
21622
  * These are created in the UI and shared across a whole project.
@@ -21005,6 +21653,11 @@ interface external$5 {
21005
21653
  localeMapping?: {
21006
21654
  [key: string]: string;
21007
21655
  };
21656
+ /**
21657
+ * @description If true, data source will require additional credentials to access unpublished data.
21658
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
21659
+ */
21660
+ enableUnpublishedMode?: boolean;
21008
21661
  /** @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
21662
  customPublic?: {
21010
21663
  [key: string]: unknown;
@@ -21013,6 +21666,10 @@ interface external$5 {
21013
21666
  custom?: {
21014
21667
  [key: string]: unknown;
21015
21668
  };
21669
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
21670
+ variants?: {
21671
+ unpublished?: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
21672
+ };
21016
21673
  };
21017
21674
  /** @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
21675
  DataType: {
@@ -21111,6 +21768,12 @@ interface external$5 {
21111
21768
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
21112
21769
  */
21113
21770
  optionalPatternParameter?: boolean;
21771
+ /**
21772
+ * @description Resolve this data resource with draft mode content. TBD
21773
+ *
21774
+ * @enum {string}
21775
+ */
21776
+ dataSourceVariant?: "unpublished";
21114
21777
  variables?: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
21115
21778
  };
21116
21779
  /** @description Variable values for a data resource */
@@ -22638,6 +23301,11 @@ type DataResolutionParameters = {
22638
23301
  * Controls how many levels deep content references should be resolved.
22639
23302
  */
22640
23303
  resolutionDepth?: number;
23304
+ /**
23305
+ * Controls which data source variant to use when fetching this data resources for "editing" or "testing" fetch context.
23306
+ * For example if it contains "unpublished" we will fetch unpublished data inside Canvas Editor by default.
23307
+ */
23308
+ dataSourceVariant?: DataSourceVariantsKeys;
22641
23309
  };
22642
23310
  /** Types of issue that can occur when fetching composition data */
22643
23311
  type DataResolutionIssue = PatternIssue | DataResourceIssue | MaxDepthExceededIssue | DataElementBindingIssue | DynamicInputIssue | DataResolutionConfigIssue;
@@ -22661,6 +23329,16 @@ type DataElementBindingIssue = DataResolutionIssueCore & {
22661
23329
  /** An error that occurred fetching a data defined on the composition or a pattern within */
22662
23330
  type DataResourceIssue = DataResolutionIssueCore & {
22663
23331
  type: 'data';
23332
+ /** subtype that helps to distinguish between different issues coming from Data Resource to address those issues in a better way
23333
+ *
23334
+ * - `unpublishedData` - issue related to unpublished data, for example a warning that resolved data is contains Draft Data and may affect the published content
23335
+ * - `configuration` - special handling of wrong credentials like token has expired, wrong token, etc.
23336
+ */
23337
+ subType?: 'unpublishedData' | 'configuration';
23338
+ /**
23339
+ * Data Source-specific id of the data which caused the issue. This is useful when the issue may benefit from having e.g. Entry Id and we can render a deep link to act upon it.
23340
+ */
23341
+ issueReference?: string;
22664
23342
  dataName: string;
22665
23343
  dataType: string;
22666
23344
  };
@@ -23843,6 +24521,35 @@ interface external$3 {
23843
24521
  * @enum {string}
23844
24522
  */
23845
24523
  OverrideOptions: "yes" | "no";
24524
+ /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
24525
+ AlternativeDataSourceData: {
24526
+ /** @description Base resource URL of the data source. No trailing slash */
24527
+ baseUrl: string;
24528
+ /** @description HTTP headers to pass with requests to the data source */
24529
+ headers?: {
24530
+ key: string;
24531
+ value: string;
24532
+ omitIfEmpty?: boolean;
24533
+ }[];
24534
+ /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
24535
+ parameters?: {
24536
+ key: string;
24537
+ value: string;
24538
+ omitIfEmpty?: boolean;
24539
+ }[];
24540
+ /** @description Variables needed to make calls to the data source */
24541
+ variables?: {
24542
+ [key: string]: external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
24543
+ };
24544
+ /** @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 */
24545
+ customPublic?: {
24546
+ [key: string]: unknown;
24547
+ };
24548
+ /** @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 */
24549
+ custom?: {
24550
+ [key: string]: unknown;
24551
+ };
24552
+ };
23846
24553
  /**
23847
24554
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
23848
24555
  * These are created in the UI and shared across a whole project.
@@ -23879,6 +24586,11 @@ interface external$3 {
23879
24586
  localeMapping?: {
23880
24587
  [key: string]: string;
23881
24588
  };
24589
+ /**
24590
+ * @description If true, data source will require additional credentials to access unpublished data.
24591
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
24592
+ */
24593
+ enableUnpublishedMode?: boolean;
23882
24594
  /** @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
24595
  customPublic?: {
23884
24596
  [key: string]: unknown;
@@ -23887,6 +24599,10 @@ interface external$3 {
23887
24599
  custom?: {
23888
24600
  [key: string]: unknown;
23889
24601
  };
24602
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
24603
+ variants?: {
24604
+ unpublished?: external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
24605
+ };
23890
24606
  };
23891
24607
  /** @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
24608
  DataType: {
@@ -23985,6 +24701,12 @@ interface external$3 {
23985
24701
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
23986
24702
  */
23987
24703
  optionalPatternParameter?: boolean;
24704
+ /**
24705
+ * @description Resolve this data resource with draft mode content. TBD
24706
+ *
24707
+ * @enum {string}
24708
+ */
24709
+ dataSourceVariant?: "unpublished";
23988
24710
  variables?: external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
23989
24711
  };
23990
24712
  /** @description Variable values for a data resource */
@@ -25432,6 +26154,35 @@ interface external$1 {
25432
26154
  * @enum {string}
25433
26155
  */
25434
26156
  OverrideOptions: "yes" | "no";
26157
+ /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
26158
+ AlternativeDataSourceData: {
26159
+ /** @description Base resource URL of the data source. No trailing slash */
26160
+ baseUrl: string;
26161
+ /** @description HTTP headers to pass with requests to the data source */
26162
+ headers?: {
26163
+ key: string;
26164
+ value: string;
26165
+ omitIfEmpty?: boolean;
26166
+ }[];
26167
+ /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
26168
+ parameters?: {
26169
+ key: string;
26170
+ value: string;
26171
+ omitIfEmpty?: boolean;
26172
+ }[];
26173
+ /** @description Variables needed to make calls to the data source */
26174
+ variables?: {
26175
+ [key: string]: external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
26176
+ };
26177
+ /** @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 */
26178
+ customPublic?: {
26179
+ [key: string]: unknown;
26180
+ };
26181
+ /** @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 */
26182
+ custom?: {
26183
+ [key: string]: unknown;
26184
+ };
26185
+ };
25435
26186
  /**
25436
26187
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
25437
26188
  * These are created in the UI and shared across a whole project.
@@ -25468,6 +26219,11 @@ interface external$1 {
25468
26219
  localeMapping?: {
25469
26220
  [key: string]: string;
25470
26221
  };
26222
+ /**
26223
+ * @description If true, data source will require additional credentials to access unpublished data.
26224
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
26225
+ */
26226
+ enableUnpublishedMode?: boolean;
25471
26227
  /** @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
26228
  customPublic?: {
25473
26229
  [key: string]: unknown;
@@ -25476,6 +26232,10 @@ interface external$1 {
25476
26232
  custom?: {
25477
26233
  [key: string]: unknown;
25478
26234
  };
26235
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
26236
+ variants?: {
26237
+ unpublished?: external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
26238
+ };
25479
26239
  };
25480
26240
  /** @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
26241
  DataType: {
@@ -25574,6 +26334,12 @@ interface external$1 {
25574
26334
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
25575
26335
  */
25576
26336
  optionalPatternParameter?: boolean;
26337
+ /**
26338
+ * @description Resolve this data resource with draft mode content. TBD
26339
+ *
26340
+ * @enum {string}
26341
+ */
26342
+ dataSourceVariant?: "unpublished";
25577
26343
  variables?: external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
25578
26344
  };
25579
26345
  /** @description Variable values for a data resource */
@@ -27546,4 +28312,4 @@ declare class WorkflowClient extends ApiClient {
27546
28312
 
27547
28313
  declare const CanvasClientError: typeof ApiClientError;
27548
28314
 
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 };
28315
+ 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 };