ultracart_rest_api_v2_typescript 4.0.132 → 4.0.133

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.132
1
+ ## ultracart_rest_api_v2_typescript@4.0.133
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.132 --save
39
+ npm install ultracart_rest_api_v2_typescript@4.0.133 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -54,6 +54,7 @@ Not every change is committed to every SDK.
54
54
 
55
55
  | Version | Date | Comments |
56
56
  | --: | :-: | --- |
57
+ | 4.0.133 | 02/10/2023 | convo - add storefront_host_name to search request |
57
58
  | 4.0.132 | 02/07/2023 | convo - new event for when a customer joins a queue |
58
59
  | 4.0.131 | 02/07/2023 | convo - new event for when a customer joins a queue |
59
60
  | 4.0.130 | 02/06/2023 | convo - add conversation_arn to ConversationWebsocketMessage |
@@ -33,6 +33,12 @@ export interface LookupRequest {
33
33
  * @memberof LookupRequest
34
34
  */
35
35
  max_hits?: number;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof LookupRequest
40
+ */
41
+ storefront_host_name?: string;
36
42
  /**
37
43
  *
38
44
  * @type {number}
@@ -27,6 +27,7 @@ function LookupRequestFromJSONTyped(json, ignoreDiscriminator) {
27
27
  'category': !(0, runtime_1.exists)(json, 'category') ? undefined : json['category'],
28
28
  'matches': !(0, runtime_1.exists)(json, 'matches') ? undefined : json['matches'],
29
29
  'max_hits': !(0, runtime_1.exists)(json, 'max_hits') ? undefined : json['max_hits'],
30
+ 'storefront_host_name': !(0, runtime_1.exists)(json, 'storefront_host_name') ? undefined : json['storefront_host_name'],
30
31
  'storefront_oid': !(0, runtime_1.exists)(json, 'storefront_oid') ? undefined : json['storefront_oid'],
31
32
  'subcategory': !(0, runtime_1.exists)(json, 'subcategory') ? undefined : json['subcategory'],
32
33
  };
@@ -43,6 +44,7 @@ function LookupRequestToJSON(value) {
43
44
  'category': value.category,
44
45
  'matches': value.matches,
45
46
  'max_hits': value.max_hits,
47
+ 'storefront_host_name': value.storefront_host_name,
46
48
  'storefront_oid': value.storefront_oid,
47
49
  'subcategory': value.subcategory,
48
50
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "4.0.132",
3
+ "version": "4.0.133",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "repository": {
@@ -37,6 +37,12 @@ export interface LookupRequest {
37
37
  * @memberof LookupRequest
38
38
  */
39
39
  max_hits?: number;
40
+ /**
41
+ *
42
+ * @type {string}
43
+ * @memberof LookupRequest
44
+ */
45
+ storefront_host_name?: string;
40
46
  /**
41
47
  *
42
48
  * @type {number}
@@ -64,6 +70,7 @@ export function LookupRequestFromJSONTyped(json: any, ignoreDiscriminator: boole
64
70
  'category': !exists(json, 'category') ? undefined : json['category'],
65
71
  'matches': !exists(json, 'matches') ? undefined : json['matches'],
66
72
  'max_hits': !exists(json, 'max_hits') ? undefined : json['max_hits'],
73
+ 'storefront_host_name': !exists(json, 'storefront_host_name') ? undefined : json['storefront_host_name'],
67
74
  'storefront_oid': !exists(json, 'storefront_oid') ? undefined : json['storefront_oid'],
68
75
  'subcategory': !exists(json, 'subcategory') ? undefined : json['subcategory'],
69
76
  };
@@ -81,6 +88,7 @@ export function LookupRequestToJSON(value?: LookupRequest | null): any {
81
88
  'category': value.category,
82
89
  'matches': value.matches,
83
90
  'max_hits': value.max_hits,
91
+ 'storefront_host_name': value.storefront_host_name,
84
92
  'storefront_oid': value.storefront_oid,
85
93
  'subcategory': value.subcategory,
86
94
  };