@spiffcommerce/core 21.4.0 → 21.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,7 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
- ## [21.3.0] - 20-03-2024
8
+
9
+ ## [21.4.1] - 21-03-2024
10
+
11
+ ### Changed
12
+
13
+ - `readTransactionsQuery` now fetches `printFileUrl1` to `printFileUrl5` for each transaction.
14
+
15
+ ## [21.4.0] - 20-03-2024
9
16
 
10
17
  ### Fixed
11
18
 
package/dist/index.d.ts CHANGED
@@ -655,6 +655,11 @@ interface Transaction {
655
655
  * The amount of this transaction that was, or will be, ordered
656
656
  */
657
657
  quantity?: number;
658
+ printFileUrl1?: string;
659
+ printFileUrl2?: string;
660
+ printFileUrl3?: string;
661
+ printFileUrl4?: string;
662
+ printFileUrl5?: string;
658
663
  }
659
664
  /**
660
665
  * An integration product represents the connection of a product in SpiffCommerce with
package/dist/index.js CHANGED
@@ -975,6 +975,11 @@ const ae = F`
975
975
  previewImageLink
976
976
  isOrdered
977
977
  quantity
978
+ printFileUrl1
979
+ printFileUrl2
980
+ printFileUrl3
981
+ printFileUrl4
982
+ printFileUrl5
978
983
  product {
979
984
  id
980
985
  basePrice
@@ -426,6 +426,11 @@
426
426
  previewImageLink
427
427
  isOrdered
428
428
  quantity
429
+ printFileUrl1
430
+ printFileUrl2
431
+ printFileUrl3
432
+ printFileUrl4
433
+ printFileUrl5
429
434
  product {
430
435
  id
431
436
  basePrice
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spiffcommerce/core",
3
- "version": "21.4.0",
3
+ "version": "21.4.1",
4
4
  "description": "Core client API for interacting with the Spiff Commerce backend.",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/index.umd.cjs",