@otr-app/shared-backend-generated-client 2.5.170 → 2.5.171

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.
@@ -19,6 +19,7 @@ export interface LawfirmStorefrontModel {
19
19
  lawfirmId?: number;
20
20
  lawfirmName?: string;
21
21
  lawfirmState?: LawfirmStorefrontModel.LawfirmStateEnum;
22
+ lawfirmStatusCategory?: LawfirmStorefrontModel.LawfirmStatusCategoryEnum;
22
23
  profilePictureUrl?: string;
23
24
  resolvedCaseCount?: number;
24
25
  reviewCount?: number;
@@ -54,6 +55,15 @@ export namespace LawfirmStorefrontModel {
54
55
  TerminatedPoorService: 'TERMINATED_POOR_SERVICE' as LawfirmStateEnum,
55
56
  TerminatedPoorSuccess: 'TERMINATED_POOR_SUCCESS' as LawfirmStateEnum
56
57
  };
58
+ export type LawfirmStatusCategoryEnum = 'ACTIVE' | 'INACTIVE' | 'LEAD' | 'NOT_INTERESTED' | 'REJECTED' | 'TERMINATED';
59
+ export const LawfirmStatusCategoryEnum = {
60
+ Active: 'ACTIVE' as LawfirmStatusCategoryEnum,
61
+ Inactive: 'INACTIVE' as LawfirmStatusCategoryEnum,
62
+ Lead: 'LEAD' as LawfirmStatusCategoryEnum,
63
+ NotInterested: 'NOT_INTERESTED' as LawfirmStatusCategoryEnum,
64
+ Rejected: 'REJECTED' as LawfirmStatusCategoryEnum,
65
+ Terminated: 'TERMINATED' as LawfirmStatusCategoryEnum
66
+ };
57
67
  }
58
68
 
59
69
 
@@ -17,6 +17,7 @@ export interface LawfirmStorefrontModel {
17
17
  "lawfirmId"?: number;
18
18
  "lawfirmName"?: string;
19
19
  "lawfirmState"?: LawfirmStorefrontModel.LawfirmStateEnum;
20
+ "lawfirmStatusCategory"?: LawfirmStorefrontModel.LawfirmStatusCategoryEnum;
20
21
  "profilePictureUrl"?: string;
21
22
  "resolvedCaseCount"?: number;
22
23
  "reviewCount"?: number;
@@ -51,4 +52,12 @@ export declare namespace LawfirmStorefrontModel {
51
52
  TERMINATEDPOORSERVICE,
52
53
  TERMINATEDPOORSUCCESS
53
54
  }
55
+ enum LawfirmStatusCategoryEnum {
56
+ ACTIVE,
57
+ INACTIVE,
58
+ LEAD,
59
+ NOTINTERESTED,
60
+ REJECTED,
61
+ TERMINATED
62
+ }
54
63
  }
@@ -35,4 +35,13 @@ export var LawfirmStorefrontModel;
35
35
  LawfirmStateEnum[LawfirmStateEnum["TERMINATEDPOORSERVICE"] = 'TERMINATED_POOR_SERVICE'] = "TERMINATEDPOORSERVICE";
36
36
  LawfirmStateEnum[LawfirmStateEnum["TERMINATEDPOORSUCCESS"] = 'TERMINATED_POOR_SUCCESS'] = "TERMINATEDPOORSUCCESS";
37
37
  })(LawfirmStateEnum = LawfirmStorefrontModel.LawfirmStateEnum || (LawfirmStorefrontModel.LawfirmStateEnum = {}));
38
+ let LawfirmStatusCategoryEnum;
39
+ (function (LawfirmStatusCategoryEnum) {
40
+ LawfirmStatusCategoryEnum[LawfirmStatusCategoryEnum["ACTIVE"] = 'ACTIVE'] = "ACTIVE";
41
+ LawfirmStatusCategoryEnum[LawfirmStatusCategoryEnum["INACTIVE"] = 'INACTIVE'] = "INACTIVE";
42
+ LawfirmStatusCategoryEnum[LawfirmStatusCategoryEnum["LEAD"] = 'LEAD'] = "LEAD";
43
+ LawfirmStatusCategoryEnum[LawfirmStatusCategoryEnum["NOTINTERESTED"] = 'NOT_INTERESTED'] = "NOTINTERESTED";
44
+ LawfirmStatusCategoryEnum[LawfirmStatusCategoryEnum["REJECTED"] = 'REJECTED'] = "REJECTED";
45
+ LawfirmStatusCategoryEnum[LawfirmStatusCategoryEnum["TERMINATED"] = 'TERMINATED'] = "TERMINATED";
46
+ })(LawfirmStatusCategoryEnum = LawfirmStorefrontModel.LawfirmStatusCategoryEnum || (LawfirmStorefrontModel.LawfirmStatusCategoryEnum = {}));
38
47
  })(LawfirmStorefrontModel || (LawfirmStorefrontModel = {}));
@@ -57,6 +57,12 @@ export interface LawfirmStorefrontModel {
57
57
  * @memberof LawfirmStorefrontModel
58
58
  */
59
59
  lawfirmState?: LawfirmStorefrontModelLawfirmStateEnum;
60
+ /**
61
+ *
62
+ * @type {string}
63
+ * @memberof LawfirmStorefrontModel
64
+ */
65
+ lawfirmStatusCategory?: LawfirmStorefrontModelLawfirmStatusCategoryEnum;
60
66
  /**
61
67
  *
62
68
  * @type {string}
@@ -142,3 +148,15 @@ export declare enum LawfirmStorefrontModelLawfirmStateEnum {
142
148
  TERMINATEDPOORSERVICE = "TERMINATED_POOR_SERVICE",
143
149
  TERMINATEDPOORSUCCESS = "TERMINATED_POOR_SUCCESS"
144
150
  }
151
+ /**
152
+ * @export
153
+ * @enum {string}
154
+ */
155
+ export declare enum LawfirmStorefrontModelLawfirmStatusCategoryEnum {
156
+ ACTIVE = "ACTIVE",
157
+ INACTIVE = "INACTIVE",
158
+ LEAD = "LEAD",
159
+ NOTINTERESTED = "NOT_INTERESTED",
160
+ REJECTED = "REJECTED",
161
+ TERMINATED = "TERMINATED"
162
+ }
@@ -27,6 +27,7 @@ export function LawfirmStorefrontModelFromJSONTyped(json, ignoreDiscriminator) {
27
27
  'lawfirmId': !exists(json, 'lawfirmId') ? undefined : json['lawfirmId'],
28
28
  'lawfirmName': !exists(json, 'lawfirmName') ? undefined : json['lawfirmName'],
29
29
  'lawfirmState': !exists(json, 'lawfirmState') ? undefined : json['lawfirmState'],
30
+ 'lawfirmStatusCategory': !exists(json, 'lawfirmStatusCategory') ? undefined : json['lawfirmStatusCategory'],
30
31
  'profilePictureUrl': !exists(json, 'profilePictureUrl') ? undefined : json['profilePictureUrl'],
31
32
  'resolvedCaseCount': !exists(json, 'resolvedCaseCount') ? undefined : json['resolvedCaseCount'],
32
33
  'reviewCount': !exists(json, 'reviewCount') ? undefined : json['reviewCount'],
@@ -53,6 +54,7 @@ export function LawfirmStorefrontModelToJSON(value) {
53
54
  'lawfirmId': value.lawfirmId,
54
55
  'lawfirmName': value.lawfirmName,
55
56
  'lawfirmState': value.lawfirmState,
57
+ 'lawfirmStatusCategory': value.lawfirmStatusCategory,
56
58
  'profilePictureUrl': value.profilePictureUrl,
57
59
  'resolvedCaseCount': value.resolvedCaseCount,
58
60
  'reviewCount': value.reviewCount,
@@ -92,3 +94,16 @@ export var LawfirmStorefrontModelLawfirmStateEnum;
92
94
  LawfirmStorefrontModelLawfirmStateEnum["TERMINATEDPOORSERVICE"] = "TERMINATED_POOR_SERVICE";
93
95
  LawfirmStorefrontModelLawfirmStateEnum["TERMINATEDPOORSUCCESS"] = "TERMINATED_POOR_SUCCESS";
94
96
  })(LawfirmStorefrontModelLawfirmStateEnum || (LawfirmStorefrontModelLawfirmStateEnum = {}));
97
+ /**
98
+ * @export
99
+ * @enum {string}
100
+ */
101
+ export var LawfirmStorefrontModelLawfirmStatusCategoryEnum;
102
+ (function (LawfirmStorefrontModelLawfirmStatusCategoryEnum) {
103
+ LawfirmStorefrontModelLawfirmStatusCategoryEnum["ACTIVE"] = "ACTIVE";
104
+ LawfirmStorefrontModelLawfirmStatusCategoryEnum["INACTIVE"] = "INACTIVE";
105
+ LawfirmStorefrontModelLawfirmStatusCategoryEnum["LEAD"] = "LEAD";
106
+ LawfirmStorefrontModelLawfirmStatusCategoryEnum["NOTINTERESTED"] = "NOT_INTERESTED";
107
+ LawfirmStorefrontModelLawfirmStatusCategoryEnum["REJECTED"] = "REJECTED";
108
+ LawfirmStorefrontModelLawfirmStatusCategoryEnum["TERMINATED"] = "TERMINATED";
109
+ })(LawfirmStorefrontModelLawfirmStatusCategoryEnum || (LawfirmStorefrontModelLawfirmStatusCategoryEnum = {}));
@@ -12914,6 +12914,8 @@ export interface components {
12914
12914
  lawfirmName?: string;
12915
12915
  /** @enum {string} */
12916
12916
  lawfirmState?: PathsApiV1LawfirmsGetParametersQueryStatuses;
12917
+ /** @enum {string} */
12918
+ lawfirmStatusCategory?: PathsApiV1LawfirmsGetParametersQueryStatusCategories;
12917
12919
  profilePictureUrl?: string;
12918
12920
  /** Format: int32 */
12919
12921
  resolvedCaseCount?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.170",
3
+ "version": "2.5.171",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"