@otr-app/shared-backend-generated-client 2.5.59 → 2.5.61
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 +3 -0
- package/dist/angular/api/lawfirmController.service.ts +56 -0
- package/dist/angular/model/accountManagerModel.ts +19 -0
- package/dist/angular/model/createBillingSubscriptionRequest.ts +11 -0
- package/dist/angular/model/getAccountManagerModel.ts +19 -0
- package/dist/angular/model/getAccountManagersResponse.ts +18 -0
- package/dist/angular/model/getLawfirmModel.ts +2 -0
- package/dist/angular/model/models.ts +3 -0
- package/dist/otrBackendService.js +26 -0
- package/dist/otrBackendService.min.js +4 -4
- package/dist/typescript/api/LawfirmControllerApi.d.ts +5 -0
- package/dist/typescript/api/LawfirmControllerApi.js +19 -0
- package/dist/typescript/model/AccountManagerModel.d.ts +16 -0
- package/dist/typescript/model/AccountManagerModel.js +12 -0
- package/dist/typescript/model/CreateBillingSubscriptionRequest.d.ts +9 -0
- package/dist/typescript/model/CreateBillingSubscriptionRequest.js +9 -1
- package/dist/typescript/model/GetAccountManagerModel.d.ts +16 -0
- package/dist/typescript/model/GetAccountManagerModel.js +12 -0
- package/dist/typescript/model/GetAccountManagersResponse.d.ts +15 -0
- package/dist/typescript/model/GetAccountManagersResponse.js +12 -0
- package/dist/typescript/model/GetLawfirmModel.d.ts +1 -0
- package/dist/typescript/model/models.d.ts +3 -0
- package/dist/typescript/model/models.js +3 -0
- package/dist/typescript-fetch/apis/LawfirmControllerApi.d.ts +9 -1
- package/dist/typescript-fetch/apis/LawfirmControllerApi.js +26 -1
- package/dist/typescript-fetch/models/AccountManagerModel.d.ts +39 -0
- package/dist/typescript-fetch/models/AccountManagerModel.js +40 -0
- package/dist/typescript-fetch/models/CreateBillingSubscriptionRequest.d.ts +21 -0
- package/dist/typescript-fetch/models/CreateBillingSubscriptionRequest.js +14 -0
- package/dist/typescript-fetch/models/GetAccountManagerModel.d.ts +39 -0
- package/dist/typescript-fetch/models/GetAccountManagerModel.js +40 -0
- package/dist/typescript-fetch/models/GetAccountManagersResponse.d.ts +28 -0
- package/dist/typescript-fetch/models/GetAccountManagersResponse.js +37 -0
- package/dist/typescript-fetch/models/GetLawfirmModel.d.ts +7 -1
- package/dist/typescript-fetch/models/GetLawfirmModel.js +3 -1
- package/dist/typescript-fetch/models/index.d.ts +3 -0
- package/dist/typescript-fetch/models/index.js +3 -0
- package/dist/typescript-open-api/otr-backend.d.ts +85 -0
- package/dist/typescript-open-api/otr-backend.js +6 -0
- package/package.json +1 -1
|
@@ -3384,6 +3384,23 @@ export interface paths {
|
|
|
3384
3384
|
patch?: never;
|
|
3385
3385
|
trace?: never;
|
|
3386
3386
|
};
|
|
3387
|
+
"/api/v1/lawfirms/account-managers": {
|
|
3388
|
+
parameters: {
|
|
3389
|
+
query?: never;
|
|
3390
|
+
header?: never;
|
|
3391
|
+
path?: never;
|
|
3392
|
+
cookie?: never;
|
|
3393
|
+
};
|
|
3394
|
+
/** getAccountManagers */
|
|
3395
|
+
get: operations["getAccountManagersUsingGET"];
|
|
3396
|
+
put?: never;
|
|
3397
|
+
post?: never;
|
|
3398
|
+
delete?: never;
|
|
3399
|
+
options?: never;
|
|
3400
|
+
head?: never;
|
|
3401
|
+
patch?: never;
|
|
3402
|
+
trace?: never;
|
|
3403
|
+
};
|
|
3387
3404
|
"/api/v1/lawfirms/bulk-upload": {
|
|
3388
3405
|
parameters: {
|
|
3389
3406
|
query?: never;
|
|
@@ -7252,6 +7269,13 @@ export interface components {
|
|
|
7252
7269
|
/** Format: int64 */
|
|
7253
7270
|
violationId?: number;
|
|
7254
7271
|
};
|
|
7272
|
+
/** AccountManagerModel */
|
|
7273
|
+
AccountManagerModel: {
|
|
7274
|
+
firstName?: string;
|
|
7275
|
+
lastName?: string;
|
|
7276
|
+
/** Format: int64 */
|
|
7277
|
+
userId?: number;
|
|
7278
|
+
};
|
|
7255
7279
|
/** Action */
|
|
7256
7280
|
Action: {
|
|
7257
7281
|
actionDate?: string;
|
|
@@ -9519,7 +9543,10 @@ export interface components {
|
|
|
9519
9543
|
CreateBillingSubscriptionRequest: {
|
|
9520
9544
|
accountIdempotencyKey?: string;
|
|
9521
9545
|
cardId?: string;
|
|
9546
|
+
caseId?: string;
|
|
9522
9547
|
guardian?: components["schemas"]["SubscriptionGuardianModel"];
|
|
9548
|
+
/** @enum {string} */
|
|
9549
|
+
initialSubscriptionFlow?: CreateBillingSubscriptionRequestInitialSubscriptionFlow;
|
|
9523
9550
|
priceIds?: string[];
|
|
9524
9551
|
productId?: string;
|
|
9525
9552
|
/** Format: date */
|
|
@@ -10596,6 +10623,17 @@ export interface components {
|
|
|
10596
10623
|
violationCount?: number;
|
|
10597
10624
|
violations?: components["schemas"]["ViolationInputRequest"][];
|
|
10598
10625
|
};
|
|
10626
|
+
/** GetAccountManagerModel */
|
|
10627
|
+
GetAccountManagerModel: {
|
|
10628
|
+
firstName?: string;
|
|
10629
|
+
lastName?: string;
|
|
10630
|
+
/** Format: int64 */
|
|
10631
|
+
userId?: number;
|
|
10632
|
+
};
|
|
10633
|
+
/** GetAccountManagersResponse */
|
|
10634
|
+
GetAccountManagersResponse: {
|
|
10635
|
+
accountManagers?: components["schemas"]["GetAccountManagerModel"][];
|
|
10636
|
+
};
|
|
10599
10637
|
/** GetActivityFeedResponse */
|
|
10600
10638
|
GetActivityFeedResponse: {
|
|
10601
10639
|
activity?: components["schemas"]["ActivityFeedModel"][];
|
|
@@ -11145,6 +11183,7 @@ export interface components {
|
|
|
11145
11183
|
/** GetLawfirmModel */
|
|
11146
11184
|
GetLawfirmModel: {
|
|
11147
11185
|
aboutUsBlurb?: string;
|
|
11186
|
+
accountManager?: components["schemas"]["AccountManagerModel"];
|
|
11148
11187
|
address?: components["schemas"]["AddressDomain"];
|
|
11149
11188
|
/** Format: int32 */
|
|
11150
11189
|
caseAssignmentPriority?: number;
|
|
@@ -27618,6 +27657,47 @@ export interface operations {
|
|
|
27618
27657
|
};
|
|
27619
27658
|
};
|
|
27620
27659
|
};
|
|
27660
|
+
getAccountManagersUsingGET: {
|
|
27661
|
+
parameters: {
|
|
27662
|
+
query?: never;
|
|
27663
|
+
header?: never;
|
|
27664
|
+
path?: never;
|
|
27665
|
+
cookie?: never;
|
|
27666
|
+
};
|
|
27667
|
+
requestBody?: never;
|
|
27668
|
+
responses: {
|
|
27669
|
+
/** @description OK */
|
|
27670
|
+
200: {
|
|
27671
|
+
headers: {
|
|
27672
|
+
[name: string]: unknown;
|
|
27673
|
+
};
|
|
27674
|
+
content: {
|
|
27675
|
+
"*/*": components["schemas"]["GetAccountManagersResponse"];
|
|
27676
|
+
};
|
|
27677
|
+
};
|
|
27678
|
+
/** @description Unauthorized */
|
|
27679
|
+
401: {
|
|
27680
|
+
headers: {
|
|
27681
|
+
[name: string]: unknown;
|
|
27682
|
+
};
|
|
27683
|
+
content?: never;
|
|
27684
|
+
};
|
|
27685
|
+
/** @description Forbidden */
|
|
27686
|
+
403: {
|
|
27687
|
+
headers: {
|
|
27688
|
+
[name: string]: unknown;
|
|
27689
|
+
};
|
|
27690
|
+
content?: never;
|
|
27691
|
+
};
|
|
27692
|
+
/** @description Not Found */
|
|
27693
|
+
404: {
|
|
27694
|
+
headers: {
|
|
27695
|
+
[name: string]: unknown;
|
|
27696
|
+
};
|
|
27697
|
+
content?: never;
|
|
27698
|
+
};
|
|
27699
|
+
};
|
|
27700
|
+
};
|
|
27621
27701
|
uploadLawfirmsUsingPOST: {
|
|
27622
27702
|
parameters: {
|
|
27623
27703
|
query?: never;
|
|
@@ -40844,6 +40924,11 @@ export declare enum CoachingCardUsersModelPermissionType {
|
|
|
40844
40924
|
PARTICIPANT = "PARTICIPANT",
|
|
40845
40925
|
RECIPIENT = "RECIPIENT"
|
|
40846
40926
|
}
|
|
40927
|
+
export declare enum CreateBillingSubscriptionRequestInitialSubscriptionFlow {
|
|
40928
|
+
BOOKING_UPSELL = "BOOKING_UPSELL",
|
|
40929
|
+
FASTLANE_TEEN_FLOW = "FASTLANE_TEEN_FLOW",
|
|
40930
|
+
HOME_PAGE_BANNER = "HOME_PAGE_BANNER"
|
|
40931
|
+
}
|
|
40847
40932
|
export declare enum CreateLawfirmModelLawfirmPaymentModel {
|
|
40848
40933
|
DESTINATION_ACCOUNT = "DESTINATION_ACCOUNT",
|
|
40849
40934
|
SEPARATE_CHARGE = "SEPARATE_CHARGE",
|
|
@@ -778,6 +778,12 @@ export var CoachingCardUsersModelPermissionType;
|
|
|
778
778
|
CoachingCardUsersModelPermissionType["PARTICIPANT"] = "PARTICIPANT";
|
|
779
779
|
CoachingCardUsersModelPermissionType["RECIPIENT"] = "RECIPIENT";
|
|
780
780
|
})(CoachingCardUsersModelPermissionType || (CoachingCardUsersModelPermissionType = {}));
|
|
781
|
+
export var CreateBillingSubscriptionRequestInitialSubscriptionFlow;
|
|
782
|
+
(function (CreateBillingSubscriptionRequestInitialSubscriptionFlow) {
|
|
783
|
+
CreateBillingSubscriptionRequestInitialSubscriptionFlow["BOOKING_UPSELL"] = "BOOKING_UPSELL";
|
|
784
|
+
CreateBillingSubscriptionRequestInitialSubscriptionFlow["FASTLANE_TEEN_FLOW"] = "FASTLANE_TEEN_FLOW";
|
|
785
|
+
CreateBillingSubscriptionRequestInitialSubscriptionFlow["HOME_PAGE_BANNER"] = "HOME_PAGE_BANNER";
|
|
786
|
+
})(CreateBillingSubscriptionRequestInitialSubscriptionFlow || (CreateBillingSubscriptionRequestInitialSubscriptionFlow = {}));
|
|
781
787
|
export var CreateLawfirmModelLawfirmPaymentModel;
|
|
782
788
|
(function (CreateLawfirmModelLawfirmPaymentModel) {
|
|
783
789
|
CreateLawfirmModelLawfirmPaymentModel["DESTINATION_ACCOUNT"] = "DESTINATION_ACCOUNT";
|