ultracart_rest_api_v2_typescript 4.0.123-RC → 4.0.125-RC

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@4.0.123-RC
1
+ ## ultracart_rest_api_v2_typescript@4.0.125-RC
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@4.0.123-RC --save
39
+ npm install ultracart_rest_api_v2_typescript@4.0.125-RC --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -54,6 +54,8 @@ Not every change is committed to every SDK.
54
54
 
55
55
  | Version | Date | Comments |
56
56
  | --: | :-: | --- |
57
+ | 4.0.125-RC | 01/26/2023 | conversation - added message type of engagement prompt |
58
+ | 4.0.124-RC | 01/25/2023 | convo event for engage customer |
57
59
  | 4.0.123-RC | 01/25/2023 | order api method generateInvoice |
58
60
  | 4.0.122-RC | 01/24/2023 | auto order - cancel minimum and change balance options |
59
61
  | 4.0.121-RC | 01/23/2023 | conversation - method to fetch single engagement record |
@@ -114,6 +114,7 @@ export interface ConversationMessage {
114
114
  export declare const ConversationMessageTypeEnum: {
115
115
  readonly Message: "message";
116
116
  readonly Notice: "notice";
117
+ readonly EngagementPrompt: "engagement prompt";
117
118
  };
118
119
  export type ConversationMessageTypeEnum = typeof ConversationMessageTypeEnum[keyof typeof ConversationMessageTypeEnum];
119
120
  export declare function ConversationMessageFromJSON(json: any): ConversationMessage;
@@ -22,7 +22,8 @@ var ConversationMessageTransportStatus_1 = require("./ConversationMessageTranspo
22
22
  */
23
23
  exports.ConversationMessageTypeEnum = {
24
24
  Message: 'message',
25
- Notice: 'notice'
25
+ Notice: 'notice',
26
+ EngagementPrompt: 'engagement prompt'
26
27
  };
27
28
  function ConversationMessageFromJSON(json) {
28
29
  return ConversationMessageFromJSONTyped(json, false);
@@ -173,6 +173,7 @@ export declare const ConversationWebsocketMessageEventTypeEnum: {
173
173
  readonly AddCoupon: "add coupon";
174
174
  readonly AddItem: "add item";
175
175
  readonly WebchatContext: "webchat context";
176
+ readonly EngageCustomer: "engage customer";
176
177
  };
177
178
  export type ConversationWebsocketMessageEventTypeEnum = typeof ConversationWebsocketMessageEventTypeEnum[keyof typeof ConversationWebsocketMessageEventTypeEnum];
178
179
  /**
@@ -45,7 +45,8 @@ exports.ConversationWebsocketMessageEventTypeEnum = {
45
45
  Typing: 'typing',
46
46
  AddCoupon: 'add coupon',
47
47
  AddItem: 'add item',
48
- WebchatContext: 'webchat context'
48
+ WebchatContext: 'webchat context',
49
+ EngageCustomer: 'engage customer'
49
50
  };
50
51
  /**
51
52
  * @export
@@ -94,6 +94,12 @@ export interface PricingTier {
94
94
  * @memberof PricingTier
95
95
  */
96
96
  exclude_from_free_promotion?: boolean;
97
+ /**
98
+ * Exempt from Loyalty Rewards
99
+ * @type {boolean}
100
+ * @memberof PricingTier
101
+ */
102
+ exempt_loyalty_rewards?: boolean;
97
103
  /**
98
104
  * Exempt shipping handling charge
99
105
  * @type {boolean}
@@ -38,6 +38,7 @@ function PricingTierFromJSONTyped(json, ignoreDiscriminator) {
38
38
  'default_tier': !(0, runtime_1.exists)(json, 'default_tier') ? undefined : json['default_tier'],
39
39
  'display_on_wholesale_signup': !(0, runtime_1.exists)(json, 'display_on_wholesale_signup') ? undefined : json['display_on_wholesale_signup'],
40
40
  'exclude_from_free_promotion': !(0, runtime_1.exists)(json, 'exclude_from_free_promotion') ? undefined : json['exclude_from_free_promotion'],
41
+ 'exempt_loyalty_rewards': !(0, runtime_1.exists)(json, 'exempt_loyalty_rewards') ? undefined : json['exempt_loyalty_rewards'],
41
42
  'exempt_shipping_handling_charge': !(0, runtime_1.exists)(json, 'exempt_shipping_handling_charge') ? undefined : json['exempt_shipping_handling_charge'],
42
43
  'free_shipping': !(0, runtime_1.exists)(json, 'free_shipping') ? undefined : json['free_shipping'],
43
44
  'free_shipping_minimum': !(0, runtime_1.exists)(json, 'free_shipping_minimum') ? undefined : json['free_shipping_minimum'],
@@ -80,6 +81,7 @@ function PricingTierToJSON(value) {
80
81
  'default_tier': value.default_tier,
81
82
  'display_on_wholesale_signup': value.display_on_wholesale_signup,
82
83
  'exclude_from_free_promotion': value.exclude_from_free_promotion,
84
+ 'exempt_loyalty_rewards': value.exempt_loyalty_rewards,
83
85
  'exempt_shipping_handling_charge': value.exempt_shipping_handling_charge,
84
86
  'free_shipping': value.free_shipping,
85
87
  'free_shipping_minimum': value.free_shipping_minimum,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "4.0.123-RC",
3
+ "version": "4.0.125-RC",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "repository": {
@@ -130,7 +130,8 @@ export interface ConversationMessage {
130
130
  */
131
131
  export const ConversationMessageTypeEnum = {
132
132
  Message: 'message',
133
- Notice: 'notice'
133
+ Notice: 'notice',
134
+ EngagementPrompt: 'engagement prompt'
134
135
  } as const;
135
136
  export type ConversationMessageTypeEnum = typeof ConversationMessageTypeEnum[keyof typeof ConversationMessageTypeEnum];
136
137
 
@@ -234,7 +234,8 @@ export const ConversationWebsocketMessageEventTypeEnum = {
234
234
  Typing: 'typing',
235
235
  AddCoupon: 'add coupon',
236
236
  AddItem: 'add item',
237
- WebchatContext: 'webchat context'
237
+ WebchatContext: 'webchat context',
238
+ EngageCustomer: 'engage customer'
238
239
  } as const;
239
240
  export type ConversationWebsocketMessageEventTypeEnum = typeof ConversationWebsocketMessageEventTypeEnum[keyof typeof ConversationWebsocketMessageEventTypeEnum];
240
241
 
@@ -104,6 +104,12 @@ export interface PricingTier {
104
104
  * @memberof PricingTier
105
105
  */
106
106
  exclude_from_free_promotion?: boolean;
107
+ /**
108
+ * Exempt from Loyalty Rewards
109
+ * @type {boolean}
110
+ * @memberof PricingTier
111
+ */
112
+ exempt_loyalty_rewards?: boolean;
107
113
  /**
108
114
  * Exempt shipping handling charge
109
115
  * @type {boolean}
@@ -237,6 +243,7 @@ export function PricingTierFromJSONTyped(json: any, ignoreDiscriminator: boolean
237
243
  'default_tier': !exists(json, 'default_tier') ? undefined : json['default_tier'],
238
244
  'display_on_wholesale_signup': !exists(json, 'display_on_wholesale_signup') ? undefined : json['display_on_wholesale_signup'],
239
245
  'exclude_from_free_promotion': !exists(json, 'exclude_from_free_promotion') ? undefined : json['exclude_from_free_promotion'],
246
+ 'exempt_loyalty_rewards': !exists(json, 'exempt_loyalty_rewards') ? undefined : json['exempt_loyalty_rewards'],
240
247
  'exempt_shipping_handling_charge': !exists(json, 'exempt_shipping_handling_charge') ? undefined : json['exempt_shipping_handling_charge'],
241
248
  'free_shipping': !exists(json, 'free_shipping') ? undefined : json['free_shipping'],
242
249
  'free_shipping_minimum': !exists(json, 'free_shipping_minimum') ? undefined : json['free_shipping_minimum'],
@@ -280,6 +287,7 @@ export function PricingTierToJSON(value?: PricingTier | null): any {
280
287
  'default_tier': value.default_tier,
281
288
  'display_on_wholesale_signup': value.display_on_wholesale_signup,
282
289
  'exclude_from_free_promotion': value.exclude_from_free_promotion,
290
+ 'exempt_loyalty_rewards': value.exempt_loyalty_rewards,
283
291
  'exempt_shipping_handling_charge': value.exempt_shipping_handling_charge,
284
292
  'free_shipping': value.free_shipping,
285
293
  'free_shipping_minimum': value.free_shipping_minimum,