@spiffcommerce/core 22.6.6 → 22.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1184,6 +1184,7 @@ interface BundleOptions {
1184
1184
  */
1185
1185
  declare class ProductCollection {
1186
1186
  private readonly collection;
1187
+ private fullFetched;
1187
1188
  constructor(collection: ProductCollectionResource);
1188
1189
  /**
1189
1190
  * The ID of the product collection.
@@ -1200,7 +1201,7 @@ declare class ProductCollection {
1200
1201
  /**
1201
1202
  * A list of products in this collections with useful helpers for interacting with them.
1202
1203
  */
1203
- fetchProducts(): Promise<CollectionProduct[]>;
1204
+ fetchProducts(productsIds?: string[]): Promise<CollectionProduct[]>;
1204
1205
  getTransformCollection(): TransformCollection$1 | undefined;
1205
1206
  /**
1206
1207
  * The raw collection resource. This is generally not needed and should be avoided.