@wix/stores 1.0.324 → 1.0.325

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/stores",
3
- "version": "1.0.324",
3
+ "version": "1.0.325",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -23,13 +23,13 @@
23
23
  "dependencies": {
24
24
  "@wix/stores_brands-v-3": "1.0.30",
25
25
  "@wix/stores_catalog-versioning": "1.0.17",
26
- "@wix/stores_collections": "1.0.50",
26
+ "@wix/stores_collections": "1.0.51",
27
27
  "@wix/stores_customizations-v-3": "1.0.32",
28
28
  "@wix/stores_info-sections-v-3": "1.0.31",
29
29
  "@wix/stores_inventory": "1.0.68",
30
- "@wix/stores_inventory-items-v-3": "1.0.41",
31
- "@wix/stores_products": "1.0.93",
32
- "@wix/stores_products-v-3": "1.0.86",
30
+ "@wix/stores_inventory-items-v-3": "1.0.42",
31
+ "@wix/stores_products": "1.0.94",
32
+ "@wix/stores_products-v-3": "1.0.87",
33
33
  "@wix/stores_ribbons-v-3": "1.0.26",
34
34
  "@wix/stores_stores-locations-v-3": "1.0.32",
35
35
  "@wix/stores_subscription-options": "1.0.50",
@@ -58,5 +58,5 @@
58
58
  "fqdn": ""
59
59
  }
60
60
  },
61
- "falconPackageHash": "9d101373243d12e8ad0b6f4579487d464dd16ed246cd00e364c9a797"
61
+ "falconPackageHash": "d4267928b0f32ea3131ad45903eb0b7d71859baff03b90c65284f0ca"
62
62
  }
@@ -777,11 +777,11 @@ interface Tag$2 {
777
777
  */
778
778
  type?: string;
779
779
  /**
780
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
781
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
780
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
781
+ * For example: `{"name": "description", "content": "the description itself"}`.
782
782
  */
783
783
  props?: Record<string, any> | null;
784
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
784
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
785
785
  meta?: Record<string, any> | null;
786
786
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
787
787
  children?: string;
@@ -1504,11 +1504,11 @@ interface Tag$1 {
1504
1504
  */
1505
1505
  type?: string;
1506
1506
  /**
1507
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
1508
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
1507
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
1508
+ * For example: `{"name": "description", "content": "the description itself"}`.
1509
1509
  */
1510
1510
  props?: Record<string, any> | null;
1511
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
1511
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
1512
1512
  meta?: Record<string, any> | null;
1513
1513
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
1514
1514
  children?: string;
@@ -8710,9 +8710,9 @@ interface BulkSetOrAdjustInventoryItemsByFilterRequest {
8710
8710
  * }`
8711
8711
  * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
8712
8712
  */
8713
- filter?: Record<string, any> | null;
8713
+ filter: Record<string, any> | null;
8714
8714
  /** Action to adjust the inventory by. (e.g increment or decrement) */
8715
- adjustedInventoryAction?: AdjustInventoryAction;
8715
+ adjustedInventoryAction: AdjustInventoryAction;
8716
8716
  /** Free text to match in searchable fields */
8717
8717
  search?: SearchDetails$1;
8718
8718
  }
@@ -9630,6 +9630,9 @@ interface BulkUpdateInventoryItemsResponseNonNullableFields {
9630
9630
  interface BulkUpdateInventoryItemsByFilterResponseNonNullableFields {
9631
9631
  jobId: string;
9632
9632
  }
9633
+ interface BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields {
9634
+ jobId: string;
9635
+ }
9633
9636
  interface BulkInventoryItemResultNonNullableFields$1 {
9634
9637
  itemMetadata?: ItemMetadataNonNullableFields$2;
9635
9638
  }
@@ -9878,6 +9881,12 @@ interface BulkUpdateInventoryItemsByFilterOptions {
9878
9881
  /** Free text to match in searchable fields. */
9879
9882
  search?: SearchDetails$1;
9880
9883
  }
9884
+ interface BulkSetOrAdjustInventoryItemsByFilterOptions {
9885
+ /** Action to adjust the inventory by. (e.g increment or decrement) */
9886
+ adjustedInventoryAction: AdjustInventoryAction;
9887
+ /** Free text to match in searchable fields */
9888
+ search?: SearchDetails$1;
9889
+ }
9881
9890
  interface QueryCursorResult$3 {
9882
9891
  cursors: Cursors$3;
9883
9892
  hasNext: () => boolean;
@@ -10082,6 +10091,21 @@ interface BulkUpdateInventoryItemsByFilterSignature {
10082
10091
  */
10083
10092
  (filter: Record<string, any> | null, options?: BulkUpdateInventoryItemsByFilterOptions | undefined): Promise<BulkUpdateInventoryItemsByFilterResponse & BulkUpdateInventoryItemsByFilterResponseNonNullableFields>;
10084
10093
  }
10094
+ declare function bulkSetOrAdjustInventoryItemsByFilter$1(httpClient: HttpClient): BulkSetOrAdjustInventoryItemsByFilterSignature;
10095
+ interface BulkSetOrAdjustInventoryItemsByFilterSignature {
10096
+ /**
10097
+ * Set or Adjust inventory items which satisfy the provided filter.
10098
+ * If item track quantity, adjust it's quantity,
10099
+ * In case non-tracking, updates it to track and sets quantity to `incrementBy` or `decrementBy`.
10100
+ * @param - Filter object in the following format:
10101
+ * `"filter" : {
10102
+ * "fieldName1": "value1",
10103
+ * "fieldName2":{"$operator":"value2"}
10104
+ * }`
10105
+ * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
10106
+ */
10107
+ (filter: Record<string, any> | null, options?: BulkSetOrAdjustInventoryItemsByFilterOptions | undefined): Promise<BulkSetOrAdjustInventoryItemsByFilterResponse & BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields>;
10108
+ }
10085
10109
  declare function deleteInventoryItem$1(httpClient: HttpClient): DeleteInventoryItemSignature;
10086
10110
  interface DeleteInventoryItemSignature {
10087
10111
  /**
@@ -10194,6 +10218,7 @@ declare const getInventoryItem: MaybeContext<BuildRESTFunction<typeof getInvento
10194
10218
  declare const updateInventoryItem: MaybeContext<BuildRESTFunction<typeof updateInventoryItem$1> & typeof updateInventoryItem$1>;
10195
10219
  declare const bulkUpdateInventoryItems: MaybeContext<BuildRESTFunction<typeof bulkUpdateInventoryItems$1> & typeof bulkUpdateInventoryItems$1>;
10196
10220
  declare const bulkUpdateInventoryItemsByFilter: MaybeContext<BuildRESTFunction<typeof bulkUpdateInventoryItemsByFilter$1> & typeof bulkUpdateInventoryItemsByFilter$1>;
10221
+ declare const bulkSetOrAdjustInventoryItemsByFilter: MaybeContext<BuildRESTFunction<typeof bulkSetOrAdjustInventoryItemsByFilter$1> & typeof bulkSetOrAdjustInventoryItemsByFilter$1>;
10197
10222
  declare const deleteInventoryItem: MaybeContext<BuildRESTFunction<typeof deleteInventoryItem$1> & typeof deleteInventoryItem$1>;
10198
10223
  declare const bulkDeleteInventoryItems: MaybeContext<BuildRESTFunction<typeof bulkDeleteInventoryItems$1> & typeof bulkDeleteInventoryItems$1>;
10199
10224
  declare const queryInventoryItems: MaybeContext<BuildRESTFunction<typeof queryInventoryItems$1> & typeof queryInventoryItems$1>;
@@ -10260,8 +10285,10 @@ type context$6_BulkIncrementInventoryItemsResponse = BulkIncrementInventoryItems
10260
10285
  type context$6_BulkIncrementInventoryItemsResponseNonNullableFields = BulkIncrementInventoryItemsResponseNonNullableFields;
10261
10286
  type context$6_BulkSetInventoryItemsForProductsInLocationRequest = BulkSetInventoryItemsForProductsInLocationRequest;
10262
10287
  type context$6_BulkSetInventoryItemsForProductsInLocationResponse = BulkSetInventoryItemsForProductsInLocationResponse;
10288
+ type context$6_BulkSetOrAdjustInventoryItemsByFilterOptions = BulkSetOrAdjustInventoryItemsByFilterOptions;
10263
10289
  type context$6_BulkSetOrAdjustInventoryItemsByFilterRequest = BulkSetOrAdjustInventoryItemsByFilterRequest;
10264
10290
  type context$6_BulkSetOrAdjustInventoryItemsByFilterResponse = BulkSetOrAdjustInventoryItemsByFilterResponse;
10291
+ type context$6_BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields = BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields;
10265
10292
  type context$6_BulkUpdateInventoryItemsByFilterOptions = BulkUpdateInventoryItemsByFilterOptions;
10266
10293
  type context$6_BulkUpdateInventoryItemsByFilterRequest = BulkUpdateInventoryItemsByFilterRequest;
10267
10294
  type context$6_BulkUpdateInventoryItemsByFilterResponse = BulkUpdateInventoryItemsByFilterResponse;
@@ -10322,6 +10349,7 @@ declare const context$6_bulkDecrementInventoryItemsByVariantAndLocation: typeof
10322
10349
  declare const context$6_bulkDeleteInventoryItems: typeof bulkDeleteInventoryItems;
10323
10350
  declare const context$6_bulkIncrementInventoryItems: typeof bulkIncrementInventoryItems;
10324
10351
  declare const context$6_bulkIncrementInventoryItemsByVariantAndLocation: typeof bulkIncrementInventoryItemsByVariantAndLocation;
10352
+ declare const context$6_bulkSetOrAdjustInventoryItemsByFilter: typeof bulkSetOrAdjustInventoryItemsByFilter;
10325
10353
  declare const context$6_bulkUpdateInventoryItems: typeof bulkUpdateInventoryItems;
10326
10354
  declare const context$6_bulkUpdateInventoryItemsByFilter: typeof bulkUpdateInventoryItemsByFilter;
10327
10355
  declare const context$6_createInventoryItem: typeof createInventoryItem;
@@ -10336,7 +10364,7 @@ declare const context$6_queryInventoryItems: typeof queryInventoryItems;
10336
10364
  declare const context$6_searchInventoryItems: typeof searchInventoryItems;
10337
10365
  declare const context$6_updateInventoryItem: typeof updateInventoryItem;
10338
10366
  declare namespace context$6 {
10339
- export { type ActionEvent$4 as ActionEvent, type context$6_AdjustInventoryAction as AdjustInventoryAction, type context$6_AdjustInventoryActionActionOneOf as AdjustInventoryActionActionOneOf, type Aggregation$1 as Aggregation, type AggregationData$1 as AggregationData, type AggregationKindOneOf$1 as AggregationKindOneOf, type AggregationResults$1 as AggregationResults, type AggregationResultsResultOneOf$1 as AggregationResultsResultOneOf, type AggregationResultsScalarResult$1 as AggregationResultsScalarResult, AggregationType$1 as AggregationType, type App$3 as App, type ApplicationError$2 as ApplicationError, AvailabilityStatus$1 as AvailabilityStatus, type BaseEventMetadata$3 as BaseEventMetadata, type BulkActionMetadata$2 as BulkActionMetadata, type context$6_BulkCreateInventoryItemsOptions as BulkCreateInventoryItemsOptions, type context$6_BulkCreateInventoryItemsRequest as BulkCreateInventoryItemsRequest, type context$6_BulkCreateInventoryItemsResponse as BulkCreateInventoryItemsResponse, type context$6_BulkCreateInventoryItemsResponseNonNullableFields as BulkCreateInventoryItemsResponseNonNullableFields, type context$6_BulkDecrementInventoryItemsByVariantAndLocationOptions as BulkDecrementInventoryItemsByVariantAndLocationOptions, type context$6_BulkDecrementInventoryItemsByVariantAndLocationRequest as BulkDecrementInventoryItemsByVariantAndLocationRequest, type context$6_BulkDecrementInventoryItemsByVariantAndLocationResponse as BulkDecrementInventoryItemsByVariantAndLocationResponse, type context$6_BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type context$6_BulkDecrementInventoryItemsOptions as BulkDecrementInventoryItemsOptions, type context$6_BulkDecrementInventoryItemsRequest as BulkDecrementInventoryItemsRequest, type context$6_BulkDecrementInventoryItemsResponse as BulkDecrementInventoryItemsResponse, type context$6_BulkDecrementInventoryItemsResponseNonNullableFields as BulkDecrementInventoryItemsResponseNonNullableFields, type context$6_BulkDeleteInventoryItemsRequest as BulkDeleteInventoryItemsRequest, type context$6_BulkDeleteInventoryItemsResponse as BulkDeleteInventoryItemsResponse, type context$6_BulkDeleteInventoryItemsResponseNonNullableFields as BulkDeleteInventoryItemsResponseNonNullableFields, type context$6_BulkIncrementInventoryItemsByVariantAndLocationOptions as BulkIncrementInventoryItemsByVariantAndLocationOptions, type context$6_BulkIncrementInventoryItemsByVariantAndLocationRequest as BulkIncrementInventoryItemsByVariantAndLocationRequest, type context$6_BulkIncrementInventoryItemsByVariantAndLocationResponse as BulkIncrementInventoryItemsByVariantAndLocationResponse, type context$6_BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type context$6_BulkIncrementInventoryItemsOptions as BulkIncrementInventoryItemsOptions, type context$6_BulkIncrementInventoryItemsRequest as BulkIncrementInventoryItemsRequest, type context$6_BulkIncrementInventoryItemsResponse as BulkIncrementInventoryItemsResponse, type context$6_BulkIncrementInventoryItemsResponseNonNullableFields as BulkIncrementInventoryItemsResponseNonNullableFields, type BulkInventoryItemAction$1 as BulkInventoryItemAction, type BulkInventoryItemResult$1 as BulkInventoryItemResult, type context$6_BulkSetInventoryItemsForProductsInLocationRequest as BulkSetInventoryItemsForProductsInLocationRequest, type context$6_BulkSetInventoryItemsForProductsInLocationResponse as BulkSetInventoryItemsForProductsInLocationResponse, type context$6_BulkSetOrAdjustInventoryItemsByFilterRequest as BulkSetOrAdjustInventoryItemsByFilterRequest, type context$6_BulkSetOrAdjustInventoryItemsByFilterResponse as BulkSetOrAdjustInventoryItemsByFilterResponse, type context$6_BulkUpdateInventoryItemsByFilterOptions as BulkUpdateInventoryItemsByFilterOptions, type context$6_BulkUpdateInventoryItemsByFilterRequest as BulkUpdateInventoryItemsByFilterRequest, type context$6_BulkUpdateInventoryItemsByFilterResponse as BulkUpdateInventoryItemsByFilterResponse, type context$6_BulkUpdateInventoryItemsByFilterResponseNonNullableFields as BulkUpdateInventoryItemsByFilterResponseNonNullableFields, type context$6_BulkUpdateInventoryItemsOptions as BulkUpdateInventoryItemsOptions, type BulkUpdateInventoryItemsRequest$1 as BulkUpdateInventoryItemsRequest, type BulkUpdateInventoryItemsResponse$1 as BulkUpdateInventoryItemsResponse, type context$6_BulkUpdateInventoryItemsResponseNonNullableFields as BulkUpdateInventoryItemsResponseNonNullableFields, type CommonCursors$1 as CommonCursors, type context$6_CreateInventoryItemRequest as CreateInventoryItemRequest, type context$6_CreateInventoryItemResponse as CreateInventoryItemResponse, type context$6_CreateInventoryItemResponseNonNullableFields as CreateInventoryItemResponseNonNullableFields, type CursorPaging$3 as CursorPaging, type CursorPagingMetadata$3 as CursorPagingMetadata, type CursorSearch$1 as CursorSearch, type CursorSearchPagingMethodOneOf$1 as CursorSearchPagingMethodOneOf, type Cursors$3 as Cursors, type DateHistogramAggregation$1 as DateHistogramAggregation, type DateHistogramResult$1 as DateHistogramResult, type DateHistogramResults$1 as DateHistogramResults, type context$6_DecrementDataById as DecrementDataById, type context$6_DecrementDataByVariantAndLocation as DecrementDataByVariantAndLocation, type context$6_DeleteInventoryItemRequest as DeleteInventoryItemRequest, type context$6_DeleteInventoryItemResponse as DeleteInventoryItemResponse, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type Empty$4 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventMetadata$2 as EventMetadata, type ExtendedFields$1 as ExtendedFields, type File$3 as File, type context$6_GetInventoryItemRequest as GetInventoryItemRequest, type context$6_GetInventoryItemResponse as GetInventoryItemResponse, type context$6_GetInventoryItemResponseNonNullableFields as GetInventoryItemResponseNonNullableFields, type GroupByAggregation$1 as GroupByAggregation, type GroupByAggregationKindOneOf$1 as GroupByAggregationKindOneOf, type GroupByValueResults$1 as GroupByValueResults, type IdentificationData$5 as IdentificationData, type IdentificationDataIdOneOf$5 as IdentificationDataIdOneOf, type IncludeMissingValuesOptions$1 as IncludeMissingValuesOptions, type context$6_IncrementDataById as IncrementDataById, type context$6_IncrementDataByVariantAndLocation as IncrementDataByVariantAndLocation, Interval$1 as Interval, type InvalidateCache$3 as InvalidateCache, type InvalidateCacheGetByOneOf$3 as InvalidateCacheGetByOneOf, type InventoryItem$1 as InventoryItem, type context$6_InventoryItemCreatedEnvelope as InventoryItemCreatedEnvelope, type context$6_InventoryItemDeletedEnvelope as InventoryItemDeletedEnvelope, type InventoryItemNonNullableFields$1 as InventoryItemNonNullableFields, type context$6_InventoryItemStockStatusUpdatedEnvelope as InventoryItemStockStatusUpdatedEnvelope, type context$6_InventoryItemStockStatusUpdatedEvent as InventoryItemStockStatusUpdatedEvent, type InventoryItemTrackingMethodOneOf$1 as InventoryItemTrackingMethodOneOf, type context$6_InventoryItemUpdatedEnvelope as InventoryItemUpdatedEnvelope, type context$6_InventoryItemUpdatedWithReason as InventoryItemUpdatedWithReason, type context$6_InventoryItemUpdatedWithReasonEnvelope as InventoryItemUpdatedWithReasonEnvelope, type context$6_InventoryItemsQueryBuilder as InventoryItemsQueryBuilder, type context$6_InventoryItemsQueryResult as InventoryItemsQueryResult, type ItemMetadata$2 as ItemMetadata, type context$6_MaskedInventoryItem as MaskedInventoryItem, type MessageEnvelope$5 as MessageEnvelope, MissingValues$1 as MissingValues, Mode$1 as Mode, type NestedAggregation$1 as NestedAggregation, type NestedAggregationItem$1 as NestedAggregationItem, type NestedAggregationItemKindOneOf$1 as NestedAggregationItemKindOneOf, type NestedAggregationResults$1 as NestedAggregationResults, type NestedAggregationResultsResultOneOf$1 as NestedAggregationResultsResultOneOf, NestedAggregationType$1 as NestedAggregationType, type NestedResultValue$1 as NestedResultValue, type NestedResultValueResultOneOf$1 as NestedResultValueResultOneOf, type NestedResults$1 as NestedResults, type NestedValueAggregationResult$1 as NestedValueAggregationResult, type context$6_OffsetSearch as OffsetSearch, type context$6_OffsetSearchPagingMethodOneOf as OffsetSearchPagingMethodOneOf, type Page$3 as Page, type Paging$2 as Paging, type PagingMetadata$3 as PagingMetadata, type context$6_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type PreorderInfo$2 as PreorderInfo, type Product$1 as Product, type context$6_ProductInventoryItems as ProductInventoryItems, type context$6_QueryInventoryItemsRequest as QueryInventoryItemsRequest, type context$6_QueryInventoryItemsResponse as QueryInventoryItemsResponse, type context$6_QueryInventoryItemsResponseNonNullableFields as QueryInventoryItemsResponseNonNullableFields, type context$6_QueryV2 as QueryV2, type context$6_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type RangeAggregation$1 as RangeAggregation, type RangeAggregationResult$1 as RangeAggregationResult, type RangeBucket$1 as RangeBucket, type RangeResult$1 as RangeResult, type RangeResults$1 as RangeResults, ReasonType$1 as ReasonType, type RestoreInfo$4 as RestoreInfo, type Results$1 as Results, type ScalarAggregation$1 as ScalarAggregation, type ScalarResult$1 as ScalarResult, ScalarType$1 as ScalarType, type SearchDetails$1 as SearchDetails, type context$6_SearchInventoryItemsOptions as SearchInventoryItemsOptions, type context$6_SearchInventoryItemsRequest as SearchInventoryItemsRequest, type context$6_SearchInventoryItemsResponse as SearchInventoryItemsResponse, type context$6_SearchInventoryItemsResponseNonNullableFields as SearchInventoryItemsResponseNonNullableFields, type context$6_SearchInventoryItemsWithOffsetRequest as SearchInventoryItemsWithOffsetRequest, type context$6_SearchInventoryItemsWithOffsetResponse as SearchInventoryItemsWithOffsetResponse, SortDirection$1 as SortDirection, SortOrder$3 as SortOrder, SortType$1 as SortType, type Sorting$3 as Sorting, type URI$3 as URI, type context$6_UpdateInventoryItem as UpdateInventoryItem, type context$6_UpdateInventoryItemOptions as UpdateInventoryItemOptions, type context$6_UpdateInventoryItemRequest as UpdateInventoryItemRequest, type context$6_UpdateInventoryItemResponse as UpdateInventoryItemResponse, type context$6_UpdateInventoryItemResponseNonNullableFields as UpdateInventoryItemResponseNonNullableFields, type context$6_V3BulkInventoryItemResult as V3BulkInventoryItemResult, type ValueAggregation$1 as ValueAggregation, type ValueAggregationOptionsOneOf$1 as ValueAggregationOptionsOneOf, type ValueAggregationResult$1 as ValueAggregationResult, type ValueResult$1 as ValueResult, type ValueResults$1 as ValueResults, WebhookIdentityType$5 as WebhookIdentityType, type context$6__publicOnInventoryItemCreatedType as _publicOnInventoryItemCreatedType, type context$6__publicOnInventoryItemDeletedType as _publicOnInventoryItemDeletedType, type context$6__publicOnInventoryItemStockStatusUpdatedType as _publicOnInventoryItemStockStatusUpdatedType, type context$6__publicOnInventoryItemUpdatedType as _publicOnInventoryItemUpdatedType, type context$6__publicOnInventoryItemUpdatedWithReasonType as _publicOnInventoryItemUpdatedWithReasonType, context$6_bulkCreateInventoryItems as bulkCreateInventoryItems, context$6_bulkDecrementInventoryItems as bulkDecrementInventoryItems, context$6_bulkDecrementInventoryItemsByVariantAndLocation as bulkDecrementInventoryItemsByVariantAndLocation, context$6_bulkDeleteInventoryItems as bulkDeleteInventoryItems, context$6_bulkIncrementInventoryItems as bulkIncrementInventoryItems, context$6_bulkIncrementInventoryItemsByVariantAndLocation as bulkIncrementInventoryItemsByVariantAndLocation, context$6_bulkUpdateInventoryItems as bulkUpdateInventoryItems, context$6_bulkUpdateInventoryItemsByFilter as bulkUpdateInventoryItemsByFilter, context$6_createInventoryItem as createInventoryItem, context$6_deleteInventoryItem as deleteInventoryItem, context$6_getInventoryItem as getInventoryItem, context$6_onInventoryItemCreated as onInventoryItemCreated, context$6_onInventoryItemDeleted as onInventoryItemDeleted, context$6_onInventoryItemStockStatusUpdated as onInventoryItemStockStatusUpdated, context$6_onInventoryItemUpdated as onInventoryItemUpdated, context$6_onInventoryItemUpdatedWithReason as onInventoryItemUpdatedWithReason, onInventoryItemCreated$1 as publicOnInventoryItemCreated, onInventoryItemDeleted$1 as publicOnInventoryItemDeleted, onInventoryItemStockStatusUpdated$1 as publicOnInventoryItemStockStatusUpdated, onInventoryItemUpdated$1 as publicOnInventoryItemUpdated, onInventoryItemUpdatedWithReason$1 as publicOnInventoryItemUpdatedWithReason, context$6_queryInventoryItems as queryInventoryItems, context$6_searchInventoryItems as searchInventoryItems, context$6_updateInventoryItem as updateInventoryItem };
10367
+ export { type ActionEvent$4 as ActionEvent, type context$6_AdjustInventoryAction as AdjustInventoryAction, type context$6_AdjustInventoryActionActionOneOf as AdjustInventoryActionActionOneOf, type Aggregation$1 as Aggregation, type AggregationData$1 as AggregationData, type AggregationKindOneOf$1 as AggregationKindOneOf, type AggregationResults$1 as AggregationResults, type AggregationResultsResultOneOf$1 as AggregationResultsResultOneOf, type AggregationResultsScalarResult$1 as AggregationResultsScalarResult, AggregationType$1 as AggregationType, type App$3 as App, type ApplicationError$2 as ApplicationError, AvailabilityStatus$1 as AvailabilityStatus, type BaseEventMetadata$3 as BaseEventMetadata, type BulkActionMetadata$2 as BulkActionMetadata, type context$6_BulkCreateInventoryItemsOptions as BulkCreateInventoryItemsOptions, type context$6_BulkCreateInventoryItemsRequest as BulkCreateInventoryItemsRequest, type context$6_BulkCreateInventoryItemsResponse as BulkCreateInventoryItemsResponse, type context$6_BulkCreateInventoryItemsResponseNonNullableFields as BulkCreateInventoryItemsResponseNonNullableFields, type context$6_BulkDecrementInventoryItemsByVariantAndLocationOptions as BulkDecrementInventoryItemsByVariantAndLocationOptions, type context$6_BulkDecrementInventoryItemsByVariantAndLocationRequest as BulkDecrementInventoryItemsByVariantAndLocationRequest, type context$6_BulkDecrementInventoryItemsByVariantAndLocationResponse as BulkDecrementInventoryItemsByVariantAndLocationResponse, type context$6_BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type context$6_BulkDecrementInventoryItemsOptions as BulkDecrementInventoryItemsOptions, type context$6_BulkDecrementInventoryItemsRequest as BulkDecrementInventoryItemsRequest, type context$6_BulkDecrementInventoryItemsResponse as BulkDecrementInventoryItemsResponse, type context$6_BulkDecrementInventoryItemsResponseNonNullableFields as BulkDecrementInventoryItemsResponseNonNullableFields, type context$6_BulkDeleteInventoryItemsRequest as BulkDeleteInventoryItemsRequest, type context$6_BulkDeleteInventoryItemsResponse as BulkDeleteInventoryItemsResponse, type context$6_BulkDeleteInventoryItemsResponseNonNullableFields as BulkDeleteInventoryItemsResponseNonNullableFields, type context$6_BulkIncrementInventoryItemsByVariantAndLocationOptions as BulkIncrementInventoryItemsByVariantAndLocationOptions, type context$6_BulkIncrementInventoryItemsByVariantAndLocationRequest as BulkIncrementInventoryItemsByVariantAndLocationRequest, type context$6_BulkIncrementInventoryItemsByVariantAndLocationResponse as BulkIncrementInventoryItemsByVariantAndLocationResponse, type context$6_BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type context$6_BulkIncrementInventoryItemsOptions as BulkIncrementInventoryItemsOptions, type context$6_BulkIncrementInventoryItemsRequest as BulkIncrementInventoryItemsRequest, type context$6_BulkIncrementInventoryItemsResponse as BulkIncrementInventoryItemsResponse, type context$6_BulkIncrementInventoryItemsResponseNonNullableFields as BulkIncrementInventoryItemsResponseNonNullableFields, type BulkInventoryItemAction$1 as BulkInventoryItemAction, type BulkInventoryItemResult$1 as BulkInventoryItemResult, type context$6_BulkSetInventoryItemsForProductsInLocationRequest as BulkSetInventoryItemsForProductsInLocationRequest, type context$6_BulkSetInventoryItemsForProductsInLocationResponse as BulkSetInventoryItemsForProductsInLocationResponse, type context$6_BulkSetOrAdjustInventoryItemsByFilterOptions as BulkSetOrAdjustInventoryItemsByFilterOptions, type context$6_BulkSetOrAdjustInventoryItemsByFilterRequest as BulkSetOrAdjustInventoryItemsByFilterRequest, type context$6_BulkSetOrAdjustInventoryItemsByFilterResponse as BulkSetOrAdjustInventoryItemsByFilterResponse, type context$6_BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields as BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields, type context$6_BulkUpdateInventoryItemsByFilterOptions as BulkUpdateInventoryItemsByFilterOptions, type context$6_BulkUpdateInventoryItemsByFilterRequest as BulkUpdateInventoryItemsByFilterRequest, type context$6_BulkUpdateInventoryItemsByFilterResponse as BulkUpdateInventoryItemsByFilterResponse, type context$6_BulkUpdateInventoryItemsByFilterResponseNonNullableFields as BulkUpdateInventoryItemsByFilterResponseNonNullableFields, type context$6_BulkUpdateInventoryItemsOptions as BulkUpdateInventoryItemsOptions, type BulkUpdateInventoryItemsRequest$1 as BulkUpdateInventoryItemsRequest, type BulkUpdateInventoryItemsResponse$1 as BulkUpdateInventoryItemsResponse, type context$6_BulkUpdateInventoryItemsResponseNonNullableFields as BulkUpdateInventoryItemsResponseNonNullableFields, type CommonCursors$1 as CommonCursors, type context$6_CreateInventoryItemRequest as CreateInventoryItemRequest, type context$6_CreateInventoryItemResponse as CreateInventoryItemResponse, type context$6_CreateInventoryItemResponseNonNullableFields as CreateInventoryItemResponseNonNullableFields, type CursorPaging$3 as CursorPaging, type CursorPagingMetadata$3 as CursorPagingMetadata, type CursorSearch$1 as CursorSearch, type CursorSearchPagingMethodOneOf$1 as CursorSearchPagingMethodOneOf, type Cursors$3 as Cursors, type DateHistogramAggregation$1 as DateHistogramAggregation, type DateHistogramResult$1 as DateHistogramResult, type DateHistogramResults$1 as DateHistogramResults, type context$6_DecrementDataById as DecrementDataById, type context$6_DecrementDataByVariantAndLocation as DecrementDataByVariantAndLocation, type context$6_DeleteInventoryItemRequest as DeleteInventoryItemRequest, type context$6_DeleteInventoryItemResponse as DeleteInventoryItemResponse, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type Empty$4 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventMetadata$2 as EventMetadata, type ExtendedFields$1 as ExtendedFields, type File$3 as File, type context$6_GetInventoryItemRequest as GetInventoryItemRequest, type context$6_GetInventoryItemResponse as GetInventoryItemResponse, type context$6_GetInventoryItemResponseNonNullableFields as GetInventoryItemResponseNonNullableFields, type GroupByAggregation$1 as GroupByAggregation, type GroupByAggregationKindOneOf$1 as GroupByAggregationKindOneOf, type GroupByValueResults$1 as GroupByValueResults, type IdentificationData$5 as IdentificationData, type IdentificationDataIdOneOf$5 as IdentificationDataIdOneOf, type IncludeMissingValuesOptions$1 as IncludeMissingValuesOptions, type context$6_IncrementDataById as IncrementDataById, type context$6_IncrementDataByVariantAndLocation as IncrementDataByVariantAndLocation, Interval$1 as Interval, type InvalidateCache$3 as InvalidateCache, type InvalidateCacheGetByOneOf$3 as InvalidateCacheGetByOneOf, type InventoryItem$1 as InventoryItem, type context$6_InventoryItemCreatedEnvelope as InventoryItemCreatedEnvelope, type context$6_InventoryItemDeletedEnvelope as InventoryItemDeletedEnvelope, type InventoryItemNonNullableFields$1 as InventoryItemNonNullableFields, type context$6_InventoryItemStockStatusUpdatedEnvelope as InventoryItemStockStatusUpdatedEnvelope, type context$6_InventoryItemStockStatusUpdatedEvent as InventoryItemStockStatusUpdatedEvent, type InventoryItemTrackingMethodOneOf$1 as InventoryItemTrackingMethodOneOf, type context$6_InventoryItemUpdatedEnvelope as InventoryItemUpdatedEnvelope, type context$6_InventoryItemUpdatedWithReason as InventoryItemUpdatedWithReason, type context$6_InventoryItemUpdatedWithReasonEnvelope as InventoryItemUpdatedWithReasonEnvelope, type context$6_InventoryItemsQueryBuilder as InventoryItemsQueryBuilder, type context$6_InventoryItemsQueryResult as InventoryItemsQueryResult, type ItemMetadata$2 as ItemMetadata, type context$6_MaskedInventoryItem as MaskedInventoryItem, type MessageEnvelope$5 as MessageEnvelope, MissingValues$1 as MissingValues, Mode$1 as Mode, type NestedAggregation$1 as NestedAggregation, type NestedAggregationItem$1 as NestedAggregationItem, type NestedAggregationItemKindOneOf$1 as NestedAggregationItemKindOneOf, type NestedAggregationResults$1 as NestedAggregationResults, type NestedAggregationResultsResultOneOf$1 as NestedAggregationResultsResultOneOf, NestedAggregationType$1 as NestedAggregationType, type NestedResultValue$1 as NestedResultValue, type NestedResultValueResultOneOf$1 as NestedResultValueResultOneOf, type NestedResults$1 as NestedResults, type NestedValueAggregationResult$1 as NestedValueAggregationResult, type context$6_OffsetSearch as OffsetSearch, type context$6_OffsetSearchPagingMethodOneOf as OffsetSearchPagingMethodOneOf, type Page$3 as Page, type Paging$2 as Paging, type PagingMetadata$3 as PagingMetadata, type context$6_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type PreorderInfo$2 as PreorderInfo, type Product$1 as Product, type context$6_ProductInventoryItems as ProductInventoryItems, type context$6_QueryInventoryItemsRequest as QueryInventoryItemsRequest, type context$6_QueryInventoryItemsResponse as QueryInventoryItemsResponse, type context$6_QueryInventoryItemsResponseNonNullableFields as QueryInventoryItemsResponseNonNullableFields, type context$6_QueryV2 as QueryV2, type context$6_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type RangeAggregation$1 as RangeAggregation, type RangeAggregationResult$1 as RangeAggregationResult, type RangeBucket$1 as RangeBucket, type RangeResult$1 as RangeResult, type RangeResults$1 as RangeResults, ReasonType$1 as ReasonType, type RestoreInfo$4 as RestoreInfo, type Results$1 as Results, type ScalarAggregation$1 as ScalarAggregation, type ScalarResult$1 as ScalarResult, ScalarType$1 as ScalarType, type SearchDetails$1 as SearchDetails, type context$6_SearchInventoryItemsOptions as SearchInventoryItemsOptions, type context$6_SearchInventoryItemsRequest as SearchInventoryItemsRequest, type context$6_SearchInventoryItemsResponse as SearchInventoryItemsResponse, type context$6_SearchInventoryItemsResponseNonNullableFields as SearchInventoryItemsResponseNonNullableFields, type context$6_SearchInventoryItemsWithOffsetRequest as SearchInventoryItemsWithOffsetRequest, type context$6_SearchInventoryItemsWithOffsetResponse as SearchInventoryItemsWithOffsetResponse, SortDirection$1 as SortDirection, SortOrder$3 as SortOrder, SortType$1 as SortType, type Sorting$3 as Sorting, type URI$3 as URI, type context$6_UpdateInventoryItem as UpdateInventoryItem, type context$6_UpdateInventoryItemOptions as UpdateInventoryItemOptions, type context$6_UpdateInventoryItemRequest as UpdateInventoryItemRequest, type context$6_UpdateInventoryItemResponse as UpdateInventoryItemResponse, type context$6_UpdateInventoryItemResponseNonNullableFields as UpdateInventoryItemResponseNonNullableFields, type context$6_V3BulkInventoryItemResult as V3BulkInventoryItemResult, type ValueAggregation$1 as ValueAggregation, type ValueAggregationOptionsOneOf$1 as ValueAggregationOptionsOneOf, type ValueAggregationResult$1 as ValueAggregationResult, type ValueResult$1 as ValueResult, type ValueResults$1 as ValueResults, WebhookIdentityType$5 as WebhookIdentityType, type context$6__publicOnInventoryItemCreatedType as _publicOnInventoryItemCreatedType, type context$6__publicOnInventoryItemDeletedType as _publicOnInventoryItemDeletedType, type context$6__publicOnInventoryItemStockStatusUpdatedType as _publicOnInventoryItemStockStatusUpdatedType, type context$6__publicOnInventoryItemUpdatedType as _publicOnInventoryItemUpdatedType, type context$6__publicOnInventoryItemUpdatedWithReasonType as _publicOnInventoryItemUpdatedWithReasonType, context$6_bulkCreateInventoryItems as bulkCreateInventoryItems, context$6_bulkDecrementInventoryItems as bulkDecrementInventoryItems, context$6_bulkDecrementInventoryItemsByVariantAndLocation as bulkDecrementInventoryItemsByVariantAndLocation, context$6_bulkDeleteInventoryItems as bulkDeleteInventoryItems, context$6_bulkIncrementInventoryItems as bulkIncrementInventoryItems, context$6_bulkIncrementInventoryItemsByVariantAndLocation as bulkIncrementInventoryItemsByVariantAndLocation, context$6_bulkSetOrAdjustInventoryItemsByFilter as bulkSetOrAdjustInventoryItemsByFilter, context$6_bulkUpdateInventoryItems as bulkUpdateInventoryItems, context$6_bulkUpdateInventoryItemsByFilter as bulkUpdateInventoryItemsByFilter, context$6_createInventoryItem as createInventoryItem, context$6_deleteInventoryItem as deleteInventoryItem, context$6_getInventoryItem as getInventoryItem, context$6_onInventoryItemCreated as onInventoryItemCreated, context$6_onInventoryItemDeleted as onInventoryItemDeleted, context$6_onInventoryItemStockStatusUpdated as onInventoryItemStockStatusUpdated, context$6_onInventoryItemUpdated as onInventoryItemUpdated, context$6_onInventoryItemUpdatedWithReason as onInventoryItemUpdatedWithReason, onInventoryItemCreated$1 as publicOnInventoryItemCreated, onInventoryItemDeleted$1 as publicOnInventoryItemDeleted, onInventoryItemStockStatusUpdated$1 as publicOnInventoryItemStockStatusUpdated, onInventoryItemUpdated$1 as publicOnInventoryItemUpdated, onInventoryItemUpdatedWithReason$1 as publicOnInventoryItemUpdatedWithReason, context$6_queryInventoryItems as queryInventoryItems, context$6_searchInventoryItems as searchInventoryItems, context$6_updateInventoryItem as updateInventoryItem };
10340
10368
  }
10341
10369
 
10342
10370
  interface V3Product extends V3ProductTypedPropertiesOneOf {
@@ -11933,11 +11961,11 @@ interface Tag {
11933
11961
  */
11934
11962
  type?: string;
11935
11963
  /**
11936
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
11937
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
11964
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
11965
+ * For example: `{"name": "description", "content": "the description itself"}`.
11938
11966
  */
11939
11967
  props?: Record<string, any> | null;
11940
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
11968
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
11941
11969
  meta?: Record<string, any> | null;
11942
11970
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
11943
11971
  children?: string;
@@ -12974,7 +13002,6 @@ declare enum SingleEntityOpsRequestedFields {
12974
13002
  PLAIN_DESCRIPTION = "PLAIN_DESCRIPTION",
12975
13003
  INFO_SECTION_PLAIN_DESCRIPTION = "INFO_SECTION_PLAIN_DESCRIPTION",
12976
13004
  SUBSCRIPTION_PRICES_INFO = "SUBSCRIPTION_PRICES_INFO",
12977
- VARIANTS_INFO = "VARIANTS_INFO",
12978
13005
  BREADCRUMBS_INFO = "BREADCRUMBS_INFO",
12979
13006
  WEIGHT_MEASUREMENT_UNIT_INFO = "WEIGHT_MEASUREMENT_UNIT_INFO",
12980
13007
  VARIANT_OPTION_CHOICE_NAMES = "VARIANT_OPTION_CHOICE_NAMES",
@@ -14799,7 +14826,7 @@ interface SearchProductsResponse {
14799
14826
  aggregationData?: AggregationData;
14800
14827
  }
14801
14828
  interface CursorPagingMetadata$2 {
14802
- /** Number of product variants returned in the response. */
14829
+ /** Number of items returned in the response. */
14803
14830
  count?: number | null;
14804
14831
  /** Cursor strings that point to the next page, previous page, or both. */
14805
14832
  cursors?: Cursors$2;
@@ -777,11 +777,11 @@ interface Tag$2 {
777
777
  */
778
778
  type?: string;
779
779
  /**
780
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
781
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
780
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
781
+ * For example: `{"name": "description", "content": "the description itself"}`.
782
782
  */
783
783
  props?: Record<string, any> | null;
784
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
784
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
785
785
  meta?: Record<string, any> | null;
786
786
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
787
787
  children?: string;
@@ -1504,11 +1504,11 @@ interface Tag$1 {
1504
1504
  */
1505
1505
  type?: string;
1506
1506
  /**
1507
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
1508
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
1507
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
1508
+ * For example: `{"name": "description", "content": "the description itself"}`.
1509
1509
  */
1510
1510
  props?: Record<string, any> | null;
1511
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
1511
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
1512
1512
  meta?: Record<string, any> | null;
1513
1513
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
1514
1514
  children?: string;
@@ -8710,9 +8710,9 @@ interface BulkSetOrAdjustInventoryItemsByFilterRequest {
8710
8710
  * }`
8711
8711
  * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
8712
8712
  */
8713
- filter?: Record<string, any> | null;
8713
+ filter: Record<string, any> | null;
8714
8714
  /** Action to adjust the inventory by. (e.g increment or decrement) */
8715
- adjustedInventoryAction?: AdjustInventoryAction;
8715
+ adjustedInventoryAction: AdjustInventoryAction;
8716
8716
  /** Free text to match in searchable fields */
8717
8717
  search?: SearchDetails$1;
8718
8718
  }
@@ -9630,6 +9630,9 @@ interface BulkUpdateInventoryItemsResponseNonNullableFields {
9630
9630
  interface BulkUpdateInventoryItemsByFilterResponseNonNullableFields {
9631
9631
  jobId: string;
9632
9632
  }
9633
+ interface BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields {
9634
+ jobId: string;
9635
+ }
9633
9636
  interface BulkInventoryItemResultNonNullableFields$1 {
9634
9637
  itemMetadata?: ItemMetadataNonNullableFields$2;
9635
9638
  }
@@ -9878,6 +9881,12 @@ interface BulkUpdateInventoryItemsByFilterOptions {
9878
9881
  /** Free text to match in searchable fields. */
9879
9882
  search?: SearchDetails$1;
9880
9883
  }
9884
+ interface BulkSetOrAdjustInventoryItemsByFilterOptions {
9885
+ /** Action to adjust the inventory by. (e.g increment or decrement) */
9886
+ adjustedInventoryAction: AdjustInventoryAction;
9887
+ /** Free text to match in searchable fields */
9888
+ search?: SearchDetails$1;
9889
+ }
9881
9890
  interface QueryCursorResult$3 {
9882
9891
  cursors: Cursors$3;
9883
9892
  hasNext: () => boolean;
@@ -10082,6 +10091,21 @@ interface BulkUpdateInventoryItemsByFilterSignature {
10082
10091
  */
10083
10092
  (filter: Record<string, any> | null, options?: BulkUpdateInventoryItemsByFilterOptions | undefined): Promise<BulkUpdateInventoryItemsByFilterResponse & BulkUpdateInventoryItemsByFilterResponseNonNullableFields>;
10084
10093
  }
10094
+ declare function bulkSetOrAdjustInventoryItemsByFilter$1(httpClient: HttpClient): BulkSetOrAdjustInventoryItemsByFilterSignature;
10095
+ interface BulkSetOrAdjustInventoryItemsByFilterSignature {
10096
+ /**
10097
+ * Set or Adjust inventory items which satisfy the provided filter.
10098
+ * If item track quantity, adjust it's quantity,
10099
+ * In case non-tracking, updates it to track and sets quantity to `incrementBy` or `decrementBy`.
10100
+ * @param - Filter object in the following format:
10101
+ * `"filter" : {
10102
+ * "fieldName1": "value1",
10103
+ * "fieldName2":{"$operator":"value2"}
10104
+ * }`
10105
+ * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
10106
+ */
10107
+ (filter: Record<string, any> | null, options?: BulkSetOrAdjustInventoryItemsByFilterOptions | undefined): Promise<BulkSetOrAdjustInventoryItemsByFilterResponse & BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields>;
10108
+ }
10085
10109
  declare function deleteInventoryItem$1(httpClient: HttpClient): DeleteInventoryItemSignature;
10086
10110
  interface DeleteInventoryItemSignature {
10087
10111
  /**
@@ -10194,6 +10218,7 @@ declare const getInventoryItem: MaybeContext<BuildRESTFunction<typeof getInvento
10194
10218
  declare const updateInventoryItem: MaybeContext<BuildRESTFunction<typeof updateInventoryItem$1> & typeof updateInventoryItem$1>;
10195
10219
  declare const bulkUpdateInventoryItems: MaybeContext<BuildRESTFunction<typeof bulkUpdateInventoryItems$1> & typeof bulkUpdateInventoryItems$1>;
10196
10220
  declare const bulkUpdateInventoryItemsByFilter: MaybeContext<BuildRESTFunction<typeof bulkUpdateInventoryItemsByFilter$1> & typeof bulkUpdateInventoryItemsByFilter$1>;
10221
+ declare const bulkSetOrAdjustInventoryItemsByFilter: MaybeContext<BuildRESTFunction<typeof bulkSetOrAdjustInventoryItemsByFilter$1> & typeof bulkSetOrAdjustInventoryItemsByFilter$1>;
10197
10222
  declare const deleteInventoryItem: MaybeContext<BuildRESTFunction<typeof deleteInventoryItem$1> & typeof deleteInventoryItem$1>;
10198
10223
  declare const bulkDeleteInventoryItems: MaybeContext<BuildRESTFunction<typeof bulkDeleteInventoryItems$1> & typeof bulkDeleteInventoryItems$1>;
10199
10224
  declare const queryInventoryItems: MaybeContext<BuildRESTFunction<typeof queryInventoryItems$1> & typeof queryInventoryItems$1>;
@@ -10260,8 +10285,10 @@ type index_d$6_BulkIncrementInventoryItemsResponse = BulkIncrementInventoryItems
10260
10285
  type index_d$6_BulkIncrementInventoryItemsResponseNonNullableFields = BulkIncrementInventoryItemsResponseNonNullableFields;
10261
10286
  type index_d$6_BulkSetInventoryItemsForProductsInLocationRequest = BulkSetInventoryItemsForProductsInLocationRequest;
10262
10287
  type index_d$6_BulkSetInventoryItemsForProductsInLocationResponse = BulkSetInventoryItemsForProductsInLocationResponse;
10288
+ type index_d$6_BulkSetOrAdjustInventoryItemsByFilterOptions = BulkSetOrAdjustInventoryItemsByFilterOptions;
10263
10289
  type index_d$6_BulkSetOrAdjustInventoryItemsByFilterRequest = BulkSetOrAdjustInventoryItemsByFilterRequest;
10264
10290
  type index_d$6_BulkSetOrAdjustInventoryItemsByFilterResponse = BulkSetOrAdjustInventoryItemsByFilterResponse;
10291
+ type index_d$6_BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields = BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields;
10265
10292
  type index_d$6_BulkUpdateInventoryItemsByFilterOptions = BulkUpdateInventoryItemsByFilterOptions;
10266
10293
  type index_d$6_BulkUpdateInventoryItemsByFilterRequest = BulkUpdateInventoryItemsByFilterRequest;
10267
10294
  type index_d$6_BulkUpdateInventoryItemsByFilterResponse = BulkUpdateInventoryItemsByFilterResponse;
@@ -10322,6 +10349,7 @@ declare const index_d$6_bulkDecrementInventoryItemsByVariantAndLocation: typeof
10322
10349
  declare const index_d$6_bulkDeleteInventoryItems: typeof bulkDeleteInventoryItems;
10323
10350
  declare const index_d$6_bulkIncrementInventoryItems: typeof bulkIncrementInventoryItems;
10324
10351
  declare const index_d$6_bulkIncrementInventoryItemsByVariantAndLocation: typeof bulkIncrementInventoryItemsByVariantAndLocation;
10352
+ declare const index_d$6_bulkSetOrAdjustInventoryItemsByFilter: typeof bulkSetOrAdjustInventoryItemsByFilter;
10325
10353
  declare const index_d$6_bulkUpdateInventoryItems: typeof bulkUpdateInventoryItems;
10326
10354
  declare const index_d$6_bulkUpdateInventoryItemsByFilter: typeof bulkUpdateInventoryItemsByFilter;
10327
10355
  declare const index_d$6_createInventoryItem: typeof createInventoryItem;
@@ -10336,7 +10364,7 @@ declare const index_d$6_queryInventoryItems: typeof queryInventoryItems;
10336
10364
  declare const index_d$6_searchInventoryItems: typeof searchInventoryItems;
10337
10365
  declare const index_d$6_updateInventoryItem: typeof updateInventoryItem;
10338
10366
  declare namespace index_d$6 {
10339
- export { type ActionEvent$4 as ActionEvent, type index_d$6_AdjustInventoryAction as AdjustInventoryAction, type index_d$6_AdjustInventoryActionActionOneOf as AdjustInventoryActionActionOneOf, type Aggregation$1 as Aggregation, type AggregationData$1 as AggregationData, type AggregationKindOneOf$1 as AggregationKindOneOf, type AggregationResults$1 as AggregationResults, type AggregationResultsResultOneOf$1 as AggregationResultsResultOneOf, type AggregationResultsScalarResult$1 as AggregationResultsScalarResult, AggregationType$1 as AggregationType, type App$3 as App, type ApplicationError$2 as ApplicationError, AvailabilityStatus$1 as AvailabilityStatus, type BaseEventMetadata$3 as BaseEventMetadata, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$6_BulkCreateInventoryItemsOptions as BulkCreateInventoryItemsOptions, type index_d$6_BulkCreateInventoryItemsRequest as BulkCreateInventoryItemsRequest, type index_d$6_BulkCreateInventoryItemsResponse as BulkCreateInventoryItemsResponse, type index_d$6_BulkCreateInventoryItemsResponseNonNullableFields as BulkCreateInventoryItemsResponseNonNullableFields, type index_d$6_BulkDecrementInventoryItemsByVariantAndLocationOptions as BulkDecrementInventoryItemsByVariantAndLocationOptions, type index_d$6_BulkDecrementInventoryItemsByVariantAndLocationRequest as BulkDecrementInventoryItemsByVariantAndLocationRequest, type index_d$6_BulkDecrementInventoryItemsByVariantAndLocationResponse as BulkDecrementInventoryItemsByVariantAndLocationResponse, type index_d$6_BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type index_d$6_BulkDecrementInventoryItemsOptions as BulkDecrementInventoryItemsOptions, type index_d$6_BulkDecrementInventoryItemsRequest as BulkDecrementInventoryItemsRequest, type index_d$6_BulkDecrementInventoryItemsResponse as BulkDecrementInventoryItemsResponse, type index_d$6_BulkDecrementInventoryItemsResponseNonNullableFields as BulkDecrementInventoryItemsResponseNonNullableFields, type index_d$6_BulkDeleteInventoryItemsRequest as BulkDeleteInventoryItemsRequest, type index_d$6_BulkDeleteInventoryItemsResponse as BulkDeleteInventoryItemsResponse, type index_d$6_BulkDeleteInventoryItemsResponseNonNullableFields as BulkDeleteInventoryItemsResponseNonNullableFields, type index_d$6_BulkIncrementInventoryItemsByVariantAndLocationOptions as BulkIncrementInventoryItemsByVariantAndLocationOptions, type index_d$6_BulkIncrementInventoryItemsByVariantAndLocationRequest as BulkIncrementInventoryItemsByVariantAndLocationRequest, type index_d$6_BulkIncrementInventoryItemsByVariantAndLocationResponse as BulkIncrementInventoryItemsByVariantAndLocationResponse, type index_d$6_BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type index_d$6_BulkIncrementInventoryItemsOptions as BulkIncrementInventoryItemsOptions, type index_d$6_BulkIncrementInventoryItemsRequest as BulkIncrementInventoryItemsRequest, type index_d$6_BulkIncrementInventoryItemsResponse as BulkIncrementInventoryItemsResponse, type index_d$6_BulkIncrementInventoryItemsResponseNonNullableFields as BulkIncrementInventoryItemsResponseNonNullableFields, type BulkInventoryItemAction$1 as BulkInventoryItemAction, type BulkInventoryItemResult$1 as BulkInventoryItemResult, type index_d$6_BulkSetInventoryItemsForProductsInLocationRequest as BulkSetInventoryItemsForProductsInLocationRequest, type index_d$6_BulkSetInventoryItemsForProductsInLocationResponse as BulkSetInventoryItemsForProductsInLocationResponse, type index_d$6_BulkSetOrAdjustInventoryItemsByFilterRequest as BulkSetOrAdjustInventoryItemsByFilterRequest, type index_d$6_BulkSetOrAdjustInventoryItemsByFilterResponse as BulkSetOrAdjustInventoryItemsByFilterResponse, type index_d$6_BulkUpdateInventoryItemsByFilterOptions as BulkUpdateInventoryItemsByFilterOptions, type index_d$6_BulkUpdateInventoryItemsByFilterRequest as BulkUpdateInventoryItemsByFilterRequest, type index_d$6_BulkUpdateInventoryItemsByFilterResponse as BulkUpdateInventoryItemsByFilterResponse, type index_d$6_BulkUpdateInventoryItemsByFilterResponseNonNullableFields as BulkUpdateInventoryItemsByFilterResponseNonNullableFields, type index_d$6_BulkUpdateInventoryItemsOptions as BulkUpdateInventoryItemsOptions, type BulkUpdateInventoryItemsRequest$1 as BulkUpdateInventoryItemsRequest, type BulkUpdateInventoryItemsResponse$1 as BulkUpdateInventoryItemsResponse, type index_d$6_BulkUpdateInventoryItemsResponseNonNullableFields as BulkUpdateInventoryItemsResponseNonNullableFields, type CommonCursors$1 as CommonCursors, type index_d$6_CreateInventoryItemRequest as CreateInventoryItemRequest, type index_d$6_CreateInventoryItemResponse as CreateInventoryItemResponse, type index_d$6_CreateInventoryItemResponseNonNullableFields as CreateInventoryItemResponseNonNullableFields, type CursorPaging$3 as CursorPaging, type CursorPagingMetadata$3 as CursorPagingMetadata, type CursorSearch$1 as CursorSearch, type CursorSearchPagingMethodOneOf$1 as CursorSearchPagingMethodOneOf, type Cursors$3 as Cursors, type DateHistogramAggregation$1 as DateHistogramAggregation, type DateHistogramResult$1 as DateHistogramResult, type DateHistogramResults$1 as DateHistogramResults, type index_d$6_DecrementDataById as DecrementDataById, type index_d$6_DecrementDataByVariantAndLocation as DecrementDataByVariantAndLocation, type index_d$6_DeleteInventoryItemRequest as DeleteInventoryItemRequest, type index_d$6_DeleteInventoryItemResponse as DeleteInventoryItemResponse, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type Empty$4 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventMetadata$2 as EventMetadata, type ExtendedFields$1 as ExtendedFields, type File$3 as File, type index_d$6_GetInventoryItemRequest as GetInventoryItemRequest, type index_d$6_GetInventoryItemResponse as GetInventoryItemResponse, type index_d$6_GetInventoryItemResponseNonNullableFields as GetInventoryItemResponseNonNullableFields, type GroupByAggregation$1 as GroupByAggregation, type GroupByAggregationKindOneOf$1 as GroupByAggregationKindOneOf, type GroupByValueResults$1 as GroupByValueResults, type IdentificationData$5 as IdentificationData, type IdentificationDataIdOneOf$5 as IdentificationDataIdOneOf, type IncludeMissingValuesOptions$1 as IncludeMissingValuesOptions, type index_d$6_IncrementDataById as IncrementDataById, type index_d$6_IncrementDataByVariantAndLocation as IncrementDataByVariantAndLocation, Interval$1 as Interval, type InvalidateCache$3 as InvalidateCache, type InvalidateCacheGetByOneOf$3 as InvalidateCacheGetByOneOf, type InventoryItem$1 as InventoryItem, type index_d$6_InventoryItemCreatedEnvelope as InventoryItemCreatedEnvelope, type index_d$6_InventoryItemDeletedEnvelope as InventoryItemDeletedEnvelope, type InventoryItemNonNullableFields$1 as InventoryItemNonNullableFields, type index_d$6_InventoryItemStockStatusUpdatedEnvelope as InventoryItemStockStatusUpdatedEnvelope, type index_d$6_InventoryItemStockStatusUpdatedEvent as InventoryItemStockStatusUpdatedEvent, type InventoryItemTrackingMethodOneOf$1 as InventoryItemTrackingMethodOneOf, type index_d$6_InventoryItemUpdatedEnvelope as InventoryItemUpdatedEnvelope, type index_d$6_InventoryItemUpdatedWithReason as InventoryItemUpdatedWithReason, type index_d$6_InventoryItemUpdatedWithReasonEnvelope as InventoryItemUpdatedWithReasonEnvelope, type index_d$6_InventoryItemsQueryBuilder as InventoryItemsQueryBuilder, type index_d$6_InventoryItemsQueryResult as InventoryItemsQueryResult, type ItemMetadata$2 as ItemMetadata, type index_d$6_MaskedInventoryItem as MaskedInventoryItem, type MessageEnvelope$5 as MessageEnvelope, MissingValues$1 as MissingValues, Mode$1 as Mode, type NestedAggregation$1 as NestedAggregation, type NestedAggregationItem$1 as NestedAggregationItem, type NestedAggregationItemKindOneOf$1 as NestedAggregationItemKindOneOf, type NestedAggregationResults$1 as NestedAggregationResults, type NestedAggregationResultsResultOneOf$1 as NestedAggregationResultsResultOneOf, NestedAggregationType$1 as NestedAggregationType, type NestedResultValue$1 as NestedResultValue, type NestedResultValueResultOneOf$1 as NestedResultValueResultOneOf, type NestedResults$1 as NestedResults, type NestedValueAggregationResult$1 as NestedValueAggregationResult, type index_d$6_OffsetSearch as OffsetSearch, type index_d$6_OffsetSearchPagingMethodOneOf as OffsetSearchPagingMethodOneOf, type Page$3 as Page, type Paging$2 as Paging, type PagingMetadata$3 as PagingMetadata, type index_d$6_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type PreorderInfo$2 as PreorderInfo, type Product$1 as Product, type index_d$6_ProductInventoryItems as ProductInventoryItems, type index_d$6_QueryInventoryItemsRequest as QueryInventoryItemsRequest, type index_d$6_QueryInventoryItemsResponse as QueryInventoryItemsResponse, type index_d$6_QueryInventoryItemsResponseNonNullableFields as QueryInventoryItemsResponseNonNullableFields, type index_d$6_QueryV2 as QueryV2, type index_d$6_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type RangeAggregation$1 as RangeAggregation, type RangeAggregationResult$1 as RangeAggregationResult, type RangeBucket$1 as RangeBucket, type RangeResult$1 as RangeResult, type RangeResults$1 as RangeResults, ReasonType$1 as ReasonType, type RestoreInfo$4 as RestoreInfo, type Results$1 as Results, type ScalarAggregation$1 as ScalarAggregation, type ScalarResult$1 as ScalarResult, ScalarType$1 as ScalarType, type SearchDetails$1 as SearchDetails, type index_d$6_SearchInventoryItemsOptions as SearchInventoryItemsOptions, type index_d$6_SearchInventoryItemsRequest as SearchInventoryItemsRequest, type index_d$6_SearchInventoryItemsResponse as SearchInventoryItemsResponse, type index_d$6_SearchInventoryItemsResponseNonNullableFields as SearchInventoryItemsResponseNonNullableFields, type index_d$6_SearchInventoryItemsWithOffsetRequest as SearchInventoryItemsWithOffsetRequest, type index_d$6_SearchInventoryItemsWithOffsetResponse as SearchInventoryItemsWithOffsetResponse, SortDirection$1 as SortDirection, SortOrder$3 as SortOrder, SortType$1 as SortType, type Sorting$3 as Sorting, type URI$3 as URI, type index_d$6_UpdateInventoryItem as UpdateInventoryItem, type index_d$6_UpdateInventoryItemOptions as UpdateInventoryItemOptions, type index_d$6_UpdateInventoryItemRequest as UpdateInventoryItemRequest, type index_d$6_UpdateInventoryItemResponse as UpdateInventoryItemResponse, type index_d$6_UpdateInventoryItemResponseNonNullableFields as UpdateInventoryItemResponseNonNullableFields, type index_d$6_V3BulkInventoryItemResult as V3BulkInventoryItemResult, type ValueAggregation$1 as ValueAggregation, type ValueAggregationOptionsOneOf$1 as ValueAggregationOptionsOneOf, type ValueAggregationResult$1 as ValueAggregationResult, type ValueResult$1 as ValueResult, type ValueResults$1 as ValueResults, WebhookIdentityType$5 as WebhookIdentityType, type index_d$6__publicOnInventoryItemCreatedType as _publicOnInventoryItemCreatedType, type index_d$6__publicOnInventoryItemDeletedType as _publicOnInventoryItemDeletedType, type index_d$6__publicOnInventoryItemStockStatusUpdatedType as _publicOnInventoryItemStockStatusUpdatedType, type index_d$6__publicOnInventoryItemUpdatedType as _publicOnInventoryItemUpdatedType, type index_d$6__publicOnInventoryItemUpdatedWithReasonType as _publicOnInventoryItemUpdatedWithReasonType, index_d$6_bulkCreateInventoryItems as bulkCreateInventoryItems, index_d$6_bulkDecrementInventoryItems as bulkDecrementInventoryItems, index_d$6_bulkDecrementInventoryItemsByVariantAndLocation as bulkDecrementInventoryItemsByVariantAndLocation, index_d$6_bulkDeleteInventoryItems as bulkDeleteInventoryItems, index_d$6_bulkIncrementInventoryItems as bulkIncrementInventoryItems, index_d$6_bulkIncrementInventoryItemsByVariantAndLocation as bulkIncrementInventoryItemsByVariantAndLocation, index_d$6_bulkUpdateInventoryItems as bulkUpdateInventoryItems, index_d$6_bulkUpdateInventoryItemsByFilter as bulkUpdateInventoryItemsByFilter, index_d$6_createInventoryItem as createInventoryItem, index_d$6_deleteInventoryItem as deleteInventoryItem, index_d$6_getInventoryItem as getInventoryItem, index_d$6_onInventoryItemCreated as onInventoryItemCreated, index_d$6_onInventoryItemDeleted as onInventoryItemDeleted, index_d$6_onInventoryItemStockStatusUpdated as onInventoryItemStockStatusUpdated, index_d$6_onInventoryItemUpdated as onInventoryItemUpdated, index_d$6_onInventoryItemUpdatedWithReason as onInventoryItemUpdatedWithReason, onInventoryItemCreated$1 as publicOnInventoryItemCreated, onInventoryItemDeleted$1 as publicOnInventoryItemDeleted, onInventoryItemStockStatusUpdated$1 as publicOnInventoryItemStockStatusUpdated, onInventoryItemUpdated$1 as publicOnInventoryItemUpdated, onInventoryItemUpdatedWithReason$1 as publicOnInventoryItemUpdatedWithReason, index_d$6_queryInventoryItems as queryInventoryItems, index_d$6_searchInventoryItems as searchInventoryItems, index_d$6_updateInventoryItem as updateInventoryItem };
10367
+ export { type ActionEvent$4 as ActionEvent, type index_d$6_AdjustInventoryAction as AdjustInventoryAction, type index_d$6_AdjustInventoryActionActionOneOf as AdjustInventoryActionActionOneOf, type Aggregation$1 as Aggregation, type AggregationData$1 as AggregationData, type AggregationKindOneOf$1 as AggregationKindOneOf, type AggregationResults$1 as AggregationResults, type AggregationResultsResultOneOf$1 as AggregationResultsResultOneOf, type AggregationResultsScalarResult$1 as AggregationResultsScalarResult, AggregationType$1 as AggregationType, type App$3 as App, type ApplicationError$2 as ApplicationError, AvailabilityStatus$1 as AvailabilityStatus, type BaseEventMetadata$3 as BaseEventMetadata, type BulkActionMetadata$2 as BulkActionMetadata, type index_d$6_BulkCreateInventoryItemsOptions as BulkCreateInventoryItemsOptions, type index_d$6_BulkCreateInventoryItemsRequest as BulkCreateInventoryItemsRequest, type index_d$6_BulkCreateInventoryItemsResponse as BulkCreateInventoryItemsResponse, type index_d$6_BulkCreateInventoryItemsResponseNonNullableFields as BulkCreateInventoryItemsResponseNonNullableFields, type index_d$6_BulkDecrementInventoryItemsByVariantAndLocationOptions as BulkDecrementInventoryItemsByVariantAndLocationOptions, type index_d$6_BulkDecrementInventoryItemsByVariantAndLocationRequest as BulkDecrementInventoryItemsByVariantAndLocationRequest, type index_d$6_BulkDecrementInventoryItemsByVariantAndLocationResponse as BulkDecrementInventoryItemsByVariantAndLocationResponse, type index_d$6_BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkDecrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type index_d$6_BulkDecrementInventoryItemsOptions as BulkDecrementInventoryItemsOptions, type index_d$6_BulkDecrementInventoryItemsRequest as BulkDecrementInventoryItemsRequest, type index_d$6_BulkDecrementInventoryItemsResponse as BulkDecrementInventoryItemsResponse, type index_d$6_BulkDecrementInventoryItemsResponseNonNullableFields as BulkDecrementInventoryItemsResponseNonNullableFields, type index_d$6_BulkDeleteInventoryItemsRequest as BulkDeleteInventoryItemsRequest, type index_d$6_BulkDeleteInventoryItemsResponse as BulkDeleteInventoryItemsResponse, type index_d$6_BulkDeleteInventoryItemsResponseNonNullableFields as BulkDeleteInventoryItemsResponseNonNullableFields, type index_d$6_BulkIncrementInventoryItemsByVariantAndLocationOptions as BulkIncrementInventoryItemsByVariantAndLocationOptions, type index_d$6_BulkIncrementInventoryItemsByVariantAndLocationRequest as BulkIncrementInventoryItemsByVariantAndLocationRequest, type index_d$6_BulkIncrementInventoryItemsByVariantAndLocationResponse as BulkIncrementInventoryItemsByVariantAndLocationResponse, type index_d$6_BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields as BulkIncrementInventoryItemsByVariantAndLocationResponseNonNullableFields, type index_d$6_BulkIncrementInventoryItemsOptions as BulkIncrementInventoryItemsOptions, type index_d$6_BulkIncrementInventoryItemsRequest as BulkIncrementInventoryItemsRequest, type index_d$6_BulkIncrementInventoryItemsResponse as BulkIncrementInventoryItemsResponse, type index_d$6_BulkIncrementInventoryItemsResponseNonNullableFields as BulkIncrementInventoryItemsResponseNonNullableFields, type BulkInventoryItemAction$1 as BulkInventoryItemAction, type BulkInventoryItemResult$1 as BulkInventoryItemResult, type index_d$6_BulkSetInventoryItemsForProductsInLocationRequest as BulkSetInventoryItemsForProductsInLocationRequest, type index_d$6_BulkSetInventoryItemsForProductsInLocationResponse as BulkSetInventoryItemsForProductsInLocationResponse, type index_d$6_BulkSetOrAdjustInventoryItemsByFilterOptions as BulkSetOrAdjustInventoryItemsByFilterOptions, type index_d$6_BulkSetOrAdjustInventoryItemsByFilterRequest as BulkSetOrAdjustInventoryItemsByFilterRequest, type index_d$6_BulkSetOrAdjustInventoryItemsByFilterResponse as BulkSetOrAdjustInventoryItemsByFilterResponse, type index_d$6_BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields as BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields, type index_d$6_BulkUpdateInventoryItemsByFilterOptions as BulkUpdateInventoryItemsByFilterOptions, type index_d$6_BulkUpdateInventoryItemsByFilterRequest as BulkUpdateInventoryItemsByFilterRequest, type index_d$6_BulkUpdateInventoryItemsByFilterResponse as BulkUpdateInventoryItemsByFilterResponse, type index_d$6_BulkUpdateInventoryItemsByFilterResponseNonNullableFields as BulkUpdateInventoryItemsByFilterResponseNonNullableFields, type index_d$6_BulkUpdateInventoryItemsOptions as BulkUpdateInventoryItemsOptions, type BulkUpdateInventoryItemsRequest$1 as BulkUpdateInventoryItemsRequest, type BulkUpdateInventoryItemsResponse$1 as BulkUpdateInventoryItemsResponse, type index_d$6_BulkUpdateInventoryItemsResponseNonNullableFields as BulkUpdateInventoryItemsResponseNonNullableFields, type CommonCursors$1 as CommonCursors, type index_d$6_CreateInventoryItemRequest as CreateInventoryItemRequest, type index_d$6_CreateInventoryItemResponse as CreateInventoryItemResponse, type index_d$6_CreateInventoryItemResponseNonNullableFields as CreateInventoryItemResponseNonNullableFields, type CursorPaging$3 as CursorPaging, type CursorPagingMetadata$3 as CursorPagingMetadata, type CursorSearch$1 as CursorSearch, type CursorSearchPagingMethodOneOf$1 as CursorSearchPagingMethodOneOf, type Cursors$3 as Cursors, type DateHistogramAggregation$1 as DateHistogramAggregation, type DateHistogramResult$1 as DateHistogramResult, type DateHistogramResults$1 as DateHistogramResults, type index_d$6_DecrementDataById as DecrementDataById, type index_d$6_DecrementDataByVariantAndLocation as DecrementDataByVariantAndLocation, type index_d$6_DeleteInventoryItemRequest as DeleteInventoryItemRequest, type index_d$6_DeleteInventoryItemResponse as DeleteInventoryItemResponse, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type Empty$4 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventMetadata$2 as EventMetadata, type ExtendedFields$1 as ExtendedFields, type File$3 as File, type index_d$6_GetInventoryItemRequest as GetInventoryItemRequest, type index_d$6_GetInventoryItemResponse as GetInventoryItemResponse, type index_d$6_GetInventoryItemResponseNonNullableFields as GetInventoryItemResponseNonNullableFields, type GroupByAggregation$1 as GroupByAggregation, type GroupByAggregationKindOneOf$1 as GroupByAggregationKindOneOf, type GroupByValueResults$1 as GroupByValueResults, type IdentificationData$5 as IdentificationData, type IdentificationDataIdOneOf$5 as IdentificationDataIdOneOf, type IncludeMissingValuesOptions$1 as IncludeMissingValuesOptions, type index_d$6_IncrementDataById as IncrementDataById, type index_d$6_IncrementDataByVariantAndLocation as IncrementDataByVariantAndLocation, Interval$1 as Interval, type InvalidateCache$3 as InvalidateCache, type InvalidateCacheGetByOneOf$3 as InvalidateCacheGetByOneOf, type InventoryItem$1 as InventoryItem, type index_d$6_InventoryItemCreatedEnvelope as InventoryItemCreatedEnvelope, type index_d$6_InventoryItemDeletedEnvelope as InventoryItemDeletedEnvelope, type InventoryItemNonNullableFields$1 as InventoryItemNonNullableFields, type index_d$6_InventoryItemStockStatusUpdatedEnvelope as InventoryItemStockStatusUpdatedEnvelope, type index_d$6_InventoryItemStockStatusUpdatedEvent as InventoryItemStockStatusUpdatedEvent, type InventoryItemTrackingMethodOneOf$1 as InventoryItemTrackingMethodOneOf, type index_d$6_InventoryItemUpdatedEnvelope as InventoryItemUpdatedEnvelope, type index_d$6_InventoryItemUpdatedWithReason as InventoryItemUpdatedWithReason, type index_d$6_InventoryItemUpdatedWithReasonEnvelope as InventoryItemUpdatedWithReasonEnvelope, type index_d$6_InventoryItemsQueryBuilder as InventoryItemsQueryBuilder, type index_d$6_InventoryItemsQueryResult as InventoryItemsQueryResult, type ItemMetadata$2 as ItemMetadata, type index_d$6_MaskedInventoryItem as MaskedInventoryItem, type MessageEnvelope$5 as MessageEnvelope, MissingValues$1 as MissingValues, Mode$1 as Mode, type NestedAggregation$1 as NestedAggregation, type NestedAggregationItem$1 as NestedAggregationItem, type NestedAggregationItemKindOneOf$1 as NestedAggregationItemKindOneOf, type NestedAggregationResults$1 as NestedAggregationResults, type NestedAggregationResultsResultOneOf$1 as NestedAggregationResultsResultOneOf, NestedAggregationType$1 as NestedAggregationType, type NestedResultValue$1 as NestedResultValue, type NestedResultValueResultOneOf$1 as NestedResultValueResultOneOf, type NestedResults$1 as NestedResults, type NestedValueAggregationResult$1 as NestedValueAggregationResult, type index_d$6_OffsetSearch as OffsetSearch, type index_d$6_OffsetSearchPagingMethodOneOf as OffsetSearchPagingMethodOneOf, type Page$3 as Page, type Paging$2 as Paging, type PagingMetadata$3 as PagingMetadata, type index_d$6_PlatformPagingMetadataV2 as PlatformPagingMetadataV2, type PreorderInfo$2 as PreorderInfo, type Product$1 as Product, type index_d$6_ProductInventoryItems as ProductInventoryItems, type index_d$6_QueryInventoryItemsRequest as QueryInventoryItemsRequest, type index_d$6_QueryInventoryItemsResponse as QueryInventoryItemsResponse, type index_d$6_QueryInventoryItemsResponseNonNullableFields as QueryInventoryItemsResponseNonNullableFields, type index_d$6_QueryV2 as QueryV2, type index_d$6_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type RangeAggregation$1 as RangeAggregation, type RangeAggregationResult$1 as RangeAggregationResult, type RangeBucket$1 as RangeBucket, type RangeResult$1 as RangeResult, type RangeResults$1 as RangeResults, ReasonType$1 as ReasonType, type RestoreInfo$4 as RestoreInfo, type Results$1 as Results, type ScalarAggregation$1 as ScalarAggregation, type ScalarResult$1 as ScalarResult, ScalarType$1 as ScalarType, type SearchDetails$1 as SearchDetails, type index_d$6_SearchInventoryItemsOptions as SearchInventoryItemsOptions, type index_d$6_SearchInventoryItemsRequest as SearchInventoryItemsRequest, type index_d$6_SearchInventoryItemsResponse as SearchInventoryItemsResponse, type index_d$6_SearchInventoryItemsResponseNonNullableFields as SearchInventoryItemsResponseNonNullableFields, type index_d$6_SearchInventoryItemsWithOffsetRequest as SearchInventoryItemsWithOffsetRequest, type index_d$6_SearchInventoryItemsWithOffsetResponse as SearchInventoryItemsWithOffsetResponse, SortDirection$1 as SortDirection, SortOrder$3 as SortOrder, SortType$1 as SortType, type Sorting$3 as Sorting, type URI$3 as URI, type index_d$6_UpdateInventoryItem as UpdateInventoryItem, type index_d$6_UpdateInventoryItemOptions as UpdateInventoryItemOptions, type index_d$6_UpdateInventoryItemRequest as UpdateInventoryItemRequest, type index_d$6_UpdateInventoryItemResponse as UpdateInventoryItemResponse, type index_d$6_UpdateInventoryItemResponseNonNullableFields as UpdateInventoryItemResponseNonNullableFields, type index_d$6_V3BulkInventoryItemResult as V3BulkInventoryItemResult, type ValueAggregation$1 as ValueAggregation, type ValueAggregationOptionsOneOf$1 as ValueAggregationOptionsOneOf, type ValueAggregationResult$1 as ValueAggregationResult, type ValueResult$1 as ValueResult, type ValueResults$1 as ValueResults, WebhookIdentityType$5 as WebhookIdentityType, type index_d$6__publicOnInventoryItemCreatedType as _publicOnInventoryItemCreatedType, type index_d$6__publicOnInventoryItemDeletedType as _publicOnInventoryItemDeletedType, type index_d$6__publicOnInventoryItemStockStatusUpdatedType as _publicOnInventoryItemStockStatusUpdatedType, type index_d$6__publicOnInventoryItemUpdatedType as _publicOnInventoryItemUpdatedType, type index_d$6__publicOnInventoryItemUpdatedWithReasonType as _publicOnInventoryItemUpdatedWithReasonType, index_d$6_bulkCreateInventoryItems as bulkCreateInventoryItems, index_d$6_bulkDecrementInventoryItems as bulkDecrementInventoryItems, index_d$6_bulkDecrementInventoryItemsByVariantAndLocation as bulkDecrementInventoryItemsByVariantAndLocation, index_d$6_bulkDeleteInventoryItems as bulkDeleteInventoryItems, index_d$6_bulkIncrementInventoryItems as bulkIncrementInventoryItems, index_d$6_bulkIncrementInventoryItemsByVariantAndLocation as bulkIncrementInventoryItemsByVariantAndLocation, index_d$6_bulkSetOrAdjustInventoryItemsByFilter as bulkSetOrAdjustInventoryItemsByFilter, index_d$6_bulkUpdateInventoryItems as bulkUpdateInventoryItems, index_d$6_bulkUpdateInventoryItemsByFilter as bulkUpdateInventoryItemsByFilter, index_d$6_createInventoryItem as createInventoryItem, index_d$6_deleteInventoryItem as deleteInventoryItem, index_d$6_getInventoryItem as getInventoryItem, index_d$6_onInventoryItemCreated as onInventoryItemCreated, index_d$6_onInventoryItemDeleted as onInventoryItemDeleted, index_d$6_onInventoryItemStockStatusUpdated as onInventoryItemStockStatusUpdated, index_d$6_onInventoryItemUpdated as onInventoryItemUpdated, index_d$6_onInventoryItemUpdatedWithReason as onInventoryItemUpdatedWithReason, onInventoryItemCreated$1 as publicOnInventoryItemCreated, onInventoryItemDeleted$1 as publicOnInventoryItemDeleted, onInventoryItemStockStatusUpdated$1 as publicOnInventoryItemStockStatusUpdated, onInventoryItemUpdated$1 as publicOnInventoryItemUpdated, onInventoryItemUpdatedWithReason$1 as publicOnInventoryItemUpdatedWithReason, index_d$6_queryInventoryItems as queryInventoryItems, index_d$6_searchInventoryItems as searchInventoryItems, index_d$6_updateInventoryItem as updateInventoryItem };
10340
10368
  }
10341
10369
 
10342
10370
  interface V3Product extends V3ProductTypedPropertiesOneOf {
@@ -11933,11 +11961,11 @@ interface Tag {
11933
11961
  */
11934
11962
  type?: string;
11935
11963
  /**
11936
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
11937
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
11964
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
11965
+ * For example: `{"name": "description", "content": "the description itself"}`.
11938
11966
  */
11939
11967
  props?: Record<string, any> | null;
11940
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
11968
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
11941
11969
  meta?: Record<string, any> | null;
11942
11970
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
11943
11971
  children?: string;
@@ -12974,7 +13002,6 @@ declare enum SingleEntityOpsRequestedFields {
12974
13002
  PLAIN_DESCRIPTION = "PLAIN_DESCRIPTION",
12975
13003
  INFO_SECTION_PLAIN_DESCRIPTION = "INFO_SECTION_PLAIN_DESCRIPTION",
12976
13004
  SUBSCRIPTION_PRICES_INFO = "SUBSCRIPTION_PRICES_INFO",
12977
- VARIANTS_INFO = "VARIANTS_INFO",
12978
13005
  BREADCRUMBS_INFO = "BREADCRUMBS_INFO",
12979
13006
  WEIGHT_MEASUREMENT_UNIT_INFO = "WEIGHT_MEASUREMENT_UNIT_INFO",
12980
13007
  VARIANT_OPTION_CHOICE_NAMES = "VARIANT_OPTION_CHOICE_NAMES",
@@ -14799,7 +14826,7 @@ interface SearchProductsResponse {
14799
14826
  aggregationData?: AggregationData;
14800
14827
  }
14801
14828
  interface CursorPagingMetadata$2 {
14802
- /** Number of product variants returned in the response. */
14829
+ /** Number of items returned in the response. */
14803
14830
  count?: number | null;
14804
14831
  /** Cursor strings that point to the next page, previous page, or both. */
14805
14832
  cursors?: Cursors$2;
@@ -1060,11 +1060,11 @@ interface Tag$3 {
1060
1060
  */
1061
1061
  type?: string;
1062
1062
  /**
1063
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
1064
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
1063
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
1064
+ * For example: `{"name": "description", "content": "the description itself"}`.
1065
1065
  */
1066
1066
  props?: Record<string, any> | null;
1067
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
1067
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
1068
1068
  meta?: Record<string, any> | null;
1069
1069
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
1070
1070
  children?: string;
@@ -2481,11 +2481,11 @@ interface Tag$2 {
2481
2481
  */
2482
2482
  type?: string;
2483
2483
  /**
2484
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
2485
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
2484
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
2485
+ * For example: `{"name": "description", "content": "the description itself"}`.
2486
2486
  */
2487
2487
  props?: Record<string, any> | null;
2488
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
2488
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
2489
2489
  meta?: Record<string, any> | null;
2490
2490
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
2491
2491
  children?: string;
@@ -9342,6 +9342,42 @@ interface BulkUpdateInventoryItemsByFilterResponse$1 {
9342
9342
  */
9343
9343
  jobId?: string;
9344
9344
  }
9345
+ interface BulkSetOrAdjustInventoryItemsByFilterRequest$1 {
9346
+ /**
9347
+ * Filter object in the following format:
9348
+ * `"filter" : {
9349
+ * "fieldName1": "value1",
9350
+ * "fieldName2":{"$operator":"value2"}
9351
+ * }`
9352
+ * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
9353
+ */
9354
+ filter: Record<string, any> | null;
9355
+ /** Action to adjust the inventory by. (e.g increment or decrement) */
9356
+ adjustedInventoryAction: AdjustInventoryAction$1;
9357
+ /** Free text to match in searchable fields */
9358
+ search?: SearchDetails$1;
9359
+ }
9360
+ interface AdjustInventoryAction$1 extends AdjustInventoryActionActionOneOf$1 {
9361
+ /** Amount to increment by. */
9362
+ incrementBy?: number;
9363
+ /** Amount to decrement by. */
9364
+ decrementBy?: number;
9365
+ }
9366
+ /** @oneof */
9367
+ interface AdjustInventoryActionActionOneOf$1 {
9368
+ /** Amount to increment by. */
9369
+ incrementBy?: number;
9370
+ /** Amount to decrement by. */
9371
+ decrementBy?: number;
9372
+ }
9373
+ interface BulkSetOrAdjustInventoryItemsByFilterResponse$1 {
9374
+ /**
9375
+ * Job ID.
9376
+ *
9377
+ * Pass this ID to [Get Async Job](https://dev.wix.com/docs/rest/business-management/async-job/introduction) to retrieve job details and metadata.
9378
+ */
9379
+ jobId?: string;
9380
+ }
9345
9381
  interface DeleteInventoryItemRequest$1 {
9346
9382
  /** Inventory item ID. */
9347
9383
  inventoryItemId: string;
@@ -10037,6 +10073,9 @@ interface BulkUpdateInventoryItemsResponseNonNullableFields$1 {
10037
10073
  interface BulkUpdateInventoryItemsByFilterResponseNonNullableFields$1 {
10038
10074
  jobId: string;
10039
10075
  }
10076
+ interface BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields$1 {
10077
+ jobId: string;
10078
+ }
10040
10079
  interface BulkInventoryItemResultNonNullableFields$3 {
10041
10080
  itemMetadata?: ItemMetadataNonNullableFields$5;
10042
10081
  }
@@ -10410,6 +10449,42 @@ interface BulkUpdateInventoryItemsByFilterResponse {
10410
10449
  */
10411
10450
  jobId?: string;
10412
10451
  }
10452
+ interface BulkSetOrAdjustInventoryItemsByFilterRequest {
10453
+ /**
10454
+ * Filter object in the following format:
10455
+ * `"filter" : {
10456
+ * "fieldName1": "value1",
10457
+ * "fieldName2":{"$operator":"value2"}
10458
+ * }`
10459
+ * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
10460
+ */
10461
+ filter: Record<string, any> | null;
10462
+ /** Action to adjust the inventory by. (e.g increment or decrement) */
10463
+ adjustedInventoryAction: AdjustInventoryAction;
10464
+ /** Free text to match in searchable fields */
10465
+ search?: SearchDetails;
10466
+ }
10467
+ interface AdjustInventoryAction extends AdjustInventoryActionActionOneOf {
10468
+ /** Amount to increment by. */
10469
+ incrementBy?: number;
10470
+ /** Amount to decrement by. */
10471
+ decrementBy?: number;
10472
+ }
10473
+ /** @oneof */
10474
+ interface AdjustInventoryActionActionOneOf {
10475
+ /** Amount to increment by. */
10476
+ incrementBy?: number;
10477
+ /** Amount to decrement by. */
10478
+ decrementBy?: number;
10479
+ }
10480
+ interface BulkSetOrAdjustInventoryItemsByFilterResponse {
10481
+ /**
10482
+ * Job ID.
10483
+ *
10484
+ * Pass this ID to [Get Async Job](https://dev.wix.com/docs/rest/business-management/async-job/introduction) to retrieve job details and metadata.
10485
+ */
10486
+ jobId?: string;
10487
+ }
10413
10488
  interface DeleteInventoryItemRequest {
10414
10489
  /** Inventory item ID. */
10415
10490
  inventoryItemId: string;
@@ -11105,6 +11180,9 @@ interface BulkUpdateInventoryItemsResponseNonNullableFields {
11105
11180
  interface BulkUpdateInventoryItemsByFilterResponseNonNullableFields {
11106
11181
  jobId: string;
11107
11182
  }
11183
+ interface BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields {
11184
+ jobId: string;
11185
+ }
11108
11186
  interface BulkInventoryItemResultNonNullableFields$2 {
11109
11187
  itemMetadata?: ItemMetadataNonNullableFields$4;
11110
11188
  }
@@ -11208,6 +11286,7 @@ declare function updateInventoryItem(): __PublicMethodMetaInfo$6<'PATCH', {
11208
11286
  }, UpdateInventoryItemRequest, UpdateInventoryItemRequest$1, UpdateInventoryItemResponse & UpdateInventoryItemResponseNonNullableFields, UpdateInventoryItemResponse$1 & UpdateInventoryItemResponseNonNullableFields$1>;
11209
11287
  declare function bulkUpdateInventoryItems(): __PublicMethodMetaInfo$6<'POST', {}, BulkUpdateInventoryItemsRequest, BulkUpdateInventoryItemsRequest$1, BulkUpdateInventoryItemsResponse & BulkUpdateInventoryItemsResponseNonNullableFields, BulkUpdateInventoryItemsResponse$1 & BulkUpdateInventoryItemsResponseNonNullableFields$1>;
11210
11288
  declare function bulkUpdateInventoryItemsByFilter(): __PublicMethodMetaInfo$6<'POST', {}, BulkUpdateInventoryItemsByFilterRequest, BulkUpdateInventoryItemsByFilterRequest$1, BulkUpdateInventoryItemsByFilterResponse & BulkUpdateInventoryItemsByFilterResponseNonNullableFields, BulkUpdateInventoryItemsByFilterResponse$1 & BulkUpdateInventoryItemsByFilterResponseNonNullableFields$1>;
11289
+ declare function bulkSetOrAdjustInventoryItemsByFilter(): __PublicMethodMetaInfo$6<'POST', {}, BulkSetOrAdjustInventoryItemsByFilterRequest, BulkSetOrAdjustInventoryItemsByFilterRequest$1, BulkSetOrAdjustInventoryItemsByFilterResponse & BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields, BulkSetOrAdjustInventoryItemsByFilterResponse$1 & BulkSetOrAdjustInventoryItemsByFilterResponseNonNullableFields$1>;
11211
11290
  declare function deleteInventoryItem(): __PublicMethodMetaInfo$6<'DELETE', {
11212
11291
  inventoryItemId: string;
11213
11292
  }, DeleteInventoryItemRequest, DeleteInventoryItemRequest$1, DeleteInventoryItemResponse, DeleteInventoryItemResponse$1>;
@@ -11225,6 +11304,7 @@ declare const meta$6_bulkDecrementInventoryItemsByVariantAndLocation: typeof bul
11225
11304
  declare const meta$6_bulkDeleteInventoryItems: typeof bulkDeleteInventoryItems;
11226
11305
  declare const meta$6_bulkIncrementInventoryItems: typeof bulkIncrementInventoryItems;
11227
11306
  declare const meta$6_bulkIncrementInventoryItemsByVariantAndLocation: typeof bulkIncrementInventoryItemsByVariantAndLocation;
11307
+ declare const meta$6_bulkSetOrAdjustInventoryItemsByFilter: typeof bulkSetOrAdjustInventoryItemsByFilter;
11228
11308
  declare const meta$6_bulkUpdateInventoryItems: typeof bulkUpdateInventoryItems;
11229
11309
  declare const meta$6_bulkUpdateInventoryItemsByFilter: typeof bulkUpdateInventoryItemsByFilter;
11230
11310
  declare const meta$6_createInventoryItem: typeof createInventoryItem;
@@ -11234,7 +11314,7 @@ declare const meta$6_queryInventoryItems: typeof queryInventoryItems;
11234
11314
  declare const meta$6_searchInventoryItems: typeof searchInventoryItems;
11235
11315
  declare const meta$6_updateInventoryItem: typeof updateInventoryItem;
11236
11316
  declare namespace meta$6 {
11237
- export { type __PublicMethodMetaInfo$6 as __PublicMethodMetaInfo, meta$6_bulkCreateInventoryItems as bulkCreateInventoryItems, meta$6_bulkDecrementInventoryItems as bulkDecrementInventoryItems, meta$6_bulkDecrementInventoryItemsByVariantAndLocation as bulkDecrementInventoryItemsByVariantAndLocation, meta$6_bulkDeleteInventoryItems as bulkDeleteInventoryItems, meta$6_bulkIncrementInventoryItems as bulkIncrementInventoryItems, meta$6_bulkIncrementInventoryItemsByVariantAndLocation as bulkIncrementInventoryItemsByVariantAndLocation, meta$6_bulkUpdateInventoryItems as bulkUpdateInventoryItems, meta$6_bulkUpdateInventoryItemsByFilter as bulkUpdateInventoryItemsByFilter, meta$6_createInventoryItem as createInventoryItem, meta$6_deleteInventoryItem as deleteInventoryItem, meta$6_getInventoryItem as getInventoryItem, meta$6_queryInventoryItems as queryInventoryItems, meta$6_searchInventoryItems as searchInventoryItems, meta$6_updateInventoryItem as updateInventoryItem };
11317
+ export { type __PublicMethodMetaInfo$6 as __PublicMethodMetaInfo, meta$6_bulkCreateInventoryItems as bulkCreateInventoryItems, meta$6_bulkDecrementInventoryItems as bulkDecrementInventoryItems, meta$6_bulkDecrementInventoryItemsByVariantAndLocation as bulkDecrementInventoryItemsByVariantAndLocation, meta$6_bulkDeleteInventoryItems as bulkDeleteInventoryItems, meta$6_bulkIncrementInventoryItems as bulkIncrementInventoryItems, meta$6_bulkIncrementInventoryItemsByVariantAndLocation as bulkIncrementInventoryItemsByVariantAndLocation, meta$6_bulkSetOrAdjustInventoryItemsByFilter as bulkSetOrAdjustInventoryItemsByFilter, meta$6_bulkUpdateInventoryItems as bulkUpdateInventoryItems, meta$6_bulkUpdateInventoryItemsByFilter as bulkUpdateInventoryItemsByFilter, meta$6_createInventoryItem as createInventoryItem, meta$6_deleteInventoryItem as deleteInventoryItem, meta$6_getInventoryItem as getInventoryItem, meta$6_queryInventoryItems as queryInventoryItems, meta$6_searchInventoryItems as searchInventoryItems, meta$6_updateInventoryItem as updateInventoryItem };
11238
11318
  }
11239
11319
 
11240
11320
  interface V3Product$1 extends V3ProductTypedPropertiesOneOf$1 {
@@ -12855,11 +12935,11 @@ interface Tag$1 {
12855
12935
  */
12856
12936
  type?: string;
12857
12937
  /**
12858
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
12859
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
12938
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
12939
+ * For example: `{"name": "description", "content": "the description itself"}`.
12860
12940
  */
12861
12941
  props?: Record<string, any> | null;
12862
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
12942
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
12863
12943
  meta?: Record<string, any> | null;
12864
12944
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
12865
12945
  children?: string;
@@ -13601,7 +13681,6 @@ declare enum SingleEntityOpsRequestedFields$1 {
13601
13681
  PLAIN_DESCRIPTION = "PLAIN_DESCRIPTION",
13602
13682
  INFO_SECTION_PLAIN_DESCRIPTION = "INFO_SECTION_PLAIN_DESCRIPTION",
13603
13683
  SUBSCRIPTION_PRICES_INFO = "SUBSCRIPTION_PRICES_INFO",
13604
- VARIANTS_INFO = "VARIANTS_INFO",
13605
13684
  BREADCRUMBS_INFO = "BREADCRUMBS_INFO",
13606
13685
  WEIGHT_MEASUREMENT_UNIT_INFO = "WEIGHT_MEASUREMENT_UNIT_INFO",
13607
13686
  VARIANT_OPTION_CHOICE_NAMES = "VARIANT_OPTION_CHOICE_NAMES",
@@ -17310,11 +17389,11 @@ interface Tag {
17310
17389
  */
17311
17390
  type?: string;
17312
17391
  /**
17313
- * A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
17314
- * For example: `{'name': 'description', 'content': 'the description itself'}`.
17392
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
17393
+ * For example: `{"name": "description", "content": "the description itself"}`.
17315
17394
  */
17316
17395
  props?: Record<string, any> | null;
17317
- /** SEO tag meta data. For example, `{height: 300, width: 240}`. */
17396
+ /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
17318
17397
  meta?: Record<string, any> | null;
17319
17398
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
17320
17399
  children?: string;
@@ -18056,7 +18135,6 @@ declare enum SingleEntityOpsRequestedFields {
18056
18135
  PLAIN_DESCRIPTION = "PLAIN_DESCRIPTION",
18057
18136
  INFO_SECTION_PLAIN_DESCRIPTION = "INFO_SECTION_PLAIN_DESCRIPTION",
18058
18137
  SUBSCRIPTION_PRICES_INFO = "SUBSCRIPTION_PRICES_INFO",
18059
- VARIANTS_INFO = "VARIANTS_INFO",
18060
18138
  BREADCRUMBS_INFO = "BREADCRUMBS_INFO",
18061
18139
  WEIGHT_MEASUREMENT_UNIT_INFO = "WEIGHT_MEASUREMENT_UNIT_INFO",
18062
18140
  VARIANT_OPTION_CHOICE_NAMES = "VARIANT_OPTION_CHOICE_NAMES",