ultracart_rest_api_v2_typescript 3.10.4 → 3.10.7

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## ultracart_rest_api_v2_typescript@3.10.4
1
+ ## ultracart_rest_api_v2_typescript@3.10.7
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install ultracart_rest_api_v2_typescript@3.10.4 --save
39
+ npm install ultracart_rest_api_v2_typescript@3.10.7 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -54,6 +54,9 @@ Not every change is committed to every SDK.
54
54
 
55
55
  | Version | Date | Comments |
56
56
  | --: | :-: | --- |
57
+ | 3.10.7 | 05/23/2022 | add internal gift cert to order summary, addl provider info for storefront comm |
58
+ | 3.10.6 | 05/23/2022 | add internal gift cert to order summary, addl provider info for storefront comm |
59
+ | 3.10.5 | 05/20/2022 | dependabot on java gson version |
57
60
  | 3.10.4 | 05/20/2022 | dependabot on java gson |
58
61
  | 3.10.3 | 05/20/2022 | OrderApi.generatePackingSkip calls had wrong return type |
59
62
  | 3.10.2 | 05/12/2022 | ChannelPartnerApi renamed one of the delete methods |
package/api.ts CHANGED
@@ -15649,6 +15649,18 @@ export interface EmailThirdPartyProvider {
15649
15649
  * @memberof EmailThirdPartyProvider
15650
15650
  */
15651
15651
  supports_remove_tags?: boolean;
15652
+ /**
15653
+ * tag_count
15654
+ * @type {number}
15655
+ * @memberof EmailThirdPartyProvider
15656
+ */
15657
+ tag_count?: number;
15658
+ /**
15659
+ * tags
15660
+ * @type {Array<EmailThirdPartyTag>}
15661
+ * @memberof EmailThirdPartyProvider
15662
+ */
15663
+ tags?: Array<EmailThirdPartyTag>;
15652
15664
  }
15653
15665
 
15654
15666
  /**
@@ -15689,6 +15701,26 @@ export interface EmailThirdPartyProvidersResponse {
15689
15701
  warning?: Warning;
15690
15702
  }
15691
15703
 
15704
+ /**
15705
+ *
15706
+ * @export
15707
+ * @interface EmailThirdPartyTag
15708
+ */
15709
+ export interface EmailThirdPartyTag {
15710
+ /**
15711
+ * id
15712
+ * @type {string}
15713
+ * @memberof EmailThirdPartyTag
15714
+ */
15715
+ id?: string;
15716
+ /**
15717
+ * name
15718
+ * @type {string}
15719
+ * @memberof EmailThirdPartyTag
15720
+ */
15721
+ name?: string;
15722
+ }
15723
+
15692
15724
  /**
15693
15725
  *
15694
15726
  * @export
@@ -26310,6 +26342,18 @@ export interface OrderSummary {
26310
26342
  * @memberof OrderSummary
26311
26343
  */
26312
26344
  arbitrary_shipping_handling_total?: Currency;
26345
+ /**
26346
+ *
26347
+ * @type {Currency}
26348
+ * @memberof OrderSummary
26349
+ */
26350
+ internal_gift_certificate_amount?: Currency;
26351
+ /**
26352
+ *
26353
+ * @type {Currency}
26354
+ * @memberof OrderSummary
26355
+ */
26356
+ internal_gift_certificate_refunded?: Currency;
26313
26357
  /**
26314
26358
  *
26315
26359
  * @type {Currency}
package/dist/api.d.ts CHANGED
@@ -15305,6 +15305,18 @@ export interface EmailThirdPartyProvider {
15305
15305
  * @memberof EmailThirdPartyProvider
15306
15306
  */
15307
15307
  supports_remove_tags?: boolean;
15308
+ /**
15309
+ * tag_count
15310
+ * @type {number}
15311
+ * @memberof EmailThirdPartyProvider
15312
+ */
15313
+ tag_count?: number;
15314
+ /**
15315
+ * tags
15316
+ * @type {Array<EmailThirdPartyTag>}
15317
+ * @memberof EmailThirdPartyProvider
15318
+ */
15319
+ tags?: Array<EmailThirdPartyTag>;
15308
15320
  }
15309
15321
  /**
15310
15322
  *
@@ -15343,6 +15355,25 @@ export interface EmailThirdPartyProvidersResponse {
15343
15355
  */
15344
15356
  warning?: Warning;
15345
15357
  }
15358
+ /**
15359
+ *
15360
+ * @export
15361
+ * @interface EmailThirdPartyTag
15362
+ */
15363
+ export interface EmailThirdPartyTag {
15364
+ /**
15365
+ * id
15366
+ * @type {string}
15367
+ * @memberof EmailThirdPartyTag
15368
+ */
15369
+ id?: string;
15370
+ /**
15371
+ * name
15372
+ * @type {string}
15373
+ * @memberof EmailThirdPartyTag
15374
+ */
15375
+ name?: string;
15376
+ }
15346
15377
  /**
15347
15378
  *
15348
15379
  * @export
@@ -25756,6 +25787,18 @@ export interface OrderSummary {
25756
25787
  * @memberof OrderSummary
25757
25788
  */
25758
25789
  arbitrary_shipping_handling_total?: Currency;
25790
+ /**
25791
+ *
25792
+ * @type {Currency}
25793
+ * @memberof OrderSummary
25794
+ */
25795
+ internal_gift_certificate_amount?: Currency;
25796
+ /**
25797
+ *
25798
+ * @type {Currency}
25799
+ * @memberof OrderSummary
25800
+ */
25801
+ internal_gift_certificate_refunded?: Currency;
25759
25802
  /**
25760
25803
  *
25761
25804
  * @type {Currency}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "3.10.4",
3
+ "version": "3.10.7",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "keywords": [