@spiffcommerce/core 12.11.2 → 12.11.4

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/module.js CHANGED
@@ -209,6 +209,10 @@ import{CommandContext as t,AssetType as A,BringForwardCommand as e,BringToFrontC
209
209
  }
210
210
  mandatory
211
211
  }
212
+ productTags {
213
+ id
214
+ name
215
+ }
212
216
  }
213
217
  integrationProduct {
214
218
  id
@@ -285,6 +289,10 @@ import{CommandContext as t,AssetType as A,BringForwardCommand as e,BringToFrontC
285
289
  }
286
290
  mandatory
287
291
  }
292
+ productTags {
293
+ id
294
+ name
295
+ }
288
296
  }
289
297
  integrationProduct {
290
298
  id
@@ -368,6 +376,10 @@ import{CommandContext as t,AssetType as A,BringForwardCommand as e,BringToFrontC
368
376
  }
369
377
  mandatory
370
378
  }
379
+ productTags {
380
+ id
381
+ name
382
+ }
371
383
  }
372
384
  integrationProduct {
373
385
  id
@@ -431,6 +443,10 @@ import{CommandContext as t,AssetType as A,BringForwardCommand as e,BringToFrontC
431
443
  }
432
444
  mandatory
433
445
  }
446
+ productTags {
447
+ id
448
+ name
449
+ }
434
450
  }
435
451
  priceModifierTotal
436
452
  variationsCount
@@ -533,6 +549,10 @@ import{CommandContext as t,AssetType as A,BringForwardCommand as e,BringToFrontC
533
549
  workflowName
534
550
  imageUrl
535
551
  }
552
+ productTags {
553
+ id
554
+ name
555
+ }
536
556
  }
537
557
  `}
538
558
  fragment ProductCollectionFields on ProductCollection {
package/dist/types.d.ts CHANGED
@@ -856,6 +856,11 @@ interface Product {
856
856
  */
857
857
  conversionConfiguration?: ConversionConfiguration;
858
858
  integrationProducts?: IntegrationProduct[];
859
+ productTags?: ProductTag[];
860
+ }
861
+ interface ProductTag {
862
+ id: string;
863
+ name: string;
859
864
  }
860
865
  export interface ColorOption {
861
866
  id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spiffcommerce/core",
3
- "version": "12.11.2",
3
+ "version": "12.11.4",
4
4
  "description": "Core client API for interacting with the Spiff Commerce backend.",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/main.js",
@@ -87,7 +87,7 @@
87
87
  },
88
88
  "dependencies": {
89
89
  "@apollo/client": "^3.7.0",
90
- "@spiffcommerce/papyrus": "^2.0.10",
90
+ "@spiffcommerce/papyrus": "^2.0.11",
91
91
  "cross-fetch": "^3.1.5",
92
92
  "graphql": "^16.6.0",
93
93
  "lodash.clonedeep": "^4.5.0",