@otr-app/shared-backend-generated-client 2.4.43 → 2.4.44
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/activityFeedModel.ts +1 -0
- package/dist/typescript/model/ActivityFeedModel.d.ts +1 -0
- package/dist/typescript/model/ActivityFeedModel.ts +1 -0
- package/dist/typescript-fetch/models/ActivityFeedModel.d.ts +6 -0
- package/dist/typescript-fetch/models/ActivityFeedModel.js +2 -0
- package/dist/typescript-fetch/models/ActivityFeedModel.ts +8 -0
- package/package.json +1 -1
|
@@ -21,6 +21,7 @@ export interface ActivityFeedModel {
|
|
|
21
21
|
privacyMode?: ActivityFeedModel.PrivacyModeEnum;
|
|
22
22
|
profilePicUrl?: string;
|
|
23
23
|
regionCode?: string;
|
|
24
|
+
violationDescription?: string;
|
|
24
25
|
}
|
|
25
26
|
export namespace ActivityFeedModel {
|
|
26
27
|
export type ActivityTypeEnum = 'PURCHASE' | 'REFERRAL' | 'REFUND' | 'RESOLUTION' | 'TICKET_REVIEW';
|
|
@@ -69,6 +69,12 @@ export interface ActivityFeedModel {
|
|
|
69
69
|
* @memberof ActivityFeedModel
|
|
70
70
|
*/
|
|
71
71
|
regionCode?: string;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof ActivityFeedModel
|
|
76
|
+
*/
|
|
77
|
+
violationDescription?: string;
|
|
72
78
|
}
|
|
73
79
|
export declare function ActivityFeedModelFromJSON(json: any): ActivityFeedModel;
|
|
74
80
|
export declare function ActivityFeedModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActivityFeedModel;
|
|
@@ -29,6 +29,7 @@ export function ActivityFeedModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
29
29
|
'privacyMode': !exists(json, 'privacyMode') ? undefined : json['privacyMode'],
|
|
30
30
|
'profilePicUrl': !exists(json, 'profilePicUrl') ? undefined : json['profilePicUrl'],
|
|
31
31
|
'regionCode': !exists(json, 'regionCode') ? undefined : json['regionCode'],
|
|
32
|
+
'violationDescription': !exists(json, 'violationDescription') ? undefined : json['violationDescription'],
|
|
32
33
|
};
|
|
33
34
|
}
|
|
34
35
|
export function ActivityFeedModelToJSON(value) {
|
|
@@ -48,6 +49,7 @@ export function ActivityFeedModelToJSON(value) {
|
|
|
48
49
|
'privacyMode': value.privacyMode,
|
|
49
50
|
'profilePicUrl': value.profilePicUrl,
|
|
50
51
|
'regionCode': value.regionCode,
|
|
52
|
+
'violationDescription': value.violationDescription,
|
|
51
53
|
};
|
|
52
54
|
}
|
|
53
55
|
/**
|
|
@@ -73,6 +73,12 @@ export interface ActivityFeedModel {
|
|
|
73
73
|
* @memberof ActivityFeedModel
|
|
74
74
|
*/
|
|
75
75
|
regionCode?: string;
|
|
76
|
+
/**
|
|
77
|
+
*
|
|
78
|
+
* @type {string}
|
|
79
|
+
* @memberof ActivityFeedModel
|
|
80
|
+
*/
|
|
81
|
+
violationDescription?: string;
|
|
76
82
|
}
|
|
77
83
|
|
|
78
84
|
export function ActivityFeedModelFromJSON(json: any): ActivityFeedModel {
|
|
@@ -94,6 +100,7 @@ export function ActivityFeedModelFromJSONTyped(json: any, ignoreDiscriminator: b
|
|
|
94
100
|
'privacyMode': !exists(json, 'privacyMode') ? undefined : json['privacyMode'],
|
|
95
101
|
'profilePicUrl': !exists(json, 'profilePicUrl') ? undefined : json['profilePicUrl'],
|
|
96
102
|
'regionCode': !exists(json, 'regionCode') ? undefined : json['regionCode'],
|
|
103
|
+
'violationDescription': !exists(json, 'violationDescription') ? undefined : json['violationDescription'],
|
|
97
104
|
};
|
|
98
105
|
}
|
|
99
106
|
|
|
@@ -115,6 +122,7 @@ export function ActivityFeedModelToJSON(value?: ActivityFeedModel | null): any {
|
|
|
115
122
|
'privacyMode': value.privacyMode,
|
|
116
123
|
'profilePicUrl': value.profilePicUrl,
|
|
117
124
|
'regionCode': value.regionCode,
|
|
125
|
+
'violationDescription': value.violationDescription,
|
|
118
126
|
};
|
|
119
127
|
}
|
|
120
128
|
|