@otr-app/shared-backend-generated-client 2.5.43 → 2.5.45
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/model/listDashboardCasesResponse.ts +1 -0
- package/dist/angular/model/userDomain.ts +1 -0
- package/dist/angular/model/userDomainReq.ts +1 -0
- package/dist/angular/model/userDomainRes.ts +1 -0
- package/dist/typescript/model/ListDashboardCasesResponse.d.ts +1 -0
- package/dist/typescript/model/UserDomain.d.ts +1 -0
- package/dist/typescript/model/UserDomainReq.d.ts +1 -0
- package/dist/typescript/model/UserDomainRes.d.ts +1 -0
- package/dist/typescript-fetch/models/ListDashboardCasesResponse.d.ts +6 -0
- package/dist/typescript-fetch/models/ListDashboardCasesResponse.js +2 -0
- package/dist/typescript-fetch/models/UserDomain.d.ts +6 -0
- package/dist/typescript-fetch/models/UserDomain.js +2 -0
- package/dist/typescript-fetch/models/UserDomainReq.d.ts +6 -0
- package/dist/typescript-fetch/models/UserDomainReq.js +2 -0
- package/dist/typescript-fetch/models/UserDomainRes.d.ts +6 -0
- package/dist/typescript-fetch/models/UserDomainRes.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +8 -0
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ import { DashboardCaseCountsDto } from './dashboardCaseCountsDto';
|
|
|
16
16
|
export interface ListDashboardCasesResponse {
|
|
17
17
|
cases?: Array<DashboardCaseModel>;
|
|
18
18
|
counts?: DashboardCaseCountsDto;
|
|
19
|
+
filteredCaseCount?: number;
|
|
19
20
|
previousPageToken?: string;
|
|
20
21
|
totalCaseCount?: number;
|
|
21
22
|
}
|
|
@@ -64,6 +64,7 @@ export interface UserDomain {
|
|
|
64
64
|
signUpCodeUseCount?: number;
|
|
65
65
|
signedProfilePictureUrl?: string;
|
|
66
66
|
socialProfiles?: Array<UserSocialProfileModel>;
|
|
67
|
+
spooferUserId?: number;
|
|
67
68
|
subscriptionPlans?: Array<UserSubscriptionPlanModel>;
|
|
68
69
|
userAlias?: string;
|
|
69
70
|
userDeletedDateUtc?: string;
|
|
@@ -63,6 +63,7 @@ export interface UserDomainReq {
|
|
|
63
63
|
signUpCodeUseCount?: number;
|
|
64
64
|
signedProfilePictureUrl?: string;
|
|
65
65
|
socialProfiles?: Array<UserSocialProfileModelReq>;
|
|
66
|
+
spooferUserId?: number;
|
|
66
67
|
subscriptionPlans?: Array<UserSubscriptionPlanModelReq>;
|
|
67
68
|
userAlias?: string;
|
|
68
69
|
userDeletedDateUtc?: string;
|
|
@@ -64,6 +64,7 @@ export interface UserDomainRes {
|
|
|
64
64
|
signUpCodeUseCount?: number;
|
|
65
65
|
signedProfilePictureUrl?: string;
|
|
66
66
|
socialProfiles?: Array<UserSocialProfileModelRes>;
|
|
67
|
+
spooferUserId?: number;
|
|
67
68
|
subscriptionPlans?: Array<UserSubscriptionPlanModelRes>;
|
|
68
69
|
userAlias?: string;
|
|
69
70
|
userDeletedDateUtc?: string;
|
|
@@ -13,6 +13,7 @@ import * as models from './models';
|
|
|
13
13
|
export interface ListDashboardCasesResponse {
|
|
14
14
|
"cases"?: Array<models.DashboardCaseModel>;
|
|
15
15
|
"counts"?: models.DashboardCaseCountsDto;
|
|
16
|
+
"filteredCaseCount"?: number;
|
|
16
17
|
"previousPageToken"?: string;
|
|
17
18
|
"totalCaseCount"?: number;
|
|
18
19
|
}
|
|
@@ -54,6 +54,7 @@ export interface UserDomain {
|
|
|
54
54
|
"signUpCodeUseCount"?: number;
|
|
55
55
|
"signedProfilePictureUrl"?: string;
|
|
56
56
|
"socialProfiles"?: Array<models.UserSocialProfileModel>;
|
|
57
|
+
"spooferUserId"?: number;
|
|
57
58
|
"subscriptionPlans"?: Array<models.UserSubscriptionPlanModel>;
|
|
58
59
|
"userAlias"?: string;
|
|
59
60
|
"userDeletedDateUtc"?: string;
|
|
@@ -53,6 +53,7 @@ export interface UserDomainReq {
|
|
|
53
53
|
"signUpCodeUseCount"?: number;
|
|
54
54
|
"signedProfilePictureUrl"?: string;
|
|
55
55
|
"socialProfiles"?: Array<models.UserSocialProfileModelReq>;
|
|
56
|
+
"spooferUserId"?: number;
|
|
56
57
|
"subscriptionPlans"?: Array<models.UserSubscriptionPlanModelReq>;
|
|
57
58
|
"userAlias"?: string;
|
|
58
59
|
"userDeletedDateUtc"?: string;
|
|
@@ -54,6 +54,7 @@ export interface UserDomainRes {
|
|
|
54
54
|
"signUpCodeUseCount"?: number;
|
|
55
55
|
"signedProfilePictureUrl"?: string;
|
|
56
56
|
"socialProfiles"?: Array<models.UserSocialProfileModelRes>;
|
|
57
|
+
"spooferUserId"?: number;
|
|
57
58
|
"subscriptionPlans"?: Array<models.UserSubscriptionPlanModelRes>;
|
|
58
59
|
"userAlias"?: string;
|
|
59
60
|
"userDeletedDateUtc"?: string;
|
|
@@ -28,6 +28,12 @@ export interface ListDashboardCasesResponse {
|
|
|
28
28
|
* @memberof ListDashboardCasesResponse
|
|
29
29
|
*/
|
|
30
30
|
counts?: DashboardCaseCountsDto;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ListDashboardCasesResponse
|
|
35
|
+
*/
|
|
36
|
+
filteredCaseCount?: number;
|
|
31
37
|
/**
|
|
32
38
|
*
|
|
33
39
|
* @type {string}
|
|
@@ -23,6 +23,7 @@ export function ListDashboardCasesResponseFromJSONTyped(json, ignoreDiscriminato
|
|
|
23
23
|
return {
|
|
24
24
|
'cases': !exists(json, 'cases') ? undefined : (json['cases'].map(DashboardCaseModelFromJSON)),
|
|
25
25
|
'counts': !exists(json, 'counts') ? undefined : DashboardCaseCountsDtoFromJSON(json['counts']),
|
|
26
|
+
'filteredCaseCount': !exists(json, 'filteredCaseCount') ? undefined : json['filteredCaseCount'],
|
|
26
27
|
'previousPageToken': !exists(json, 'previousPageToken') ? undefined : json['previousPageToken'],
|
|
27
28
|
'totalCaseCount': !exists(json, 'totalCaseCount') ? undefined : json['totalCaseCount'],
|
|
28
29
|
};
|
|
@@ -37,6 +38,7 @@ export function ListDashboardCasesResponseToJSON(value) {
|
|
|
37
38
|
return {
|
|
38
39
|
'cases': value.cases === undefined ? undefined : (value.cases.map(DashboardCaseModelToJSON)),
|
|
39
40
|
'counts': DashboardCaseCountsDtoToJSON(value.counts),
|
|
41
|
+
'filteredCaseCount': value.filteredCaseCount,
|
|
40
42
|
'previousPageToken': value.previousPageToken,
|
|
41
43
|
'totalCaseCount': value.totalCaseCount,
|
|
42
44
|
};
|
|
@@ -274,6 +274,12 @@ export interface UserDomain {
|
|
|
274
274
|
* @memberof UserDomain
|
|
275
275
|
*/
|
|
276
276
|
socialProfiles?: Array<UserSocialProfileModel>;
|
|
277
|
+
/**
|
|
278
|
+
*
|
|
279
|
+
* @type {number}
|
|
280
|
+
* @memberof UserDomain
|
|
281
|
+
*/
|
|
282
|
+
spooferUserId?: number;
|
|
277
283
|
/**
|
|
278
284
|
*
|
|
279
285
|
* @type {Array<UserSubscriptionPlanModel>}
|
|
@@ -64,6 +64,7 @@ export function UserDomainFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
64
64
|
'signUpCodeUseCount': !exists(json, 'signUpCodeUseCount') ? undefined : json['signUpCodeUseCount'],
|
|
65
65
|
'signedProfilePictureUrl': !exists(json, 'signedProfilePictureUrl') ? undefined : json['signedProfilePictureUrl'],
|
|
66
66
|
'socialProfiles': !exists(json, 'socialProfiles') ? undefined : (json['socialProfiles'].map(UserSocialProfileModelFromJSON)),
|
|
67
|
+
'spooferUserId': !exists(json, 'spooferUserId') ? undefined : json['spooferUserId'],
|
|
67
68
|
'subscriptionPlans': !exists(json, 'subscriptionPlans') ? undefined : (json['subscriptionPlans'].map(UserSubscriptionPlanModelFromJSON)),
|
|
68
69
|
'userAlias': !exists(json, 'userAlias') ? undefined : json['userAlias'],
|
|
69
70
|
'userDeletedDateUtc': !exists(json, 'userDeletedDateUtc') ? undefined : (new Date(json['userDeletedDateUtc'])),
|
|
@@ -122,6 +123,7 @@ export function UserDomainToJSON(value) {
|
|
|
122
123
|
'signUpCodeUseCount': value.signUpCodeUseCount,
|
|
123
124
|
'signedProfilePictureUrl': value.signedProfilePictureUrl,
|
|
124
125
|
'socialProfiles': value.socialProfiles === undefined ? undefined : (value.socialProfiles.map(UserSocialProfileModelToJSON)),
|
|
126
|
+
'spooferUserId': value.spooferUserId,
|
|
125
127
|
'subscriptionPlans': value.subscriptionPlans === undefined ? undefined : (value.subscriptionPlans.map(UserSubscriptionPlanModelToJSON)),
|
|
126
128
|
'userAlias': value.userAlias,
|
|
127
129
|
'userDeletedDateUtc': value.userDeletedDateUtc === undefined ? undefined : (value.userDeletedDateUtc.toISOString()),
|
|
@@ -268,6 +268,12 @@ export interface UserDomainReq {
|
|
|
268
268
|
* @memberof UserDomainReq
|
|
269
269
|
*/
|
|
270
270
|
socialProfiles?: Array<UserSocialProfileModelReq>;
|
|
271
|
+
/**
|
|
272
|
+
*
|
|
273
|
+
* @type {number}
|
|
274
|
+
* @memberof UserDomainReq
|
|
275
|
+
*/
|
|
276
|
+
spooferUserId?: number;
|
|
271
277
|
/**
|
|
272
278
|
*
|
|
273
279
|
* @type {Array<UserSubscriptionPlanModelReq>}
|
|
@@ -63,6 +63,7 @@ export function UserDomainReqFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
63
63
|
'signUpCodeUseCount': !exists(json, 'signUpCodeUseCount') ? undefined : json['signUpCodeUseCount'],
|
|
64
64
|
'signedProfilePictureUrl': !exists(json, 'signedProfilePictureUrl') ? undefined : json['signedProfilePictureUrl'],
|
|
65
65
|
'socialProfiles': !exists(json, 'socialProfiles') ? undefined : (json['socialProfiles'].map(UserSocialProfileModelReqFromJSON)),
|
|
66
|
+
'spooferUserId': !exists(json, 'spooferUserId') ? undefined : json['spooferUserId'],
|
|
66
67
|
'subscriptionPlans': !exists(json, 'subscriptionPlans') ? undefined : (json['subscriptionPlans'].map(UserSubscriptionPlanModelReqFromJSON)),
|
|
67
68
|
'userAlias': !exists(json, 'userAlias') ? undefined : json['userAlias'],
|
|
68
69
|
'userDeletedDateUtc': !exists(json, 'userDeletedDateUtc') ? undefined : (new Date(json['userDeletedDateUtc'])),
|
|
@@ -120,6 +121,7 @@ export function UserDomainReqToJSON(value) {
|
|
|
120
121
|
'signUpCodeUseCount': value.signUpCodeUseCount,
|
|
121
122
|
'signedProfilePictureUrl': value.signedProfilePictureUrl,
|
|
122
123
|
'socialProfiles': value.socialProfiles === undefined ? undefined : (value.socialProfiles.map(UserSocialProfileModelReqToJSON)),
|
|
124
|
+
'spooferUserId': value.spooferUserId,
|
|
123
125
|
'subscriptionPlans': value.subscriptionPlans === undefined ? undefined : (value.subscriptionPlans.map(UserSubscriptionPlanModelReqToJSON)),
|
|
124
126
|
'userAlias': value.userAlias,
|
|
125
127
|
'userDeletedDateUtc': value.userDeletedDateUtc === undefined ? undefined : (value.userDeletedDateUtc.toISOString()),
|
|
@@ -274,6 +274,12 @@ export interface UserDomainRes {
|
|
|
274
274
|
* @memberof UserDomainRes
|
|
275
275
|
*/
|
|
276
276
|
socialProfiles?: Array<UserSocialProfileModelRes>;
|
|
277
|
+
/**
|
|
278
|
+
*
|
|
279
|
+
* @type {number}
|
|
280
|
+
* @memberof UserDomainRes
|
|
281
|
+
*/
|
|
282
|
+
spooferUserId?: number;
|
|
277
283
|
/**
|
|
278
284
|
*
|
|
279
285
|
* @type {Array<UserSubscriptionPlanModelRes>}
|
|
@@ -64,6 +64,7 @@ export function UserDomainResFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
64
64
|
'signUpCodeUseCount': !exists(json, 'signUpCodeUseCount') ? undefined : json['signUpCodeUseCount'],
|
|
65
65
|
'signedProfilePictureUrl': !exists(json, 'signedProfilePictureUrl') ? undefined : json['signedProfilePictureUrl'],
|
|
66
66
|
'socialProfiles': !exists(json, 'socialProfiles') ? undefined : (json['socialProfiles'].map(UserSocialProfileModelResFromJSON)),
|
|
67
|
+
'spooferUserId': !exists(json, 'spooferUserId') ? undefined : json['spooferUserId'],
|
|
67
68
|
'subscriptionPlans': !exists(json, 'subscriptionPlans') ? undefined : (json['subscriptionPlans'].map(UserSubscriptionPlanModelResFromJSON)),
|
|
68
69
|
'userAlias': !exists(json, 'userAlias') ? undefined : json['userAlias'],
|
|
69
70
|
'userDeletedDateUtc': !exists(json, 'userDeletedDateUtc') ? undefined : (new Date(json['userDeletedDateUtc'])),
|
|
@@ -122,6 +123,7 @@ export function UserDomainResToJSON(value) {
|
|
|
122
123
|
'signUpCodeUseCount': value.signUpCodeUseCount,
|
|
123
124
|
'signedProfilePictureUrl': value.signedProfilePictureUrl,
|
|
124
125
|
'socialProfiles': value.socialProfiles === undefined ? undefined : (value.socialProfiles.map(UserSocialProfileModelResToJSON)),
|
|
126
|
+
'spooferUserId': value.spooferUserId,
|
|
125
127
|
'subscriptionPlans': value.subscriptionPlans === undefined ? undefined : (value.subscriptionPlans.map(UserSubscriptionPlanModelResToJSON)),
|
|
126
128
|
'userAlias': value.userAlias,
|
|
127
129
|
'userDeletedDateUtc': value.userDeletedDateUtc === undefined ? undefined : (value.userDeletedDateUtc.toISOString()),
|
|
@@ -12725,6 +12725,8 @@ export interface components {
|
|
|
12725
12725
|
ListDashboardCasesResponse: {
|
|
12726
12726
|
cases?: components["schemas"]["DashboardCaseModel"][];
|
|
12727
12727
|
counts?: components["schemas"]["DashboardCaseCountsDto"];
|
|
12728
|
+
/** Format: int32 */
|
|
12729
|
+
filteredCaseCount?: number;
|
|
12728
12730
|
previousPageToken?: string;
|
|
12729
12731
|
/** Format: int32 */
|
|
12730
12732
|
totalCaseCount?: number;
|
|
@@ -15821,6 +15823,8 @@ export interface components {
|
|
|
15821
15823
|
signUpCodeUseCount?: number;
|
|
15822
15824
|
signedProfilePictureUrl?: string;
|
|
15823
15825
|
socialProfiles?: components["schemas"]["UserSocialProfileModel"][];
|
|
15826
|
+
/** Format: int64 */
|
|
15827
|
+
spooferUserId?: number;
|
|
15824
15828
|
subscriptionPlans?: components["schemas"]["UserSubscriptionPlanModel"][];
|
|
15825
15829
|
userAlias?: string;
|
|
15826
15830
|
/** Format: date-time */
|
|
@@ -15886,6 +15890,8 @@ export interface components {
|
|
|
15886
15890
|
signUpCodeUseCount?: number;
|
|
15887
15891
|
signedProfilePictureUrl?: string;
|
|
15888
15892
|
socialProfiles?: components["schemas"]["UserSocialProfileModelReq"][];
|
|
15893
|
+
/** Format: int64 */
|
|
15894
|
+
spooferUserId?: number;
|
|
15889
15895
|
subscriptionPlans?: components["schemas"]["UserSubscriptionPlanModelReq"][];
|
|
15890
15896
|
userAlias?: string;
|
|
15891
15897
|
/** Format: date-time */
|
|
@@ -15952,6 +15958,8 @@ export interface components {
|
|
|
15952
15958
|
signUpCodeUseCount?: number;
|
|
15953
15959
|
signedProfilePictureUrl?: string;
|
|
15954
15960
|
socialProfiles?: components["schemas"]["UserSocialProfileModelRes"][];
|
|
15961
|
+
/** Format: int64 */
|
|
15962
|
+
spooferUserId?: number;
|
|
15955
15963
|
subscriptionPlans?: components["schemas"]["UserSubscriptionPlanModelRes"][];
|
|
15956
15964
|
userAlias?: string;
|
|
15957
15965
|
/** Format: date-time */
|