@evergis/api 3.0.80 → 3.0.81
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/__generated__/AccountPreviewService.d.ts +1 -1
- package/dist/__generated__/AccountService.d.ts +3 -3
- package/dist/__generated__/FeedbackService.d.ts +1 -1
- package/dist/__generated__/PrintService.d.ts +1 -1
- package/dist/__generated__/S3Service.d.ts +1 -1
- package/dist/__generated__/StaticContentService.d.ts +1 -1
- package/dist/__generated__/StyleService.d.ts +1 -1
- package/dist/api.cjs.development.js +4 -0
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js +4 -0
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Feedback.d.ts +3 -3
- package/package.json +2 -2
|
@@ -27,7 +27,7 @@ export declare class AccountPreviewService extends Service {
|
|
|
27
27
|
* @request POST:/account/user/{username}/preview
|
|
28
28
|
* @response `200` Success
|
|
29
29
|
*/
|
|
30
|
-
uploadPreview(username: string, data: UploadPreviewPayload): Promise<FileUploadResponse>;
|
|
30
|
+
uploadPreview(username: string, data: UploadPreviewPayload | FormData): Promise<FileUploadResponse>;
|
|
31
31
|
/**
|
|
32
32
|
* No description
|
|
33
33
|
*
|
|
@@ -137,7 +137,7 @@ export declare class AccountService extends Service {
|
|
|
137
137
|
* @request POST:/account/setEmail
|
|
138
138
|
* @response `200` Success
|
|
139
139
|
*/
|
|
140
|
-
setEmail(data: SetEmailPayload): Promise<void>;
|
|
140
|
+
setEmail(data: SetEmailPayload | FormData): Promise<void>;
|
|
141
141
|
/**
|
|
142
142
|
* No description
|
|
143
143
|
*
|
|
@@ -192,7 +192,7 @@ export declare class AccountService extends Service {
|
|
|
192
192
|
* @request PATCH:/account/password/change
|
|
193
193
|
* @response `200` Success
|
|
194
194
|
*/
|
|
195
|
-
changePassword(data: ChangePasswordPayload): Promise<void>;
|
|
195
|
+
changePassword(data: ChangePasswordPayload | FormData): Promise<void>;
|
|
196
196
|
/**
|
|
197
197
|
* No description
|
|
198
198
|
*
|
|
@@ -214,7 +214,7 @@ export declare class AccountService extends Service {
|
|
|
214
214
|
* @request POST:/account/password/reset/confirm
|
|
215
215
|
* @response `200` Success
|
|
216
216
|
*/
|
|
217
|
-
resetPasswordCallback(data: ResetPasswordCallbackPayload): Promise<void>;
|
|
217
|
+
resetPasswordCallback(data: ResetPasswordCallbackPayload | FormData): Promise<void>;
|
|
218
218
|
/**
|
|
219
219
|
* No description
|
|
220
220
|
*
|
|
@@ -38,5 +38,5 @@ export declare class FeedbackService extends Service {
|
|
|
38
38
|
* @request POST:/feedback
|
|
39
39
|
* @response `200` Success
|
|
40
40
|
*/
|
|
41
|
-
feedback(query: FeedbackParams, data: FeedbackPayload): Promise<string[]>;
|
|
41
|
+
feedback(query: FeedbackParams, data: FeedbackPayload | FormData): Promise<string[]>;
|
|
42
42
|
}
|
|
@@ -38,7 +38,7 @@ export declare class PrintService extends Service {
|
|
|
38
38
|
* @request POST:/print/templates
|
|
39
39
|
* @response `200` Success
|
|
40
40
|
*/
|
|
41
|
-
uploadTemplate(query: UploadTemplateParams, data: UploadTemplatePayload): Promise<void>;
|
|
41
|
+
uploadTemplate(query: UploadTemplateParams, data: UploadTemplatePayload | FormData): Promise<void>;
|
|
42
42
|
/**
|
|
43
43
|
* No description
|
|
44
44
|
*
|
|
@@ -27,7 +27,7 @@ export declare class S3Service extends Service {
|
|
|
27
27
|
* @request POST:/storages/{storageName}/objects
|
|
28
28
|
* @response `200` Success
|
|
29
29
|
*/
|
|
30
|
-
createResource(storageName: string, data: CreateResourcePayload): Promise<void>;
|
|
30
|
+
createResource(storageName: string, data: CreateResourcePayload | FormData): Promise<void>;
|
|
31
31
|
/**
|
|
32
32
|
* No description
|
|
33
33
|
*
|
|
@@ -27,7 +27,7 @@ export declare class StaticContentService extends Service {
|
|
|
27
27
|
* @request POST:/upload/file
|
|
28
28
|
* @response `200` Success
|
|
29
29
|
*/
|
|
30
|
-
uploadFile(data: UploadFilePayload): Promise<FileUploadResponse>;
|
|
30
|
+
uploadFile(data: UploadFilePayload | FormData): Promise<FileUploadResponse>;
|
|
31
31
|
/**
|
|
32
32
|
* No description
|
|
33
33
|
*
|
|
@@ -60,7 +60,7 @@ export declare class StyleService extends Service {
|
|
|
60
60
|
* @request POST:/styles/fonts
|
|
61
61
|
* @response `200` Success
|
|
62
62
|
*/
|
|
63
|
-
addFont(data: AddFontPayload): Promise<void>;
|
|
63
|
+
addFont(data: AddFontPayload | FormData): Promise<void>;
|
|
64
64
|
/**
|
|
65
65
|
* No description
|
|
66
66
|
*
|