@saritasa/crm-delmar-core-sdk 0.1.138 → 0.1.142
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 +2 -2
- package/api/export-job-reports-departments-api.serviceInterface.d.ts +2 -0
- package/api/export-job-reports-users-api.serviceInterface.d.ts +2 -0
- package/api/export-jobs-api.serviceInterface.d.ts +2 -0
- package/api/jobs-api.serviceInterface.d.ts +24 -0
- package/api/user-scores-api.serviceInterface.d.ts +32 -0
- package/api/users-api.service.d.ts +22 -0
- package/api/users-api.serviceInterface.d.ts +7 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +204 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +1 -0
- package/model/s3-file.dto.d.ts +15 -0
- package/package.json +2 -2
package/model/models.d.ts
CHANGED
|
@@ -196,6 +196,7 @@ export * from "./role-edit-permission.dto";
|
|
|
196
196
|
export * from "./role-edit-permission-request.dto";
|
|
197
197
|
export * from "./role-request.dto";
|
|
198
198
|
export * from "./s3-config.dto";
|
|
199
|
+
export * from "./s3-file.dto";
|
|
199
200
|
export * from "./s3-params.dto";
|
|
200
201
|
export * from "./s3-request-params-request.dto";
|
|
201
202
|
export * from "./s3-upload.dto";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Delmar Api
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* Serializer to simply return signed urls for files from s3.
|
|
12
|
+
*/
|
|
13
|
+
export interface S3FileDto {
|
|
14
|
+
file: string;
|
|
15
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saritasa/crm-delmar-core-sdk",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.
|
|
3
|
+
"version": "0.1.142",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/crm-delmar-core-sdk(for version 0.1.54)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|