@saritasa/crm-delmar-core-sdk 0.2.166 → 0.2.303
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/projects-api.service.d.ts +8 -8
- package/api/projects-api.serviceInterface.d.ts +24 -2
- package/api/users-api.service.d.ts +9 -7
- package/api/users-api.serviceInterface.d.ts +31 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +126 -2
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/models.d.ts +1 -0
- package/model/paginated-simple-user-list.dto.d.ts +16 -0
- package/package.json +1 -1
package/model/models.d.ts
CHANGED
|
@@ -150,6 +150,7 @@ export * from "./paginated-role-list.dto";
|
|
|
150
150
|
export * from "./paginated-simple-client-list.dto";
|
|
151
151
|
export * from "./paginated-simple-project-list.dto";
|
|
152
152
|
export * from "./paginated-simple-project-priority-list.dto";
|
|
153
|
+
export * from "./paginated-simple-user-list.dto";
|
|
153
154
|
export * from "./paginated-simple-vendor-list.dto";
|
|
154
155
|
export * from "./paginated-sprint-hourly-report-list.dto";
|
|
155
156
|
export * from "./paginated-sprint-list.dto";
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
import { SimpleUserDto } from "./simple-user.dto";
|
|
11
|
+
export interface PaginatedSimpleUserListDto {
|
|
12
|
+
count: number;
|
|
13
|
+
results: Array<SimpleUserDto>;
|
|
14
|
+
next?: string | null;
|
|
15
|
+
previous?: string | null;
|
|
16
|
+
}
|
package/package.json
CHANGED