@otr-app/shared-backend-generated-client 2.5.98 → 2.5.101

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.
Files changed (62) hide show
  1. package/dist/angular/.openapi-generator/FILES +2 -0
  2. package/dist/angular/api/auditLawfirmEventsController.service.ts +4 -4
  3. package/dist/angular/api/citationAuditController.service.ts +4 -4
  4. package/dist/angular/api/lawfirmFeeCoverageController.service.ts +74 -0
  5. package/dist/angular/api/listCasesController.service.ts +18 -8
  6. package/dist/angular/api/userAuditController.service.ts +4 -4
  7. package/dist/angular/model/billingSubscriptionPrimaryHolderModel.ts +19 -0
  8. package/dist/angular/model/citationAuditEventModel.ts +2 -1
  9. package/dist/angular/model/lawfirmAuditEventModel.ts +2 -1
  10. package/dist/angular/model/listBillingSubscriptionsResponse.ts +2 -0
  11. package/dist/angular/model/models.ts +2 -0
  12. package/dist/angular/model/saveDefaultFeeRefundEligibilityRequest.ts +88 -0
  13. package/dist/angular/model/userAuditEventModel.ts +4 -2
  14. package/dist/otrBackendService.js +55 -0
  15. package/dist/otrBackendService.min.js +4 -4
  16. package/dist/typescript/api/AuditLawfirmEventsControllerApi.d.ts +1 -1
  17. package/dist/typescript/api/CitationAuditControllerApi.d.ts +1 -1
  18. package/dist/typescript/api/LawfirmFeeCoverageControllerApi.d.ts +7 -0
  19. package/dist/typescript/api/LawfirmFeeCoverageControllerApi.js +31 -0
  20. package/dist/typescript/api/ListCasesControllerApi.d.ts +4 -2
  21. package/dist/typescript/api/ListCasesControllerApi.js +10 -2
  22. package/dist/typescript/api/UserAuditControllerApi.d.ts +1 -1
  23. package/dist/typescript/model/BillingSubscriptionPrimaryHolderModel.d.ts +16 -0
  24. package/dist/typescript/model/BillingSubscriptionPrimaryHolderModel.js +12 -0
  25. package/dist/typescript/model/CitationAuditEventModel.d.ts +1 -0
  26. package/dist/typescript/model/CitationAuditEventModel.js +1 -0
  27. package/dist/typescript/model/LawfirmAuditEventModel.d.ts +1 -0
  28. package/dist/typescript/model/LawfirmAuditEventModel.js +1 -0
  29. package/dist/typescript/model/ListBillingSubscriptionsResponse.d.ts +1 -0
  30. package/dist/typescript/model/SaveDefaultFeeRefundEligibilityRequest.d.ts +82 -0
  31. package/dist/typescript/model/SaveDefaultFeeRefundEligibilityRequest.js +79 -0
  32. package/dist/typescript/model/UserAuditEventModel.d.ts +2 -0
  33. package/dist/typescript/model/UserAuditEventModel.js +2 -0
  34. package/dist/typescript/model/models.d.ts +2 -0
  35. package/dist/typescript/model/models.js +2 -0
  36. package/dist/typescript-fetch/apis/AuditLawfirmEventsControllerApi.d.ts +2 -0
  37. package/dist/typescript-fetch/apis/AuditLawfirmEventsControllerApi.js +2 -0
  38. package/dist/typescript-fetch/apis/CitationAuditControllerApi.d.ts +2 -0
  39. package/dist/typescript-fetch/apis/CitationAuditControllerApi.js +2 -0
  40. package/dist/typescript-fetch/apis/LawfirmFeeCoverageControllerApi.d.ts +13 -1
  41. package/dist/typescript-fetch/apis/LawfirmFeeCoverageControllerApi.js +34 -1
  42. package/dist/typescript-fetch/apis/ListCasesControllerApi.d.ts +2 -0
  43. package/dist/typescript-fetch/apis/ListCasesControllerApi.js +6 -0
  44. package/dist/typescript-fetch/apis/UserAuditControllerApi.d.ts +2 -0
  45. package/dist/typescript-fetch/apis/UserAuditControllerApi.js +2 -0
  46. package/dist/typescript-fetch/models/BillingSubscriptionPrimaryHolderModel.d.ts +39 -0
  47. package/dist/typescript-fetch/models/BillingSubscriptionPrimaryHolderModel.js +40 -0
  48. package/dist/typescript-fetch/models/CitationAuditEventModel.d.ts +1 -0
  49. package/dist/typescript-fetch/models/CitationAuditEventModel.js +1 -0
  50. package/dist/typescript-fetch/models/LawfirmAuditEventModel.d.ts +1 -0
  51. package/dist/typescript-fetch/models/LawfirmAuditEventModel.js +1 -0
  52. package/dist/typescript-fetch/models/ListBillingSubscriptionsResponse.d.ts +7 -1
  53. package/dist/typescript-fetch/models/ListBillingSubscriptionsResponse.js +3 -1
  54. package/dist/typescript-fetch/models/SaveDefaultFeeRefundEligibilityRequest.d.ts +116 -0
  55. package/dist/typescript-fetch/models/SaveDefaultFeeRefundEligibilityRequest.js +115 -0
  56. package/dist/typescript-fetch/models/UserAuditEventModel.d.ts +2 -0
  57. package/dist/typescript-fetch/models/UserAuditEventModel.js +2 -0
  58. package/dist/typescript-fetch/models/index.d.ts +2 -0
  59. package/dist/typescript-fetch/models/index.js +2 -0
  60. package/dist/typescript-open-api/otr-backend.d.ts +95 -0
  61. package/dist/typescript-open-api/otr-backend.js +1 -0
  62. package/package.json +1 -1
@@ -3977,6 +3977,23 @@ export interface paths {
3977
3977
  patch?: never;
3978
3978
  trace?: never;
3979
3979
  };
3980
+ "/api/v1/lawfirms/{lawfirmId}/coverage/refund-eligibility": {
3981
+ parameters: {
3982
+ query?: never;
3983
+ header?: never;
3984
+ path?: never;
3985
+ cookie?: never;
3986
+ };
3987
+ get?: never;
3988
+ put?: never;
3989
+ /** saveDefaultFeeRefundEligibility */
3990
+ post: operations["saveDefaultFeeRefundEligibilityUsingPOST"];
3991
+ delete?: never;
3992
+ options?: never;
3993
+ head?: never;
3994
+ patch?: never;
3995
+ trace?: never;
3996
+ };
3980
3997
  "/api/v2/lawfirms/{lawfirmId}/courts": {
3981
3998
  parameters: {
3982
3999
  query?: never;
@@ -7979,6 +7996,13 @@ export interface components {
7979
7996
  trialEndAt?: string;
7980
7997
  upcomingInvoicePreview?: components["schemas"]["BillingUpcomingInvoiceModel"];
7981
7998
  };
7999
+ /** BillingSubscriptionPrimaryHolderModel */
8000
+ BillingSubscriptionPrimaryHolderModel: {
8001
+ emailAddress?: string;
8002
+ fullName?: string;
8003
+ /** Format: int64 */
8004
+ userId?: number;
8005
+ };
7982
8006
  /** BillingUpcomingInvoiceModel */
7983
8007
  BillingUpcomingInvoiceModel: {
7984
8008
  /** Format: date-time */
@@ -12757,6 +12781,7 @@ export interface components {
12757
12781
  };
12758
12782
  /** ListBillingSubscriptionsResponse */
12759
12783
  ListBillingSubscriptionsResponse: {
12784
+ primaryHolder?: components["schemas"]["BillingSubscriptionPrimaryHolderModel"];
12760
12785
  subscriptions?: components["schemas"]["BillingSubscriptionModel"][];
12761
12786
  subscriptionsAsBeneficiary?: components["schemas"]["BillingSubscriptionModel"][];
12762
12787
  };
@@ -14306,6 +14331,16 @@ export interface components {
14306
14331
  /** Format: int64 */
14307
14332
  userId?: number;
14308
14333
  };
14334
+ /** SaveDefaultFeeRefundEligibilityRequest */
14335
+ SaveDefaultFeeRefundEligibilityRequest: {
14336
+ /** @enum {string} */
14337
+ classification?: PathsApiV1LawfirmsLawfirmIdAccountFeesDeleteParametersQueryClassification;
14338
+ /** @enum {string} */
14339
+ refundEligibility?: AccountLevelFeeRefundEligibility;
14340
+ regionCode?: string;
14341
+ /** Format: int64 */
14342
+ violationId?: number;
14343
+ };
14309
14344
  /** SaveDriverLicensePictureRequest */
14310
14345
  SaveDriverLicensePictureRequest: {
14311
14346
  base64ImageData?: string;
@@ -29720,6 +29755,61 @@ export interface operations {
29720
29755
  };
29721
29756
  };
29722
29757
  };
29758
+ saveDefaultFeeRefundEligibilityUsingPOST: {
29759
+ parameters: {
29760
+ query?: never;
29761
+ header?: never;
29762
+ path: {
29763
+ /** @description lawfirmId */
29764
+ lawfirmId: number;
29765
+ };
29766
+ cookie?: never;
29767
+ };
29768
+ requestBody?: {
29769
+ content: {
29770
+ "application/json": components["schemas"]["SaveDefaultFeeRefundEligibilityRequest"];
29771
+ };
29772
+ };
29773
+ responses: {
29774
+ /** @description OK */
29775
+ 200: {
29776
+ headers: {
29777
+ [name: string]: unknown;
29778
+ };
29779
+ content: {
29780
+ "*/*": Record<string, never>;
29781
+ };
29782
+ };
29783
+ /** @description Created */
29784
+ 201: {
29785
+ headers: {
29786
+ [name: string]: unknown;
29787
+ };
29788
+ content?: never;
29789
+ };
29790
+ /** @description Unauthorized */
29791
+ 401: {
29792
+ headers: {
29793
+ [name: string]: unknown;
29794
+ };
29795
+ content?: never;
29796
+ };
29797
+ /** @description Forbidden */
29798
+ 403: {
29799
+ headers: {
29800
+ [name: string]: unknown;
29801
+ };
29802
+ content?: never;
29803
+ };
29804
+ /** @description Not Found */
29805
+ 404: {
29806
+ headers: {
29807
+ [name: string]: unknown;
29808
+ };
29809
+ content?: never;
29810
+ };
29811
+ };
29812
+ };
29723
29813
  removeCoverageUsingDELETE: {
29724
29814
  parameters: {
29725
29815
  query?: never;
@@ -31993,6 +32083,8 @@ export interface operations {
31993
32083
  statusCategories?: PathsApiV1CaseStatusesGetParametersQueryCategories;
31994
32084
  /** @description caseStatuses */
31995
32085
  caseStatuses?: PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseStatuses;
32086
+ /** @description includeAbandoned */
32087
+ includeAbandoned?: boolean;
31996
32088
  };
31997
32089
  header?: never;
31998
32090
  path: {
@@ -32062,6 +32154,8 @@ export interface operations {
32062
32154
  statusCategories?: PathsApiV1CaseStatusesGetParametersQueryCategories;
32063
32155
  /** @description caseStatuses */
32064
32156
  caseStatuses?: PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryCaseStatuses;
32157
+ /** @description includeAbandoned */
32158
+ includeAbandoned?: boolean;
32065
32159
  };
32066
32160
  header?: never;
32067
32161
  path: {
@@ -40298,6 +40392,7 @@ export declare enum PathsApiV1LawfirmsLawfirmIdAuditEventsGetParametersQueryIncl
40298
40392
  DECIDE_EXPERIMENT_GROUP_COMMAND = "DECIDE_EXPERIMENT_GROUP_COMMAND",
40299
40393
  DEFAULT_FEE_ADDED = "DEFAULT_FEE_ADDED",
40300
40394
  DEFAULT_FEE_CHANGED = "DEFAULT_FEE_CHANGED",
40395
+ DEFAULT_FEE_REFUND_ELIGIBILITY_CHANGED = "DEFAULT_FEE_REFUND_ELIGIBILITY_CHANGED",
40301
40396
  DEFAULT_FEE_REMOVED = "DEFAULT_FEE_REMOVED",
40302
40397
  DRIVER_LICENSE_UPLOADED = "DRIVER_LICENSE_UPLOADED",
40303
40398
  EMAIL_SENT = "EMAIL_SENT",
@@ -50,6 +50,7 @@ export var PathsApiV1LawfirmsLawfirmIdAuditEventsGetParametersQueryIncludeTypes;
50
50
  PathsApiV1LawfirmsLawfirmIdAuditEventsGetParametersQueryIncludeTypes["DECIDE_EXPERIMENT_GROUP_COMMAND"] = "DECIDE_EXPERIMENT_GROUP_COMMAND";
51
51
  PathsApiV1LawfirmsLawfirmIdAuditEventsGetParametersQueryIncludeTypes["DEFAULT_FEE_ADDED"] = "DEFAULT_FEE_ADDED";
52
52
  PathsApiV1LawfirmsLawfirmIdAuditEventsGetParametersQueryIncludeTypes["DEFAULT_FEE_CHANGED"] = "DEFAULT_FEE_CHANGED";
53
+ PathsApiV1LawfirmsLawfirmIdAuditEventsGetParametersQueryIncludeTypes["DEFAULT_FEE_REFUND_ELIGIBILITY_CHANGED"] = "DEFAULT_FEE_REFUND_ELIGIBILITY_CHANGED";
53
54
  PathsApiV1LawfirmsLawfirmIdAuditEventsGetParametersQueryIncludeTypes["DEFAULT_FEE_REMOVED"] = "DEFAULT_FEE_REMOVED";
54
55
  PathsApiV1LawfirmsLawfirmIdAuditEventsGetParametersQueryIncludeTypes["DRIVER_LICENSE_UPLOADED"] = "DRIVER_LICENSE_UPLOADED";
55
56
  PathsApiV1LawfirmsLawfirmIdAuditEventsGetParametersQueryIncludeTypes["EMAIL_SENT"] = "EMAIL_SENT";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.98",
3
+ "version": "2.5.101",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"