@otr-app/shared-backend-generated-client 2.2.72 → 2.2.74

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.
@@ -14,7 +14,7 @@ export interface BillingSubscriberModel {
14
14
  "emailAddress"?: string;
15
15
  "firstName"?: string;
16
16
  "lastName"?: string;
17
- "subscriptions"?: Array<models.BillingSubscriptionModel>;
17
+ "subscriptions"?: Array<models.ListBillingSubscriptionModel>;
18
18
  "totalUsage"?: number;
19
19
  "userId"?: number;
20
20
  }
@@ -30,6 +30,7 @@ export interface CaseDomain {
30
30
  "hasLeftLawyerReview"?: boolean;
31
31
  "isPointSystemState"?: boolean;
32
32
  "lawfirmCaseDecision"?: models.LawfirmCaseDomain;
33
+ "lawfirmCodeApplied"?: boolean;
33
34
  "letterOfEngagement"?: models.LetterOfEngagement;
34
35
  "paymentPlanTypeModel"?: models.PaymentPlanTypeModel;
35
36
  "referralCode"?: string;
@@ -30,6 +30,7 @@ export interface CaseDomainReq {
30
30
  "hasLeftLawyerReview"?: boolean;
31
31
  "isPointSystemState"?: boolean;
32
32
  "lawfirmCaseDecision"?: models.LawfirmCaseDomainReq;
33
+ "lawfirmCodeApplied"?: boolean;
33
34
  "letterOfEngagement"?: models.LetterOfEngagement;
34
35
  "paymentPlanTypeModel"?: models.PaymentPlanTypeModelReq;
35
36
  "referralCode"?: string;
@@ -30,6 +30,7 @@ export interface CaseDomainRes {
30
30
  "hasLeftLawyerReview"?: boolean;
31
31
  "isPointSystemState"?: boolean;
32
32
  "lawfirmCaseDecision"?: models.LawfirmCaseDomainRes;
33
+ "lawfirmCodeApplied"?: boolean;
33
34
  "letterOfEngagement"?: models.LetterOfEngagement;
34
35
  "paymentPlanTypeModel"?: models.PaymentPlanTypeModelRes;
35
36
  "referralCode"?: string;
@@ -0,0 +1,38 @@
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 ListBillingSubscriptionModel {
13
+ "billingInterval"?: ListBillingSubscriptionModel.BillingIntervalEnum;
14
+ "lastPastDueDateUtc"?: string;
15
+ "productName"?: string;
16
+ "startDateUtc"?: string;
17
+ "subscriptionId"?: string;
18
+ "subscriptionStatus"?: ListBillingSubscriptionModel.SubscriptionStatusEnum;
19
+ }
20
+ export declare namespace ListBillingSubscriptionModel {
21
+ enum BillingIntervalEnum {
22
+ DAILY,
23
+ MONTHLY,
24
+ QUARTERLY,
25
+ WEEKLY,
26
+ YEARLY
27
+ }
28
+ enum SubscriptionStatusEnum {
29
+ ACTIVE,
30
+ CANCELED,
31
+ INCOMPLETE,
32
+ INCOMPLETEEXPIRED,
33
+ INTRIALPERIOD,
34
+ PASTDUE,
35
+ UNKNOWN,
36
+ UNPAID
37
+ }
38
+ }
@@ -0,0 +1,36 @@
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.ListBillingSubscriptionModel = void 0;
15
+ var ListBillingSubscriptionModel;
16
+ (function (ListBillingSubscriptionModel) {
17
+ var BillingIntervalEnum;
18
+ (function (BillingIntervalEnum) {
19
+ BillingIntervalEnum[BillingIntervalEnum["DAILY"] = 'DAILY'] = "DAILY";
20
+ BillingIntervalEnum[BillingIntervalEnum["MONTHLY"] = 'MONTHLY'] = "MONTHLY";
21
+ BillingIntervalEnum[BillingIntervalEnum["QUARTERLY"] = 'QUARTERLY'] = "QUARTERLY";
22
+ BillingIntervalEnum[BillingIntervalEnum["WEEKLY"] = 'WEEKLY'] = "WEEKLY";
23
+ BillingIntervalEnum[BillingIntervalEnum["YEARLY"] = 'YEARLY'] = "YEARLY";
24
+ })(BillingIntervalEnum = ListBillingSubscriptionModel.BillingIntervalEnum || (ListBillingSubscriptionModel.BillingIntervalEnum = {}));
25
+ var SubscriptionStatusEnum;
26
+ (function (SubscriptionStatusEnum) {
27
+ SubscriptionStatusEnum[SubscriptionStatusEnum["ACTIVE"] = 'ACTIVE'] = "ACTIVE";
28
+ SubscriptionStatusEnum[SubscriptionStatusEnum["CANCELED"] = 'CANCELED'] = "CANCELED";
29
+ SubscriptionStatusEnum[SubscriptionStatusEnum["INCOMPLETE"] = 'INCOMPLETE'] = "INCOMPLETE";
30
+ SubscriptionStatusEnum[SubscriptionStatusEnum["INCOMPLETEEXPIRED"] = 'INCOMPLETE_EXPIRED'] = "INCOMPLETEEXPIRED";
31
+ SubscriptionStatusEnum[SubscriptionStatusEnum["INTRIALPERIOD"] = 'IN_TRIAL_PERIOD'] = "INTRIALPERIOD";
32
+ SubscriptionStatusEnum[SubscriptionStatusEnum["PASTDUE"] = 'PAST_DUE'] = "PASTDUE";
33
+ SubscriptionStatusEnum[SubscriptionStatusEnum["UNKNOWN"] = 'UNKNOWN'] = "UNKNOWN";
34
+ SubscriptionStatusEnum[SubscriptionStatusEnum["UNPAID"] = 'UNPAID'] = "UNPAID";
35
+ })(SubscriptionStatusEnum = ListBillingSubscriptionModel.SubscriptionStatusEnum || (ListBillingSubscriptionModel.SubscriptionStatusEnum = {}));
36
+ })(ListBillingSubscriptionModel = exports.ListBillingSubscriptionModel || (exports.ListBillingSubscriptionModel = {}));
@@ -357,6 +357,7 @@ export * from './LineItemRequest';
357
357
  export * from './ListAgentBookingsResponse';
358
358
  export * from './ListBillingProductsResponse';
359
359
  export * from './ListBillingSubscribersResponse';
360
+ export * from './ListBillingSubscriptionModel';
360
361
  export * from './ListBillingSubscriptionsResponse';
361
362
  export * from './ListContactTimelineResponse';
362
363
  export * from './ListCostItemsForCustomerResponse';
@@ -369,6 +369,7 @@ __exportStar(require("./LineItemRequest"), exports);
369
369
  __exportStar(require("./ListAgentBookingsResponse"), exports);
370
370
  __exportStar(require("./ListBillingProductsResponse"), exports);
371
371
  __exportStar(require("./ListBillingSubscribersResponse"), exports);
372
+ __exportStar(require("./ListBillingSubscriptionModel"), exports);
372
373
  __exportStar(require("./ListBillingSubscriptionsResponse"), exports);
373
374
  __exportStar(require("./ListContactTimelineResponse"), exports);
374
375
  __exportStar(require("./ListCostItemsForCustomerResponse"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.2.72",
3
+ "version": "2.2.74",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"