@sokol111/ecommerce-image-service-api 1.0.24 → 1.0.26

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/dist/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Image Service API
3
3
  * API for managing images
4
4
  *
5
- * The version of the OpenAPI document: 1.0.24
5
+ * The version of the OpenAPI document: 1.0.26
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,6 +13,51 @@ import type { Configuration } from './configuration';
13
13
  import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  import type { RequestArgs } from './base';
15
15
  import { BaseAPI } from './base';
16
+ export interface BatchUrlRequest {
17
+ /**
18
+ * List of image IDs to get URLs for (max 50)
19
+ */
20
+ 'imageIds': Array<string>;
21
+ /**
22
+ * Width in pixels
23
+ */
24
+ 'w'?: number;
25
+ /**
26
+ * Height in pixels
27
+ */
28
+ 'h'?: number;
29
+ 'fit'?: BatchUrlRequestFitEnum;
30
+ 'format'?: BatchUrlRequestFormatEnum;
31
+ 'quality'?: number;
32
+ }
33
+ export declare const BatchUrlRequestFitEnum: {
34
+ readonly Cover: "cover";
35
+ readonly Contain: "contain";
36
+ readonly Fill: "fill";
37
+ readonly Inside: "inside";
38
+ readonly Outside: "outside";
39
+ };
40
+ export type BatchUrlRequestFitEnum = typeof BatchUrlRequestFitEnum[keyof typeof BatchUrlRequestFitEnum];
41
+ export declare const BatchUrlRequestFormatEnum: {
42
+ readonly Original: "original";
43
+ readonly Webp: "webp";
44
+ readonly Avif: "avif";
45
+ readonly Jpeg: "jpeg";
46
+ readonly Png: "png";
47
+ };
48
+ export type BatchUrlRequestFormatEnum = typeof BatchUrlRequestFormatEnum[keyof typeof BatchUrlRequestFormatEnum];
49
+ export interface BatchUrlResponse {
50
+ 'urls': Array<BatchUrlResponseUrlsInner>;
51
+ /**
52
+ * Image IDs that were not found
53
+ */
54
+ 'notFound'?: Array<string>;
55
+ }
56
+ export interface BatchUrlResponseUrlsInner {
57
+ 'imageId': string;
58
+ 'url': string;
59
+ 'expiresAt'?: string;
60
+ }
16
61
  export interface ConfirmRequest {
17
62
  /**
18
63
  * Signed JWT token from presign response
@@ -215,6 +260,14 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
215
260
  * @throws {RequiredError}
216
261
  */
217
262
  getDeliveryUrl: (id: string, variant?: string, w?: number, h?: number, fit?: GetDeliveryUrlFitEnum, format?: GetDeliveryUrlFormatEnum, quality?: number, dpr?: number, ttlSeconds?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
263
+ /**
264
+ *
265
+ * @summary Generate signed imgproxy URLs for multiple images in a single request
266
+ * @param {BatchUrlRequest} batchUrlRequest
267
+ * @param {*} [options] Override http request option.
268
+ * @throws {RequiredError}
269
+ */
270
+ getDeliveryUrls: (batchUrlRequest: BatchUrlRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
218
271
  /**
219
272
  *
220
273
  * @summary Get image metadata
@@ -306,6 +359,14 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
306
359
  * @throws {RequiredError}
307
360
  */
308
361
  getDeliveryUrl(id: string, variant?: string, w?: number, h?: number, fit?: GetDeliveryUrlFitEnum, format?: GetDeliveryUrlFormatEnum, quality?: number, dpr?: number, ttlSeconds?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDeliveryUrl200Response>>;
362
+ /**
363
+ *
364
+ * @summary Generate signed imgproxy URLs for multiple images in a single request
365
+ * @param {BatchUrlRequest} batchUrlRequest
366
+ * @param {*} [options] Override http request option.
367
+ * @throws {RequiredError}
368
+ */
369
+ getDeliveryUrls(batchUrlRequest: BatchUrlRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BatchUrlResponse>>;
309
370
  /**
310
371
  *
311
372
  * @summary Get image metadata
@@ -388,6 +449,14 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
388
449
  * @throws {RequiredError}
389
450
  */
390
451
  getDeliveryUrl(requestParameters: DefaultApiGetDeliveryUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetDeliveryUrl200Response>;
452
+ /**
453
+ *
454
+ * @summary Generate signed imgproxy URLs for multiple images in a single request
455
+ * @param {DefaultApiGetDeliveryUrlsRequest} requestParameters Request parameters.
456
+ * @param {*} [options] Override http request option.
457
+ * @throws {RequiredError}
458
+ */
459
+ getDeliveryUrls(requestParameters: DefaultApiGetDeliveryUrlsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BatchUrlResponse>;
391
460
  /**
392
461
  *
393
462
  * @summary Get image metadata
@@ -462,6 +531,12 @@ export interface DefaultApiGetDeliveryUrlRequest {
462
531
  readonly dpr?: number;
463
532
  readonly ttlSeconds?: number;
464
533
  }
534
+ /**
535
+ * Request parameters for getDeliveryUrls operation in DefaultApi.
536
+ */
537
+ export interface DefaultApiGetDeliveryUrlsRequest {
538
+ readonly batchUrlRequest: BatchUrlRequest;
539
+ }
465
540
  /**
466
541
  * Request parameters for getImage operation in DefaultApi.
467
542
  */
@@ -533,6 +608,14 @@ export declare class DefaultApi extends BaseAPI {
533
608
  * @throws {RequiredError}
534
609
  */
535
610
  getDeliveryUrl(requestParameters: DefaultApiGetDeliveryUrlRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetDeliveryUrl200Response, any, {}>>;
611
+ /**
612
+ *
613
+ * @summary Generate signed imgproxy URLs for multiple images in a single request
614
+ * @param {DefaultApiGetDeliveryUrlsRequest} requestParameters Request parameters.
615
+ * @param {*} [options] Override http request option.
616
+ * @throws {RequiredError}
617
+ */
618
+ getDeliveryUrls(requestParameters: DefaultApiGetDeliveryUrlsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BatchUrlResponse, any, {}>>;
536
619
  /**
537
620
  *
538
621
  * @summary Get image metadata
package/dist/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Image Service API
5
5
  * API for managing images
6
6
  *
7
- * The version of the OpenAPI document: 1.0.24
7
+ * The version of the OpenAPI document: 1.0.26
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,6 +26,20 @@ import globalAxios from 'axios';
26
26
  import { DUMMY_BASE_URL, assertParamExists, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common';
27
27
  // @ts-ignore
28
28
  import { BASE_PATH, BaseAPI, operationServerMap } from './base';
29
+ export const BatchUrlRequestFitEnum = {
30
+ Cover: 'cover',
31
+ Contain: 'contain',
32
+ Fill: 'fill',
33
+ Inside: 'inside',
34
+ Outside: 'outside'
35
+ };
36
+ export const BatchUrlRequestFormatEnum = {
37
+ Original: 'original',
38
+ Webp: 'webp',
39
+ Avif: 'avif',
40
+ Jpeg: 'jpeg',
41
+ Png: 'png'
42
+ };
29
43
  export const ImageRole = {
30
44
  Main: 'main',
31
45
  Gallery: 'gallery',
@@ -65,7 +79,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
65
79
  confirmUpload: (confirmRequest_1, ...args_1) => __awaiter(this, [confirmRequest_1, ...args_1], void 0, function* (confirmRequest, options = {}) {
66
80
  // verify required parameter 'confirmRequest' is not null or undefined
67
81
  assertParamExists('confirmUpload', 'confirmRequest', confirmRequest);
68
- const localVarPath = `/images/confirm`;
82
+ const localVarPath = `/v1/images/confirm`;
69
83
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
70
84
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
71
85
  let baseOptions;
@@ -95,7 +109,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
95
109
  createPresign: (presignRequest_1, ...args_1) => __awaiter(this, [presignRequest_1, ...args_1], void 0, function* (presignRequest, options = {}) {
96
110
  // verify required parameter 'presignRequest' is not null or undefined
97
111
  assertParamExists('createPresign', 'presignRequest', presignRequest);
98
- const localVarPath = `/images/presign`;
112
+ const localVarPath = `/v1/images/presign`;
99
113
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
100
114
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
101
115
  let baseOptions;
@@ -126,7 +140,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
126
140
  deleteImage: (id_1, hard_1, ...args_1) => __awaiter(this, [id_1, hard_1, ...args_1], void 0, function* (id, hard, options = {}) {
127
141
  // verify required parameter 'id' is not null or undefined
128
142
  assertParamExists('deleteImage', 'id', id);
129
- const localVarPath = `/images/{id}`
143
+ const localVarPath = `/v1/images/{id}`
130
144
  .replace(`{${"id"}}`, encodeURIComponent(String(id)));
131
145
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
132
146
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -166,7 +180,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
166
180
  getDeliveryUrl: (id_1, variant_1, w_1, h_1, fit_1, format_1, quality_1, dpr_1, ttlSeconds_1, ...args_1) => __awaiter(this, [id_1, variant_1, w_1, h_1, fit_1, format_1, quality_1, dpr_1, ttlSeconds_1, ...args_1], void 0, function* (id, variant, w, h, fit, format, quality, dpr, ttlSeconds, options = {}) {
167
181
  // verify required parameter 'id' is not null or undefined
168
182
  assertParamExists('getDeliveryUrl', 'id', id);
169
- const localVarPath = `/images/{id}/url`
183
+ const localVarPath = `/v1/images/{id}/url`
170
184
  .replace(`{${"id"}}`, encodeURIComponent(String(id)));
171
185
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
172
186
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -209,6 +223,36 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
209
223
  options: localVarRequestOptions,
210
224
  };
211
225
  }),
226
+ /**
227
+ *
228
+ * @summary Generate signed imgproxy URLs for multiple images in a single request
229
+ * @param {BatchUrlRequest} batchUrlRequest
230
+ * @param {*} [options] Override http request option.
231
+ * @throws {RequiredError}
232
+ */
233
+ getDeliveryUrls: (batchUrlRequest_1, ...args_1) => __awaiter(this, [batchUrlRequest_1, ...args_1], void 0, function* (batchUrlRequest, options = {}) {
234
+ // verify required parameter 'batchUrlRequest' is not null or undefined
235
+ assertParamExists('getDeliveryUrls', 'batchUrlRequest', batchUrlRequest);
236
+ const localVarPath = `/v1/images/urls`;
237
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
238
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
239
+ let baseOptions;
240
+ if (configuration) {
241
+ baseOptions = configuration.baseOptions;
242
+ }
243
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
244
+ const localVarHeaderParameter = {};
245
+ const localVarQueryParameter = {};
246
+ localVarHeaderParameter['Content-Type'] = 'application/json';
247
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
248
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
249
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
250
+ localVarRequestOptions.data = serializeDataIfNeeded(batchUrlRequest, localVarRequestOptions, configuration);
251
+ return {
252
+ url: toPathString(localVarUrlObj),
253
+ options: localVarRequestOptions,
254
+ };
255
+ }),
212
256
  /**
213
257
  *
214
258
  * @summary Get image metadata
@@ -219,7 +263,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
219
263
  getImage: (id_1, ...args_1) => __awaiter(this, [id_1, ...args_1], void 0, function* (id, options = {}) {
220
264
  // verify required parameter 'id' is not null or undefined
221
265
  assertParamExists('getImage', 'id', id);
222
- const localVarPath = `/images/{id}`
266
+ const localVarPath = `/v1/images/{id}`
223
267
  .replace(`{${"id"}}`, encodeURIComponent(String(id)));
224
268
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
225
269
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -250,7 +294,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
250
294
  * @throws {RequiredError}
251
295
  */
252
296
  listImages: (ownerType_1, ownerId_1, status_1, page_1, pageSize_1, ...args_1) => __awaiter(this, [ownerType_1, ownerId_1, status_1, page_1, pageSize_1, ...args_1], void 0, function* (ownerType, ownerId, status, page, pageSize, options = {}) {
253
- const localVarPath = `/images`;
297
+ const localVarPath = `/v1/images`;
254
298
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
255
299
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
256
300
  let baseOptions;
@@ -293,7 +337,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
293
337
  processImage: (processImageRequest_1, ...args_1) => __awaiter(this, [processImageRequest_1, ...args_1], void 0, function* (processImageRequest, options = {}) {
294
338
  // verify required parameter 'processImageRequest' is not null or undefined
295
339
  assertParamExists('processImage', 'processImageRequest', processImageRequest);
296
- const localVarPath = `/internal/images/process`;
340
+ const localVarPath = `/v1/internal/images/process`;
297
341
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
298
342
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
299
343
  let baseOptions;
@@ -323,7 +367,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
323
367
  promoteImages: (promoteRequest_1, ...args_1) => __awaiter(this, [promoteRequest_1, ...args_1], void 0, function* (promoteRequest, options = {}) {
324
368
  // verify required parameter 'promoteRequest' is not null or undefined
325
369
  assertParamExists('promoteImages', 'promoteRequest', promoteRequest);
326
- const localVarPath = `/images/promote`;
370
+ const localVarPath = `/v1/images/promote`;
327
371
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
328
372
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
329
373
  let baseOptions;
@@ -356,7 +400,7 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
356
400
  assertParamExists('updateImage', 'id', id);
357
401
  // verify required parameter 'imagePatch' is not null or undefined
358
402
  assertParamExists('updateImage', 'imagePatch', imagePatch);
359
- const localVarPath = `/images/{id}`
403
+ const localVarPath = `/v1/images/{id}`
360
404
  .replace(`{${"id"}}`, encodeURIComponent(String(id)));
361
405
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
362
406
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -458,6 +502,22 @@ export const DefaultApiFp = function (configuration) {
458
502
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
459
503
  });
460
504
  },
505
+ /**
506
+ *
507
+ * @summary Generate signed imgproxy URLs for multiple images in a single request
508
+ * @param {BatchUrlRequest} batchUrlRequest
509
+ * @param {*} [options] Override http request option.
510
+ * @throws {RequiredError}
511
+ */
512
+ getDeliveryUrls(batchUrlRequest, options) {
513
+ return __awaiter(this, void 0, void 0, function* () {
514
+ var _a, _b, _c;
515
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getDeliveryUrls(batchUrlRequest, options);
516
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
517
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DefaultApi.getDeliveryUrls']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
518
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
519
+ });
520
+ },
461
521
  /**
462
522
  *
463
523
  * @summary Get image metadata
@@ -591,6 +651,16 @@ export const DefaultApiFactory = function (configuration, basePath, axios) {
591
651
  getDeliveryUrl(requestParameters, options) {
592
652
  return localVarFp.getDeliveryUrl(requestParameters.id, requestParameters.variant, requestParameters.w, requestParameters.h, requestParameters.fit, requestParameters.format, requestParameters.quality, requestParameters.dpr, requestParameters.ttlSeconds, options).then((request) => request(axios, basePath));
593
653
  },
654
+ /**
655
+ *
656
+ * @summary Generate signed imgproxy URLs for multiple images in a single request
657
+ * @param {DefaultApiGetDeliveryUrlsRequest} requestParameters Request parameters.
658
+ * @param {*} [options] Override http request option.
659
+ * @throws {RequiredError}
660
+ */
661
+ getDeliveryUrls(requestParameters, options) {
662
+ return localVarFp.getDeliveryUrls(requestParameters.batchUrlRequest, options).then((request) => request(axios, basePath));
663
+ },
594
664
  /**
595
665
  *
596
666
  * @summary Get image metadata
@@ -687,6 +757,16 @@ export class DefaultApi extends BaseAPI {
687
757
  getDeliveryUrl(requestParameters, options) {
688
758
  return DefaultApiFp(this.configuration).getDeliveryUrl(requestParameters.id, requestParameters.variant, requestParameters.w, requestParameters.h, requestParameters.fit, requestParameters.format, requestParameters.quality, requestParameters.dpr, requestParameters.ttlSeconds, options).then((request) => request(this.axios, this.basePath));
689
759
  }
760
+ /**
761
+ *
762
+ * @summary Generate signed imgproxy URLs for multiple images in a single request
763
+ * @param {DefaultApiGetDeliveryUrlsRequest} requestParameters Request parameters.
764
+ * @param {*} [options] Override http request option.
765
+ * @throws {RequiredError}
766
+ */
767
+ getDeliveryUrls(requestParameters, options) {
768
+ return DefaultApiFp(this.configuration).getDeliveryUrls(requestParameters.batchUrlRequest, options).then((request) => request(this.axios, this.basePath));
769
+ }
690
770
  /**
691
771
  *
692
772
  * @summary Get image metadata
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Image Service API
3
3
  * API for managing images
4
4
  *
5
- * The version of the OpenAPI document: 1.0.24
5
+ * The version of the OpenAPI document: 1.0.26
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Image Service API
5
5
  * API for managing images
6
6
  *
7
- * The version of the OpenAPI document: 1.0.24
7
+ * The version of the OpenAPI document: 1.0.26
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Image Service API
3
3
  * API for managing images
4
4
  *
5
- * The version of the OpenAPI document: 1.0.24
5
+ * The version of the OpenAPI document: 1.0.26
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Image Service API
5
5
  * API for managing images
6
6
  *
7
- * The version of the OpenAPI document: 1.0.24
7
+ * The version of the OpenAPI document: 1.0.26
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Image Service API
3
3
  * API for managing images
4
4
  *
5
- * The version of the OpenAPI document: 1.0.24
5
+ * The version of the OpenAPI document: 1.0.26
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,7 +3,7 @@
3
3
  * Image Service API
4
4
  * API for managing images
5
5
  *
6
- * The version of the OpenAPI document: 1.0.24
6
+ * The version of the OpenAPI document: 1.0.26
7
7
  *
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Image Service API
3
3
  * API for managing images
4
4
  *
5
- * The version of the OpenAPI document: 1.0.24
5
+ * The version of the OpenAPI document: 1.0.26
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Image Service API
5
5
  * API for managing images
6
6
  *
7
- * The version of the OpenAPI document: 1.0.24
7
+ * The version of the OpenAPI document: 1.0.26
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sokol111/ecommerce-image-service-api",
3
3
  "description": "Generated TypeScript Axios client from OpenAPI for ecommerce-image-service-api",
4
- "version": "1.0.24",
4
+ "version": "1.0.26",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "module": "dist/index.js",