@otr-app/shared-backend-generated-client 2.3.173 → 2.3.174
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/angular/.openapi-generator/FILES +0 -1
- package/dist/angular/model/coachingCardCategoriesModel.ts +1 -0
- package/dist/angular/model/coachingCardSubcategoriesModel.ts +1 -0
- package/dist/angular/model/coachingCardUsersModel.ts +1 -2
- package/dist/angular/model/coachingLinks.ts +1 -1
- package/dist/angular/model/models.ts +0 -1
- package/dist/angular/model/saveCoachingCardUserRequest.ts +1 -0
- package/dist/angular/model/updateCoachingCardRequest.ts +1 -0
- package/dist/typescript/model/CoachingCardCategoriesModel.d.ts +1 -0
- package/dist/typescript/model/CoachingCardSubcategoriesModel.d.ts +1 -0
- package/dist/typescript/model/CoachingCardUsersModel.d.ts +1 -2
- package/dist/typescript/model/CoachingLinks.d.ts +1 -1
- package/dist/typescript/model/SaveCoachingCardUserRequest.d.ts +1 -0
- package/dist/typescript/model/UpdateCoachingCardRequest.d.ts +1 -0
- package/dist/typescript/model/models.d.ts +0 -1
- package/dist/typescript/model/models.js +0 -1
- package/package.json +1 -1
|
@@ -243,7 +243,6 @@ model/clientActionRequiredRequest.ts
|
|
|
243
243
|
model/clientConfirmedUnpaidCase.ts
|
|
244
244
|
model/clientLeadDomain.ts
|
|
245
245
|
model/coachingCardCategoriesModel.ts
|
|
246
|
-
model/coachingCardEntity.ts
|
|
247
246
|
model/coachingCardSubcategoriesModel.ts
|
|
248
247
|
model/coachingCardUsersModel.ts
|
|
249
248
|
model/coachingCardsModel.ts
|
|
@@ -14,6 +14,7 @@ import { CoachingCardSubcategoriesModel } from './coachingCardSubcategoriesModel
|
|
|
14
14
|
|
|
15
15
|
export interface CoachingCardCategoriesModel {
|
|
16
16
|
coachingCardCategory?: string;
|
|
17
|
+
coachingCardCategoryId?: number;
|
|
17
18
|
description?: string;
|
|
18
19
|
subcategories?: Array<CoachingCardSubcategoriesModel>;
|
|
19
20
|
}
|
|
@@ -9,19 +9,18 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { CoachingCardEntity } from './coachingCardEntity';
|
|
13
12
|
|
|
14
13
|
|
|
15
14
|
export interface CoachingCardUsersModel {
|
|
16
15
|
acknowledgementDateUtc?: string;
|
|
17
16
|
assignmentDateUtc?: string;
|
|
18
|
-
coachingCards?: CoachingCardEntity;
|
|
19
17
|
coachingDateUtc?: string;
|
|
20
18
|
coachingMethod?: string;
|
|
21
19
|
hasBeenCoached?: boolean;
|
|
22
20
|
isActionRequired?: boolean;
|
|
23
21
|
isRepeatOffense?: boolean;
|
|
24
22
|
permissionType?: CoachingCardUsersModel.PermissionTypeEnum;
|
|
23
|
+
recipientNote?: string;
|
|
25
24
|
resolutionDateUtc?: string;
|
|
26
25
|
userId?: number;
|
|
27
26
|
}
|
|
@@ -124,7 +124,6 @@ export * from './clientActionRequiredRequest';
|
|
|
124
124
|
export * from './clientConfirmedUnpaidCase';
|
|
125
125
|
export * from './clientLeadDomain';
|
|
126
126
|
export * from './coachingCardCategoriesModel';
|
|
127
|
-
export * from './coachingCardEntity';
|
|
128
127
|
export * from './coachingCardSubcategoriesModel';
|
|
129
128
|
export * from './coachingCardUsersModel';
|
|
130
129
|
export * from './coachingCardsModel';
|
|
@@ -9,17 +9,16 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import * as models from './models';
|
|
13
12
|
export interface CoachingCardUsersModel {
|
|
14
13
|
"acknowledgementDateUtc"?: string;
|
|
15
14
|
"assignmentDateUtc"?: string;
|
|
16
|
-
"coachingCards"?: models.CoachingCardEntity;
|
|
17
15
|
"coachingDateUtc"?: string;
|
|
18
16
|
"coachingMethod"?: string;
|
|
19
17
|
"hasBeenCoached"?: boolean;
|
|
20
18
|
"isActionRequired"?: boolean;
|
|
21
19
|
"isRepeatOffense"?: boolean;
|
|
22
20
|
"permissionType"?: CoachingCardUsersModel.PermissionTypeEnum;
|
|
21
|
+
"recipientNote"?: string;
|
|
23
22
|
"resolutionDateUtc"?: string;
|
|
24
23
|
"userId"?: number;
|
|
25
24
|
}
|
|
@@ -19,6 +19,7 @@ export interface SaveCoachingCardUserRequest {
|
|
|
19
19
|
"isActionRequired"?: boolean;
|
|
20
20
|
"isRepeatOffense"?: boolean;
|
|
21
21
|
"permissionType"?: SaveCoachingCardUserRequest.PermissionTypeEnum;
|
|
22
|
+
"recipientNote"?: string;
|
|
22
23
|
"resolutionDateUtc"?: string;
|
|
23
24
|
"userId"?: number;
|
|
24
25
|
}
|
|
@@ -13,6 +13,7 @@ export interface UpdateCoachingCardRequest {
|
|
|
13
13
|
"acknowledgementDateUtc"?: string;
|
|
14
14
|
"coachingCardId"?: number;
|
|
15
15
|
"permissionType"?: UpdateCoachingCardRequest.PermissionTypeEnum;
|
|
16
|
+
"recipientNote"?: string;
|
|
16
17
|
"resolutionDateUtc"?: string;
|
|
17
18
|
"userId"?: number;
|
|
18
19
|
}
|
|
@@ -124,7 +124,6 @@ export * from './ClientActionRequiredRequest';
|
|
|
124
124
|
export * from './ClientConfirmedUnpaidCase';
|
|
125
125
|
export * from './ClientLeadDomain';
|
|
126
126
|
export * from './CoachingCardCategoriesModel';
|
|
127
|
-
export * from './CoachingCardEntity';
|
|
128
127
|
export * from './CoachingCardSubcategoriesModel';
|
|
129
128
|
export * from './CoachingCardUsersModel';
|
|
130
129
|
export * from './CoachingCardsModel';
|
|
@@ -136,7 +136,6 @@ __exportStar(require("./ClientActionRequiredRequest"), exports);
|
|
|
136
136
|
__exportStar(require("./ClientConfirmedUnpaidCase"), exports);
|
|
137
137
|
__exportStar(require("./ClientLeadDomain"), exports);
|
|
138
138
|
__exportStar(require("./CoachingCardCategoriesModel"), exports);
|
|
139
|
-
__exportStar(require("./CoachingCardEntity"), exports);
|
|
140
139
|
__exportStar(require("./CoachingCardSubcategoriesModel"), exports);
|
|
141
140
|
__exportStar(require("./CoachingCardUsersModel"), exports);
|
|
142
141
|
__exportStar(require("./CoachingCardsModel"), exports);
|