@otr-app/shared-backend-generated-client 2.3.201 → 2.3.202
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/lawfirmTransactionsController.service.ts +84 -0
- package/dist/angular/model/balanceTransactionModel.ts +23 -0
- package/dist/angular/model/lawfirmBankPayoutModel.ts +63 -0
- package/dist/angular/model/listLawfirmBankPayoutsResponse.ts +18 -0
- package/dist/angular/model/models.ts +3 -0
- package/dist/otrBackendService.js +62 -0
- package/dist/otrBackendService.min.js +4 -4
- package/dist/typescript/api/LawfirmTransactionsControllerApi.d.ts +9 -0
- package/dist/typescript/api/LawfirmTransactionsControllerApi.js +45 -0
- package/dist/typescript/model/BalanceTransactionModel.d.ts +20 -0
- package/dist/typescript/model/BalanceTransactionModel.js +13 -0
- package/dist/typescript/model/LawfirmBankPayoutModel.d.ts +55 -0
- package/dist/typescript/model/LawfirmBankPayoutModel.js +41 -0
- package/dist/typescript/model/ListLawfirmBankPayoutsResponse.d.ts +15 -0
- package/dist/typescript/model/ListLawfirmBankPayoutsResponse.js +13 -0
- package/dist/typescript/model/models.d.ts +3 -0
- package/dist/typescript/model/models.js +3 -0
- package/package.json +1 -1
|
@@ -81,6 +81,15 @@ export declare class LawfirmTransactionsControllerApi {
|
|
|
81
81
|
* @param caseId caseId
|
|
82
82
|
*/
|
|
83
83
|
getLawfirmTransactionsForCaseUsingGET(caseId: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetLawfirmTransactionsForCaseResponse>;
|
|
84
|
+
/**
|
|
85
|
+
*
|
|
86
|
+
* @summary listLawfirmBankPayouts
|
|
87
|
+
* @param includeTransactions includeTransactions
|
|
88
|
+
* @param index index
|
|
89
|
+
* @param lawfirmId lawfirmId
|
|
90
|
+
* @param size size
|
|
91
|
+
*/
|
|
92
|
+
listLawfirmBankPayoutsUsingGET(includeTransactions: boolean, index: number, lawfirmId: number, size?: number, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListLawfirmBankPayoutsResponse>;
|
|
84
93
|
/**
|
|
85
94
|
*
|
|
86
95
|
* @summary refundLawfirmFee
|
|
@@ -287,6 +287,51 @@ var LawfirmTransactionsControllerApi = /** @class */ (function () {
|
|
|
287
287
|
}
|
|
288
288
|
return this.$http(httpRequestParams);
|
|
289
289
|
};
|
|
290
|
+
/**
|
|
291
|
+
*
|
|
292
|
+
* @summary listLawfirmBankPayouts
|
|
293
|
+
* @param includeTransactions includeTransactions
|
|
294
|
+
* @param index index
|
|
295
|
+
* @param lawfirmId lawfirmId
|
|
296
|
+
* @param size size
|
|
297
|
+
*/
|
|
298
|
+
LawfirmTransactionsControllerApi.prototype.listLawfirmBankPayoutsUsingGET = function (includeTransactions, index, lawfirmId, size, extraHttpRequestParams) {
|
|
299
|
+
var localVarPath = this.basePath + '/api/v1/lawfirms/{lawfirmId}/bank-payouts'
|
|
300
|
+
.replace('{' + 'lawfirmId' + '}', encodeURIComponent(String(lawfirmId)));
|
|
301
|
+
var queryParameters = {};
|
|
302
|
+
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
303
|
+
// verify required parameter 'includeTransactions' is not null or undefined
|
|
304
|
+
if (includeTransactions === null || includeTransactions === undefined) {
|
|
305
|
+
throw new Error('Required parameter includeTransactions was null or undefined when calling listLawfirmBankPayoutsUsingGET.');
|
|
306
|
+
}
|
|
307
|
+
// verify required parameter 'index' is not null or undefined
|
|
308
|
+
if (index === null || index === undefined) {
|
|
309
|
+
throw new Error('Required parameter index was null or undefined when calling listLawfirmBankPayoutsUsingGET.');
|
|
310
|
+
}
|
|
311
|
+
// verify required parameter 'lawfirmId' is not null or undefined
|
|
312
|
+
if (lawfirmId === null || lawfirmId === undefined) {
|
|
313
|
+
throw new Error('Required parameter lawfirmId was null or undefined when calling listLawfirmBankPayoutsUsingGET.');
|
|
314
|
+
}
|
|
315
|
+
if (includeTransactions !== undefined) {
|
|
316
|
+
queryParameters['includeTransactions '] = includeTransactions;
|
|
317
|
+
}
|
|
318
|
+
if (index !== undefined) {
|
|
319
|
+
queryParameters['index'] = index;
|
|
320
|
+
}
|
|
321
|
+
if (size !== undefined) {
|
|
322
|
+
queryParameters['size'] = size;
|
|
323
|
+
}
|
|
324
|
+
var httpRequestParams = {
|
|
325
|
+
method: 'GET',
|
|
326
|
+
url: localVarPath,
|
|
327
|
+
params: queryParameters,
|
|
328
|
+
headers: headerParams
|
|
329
|
+
};
|
|
330
|
+
if (extraHttpRequestParams) {
|
|
331
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
332
|
+
}
|
|
333
|
+
return this.$http(httpRequestParams);
|
|
334
|
+
};
|
|
290
335
|
/**
|
|
291
336
|
*
|
|
292
337
|
* @summary refundLawfirmFee
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface BalanceTransactionModel {
|
|
13
|
+
"amountInCents"?: number;
|
|
14
|
+
"availableAtDateUtc"?: string;
|
|
15
|
+
"creationDateUtc"?: string;
|
|
16
|
+
"id"?: string;
|
|
17
|
+
"stripePayoutId"?: string;
|
|
18
|
+
"transactionId"?: string;
|
|
19
|
+
"type"?: string;
|
|
20
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import * as models from './models';
|
|
13
|
+
export interface LawfirmBankPayoutModel {
|
|
14
|
+
"amountInCents"?: number;
|
|
15
|
+
"arrivalDateUtc"?: string;
|
|
16
|
+
"automatic"?: boolean;
|
|
17
|
+
"balanceTransactionId"?: string;
|
|
18
|
+
"balanceTransactions"?: Array<models.BalanceTransactionModel>;
|
|
19
|
+
"currency"?: string;
|
|
20
|
+
"destinationId"?: string;
|
|
21
|
+
"failureAttributes"?: string;
|
|
22
|
+
"id"?: number;
|
|
23
|
+
"lawfirmId"?: number;
|
|
24
|
+
"method"?: LawfirmBankPayoutModel.MethodEnum;
|
|
25
|
+
"payoutCreationDateUtc"?: string;
|
|
26
|
+
"reconciliationStatus"?: LawfirmBankPayoutModel.ReconciliationStatusEnum;
|
|
27
|
+
"sourceAccountId"?: string;
|
|
28
|
+
"statementDescriptor"?: string;
|
|
29
|
+
"status"?: LawfirmBankPayoutModel.StatusEnum;
|
|
30
|
+
"stripePayoutId"?: string;
|
|
31
|
+
"stripePlatformAccountId"?: string;
|
|
32
|
+
"type"?: LawfirmBankPayoutModel.TypeEnum;
|
|
33
|
+
}
|
|
34
|
+
export declare namespace LawfirmBankPayoutModel {
|
|
35
|
+
enum MethodEnum {
|
|
36
|
+
INSTANT,
|
|
37
|
+
STANDARD
|
|
38
|
+
}
|
|
39
|
+
enum ReconciliationStatusEnum {
|
|
40
|
+
COMPLETED,
|
|
41
|
+
INPROGRESS,
|
|
42
|
+
NOTAPPLICABLE
|
|
43
|
+
}
|
|
44
|
+
enum StatusEnum {
|
|
45
|
+
CANCELED,
|
|
46
|
+
FAILED,
|
|
47
|
+
INTRANSIT,
|
|
48
|
+
PAID,
|
|
49
|
+
PENDING
|
|
50
|
+
}
|
|
51
|
+
enum TypeEnum {
|
|
52
|
+
BANKACCOUNT,
|
|
53
|
+
CARD
|
|
54
|
+
}
|
|
55
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.LawfirmBankPayoutModel = void 0;
|
|
15
|
+
var LawfirmBankPayoutModel;
|
|
16
|
+
(function (LawfirmBankPayoutModel) {
|
|
17
|
+
var MethodEnum;
|
|
18
|
+
(function (MethodEnum) {
|
|
19
|
+
MethodEnum[MethodEnum["INSTANT"] = 'INSTANT'] = "INSTANT";
|
|
20
|
+
MethodEnum[MethodEnum["STANDARD"] = 'STANDARD'] = "STANDARD";
|
|
21
|
+
})(MethodEnum = LawfirmBankPayoutModel.MethodEnum || (LawfirmBankPayoutModel.MethodEnum = {}));
|
|
22
|
+
var ReconciliationStatusEnum;
|
|
23
|
+
(function (ReconciliationStatusEnum) {
|
|
24
|
+
ReconciliationStatusEnum[ReconciliationStatusEnum["COMPLETED"] = 'COMPLETED'] = "COMPLETED";
|
|
25
|
+
ReconciliationStatusEnum[ReconciliationStatusEnum["INPROGRESS"] = 'IN_PROGRESS'] = "INPROGRESS";
|
|
26
|
+
ReconciliationStatusEnum[ReconciliationStatusEnum["NOTAPPLICABLE"] = 'NOT_APPLICABLE'] = "NOTAPPLICABLE";
|
|
27
|
+
})(ReconciliationStatusEnum = LawfirmBankPayoutModel.ReconciliationStatusEnum || (LawfirmBankPayoutModel.ReconciliationStatusEnum = {}));
|
|
28
|
+
var StatusEnum;
|
|
29
|
+
(function (StatusEnum) {
|
|
30
|
+
StatusEnum[StatusEnum["CANCELED"] = 'CANCELED'] = "CANCELED";
|
|
31
|
+
StatusEnum[StatusEnum["FAILED"] = 'FAILED'] = "FAILED";
|
|
32
|
+
StatusEnum[StatusEnum["INTRANSIT"] = 'IN_TRANSIT'] = "INTRANSIT";
|
|
33
|
+
StatusEnum[StatusEnum["PAID"] = 'PAID'] = "PAID";
|
|
34
|
+
StatusEnum[StatusEnum["PENDING"] = 'PENDING'] = "PENDING";
|
|
35
|
+
})(StatusEnum = LawfirmBankPayoutModel.StatusEnum || (LawfirmBankPayoutModel.StatusEnum = {}));
|
|
36
|
+
var TypeEnum;
|
|
37
|
+
(function (TypeEnum) {
|
|
38
|
+
TypeEnum[TypeEnum["BANKACCOUNT"] = 'BANK_ACCOUNT'] = "BANKACCOUNT";
|
|
39
|
+
TypeEnum[TypeEnum["CARD"] = 'CARD'] = "CARD";
|
|
40
|
+
})(TypeEnum = LawfirmBankPayoutModel.TypeEnum || (LawfirmBankPayoutModel.TypeEnum = {}));
|
|
41
|
+
})(LawfirmBankPayoutModel = exports.LawfirmBankPayoutModel || (exports.LawfirmBankPayoutModel = {}));
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import * as models from './models';
|
|
13
|
+
export interface ListLawfirmBankPayoutsResponse {
|
|
14
|
+
"bankPayouts"?: Array<models.LawfirmBankPayoutModel>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -51,6 +51,7 @@ export * from './AvailableRegion';
|
|
|
51
51
|
export * from './AwsCredentialsRequest';
|
|
52
52
|
export * from './BackfillLawfirmTransactionRecordsRequest';
|
|
53
53
|
export * from './BackfillLawfirmTransactionRecordsResponse';
|
|
54
|
+
export * from './BalanceTransactionModel';
|
|
54
55
|
export * from './BillingInvoiceModel';
|
|
55
56
|
export * from './BillingPriceModel';
|
|
56
57
|
export * from './BillingProductModel';
|
|
@@ -392,6 +393,7 @@ export * from './IsRefundEligibleResponse';
|
|
|
392
393
|
export * from './IsUserLoggedInResponse';
|
|
393
394
|
export * from './LastLoginDateModel';
|
|
394
395
|
export * from './LawfirmAuditEventModel';
|
|
396
|
+
export * from './LawfirmBankPayoutModel';
|
|
395
397
|
export * from './LawfirmBookingSummary';
|
|
396
398
|
export * from './LawfirmCaseDocument';
|
|
397
399
|
export * from './LawfirmCaseModel';
|
|
@@ -440,6 +442,7 @@ export * from './ListDashboardCasesResponse';
|
|
|
440
442
|
export * from './ListEligibleStatusResponse';
|
|
441
443
|
export * from './ListEmployeesResponse';
|
|
442
444
|
export * from './ListLawfirmAuditEventsByCursorResponse';
|
|
445
|
+
export * from './ListLawfirmBankPayoutsResponse';
|
|
443
446
|
export * from './ListLawfirmStorefrontsResponse';
|
|
444
447
|
export * from './ListLawfirmSurchargeModel';
|
|
445
448
|
export * from './ListLawfirmSurchargeTypeModel';
|
|
@@ -63,6 +63,7 @@ __exportStar(require("./AvailableRegion"), exports);
|
|
|
63
63
|
__exportStar(require("./AwsCredentialsRequest"), exports);
|
|
64
64
|
__exportStar(require("./BackfillLawfirmTransactionRecordsRequest"), exports);
|
|
65
65
|
__exportStar(require("./BackfillLawfirmTransactionRecordsResponse"), exports);
|
|
66
|
+
__exportStar(require("./BalanceTransactionModel"), exports);
|
|
66
67
|
__exportStar(require("./BillingInvoiceModel"), exports);
|
|
67
68
|
__exportStar(require("./BillingPriceModel"), exports);
|
|
68
69
|
__exportStar(require("./BillingProductModel"), exports);
|
|
@@ -404,6 +405,7 @@ __exportStar(require("./IsRefundEligibleResponse"), exports);
|
|
|
404
405
|
__exportStar(require("./IsUserLoggedInResponse"), exports);
|
|
405
406
|
__exportStar(require("./LastLoginDateModel"), exports);
|
|
406
407
|
__exportStar(require("./LawfirmAuditEventModel"), exports);
|
|
408
|
+
__exportStar(require("./LawfirmBankPayoutModel"), exports);
|
|
407
409
|
__exportStar(require("./LawfirmBookingSummary"), exports);
|
|
408
410
|
__exportStar(require("./LawfirmCaseDocument"), exports);
|
|
409
411
|
__exportStar(require("./LawfirmCaseModel"), exports);
|
|
@@ -452,6 +454,7 @@ __exportStar(require("./ListDashboardCasesResponse"), exports);
|
|
|
452
454
|
__exportStar(require("./ListEligibleStatusResponse"), exports);
|
|
453
455
|
__exportStar(require("./ListEmployeesResponse"), exports);
|
|
454
456
|
__exportStar(require("./ListLawfirmAuditEventsByCursorResponse"), exports);
|
|
457
|
+
__exportStar(require("./ListLawfirmBankPayoutsResponse"), exports);
|
|
455
458
|
__exportStar(require("./ListLawfirmStorefrontsResponse"), exports);
|
|
456
459
|
__exportStar(require("./ListLawfirmSurchargeModel"), exports);
|
|
457
460
|
__exportStar(require("./ListLawfirmSurchargeTypeModel"), exports);
|