@uniformdev/canvas 19.50.2-alpha.45 → 19.51.1-alpha.1

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
@@ -190,6 +190,7 @@ interface components$5 {
190
190
  created?: string;
191
191
  /** @description Last modified date string for this content type (ignored for writes) */
192
192
  updated?: string;
193
+ slugSettings?: components$5["schemas"]["ComponentDefinitionSlugSettings"];
193
194
  };
194
195
  /** @description Defines an editable parameter on a component. */
195
196
  ComponentParameter: {
@@ -856,6 +857,7 @@ interface external$c {
856
857
  created?: string;
857
858
  /** @description Last modified date string for this content type (ignored for writes) */
858
859
  updated?: string;
860
+ slugSettings?: external$c["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentDefinitionSlugSettings"];
859
861
  };
860
862
  /** @description Defines an editable parameter on a component. */
861
863
  ComponentParameter: {
@@ -1523,6 +1525,7 @@ interface external$b {
1523
1525
  created?: string;
1524
1526
  /** @description Last modified date string for this content type (ignored for writes) */
1525
1527
  updated?: string;
1528
+ slugSettings?: external$b["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentDefinitionSlugSettings"];
1526
1529
  };
1527
1530
  /** @description Defines an editable parameter on a component. */
1528
1531
  ComponentParameter: {
@@ -2199,6 +2202,7 @@ interface external$a {
2199
2202
  created?: string;
2200
2203
  /** @description Last modified date string for this content type (ignored for writes) */
2201
2204
  updated?: string;
2205
+ slugSettings?: external$a["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentDefinitionSlugSettings"];
2202
2206
  };
2203
2207
  /** @description Defines an editable parameter on a component. */
2204
2208
  ComponentParameter: {
@@ -2550,8 +2554,10 @@ interface paths$8 {
2550
2554
  get: {
2551
2555
  parameters: {
2552
2556
  query: {
2553
- /** Specify multiple entry IDs to fetch. Response type will be a list. */
2557
+ /** Specify multiple entry IDs to fetch. */
2554
2558
  entryIDs?: components$4["parameters"]["entryIDs"];
2559
+ /** Specify a single entry to fetch by slug. */
2560
+ slug?: components$4["parameters"]["slug"];
2555
2561
  /** Filters entry lists by the user who created them. The user is specified by their identity subject. */
2556
2562
  createdBy?: components$4["parameters"]["createdBy"];
2557
2563
  /** Max number of records to return */
@@ -2747,8 +2753,10 @@ interface components$4 {
2747
2753
  parameters: {
2748
2754
  /** @description The project the entry/entries are on. */
2749
2755
  projectId: string;
2750
- /** @description Specify multiple entry IDs to fetch. Response type will be a list. */
2756
+ /** @description Specify multiple entry IDs to fetch. */
2751
2757
  entryIDs: string[];
2758
+ /** @description Specify a single entry to fetch by slug. */
2759
+ slug: string;
2752
2760
  /** @description The content type ID to filter by. */
2753
2761
  type: string[];
2754
2762
  /** @description Publishing state to fetch. 0 = draft, 64 = published. */
@@ -3011,6 +3019,7 @@ interface external$9 {
3011
3019
  created?: string;
3012
3020
  /** @description Last modified date string for this content type (ignored for writes) */
3013
3021
  updated?: string;
3022
+ slugSettings?: external$9["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentDefinitionSlugSettings"];
3014
3023
  };
3015
3024
  /** @description Defines an editable parameter on a component. */
3016
3025
  ComponentParameter: {
@@ -3673,6 +3682,7 @@ interface external$8 {
3673
3682
  created?: string;
3674
3683
  /** @description Last modified date string for this content type (ignored for writes) */
3675
3684
  updated?: string;
3685
+ slugSettings?: external$8["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentDefinitionSlugSettings"];
3676
3686
  };
3677
3687
  /** @description Defines an editable parameter on a component. */
3678
3688
  ComponentParameter: {
@@ -4279,6 +4289,7 @@ interface external$7 {
4279
4289
  created?: string;
4280
4290
  /** @description Last modified date string for this content type (ignored for writes) */
4281
4291
  updated?: string;
4292
+ slugSettings?: external$7["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentDefinitionSlugSettings"];
4282
4293
  };
4283
4294
  /** @description Defines an editable parameter on a component. */
4284
4295
  ComponentParameter: {
@@ -4920,6 +4931,7 @@ interface external$6 {
4920
4931
  created?: string;
4921
4932
  /** @description Last modified date string for this content type (ignored for writes) */
4922
4933
  updated?: string;
4934
+ slugSettings?: external$6["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentDefinitionSlugSettings"];
4923
4935
  };
4924
4936
  /** @description Defines an editable parameter on a component. */
4925
4937
  ComponentParameter: {
@@ -5990,6 +6002,7 @@ interface external$5 {
5990
6002
  created?: string;
5991
6003
  /** @description Last modified date string for this content type (ignored for writes) */
5992
6004
  updated?: string;
6005
+ slugSettings?: external$5["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentDefinitionSlugSettings"];
5993
6006
  };
5994
6007
  /** @description Defines an editable parameter on a component. */
5995
6008
  ComponentParameter: {
@@ -6446,24 +6459,37 @@ interface components$1 {
6446
6459
  schemas: {
6447
6460
  CompositionResolvedGetResponse: components$1["schemas"]["EdgehancersResolutionInfo"] & external$3["../../../lambda/functions/v1-canvas.swagger.yml"]["components"]["schemas"]["CompositionApiResponse"];
6448
6461
  CompositionResolvedListResponse: {
6449
- diagnostics?: components$1["schemas"]["CompositionDiagnostics"] & {
6462
+ diagnostics?: components$1["schemas"]["EdgehancersDiagnostics"] & {
6450
6463
  data?: {
6451
6464
  [key: string]: components$1["schemas"]["DataDiagnostic"][];
6452
6465
  };
6453
6466
  };
6454
6467
  errors?: {
6455
- [key: string]: components$1["schemas"]["CompositionIssue"][];
6468
+ [key: string]: components$1["schemas"]["DataResolutionIssue"][];
6456
6469
  };
6457
6470
  warnings?: {
6458
- [key: string]: components$1["schemas"]["CompositionIssue"][];
6471
+ [key: string]: components$1["schemas"]["DataResolutionIssue"][];
6459
6472
  };
6460
6473
  } & external$3["../../../lambda/functions/v1-canvas.swagger.yml"]["components"]["schemas"]["CompositionListResponse"];
6474
+ EntryResolvedListResponse: {
6475
+ diagnostics?: components$1["schemas"]["EdgehancersDiagnostics"] & {
6476
+ data?: {
6477
+ [key: string]: components$1["schemas"]["DataDiagnostic"][];
6478
+ };
6479
+ };
6480
+ errors?: {
6481
+ [key: string]: components$1["schemas"]["DataResolutionIssue"][];
6482
+ };
6483
+ warnings?: {
6484
+ [key: string]: components$1["schemas"]["DataResolutionIssue"][];
6485
+ };
6486
+ } & external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["schemas"]["EntryListResponse"];
6461
6487
  EdgehancersResolutionInfo: {
6462
- diagnostics?: components$1["schemas"]["CompositionDiagnostics"] & {
6488
+ diagnostics?: components$1["schemas"]["EdgehancersDiagnostics"] & {
6463
6489
  [key: string]: unknown;
6464
6490
  };
6465
- errors?: components$1["schemas"]["CompositionIssue"][];
6466
- warnings?: components$1["schemas"]["CompositionIssue"][];
6491
+ errors?: components$1["schemas"]["DataResolutionIssue"][];
6492
+ warnings?: components$1["schemas"]["DataResolutionIssue"][];
6467
6493
  };
6468
6494
  EdgehancersError: {
6469
6495
  message: string;
@@ -6502,36 +6528,36 @@ interface components$1 {
6502
6528
  /**
6503
6529
  * @description Diagnostic information about request processing, including origin/config/data
6504
6530
  * * timings, edge locations, cache statuses and raw data.
6505
- * * Only set when diagnostics=true is passed to the options.
6531
+ * * Only present when diagnostics=true is passed to the options.
6506
6532
  */
6507
- CompositionDiagnostics: {
6533
+ EdgehancersDiagnostics: {
6508
6534
  /** @description Edge location where the request was processed */
6509
6535
  edgeLocation?: string;
6510
- compositionFetch?: {
6511
- /** @description How long it took to fetch the composition (ms) */
6536
+ originFetch?: {
6537
+ /** @description How long it took to fetch from the origin (ms) */
6512
6538
  duration: number;
6513
- /** @description Indicates if the composition was fetched from the cache */
6539
+ /** @description Indicates if the origin response was cached */
6514
6540
  cacheHit: boolean;
6515
- /** @description Indicates if the request results in a valid composition */
6516
- hasValidComposition: boolean;
6541
+ /** @description Indicates if the request results in a valid response */
6542
+ isValid: boolean;
6517
6543
  /**
6518
- * @description Cache from which the composition was resolved
6544
+ * @description Source cache used
6519
6545
  * @enum {string}
6520
6546
  */
6521
6547
  sourceCache?: "edge-cdn-cache" | "long-term-cache" | "api-cache";
6522
6548
  /** @description Edge cache location used */
6523
6549
  cacheLocation?: string;
6524
- /** @description Uniform-specifc request identifiers */
6550
+ /** @description Uniform-specifc request identifier */
6525
6551
  requestId?: string;
6526
6552
  };
6527
6553
  configRetrieval?: {
6528
- /** @description How long it took to retrieve the config (ms, in parallel to composition fetch) */
6554
+ /** @description How long it took to retrieve the config (ms, in parallel to origin fetch) */
6529
6555
  duration: number;
6530
6556
  /** @description How many data type configs were retrieved */
6531
6557
  dataTypeCount: number;
6532
6558
  };
6533
6559
  };
6534
- CompositionIssue: {
6560
+ DataResolutionIssue: {
6535
6561
  componentPath?: string;
6536
6562
  componentType?: string;
6537
6563
  message: string;
@@ -6824,6 +6850,7 @@ interface external$3 {
6824
6850
  created?: string;
6825
6851
  /** @description Last modified date string for this content type (ignored for writes) */
6826
6852
  updated?: string;
6853
+ slugSettings?: external$3["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentDefinitionSlugSettings"];
6827
6854
  };
6828
6855
  /** @description Defines an editable parameter on a component. */
6829
6856
  ComponentParameter: {
@@ -7635,6 +7662,250 @@ interface external$3 {
7635
7662
  };
7636
7663
  operations: {};
7637
7664
  };
7665
+ "../../../lambda/functions/v1-entries.swagger.yml": {
7666
+ paths: {
7667
+ "/api/v1/entries": {
7668
+ get: {
7669
+ parameters: {
7670
+ query: {
7671
+ /** Specify multiple entry IDs to fetch. */
7672
+ entryIDs?: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["entryIDs"];
7673
+ /** Specify a single entry to fetch by slug. */
7674
+ slug?: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["slug"];
7675
+ /** Filters entry lists by the user who created them. The user is specified by their identity subject. */
7676
+ createdBy?: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["createdBy"];
7677
+ /** Max number of records to return */
7678
+ limit?: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["limit"];
7679
+ /** Number of records to skip */
7680
+ offset?: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["offset"];
7681
+ /** Sets the sorting of the results. If unspecified, results are sorted by name ascending. */
7682
+ orderBy?: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["orderBy"];
7683
+ /** The project the entry/entries are on. */
7684
+ projectId: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["projectId"];
7685
+ /** Publishing state to fetch. 0 = draft, 64 = published. */
7686
+ state?: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["state"];
7687
+ /** The content type ID to filter by. */
7688
+ type?: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["type"];
7689
+ /**
7690
+ * @deprecated Filters entries lists by the UI status of the entry.
7691
+ * This internal status is subject to change without notice, and is thus marked deprecated to discourage use of internal data.
7692
+ */
7693
+ uiStatus?: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["uiStatus"];
7694
+ /** Filters entry lists by the user who last updated them. The user is specified by their identity subject. */
7695
+ updatedBy?: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["updatedBy"];
7696
+ /**
7697
+ * Controls whether the total count of results will be returned along with the current results page in a list.
7698
+ * Has no effect when not fetching a list. This does impact performance when enabled.
7699
+ */
7700
+ withTotalCount?: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["withTotalCount"];
7701
+ /**
7702
+ * @deprecated Returns the UI status string of the entry.
7703
+ * This internal status is subject to change without notice, and is thus marked deprecated to discourage use of internal data.
7704
+ */
7705
+ withUIStatus?: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["parameters"]["withUIStatus"];
7706
+ };
7707
+ };
7708
+ responses: {
7709
+ /** OK */
7710
+ 200: {
7711
+ content: {
7712
+ "application/json": external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["schemas"]["EntryListResponse"];
7713
+ };
7714
+ };
7715
+ 400: external$3["../../../lambda/functions/swagger.yml"]["components"]["responses"]["BadRequestError"];
7716
+ 401: external$3["../../../lambda/functions/swagger.yml"]["components"]["responses"]["UnauthorizedError"];
7717
+ 403: external$3["../../../lambda/functions/swagger.yml"]["components"]["responses"]["ForbiddenError"];
7718
+ /** Entry not found */
7719
+ 404: {
7720
+ content: {
7721
+ "text/plain": string;
7722
+ };
7723
+ };
7724
+ 429: external$3["../../../lambda/functions/swagger.yml"]["components"]["responses"]["RateLimitError"];
7725
+ 500: external$3["../../../lambda/functions/swagger.yml"]["components"]["responses"]["InternalServerError"];
7726
+ };
7727
+ };
7728
+ /** Upserts an entry */
7729
+ put: {
7730
+ responses: {
7731
+ /** OK */
7732
+ 204: never;
7733
+ 400: external$3["../../../lambda/functions/swagger.yml"]["components"]["responses"]["BadRequestError"];
7734
+ 401: external$3["../../../lambda/functions/swagger.yml"]["components"]["responses"]["UnauthorizedError"];
7735
+ 403: external$3["../../../lambda/functions/swagger.yml"]["components"]["responses"]["ForbiddenError"];
7736
+ 429: external$3["../../../lambda/functions/swagger.yml"]["components"]["responses"]["RateLimitError"];
7737
+ 500: external$3["../../../lambda/functions/swagger.yml"]["components"]["responses"]["InternalServerError"];
7738
+ };
7739
+ requestBody: {
7740
+ content: {
7741
+ "application/json": {
7742
+ /**
7743
+ * Format: uuid
7744
+ * @description The project ID to upsert the entry to
7745
+ */
7746
+ projectId: string;
7747
+ /** @description The publishing state to upsert into. 0 = draft, 64 = published */
7748
+ state: number;
7749
+ entry: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["schemas"]["EntryInput"];
7750
+ /** @description Ignored if present */
7751
+ created?: string;
7752
+ /** @description Ignored if present */
7753
+ modified?: string;
7754
+ };
7755
+ };
7756
+ };
7757
+ };
7758
+ /** Deletes or unpublishes an entry */
7759
+ delete: {
7760
+ responses: {
7761
+ /** OK */
7762
+ 204: never;
7763
+ 400: external$3["../../../lambda/functions/swagger.yml"]["components"]["responses"]["BadRequestError"];
7764
+ 401: external$3["../../../lambda/functions/swagger.yml"]["components"]["responses"]["UnauthorizedError"];
7765
+ 403: external$3["../../../lambda/functions/swagger.yml"]["components"]["responses"]["ForbiddenError"];
7766
+ 429: external$3["../../../lambda/functions/swagger.yml"]["components"]["responses"]["RateLimitError"];
7767
+ 500: external$3["../../../lambda/functions/swagger.yml"]["components"]["responses"]["InternalServerError"];
7768
+ };
7769
+ requestBody: {
7770
+ content: {
7771
+ "application/json": {
7772
+ /**
7773
+ * Format: uuid
7774
+ * @description The ID of the entry to delete
7775
+ */
7776
+ entryId: string;
7777
+ /**
7778
+ * Format: uuid
7779
+ * @description The ID of the project the entry to delete belongs to
7780
+ */
7781
+ projectId: string;
7782
+ /** @description The state to delete (0 = draft, 64 = published [causes unpublishing], unspecified = all) */
7783
+ state?: number;
7784
+ };
7785
+ };
7786
+ };
7787
+ };
7788
+ /** Handles preflight requests. This endpoint allows CORS. */
7789
+ options: {
7790
+ responses: {
7791
+ /** OK */
7792
+ 204: never;
7793
+ };
7794
+ };
7795
+ };
7796
+ };
7797
+ components: {
7798
+ schemas: {
7799
+ /** @description Defines the shape of the entry */
7800
+ Entry: {
7801
+ /** @description Content type of the entry. */
7802
+ type: string;
7803
+ /**
7804
+ * Format: uuid
7805
+ * @description The public UUID of the entry.
7806
+ */
7807
+ _id: string;
7808
+ /** @description The name of the entry. */
7809
+ _name?: string;
7810
+ /** @description The slug of the entry, automatically generated. */
7811
+ _slug?: string;
7812
+ /** @description Name of the author of the most recent change. */
7813
+ _author?: string;
7814
+ /** @description Entry field values. */
7815
+ fields?: {
7816
+ [key: string]: external$3["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameter"];
7817
+ };
7818
+ _dataResources?: external$3["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
7819
+ };
7820
+ /** @description Defines the shape of the entry input */
7821
+ EntryInput: {
7822
+ /** @description Content type of the entry. */
7823
+ type: string;
7824
+ /**
7825
+ * Format: uuid
7826
+ * @description The public UUID of the entry.
7827
+ */
7828
+ _id?: string;
7829
+ /** @description Entry field values. */
7830
+ fields?: {
7831
+ [key: string]: external$3["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameter"];
7832
+ };
7833
+ _dataResources?: external$3["../../../lambda/functions/uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
7834
+ };
7835
+ EntryApiResponse: {
7836
+ /** @description Publishing state to fetch. 0 = draft, 64 = published. */
7837
+ state: number;
7838
+ /**
7839
+ * @deprecated
7840
+ * @description UI status value. Subject to change without notice; do not rely on this value. Only present when `withUIStatus` option is true.
7841
+ * @enum {string}
7842
+ */
7843
+ uiStatus?: "Draft" | "Modified" | "Published" | "Orphan" | "Previous";
7844
+ /**
7845
+ * Format: uuid
7846
+ * @description The project ID that this layout data is part of
7847
+ */
7848
+ projectId: string;
7849
+ /**
7850
+ * Format: date-time,
7851
+ * @description Created date string for this definition
7852
+ */
7853
+ created: string;
7854
+ /**
7855
+ * Format: date-time,
7856
+ * @description Modified date string for this definition
7857
+ */
7858
+ modified: string;
7859
+ entry: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["schemas"]["Entry"];
7860
+ };
7861
+ EntryListResponse: {
7862
+ entries: external$3["../../../lambda/functions/v1-entries.swagger.yml"]["components"]["schemas"]["EntryApiResponse"][];
7863
+ /** @description Total number of entries that match the query. Only present when `withTotalCount` option is true. */
7864
+ totalCount?: number;
7865
+ };
7866
+ };
7867
+ parameters: {
7868
+ /** @description The project the entry/entries are on. */
7869
+ projectId: string;
7870
+ /** @description Specify multiple entry IDs to fetch. */
7871
+ entryIDs: string[];
7872
+ /** @description Specify a single entry to fetch by slug. */
7873
+ slug: string;
7874
+ /** @description The content type ID to filter by. */
7875
+ type: string[];
7876
+ /** @description Publishing state to fetch. 0 = draft, 64 = published. */
7877
+ state: number;
7878
+ /** @description Number of records to skip */
7879
+ offset: number;
7880
+ /** @description Max number of records to return */
7881
+ limit: number;
7882
+ /** @description Sets the sorting of the results. If unspecified, results are sorted by name ascending. */
7883
+ orderBy: ("updated_at_DESC" | "updated_at_ASC" | "created_at_DESC" | "created_at_ASC" | "name_DESC" | "name_ASC")[];
7884
+ /**
7885
+ * @deprecated
7886
+ * @description Returns the UI status string of the entry.
7887
+ * This internal status is subject to change without notice, and is thus marked deprecated to discourage use of internal data.
7888
+ */
7889
+ withUIStatus: boolean;
7890
+ /**
7891
+ * @deprecated
7892
+ * @description Filters entries lists by the UI status of the entry.
7893
+ * This internal status is subject to change without notice, and is thus marked deprecated to discourage use of internal data.
7894
+ */
7895
+ uiStatus: ("Draft" | "Modified" | "Published" | "Orphan")[];
7896
+ /** @description Filters entry lists by the user who created them. The user is specified by their identity subject. */
7897
+ createdBy: string;
7898
+ /** @description Filters entry lists by the user who last updated them. The user is specified by their identity subject. */
7899
+ updatedBy: string;
7900
+ /**
7901
+ * @description Controls whether the total count of results will be returned along with the current results page in a list.
7902
+ * Has no effect when not fetching a list. This does impact performance when enabled.
7903
+ */
7904
+ withTotalCount: boolean;
7905
+ };
7906
+ };
7907
+ operations: {};
7908
+ };
7638
7909
  "../../../lambda/functions/v1-redirect.swagger.yml": {
7639
7910
  paths: {
7640
7911
  "/api/v1/redirect": {
@@ -8351,6 +8622,7 @@ interface external$2 {
8351
8622
  created?: string;
8352
8623
  /** @description Last modified date string for this content type (ignored for writes) */
8353
8624
  updated?: string;
8625
+ slugSettings?: external$2["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentDefinitionSlugSettings"];
8354
8626
  };
8355
8627
  /** @description Defines an editable parameter on a component. */
8356
8628
  ComponentParameter: {
@@ -9480,21 +9752,25 @@ type DataResolutionParameters = {
9480
9752
  diagnostics?: boolean;
9481
9753
  };
9482
9754
  /** Types of issue that can occur when fetching composition data */
9483
- type CompositionIssue = CompositionPatternIssue | DataResourceIssue | DataElementBindingIssue | DynamicInputIssue | DataResolutionConfigIssue;
9484
- type CompositionIssueCore = components$1['schemas']['CompositionIssue'];
9755
+ type DataResolutionIssue = PatternIssue | DataResourceIssue | DataElementBindingIssue | DynamicInputIssue | DataResolutionConfigIssue;
9756
+ /** @deprecated use DataResolutionIssue instead */
9757
+ type CompositionIssue = DataResolutionIssue;
9758
+ type DataResolutionIssueCore = components$1['schemas']['DataResolutionIssue'];
9485
9759
  /** An error that occured resolving a pattern that is referenced on the composition */
9486
- type CompositionPatternIssue = CompositionIssueCore & {
9760
+ type PatternIssue = DataResolutionIssueCore & {
9487
9761
  type: 'pattern';
9488
9762
  code: NonNullable<ComponentInstance['_patternError']>;
9489
9763
  };
9764
+ /** @deprecated use PatternIssue instead */
9765
+ type CompositionPatternIssue = PatternIssue;
9490
9766
  /** An error while binding a dynamic token from a data resource to a component parameter (i.e. a missing property in the data resource) */
9491
- type DataElementBindingIssue = CompositionIssueCore & {
9767
+ type DataElementBindingIssue = DataResolutionIssueCore & {
9492
9768
  type: 'binding';
9493
9769
  parameterName: string;
9494
9770
  expression?: DataElementConnectionDefinition;
9495
9771
  };
9496
9772
  /** An error that occurred fetching a data defined on the composition or a pattern within */
9497
- type DataResourceIssue = CompositionIssueCore & {
9773
+ type DataResourceIssue = DataResolutionIssueCore & {
9498
9774
  type: 'data';
9499
9775
  dataName: string;
9500
9776
  dataType: string;
@@ -9503,7 +9779,7 @@ type DataResourceIssue = CompositionIssueCore & {
9503
9779
  * An issue that occurred while binding dynamic inputs to composition data resources,
9504
9780
  * specifically when an expected dynamic input did not have a value.
9505
9781
  */
9506
- type DynamicInputIssue = CompositionIssueCore & {
9782
+ type DynamicInputIssue = DataResolutionIssueCore & {
9507
9783
  type: 'input';
9508
9784
  };
9509
9785
  /** Error in data resolution configuration (internal error) */
@@ -9512,9 +9788,13 @@ type DataResolutionConfigIssue = {
9512
9788
  type: 'config';
9513
9789
  };
9514
9790
  /** Diagnostics about edge request processing */
9515
- type CompositionDiagnostics = components$1['schemas']['CompositionDiagnostics'];
9791
+ type EdgehancersDiagnostics = components$1['schemas']['EdgehancersDiagnostics'];
9792
+ /** @deprecated use EdgehancersDiagnostics instead */
9793
+ type CompositionDiagnostics = EdgehancersDiagnostics;
9516
9794
  /** Diagnostic data about the load performance of attached composition datas */
9517
- type CompositionDataDiagnostic = components$1['schemas']['DataDiagnostic'];
9795
+ type DataDiagnostic = components$1['schemas']['DataDiagnostic'];
9796
+ /** @deprecated use DataDiagnostic instead */
9797
+ type CompositionDataDiagnostic = DataDiagnostic;
9518
9798
  /** Response as it comes from uniform.global/api/v1/composition */
9519
9799
  type CompositionResolvedGetResponse = components$1['schemas']['CompositionResolvedGetResponse'];
9520
9800
  type CompositionResolvedListResponse = components$1['schemas']['CompositionResolvedListResponse'];
@@ -9530,6 +9810,7 @@ type RouteDynamicInputs = components['schemas']['RouteDynamicInputs'];
9530
9810
  /** The GET response from /api/v1/entries */
9531
9811
  type EntriesGetParameters = paths$8['/api/v1/entries']['get']['parameters']['query'] & DataResolutionParameters;
9532
9812
  type EntriesGetResponse = components$4['schemas']['EntryListResponse'];
9813
+ type EntriesResolvedListResponse = components$1['schemas']['EntryResolvedListResponse'];
9533
9814
  /** GET response from uniform.global/api/v1/route when result is a composition */
9534
9815
  type RouteGetResponseEdgehancedComposition = Omit<RouteGetResponseComposition, 'compositionApiResponse'> & {
9535
9816
  compositionApiResponse: CompositionResolvedGetResponse;
@@ -10104,15 +10385,24 @@ type PreviewPanelSettings = {
10104
10385
  isInteractive: boolean;
10105
10386
  };
10106
10387
  type ContextualEditingComponentReference = {
10107
- elements: HTMLElement[];
10108
10388
  id: string;
10109
- slotName?: string;
10110
- componentIndex?: number;
10111
- totalComponents?: number;
10112
- componentName?: string;
10113
- componentTitle?: string;
10389
+ icon?: string;
10390
+ type?: string;
10391
+ title?: string;
10392
+ name?: string;
10393
+ parameters?: Record<string, {
10394
+ id: string;
10395
+ type: string;
10396
+ name?: string;
10397
+ isReadOnly?: boolean;
10398
+ }>;
10114
10399
  parentId?: string;
10115
10400
  parentType?: string;
10401
+ parentSlot?: {
10402
+ id?: string;
10403
+ componentIndex?: number;
10404
+ totalComponents?: number;
10405
+ };
10116
10406
  isLocalized?: boolean;
10117
10407
  isReadOnly?: boolean | undefined;
10118
10408
  };
@@ -10546,8 +10836,8 @@ type SelectComponentMessage = {
10546
10836
  };
10547
10837
  type SelectParameterMessage = {
10548
10838
  type: 'select-parameter';
10549
- parameterId: string;
10550
- componentId: string;
10839
+ parameterId?: string;
10840
+ componentId?: string;
10551
10841
  };
10552
10842
  type ReadyMessage = {
10553
10843
  type: 'ready';
@@ -10555,6 +10845,15 @@ type ReadyMessage = {
10555
10845
  /** A non-semantic version of the contextual editing SDK. */
10556
10846
  version?: number;
10557
10847
  };
10848
+ type TriggerComponentActionMessage = {
10849
+ type: 'trigger-component-action';
10850
+ actionType: 'insert-before' | 'insert-after' | 'duplicate' | 'delete';
10851
+ componentReference: Omit<ContextualEditingComponentReference, 'elements'>;
10852
+ };
10853
+ type UpdateComponentReferencesMessage = {
10854
+ type: 'update-component-references';
10855
+ referencesById: Record<string, ContextualEditingComponentReference>;
10856
+ };
10558
10857
  type UpdateCompositionMessage = {
10559
10858
  type: 'update-composition';
10560
10859
  composition: RootComponentInstance;
@@ -10578,6 +10877,11 @@ type MoveComponentMessage = {
10578
10877
  index: number;
10579
10878
  direction: 'up' | 'down';
10580
10879
  };
10880
+ type OpenParameterEditorMessage = {
10881
+ type: 'open-parameter-editor';
10882
+ componentId: string;
10883
+ parameterId: string;
10884
+ };
10581
10885
  type UpdateComponentParameterMessage = {
10582
10886
  type: 'update-component-parameter';
10583
10887
  componentId: string;
@@ -10611,9 +10915,10 @@ type ReportRenderedCompositionsMessage = {
10611
10915
  type EditorStateUpdatedMessage = {
10612
10916
  type: 'editor-state-updated';
10613
10917
  };
10614
- type ChannelMessage = SelectComponentMessage | ReadyMessage | UpdateCompositionMessage | UpdateCompositionInternalMessage | AddComponentMessage | MoveComponentMessage | TriggerCompositionActionMessage | UpdatePreviewSettingsMessage | ReportRenderedCompositionsMessage | UpdateComponentParameterMessage | UpdateContextualEditingStateInternalMessage | SelectParameterMessage | DismissPlaceholderMessage | EditorStateUpdatedMessage;
10918
+ type ChannelMessage = SelectComponentMessage | ReadyMessage | UpdateCompositionMessage | UpdateCompositionInternalMessage | TriggerComponentActionMessage | AddComponentMessage | MoveComponentMessage | TriggerCompositionActionMessage | UpdatePreviewSettingsMessage | ReportRenderedCompositionsMessage | UpdateComponentParameterMessage | UpdateContextualEditingStateInternalMessage | SelectParameterMessage | DismissPlaceholderMessage | UpdateComponentReferencesMessage | OpenParameterEditorMessage | EditorStateUpdatedMessage;
10615
10919
  declare const isSelectComponentMessage: (message: ChannelMessage) => message is SelectComponentMessage;
10616
10920
  declare const isReadyMessage: (message: ChannelMessage) => message is ReadyMessage;
10921
+ declare const isComponentActionMessage: (message: ChannelMessage) => message is TriggerComponentActionMessage;
10617
10922
  declare const isUpdateCompositionMessage: (message: ChannelMessage) => message is UpdateCompositionMessage;
10618
10923
  declare const isUpdateCompositionInternalMessage: (message: ChannelMessage) => message is UpdateCompositionInternalMessage;
10619
10924
  declare const isAddComponentMessage: (message: ChannelMessage) => message is AddComponentMessage;
@@ -10625,13 +10930,17 @@ declare const isUpdatePreviewSettingsMessage: (message: ChannelMessage) => messa
10625
10930
  declare const isUpdateContextualEditingStateInternalMessage: (message: ChannelMessage) => message is UpdateContextualEditingStateInternalMessage;
10626
10931
  declare const isReportRenderedCompositionsMessage: (message: ChannelMessage) => message is ReportRenderedCompositionsMessage;
10627
10932
  declare const isSelectParameterMessage: (message: ChannelMessage) => message is SelectParameterMessage;
10933
+ declare const isOpenParameterEditorMessage: (message: ChannelMessage) => message is OpenParameterEditorMessage;
10934
+ declare const isUpdateComponentReferencesMessage: (message: ChannelMessage) => message is UpdateComponentReferencesMessage;
10628
10935
  type MessageHandler = (message: ChannelMessage, originalEvent: MessageEvent) => void;
10629
10936
  type Channel = {
10630
10937
  on: (types: ChannelMessage['type'][] | ChannelMessage['type'], handler: MessageHandler) => () => void;
10631
10938
  ready: () => void;
10632
10939
  destroy: () => void;
10940
+ triggerComponentAction: (options: Omit<TriggerComponentActionMessage, 'type'>) => void;
10633
10941
  selectComponent: (id: string) => void;
10634
10942
  selectParameter: (options: Omit<SelectParameterMessage, 'type'>) => void;
10943
+ openParameterEditor: (options: Omit<OpenParameterEditorMessage, 'type'>) => void;
10635
10944
  updateComposition: (composition: RootComponentInstance, secret?: string) => void;
10636
10945
  updateCompositionInternal: (composition: RootComponentInstance, hash?: number) => void;
10637
10946
  addComponent: (options: Omit<AddComponentMessage, 'type'>) => void;
@@ -10642,6 +10951,7 @@ type Channel = {
10642
10951
  updatePreviewSettings: (options: Omit<UpdatePreviewSettingsMessage, 'type'>) => void;
10643
10952
  updateContextualEditingStateInternal: (options: Omit<UpdateContextualEditingStateInternalMessage, 'type'>) => void;
10644
10953
  reportRenderedCompositions: (options: Omit<ReportRenderedCompositionsMessage, 'type'>) => void;
10954
+ updateComponentReferences: (options: Omit<UpdateComponentReferencesMessage, 'type'>) => void;
10645
10955
  editorStateUpdated: () => void;
10646
10956
  };
10647
10957
  declare const createCanvasChannel: ({ listenTo, broadcastTo, }: {
@@ -11017,4 +11327,4 @@ declare function parseVariableExpression(serialized: string, onToken?: (token: s
11017
11327
 
11018
11328
  declare const CanvasClientError: typeof ApiClientError;
11019
11329
 
11020
- export { ATTRIBUTE_COMPONENT_ID, ATTRIBUTE_MULTILINE, ATTRIBUTE_PARAMETER_ID, ATTRIBUTE_PARAMETER_TYPE, ATTRIBUTE_PARAMETER_VALUE, ATTRIBUTE_PLACEHOLDER, AddComponentMessage, BatchEnhancer, BatchEntry, BatchInvalidationPayload, BindVariablesOptions, BindVariablesResult, BindVariablesToObjectOptions, 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_TEST_SLOT, CANVAS_TEST_TYPE, CANVAS_TEST_VARIANT_PARAM, CanvasClient, CanvasClientError, CanvasDefinitions, CategoriesDeleteParameters, CategoriesGetParameters, CategoriesGetResponse, CategoriesPutParameters, Category, CategoryClient, Channel, ChannelMessage, ChannelSubscription, ChildEnhancerBuilder, ComponentDefinition, ComponentDefinitionDeleteParameters, ComponentDefinitionGetParameters, ComponentDefinitionGetResponse, ComponentDefinitionParameter, ComponentDefinitionPermission, ComponentDefinitionPutParameters, ComponentDefinitionSlot, ComponentDefinitionSlugSettings, ComponentDefinitionVariant, ComponentEnhancer, ComponentEnhancerFunction, ComponentEnhancerOptions, ComponentInstance, ComponentInstanceContextualEditing, ComponentInstanceHistoryEntry, ComponentInstanceHistoryGetParameters, ComponentInstanceHistoryGetResponse, ComponentLocationReference, ComponentOverridability, ComponentOverride, ComponentOverrides, ComponentParameter, ComponentParameterContextualEditing, ComponentParameterEnhancer, ComponentParameterEnhancerFunction, ComponentParameterEnhancerOptions, CompositionDataDiagnostic, CompositionDeleteParameters, CompositionDiagnostics, CompositionGetByComponentIdParameters, CompositionGetByIdParameters, CompositionGetByNodeIdParameters, CompositionGetByNodePathParameters, CompositionGetBySlugParameters, CompositionGetListResponse, CompositionGetOrderBy, CompositionGetParameters, CompositionGetResponse, CompositionGetValidResponses, CompositionIssue, CompositionPatternIssue, CompositionPutParameters, CompositionRelationshipsClientOptions, CompositionRelationshipsDDefinitionGetResponse, CompositionRelationshipsDefinitionApi, CompositionRelationshipsDefinitionGetParameters, CompositionResolvedGetResponse, CompositionResolvedListResponse, CompositionUIStatus, ContentClient, ContentType, ContentTypeField, ContextualEditingComponentReference, DataElementBindingIssue, DataElementConnectionDefinition, DataResolutionConfigIssue, DataResolutionOption, DataResolutionOptionNegative, DataResolutionOptionPositive, DataResolutionParameters, DataResourceDefinition, DataResourceDefinitions, DataResourceIssue, DataResourceVariables, DataSource, DataSourceClient, DataSourceDeleteParameters, DataSourceGetParameters, DataSourceGetResponse, DataSourcePutParameters, DataSourcesGetParameters, DataSourcesGetResponse, DataType, DataTypeClient, DataTypeDeleteParameters, DataTypeGetParameters, DataTypeGetResponse, DataTypePutParameters, DataVariableDefinition, DeleteContentTypeOptions, DeleteEntryOptions, DismissPlaceholderMessage, DynamicInputIssue, EDGE_CACHE_DISABLED, EDGE_DEFAULT_CACHE_TTL, EDGE_DEFAULT_L2_CACHE_TTL_IN_HOURS, EDGE_MAX_CACHE_TTL, EDGE_MAX_L2_CACHE_TTL_IN_HOURS, EDGE_MIN_CACHE_TTL, EDGE_MIN_L2_CACHE_TTL_IN_HOURS, EMPTY_COMPOSITION, EditorStateUpdatedMessage, EnhancerBuilder, EnhancerContext, EnhancerError, EntriesGetParameters, EntriesGetResponse, Entry, EventNames, GetContentTypesOptions, GetContentTypesResponse, GetEntriesOptions, GetEntriesResponse, 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_PLAYGROUND_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_QUERY_STRING_PARAM, IS_RENDERED_BY_UNIFORM_ATTRIBUTE, InvalidationPayload, LimitPolicy, LinkComponentParameterValue, LinkParamConfiguration, LinkParamValue, LinkParameterType, LinkTypeConfiguration, MessageHandler, MoveComponentMessage, NonProjectMapLinkParamValue, OverrideOptions, PLACEHOLDER_ID, PreviewEventBus, PreviewPanelSettings, ProjectMapLinkComponentParameterValue, ProjectMapLinkParamValue, PutContentTypeBody, PutEntryBody, ReadyMessage, ReportRenderedCompositionsMessage, ResolvedRouteGetResponse, RichTextBuiltInElement, RichTextBuiltInFormat, RichTextParamConfiguration, RichTextParamValue, RootComponentInstance, RouteClient, RouteDynamicInputs, RouteGetParameters, RouteGetResponse, RouteGetResponseComposition, RouteGetResponseEdgehancedComposition, RouteGetResponseNotFound, RouteGetResponseRedirect, SelectComponentMessage, SelectParameterMessage, SpecificProjectMap, SubscribeToCompositionOptions, TriggerCompositionActionMessage, UncachedCanvasClient, UncachedCategoryClient, UncachedContentClient, UniqueBatchEntries, UnsubscribeCallback, UpdateComponentParameterMessage, UpdateCompositionInternalMessage, UpdateCompositionMessage, UpdateContextualEditingStateInternalMessage, UpdatePreviewSettingsMessage, UsageTrackingApi, UsageTrackingGetParameters, UsageTrackingGetResponse, UsageTrackingPostParameters, UsageTrackingPostResponse, WalkComponentTreeActions, bindVariables, bindVariablesToObject, compose, convertEntryToPutEntry, createBatchEnhancer, createCanvasChannel, createEventBus, createLimitPolicy, createUniformApiEnhancer, createVariableReference, enhance, extractLocales, generateHash, getChannelName, getComponentJsonPointer, getComponentPath, getParameterAttributes, isAddComponentMessage, isDismissPlaceholderMessage, isMovingComponentMessage, isReadyMessage, isReportRenderedCompositionsMessage, isSelectComponentMessage, isSelectParameterMessage, isSystemComponentDefinition, isTriggerCompositionActionMessage, isUpdateComponentParameterMessage, isUpdateCompositionInternalMessage, isUpdateCompositionMessage, isUpdateContextualEditingStateInternalMessage, isUpdatePreviewSettingsMessage, localize, mapSlotToPersonalizedVariations, mapSlotToTestVariations, nullLimitPolicy, parseVariableExpression, subscribeToComposition, unstable_CompositionRelationshipClient, walkComponentTree };
11330
+ export { ATTRIBUTE_COMPONENT_ID, ATTRIBUTE_MULTILINE, ATTRIBUTE_PARAMETER_ID, ATTRIBUTE_PARAMETER_TYPE, ATTRIBUTE_PARAMETER_VALUE, ATTRIBUTE_PLACEHOLDER, AddComponentMessage, BatchEnhancer, BatchEntry, BatchInvalidationPayload, BindVariablesOptions, BindVariablesResult, BindVariablesToObjectOptions, 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_TEST_SLOT, CANVAS_TEST_TYPE, CANVAS_TEST_VARIANT_PARAM, CanvasClient, CanvasClientError, CanvasDefinitions, CategoriesDeleteParameters, CategoriesGetParameters, CategoriesGetResponse, CategoriesPutParameters, Category, CategoryClient, Channel, ChannelMessage, ChannelSubscription, ChildEnhancerBuilder, ComponentDefinition, ComponentDefinitionDeleteParameters, ComponentDefinitionGetParameters, ComponentDefinitionGetResponse, ComponentDefinitionParameter, ComponentDefinitionPermission, ComponentDefinitionPutParameters, ComponentDefinitionSlot, ComponentDefinitionSlugSettings, ComponentDefinitionVariant, ComponentEnhancer, ComponentEnhancerFunction, ComponentEnhancerOptions, ComponentInstance, ComponentInstanceContextualEditing, ComponentInstanceHistoryEntry, ComponentInstanceHistoryGetParameters, ComponentInstanceHistoryGetResponse, ComponentLocationReference, ComponentOverridability, ComponentOverride, ComponentOverrides, ComponentParameter, ComponentParameterContextualEditing, ComponentParameterEnhancer, ComponentParameterEnhancerFunction, ComponentParameterEnhancerOptions, CompositionDataDiagnostic, CompositionDeleteParameters, CompositionDiagnostics, CompositionGetByComponentIdParameters, CompositionGetByIdParameters, CompositionGetByNodeIdParameters, CompositionGetByNodePathParameters, CompositionGetBySlugParameters, CompositionGetListResponse, CompositionGetOrderBy, CompositionGetParameters, CompositionGetResponse, CompositionGetValidResponses, CompositionIssue, CompositionPatternIssue, CompositionPutParameters, CompositionRelationshipsClientOptions, CompositionRelationshipsDDefinitionGetResponse, CompositionRelationshipsDefinitionApi, CompositionRelationshipsDefinitionGetParameters, CompositionResolvedGetResponse, CompositionResolvedListResponse, CompositionUIStatus, ContentClient, ContentType, ContentTypeField, ContextualEditingComponentReference, DataDiagnostic, DataElementBindingIssue, DataElementConnectionDefinition, DataResolutionConfigIssue, DataResolutionIssue, DataResolutionOption, DataResolutionOptionNegative, DataResolutionOptionPositive, DataResolutionParameters, DataResourceDefinition, DataResourceDefinitions, DataResourceIssue, DataResourceVariables, DataSource, DataSourceClient, DataSourceDeleteParameters, DataSourceGetParameters, DataSourceGetResponse, DataSourcePutParameters, DataSourcesGetParameters, DataSourcesGetResponse, DataType, DataTypeClient, DataTypeDeleteParameters, DataTypeGetParameters, DataTypeGetResponse, DataTypePutParameters, DataVariableDefinition, DeleteContentTypeOptions, DeleteEntryOptions, DismissPlaceholderMessage, DynamicInputIssue, EDGE_CACHE_DISABLED, EDGE_DEFAULT_CACHE_TTL, EDGE_DEFAULT_L2_CACHE_TTL_IN_HOURS, EDGE_MAX_CACHE_TTL, EDGE_MAX_L2_CACHE_TTL_IN_HOURS, EDGE_MIN_CACHE_TTL, EDGE_MIN_L2_CACHE_TTL_IN_HOURS, EMPTY_COMPOSITION, EdgehancersDiagnostics, EditorStateUpdatedMessage, EnhancerBuilder, EnhancerContext, EnhancerError, EntriesGetParameters, EntriesGetResponse, EntriesResolvedListResponse, Entry, EventNames, GetContentTypesOptions, GetContentTypesResponse, GetEntriesOptions, GetEntriesResponse, 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_PLAYGROUND_QUERY_STRING_PARAM, IN_CONTEXT_EDITOR_QUERY_STRING_PARAM, IS_RENDERED_BY_UNIFORM_ATTRIBUTE, InvalidationPayload, LimitPolicy, LinkComponentParameterValue, LinkParamConfiguration, LinkParamValue, LinkParameterType, LinkTypeConfiguration, MessageHandler, MoveComponentMessage, NonProjectMapLinkParamValue, OpenParameterEditorMessage, OverrideOptions, PLACEHOLDER_ID, PatternIssue, PreviewEventBus, PreviewPanelSettings, ProjectMapLinkComponentParameterValue, ProjectMapLinkParamValue, PutContentTypeBody, PutEntryBody, ReadyMessage, ReportRenderedCompositionsMessage, ResolvedRouteGetResponse, RichTextBuiltInElement, RichTextBuiltInFormat, RichTextParamConfiguration, RichTextParamValue, RootComponentInstance, RouteClient, RouteDynamicInputs, RouteGetParameters, RouteGetResponse, RouteGetResponseComposition, RouteGetResponseEdgehancedComposition, RouteGetResponseNotFound, RouteGetResponseRedirect, SelectComponentMessage, SelectParameterMessage, SpecificProjectMap, SubscribeToCompositionOptions, TriggerComponentActionMessage, TriggerCompositionActionMessage, UncachedCanvasClient, UncachedCategoryClient, UncachedContentClient, UniqueBatchEntries, UnsubscribeCallback, UpdateComponentParameterMessage, UpdateComponentReferencesMessage, UpdateCompositionInternalMessage, UpdateCompositionMessage, UpdateContextualEditingStateInternalMessage, UpdatePreviewSettingsMessage, UsageTrackingApi, UsageTrackingGetParameters, UsageTrackingGetResponse, UsageTrackingPostParameters, UsageTrackingPostResponse, WalkComponentTreeActions, bindVariables, bindVariablesToObject, compose, convertEntryToPutEntry, createBatchEnhancer, createCanvasChannel, createEventBus, createLimitPolicy, createUniformApiEnhancer, createVariableReference, enhance, extractLocales, generateHash, getChannelName, getComponentJsonPointer, getComponentPath, getParameterAttributes, isAddComponentMessage, isComponentActionMessage, isDismissPlaceholderMessage, isMovingComponentMessage, isOpenParameterEditorMessage, isReadyMessage, isReportRenderedCompositionsMessage, isSelectComponentMessage, isSelectParameterMessage, isSystemComponentDefinition, isTriggerCompositionActionMessage, isUpdateComponentParameterMessage, isUpdateComponentReferencesMessage, isUpdateCompositionInternalMessage, isUpdateCompositionMessage, isUpdateContextualEditingStateInternalMessage, isUpdatePreviewSettingsMessage, localize, mapSlotToPersonalizedVariations, mapSlotToTestVariations, nullLimitPolicy, parseVariableExpression, subscribeToComposition, unstable_CompositionRelationshipClient, walkComponentTree };