@sokol111/ecommerce-image-service-api 1.0.26 → 1.0.27
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 +7 -7
- package/dist/api.js +1 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.27
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -47,17 +47,12 @@ export declare const BatchUrlRequestFormatEnum: {
|
|
|
47
47
|
};
|
|
48
48
|
export type BatchUrlRequestFormatEnum = typeof BatchUrlRequestFormatEnum[keyof typeof BatchUrlRequestFormatEnum];
|
|
49
49
|
export interface BatchUrlResponse {
|
|
50
|
-
'urls': Array<
|
|
50
|
+
'urls': Array<ImageUrl>;
|
|
51
51
|
/**
|
|
52
52
|
* Image IDs that were not found
|
|
53
53
|
*/
|
|
54
54
|
'notFound'?: Array<string>;
|
|
55
55
|
}
|
|
56
|
-
export interface BatchUrlResponseUrlsInner {
|
|
57
|
-
'imageId': string;
|
|
58
|
-
'url': string;
|
|
59
|
-
'expiresAt'?: string;
|
|
60
|
-
}
|
|
61
56
|
export interface ConfirmRequest {
|
|
62
57
|
/**
|
|
63
58
|
* Signed JWT token from presign response
|
|
@@ -119,6 +114,11 @@ export declare const ImageStatus: {
|
|
|
119
114
|
readonly Deleted: "deleted";
|
|
120
115
|
};
|
|
121
116
|
export type ImageStatus = typeof ImageStatus[keyof typeof ImageStatus];
|
|
117
|
+
export interface ImageUrl {
|
|
118
|
+
'imageId': string;
|
|
119
|
+
'url': string;
|
|
120
|
+
'expiresAt'?: string;
|
|
121
|
+
}
|
|
122
122
|
export interface ListImages200Response {
|
|
123
123
|
'items'?: Array<Image>;
|
|
124
124
|
'page'?: number;
|
package/dist/api.js
CHANGED
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
package/dist/common.d.ts
CHANGED
package/dist/common.js
CHANGED
package/dist/configuration.d.ts
CHANGED
package/dist/configuration.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
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.
|
|
4
|
+
"version": "1.0.27",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"module": "dist/index.js",
|