@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.
@@ -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
  }
@@ -13,6 +13,7 @@
13
13
 
14
14
  export interface CoachingCardSubcategoriesModel {
15
15
  coachingCardSubcategory?: string;
16
+ coachingCardSubcategoryId?: number;
16
17
  description?: string;
17
18
  }
18
19
 
@@ -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
  }
@@ -12,6 +12,6 @@
12
12
 
13
13
 
14
14
  export interface CoachingLinks {
15
- link?: string;
15
+ links?: Array<string>;
16
16
  }
17
17
 
@@ -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';
@@ -21,6 +21,7 @@ export interface SaveCoachingCardUserRequest {
21
21
  isActionRequired?: boolean;
22
22
  isRepeatOffense?: boolean;
23
23
  permissionType?: SaveCoachingCardUserRequest.PermissionTypeEnum;
24
+ recipientNote?: string;
24
25
  resolutionDateUtc?: string;
25
26
  userId?: number;
26
27
  }
@@ -15,6 +15,7 @@ export interface UpdateCoachingCardRequest {
15
15
  acknowledgementDateUtc?: string;
16
16
  coachingCardId?: number;
17
17
  permissionType?: UpdateCoachingCardRequest.PermissionTypeEnum;
18
+ recipientNote?: string;
18
19
  resolutionDateUtc?: string;
19
20
  userId?: number;
20
21
  }
@@ -12,6 +12,7 @@
12
12
  import * as models from './models';
13
13
  export interface CoachingCardCategoriesModel {
14
14
  "coachingCardCategory"?: string;
15
+ "coachingCardCategoryId"?: number;
15
16
  "description"?: string;
16
17
  "subcategories"?: Array<models.CoachingCardSubcategoriesModel>;
17
18
  }
@@ -11,5 +11,6 @@
11
11
  */
12
12
  export interface CoachingCardSubcategoriesModel {
13
13
  "coachingCardSubcategory"?: string;
14
+ "coachingCardSubcategoryId"?: number;
14
15
  "description"?: string;
15
16
  }
@@ -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
  }
@@ -10,5 +10,5 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  export interface CoachingLinks {
13
- "link"?: string;
13
+ "links"?: Array<string>;
14
14
  }
@@ -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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.3.173",
3
+ "version": "2.3.174",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"