@uniformdev/canvas 19.80.1-alpha.192 → 19.80.1-alpha.252

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -310,6 +310,15 @@ interface components$5 {
310
310
  _slug?: string | null;
311
311
  /** @description Friendly name of this component. */
312
312
  _name: string;
313
+ /** @description Indicates this component instance should be sourced from a pattern library pattern. */
314
+ _pattern?: string;
315
+ /**
316
+ * @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
317
+ * Means nothing for PUTs; it will be ignored.
318
+ */
319
+ _patternDataResources?: {
320
+ [key: string]: components$5["schemas"]["DataResourceDefinition"];
321
+ };
313
322
  _dataResources?: components$5["schemas"]["DataResourceDefinitions"];
314
323
  /**
315
324
  * @description Defines patch overrides to component IDs that live in the composition.
@@ -1037,6 +1046,15 @@ interface external$f {
1037
1046
  _slug?: string | null;
1038
1047
  /** @description Friendly name of this component. */
1039
1048
  _name: string;
1049
+ /** @description Indicates this component instance should be sourced from a pattern library pattern. */
1050
+ _pattern?: string;
1051
+ /**
1052
+ * @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
1053
+ * Means nothing for PUTs; it will be ignored.
1054
+ */
1055
+ _patternDataResources?: {
1056
+ [key: string]: external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinition"];
1057
+ };
1040
1058
  _dataResources?: external$f["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
1041
1059
  /**
1042
1060
  * @description Defines patch overrides to component IDs that live in the composition.
@@ -1840,6 +1858,15 @@ interface external$e {
1840
1858
  _slug?: string | null;
1841
1859
  /** @description Friendly name of this component. */
1842
1860
  _name: string;
1861
+ /** @description Indicates this component instance should be sourced from a pattern library pattern. */
1862
+ _pattern?: string;
1863
+ /**
1864
+ * @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
1865
+ * Means nothing for PUTs; it will be ignored.
1866
+ */
1867
+ _patternDataResources?: {
1868
+ [key: string]: external$e["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinition"];
1869
+ };
1843
1870
  _dataResources?: external$e["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
1844
1871
  /**
1845
1872
  * @description Defines patch overrides to component IDs that live in the composition.
@@ -2579,6 +2606,15 @@ interface external$d {
2579
2606
  _slug?: string | null;
2580
2607
  /** @description Friendly name of this component. */
2581
2608
  _name: string;
2609
+ /** @description Indicates this component instance should be sourced from a pattern library pattern. */
2610
+ _pattern?: string;
2611
+ /**
2612
+ * @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
2613
+ * Means nothing for PUTs; it will be ignored.
2614
+ */
2615
+ _patternDataResources?: {
2616
+ [key: string]: external$d["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinition"];
2617
+ };
2582
2618
  _dataResources?: external$d["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
2583
2619
  /**
2584
2620
  * @description Defines patch overrides to component IDs that live in the composition.
@@ -2889,6 +2925,14 @@ interface paths$b {
2889
2925
  offset?: components$4["parameters"]["offset"];
2890
2926
  /** Sets the sorting of the results. If unspecified, results are sorted by name ascending. */
2891
2927
  orderBy?: components$4["parameters"]["orderBy"];
2928
+ /**
2929
+ * Matches compositions based on whether they are a pattern composition or a regular composition.
2930
+ * If true, only pattern compositions will be returned.
2931
+ * If false, only regular compositions will be returned.
2932
+ * If omitted, both pattern and regular compositions will be returned.
2933
+ * This is a list query parameter, and cannot be used with any primary query parameters.
2934
+ */
2935
+ pattern?: components$4["parameters"]["pattern"];
2892
2936
  /** The project the entry/entries are on. */
2893
2937
  projectId: components$4["parameters"]["projectId"];
2894
2938
  /** Publishing state to fetch. 0 = draft, 64 = published. */
@@ -2919,6 +2963,14 @@ interface paths$b {
2919
2963
  withComponentIDs?: components$4["parameters"]["withComponentIDs"];
2920
2964
  /** Performs keyword search on the entries. */
2921
2965
  keyword?: components$4["parameters"]["keyword"];
2966
+ /**
2967
+ * If true, any pattern references in the composition will be left unresolved.
2968
+ * This is appropriate if you intend to serialize the composition without patterns
2969
+ * embedded into it, and serialize the pattern data separately.
2970
+ */
2971
+ skipPatternResolution?: components$4["parameters"]["skipPatternResolution"];
2972
+ /** @deprecated This parameter is unused and has no effect. Passing this parameter will become an error in the future. */
2973
+ skipParameterResolution?: components$4["parameters"]["skipParameterResolution"];
2922
2974
  /**
2923
2975
  * If true, any pattern override data is not resolved by the API.
2924
2976
  * This is intended for internal use in the Canvas editor, and should not be used.
@@ -2986,6 +3038,11 @@ interface paths$b {
2986
3038
  created?: string;
2987
3039
  /** @description Ignored if present */
2988
3040
  modified?: string;
3041
+ /**
3042
+ * @description True if the entry is a pattern (which can be referenced on other entries)
3043
+ * @default false
3044
+ */
3045
+ pattern?: boolean;
2989
3046
  };
2990
3047
  };
2991
3048
  };
@@ -3046,6 +3103,10 @@ interface components$4 {
3046
3103
  _slug?: string;
3047
3104
  /** @description Name of the author of the most recent change. */
3048
3105
  _author?: string;
3106
+ /** @description Name of the original creator. */
3107
+ _creator?: string;
3108
+ /** @description Indicates this content entry should be sourced from a pattern library pattern. */
3109
+ _pattern?: string;
3049
3110
  /** @description Array of locales which have data defined on the entry. If empty, the current default locale implicitly has data. */
3050
3111
  _locales?: string[];
3051
3112
  /** @description Entry field values. */
@@ -3053,6 +3114,45 @@ interface components$4 {
3053
3114
  [key: string]: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameter"];
3054
3115
  };
3055
3116
  _dataResources?: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
3117
+ /**
3118
+ * @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
3119
+ * Means nothing for PUTs; it will be ignored.
3120
+ */
3121
+ _patternDataResources?: {
3122
+ [key: string]: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinition"];
3123
+ };
3124
+ /**
3125
+ * @description Describes why the pattern could not be resolved, if a pattern could not be resolved. For PUTs, this is allowed but ignored.
3126
+ * CYCLIC: A cyclic pattern graph was detected, which could not be resolved because it would cause an infinite loop.
3127
+ * NOTFOUND: The pattern ID referenced could not be found. It may have been deleted, or not be published yet.
3128
+ * Means nothing for PUTs; it will be ignored.
3129
+ *
3130
+ * @enum {string}
3131
+ */
3132
+ _patternError?: "NOTFOUND" | "CYCLIC";
3133
+ /**
3134
+ * @description Defines patch overrides to component IDs that live in the composition.
3135
+ * This can be used to override parameters that are defined on patterns,
3136
+ * including nested patterns, with values that are specific to this composition.
3137
+ * The keys in this object are component IDs.
3138
+ * Overrides are applied from the top down, so for example if both the composition
3139
+ * and a pattern on the composition define an override on a nested pattern,
3140
+ * the composition's override replaces the pattern's.
3141
+ *
3142
+ * NOTE: This is considered an internal data structure and is not guaranteed to be stable.
3143
+ * Future updates that do not break the overrides-applied state of a composition may be made without notice.
3144
+ */
3145
+ _overrides?: {
3146
+ [key: string]: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentOverride"];
3147
+ };
3148
+ /**
3149
+ * @description When used on a pattern, defines how the pattern's parameters may be overridden
3150
+ * by consumers of the pattern.
3151
+ *
3152
+ * NOTE: This is considered an internal data structure and is not guaranteed to be stable.
3153
+ * Future updates that do not break the overrides-applied state of a composition may be made without notice.
3154
+ */
3155
+ _overridability?: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentOverridability"];
3056
3156
  };
3057
3157
  /** @description Defines the shape of the entry input */
3058
3158
  EntryInput: {
@@ -3072,6 +3172,42 @@ interface components$4 {
3072
3172
  [key: string]: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameter"];
3073
3173
  };
3074
3174
  _dataResources?: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
3175
+ /** @description Indicates this content entry should be sourced from a pattern library pattern. */
3176
+ _pattern?: string;
3177
+ /**
3178
+ * @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
3179
+ * Means nothing for PUTs; it will be ignored.
3180
+ */
3181
+ _patternDataResources?: {
3182
+ [key: string]: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinition"];
3183
+ };
3184
+ /**
3185
+ * @description Describes why the pattern could not be resolved, if a pattern could not be resolved. For PUTs, this is allowed but ignored.
3186
+ * CYCLIC: A cyclic pattern graph was detected, which could not be resolved because it would cause an infinite loop.
3187
+ * NOTFOUND: The pattern ID referenced could not be found. It may have been deleted, or not be published yet.
3188
+ * Means nothing for PUTs; it will be ignored.
3189
+ *
3190
+ * @enum {string}
3191
+ */
3192
+ _patternError?: "NOTFOUND" | "CYCLIC";
3193
+ /**
3194
+ * @description Defines patch overrides for the content entry fields.
3195
+ * This can be used to override fields that are defined on patterns.
3196
+ *
3197
+ * NOTE: This is considered an internal data structure and is not guaranteed to be stable.
3198
+ * Future updates that do not break the overrides-applied state of a composition may be made without notice.
3199
+ */
3200
+ _overrides?: {
3201
+ [key: string]: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentOverride"];
3202
+ };
3203
+ /**
3204
+ * @description When used on a pattern, defines how the pattern's fields may be overridden
3205
+ * by consumers of the pattern.
3206
+ *
3207
+ * NOTE: This is considered an internal data structure and is not guaranteed to be stable.
3208
+ * Future updates that do not break the overrides-applied state of a composition may be made without notice.
3209
+ */
3210
+ _overridability?: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentOverridability"];
3075
3211
  /** @description Array of locales which have data defined on the entry. If empty, the current default locale implicitly has data. */
3076
3212
  _locales?: string[];
3077
3213
  };
@@ -3099,6 +3235,11 @@ interface components$4 {
3099
3235
  * @description Modified date string for this definition
3100
3236
  */
3101
3237
  modified: string;
3238
+ /**
3239
+ * @description True if the entry is a pattern (which can be referenced on other entries)
3240
+ * @default false
3241
+ */
3242
+ pattern?: boolean;
3102
3243
  entry: components$4["schemas"]["Entry"];
3103
3244
  };
3104
3245
  EntryListResponse: {
@@ -3157,12 +3298,31 @@ interface components$4 {
3157
3298
  withTotalCount: boolean;
3158
3299
  /** @description Performs keyword search on the entries. */
3159
3300
  keyword: string;
3301
+ /**
3302
+ * @description If true, any pattern references in the composition will be left unresolved.
3303
+ * This is appropriate if you intend to serialize the composition without patterns
3304
+ * embedded into it, and serialize the pattern data separately.
3305
+ */
3306
+ skipPatternResolution: boolean;
3160
3307
  /**
3161
3308
  * @description If true, any pattern override data is not resolved by the API.
3162
3309
  * This is intended for internal use in the Canvas editor, and should not be used.
3163
3310
  * Passing this parameter automatically implies withComponentIDs to be true.
3164
3311
  */
3165
3312
  skipOverridesResolution: boolean;
3313
+ /**
3314
+ * @deprecated
3315
+ * @description This parameter is unused and has no effect. Passing this parameter will become an error in the future.
3316
+ */
3317
+ skipParameterResolution: boolean;
3318
+ /**
3319
+ * @description Matches compositions based on whether they are a pattern composition or a regular composition.
3320
+ * If true, only pattern compositions will be returned.
3321
+ * If false, only regular compositions will be returned.
3322
+ * If omitted, both pattern and regular compositions will be returned.
3323
+ * This is a list query parameter, and cannot be used with any primary query parameters.
3324
+ */
3325
+ pattern: boolean;
3166
3326
  /**
3167
3327
  * @description One or more locales to filter and localize by.
3168
3328
  * Only entries which enable one of the specified locales _or enable no locales_ will be returned.
@@ -3526,6 +3686,15 @@ interface external$c {
3526
3686
  _slug?: string | null;
3527
3687
  /** @description Friendly name of this component. */
3528
3688
  _name: string;
3689
+ /** @description Indicates this component instance should be sourced from a pattern library pattern. */
3690
+ _pattern?: string;
3691
+ /**
3692
+ * @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
3693
+ * Means nothing for PUTs; it will be ignored.
3694
+ */
3695
+ _patternDataResources?: {
3696
+ [key: string]: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinition"];
3697
+ };
3529
3698
  _dataResources?: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
3530
3699
  /**
3531
3700
  * @description Defines patch overrides to component IDs that live in the composition.
@@ -4197,6 +4366,15 @@ interface external$b {
4197
4366
  _slug?: string | null;
4198
4367
  /** @description Friendly name of this component. */
4199
4368
  _name: string;
4369
+ /** @description Indicates this component instance should be sourced from a pattern library pattern. */
4370
+ _pattern?: string;
4371
+ /**
4372
+ * @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
4373
+ * Means nothing for PUTs; it will be ignored.
4374
+ */
4375
+ _patternDataResources?: {
4376
+ [key: string]: external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinition"];
4377
+ };
4200
4378
  _dataResources?: external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
4201
4379
  /**
4202
4380
  * @description Defines patch overrides to component IDs that live in the composition.
@@ -4927,6 +5105,15 @@ interface external$a {
4927
5105
  _slug?: string | null;
4928
5106
  /** @description Friendly name of this component. */
4929
5107
  _name: string;
5108
+ /** @description Indicates this component instance should be sourced from a pattern library pattern. */
5109
+ _pattern?: string;
5110
+ /**
5111
+ * @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
5112
+ * Means nothing for PUTs; it will be ignored.
5113
+ */
5114
+ _patternDataResources?: {
5115
+ [key: string]: external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinition"];
5116
+ };
4930
5117
  _dataResources?: external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
4931
5118
  /**
4932
5119
  * @description Defines patch overrides to component IDs that live in the composition.
@@ -5594,6 +5781,15 @@ interface external$9 {
5594
5781
  _slug?: string | null;
5595
5782
  /** @description Friendly name of this component. */
5596
5783
  _name: string;
5784
+ /** @description Indicates this component instance should be sourced from a pattern library pattern. */
5785
+ _pattern?: string;
5786
+ /**
5787
+ * @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
5788
+ * Means nothing for PUTs; it will be ignored.
5789
+ */
5790
+ _patternDataResources?: {
5791
+ [key: string]: external$9["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinition"];
5792
+ };
5597
5793
  _dataResources?: external$9["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
5598
5794
  /**
5599
5795
  * @description Defines patch overrides to component IDs that live in the composition.
@@ -6296,6 +6492,15 @@ interface external$8 {
6296
6492
  _slug?: string | null;
6297
6493
  /** @description Friendly name of this component. */
6298
6494
  _name: string;
6495
+ /** @description Indicates this component instance should be sourced from a pattern library pattern. */
6496
+ _pattern?: string;
6497
+ /**
6498
+ * @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
6499
+ * Means nothing for PUTs; it will be ignored.
6500
+ */
6501
+ _patternDataResources?: {
6502
+ [key: string]: external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinition"];
6503
+ };
6299
6504
  _dataResources?: external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
6300
6505
  /**
6301
6506
  * @description Defines patch overrides to component IDs that live in the composition.
@@ -6998,6 +7203,15 @@ interface external$7 {
6998
7203
  _slug?: string | null;
6999
7204
  /** @description Friendly name of this component. */
7000
7205
  _name: string;
7206
+ /** @description Indicates this component instance should be sourced from a pattern library pattern. */
7207
+ _pattern?: string;
7208
+ /**
7209
+ * @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
7210
+ * Means nothing for PUTs; it will be ignored.
7211
+ */
7212
+ _patternDataResources?: {
7213
+ [key: string]: external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinition"];
7214
+ };
7001
7215
  _dataResources?: external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
7002
7216
  /**
7003
7217
  * @description Defines patch overrides to component IDs that live in the composition.
@@ -8324,6 +8538,15 @@ interface external$5 {
8324
8538
  _slug?: string | null;
8325
8539
  /** @description Friendly name of this component. */
8326
8540
  _name: string;
8541
+ /** @description Indicates this component instance should be sourced from a pattern library pattern. */
8542
+ _pattern?: string;
8543
+ /**
8544
+ * @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
8545
+ * Means nothing for PUTs; it will be ignored.
8546
+ */
8547
+ _patternDataResources?: {
8548
+ [key: string]: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinition"];
8549
+ };
8327
8550
  _dataResources?: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
8328
8551
  /**
8329
8552
  * @description Defines patch overrides to component IDs that live in the composition.
@@ -8995,6 +9218,15 @@ interface external$4 {
8995
9218
  _slug?: string | null;
8996
9219
  /** @description Friendly name of this component. */
8997
9220
  _name: string;
9221
+ /** @description Indicates this component instance should be sourced from a pattern library pattern. */
9222
+ _pattern?: string;
9223
+ /**
9224
+ * @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
9225
+ * Means nothing for PUTs; it will be ignored.
9226
+ */
9227
+ _patternDataResources?: {
9228
+ [key: string]: external$4["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinition"];
9229
+ };
8998
9230
  _dataResources?: external$4["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
8999
9231
  /**
9000
9232
  * @description Defines patch overrides to component IDs that live in the composition.
@@ -9794,6 +10026,15 @@ interface external$3 {
9794
10026
  _slug?: string | null;
9795
10027
  /** @description Friendly name of this component. */
9796
10028
  _name: string;
10029
+ /** @description Indicates this component instance should be sourced from a pattern library pattern. */
10030
+ _pattern?: string;
10031
+ /**
10032
+ * @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
10033
+ * Means nothing for PUTs; it will be ignored.
10034
+ */
10035
+ _patternDataResources?: {
10036
+ [key: string]: external$3["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinition"];
10037
+ };
9797
10038
  _dataResources?: external$3["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
9798
10039
  /**
9799
10040
  * @description Defines patch overrides to component IDs that live in the composition.
@@ -10598,6 +10839,14 @@ interface external$3 {
10598
10839
  offset?: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["offset"];
10599
10840
  /** Sets the sorting of the results. If unspecified, results are sorted by name ascending. */
10600
10841
  orderBy?: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["orderBy"];
10842
+ /**
10843
+ * Matches compositions based on whether they are a pattern composition or a regular composition.
10844
+ * If true, only pattern compositions will be returned.
10845
+ * If false, only regular compositions will be returned.
10846
+ * If omitted, both pattern and regular compositions will be returned.
10847
+ * This is a list query parameter, and cannot be used with any primary query parameters.
10848
+ */
10849
+ pattern?: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["pattern"];
10601
10850
  /** The project the entry/entries are on. */
10602
10851
  projectId: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["projectId"];
10603
10852
  /** Publishing state to fetch. 0 = draft, 64 = published. */
@@ -10628,6 +10877,14 @@ interface external$3 {
10628
10877
  withComponentIDs?: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["withComponentIDs"];
10629
10878
  /** Performs keyword search on the entries. */
10630
10879
  keyword?: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["keyword"];
10880
+ /**
10881
+ * If true, any pattern references in the composition will be left unresolved.
10882
+ * This is appropriate if you intend to serialize the composition without patterns
10883
+ * embedded into it, and serialize the pattern data separately.
10884
+ */
10885
+ skipPatternResolution?: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["skipPatternResolution"];
10886
+ /** @deprecated This parameter is unused and has no effect. Passing this parameter will become an error in the future. */
10887
+ skipParameterResolution?: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["skipParameterResolution"];
10631
10888
  /**
10632
10889
  * If true, any pattern override data is not resolved by the API.
10633
10890
  * This is intended for internal use in the Canvas editor, and should not be used.
@@ -10695,6 +10952,11 @@ interface external$3 {
10695
10952
  created?: string;
10696
10953
  /** @description Ignored if present */
10697
10954
  modified?: string;
10955
+ /**
10956
+ * @description True if the entry is a pattern (which can be referenced on other entries)
10957
+ * @default false
10958
+ */
10959
+ pattern?: boolean;
10698
10960
  };
10699
10961
  };
10700
10962
  };
@@ -10755,6 +11017,10 @@ interface external$3 {
10755
11017
  _slug?: string;
10756
11018
  /** @description Name of the author of the most recent change. */
10757
11019
  _author?: string;
11020
+ /** @description Name of the original creator. */
11021
+ _creator?: string;
11022
+ /** @description Indicates this content entry should be sourced from a pattern library pattern. */
11023
+ _pattern?: string;
10758
11024
  /** @description Array of locales which have data defined on the entry. If empty, the current default locale implicitly has data. */
10759
11025
  _locales?: string[];
10760
11026
  /** @description Entry field values. */
@@ -10762,6 +11028,45 @@ interface external$3 {
10762
11028
  [key: string]: external$3["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameter"];
10763
11029
  };
10764
11030
  _dataResources?: external$3["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
11031
+ /**
11032
+ * @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
11033
+ * Means nothing for PUTs; it will be ignored.
11034
+ */
11035
+ _patternDataResources?: {
11036
+ [key: string]: external$3["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinition"];
11037
+ };
11038
+ /**
11039
+ * @description Describes why the pattern could not be resolved, if a pattern could not be resolved. For PUTs, this is allowed but ignored.
11040
+ * CYCLIC: A cyclic pattern graph was detected, which could not be resolved because it would cause an infinite loop.
11041
+ * NOTFOUND: The pattern ID referenced could not be found. It may have been deleted, or not be published yet.
11042
+ * Means nothing for PUTs; it will be ignored.
11043
+ *
11044
+ * @enum {string}
11045
+ */
11046
+ _patternError?: "NOTFOUND" | "CYCLIC";
11047
+ /**
11048
+ * @description Defines patch overrides to component IDs that live in the composition.
11049
+ * This can be used to override parameters that are defined on patterns,
11050
+ * including nested patterns, with values that are specific to this composition.
11051
+ * The keys in this object are component IDs.
11052
+ * Overrides are applied from the top down, so for example if both the composition
11053
+ * and a pattern on the composition define an override on a nested pattern,
11054
+ * the composition's override replaces the pattern's.
11055
+ *
11056
+ * NOTE: This is considered an internal data structure and is not guaranteed to be stable.
11057
+ * Future updates that do not break the overrides-applied state of a composition may be made without notice.
11058
+ */
11059
+ _overrides?: {
11060
+ [key: string]: external$3["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentOverride"];
11061
+ };
11062
+ /**
11063
+ * @description When used on a pattern, defines how the pattern's parameters may be overridden
11064
+ * by consumers of the pattern.
11065
+ *
11066
+ * NOTE: This is considered an internal data structure and is not guaranteed to be stable.
11067
+ * Future updates that do not break the overrides-applied state of a composition may be made without notice.
11068
+ */
11069
+ _overridability?: external$3["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentOverridability"];
10765
11070
  };
10766
11071
  /** @description Defines the shape of the entry input */
10767
11072
  EntryInput: {
@@ -10781,6 +11086,42 @@ interface external$3 {
10781
11086
  [key: string]: external$3["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameter"];
10782
11087
  };
10783
11088
  _dataResources?: external$3["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
11089
+ /** @description Indicates this content entry should be sourced from a pattern library pattern. */
11090
+ _pattern?: string;
11091
+ /**
11092
+ * @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
11093
+ * Means nothing for PUTs; it will be ignored.
11094
+ */
11095
+ _patternDataResources?: {
11096
+ [key: string]: external$3["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinition"];
11097
+ };
11098
+ /**
11099
+ * @description Describes why the pattern could not be resolved, if a pattern could not be resolved. For PUTs, this is allowed but ignored.
11100
+ * CYCLIC: A cyclic pattern graph was detected, which could not be resolved because it would cause an infinite loop.
11101
+ * NOTFOUND: The pattern ID referenced could not be found. It may have been deleted, or not be published yet.
11102
+ * Means nothing for PUTs; it will be ignored.
11103
+ *
11104
+ * @enum {string}
11105
+ */
11106
+ _patternError?: "NOTFOUND" | "CYCLIC";
11107
+ /**
11108
+ * @description Defines patch overrides for the content entry fields.
11109
+ * This can be used to override fields that are defined on patterns.
11110
+ *
11111
+ * NOTE: This is considered an internal data structure and is not guaranteed to be stable.
11112
+ * Future updates that do not break the overrides-applied state of a composition may be made without notice.
11113
+ */
11114
+ _overrides?: {
11115
+ [key: string]: external$3["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentOverride"];
11116
+ };
11117
+ /**
11118
+ * @description When used on a pattern, defines how the pattern's fields may be overridden
11119
+ * by consumers of the pattern.
11120
+ *
11121
+ * NOTE: This is considered an internal data structure and is not guaranteed to be stable.
11122
+ * Future updates that do not break the overrides-applied state of a composition may be made without notice.
11123
+ */
11124
+ _overridability?: external$3["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentOverridability"];
10784
11125
  /** @description Array of locales which have data defined on the entry. If empty, the current default locale implicitly has data. */
10785
11126
  _locales?: string[];
10786
11127
  };
@@ -10808,6 +11149,11 @@ interface external$3 {
10808
11149
  * @description Modified date string for this definition
10809
11150
  */
10810
11151
  modified: string;
11152
+ /**
11153
+ * @description True if the entry is a pattern (which can be referenced on other entries)
11154
+ * @default false
11155
+ */
11156
+ pattern?: boolean;
10811
11157
  entry: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["schemas"]["Entry"];
10812
11158
  };
10813
11159
  EntryListResponse: {
@@ -10866,12 +11212,31 @@ interface external$3 {
10866
11212
  withTotalCount: boolean;
10867
11213
  /** @description Performs keyword search on the entries. */
10868
11214
  keyword: string;
11215
+ /**
11216
+ * @description If true, any pattern references in the composition will be left unresolved.
11217
+ * This is appropriate if you intend to serialize the composition without patterns
11218
+ * embedded into it, and serialize the pattern data separately.
11219
+ */
11220
+ skipPatternResolution: boolean;
10869
11221
  /**
10870
11222
  * @description If true, any pattern override data is not resolved by the API.
10871
11223
  * This is intended for internal use in the Canvas editor, and should not be used.
10872
11224
  * Passing this parameter automatically implies withComponentIDs to be true.
10873
11225
  */
10874
11226
  skipOverridesResolution: boolean;
11227
+ /**
11228
+ * @deprecated
11229
+ * @description This parameter is unused and has no effect. Passing this parameter will become an error in the future.
11230
+ */
11231
+ skipParameterResolution: boolean;
11232
+ /**
11233
+ * @description Matches compositions based on whether they are a pattern composition or a regular composition.
11234
+ * If true, only pattern compositions will be returned.
11235
+ * If false, only regular compositions will be returned.
11236
+ * If omitted, both pattern and regular compositions will be returned.
11237
+ * This is a list query parameter, and cannot be used with any primary query parameters.
11238
+ */
11239
+ pattern: boolean;
10875
11240
  /**
10876
11241
  * @description One or more locales to filter and localize by.
10877
11242
  * Only entries which enable one of the specified locales _or enable no locales_ will be returned.
@@ -11792,6 +12157,15 @@ interface external$2 {
11792
12157
  _slug?: string | null;
11793
12158
  /** @description Friendly name of this component. */
11794
12159
  _name: string;
12160
+ /** @description Indicates this component instance should be sourced from a pattern library pattern. */
12161
+ _pattern?: string;
12162
+ /**
12163
+ * @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
12164
+ * Means nothing for PUTs; it will be ignored.
12165
+ */
12166
+ _patternDataResources?: {
12167
+ [key: string]: external$2["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinition"];
12168
+ };
11795
12169
  _dataResources?: external$2["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
11796
12170
  /**
11797
12171
  * @description Defines patch overrides to component IDs that live in the composition.
@@ -12965,9 +13339,11 @@ type RouteGetResponseEdgehancedComposition = Omit<RouteGetResponseComposition, '
12965
13339
 
12966
13340
  type CanvasClientOptions = ClientOptions & {
12967
13341
  edgeApiHost?: string;
13342
+ disableSWR?: boolean;
12968
13343
  };
12969
13344
  declare class CanvasClient extends ApiClient<CanvasClientOptions> {
12970
13345
  private edgeApiHost;
13346
+ private edgeApiRequestInit?;
12971
13347
  constructor(options: CanvasClientOptions);
12972
13348
  /** Fetches lists of Canvas compositions, optionally by type */
12973
13349
  getCompositionList(params?: Omit<CompositionGetParameters, 'projectId' | 'componentId' | 'compositionId' | 'slug'> & ({
@@ -13023,6 +13399,7 @@ declare class CanvasClient extends ApiClient<CanvasClientOptions> {
13023
13399
  canBeComposition?: boolean | undefined;
13024
13400
  parameters?: {
13025
13401
  id: string;
13402
+ /** Fetches a component definition's composition defaults */
13026
13403
  name: string;
13027
13404
  helpText?: string | undefined;
13028
13405
  type: string;
@@ -13658,6 +14035,7 @@ type RichTextParamValue = SerializedEditorState | undefined | null;
13658
14035
 
13659
14036
  type ContentClientOptions = ClientOptions & {
13660
14037
  edgeApiHost?: string;
14038
+ disableSWR?: boolean;
13661
14039
  };
13662
14040
  declare class ContentClient extends ApiClient<ContentClientOptions> {
13663
14041
  #private;
@@ -14339,6 +14717,7 @@ declare class PromptClient extends ApiClient {
14339
14717
 
14340
14718
  type RouteClientOptions = Omit<ClientOptions, 'apiHost'> & {
14341
14719
  edgeApiHost?: string;
14720
+ disableSWR?: boolean;
14342
14721
  };
14343
14722
  /** A route API response with edgehancer composition result */
14344
14723
  type ResolvedRouteGetResponse = RouteGetResponseNotFound | RouteGetResponseRedirect | RouteGetResponseEdgehancedComposition;
@@ -14459,6 +14838,17 @@ declare const createUniformApiEnhancer: ({ apiUrl }: {
14459
14838
  _id: string;
14460
14839
  _slug?: string | null | undefined;
14461
14840
  _name: string;
14841
+ _pattern?: string | undefined;
14842
+ _patternDataResources?: {
14843
+ [key: string]: {
14844
+ type: string;
14845
+ isPatternParameter?: boolean | undefined;
14846
+ ignorePatternParameterDefault?: boolean | undefined;
14847
+ variables?: {
14848
+ [key: string]: string;
14849
+ } | undefined;
14850
+ };
14851
+ } | undefined;
14462
14852
  _dataResources?: {
14463
14853
  [key: string]: {
14464
14854
  type: string;