@otr-app/shared-backend-generated-client 2.5.25 → 2.5.27
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.
|
@@ -863,6 +863,23 @@ export interface paths {
|
|
|
863
863
|
patch?: never;
|
|
864
864
|
trace?: never;
|
|
865
865
|
};
|
|
866
|
+
"/api/v1/cases/{caseId}/overdue-payments": {
|
|
867
|
+
parameters: {
|
|
868
|
+
query?: never;
|
|
869
|
+
header?: never;
|
|
870
|
+
path?: never;
|
|
871
|
+
cookie?: never;
|
|
872
|
+
};
|
|
873
|
+
/** getOverdueCasePayments */
|
|
874
|
+
get: operations["getOverdueCasePaymentsUsingGET"];
|
|
875
|
+
put?: never;
|
|
876
|
+
post?: never;
|
|
877
|
+
delete?: never;
|
|
878
|
+
options?: never;
|
|
879
|
+
head?: never;
|
|
880
|
+
patch?: never;
|
|
881
|
+
trace?: never;
|
|
882
|
+
};
|
|
866
883
|
"/api/v1/cases/{caseId}/payment-plans": {
|
|
867
884
|
parameters: {
|
|
868
885
|
query?: never;
|
|
@@ -9611,6 +9628,16 @@ export interface components {
|
|
|
9611
9628
|
overdueAmount?: number;
|
|
9612
9629
|
regionCode?: string;
|
|
9613
9630
|
};
|
|
9631
|
+
/** CustomerPaymentDto */
|
|
9632
|
+
CustomerPaymentDto: {
|
|
9633
|
+
/** Format: int32 */
|
|
9634
|
+
amountDueInCents?: number;
|
|
9635
|
+
casePaymentId?: string;
|
|
9636
|
+
/** Format: date-time */
|
|
9637
|
+
dueDateUtc?: string;
|
|
9638
|
+
hasFinancialAccess?: boolean;
|
|
9639
|
+
overdue?: boolean;
|
|
9640
|
+
};
|
|
9614
9641
|
/** CustomerReview */
|
|
9615
9642
|
CustomerReview: {
|
|
9616
9643
|
comments?: components["schemas"]["ReviewCommentModel"][];
|
|
@@ -11181,6 +11208,14 @@ export interface components {
|
|
|
11181
11208
|
GetOutgoingContactsResponse: {
|
|
11182
11209
|
contacts?: components["schemas"]["OutgoingContactDomain"][];
|
|
11183
11210
|
};
|
|
11211
|
+
/** GetOverdueCasePaymentsResponse */
|
|
11212
|
+
GetOverdueCasePaymentsResponse: {
|
|
11213
|
+
/** Format: int64 */
|
|
11214
|
+
overdueBalanceInCents?: number;
|
|
11215
|
+
payments?: components["schemas"]["CustomerPaymentDto"][];
|
|
11216
|
+
/** Format: int64 */
|
|
11217
|
+
upcomingBalanceInCents?: number;
|
|
11218
|
+
};
|
|
11184
11219
|
/** GetOverduePaymentsResponse */
|
|
11185
11220
|
GetOverduePaymentsResponse: {
|
|
11186
11221
|
/** Format: int64 */
|
|
@@ -11616,7 +11651,7 @@ export interface components {
|
|
|
11616
11651
|
ai_agent?: string;
|
|
11617
11652
|
ai_agent_participated?: boolean;
|
|
11618
11653
|
contacts?: components["schemas"]["ContactList"];
|
|
11619
|
-
conversation_rating?: string
|
|
11654
|
+
conversation_rating?: Record<string, never>;
|
|
11620
11655
|
/** Format: int32 */
|
|
11621
11656
|
created_at?: number;
|
|
11622
11657
|
custom_attributes?: Record<string, never>;
|
|
@@ -19027,6 +19062,53 @@ export interface operations {
|
|
|
19027
19062
|
};
|
|
19028
19063
|
};
|
|
19029
19064
|
};
|
|
19065
|
+
getOverdueCasePaymentsUsingGET: {
|
|
19066
|
+
parameters: {
|
|
19067
|
+
query?: {
|
|
19068
|
+
/** @description includeUpcoming */
|
|
19069
|
+
includeUpcoming?: boolean;
|
|
19070
|
+
};
|
|
19071
|
+
header?: never;
|
|
19072
|
+
path: {
|
|
19073
|
+
/** @description caseId */
|
|
19074
|
+
caseId: string;
|
|
19075
|
+
};
|
|
19076
|
+
cookie?: never;
|
|
19077
|
+
};
|
|
19078
|
+
requestBody?: never;
|
|
19079
|
+
responses: {
|
|
19080
|
+
/** @description OK */
|
|
19081
|
+
200: {
|
|
19082
|
+
headers: {
|
|
19083
|
+
[name: string]: unknown;
|
|
19084
|
+
};
|
|
19085
|
+
content: {
|
|
19086
|
+
"*/*": components["schemas"]["GetOverdueCasePaymentsResponse"];
|
|
19087
|
+
};
|
|
19088
|
+
};
|
|
19089
|
+
/** @description Unauthorized */
|
|
19090
|
+
401: {
|
|
19091
|
+
headers: {
|
|
19092
|
+
[name: string]: unknown;
|
|
19093
|
+
};
|
|
19094
|
+
content?: never;
|
|
19095
|
+
};
|
|
19096
|
+
/** @description Forbidden */
|
|
19097
|
+
403: {
|
|
19098
|
+
headers: {
|
|
19099
|
+
[name: string]: unknown;
|
|
19100
|
+
};
|
|
19101
|
+
content?: never;
|
|
19102
|
+
};
|
|
19103
|
+
/** @description Not Found */
|
|
19104
|
+
404: {
|
|
19105
|
+
headers: {
|
|
19106
|
+
[name: string]: unknown;
|
|
19107
|
+
};
|
|
19108
|
+
content?: never;
|
|
19109
|
+
};
|
|
19110
|
+
};
|
|
19111
|
+
};
|
|
19030
19112
|
getPaymentPlanOptionsUsingGET: {
|
|
19031
19113
|
parameters: {
|
|
19032
19114
|
query: {
|
|
@@ -39823,6 +39905,7 @@ export declare enum PathsApiV1LawfirmsGetParametersQueryStatuses {
|
|
|
39823
39905
|
SUPERVISED = "SUPERVISED",
|
|
39824
39906
|
TEMPORARILY_TURNED_OFF = "TEMPORARILY_TURNED_OFF",
|
|
39825
39907
|
TERMINATED_FRAUD = "TERMINATED_FRAUD",
|
|
39908
|
+
TERMINATED_GENERIC = "TERMINATED_GENERIC",
|
|
39826
39909
|
TERMINATED_POOR_SERVICE = "TERMINATED_POOR_SERVICE",
|
|
39827
39910
|
TERMINATED_POOR_SUCCESS = "TERMINATED_POOR_SUCCESS"
|
|
39828
39911
|
}
|
|
@@ -261,6 +261,7 @@ export var PathsApiV1LawfirmsGetParametersQueryStatuses;
|
|
|
261
261
|
PathsApiV1LawfirmsGetParametersQueryStatuses["SUPERVISED"] = "SUPERVISED";
|
|
262
262
|
PathsApiV1LawfirmsGetParametersQueryStatuses["TEMPORARILY_TURNED_OFF"] = "TEMPORARILY_TURNED_OFF";
|
|
263
263
|
PathsApiV1LawfirmsGetParametersQueryStatuses["TERMINATED_FRAUD"] = "TERMINATED_FRAUD";
|
|
264
|
+
PathsApiV1LawfirmsGetParametersQueryStatuses["TERMINATED_GENERIC"] = "TERMINATED_GENERIC";
|
|
264
265
|
PathsApiV1LawfirmsGetParametersQueryStatuses["TERMINATED_POOR_SERVICE"] = "TERMINATED_POOR_SERVICE";
|
|
265
266
|
PathsApiV1LawfirmsGetParametersQueryStatuses["TERMINATED_POOR_SUCCESS"] = "TERMINATED_POOR_SUCCESS";
|
|
266
267
|
})(PathsApiV1LawfirmsGetParametersQueryStatuses || (PathsApiV1LawfirmsGetParametersQueryStatuses = {}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@otr-app/shared-backend-generated-client",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.27",
|
|
4
4
|
"main": "dist/otrBackendService.min.js",
|
|
5
5
|
"files": [
|
|
6
6
|
"/dist"
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"generate:devo": "npm run generate:devo-angularjs",
|
|
26
26
|
"generate:devo-angularjs-ci": "npm run download:devo && gulp codegen && java -jar /opt/openapi-generator/modules/openapi-generator-cli/target/openapi-generator-cli.jar generate -i api/otr-service.json -o myclient/typescript -g typescript-angularjs && tsc --project tsconfig.json --outDir dist/typescript",
|
|
27
27
|
"generate:devo-angular-ci": "npm run download:devo && gulp codegen && java -jar /opt/openapi-generator-630/modules/openapi-generator-cli/target/openapi-generator-cli.jar generate -i api/otr-service.json -o dist/angular -g typescript-angular",
|
|
28
|
-
"generate:devo-angular": "npm run download:devo && gulp codegen &&
|
|
28
|
+
"generate:devo-angular": "npm run download:devo && gulp codegen && openapi-generator-cli version-manager set 6.3.0 && openapi-generator-cli generate -i api/otr-service.json -o dist/angular -g typescript-angular",
|
|
29
29
|
"generate:devo-typescript-fetch": "rm -r dist/typescript-fetch || npm run download:devo && openapi-generator-cli version-manager set 4.3.1 && openapi-generator-cli generate -i api/otr-service.json -o myclient/typescript-fetch -g typescript-fetch --additional-properties=typescriptThreePlus=true && tsc --project tsconfig.fetch.json --outDir dist/typescript-fetch",
|
|
30
30
|
"generate:devo-typescript-open-api": "npm run download:devo:v3 && npx openapi-typescript api/otr-service-v3.json -o dist/typescript-open-api/otr-backend.ts --enum=true --dedupe-enums && tsc --project tsconfig-open-api.json --outDir dist/typescript-open-api && npm run clean-source",
|
|
31
31
|
"generate:devo-angularjs": "rm -r dist/typescript || npm run download:devo && gulp codegen && openapi-generator-cli version-manager set 4.3.1 && openapi-generator-cli generate -i api/otr-service.json -o myclient/typescript -g typescript-angularjs && tsc --project tsconfig.json --outDir dist/typescript",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"swagger-js-codegen": "1.12.0",
|
|
52
52
|
"swagger-js-react-native-codegen": "0.1.4",
|
|
53
53
|
"swagger-typescript-codegen": "^1.11.0",
|
|
54
|
-
"typescript": "
|
|
54
|
+
"typescript": "5.8.3"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"axios": "^0.27.2"
|