ultracart_rest_api_v2_typescript 4.0.71-RC → 4.0.72-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.71-RC
1
+ ## ultracart_rest_api_v2_typescript@4.0.72-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.71-RC --save
39
+ npm install ultracart_rest_api_v2_typescript@4.0.72-RC --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.72-RC | 10/05/2022 | storefront rest file cdn icon urls |
57
58
  | 4.0.71-RC | 10/04/2022 | bug fix for new storefront file mgr |
58
59
  | 4.0.70-RC | 09/29/2022 | page_paths search category for search2 method |
59
60
  | 4.0.69-RC | 09/29/2022 | storefront file mgr calls tweaks |
@@ -117,6 +117,24 @@ export interface FileManagerFile {
117
117
  * @memberof FileManagerFile
118
118
  */
119
119
  storefront_oid?: number;
120
+ /**
121
+ * CDN thumbnail 16x16 size
122
+ * @type {string}
123
+ * @memberof FileManagerFile
124
+ */
125
+ thumbnail_16_url?: string;
126
+ /**
127
+ * CDN thumbnail 32x32 size
128
+ * @type {string}
129
+ * @memberof FileManagerFile
130
+ */
131
+ thumbnail_32_url?: string;
132
+ /**
133
+ * CDN thumbnail 64x64 size
134
+ * @type {string}
135
+ * @memberof FileManagerFile
136
+ */
137
+ thumbnail_64_url?: string;
120
138
  /**
121
139
  *
122
140
  * @type {string}
@@ -41,6 +41,9 @@ function FileManagerFileFromJSONTyped(json, ignoreDiscriminator) {
41
41
  'storefront_fs_directory_oid': !(0, runtime_1.exists)(json, 'storefront_fs_directory_oid') ? undefined : json['storefront_fs_directory_oid'],
42
42
  'storefront_fs_file_oid': !(0, runtime_1.exists)(json, 'storefront_fs_file_oid') ? undefined : json['storefront_fs_file_oid'],
43
43
  'storefront_oid': !(0, runtime_1.exists)(json, 'storefront_oid') ? undefined : json['storefront_oid'],
44
+ 'thumbnail_16_url': !(0, runtime_1.exists)(json, 'thumbnail_16_url') ? undefined : json['thumbnail_16_url'],
45
+ 'thumbnail_32_url': !(0, runtime_1.exists)(json, 'thumbnail_32_url') ? undefined : json['thumbnail_32_url'],
46
+ 'thumbnail_64_url': !(0, runtime_1.exists)(json, 'thumbnail_64_url') ? undefined : json['thumbnail_64_url'],
44
47
  'type': !(0, runtime_1.exists)(json, 'type') ? undefined : json['type'],
45
48
  'valid_velocity': !(0, runtime_1.exists)(json, 'valid_velocity') ? undefined : json['valid_velocity'],
46
49
  };
@@ -71,6 +74,9 @@ function FileManagerFileToJSON(value) {
71
74
  'storefront_fs_directory_oid': value.storefront_fs_directory_oid,
72
75
  'storefront_fs_file_oid': value.storefront_fs_file_oid,
73
76
  'storefront_oid': value.storefront_oid,
77
+ 'thumbnail_16_url': value.thumbnail_16_url,
78
+ 'thumbnail_32_url': value.thumbnail_32_url,
79
+ 'thumbnail_64_url': value.thumbnail_64_url,
74
80
  'type': value.type,
75
81
  'valid_velocity': value.valid_velocity,
76
82
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "4.0.71-RC",
3
+ "version": "4.0.72-RC",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "repository": {
@@ -121,6 +121,24 @@ export interface FileManagerFile {
121
121
  * @memberof FileManagerFile
122
122
  */
123
123
  storefront_oid?: number;
124
+ /**
125
+ * CDN thumbnail 16x16 size
126
+ * @type {string}
127
+ * @memberof FileManagerFile
128
+ */
129
+ thumbnail_16_url?: string;
130
+ /**
131
+ * CDN thumbnail 32x32 size
132
+ * @type {string}
133
+ * @memberof FileManagerFile
134
+ */
135
+ thumbnail_32_url?: string;
136
+ /**
137
+ * CDN thumbnail 64x64 size
138
+ * @type {string}
139
+ * @memberof FileManagerFile
140
+ */
141
+ thumbnail_64_url?: string;
124
142
  /**
125
143
  *
126
144
  * @type {string}
@@ -162,6 +180,9 @@ export function FileManagerFileFromJSONTyped(json: any, ignoreDiscriminator: boo
162
180
  'storefront_fs_directory_oid': !exists(json, 'storefront_fs_directory_oid') ? undefined : json['storefront_fs_directory_oid'],
163
181
  'storefront_fs_file_oid': !exists(json, 'storefront_fs_file_oid') ? undefined : json['storefront_fs_file_oid'],
164
182
  'storefront_oid': !exists(json, 'storefront_oid') ? undefined : json['storefront_oid'],
183
+ 'thumbnail_16_url': !exists(json, 'thumbnail_16_url') ? undefined : json['thumbnail_16_url'],
184
+ 'thumbnail_32_url': !exists(json, 'thumbnail_32_url') ? undefined : json['thumbnail_32_url'],
185
+ 'thumbnail_64_url': !exists(json, 'thumbnail_64_url') ? undefined : json['thumbnail_64_url'],
165
186
  'type': !exists(json, 'type') ? undefined : json['type'],
166
187
  'valid_velocity': !exists(json, 'valid_velocity') ? undefined : json['valid_velocity'],
167
188
  };
@@ -193,6 +214,9 @@ export function FileManagerFileToJSON(value?: FileManagerFile | null): any {
193
214
  'storefront_fs_directory_oid': value.storefront_fs_directory_oid,
194
215
  'storefront_fs_file_oid': value.storefront_fs_file_oid,
195
216
  'storefront_oid': value.storefront_oid,
217
+ 'thumbnail_16_url': value.thumbnail_16_url,
218
+ 'thumbnail_32_url': value.thumbnail_32_url,
219
+ 'thumbnail_64_url': value.thumbnail_64_url,
196
220
  'type': value.type,
197
221
  'valid_velocity': value.valid_velocity,
198
222
  };