@uniformdev/canvas 19.177.1 → 19.177.2-alpha.18

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