@uniformdev/canvas 19.185.1-alpha.8 → 19.186.2-alpha.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -660,6 +660,27 @@ 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
+ };
663
684
  /**
664
685
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
665
686
  * These are created in the UI and shared across a whole project.
@@ -696,6 +717,11 @@ interface external$j {
696
717
  localeMapping?: {
697
718
  [key: string]: string;
698
719
  };
720
+ /**
721
+ * @description If true, data source will require additional credentials to access unpublished data.
722
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
723
+ */
724
+ enableUnpublishedMode?: boolean;
699
725
  /** @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
726
  customPublic?: {
701
727
  [key: string]: unknown;
@@ -704,6 +730,10 @@ interface external$j {
704
730
  custom?: {
705
731
  [key: string]: unknown;
706
732
  };
733
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
734
+ variants?: {
735
+ unpublished?: external$j["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
736
+ };
707
737
  };
708
738
  /** @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
739
  DataType: {
@@ -802,6 +832,12 @@ interface external$j {
802
832
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
803
833
  */
804
834
  optionalPatternParameter?: boolean;
835
+ /**
836
+ * @description Resolve this data resource with draft mode content. TBD
837
+ *
838
+ * @enum {string}
839
+ */
840
+ dataSourceVariant?: "unpublished";
805
841
  variables?: external$j["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
806
842
  };
807
843
  /** @description Variable values for a data resource */
@@ -1291,6 +1327,11 @@ interface external$j {
1291
1327
  typeName?: string;
1292
1328
  /** @description List of locales that the composition is available in. If empty, available in all locales */
1293
1329
  locales: string[];
1330
+ /**
1331
+ * Format: date-time
1332
+ * @description Date and time the composition was last modified (or created if never modified). Uses ISO-8859-1 formatting and UTC timezone.
1333
+ */
1334
+ modified?: string;
1294
1335
  };
1295
1336
  ProjectMapNodeUpdate: {
1296
1337
  /**
@@ -1877,6 +1918,27 @@ interface components$8 {
1877
1918
  * @enum {string}
1878
1919
  */
1879
1920
  OverrideOptions: "yes" | "no";
1921
+ /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
1922
+ AlternativeDataSourceData: {
1923
+ /** @description Base resource URL of the data source. No trailing slash */
1924
+ baseUrl: string;
1925
+ /** @description HTTP headers to pass with requests to the data source */
1926
+ headers?: {
1927
+ key: string;
1928
+ value: string;
1929
+ omitIfEmpty?: boolean;
1930
+ }[];
1931
+ /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
1932
+ parameters?: {
1933
+ key: string;
1934
+ value: string;
1935
+ omitIfEmpty?: boolean;
1936
+ }[];
1937
+ /** @description Variables needed to make calls to the data source */
1938
+ variables?: {
1939
+ [key: string]: components$8["schemas"]["DataVariableDefinition"];
1940
+ };
1941
+ };
1880
1942
  /**
1881
1943
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
1882
1944
  * These are created in the UI and shared across a whole project.
@@ -1913,6 +1975,11 @@ interface components$8 {
1913
1975
  localeMapping?: {
1914
1976
  [key: string]: string;
1915
1977
  };
1978
+ /**
1979
+ * @description If true, data source will require additional credentials to access unpublished data.
1980
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
1981
+ */
1982
+ enableUnpublishedMode?: boolean;
1916
1983
  /** @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
1984
  customPublic?: {
1918
1985
  [key: string]: unknown;
@@ -1921,6 +1988,10 @@ interface components$8 {
1921
1988
  custom?: {
1922
1989
  [key: string]: unknown;
1923
1990
  };
1991
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
1992
+ variants?: {
1993
+ unpublished?: components$8["schemas"]["AlternativeDataSourceData"];
1994
+ };
1924
1995
  };
1925
1996
  /** @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
1997
  DataType: {
@@ -2019,6 +2090,12 @@ interface components$8 {
2019
2090
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
2020
2091
  */
2021
2092
  optionalPatternParameter?: boolean;
2093
+ /**
2094
+ * @description Resolve this data resource with draft mode content. TBD
2095
+ *
2096
+ * @enum {string}
2097
+ */
2098
+ dataSourceVariant?: "unpublished";
2022
2099
  variables?: components$8["schemas"]["DataResourceVariables"];
2023
2100
  };
2024
2101
  /** @description Variable values for a data resource */
@@ -2549,6 +2626,11 @@ interface external$i {
2549
2626
  typeName?: string;
2550
2627
  /** @description List of locales that the composition is available in. If empty, available in all locales */
2551
2628
  locales: string[];
2629
+ /**
2630
+ * Format: date-time
2631
+ * @description Date and time the composition was last modified (or created if never modified). Uses ISO-8859-1 formatting and UTC timezone.
2632
+ */
2633
+ modified?: string;
2552
2634
  };
2553
2635
  ProjectMapNodeUpdate: {
2554
2636
  /**
@@ -3251,6 +3333,27 @@ interface external$h {
3251
3333
  * @enum {string}
3252
3334
  */
3253
3335
  OverrideOptions: "yes" | "no";
3336
+ /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
3337
+ AlternativeDataSourceData: {
3338
+ /** @description Base resource URL of the data source. No trailing slash */
3339
+ baseUrl: string;
3340
+ /** @description HTTP headers to pass with requests to the data source */
3341
+ headers?: {
3342
+ key: string;
3343
+ value: string;
3344
+ omitIfEmpty?: boolean;
3345
+ }[];
3346
+ /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
3347
+ parameters?: {
3348
+ key: string;
3349
+ value: string;
3350
+ omitIfEmpty?: boolean;
3351
+ }[];
3352
+ /** @description Variables needed to make calls to the data source */
3353
+ variables?: {
3354
+ [key: string]: external$h["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
3355
+ };
3356
+ };
3254
3357
  /**
3255
3358
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
3256
3359
  * These are created in the UI and shared across a whole project.
@@ -3287,6 +3390,11 @@ interface external$h {
3287
3390
  localeMapping?: {
3288
3391
  [key: string]: string;
3289
3392
  };
3393
+ /**
3394
+ * @description If true, data source will require additional credentials to access unpublished data.
3395
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
3396
+ */
3397
+ enableUnpublishedMode?: boolean;
3290
3398
  /** @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
3399
  customPublic?: {
3292
3400
  [key: string]: unknown;
@@ -3295,6 +3403,10 @@ interface external$h {
3295
3403
  custom?: {
3296
3404
  [key: string]: unknown;
3297
3405
  };
3406
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
3407
+ variants?: {
3408
+ unpublished?: external$h["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
3409
+ };
3298
3410
  };
3299
3411
  /** @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
3412
  DataType: {
@@ -3393,6 +3505,12 @@ interface external$h {
3393
3505
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
3394
3506
  */
3395
3507
  optionalPatternParameter?: boolean;
3508
+ /**
3509
+ * @description Resolve this data resource with draft mode content. TBD
3510
+ *
3511
+ * @enum {string}
3512
+ */
3513
+ dataSourceVariant?: "unpublished";
3396
3514
  variables?: external$h["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
3397
3515
  };
3398
3516
  /** @description Variable values for a data resource */
@@ -3882,6 +4000,11 @@ interface external$h {
3882
4000
  typeName?: string;
3883
4001
  /** @description List of locales that the composition is available in. If empty, available in all locales */
3884
4002
  locales: string[];
4003
+ /**
4004
+ * Format: date-time
4005
+ * @description Date and time the composition was last modified (or created if never modified). Uses ISO-8859-1 formatting and UTC timezone.
4006
+ */
4007
+ modified?: string;
3885
4008
  };
3886
4009
  ProjectMapNodeUpdate: {
3887
4010
  /**
@@ -4726,6 +4849,27 @@ interface external$g {
4726
4849
  * @enum {string}
4727
4850
  */
4728
4851
  OverrideOptions: "yes" | "no";
4852
+ /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
4853
+ AlternativeDataSourceData: {
4854
+ /** @description Base resource URL of the data source. No trailing slash */
4855
+ baseUrl: string;
4856
+ /** @description HTTP headers to pass with requests to the data source */
4857
+ headers?: {
4858
+ key: string;
4859
+ value: string;
4860
+ omitIfEmpty?: boolean;
4861
+ }[];
4862
+ /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
4863
+ parameters?: {
4864
+ key: string;
4865
+ value: string;
4866
+ omitIfEmpty?: boolean;
4867
+ }[];
4868
+ /** @description Variables needed to make calls to the data source */
4869
+ variables?: {
4870
+ [key: string]: external$g["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
4871
+ };
4872
+ };
4729
4873
  /**
4730
4874
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
4731
4875
  * These are created in the UI and shared across a whole project.
@@ -4762,6 +4906,11 @@ interface external$g {
4762
4906
  localeMapping?: {
4763
4907
  [key: string]: string;
4764
4908
  };
4909
+ /**
4910
+ * @description If true, data source will require additional credentials to access unpublished data.
4911
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
4912
+ */
4913
+ enableUnpublishedMode?: boolean;
4765
4914
  /** @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
4915
  customPublic?: {
4767
4916
  [key: string]: unknown;
@@ -4770,6 +4919,10 @@ interface external$g {
4770
4919
  custom?: {
4771
4920
  [key: string]: unknown;
4772
4921
  };
4922
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
4923
+ variants?: {
4924
+ unpublished?: external$g["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
4925
+ };
4773
4926
  };
4774
4927
  /** @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
4928
  DataType: {
@@ -4868,6 +5021,12 @@ interface external$g {
4868
5021
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
4869
5022
  */
4870
5023
  optionalPatternParameter?: boolean;
5024
+ /**
5025
+ * @description Resolve this data resource with draft mode content. TBD
5026
+ *
5027
+ * @enum {string}
5028
+ */
5029
+ dataSourceVariant?: "unpublished";
4871
5030
  variables?: external$g["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
4872
5031
  };
4873
5032
  /** @description Variable values for a data resource */
@@ -5357,6 +5516,11 @@ interface external$g {
5357
5516
  typeName?: string;
5358
5517
  /** @description List of locales that the composition is available in. If empty, available in all locales */
5359
5518
  locales: string[];
5519
+ /**
5520
+ * Format: date-time
5521
+ * @description Date and time the composition was last modified (or created if never modified). Uses ISO-8859-1 formatting and UTC timezone.
5522
+ */
5523
+ modified?: string;
5360
5524
  };
5361
5525
  ProjectMapNodeUpdate: {
5362
5526
  /**
@@ -6522,6 +6686,27 @@ interface external$f {
6522
6686
  * @enum {string}
6523
6687
  */
6524
6688
  OverrideOptions: "yes" | "no";
6689
+ /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
6690
+ AlternativeDataSourceData: {
6691
+ /** @description Base resource URL of the data source. No trailing slash */
6692
+ baseUrl: string;
6693
+ /** @description HTTP headers to pass with requests to the data source */
6694
+ headers?: {
6695
+ key: string;
6696
+ value: string;
6697
+ omitIfEmpty?: boolean;
6698
+ }[];
6699
+ /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
6700
+ parameters?: {
6701
+ key: string;
6702
+ value: string;
6703
+ omitIfEmpty?: boolean;
6704
+ }[];
6705
+ /** @description Variables needed to make calls to the data source */
6706
+ variables?: {
6707
+ [key: string]: external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
6708
+ };
6709
+ };
6525
6710
  /**
6526
6711
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
6527
6712
  * These are created in the UI and shared across a whole project.
@@ -6558,6 +6743,11 @@ interface external$f {
6558
6743
  localeMapping?: {
6559
6744
  [key: string]: string;
6560
6745
  };
6746
+ /**
6747
+ * @description If true, data source will require additional credentials to access unpublished data.
6748
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
6749
+ */
6750
+ enableUnpublishedMode?: boolean;
6561
6751
  /** @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
6752
  customPublic?: {
6563
6753
  [key: string]: unknown;
@@ -6566,6 +6756,10 @@ interface external$f {
6566
6756
  custom?: {
6567
6757
  [key: string]: unknown;
6568
6758
  };
6759
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
6760
+ variants?: {
6761
+ unpublished?: external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
6762
+ };
6569
6763
  };
6570
6764
  /** @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
6765
  DataType: {
@@ -6664,6 +6858,12 @@ interface external$f {
6664
6858
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
6665
6859
  */
6666
6860
  optionalPatternParameter?: boolean;
6861
+ /**
6862
+ * @description Resolve this data resource with draft mode content. TBD
6863
+ *
6864
+ * @enum {string}
6865
+ */
6866
+ dataSourceVariant?: "unpublished";
6667
6867
  variables?: external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
6668
6868
  };
6669
6869
  /** @description Variable values for a data resource */
@@ -7153,6 +7353,11 @@ interface external$f {
7153
7353
  typeName?: string;
7154
7354
  /** @description List of locales that the composition is available in. If empty, available in all locales */
7155
7355
  locales: string[];
7356
+ /**
7357
+ * Format: date-time
7358
+ * @description Date and time the composition was last modified (or created if never modified). Uses ISO-8859-1 formatting and UTC timezone.
7359
+ */
7360
+ modified?: string;
7156
7361
  };
7157
7362
  ProjectMapNodeUpdate: {
7158
7363
  /**
@@ -7825,6 +8030,27 @@ interface external$e {
7825
8030
  * @enum {string}
7826
8031
  */
7827
8032
  OverrideOptions: "yes" | "no";
8033
+ /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
8034
+ AlternativeDataSourceData: {
8035
+ /** @description Base resource URL of the data source. No trailing slash */
8036
+ baseUrl: string;
8037
+ /** @description HTTP headers to pass with requests to the data source */
8038
+ headers?: {
8039
+ key: string;
8040
+ value: string;
8041
+ omitIfEmpty?: boolean;
8042
+ }[];
8043
+ /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
8044
+ parameters?: {
8045
+ key: string;
8046
+ value: string;
8047
+ omitIfEmpty?: boolean;
8048
+ }[];
8049
+ /** @description Variables needed to make calls to the data source */
8050
+ variables?: {
8051
+ [key: string]: external$e["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
8052
+ };
8053
+ };
7828
8054
  /**
7829
8055
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
7830
8056
  * These are created in the UI and shared across a whole project.
@@ -7861,6 +8087,11 @@ interface external$e {
7861
8087
  localeMapping?: {
7862
8088
  [key: string]: string;
7863
8089
  };
8090
+ /**
8091
+ * @description If true, data source will require additional credentials to access unpublished data.
8092
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
8093
+ */
8094
+ enableUnpublishedMode?: boolean;
7864
8095
  /** @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
8096
  customPublic?: {
7866
8097
  [key: string]: unknown;
@@ -7869,6 +8100,10 @@ interface external$e {
7869
8100
  custom?: {
7870
8101
  [key: string]: unknown;
7871
8102
  };
8103
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
8104
+ variants?: {
8105
+ unpublished?: external$e["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
8106
+ };
7872
8107
  };
7873
8108
  /** @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
8109
  DataType: {
@@ -7967,6 +8202,12 @@ interface external$e {
7967
8202
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
7968
8203
  */
7969
8204
  optionalPatternParameter?: boolean;
8205
+ /**
8206
+ * @description Resolve this data resource with draft mode content. TBD
8207
+ *
8208
+ * @enum {string}
8209
+ */
8210
+ dataSourceVariant?: "unpublished";
7970
8211
  variables?: external$e["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
7971
8212
  };
7972
8213
  /** @description Variable values for a data resource */
@@ -8456,6 +8697,11 @@ interface external$e {
8456
8697
  typeName?: string;
8457
8698
  /** @description List of locales that the composition is available in. If empty, available in all locales */
8458
8699
  locales: string[];
8700
+ /**
8701
+ * Format: date-time
8702
+ * @description Date and time the composition was last modified (or created if never modified). Uses ISO-8859-1 formatting and UTC timezone.
8703
+ */
8704
+ modified?: string;
8459
8705
  };
8460
8706
  ProjectMapNodeUpdate: {
8461
8707
  /**
@@ -9185,6 +9431,27 @@ interface external$d {
9185
9431
  * @enum {string}
9186
9432
  */
9187
9433
  OverrideOptions: "yes" | "no";
9434
+ /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
9435
+ AlternativeDataSourceData: {
9436
+ /** @description Base resource URL of the data source. No trailing slash */
9437
+ baseUrl: string;
9438
+ /** @description HTTP headers to pass with requests to the data source */
9439
+ headers?: {
9440
+ key: string;
9441
+ value: string;
9442
+ omitIfEmpty?: boolean;
9443
+ }[];
9444
+ /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
9445
+ parameters?: {
9446
+ key: string;
9447
+ value: string;
9448
+ omitIfEmpty?: boolean;
9449
+ }[];
9450
+ /** @description Variables needed to make calls to the data source */
9451
+ variables?: {
9452
+ [key: string]: external$d["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
9453
+ };
9454
+ };
9188
9455
  /**
9189
9456
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
9190
9457
  * These are created in the UI and shared across a whole project.
@@ -9221,6 +9488,11 @@ interface external$d {
9221
9488
  localeMapping?: {
9222
9489
  [key: string]: string;
9223
9490
  };
9491
+ /**
9492
+ * @description If true, data source will require additional credentials to access unpublished data.
9493
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
9494
+ */
9495
+ enableUnpublishedMode?: boolean;
9224
9496
  /** @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
9497
  customPublic?: {
9226
9498
  [key: string]: unknown;
@@ -9229,6 +9501,10 @@ interface external$d {
9229
9501
  custom?: {
9230
9502
  [key: string]: unknown;
9231
9503
  };
9504
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
9505
+ variants?: {
9506
+ unpublished?: external$d["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
9507
+ };
9232
9508
  };
9233
9509
  /** @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
9510
  DataType: {
@@ -9327,6 +9603,12 @@ interface external$d {
9327
9603
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
9328
9604
  */
9329
9605
  optionalPatternParameter?: boolean;
9606
+ /**
9607
+ * @description Resolve this data resource with draft mode content. TBD
9608
+ *
9609
+ * @enum {string}
9610
+ */
9611
+ dataSourceVariant?: "unpublished";
9330
9612
  variables?: external$d["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
9331
9613
  };
9332
9614
  /** @description Variable values for a data resource */
@@ -9816,6 +10098,11 @@ interface external$d {
9816
10098
  typeName?: string;
9817
10099
  /** @description List of locales that the composition is available in. If empty, available in all locales */
9818
10100
  locales: string[];
10101
+ /**
10102
+ * Format: date-time
10103
+ * @description Date and time the composition was last modified (or created if never modified). Uses ISO-8859-1 formatting and UTC timezone.
10104
+ */
10105
+ modified?: string;
9819
10106
  };
9820
10107
  ProjectMapNodeUpdate: {
9821
10108
  /**
@@ -10482,6 +10769,27 @@ interface external$c {
10482
10769
  * @enum {string}
10483
10770
  */
10484
10771
  OverrideOptions: "yes" | "no";
10772
+ /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
10773
+ AlternativeDataSourceData: {
10774
+ /** @description Base resource URL of the data source. No trailing slash */
10775
+ baseUrl: string;
10776
+ /** @description HTTP headers to pass with requests to the data source */
10777
+ headers?: {
10778
+ key: string;
10779
+ value: string;
10780
+ omitIfEmpty?: boolean;
10781
+ }[];
10782
+ /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
10783
+ parameters?: {
10784
+ key: string;
10785
+ value: string;
10786
+ omitIfEmpty?: boolean;
10787
+ }[];
10788
+ /** @description Variables needed to make calls to the data source */
10789
+ variables?: {
10790
+ [key: string]: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
10791
+ };
10792
+ };
10485
10793
  /**
10486
10794
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
10487
10795
  * These are created in the UI and shared across a whole project.
@@ -10518,6 +10826,11 @@ interface external$c {
10518
10826
  localeMapping?: {
10519
10827
  [key: string]: string;
10520
10828
  };
10829
+ /**
10830
+ * @description If true, data source will require additional credentials to access unpublished data.
10831
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
10832
+ */
10833
+ enableUnpublishedMode?: boolean;
10521
10834
  /** @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
10835
  customPublic?: {
10523
10836
  [key: string]: unknown;
@@ -10526,6 +10839,10 @@ interface external$c {
10526
10839
  custom?: {
10527
10840
  [key: string]: unknown;
10528
10841
  };
10842
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
10843
+ variants?: {
10844
+ unpublished?: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
10845
+ };
10529
10846
  };
10530
10847
  /** @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
10848
  DataType: {
@@ -10624,6 +10941,12 @@ interface external$c {
10624
10941
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
10625
10942
  */
10626
10943
  optionalPatternParameter?: boolean;
10944
+ /**
10945
+ * @description Resolve this data resource with draft mode content. TBD
10946
+ *
10947
+ * @enum {string}
10948
+ */
10949
+ dataSourceVariant?: "unpublished";
10627
10950
  variables?: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
10628
10951
  };
10629
10952
  /** @description Variable values for a data resource */
@@ -11113,6 +11436,11 @@ interface external$c {
11113
11436
  typeName?: string;
11114
11437
  /** @description List of locales that the composition is available in. If empty, available in all locales */
11115
11438
  locales: string[];
11439
+ /**
11440
+ * Format: date-time
11441
+ * @description Date and time the composition was last modified (or created if never modified). Uses ISO-8859-1 formatting and UTC timezone.
11442
+ */
11443
+ modified?: string;
11116
11444
  };
11117
11445
  ProjectMapNodeUpdate: {
11118
11446
  /**
@@ -11814,6 +12142,27 @@ interface external$b {
11814
12142
  * @enum {string}
11815
12143
  */
11816
12144
  OverrideOptions: "yes" | "no";
12145
+ /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
12146
+ AlternativeDataSourceData: {
12147
+ /** @description Base resource URL of the data source. No trailing slash */
12148
+ baseUrl: string;
12149
+ /** @description HTTP headers to pass with requests to the data source */
12150
+ headers?: {
12151
+ key: string;
12152
+ value: string;
12153
+ omitIfEmpty?: boolean;
12154
+ }[];
12155
+ /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
12156
+ parameters?: {
12157
+ key: string;
12158
+ value: string;
12159
+ omitIfEmpty?: boolean;
12160
+ }[];
12161
+ /** @description Variables needed to make calls to the data source */
12162
+ variables?: {
12163
+ [key: string]: external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
12164
+ };
12165
+ };
11817
12166
  /**
11818
12167
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
11819
12168
  * These are created in the UI and shared across a whole project.
@@ -11850,6 +12199,11 @@ interface external$b {
11850
12199
  localeMapping?: {
11851
12200
  [key: string]: string;
11852
12201
  };
12202
+ /**
12203
+ * @description If true, data source will require additional credentials to access unpublished data.
12204
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
12205
+ */
12206
+ enableUnpublishedMode?: boolean;
11853
12207
  /** @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
12208
  customPublic?: {
11855
12209
  [key: string]: unknown;
@@ -11858,6 +12212,10 @@ interface external$b {
11858
12212
  custom?: {
11859
12213
  [key: string]: unknown;
11860
12214
  };
12215
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
12216
+ variants?: {
12217
+ unpublished?: external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
12218
+ };
11861
12219
  };
11862
12220
  /** @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
12221
  DataType: {
@@ -11956,6 +12314,12 @@ interface external$b {
11956
12314
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
11957
12315
  */
11958
12316
  optionalPatternParameter?: boolean;
12317
+ /**
12318
+ * @description Resolve this data resource with draft mode content. TBD
12319
+ *
12320
+ * @enum {string}
12321
+ */
12322
+ dataSourceVariant?: "unpublished";
11959
12323
  variables?: external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
11960
12324
  };
11961
12325
  /** @description Variable values for a data resource */
@@ -12445,6 +12809,11 @@ interface external$b {
12445
12809
  typeName?: string;
12446
12810
  /** @description List of locales that the composition is available in. If empty, available in all locales */
12447
12811
  locales: string[];
12812
+ /**
12813
+ * Format: date-time
12814
+ * @description Date and time the composition was last modified (or created if never modified). Uses ISO-8859-1 formatting and UTC timezone.
12815
+ */
12816
+ modified?: string;
12448
12817
  };
12449
12818
  ProjectMapNodeUpdate: {
12450
12819
  /**
@@ -13146,6 +13515,27 @@ interface external$a {
13146
13515
  * @enum {string}
13147
13516
  */
13148
13517
  OverrideOptions: "yes" | "no";
13518
+ /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
13519
+ AlternativeDataSourceData: {
13520
+ /** @description Base resource URL of the data source. No trailing slash */
13521
+ baseUrl: string;
13522
+ /** @description HTTP headers to pass with requests to the data source */
13523
+ headers?: {
13524
+ key: string;
13525
+ value: string;
13526
+ omitIfEmpty?: boolean;
13527
+ }[];
13528
+ /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
13529
+ parameters?: {
13530
+ key: string;
13531
+ value: string;
13532
+ omitIfEmpty?: boolean;
13533
+ }[];
13534
+ /** @description Variables needed to make calls to the data source */
13535
+ variables?: {
13536
+ [key: string]: external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
13537
+ };
13538
+ };
13149
13539
  /**
13150
13540
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
13151
13541
  * These are created in the UI and shared across a whole project.
@@ -13182,6 +13572,11 @@ interface external$a {
13182
13572
  localeMapping?: {
13183
13573
  [key: string]: string;
13184
13574
  };
13575
+ /**
13576
+ * @description If true, data source will require additional credentials to access unpublished data.
13577
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
13578
+ */
13579
+ enableUnpublishedMode?: boolean;
13185
13580
  /** @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
13581
  customPublic?: {
13187
13582
  [key: string]: unknown;
@@ -13190,6 +13585,10 @@ interface external$a {
13190
13585
  custom?: {
13191
13586
  [key: string]: unknown;
13192
13587
  };
13588
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
13589
+ variants?: {
13590
+ unpublished?: external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
13591
+ };
13193
13592
  };
13194
13593
  /** @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
13594
  DataType: {
@@ -13288,6 +13687,12 @@ interface external$a {
13288
13687
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
13289
13688
  */
13290
13689
  optionalPatternParameter?: boolean;
13690
+ /**
13691
+ * @description Resolve this data resource with draft mode content. TBD
13692
+ *
13693
+ * @enum {string}
13694
+ */
13695
+ dataSourceVariant?: "unpublished";
13291
13696
  variables?: external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
13292
13697
  };
13293
13698
  /** @description Variable values for a data resource */
@@ -13777,6 +14182,11 @@ interface external$a {
13777
14182
  typeName?: string;
13778
14183
  /** @description List of locales that the composition is available in. If empty, available in all locales */
13779
14184
  locales: string[];
14185
+ /**
14186
+ * Format: date-time
14187
+ * @description Date and time the composition was last modified (or created if never modified). Uses ISO-8859-1 formatting and UTC timezone.
14188
+ */
14189
+ modified?: string;
13780
14190
  };
13781
14191
  ProjectMapNodeUpdate: {
13782
14192
  /**
@@ -13889,6 +14299,8 @@ type DataType = components$8['schemas']['DataType'];
13889
14299
  type DataSource = components$8['schemas']['DataSource'];
13890
14300
  type DataVariableDefinition = components$8['schemas']['DataVariableDefinition'];
13891
14301
  type Prompt = components$8['schemas']['Prompt'];
14302
+ type DataSourceVariantsKeys = keyof NonNullable<DataSource['variants']>;
14303
+ type DataSourceVariantData = NonNullable<DataSource['variants']>['unpublished'];
13892
14304
 
13893
14305
  /**
13894
14306
  * This file was auto-generated by openapi-typescript.
@@ -15227,6 +15639,27 @@ interface external$8 {
15227
15639
  * @enum {string}
15228
15640
  */
15229
15641
  OverrideOptions: "yes" | "no";
15642
+ /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
15643
+ AlternativeDataSourceData: {
15644
+ /** @description Base resource URL of the data source. No trailing slash */
15645
+ baseUrl: string;
15646
+ /** @description HTTP headers to pass with requests to the data source */
15647
+ headers?: {
15648
+ key: string;
15649
+ value: string;
15650
+ omitIfEmpty?: boolean;
15651
+ }[];
15652
+ /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
15653
+ parameters?: {
15654
+ key: string;
15655
+ value: string;
15656
+ omitIfEmpty?: boolean;
15657
+ }[];
15658
+ /** @description Variables needed to make calls to the data source */
15659
+ variables?: {
15660
+ [key: string]: external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
15661
+ };
15662
+ };
15230
15663
  /**
15231
15664
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
15232
15665
  * These are created in the UI and shared across a whole project.
@@ -15263,6 +15696,11 @@ interface external$8 {
15263
15696
  localeMapping?: {
15264
15697
  [key: string]: string;
15265
15698
  };
15699
+ /**
15700
+ * @description If true, data source will require additional credentials to access unpublished data.
15701
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
15702
+ */
15703
+ enableUnpublishedMode?: boolean;
15266
15704
  /** @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
15705
  customPublic?: {
15268
15706
  [key: string]: unknown;
@@ -15271,6 +15709,10 @@ interface external$8 {
15271
15709
  custom?: {
15272
15710
  [key: string]: unknown;
15273
15711
  };
15712
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
15713
+ variants?: {
15714
+ unpublished?: external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
15715
+ };
15274
15716
  };
15275
15717
  /** @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
15718
  DataType: {
@@ -15369,6 +15811,12 @@ interface external$8 {
15369
15811
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
15370
15812
  */
15371
15813
  optionalPatternParameter?: boolean;
15814
+ /**
15815
+ * @description Resolve this data resource with draft mode content. TBD
15816
+ *
15817
+ * @enum {string}
15818
+ */
15819
+ dataSourceVariant?: "unpublished";
15372
15820
  variables?: external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
15373
15821
  };
15374
15822
  /** @description Variable values for a data resource */
@@ -15858,6 +16306,11 @@ interface external$8 {
15858
16306
  typeName?: string;
15859
16307
  /** @description List of locales that the composition is available in. If empty, available in all locales */
15860
16308
  locales: string[];
16309
+ /**
16310
+ * Format: date-time
16311
+ * @description Date and time the composition was last modified (or created if never modified). Uses ISO-8859-1 formatting and UTC timezone.
16312
+ */
16313
+ modified?: string;
15861
16314
  };
15862
16315
  ProjectMapNodeUpdate: {
15863
16316
  /**
@@ -16530,6 +16983,27 @@ interface external$7 {
16530
16983
  * @enum {string}
16531
16984
  */
16532
16985
  OverrideOptions: "yes" | "no";
16986
+ /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
16987
+ AlternativeDataSourceData: {
16988
+ /** @description Base resource URL of the data source. No trailing slash */
16989
+ baseUrl: string;
16990
+ /** @description HTTP headers to pass with requests to the data source */
16991
+ headers?: {
16992
+ key: string;
16993
+ value: string;
16994
+ omitIfEmpty?: boolean;
16995
+ }[];
16996
+ /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
16997
+ parameters?: {
16998
+ key: string;
16999
+ value: string;
17000
+ omitIfEmpty?: boolean;
17001
+ }[];
17002
+ /** @description Variables needed to make calls to the data source */
17003
+ variables?: {
17004
+ [key: string]: external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
17005
+ };
17006
+ };
16533
17007
  /**
16534
17008
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
16535
17009
  * These are created in the UI and shared across a whole project.
@@ -16566,6 +17040,11 @@ interface external$7 {
16566
17040
  localeMapping?: {
16567
17041
  [key: string]: string;
16568
17042
  };
17043
+ /**
17044
+ * @description If true, data source will require additional credentials to access unpublished data.
17045
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
17046
+ */
17047
+ enableUnpublishedMode?: boolean;
16569
17048
  /** @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
17049
  customPublic?: {
16571
17050
  [key: string]: unknown;
@@ -16574,6 +17053,10 @@ interface external$7 {
16574
17053
  custom?: {
16575
17054
  [key: string]: unknown;
16576
17055
  };
17056
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
17057
+ variants?: {
17058
+ unpublished?: external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
17059
+ };
16577
17060
  };
16578
17061
  /** @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
17062
  DataType: {
@@ -16672,6 +17155,12 @@ interface external$7 {
16672
17155
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
16673
17156
  */
16674
17157
  optionalPatternParameter?: boolean;
17158
+ /**
17159
+ * @description Resolve this data resource with draft mode content. TBD
17160
+ *
17161
+ * @enum {string}
17162
+ */
17163
+ dataSourceVariant?: "unpublished";
16675
17164
  variables?: external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
16676
17165
  };
16677
17166
  /** @description Variable values for a data resource */
@@ -17161,6 +17650,11 @@ interface external$7 {
17161
17650
  typeName?: string;
17162
17651
  /** @description List of locales that the composition is available in. If empty, available in all locales */
17163
17652
  locales: string[];
17653
+ /**
17654
+ * Format: date-time
17655
+ * @description Date and time the composition was last modified (or created if never modified). Uses ISO-8859-1 formatting and UTC timezone.
17656
+ */
17657
+ modified?: string;
17164
17658
  };
17165
17659
  ProjectMapNodeUpdate: {
17166
17660
  /**
@@ -17428,6 +17922,11 @@ interface components$4 {
17428
17922
  limit: number;
17429
17923
  /** @description Includes stubs in the response (enabled by default); set to false to omit all stubs */
17430
17924
  withStubs: boolean;
17925
+ /**
17926
+ * @deprecated
17927
+ * @description Fetches unpublished data from all data resources which support unpublished data
17928
+ */
17929
+ dataSourceVariant: "unpublished";
17431
17930
  };
17432
17931
  }
17433
17932
  interface external$6 {
@@ -17985,6 +18484,27 @@ interface external$6 {
17985
18484
  * @enum {string}
17986
18485
  */
17987
18486
  OverrideOptions: "yes" | "no";
18487
+ /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
18488
+ AlternativeDataSourceData: {
18489
+ /** @description Base resource URL of the data source. No trailing slash */
18490
+ baseUrl: string;
18491
+ /** @description HTTP headers to pass with requests to the data source */
18492
+ headers?: {
18493
+ key: string;
18494
+ value: string;
18495
+ omitIfEmpty?: boolean;
18496
+ }[];
18497
+ /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
18498
+ parameters?: {
18499
+ key: string;
18500
+ value: string;
18501
+ omitIfEmpty?: boolean;
18502
+ }[];
18503
+ /** @description Variables needed to make calls to the data source */
18504
+ variables?: {
18505
+ [key: string]: external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
18506
+ };
18507
+ };
17988
18508
  /**
17989
18509
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
17990
18510
  * These are created in the UI and shared across a whole project.
@@ -18021,6 +18541,11 @@ interface external$6 {
18021
18541
  localeMapping?: {
18022
18542
  [key: string]: string;
18023
18543
  };
18544
+ /**
18545
+ * @description If true, data source will require additional credentials to access unpublished data.
18546
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
18547
+ */
18548
+ enableUnpublishedMode?: boolean;
18024
18549
  /** @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
18550
  customPublic?: {
18026
18551
  [key: string]: unknown;
@@ -18029,6 +18554,10 @@ interface external$6 {
18029
18554
  custom?: {
18030
18555
  [key: string]: unknown;
18031
18556
  };
18557
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
18558
+ variants?: {
18559
+ unpublished?: external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
18560
+ };
18032
18561
  };
18033
18562
  /** @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
18563
  DataType: {
@@ -18127,6 +18656,12 @@ interface external$6 {
18127
18656
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
18128
18657
  */
18129
18658
  optionalPatternParameter?: boolean;
18659
+ /**
18660
+ * @description Resolve this data resource with draft mode content. TBD
18661
+ *
18662
+ * @enum {string}
18663
+ */
18664
+ dataSourceVariant?: "unpublished";
18130
18665
  variables?: external$6["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
18131
18666
  };
18132
18667
  /** @description Variable values for a data resource */
@@ -19750,6 +20285,11 @@ interface external$6 {
19750
20285
  typeName?: string;
19751
20286
  /** @description List of locales that the composition is available in. If empty, available in all locales */
19752
20287
  locales: string[];
20288
+ /**
20289
+ * Format: date-time
20290
+ * @description Date and time the composition was last modified (or created if never modified). Uses ISO-8859-1 formatting and UTC timezone.
20291
+ */
20292
+ modified?: string;
19753
20293
  };
19754
20294
  ProjectMapNodeUpdate: {
19755
20295
  /**
@@ -20087,6 +20627,12 @@ interface external$6 {
20087
20627
  * 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
20628
  */
20089
20629
  releaseId?: external$6["../../../lambda/functions/v1-route.swagger.yml"]["components"]["parameters"]["releaseId"];
20630
+ /**
20631
+ * Indicates the data variant that was fetched for data resources.
20632
+ * undefined: Data resources were resolved using published data from their data source
20633
+ * 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.
20634
+ */
20635
+ dataResourcesVariant?: external$6["../../../lambda/functions/v1-route.swagger.yml"]["components"]["parameters"]["dataResourcesVariant"];
20090
20636
  };
20091
20637
  };
20092
20638
  responses: {
@@ -20132,6 +20678,14 @@ interface external$6 {
20132
20678
  /** @description The route that was matched in the project map */
20133
20679
  matchedRoute: string;
20134
20680
  dynamicInputs?: external$6["../../../lambda/functions/v1-route.swagger.yml"]["components"]["schemas"]["RouteDynamicInputs"];
20681
+ /**
20682
+ * @description Indicates the data variant that was fetched for data resources.
20683
+ * undefined: Data resources were resolved using published data from their data source
20684
+ * 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.
20685
+ *
20686
+ * @enum {string}
20687
+ */
20688
+ dataResourcesVariant?: "unpublished";
20135
20689
  /** @enum {string} */
20136
20690
  type: "composition";
20137
20691
  compositionApiResponse: external$6["../../../lambda/functions/v1-canvas.swagger.yml"]["components"]["schemas"]["CompositionApiResponse"];
@@ -20212,6 +20766,12 @@ interface external$6 {
20212
20766
  * 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
20767
  */
20214
20768
  releaseId: string;
20769
+ /**
20770
+ * @description Indicates the data variant that was fetched for data resources.
20771
+ * undefined: Data resources were resolved using published data from their data source
20772
+ * 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.
20773
+ */
20774
+ dataResourcesVariant: "unpublished";
20215
20775
  };
20216
20776
  };
20217
20777
  operations: {};
@@ -20287,6 +20847,12 @@ interface paths$5 {
20287
20847
  * 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
20848
  */
20289
20849
  releaseId?: components$3["parameters"]["releaseId"];
20850
+ /**
20851
+ * Indicates the data variant that was fetched for data resources.
20852
+ * undefined: Data resources were resolved using published data from their data source
20853
+ * 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.
20854
+ */
20855
+ dataResourcesVariant?: components$3["parameters"]["dataResourcesVariant"];
20290
20856
  };
20291
20857
  };
20292
20858
  responses: {
@@ -20332,6 +20898,14 @@ interface components$3 {
20332
20898
  /** @description The route that was matched in the project map */
20333
20899
  matchedRoute: string;
20334
20900
  dynamicInputs?: components$3["schemas"]["RouteDynamicInputs"];
20901
+ /**
20902
+ * @description Indicates the data variant that was fetched for data resources.
20903
+ * undefined: Data resources were resolved using published data from their data source
20904
+ * 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.
20905
+ *
20906
+ * @enum {string}
20907
+ */
20908
+ dataResourcesVariant?: "unpublished";
20335
20909
  /** @enum {string} */
20336
20910
  type: "composition";
20337
20911
  compositionApiResponse: external$5["v1-canvas.swagger.yml"]["components"]["schemas"]["CompositionApiResponse"];
@@ -20412,6 +20986,12 @@ interface components$3 {
20412
20986
  * 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
20987
  */
20414
20988
  releaseId: string;
20989
+ /**
20990
+ * @description Indicates the data variant that was fetched for data resources.
20991
+ * undefined: Data resources were resolved using published data from their data source
20992
+ * 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.
20993
+ */
20994
+ dataResourcesVariant: "unpublished";
20415
20995
  };
20416
20996
  }
20417
20997
  interface external$5 {
@@ -20969,6 +21549,27 @@ interface external$5 {
20969
21549
  * @enum {string}
20970
21550
  */
20971
21551
  OverrideOptions: "yes" | "no";
21552
+ /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
21553
+ AlternativeDataSourceData: {
21554
+ /** @description Base resource URL of the data source. No trailing slash */
21555
+ baseUrl: string;
21556
+ /** @description HTTP headers to pass with requests to the data source */
21557
+ headers?: {
21558
+ key: string;
21559
+ value: string;
21560
+ omitIfEmpty?: boolean;
21561
+ }[];
21562
+ /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
21563
+ parameters?: {
21564
+ key: string;
21565
+ value: string;
21566
+ omitIfEmpty?: boolean;
21567
+ }[];
21568
+ /** @description Variables needed to make calls to the data source */
21569
+ variables?: {
21570
+ [key: string]: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
21571
+ };
21572
+ };
20972
21573
  /**
20973
21574
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
20974
21575
  * These are created in the UI and shared across a whole project.
@@ -21005,6 +21606,11 @@ interface external$5 {
21005
21606
  localeMapping?: {
21006
21607
  [key: string]: string;
21007
21608
  };
21609
+ /**
21610
+ * @description If true, data source will require additional credentials to access unpublished data.
21611
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
21612
+ */
21613
+ enableUnpublishedMode?: boolean;
21008
21614
  /** @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
21615
  customPublic?: {
21010
21616
  [key: string]: unknown;
@@ -21013,6 +21619,10 @@ interface external$5 {
21013
21619
  custom?: {
21014
21620
  [key: string]: unknown;
21015
21621
  };
21622
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
21623
+ variants?: {
21624
+ unpublished?: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
21625
+ };
21016
21626
  };
21017
21627
  /** @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
21628
  DataType: {
@@ -21111,6 +21721,12 @@ interface external$5 {
21111
21721
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
21112
21722
  */
21113
21723
  optionalPatternParameter?: boolean;
21724
+ /**
21725
+ * @description Resolve this data resource with draft mode content. TBD
21726
+ *
21727
+ * @enum {string}
21728
+ */
21729
+ dataSourceVariant?: "unpublished";
21114
21730
  variables?: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
21115
21731
  };
21116
21732
  /** @description Variable values for a data resource */
@@ -22201,6 +22817,11 @@ interface external$5 {
22201
22817
  typeName?: string;
22202
22818
  /** @description List of locales that the composition is available in. If empty, available in all locales */
22203
22819
  locales: string[];
22820
+ /**
22821
+ * Format: date-time
22822
+ * @description Date and time the composition was last modified (or created if never modified). Uses ISO-8859-1 formatting and UTC timezone.
22823
+ */
22824
+ modified?: string;
22204
22825
  };
22205
22826
  ProjectMapNodeUpdate: {
22206
22827
  /**
@@ -22638,6 +23259,11 @@ type DataResolutionParameters = {
22638
23259
  * Controls how many levels deep content references should be resolved.
22639
23260
  */
22640
23261
  resolutionDepth?: number;
23262
+ /**
23263
+ * Controls which data source variant to use when fetching this data resources for "editing" or "testing" fetch context.
23264
+ * For example if it contains "unpublished" we will fetch unpublished data inside Canvas Editor by default.
23265
+ */
23266
+ dataSourceVariant?: DataSourceVariantsKeys;
22641
23267
  };
22642
23268
  /** Types of issue that can occur when fetching composition data */
22643
23269
  type DataResolutionIssue = PatternIssue | DataResourceIssue | MaxDepthExceededIssue | DataElementBindingIssue | DynamicInputIssue | DataResolutionConfigIssue;
@@ -22661,6 +23287,16 @@ type DataElementBindingIssue = DataResolutionIssueCore & {
22661
23287
  /** An error that occurred fetching a data defined on the composition or a pattern within */
22662
23288
  type DataResourceIssue = DataResolutionIssueCore & {
22663
23289
  type: 'data';
23290
+ /** subtype that helps to distinguish between different issues coming from Data Resource to address those issues in a better way
23291
+ *
23292
+ * - `unpublishedData` - issue related to unpublished data, for example a warning that resolved data is contains Draft Data and may affect the published content
23293
+ * - `configuration` - special handling of wrong credentials like token has expired, wrong token, etc.
23294
+ */
23295
+ subType?: 'unpublishedData' | 'configuration';
23296
+ /**
23297
+ * 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.
23298
+ */
23299
+ issueReference?: string;
22664
23300
  dataName: string;
22665
23301
  dataType: string;
22666
23302
  };
@@ -23843,6 +24479,27 @@ interface external$3 {
23843
24479
  * @enum {string}
23844
24480
  */
23845
24481
  OverrideOptions: "yes" | "no";
24482
+ /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
24483
+ AlternativeDataSourceData: {
24484
+ /** @description Base resource URL of the data source. No trailing slash */
24485
+ baseUrl: string;
24486
+ /** @description HTTP headers to pass with requests to the data source */
24487
+ headers?: {
24488
+ key: string;
24489
+ value: string;
24490
+ omitIfEmpty?: boolean;
24491
+ }[];
24492
+ /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
24493
+ parameters?: {
24494
+ key: string;
24495
+ value: string;
24496
+ omitIfEmpty?: boolean;
24497
+ }[];
24498
+ /** @description Variables needed to make calls to the data source */
24499
+ variables?: {
24500
+ [key: string]: external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
24501
+ };
24502
+ };
23846
24503
  /**
23847
24504
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
23848
24505
  * These are created in the UI and shared across a whole project.
@@ -23879,6 +24536,11 @@ interface external$3 {
23879
24536
  localeMapping?: {
23880
24537
  [key: string]: string;
23881
24538
  };
24539
+ /**
24540
+ * @description If true, data source will require additional credentials to access unpublished data.
24541
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
24542
+ */
24543
+ enableUnpublishedMode?: boolean;
23882
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 */
23883
24545
  customPublic?: {
23884
24546
  [key: string]: unknown;
@@ -23887,6 +24549,10 @@ interface external$3 {
23887
24549
  custom?: {
23888
24550
  [key: string]: unknown;
23889
24551
  };
24552
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
24553
+ variants?: {
24554
+ unpublished?: external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
24555
+ };
23890
24556
  };
23891
24557
  /** @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
24558
  DataType: {
@@ -23985,6 +24651,12 @@ interface external$3 {
23985
24651
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
23986
24652
  */
23987
24653
  optionalPatternParameter?: boolean;
24654
+ /**
24655
+ * @description Resolve this data resource with draft mode content. TBD
24656
+ *
24657
+ * @enum {string}
24658
+ */
24659
+ dataSourceVariant?: "unpublished";
23988
24660
  variables?: external$3["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
23989
24661
  };
23990
24662
  /** @description Variable values for a data resource */
@@ -24474,6 +25146,11 @@ interface external$3 {
24474
25146
  typeName?: string;
24475
25147
  /** @description List of locales that the composition is available in. If empty, available in all locales */
24476
25148
  locales: string[];
25149
+ /**
25150
+ * Format: date-time
25151
+ * @description Date and time the composition was last modified (or created if never modified). Uses ISO-8859-1 formatting and UTC timezone.
25152
+ */
25153
+ modified?: string;
24477
25154
  };
24478
25155
  ProjectMapNodeUpdate: {
24479
25156
  /**
@@ -25432,6 +26109,27 @@ interface external$1 {
25432
26109
  * @enum {string}
25433
26110
  */
25434
26111
  OverrideOptions: "yes" | "no";
26112
+ /** @description Additional set of headers, parameters, variables, etc to be used for data resolving in the context like e.g. Unpublished Data. */
26113
+ AlternativeDataSourceData: {
26114
+ /** @description Base resource URL of the data source. No trailing slash */
26115
+ baseUrl: string;
26116
+ /** @description HTTP headers to pass with requests to the data source */
26117
+ headers?: {
26118
+ key: string;
26119
+ value: string;
26120
+ omitIfEmpty?: boolean;
26121
+ }[];
26122
+ /** @description Query String parameters to pass with requests to the data type. Merged with parameters from the data source, overriding identical keys */
26123
+ parameters?: {
26124
+ key: string;
26125
+ value: string;
26126
+ omitIfEmpty?: boolean;
26127
+ }[];
26128
+ /** @description Variables needed to make calls to the data source */
26129
+ variables?: {
26130
+ [key: string]: external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataVariableDefinition"];
26131
+ };
26132
+ };
25435
26133
  /**
25436
26134
  * @description An instance of a data source (i.e. "Master environment of the stable space", "Yelp API", "Sanity dev dataset").
25437
26135
  * These are created in the UI and shared across a whole project.
@@ -25468,6 +26166,11 @@ interface external$1 {
25468
26166
  localeMapping?: {
25469
26167
  [key: string]: string;
25470
26168
  };
26169
+ /**
26170
+ * @description If true, data source will require additional credentials to access unpublished data.
26171
+ * If false, no additional data source credentials are required and data resources of this data source won't be able to access unpublished data.
26172
+ */
26173
+ enableUnpublishedMode?: boolean;
25471
26174
  /** @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
26175
  customPublic?: {
25473
26176
  [key: string]: unknown;
@@ -25476,6 +26179,10 @@ interface external$1 {
25476
26179
  custom?: {
25477
26180
  [key: string]: unknown;
25478
26181
  };
26182
+ /** @description Different connector detail variants to use in the different contexts like e.g. Unpublished Data */
26183
+ variants?: {
26184
+ unpublished?: external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["AlternativeDataSourceData"];
26185
+ };
25479
26186
  };
25480
26187
  /** @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
26188
  DataType: {
@@ -25574,6 +26281,12 @@ interface external$1 {
25574
26281
  * If isPatternParameter is false or undefined, or if ignorePatternParameterDefault is false, this has no meaning
25575
26282
  */
25576
26283
  optionalPatternParameter?: boolean;
26284
+ /**
26285
+ * @description Resolve this data resource with draft mode content. TBD
26286
+ *
26287
+ * @enum {string}
26288
+ */
26289
+ dataSourceVariant?: "unpublished";
25577
26290
  variables?: external$1["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceVariables"];
25578
26291
  };
25579
26292
  /** @description Variable values for a data resource */
@@ -26063,6 +26776,11 @@ interface external$1 {
26063
26776
  typeName?: string;
26064
26777
  /** @description List of locales that the composition is available in. If empty, available in all locales */
26065
26778
  locales: string[];
26779
+ /**
26780
+ * Format: date-time
26781
+ * @description Date and time the composition was last modified (or created if never modified). Uses ISO-8859-1 formatting and UTC timezone.
26782
+ */
26783
+ modified?: string;
26066
26784
  };
26067
26785
  ProjectMapNodeUpdate: {
26068
26786
  /**
@@ -27546,4 +28264,4 @@ declare class WorkflowClient extends ApiClient {
27546
28264
 
27547
28265
  declare const CanvasClientError: typeof ApiClientError;
27548
28266
 
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 };
28267
+ 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 };