@otr-app/shared-backend-generated-client 2.5.36 → 2.5.38
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/api/consoleListController.service.ts +4 -4
- package/dist/angular/model/billingSubscriptionModel.ts +2 -1
- package/dist/angular/model/cancelBillingSubscriptionResponse.ts +2 -1
- package/dist/angular/model/createBillingSubscriptionResponse.ts +2 -1
- package/dist/angular/model/defendantDetailsModel.ts +15 -0
- package/dist/angular/model/listBillingSubscriptionModel.ts +2 -1
- package/dist/angular/model/userSubscriptionPlanModel.ts +2 -1
- package/dist/angular/model/userSubscriptionPlanModelReq.ts +2 -1
- package/dist/angular/model/userSubscriptionPlanModelRes.ts +2 -1
- package/dist/typescript/api/ConsoleListControllerApi.d.ts +1 -1
- package/dist/typescript/model/BillingSubscriptionModel.d.ts +1 -0
- package/dist/typescript/model/BillingSubscriptionModel.js +1 -0
- package/dist/typescript/model/CancelBillingSubscriptionResponse.d.ts +1 -0
- package/dist/typescript/model/CancelBillingSubscriptionResponse.js +1 -0
- package/dist/typescript/model/CreateBillingSubscriptionResponse.d.ts +1 -0
- package/dist/typescript/model/CreateBillingSubscriptionResponse.js +1 -0
- package/dist/typescript/model/DefendantDetailsModel.d.ts +14 -0
- package/dist/typescript/model/DefendantDetailsModel.js +14 -0
- package/dist/typescript/model/ListBillingSubscriptionModel.d.ts +1 -0
- package/dist/typescript/model/ListBillingSubscriptionModel.js +1 -0
- package/dist/typescript/model/UserSubscriptionPlanModel.d.ts +1 -0
- package/dist/typescript/model/UserSubscriptionPlanModel.js +1 -0
- package/dist/typescript/model/UserSubscriptionPlanModelReq.d.ts +1 -0
- package/dist/typescript/model/UserSubscriptionPlanModelReq.js +1 -0
- package/dist/typescript/model/UserSubscriptionPlanModelRes.d.ts +1 -0
- package/dist/typescript/model/UserSubscriptionPlanModelRes.js +1 -0
- package/dist/typescript-fetch/apis/ConsoleListControllerApi.d.ts +1 -0
- package/dist/typescript-fetch/apis/ConsoleListControllerApi.js +1 -0
- package/dist/typescript-fetch/models/BillingSubscriptionModel.d.ts +1 -0
- package/dist/typescript-fetch/models/BillingSubscriptionModel.js +1 -0
- package/dist/typescript-fetch/models/CancelBillingSubscriptionResponse.d.ts +1 -0
- package/dist/typescript-fetch/models/CancelBillingSubscriptionResponse.js +1 -0
- package/dist/typescript-fetch/models/CreateBillingSubscriptionResponse.d.ts +1 -0
- package/dist/typescript-fetch/models/CreateBillingSubscriptionResponse.js +1 -0
- package/dist/typescript-fetch/models/DefendantDetailsModel.d.ts +23 -0
- package/dist/typescript-fetch/models/DefendantDetailsModel.js +20 -0
- package/dist/typescript-fetch/models/ListBillingSubscriptionModel.d.ts +1 -0
- package/dist/typescript-fetch/models/ListBillingSubscriptionModel.js +1 -0
- package/dist/typescript-fetch/models/UserSubscriptionPlanModel.d.ts +1 -0
- package/dist/typescript-fetch/models/UserSubscriptionPlanModel.js +1 -0
- package/dist/typescript-fetch/models/UserSubscriptionPlanModelReq.d.ts +1 -0
- package/dist/typescript-fetch/models/UserSubscriptionPlanModelReq.js +1 -0
- package/dist/typescript-fetch/models/UserSubscriptionPlanModelRes.d.ts +1 -0
- package/dist/typescript-fetch/models/UserSubscriptionPlanModelRes.js +1 -0
- package/dist/typescript-open-api/otr-backend.d.ts +3 -0
- package/dist/typescript-open-api/otr-backend.js +1 -0
- package/package.json +1 -1
|
@@ -1112,10 +1112,10 @@ export class ConsoleListControllerService {
|
|
|
1112
1112
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1113
1113
|
* @param reportProgress flag to report request and response progress.
|
|
1114
1114
|
*/
|
|
1115
|
-
public listBillingSubscribersUsingGET(billingInterval?: 'DAILY' | 'MONTHLY' | 'QUARTERLY' | 'WEEKLY' | 'YEARLY', billingSubscriptionStatus?: 'ACTIVE' | 'CANCELED' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID', coveredSubscriptionsOnly?: boolean, endDate?: string, length?: number, page?: number, planName?: string, shouldIncludeSubscribers?: boolean, sortBy?: string, sortOrder?: string, startDate?: string, subscriberName?: string, timeZoneId?: string, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext}): Observable<ListBillingSubscribersResponse>;
|
|
1116
|
-
public listBillingSubscribersUsingGET(billingInterval?: 'DAILY' | 'MONTHLY' | 'QUARTERLY' | 'WEEKLY' | 'YEARLY', billingSubscriptionStatus?: 'ACTIVE' | 'CANCELED' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID', coveredSubscriptionsOnly?: boolean, endDate?: string, length?: number, page?: number, planName?: string, shouldIncludeSubscribers?: boolean, sortBy?: string, sortOrder?: string, startDate?: string, subscriberName?: string, timeZoneId?: string, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext}): Observable<HttpResponse<ListBillingSubscribersResponse>>;
|
|
1117
|
-
public listBillingSubscribersUsingGET(billingInterval?: 'DAILY' | 'MONTHLY' | 'QUARTERLY' | 'WEEKLY' | 'YEARLY', billingSubscriptionStatus?: 'ACTIVE' | 'CANCELED' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID', coveredSubscriptionsOnly?: boolean, endDate?: string, length?: number, page?: number, planName?: string, shouldIncludeSubscribers?: boolean, sortBy?: string, sortOrder?: string, startDate?: string, subscriberName?: string, timeZoneId?: string, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext}): Observable<HttpEvent<ListBillingSubscribersResponse>>;
|
|
1118
|
-
public listBillingSubscribersUsingGET(billingInterval?: 'DAILY' | 'MONTHLY' | 'QUARTERLY' | 'WEEKLY' | 'YEARLY', billingSubscriptionStatus?: 'ACTIVE' | 'CANCELED' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID', coveredSubscriptionsOnly?: boolean, endDate?: string, length?: number, page?: number, planName?: string, shouldIncludeSubscribers?: boolean, sortBy?: string, sortOrder?: string, startDate?: string, subscriberName?: string, timeZoneId?: string, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext}): Observable<any> {
|
|
1115
|
+
public listBillingSubscribersUsingGET(billingInterval?: 'DAILY' | 'MONTHLY' | 'QUARTERLY' | 'WEEKLY' | 'YEARLY', billingSubscriptionStatus?: 'ACTIVE' | 'CANCELED' | 'COMPLETE' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID', coveredSubscriptionsOnly?: boolean, endDate?: string, length?: number, page?: number, planName?: string, shouldIncludeSubscribers?: boolean, sortBy?: string, sortOrder?: string, startDate?: string, subscriberName?: string, timeZoneId?: string, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext}): Observable<ListBillingSubscribersResponse>;
|
|
1116
|
+
public listBillingSubscribersUsingGET(billingInterval?: 'DAILY' | 'MONTHLY' | 'QUARTERLY' | 'WEEKLY' | 'YEARLY', billingSubscriptionStatus?: 'ACTIVE' | 'CANCELED' | 'COMPLETE' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID', coveredSubscriptionsOnly?: boolean, endDate?: string, length?: number, page?: number, planName?: string, shouldIncludeSubscribers?: boolean, sortBy?: string, sortOrder?: string, startDate?: string, subscriberName?: string, timeZoneId?: string, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext}): Observable<HttpResponse<ListBillingSubscribersResponse>>;
|
|
1117
|
+
public listBillingSubscribersUsingGET(billingInterval?: 'DAILY' | 'MONTHLY' | 'QUARTERLY' | 'WEEKLY' | 'YEARLY', billingSubscriptionStatus?: 'ACTIVE' | 'CANCELED' | 'COMPLETE' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID', coveredSubscriptionsOnly?: boolean, endDate?: string, length?: number, page?: number, planName?: string, shouldIncludeSubscribers?: boolean, sortBy?: string, sortOrder?: string, startDate?: string, subscriberName?: string, timeZoneId?: string, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext}): Observable<HttpEvent<ListBillingSubscribersResponse>>;
|
|
1118
|
+
public listBillingSubscribersUsingGET(billingInterval?: 'DAILY' | 'MONTHLY' | 'QUARTERLY' | 'WEEKLY' | 'YEARLY', billingSubscriptionStatus?: 'ACTIVE' | 'CANCELED' | 'COMPLETE' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID', coveredSubscriptionsOnly?: boolean, endDate?: string, length?: number, page?: number, planName?: string, shouldIncludeSubscribers?: boolean, sortBy?: string, sortOrder?: string, startDate?: string, subscriberName?: string, timeZoneId?: string, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext}): Observable<any> {
|
|
1119
1119
|
|
|
1120
1120
|
let localVarQueryParameters = new HttpParams({encoder: this.encoder});
|
|
1121
1121
|
if (billingInterval !== undefined && billingInterval !== null) {
|
|
@@ -26,10 +26,11 @@ export interface BillingSubscriptionModel {
|
|
|
26
26
|
upcomingInvoicePreview?: BillingUpcomingInvoiceModel;
|
|
27
27
|
}
|
|
28
28
|
export namespace BillingSubscriptionModel {
|
|
29
|
-
export type StatusEnum = 'ACTIVE' | 'CANCELED' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID';
|
|
29
|
+
export type StatusEnum = 'ACTIVE' | 'CANCELED' | 'COMPLETE' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID';
|
|
30
30
|
export const StatusEnum = {
|
|
31
31
|
Active: 'ACTIVE' as StatusEnum,
|
|
32
32
|
Canceled: 'CANCELED' as StatusEnum,
|
|
33
|
+
Complete: 'COMPLETE' as StatusEnum,
|
|
33
34
|
Incomplete: 'INCOMPLETE' as StatusEnum,
|
|
34
35
|
IncompleteExpired: 'INCOMPLETE_EXPIRED' as StatusEnum,
|
|
35
36
|
InTrialPeriod: 'IN_TRIAL_PERIOD' as StatusEnum,
|
|
@@ -19,10 +19,11 @@ export interface CancelBillingSubscriptionResponse {
|
|
|
19
19
|
stripeCustomerId?: string;
|
|
20
20
|
}
|
|
21
21
|
export namespace CancelBillingSubscriptionResponse {
|
|
22
|
-
export type StatusEnum = 'ACTIVE' | 'CANCELED' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID';
|
|
22
|
+
export type StatusEnum = 'ACTIVE' | 'CANCELED' | 'COMPLETE' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID';
|
|
23
23
|
export const StatusEnum = {
|
|
24
24
|
Active: 'ACTIVE' as StatusEnum,
|
|
25
25
|
Canceled: 'CANCELED' as StatusEnum,
|
|
26
|
+
Complete: 'COMPLETE' as StatusEnum,
|
|
26
27
|
Incomplete: 'INCOMPLETE' as StatusEnum,
|
|
27
28
|
IncompleteExpired: 'INCOMPLETE_EXPIRED' as StatusEnum,
|
|
28
29
|
InTrialPeriod: 'IN_TRIAL_PERIOD' as StatusEnum,
|
|
@@ -19,10 +19,11 @@ export interface CreateBillingSubscriptionResponse {
|
|
|
19
19
|
subscriptionId?: string;
|
|
20
20
|
}
|
|
21
21
|
export namespace CreateBillingSubscriptionResponse {
|
|
22
|
-
export type StatusEnum = 'ACTIVE' | 'CANCELED' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID';
|
|
22
|
+
export type StatusEnum = 'ACTIVE' | 'CANCELED' | 'COMPLETE' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID';
|
|
23
23
|
export const StatusEnum = {
|
|
24
24
|
Active: 'ACTIVE' as StatusEnum,
|
|
25
25
|
Canceled: 'CANCELED' as StatusEnum,
|
|
26
|
+
Complete: 'COMPLETE' as StatusEnum,
|
|
26
27
|
Incomplete: 'INCOMPLETE' as StatusEnum,
|
|
27
28
|
IncompleteExpired: 'INCOMPLETE_EXPIRED' as StatusEnum,
|
|
28
29
|
InTrialPeriod: 'IN_TRIAL_PERIOD' as StatusEnum,
|
|
@@ -18,10 +18,25 @@ export interface DefendantDetailsModel {
|
|
|
18
18
|
firstName?: string;
|
|
19
19
|
hasFinancialAccess?: boolean;
|
|
20
20
|
lastName?: string;
|
|
21
|
+
ownerRelationshipToClientType?: DefendantDetailsModel.OwnerRelationshipToClientTypeEnum;
|
|
21
22
|
relationshipToClientType?: DefendantDetailsModel.RelationshipToClientTypeEnum;
|
|
22
23
|
userId?: number;
|
|
23
24
|
}
|
|
24
25
|
export namespace DefendantDetailsModel {
|
|
26
|
+
export type OwnerRelationshipToClientTypeEnum = 'CHILD' | 'EMPLOYER' | 'FAMILY_MEMBER' | 'FRIEND' | 'LAWYER' | 'OTHER' | 'PARENT' | 'SELF' | 'SERVICE_PROVIDER' | 'SIGNIFICANT_OTHER' | 'UNKNOWN';
|
|
27
|
+
export const OwnerRelationshipToClientTypeEnum = {
|
|
28
|
+
Child: 'CHILD' as OwnerRelationshipToClientTypeEnum,
|
|
29
|
+
Employer: 'EMPLOYER' as OwnerRelationshipToClientTypeEnum,
|
|
30
|
+
FamilyMember: 'FAMILY_MEMBER' as OwnerRelationshipToClientTypeEnum,
|
|
31
|
+
Friend: 'FRIEND' as OwnerRelationshipToClientTypeEnum,
|
|
32
|
+
Lawyer: 'LAWYER' as OwnerRelationshipToClientTypeEnum,
|
|
33
|
+
Other: 'OTHER' as OwnerRelationshipToClientTypeEnum,
|
|
34
|
+
Parent: 'PARENT' as OwnerRelationshipToClientTypeEnum,
|
|
35
|
+
Self: 'SELF' as OwnerRelationshipToClientTypeEnum,
|
|
36
|
+
ServiceProvider: 'SERVICE_PROVIDER' as OwnerRelationshipToClientTypeEnum,
|
|
37
|
+
SignificantOther: 'SIGNIFICANT_OTHER' as OwnerRelationshipToClientTypeEnum,
|
|
38
|
+
Unknown: 'UNKNOWN' as OwnerRelationshipToClientTypeEnum
|
|
39
|
+
};
|
|
25
40
|
export type RelationshipToClientTypeEnum = 'CHILD' | 'EMPLOYER' | 'FAMILY_MEMBER' | 'FRIEND' | 'LAWYER' | 'OTHER' | 'PARENT' | 'SELF' | 'SERVICE_PROVIDER' | 'SIGNIFICANT_OTHER' | 'UNKNOWN';
|
|
26
41
|
export const RelationshipToClientTypeEnum = {
|
|
27
42
|
Child: 'CHILD' as RelationshipToClientTypeEnum,
|
|
@@ -29,10 +29,11 @@ export namespace ListBillingSubscriptionModel {
|
|
|
29
29
|
Weekly: 'WEEKLY' as BillingIntervalEnum,
|
|
30
30
|
Yearly: 'YEARLY' as BillingIntervalEnum
|
|
31
31
|
};
|
|
32
|
-
export type SubscriptionStatusEnum = 'ACTIVE' | 'CANCELED' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID';
|
|
32
|
+
export type SubscriptionStatusEnum = 'ACTIVE' | 'CANCELED' | 'COMPLETE' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID';
|
|
33
33
|
export const SubscriptionStatusEnum = {
|
|
34
34
|
Active: 'ACTIVE' as SubscriptionStatusEnum,
|
|
35
35
|
Canceled: 'CANCELED' as SubscriptionStatusEnum,
|
|
36
|
+
Complete: 'COMPLETE' as SubscriptionStatusEnum,
|
|
36
37
|
Incomplete: 'INCOMPLETE' as SubscriptionStatusEnum,
|
|
37
38
|
IncompleteExpired: 'INCOMPLETE_EXPIRED' as SubscriptionStatusEnum,
|
|
38
39
|
InTrialPeriod: 'IN_TRIAL_PERIOD' as SubscriptionStatusEnum,
|
|
@@ -26,10 +26,11 @@ export namespace UserSubscriptionPlanModel {
|
|
|
26
26
|
OtrFastlane: 'OTR_FASTLANE' as ProductNameEnum,
|
|
27
27
|
OtrFastlaneTeen: 'OTR_FASTLANE_TEEN' as ProductNameEnum
|
|
28
28
|
};
|
|
29
|
-
export type SubscriptionStatusEnum = 'ACTIVE' | 'CANCELED' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID';
|
|
29
|
+
export type SubscriptionStatusEnum = 'ACTIVE' | 'CANCELED' | 'COMPLETE' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID';
|
|
30
30
|
export const SubscriptionStatusEnum = {
|
|
31
31
|
Active: 'ACTIVE' as SubscriptionStatusEnum,
|
|
32
32
|
Canceled: 'CANCELED' as SubscriptionStatusEnum,
|
|
33
|
+
Complete: 'COMPLETE' as SubscriptionStatusEnum,
|
|
33
34
|
Incomplete: 'INCOMPLETE' as SubscriptionStatusEnum,
|
|
34
35
|
IncompleteExpired: 'INCOMPLETE_EXPIRED' as SubscriptionStatusEnum,
|
|
35
36
|
InTrialPeriod: 'IN_TRIAL_PERIOD' as SubscriptionStatusEnum,
|
|
@@ -25,10 +25,11 @@ export namespace UserSubscriptionPlanModelReq {
|
|
|
25
25
|
OtrFastlane: 'OTR_FASTLANE' as ProductNameEnum,
|
|
26
26
|
OtrFastlaneTeen: 'OTR_FASTLANE_TEEN' as ProductNameEnum
|
|
27
27
|
};
|
|
28
|
-
export type SubscriptionStatusEnum = 'ACTIVE' | 'CANCELED' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID';
|
|
28
|
+
export type SubscriptionStatusEnum = 'ACTIVE' | 'CANCELED' | 'COMPLETE' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID';
|
|
29
29
|
export const SubscriptionStatusEnum = {
|
|
30
30
|
Active: 'ACTIVE' as SubscriptionStatusEnum,
|
|
31
31
|
Canceled: 'CANCELED' as SubscriptionStatusEnum,
|
|
32
|
+
Complete: 'COMPLETE' as SubscriptionStatusEnum,
|
|
32
33
|
Incomplete: 'INCOMPLETE' as SubscriptionStatusEnum,
|
|
33
34
|
IncompleteExpired: 'INCOMPLETE_EXPIRED' as SubscriptionStatusEnum,
|
|
34
35
|
InTrialPeriod: 'IN_TRIAL_PERIOD' as SubscriptionStatusEnum,
|
|
@@ -26,10 +26,11 @@ export namespace UserSubscriptionPlanModelRes {
|
|
|
26
26
|
OtrFastlane: 'OTR_FASTLANE' as ProductNameEnum,
|
|
27
27
|
OtrFastlaneTeen: 'OTR_FASTLANE_TEEN' as ProductNameEnum
|
|
28
28
|
};
|
|
29
|
-
export type SubscriptionStatusEnum = 'ACTIVE' | 'CANCELED' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID';
|
|
29
|
+
export type SubscriptionStatusEnum = 'ACTIVE' | 'CANCELED' | 'COMPLETE' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID';
|
|
30
30
|
export const SubscriptionStatusEnum = {
|
|
31
31
|
Active: 'ACTIVE' as SubscriptionStatusEnum,
|
|
32
32
|
Canceled: 'CANCELED' as SubscriptionStatusEnum,
|
|
33
|
+
Complete: 'COMPLETE' as SubscriptionStatusEnum,
|
|
33
34
|
Incomplete: 'INCOMPLETE' as SubscriptionStatusEnum,
|
|
34
35
|
IncompleteExpired: 'INCOMPLETE_EXPIRED' as SubscriptionStatusEnum,
|
|
35
36
|
InTrialPeriod: 'IN_TRIAL_PERIOD' as SubscriptionStatusEnum,
|
|
@@ -119,7 +119,7 @@ export declare class ConsoleListControllerApi {
|
|
|
119
119
|
* @param subscriberName subscriberName
|
|
120
120
|
* @param timeZoneId timeZoneId
|
|
121
121
|
*/
|
|
122
|
-
listBillingSubscribersUsingGET(billingInterval?: 'DAILY' | 'MONTHLY' | 'QUARTERLY' | 'WEEKLY' | 'YEARLY', billingSubscriptionStatus?: 'ACTIVE' | 'CANCELED' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID', coveredSubscriptionsOnly?: boolean, endDate?: string, length?: number, page?: number, planName?: string, shouldIncludeSubscribers?: boolean, sortBy?: string, sortOrder?: string, startDate?: string, subscriberName?: string, timeZoneId?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListBillingSubscribersResponse>;
|
|
122
|
+
listBillingSubscribersUsingGET(billingInterval?: 'DAILY' | 'MONTHLY' | 'QUARTERLY' | 'WEEKLY' | 'YEARLY', billingSubscriptionStatus?: 'ACTIVE' | 'CANCELED' | 'COMPLETE' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID', coveredSubscriptionsOnly?: boolean, endDate?: string, length?: number, page?: number, planName?: string, shouldIncludeSubscribers?: boolean, sortBy?: string, sortOrder?: string, startDate?: string, subscriberName?: string, timeZoneId?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListBillingSubscribersResponse>;
|
|
123
123
|
/**
|
|
124
124
|
*
|
|
125
125
|
* @summary listLawfirmLeads
|
|
@@ -15,6 +15,7 @@ export var BillingSubscriptionModel;
|
|
|
15
15
|
(function (StatusEnum) {
|
|
16
16
|
StatusEnum[StatusEnum["ACTIVE"] = 'ACTIVE'] = "ACTIVE";
|
|
17
17
|
StatusEnum[StatusEnum["CANCELED"] = 'CANCELED'] = "CANCELED";
|
|
18
|
+
StatusEnum[StatusEnum["COMPLETE"] = 'COMPLETE'] = "COMPLETE";
|
|
18
19
|
StatusEnum[StatusEnum["INCOMPLETE"] = 'INCOMPLETE'] = "INCOMPLETE";
|
|
19
20
|
StatusEnum[StatusEnum["INCOMPLETEEXPIRED"] = 'INCOMPLETE_EXPIRED'] = "INCOMPLETEEXPIRED";
|
|
20
21
|
StatusEnum[StatusEnum["INTRIALPERIOD"] = 'IN_TRIAL_PERIOD'] = "INTRIALPERIOD";
|
|
@@ -15,6 +15,7 @@ export var CancelBillingSubscriptionResponse;
|
|
|
15
15
|
(function (StatusEnum) {
|
|
16
16
|
StatusEnum[StatusEnum["ACTIVE"] = 'ACTIVE'] = "ACTIVE";
|
|
17
17
|
StatusEnum[StatusEnum["CANCELED"] = 'CANCELED'] = "CANCELED";
|
|
18
|
+
StatusEnum[StatusEnum["COMPLETE"] = 'COMPLETE'] = "COMPLETE";
|
|
18
19
|
StatusEnum[StatusEnum["INCOMPLETE"] = 'INCOMPLETE'] = "INCOMPLETE";
|
|
19
20
|
StatusEnum[StatusEnum["INCOMPLETEEXPIRED"] = 'INCOMPLETE_EXPIRED'] = "INCOMPLETEEXPIRED";
|
|
20
21
|
StatusEnum[StatusEnum["INTRIALPERIOD"] = 'IN_TRIAL_PERIOD'] = "INTRIALPERIOD";
|
|
@@ -15,6 +15,7 @@ export var CreateBillingSubscriptionResponse;
|
|
|
15
15
|
(function (StatusEnum) {
|
|
16
16
|
StatusEnum[StatusEnum["ACTIVE"] = 'ACTIVE'] = "ACTIVE";
|
|
17
17
|
StatusEnum[StatusEnum["CANCELED"] = 'CANCELED'] = "CANCELED";
|
|
18
|
+
StatusEnum[StatusEnum["COMPLETE"] = 'COMPLETE'] = "COMPLETE";
|
|
18
19
|
StatusEnum[StatusEnum["INCOMPLETE"] = 'INCOMPLETE'] = "INCOMPLETE";
|
|
19
20
|
StatusEnum[StatusEnum["INCOMPLETEEXPIRED"] = 'INCOMPLETE_EXPIRED'] = "INCOMPLETEEXPIRED";
|
|
20
21
|
StatusEnum[StatusEnum["INTRIALPERIOD"] = 'IN_TRIAL_PERIOD'] = "INTRIALPERIOD";
|
|
@@ -16,10 +16,24 @@ export interface DefendantDetailsModel {
|
|
|
16
16
|
"firstName"?: string;
|
|
17
17
|
"hasFinancialAccess"?: boolean;
|
|
18
18
|
"lastName"?: string;
|
|
19
|
+
"ownerRelationshipToClientType"?: DefendantDetailsModel.OwnerRelationshipToClientTypeEnum;
|
|
19
20
|
"relationshipToClientType"?: DefendantDetailsModel.RelationshipToClientTypeEnum;
|
|
20
21
|
"userId"?: number;
|
|
21
22
|
}
|
|
22
23
|
export declare namespace DefendantDetailsModel {
|
|
24
|
+
enum OwnerRelationshipToClientTypeEnum {
|
|
25
|
+
CHILD,
|
|
26
|
+
EMPLOYER,
|
|
27
|
+
FAMILYMEMBER,
|
|
28
|
+
FRIEND,
|
|
29
|
+
LAWYER,
|
|
30
|
+
OTHER,
|
|
31
|
+
PARENT,
|
|
32
|
+
SELF,
|
|
33
|
+
SERVICEPROVIDER,
|
|
34
|
+
SIGNIFICANTOTHER,
|
|
35
|
+
UNKNOWN
|
|
36
|
+
}
|
|
23
37
|
enum RelationshipToClientTypeEnum {
|
|
24
38
|
CHILD,
|
|
25
39
|
EMPLOYER,
|
|
@@ -11,6 +11,20 @@
|
|
|
11
11
|
*/
|
|
12
12
|
export var DefendantDetailsModel;
|
|
13
13
|
(function (DefendantDetailsModel) {
|
|
14
|
+
let OwnerRelationshipToClientTypeEnum;
|
|
15
|
+
(function (OwnerRelationshipToClientTypeEnum) {
|
|
16
|
+
OwnerRelationshipToClientTypeEnum[OwnerRelationshipToClientTypeEnum["CHILD"] = 'CHILD'] = "CHILD";
|
|
17
|
+
OwnerRelationshipToClientTypeEnum[OwnerRelationshipToClientTypeEnum["EMPLOYER"] = 'EMPLOYER'] = "EMPLOYER";
|
|
18
|
+
OwnerRelationshipToClientTypeEnum[OwnerRelationshipToClientTypeEnum["FAMILYMEMBER"] = 'FAMILY_MEMBER'] = "FAMILYMEMBER";
|
|
19
|
+
OwnerRelationshipToClientTypeEnum[OwnerRelationshipToClientTypeEnum["FRIEND"] = 'FRIEND'] = "FRIEND";
|
|
20
|
+
OwnerRelationshipToClientTypeEnum[OwnerRelationshipToClientTypeEnum["LAWYER"] = 'LAWYER'] = "LAWYER";
|
|
21
|
+
OwnerRelationshipToClientTypeEnum[OwnerRelationshipToClientTypeEnum["OTHER"] = 'OTHER'] = "OTHER";
|
|
22
|
+
OwnerRelationshipToClientTypeEnum[OwnerRelationshipToClientTypeEnum["PARENT"] = 'PARENT'] = "PARENT";
|
|
23
|
+
OwnerRelationshipToClientTypeEnum[OwnerRelationshipToClientTypeEnum["SELF"] = 'SELF'] = "SELF";
|
|
24
|
+
OwnerRelationshipToClientTypeEnum[OwnerRelationshipToClientTypeEnum["SERVICEPROVIDER"] = 'SERVICE_PROVIDER'] = "SERVICEPROVIDER";
|
|
25
|
+
OwnerRelationshipToClientTypeEnum[OwnerRelationshipToClientTypeEnum["SIGNIFICANTOTHER"] = 'SIGNIFICANT_OTHER'] = "SIGNIFICANTOTHER";
|
|
26
|
+
OwnerRelationshipToClientTypeEnum[OwnerRelationshipToClientTypeEnum["UNKNOWN"] = 'UNKNOWN'] = "UNKNOWN";
|
|
27
|
+
})(OwnerRelationshipToClientTypeEnum = DefendantDetailsModel.OwnerRelationshipToClientTypeEnum || (DefendantDetailsModel.OwnerRelationshipToClientTypeEnum = {}));
|
|
14
28
|
let RelationshipToClientTypeEnum;
|
|
15
29
|
(function (RelationshipToClientTypeEnum) {
|
|
16
30
|
RelationshipToClientTypeEnum[RelationshipToClientTypeEnum["CHILD"] = 'CHILD'] = "CHILD";
|
|
@@ -23,6 +23,7 @@ export var ListBillingSubscriptionModel;
|
|
|
23
23
|
(function (SubscriptionStatusEnum) {
|
|
24
24
|
SubscriptionStatusEnum[SubscriptionStatusEnum["ACTIVE"] = 'ACTIVE'] = "ACTIVE";
|
|
25
25
|
SubscriptionStatusEnum[SubscriptionStatusEnum["CANCELED"] = 'CANCELED'] = "CANCELED";
|
|
26
|
+
SubscriptionStatusEnum[SubscriptionStatusEnum["COMPLETE"] = 'COMPLETE'] = "COMPLETE";
|
|
26
27
|
SubscriptionStatusEnum[SubscriptionStatusEnum["INCOMPLETE"] = 'INCOMPLETE'] = "INCOMPLETE";
|
|
27
28
|
SubscriptionStatusEnum[SubscriptionStatusEnum["INCOMPLETEEXPIRED"] = 'INCOMPLETE_EXPIRED'] = "INCOMPLETEEXPIRED";
|
|
28
29
|
SubscriptionStatusEnum[SubscriptionStatusEnum["INTRIALPERIOD"] = 'IN_TRIAL_PERIOD'] = "INTRIALPERIOD";
|
|
@@ -21,6 +21,7 @@ export var UserSubscriptionPlanModel;
|
|
|
21
21
|
(function (SubscriptionStatusEnum) {
|
|
22
22
|
SubscriptionStatusEnum[SubscriptionStatusEnum["ACTIVE"] = 'ACTIVE'] = "ACTIVE";
|
|
23
23
|
SubscriptionStatusEnum[SubscriptionStatusEnum["CANCELED"] = 'CANCELED'] = "CANCELED";
|
|
24
|
+
SubscriptionStatusEnum[SubscriptionStatusEnum["COMPLETE"] = 'COMPLETE'] = "COMPLETE";
|
|
24
25
|
SubscriptionStatusEnum[SubscriptionStatusEnum["INCOMPLETE"] = 'INCOMPLETE'] = "INCOMPLETE";
|
|
25
26
|
SubscriptionStatusEnum[SubscriptionStatusEnum["INCOMPLETEEXPIRED"] = 'INCOMPLETE_EXPIRED'] = "INCOMPLETEEXPIRED";
|
|
26
27
|
SubscriptionStatusEnum[SubscriptionStatusEnum["INTRIALPERIOD"] = 'IN_TRIAL_PERIOD'] = "INTRIALPERIOD";
|
|
@@ -21,6 +21,7 @@ export var UserSubscriptionPlanModelReq;
|
|
|
21
21
|
(function (SubscriptionStatusEnum) {
|
|
22
22
|
SubscriptionStatusEnum[SubscriptionStatusEnum["ACTIVE"] = 'ACTIVE'] = "ACTIVE";
|
|
23
23
|
SubscriptionStatusEnum[SubscriptionStatusEnum["CANCELED"] = 'CANCELED'] = "CANCELED";
|
|
24
|
+
SubscriptionStatusEnum[SubscriptionStatusEnum["COMPLETE"] = 'COMPLETE'] = "COMPLETE";
|
|
24
25
|
SubscriptionStatusEnum[SubscriptionStatusEnum["INCOMPLETE"] = 'INCOMPLETE'] = "INCOMPLETE";
|
|
25
26
|
SubscriptionStatusEnum[SubscriptionStatusEnum["INCOMPLETEEXPIRED"] = 'INCOMPLETE_EXPIRED'] = "INCOMPLETEEXPIRED";
|
|
26
27
|
SubscriptionStatusEnum[SubscriptionStatusEnum["INTRIALPERIOD"] = 'IN_TRIAL_PERIOD'] = "INTRIALPERIOD";
|
|
@@ -21,6 +21,7 @@ export var UserSubscriptionPlanModelRes;
|
|
|
21
21
|
(function (SubscriptionStatusEnum) {
|
|
22
22
|
SubscriptionStatusEnum[SubscriptionStatusEnum["ACTIVE"] = 'ACTIVE'] = "ACTIVE";
|
|
23
23
|
SubscriptionStatusEnum[SubscriptionStatusEnum["CANCELED"] = 'CANCELED'] = "CANCELED";
|
|
24
|
+
SubscriptionStatusEnum[SubscriptionStatusEnum["COMPLETE"] = 'COMPLETE'] = "COMPLETE";
|
|
24
25
|
SubscriptionStatusEnum[SubscriptionStatusEnum["INCOMPLETE"] = 'INCOMPLETE'] = "INCOMPLETE";
|
|
25
26
|
SubscriptionStatusEnum[SubscriptionStatusEnum["INCOMPLETEEXPIRED"] = 'INCOMPLETE_EXPIRED'] = "INCOMPLETEEXPIRED";
|
|
26
27
|
SubscriptionStatusEnum[SubscriptionStatusEnum["INTRIALPERIOD"] = 'IN_TRIAL_PERIOD'] = "INTRIALPERIOD";
|
|
@@ -234,6 +234,7 @@ export declare enum ListBillingSubscribersUsingGETBillingIntervalEnum {
|
|
|
234
234
|
export declare enum ListBillingSubscribersUsingGETBillingSubscriptionStatusEnum {
|
|
235
235
|
ACTIVE = "ACTIVE",
|
|
236
236
|
CANCELED = "CANCELED",
|
|
237
|
+
COMPLETE = "COMPLETE",
|
|
237
238
|
INCOMPLETE = "INCOMPLETE",
|
|
238
239
|
INCOMPLETEEXPIRED = "INCOMPLETE_EXPIRED",
|
|
239
240
|
INTRIALPERIOD = "IN_TRIAL_PERIOD",
|
|
@@ -592,6 +592,7 @@ export var ListBillingSubscribersUsingGETBillingSubscriptionStatusEnum;
|
|
|
592
592
|
(function (ListBillingSubscribersUsingGETBillingSubscriptionStatusEnum) {
|
|
593
593
|
ListBillingSubscribersUsingGETBillingSubscriptionStatusEnum["ACTIVE"] = "ACTIVE";
|
|
594
594
|
ListBillingSubscribersUsingGETBillingSubscriptionStatusEnum["CANCELED"] = "CANCELED";
|
|
595
|
+
ListBillingSubscribersUsingGETBillingSubscriptionStatusEnum["COMPLETE"] = "COMPLETE";
|
|
595
596
|
ListBillingSubscribersUsingGETBillingSubscriptionStatusEnum["INCOMPLETE"] = "INCOMPLETE";
|
|
596
597
|
ListBillingSubscribersUsingGETBillingSubscriptionStatusEnum["INCOMPLETEEXPIRED"] = "INCOMPLETE_EXPIRED";
|
|
597
598
|
ListBillingSubscribersUsingGETBillingSubscriptionStatusEnum["INTRIALPERIOD"] = "IN_TRIAL_PERIOD";
|
|
@@ -87,6 +87,7 @@ export declare function BillingSubscriptionModelToJSON(value?: BillingSubscripti
|
|
|
87
87
|
export declare enum BillingSubscriptionModelStatusEnum {
|
|
88
88
|
ACTIVE = "ACTIVE",
|
|
89
89
|
CANCELED = "CANCELED",
|
|
90
|
+
COMPLETE = "COMPLETE",
|
|
90
91
|
INCOMPLETE = "INCOMPLETE",
|
|
91
92
|
INCOMPLETEEXPIRED = "INCOMPLETE_EXPIRED",
|
|
92
93
|
INTRIALPERIOD = "IN_TRIAL_PERIOD",
|
|
@@ -61,6 +61,7 @@ export var BillingSubscriptionModelStatusEnum;
|
|
|
61
61
|
(function (BillingSubscriptionModelStatusEnum) {
|
|
62
62
|
BillingSubscriptionModelStatusEnum["ACTIVE"] = "ACTIVE";
|
|
63
63
|
BillingSubscriptionModelStatusEnum["CANCELED"] = "CANCELED";
|
|
64
|
+
BillingSubscriptionModelStatusEnum["COMPLETE"] = "COMPLETE";
|
|
64
65
|
BillingSubscriptionModelStatusEnum["INCOMPLETE"] = "INCOMPLETE";
|
|
65
66
|
BillingSubscriptionModelStatusEnum["INCOMPLETEEXPIRED"] = "INCOMPLETE_EXPIRED";
|
|
66
67
|
BillingSubscriptionModelStatusEnum["INTRIALPERIOD"] = "IN_TRIAL_PERIOD";
|
|
@@ -56,6 +56,7 @@ export declare function CancelBillingSubscriptionResponseToJSON(value?: CancelBi
|
|
|
56
56
|
export declare enum CancelBillingSubscriptionResponseStatusEnum {
|
|
57
57
|
ACTIVE = "ACTIVE",
|
|
58
58
|
CANCELED = "CANCELED",
|
|
59
|
+
COMPLETE = "COMPLETE",
|
|
59
60
|
INCOMPLETE = "INCOMPLETE",
|
|
60
61
|
INCOMPLETEEXPIRED = "INCOMPLETE_EXPIRED",
|
|
61
62
|
INTRIALPERIOD = "IN_TRIAL_PERIOD",
|
|
@@ -50,6 +50,7 @@ export var CancelBillingSubscriptionResponseStatusEnum;
|
|
|
50
50
|
(function (CancelBillingSubscriptionResponseStatusEnum) {
|
|
51
51
|
CancelBillingSubscriptionResponseStatusEnum["ACTIVE"] = "ACTIVE";
|
|
52
52
|
CancelBillingSubscriptionResponseStatusEnum["CANCELED"] = "CANCELED";
|
|
53
|
+
CancelBillingSubscriptionResponseStatusEnum["COMPLETE"] = "COMPLETE";
|
|
53
54
|
CancelBillingSubscriptionResponseStatusEnum["INCOMPLETE"] = "INCOMPLETE";
|
|
54
55
|
CancelBillingSubscriptionResponseStatusEnum["INCOMPLETEEXPIRED"] = "INCOMPLETE_EXPIRED";
|
|
55
56
|
CancelBillingSubscriptionResponseStatusEnum["INTRIALPERIOD"] = "IN_TRIAL_PERIOD";
|
|
@@ -51,6 +51,7 @@ export declare function CreateBillingSubscriptionResponseToJSON(value?: CreateBi
|
|
|
51
51
|
export declare enum CreateBillingSubscriptionResponseStatusEnum {
|
|
52
52
|
ACTIVE = "ACTIVE",
|
|
53
53
|
CANCELED = "CANCELED",
|
|
54
|
+
COMPLETE = "COMPLETE",
|
|
54
55
|
INCOMPLETE = "INCOMPLETE",
|
|
55
56
|
INCOMPLETEEXPIRED = "INCOMPLETE_EXPIRED",
|
|
56
57
|
INTRIALPERIOD = "IN_TRIAL_PERIOD",
|
|
@@ -49,6 +49,7 @@ export var CreateBillingSubscriptionResponseStatusEnum;
|
|
|
49
49
|
(function (CreateBillingSubscriptionResponseStatusEnum) {
|
|
50
50
|
CreateBillingSubscriptionResponseStatusEnum["ACTIVE"] = "ACTIVE";
|
|
51
51
|
CreateBillingSubscriptionResponseStatusEnum["CANCELED"] = "CANCELED";
|
|
52
|
+
CreateBillingSubscriptionResponseStatusEnum["COMPLETE"] = "COMPLETE";
|
|
52
53
|
CreateBillingSubscriptionResponseStatusEnum["INCOMPLETE"] = "INCOMPLETE";
|
|
53
54
|
CreateBillingSubscriptionResponseStatusEnum["INCOMPLETEEXPIRED"] = "INCOMPLETE_EXPIRED";
|
|
54
55
|
CreateBillingSubscriptionResponseStatusEnum["INTRIALPERIOD"] = "IN_TRIAL_PERIOD";
|
|
@@ -51,6 +51,12 @@ export interface DefendantDetailsModel {
|
|
|
51
51
|
* @memberof DefendantDetailsModel
|
|
52
52
|
*/
|
|
53
53
|
lastName?: string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof DefendantDetailsModel
|
|
58
|
+
*/
|
|
59
|
+
ownerRelationshipToClientType?: DefendantDetailsModelOwnerRelationshipToClientTypeEnum;
|
|
54
60
|
/**
|
|
55
61
|
*
|
|
56
62
|
* @type {string}
|
|
@@ -71,6 +77,23 @@ export declare function DefendantDetailsModelToJSON(value?: DefendantDetailsMode
|
|
|
71
77
|
* @export
|
|
72
78
|
* @enum {string}
|
|
73
79
|
*/
|
|
80
|
+
export declare enum DefendantDetailsModelOwnerRelationshipToClientTypeEnum {
|
|
81
|
+
CHILD = "CHILD",
|
|
82
|
+
EMPLOYER = "EMPLOYER",
|
|
83
|
+
FAMILYMEMBER = "FAMILY_MEMBER",
|
|
84
|
+
FRIEND = "FRIEND",
|
|
85
|
+
LAWYER = "LAWYER",
|
|
86
|
+
OTHER = "OTHER",
|
|
87
|
+
PARENT = "PARENT",
|
|
88
|
+
SELF = "SELF",
|
|
89
|
+
SERVICEPROVIDER = "SERVICE_PROVIDER",
|
|
90
|
+
SIGNIFICANTOTHER = "SIGNIFICANT_OTHER",
|
|
91
|
+
UNKNOWN = "UNKNOWN"
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* @export
|
|
95
|
+
* @enum {string}
|
|
96
|
+
*/
|
|
74
97
|
export declare enum DefendantDetailsModelRelationshipToClientTypeEnum {
|
|
75
98
|
CHILD = "CHILD",
|
|
76
99
|
EMPLOYER = "EMPLOYER",
|
|
@@ -26,6 +26,7 @@ export function DefendantDetailsModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
26
26
|
'firstName': !exists(json, 'firstName') ? undefined : json['firstName'],
|
|
27
27
|
'hasFinancialAccess': !exists(json, 'hasFinancialAccess') ? undefined : json['hasFinancialAccess'],
|
|
28
28
|
'lastName': !exists(json, 'lastName') ? undefined : json['lastName'],
|
|
29
|
+
'ownerRelationshipToClientType': !exists(json, 'ownerRelationshipToClientType') ? undefined : json['ownerRelationshipToClientType'],
|
|
29
30
|
'relationshipToClientType': !exists(json, 'relationshipToClientType') ? undefined : json['relationshipToClientType'],
|
|
30
31
|
'userId': !exists(json, 'userId') ? undefined : json['userId'],
|
|
31
32
|
};
|
|
@@ -44,6 +45,7 @@ export function DefendantDetailsModelToJSON(value) {
|
|
|
44
45
|
'firstName': value.firstName,
|
|
45
46
|
'hasFinancialAccess': value.hasFinancialAccess,
|
|
46
47
|
'lastName': value.lastName,
|
|
48
|
+
'ownerRelationshipToClientType': value.ownerRelationshipToClientType,
|
|
47
49
|
'relationshipToClientType': value.relationshipToClientType,
|
|
48
50
|
'userId': value.userId,
|
|
49
51
|
};
|
|
@@ -52,6 +54,24 @@ export function DefendantDetailsModelToJSON(value) {
|
|
|
52
54
|
* @export
|
|
53
55
|
* @enum {string}
|
|
54
56
|
*/
|
|
57
|
+
export var DefendantDetailsModelOwnerRelationshipToClientTypeEnum;
|
|
58
|
+
(function (DefendantDetailsModelOwnerRelationshipToClientTypeEnum) {
|
|
59
|
+
DefendantDetailsModelOwnerRelationshipToClientTypeEnum["CHILD"] = "CHILD";
|
|
60
|
+
DefendantDetailsModelOwnerRelationshipToClientTypeEnum["EMPLOYER"] = "EMPLOYER";
|
|
61
|
+
DefendantDetailsModelOwnerRelationshipToClientTypeEnum["FAMILYMEMBER"] = "FAMILY_MEMBER";
|
|
62
|
+
DefendantDetailsModelOwnerRelationshipToClientTypeEnum["FRIEND"] = "FRIEND";
|
|
63
|
+
DefendantDetailsModelOwnerRelationshipToClientTypeEnum["LAWYER"] = "LAWYER";
|
|
64
|
+
DefendantDetailsModelOwnerRelationshipToClientTypeEnum["OTHER"] = "OTHER";
|
|
65
|
+
DefendantDetailsModelOwnerRelationshipToClientTypeEnum["PARENT"] = "PARENT";
|
|
66
|
+
DefendantDetailsModelOwnerRelationshipToClientTypeEnum["SELF"] = "SELF";
|
|
67
|
+
DefendantDetailsModelOwnerRelationshipToClientTypeEnum["SERVICEPROVIDER"] = "SERVICE_PROVIDER";
|
|
68
|
+
DefendantDetailsModelOwnerRelationshipToClientTypeEnum["SIGNIFICANTOTHER"] = "SIGNIFICANT_OTHER";
|
|
69
|
+
DefendantDetailsModelOwnerRelationshipToClientTypeEnum["UNKNOWN"] = "UNKNOWN";
|
|
70
|
+
})(DefendantDetailsModelOwnerRelationshipToClientTypeEnum || (DefendantDetailsModelOwnerRelationshipToClientTypeEnum = {}));
|
|
71
|
+
/**
|
|
72
|
+
* @export
|
|
73
|
+
* @enum {string}
|
|
74
|
+
*/
|
|
55
75
|
export var DefendantDetailsModelRelationshipToClientTypeEnum;
|
|
56
76
|
(function (DefendantDetailsModelRelationshipToClientTypeEnum) {
|
|
57
77
|
DefendantDetailsModelRelationshipToClientTypeEnum["CHILD"] = "CHILD";
|
|
@@ -79,6 +79,7 @@ export declare enum ListBillingSubscriptionModelBillingIntervalEnum {
|
|
|
79
79
|
export declare enum ListBillingSubscriptionModelSubscriptionStatusEnum {
|
|
80
80
|
ACTIVE = "ACTIVE",
|
|
81
81
|
CANCELED = "CANCELED",
|
|
82
|
+
COMPLETE = "COMPLETE",
|
|
82
83
|
INCOMPLETE = "INCOMPLETE",
|
|
83
84
|
INCOMPLETEEXPIRED = "INCOMPLETE_EXPIRED",
|
|
84
85
|
INTRIALPERIOD = "IN_TRIAL_PERIOD",
|
|
@@ -66,6 +66,7 @@ export var ListBillingSubscriptionModelSubscriptionStatusEnum;
|
|
|
66
66
|
(function (ListBillingSubscriptionModelSubscriptionStatusEnum) {
|
|
67
67
|
ListBillingSubscriptionModelSubscriptionStatusEnum["ACTIVE"] = "ACTIVE";
|
|
68
68
|
ListBillingSubscriptionModelSubscriptionStatusEnum["CANCELED"] = "CANCELED";
|
|
69
|
+
ListBillingSubscriptionModelSubscriptionStatusEnum["COMPLETE"] = "COMPLETE";
|
|
69
70
|
ListBillingSubscriptionModelSubscriptionStatusEnum["INCOMPLETE"] = "INCOMPLETE";
|
|
70
71
|
ListBillingSubscriptionModelSubscriptionStatusEnum["INCOMPLETEEXPIRED"] = "INCOMPLETE_EXPIRED";
|
|
71
72
|
ListBillingSubscriptionModelSubscriptionStatusEnum["INTRIALPERIOD"] = "IN_TRIAL_PERIOD";
|
|
@@ -71,6 +71,7 @@ export declare enum UserSubscriptionPlanModelProductNameEnum {
|
|
|
71
71
|
export declare enum UserSubscriptionPlanModelSubscriptionStatusEnum {
|
|
72
72
|
ACTIVE = "ACTIVE",
|
|
73
73
|
CANCELED = "CANCELED",
|
|
74
|
+
COMPLETE = "COMPLETE",
|
|
74
75
|
INCOMPLETE = "INCOMPLETE",
|
|
75
76
|
INCOMPLETEEXPIRED = "INCOMPLETE_EXPIRED",
|
|
76
77
|
INTRIALPERIOD = "IN_TRIAL_PERIOD",
|
|
@@ -62,6 +62,7 @@ export var UserSubscriptionPlanModelSubscriptionStatusEnum;
|
|
|
62
62
|
(function (UserSubscriptionPlanModelSubscriptionStatusEnum) {
|
|
63
63
|
UserSubscriptionPlanModelSubscriptionStatusEnum["ACTIVE"] = "ACTIVE";
|
|
64
64
|
UserSubscriptionPlanModelSubscriptionStatusEnum["CANCELED"] = "CANCELED";
|
|
65
|
+
UserSubscriptionPlanModelSubscriptionStatusEnum["COMPLETE"] = "COMPLETE";
|
|
65
66
|
UserSubscriptionPlanModelSubscriptionStatusEnum["INCOMPLETE"] = "INCOMPLETE";
|
|
66
67
|
UserSubscriptionPlanModelSubscriptionStatusEnum["INCOMPLETEEXPIRED"] = "INCOMPLETE_EXPIRED";
|
|
67
68
|
UserSubscriptionPlanModelSubscriptionStatusEnum["INTRIALPERIOD"] = "IN_TRIAL_PERIOD";
|
|
@@ -65,6 +65,7 @@ export declare enum UserSubscriptionPlanModelReqProductNameEnum {
|
|
|
65
65
|
export declare enum UserSubscriptionPlanModelReqSubscriptionStatusEnum {
|
|
66
66
|
ACTIVE = "ACTIVE",
|
|
67
67
|
CANCELED = "CANCELED",
|
|
68
|
+
COMPLETE = "COMPLETE",
|
|
68
69
|
INCOMPLETE = "INCOMPLETE",
|
|
69
70
|
INCOMPLETEEXPIRED = "INCOMPLETE_EXPIRED",
|
|
70
71
|
INTRIALPERIOD = "IN_TRIAL_PERIOD",
|
|
@@ -60,6 +60,7 @@ export var UserSubscriptionPlanModelReqSubscriptionStatusEnum;
|
|
|
60
60
|
(function (UserSubscriptionPlanModelReqSubscriptionStatusEnum) {
|
|
61
61
|
UserSubscriptionPlanModelReqSubscriptionStatusEnum["ACTIVE"] = "ACTIVE";
|
|
62
62
|
UserSubscriptionPlanModelReqSubscriptionStatusEnum["CANCELED"] = "CANCELED";
|
|
63
|
+
UserSubscriptionPlanModelReqSubscriptionStatusEnum["COMPLETE"] = "COMPLETE";
|
|
63
64
|
UserSubscriptionPlanModelReqSubscriptionStatusEnum["INCOMPLETE"] = "INCOMPLETE";
|
|
64
65
|
UserSubscriptionPlanModelReqSubscriptionStatusEnum["INCOMPLETEEXPIRED"] = "INCOMPLETE_EXPIRED";
|
|
65
66
|
UserSubscriptionPlanModelReqSubscriptionStatusEnum["INTRIALPERIOD"] = "IN_TRIAL_PERIOD";
|
|
@@ -71,6 +71,7 @@ export declare enum UserSubscriptionPlanModelResProductNameEnum {
|
|
|
71
71
|
export declare enum UserSubscriptionPlanModelResSubscriptionStatusEnum {
|
|
72
72
|
ACTIVE = "ACTIVE",
|
|
73
73
|
CANCELED = "CANCELED",
|
|
74
|
+
COMPLETE = "COMPLETE",
|
|
74
75
|
INCOMPLETE = "INCOMPLETE",
|
|
75
76
|
INCOMPLETEEXPIRED = "INCOMPLETE_EXPIRED",
|
|
76
77
|
INTRIALPERIOD = "IN_TRIAL_PERIOD",
|
|
@@ -62,6 +62,7 @@ export var UserSubscriptionPlanModelResSubscriptionStatusEnum;
|
|
|
62
62
|
(function (UserSubscriptionPlanModelResSubscriptionStatusEnum) {
|
|
63
63
|
UserSubscriptionPlanModelResSubscriptionStatusEnum["ACTIVE"] = "ACTIVE";
|
|
64
64
|
UserSubscriptionPlanModelResSubscriptionStatusEnum["CANCELED"] = "CANCELED";
|
|
65
|
+
UserSubscriptionPlanModelResSubscriptionStatusEnum["COMPLETE"] = "COMPLETE";
|
|
65
66
|
UserSubscriptionPlanModelResSubscriptionStatusEnum["INCOMPLETE"] = "INCOMPLETE";
|
|
66
67
|
UserSubscriptionPlanModelResSubscriptionStatusEnum["INCOMPLETEEXPIRED"] = "INCOMPLETE_EXPIRED";
|
|
67
68
|
UserSubscriptionPlanModelResSubscriptionStatusEnum["INTRIALPERIOD"] = "IN_TRIAL_PERIOD";
|
|
@@ -9881,6 +9881,8 @@ export interface components {
|
|
|
9881
9881
|
hasFinancialAccess?: boolean;
|
|
9882
9882
|
lastName?: string;
|
|
9883
9883
|
/** @enum {string} */
|
|
9884
|
+
ownerRelationshipToClientType?: CaseUserDetailsModelRelationshipToClientType;
|
|
9885
|
+
/** @enum {string} */
|
|
9884
9886
|
relationshipToClientType?: CaseUserDetailsModelRelationshipToClientType;
|
|
9885
9887
|
/** Format: int64 */
|
|
9886
9888
|
userId?: number;
|
|
@@ -40006,6 +40008,7 @@ export declare enum PathsApiV1CoachingCardsUserIdCardsGetParametersQueryCoaching
|
|
|
40006
40008
|
export declare enum PathsApiV1BillingSubscribersGetParametersQueryBillingSubscriptionStatus {
|
|
40007
40009
|
ACTIVE = "ACTIVE",
|
|
40008
40010
|
CANCELED = "CANCELED",
|
|
40011
|
+
COMPLETE = "COMPLETE",
|
|
40009
40012
|
INCOMPLETE = "INCOMPLETE",
|
|
40010
40013
|
INCOMPLETE_EXPIRED = "INCOMPLETE_EXPIRED",
|
|
40011
40014
|
IN_TRIAL_PERIOD = "IN_TRIAL_PERIOD",
|
|
@@ -203,6 +203,7 @@ export var PathsApiV1BillingSubscribersGetParametersQueryBillingSubscriptionStat
|
|
|
203
203
|
(function (PathsApiV1BillingSubscribersGetParametersQueryBillingSubscriptionStatus) {
|
|
204
204
|
PathsApiV1BillingSubscribersGetParametersQueryBillingSubscriptionStatus["ACTIVE"] = "ACTIVE";
|
|
205
205
|
PathsApiV1BillingSubscribersGetParametersQueryBillingSubscriptionStatus["CANCELED"] = "CANCELED";
|
|
206
|
+
PathsApiV1BillingSubscribersGetParametersQueryBillingSubscriptionStatus["COMPLETE"] = "COMPLETE";
|
|
206
207
|
PathsApiV1BillingSubscribersGetParametersQueryBillingSubscriptionStatus["INCOMPLETE"] = "INCOMPLETE";
|
|
207
208
|
PathsApiV1BillingSubscribersGetParametersQueryBillingSubscriptionStatus["INCOMPLETE_EXPIRED"] = "INCOMPLETE_EXPIRED";
|
|
208
209
|
PathsApiV1BillingSubscribersGetParametersQueryBillingSubscriptionStatus["IN_TRIAL_PERIOD"] = "IN_TRIAL_PERIOD";
|