ochre-sdk 0.22.1 → 0.22.3

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
@@ -1139,19 +1139,23 @@ type WebElementComponent = {
1139
1139
  title: string | null;
1140
1140
  };
1141
1141
  };
1142
- displayedProperties: Array<{
1143
- uuid: string;
1144
- label: string;
1145
- }> | null;
1146
- variant: Extract<WebElementComponent, {
1147
- component: "collection";
1148
- }>["variant"];
1149
- paginationVariant: Extract<WebElementComponent, {
1150
- component: "collection";
1151
- }>["paginationVariant"];
1152
- layout: Extract<WebElementComponent, {
1153
- component: "collection";
1154
- }>["layout"];
1142
+ collectionProperties: {
1143
+ displayedProperties: Extract<WebElementComponent, {
1144
+ component: "collection";
1145
+ }>["displayedProperties"];
1146
+ variant: Extract<WebElementComponent, {
1147
+ component: "collection";
1148
+ }>["variant"];
1149
+ paginationVariant: Extract<WebElementComponent, {
1150
+ component: "collection";
1151
+ }>["paginationVariant"];
1152
+ loadingVariant: Extract<WebElementComponent, {
1153
+ component: "collection";
1154
+ }>["loadingVariant"];
1155
+ layout: Extract<WebElementComponent, {
1156
+ component: "collection";
1157
+ }>["layout"];
1158
+ };
1155
1159
  } | {
1156
1160
  component: "search-bar";
1157
1161
  queryVariant: "submit" | "change";