@otr-app/shared-backend-generated-client 2.5.98 → 2.5.99
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 +1 -0
- package/dist/angular/model/billingSubscriptionPrimaryHolderModel.ts +19 -0
- package/dist/angular/model/listBillingSubscriptionsResponse.ts +2 -0
- package/dist/angular/model/models.ts +1 -0
- package/dist/typescript/model/BillingSubscriptionPrimaryHolderModel.d.ts +16 -0
- package/dist/typescript/model/BillingSubscriptionPrimaryHolderModel.js +12 -0
- package/dist/typescript/model/ListBillingSubscriptionsResponse.d.ts +1 -0
- package/dist/typescript/model/models.d.ts +1 -0
- package/dist/typescript/model/models.js +1 -0
- package/dist/typescript-fetch/models/BillingSubscriptionPrimaryHolderModel.d.ts +39 -0
- package/dist/typescript-fetch/models/BillingSubscriptionPrimaryHolderModel.js +40 -0
- package/dist/typescript-fetch/models/ListBillingSubscriptionsResponse.d.ts +7 -1
- package/dist/typescript-fetch/models/ListBillingSubscriptionsResponse.js +3 -1
- package/dist/typescript-fetch/models/index.d.ts +1 -0
- package/dist/typescript-fetch/models/index.js +1 -0
- package/dist/typescript-open-api/otr-backend.d.ts +8 -0
- package/package.json +1 -1
|
@@ -194,6 +194,7 @@ model/billingSubscriberAggregateModel.ts
|
|
|
194
194
|
model/billingSubscriberModel.ts
|
|
195
195
|
model/billingSubscriptionItemModel.ts
|
|
196
196
|
model/billingSubscriptionModel.ts
|
|
197
|
+
model/billingSubscriptionPrimaryHolderModel.ts
|
|
197
198
|
model/billingUpcomingInvoiceModel.ts
|
|
198
199
|
model/blogDocument.ts
|
|
199
200
|
model/blogEvent.ts
|
|
@@ -0,0 +1,19 @@
|
|
|
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
|
+
|
|
13
|
+
|
|
14
|
+
export interface BillingSubscriptionPrimaryHolderModel {
|
|
15
|
+
emailAddress?: string;
|
|
16
|
+
fullName?: string;
|
|
17
|
+
userId?: number;
|
|
18
|
+
}
|
|
19
|
+
|
|
@@ -10,9 +10,11 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { BillingSubscriptionModel } from './billingSubscriptionModel';
|
|
13
|
+
import { BillingSubscriptionPrimaryHolderModel } from './billingSubscriptionPrimaryHolderModel';
|
|
13
14
|
|
|
14
15
|
|
|
15
16
|
export interface ListBillingSubscriptionsResponse {
|
|
17
|
+
primaryHolder?: BillingSubscriptionPrimaryHolderModel;
|
|
16
18
|
subscriptions?: Array<BillingSubscriptionModel>;
|
|
17
19
|
subscriptionsAsBeneficiary?: Array<BillingSubscriptionModel>;
|
|
18
20
|
}
|
|
@@ -68,6 +68,7 @@ export * from './billingSubscriberAggregateModel';
|
|
|
68
68
|
export * from './billingSubscriberModel';
|
|
69
69
|
export * from './billingSubscriptionItemModel';
|
|
70
70
|
export * from './billingSubscriptionModel';
|
|
71
|
+
export * from './billingSubscriptionPrimaryHolderModel';
|
|
71
72
|
export * from './billingUpcomingInvoiceModel';
|
|
72
73
|
export * from './blogDocument';
|
|
73
74
|
export * from './blogEvent';
|
|
@@ -0,0 +1,16 @@
|
|
|
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 BillingSubscriptionPrimaryHolderModel {
|
|
13
|
+
"emailAddress"?: string;
|
|
14
|
+
"fullName"?: string;
|
|
15
|
+
"userId"?: number;
|
|
16
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
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 {};
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import * as models from './models';
|
|
13
13
|
export interface ListBillingSubscriptionsResponse {
|
|
14
|
+
"primaryHolder"?: models.BillingSubscriptionPrimaryHolderModel;
|
|
14
15
|
"subscriptions"?: Array<models.BillingSubscriptionModel>;
|
|
15
16
|
"subscriptionsAsBeneficiary"?: Array<models.BillingSubscriptionModel>;
|
|
16
17
|
}
|
|
@@ -68,6 +68,7 @@ export * from './BillingSubscriberAggregateModel';
|
|
|
68
68
|
export * from './BillingSubscriberModel';
|
|
69
69
|
export * from './BillingSubscriptionItemModel';
|
|
70
70
|
export * from './BillingSubscriptionModel';
|
|
71
|
+
export * from './BillingSubscriptionPrimaryHolderModel';
|
|
71
72
|
export * from './BillingUpcomingInvoiceModel';
|
|
72
73
|
export * from './BlogDocument';
|
|
73
74
|
export * from './BlogEvent';
|
|
@@ -68,6 +68,7 @@ export * from './BillingSubscriberAggregateModel';
|
|
|
68
68
|
export * from './BillingSubscriberModel';
|
|
69
69
|
export * from './BillingSubscriptionItemModel';
|
|
70
70
|
export * from './BillingSubscriptionModel';
|
|
71
|
+
export * from './BillingSubscriptionPrimaryHolderModel';
|
|
71
72
|
export * from './BillingUpcomingInvoiceModel';
|
|
72
73
|
export * from './BlogDocument';
|
|
73
74
|
export * from './BlogEvent';
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface BillingSubscriptionPrimaryHolderModel
|
|
16
|
+
*/
|
|
17
|
+
export interface BillingSubscriptionPrimaryHolderModel {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof BillingSubscriptionPrimaryHolderModel
|
|
22
|
+
*/
|
|
23
|
+
emailAddress?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof BillingSubscriptionPrimaryHolderModel
|
|
28
|
+
*/
|
|
29
|
+
fullName?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof BillingSubscriptionPrimaryHolderModel
|
|
34
|
+
*/
|
|
35
|
+
userId?: number;
|
|
36
|
+
}
|
|
37
|
+
export declare function BillingSubscriptionPrimaryHolderModelFromJSON(json: any): BillingSubscriptionPrimaryHolderModel;
|
|
38
|
+
export declare function BillingSubscriptionPrimaryHolderModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): BillingSubscriptionPrimaryHolderModel;
|
|
39
|
+
export declare function BillingSubscriptionPrimaryHolderModelToJSON(value?: BillingSubscriptionPrimaryHolderModel | null): any;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OffTheRecord Rest Service API - Devo
|
|
5
|
+
* A service to handle your traffic tickets
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { exists } from '../runtime';
|
|
15
|
+
export function BillingSubscriptionPrimaryHolderModelFromJSON(json) {
|
|
16
|
+
return BillingSubscriptionPrimaryHolderModelFromJSONTyped(json, false);
|
|
17
|
+
}
|
|
18
|
+
export function BillingSubscriptionPrimaryHolderModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
19
|
+
if ((json === undefined) || (json === null)) {
|
|
20
|
+
return json;
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
'emailAddress': !exists(json, 'emailAddress') ? undefined : json['emailAddress'],
|
|
24
|
+
'fullName': !exists(json, 'fullName') ? undefined : json['fullName'],
|
|
25
|
+
'userId': !exists(json, 'userId') ? undefined : json['userId'],
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
export function BillingSubscriptionPrimaryHolderModelToJSON(value) {
|
|
29
|
+
if (value === undefined) {
|
|
30
|
+
return undefined;
|
|
31
|
+
}
|
|
32
|
+
if (value === null) {
|
|
33
|
+
return null;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'emailAddress': value.emailAddress,
|
|
37
|
+
'fullName': value.fullName,
|
|
38
|
+
'userId': value.userId,
|
|
39
|
+
};
|
|
40
|
+
}
|
|
@@ -9,13 +9,19 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { BillingSubscriptionModel } from './';
|
|
12
|
+
import { BillingSubscriptionModel, BillingSubscriptionPrimaryHolderModel } from './';
|
|
13
13
|
/**
|
|
14
14
|
*
|
|
15
15
|
* @export
|
|
16
16
|
* @interface ListBillingSubscriptionsResponse
|
|
17
17
|
*/
|
|
18
18
|
export interface ListBillingSubscriptionsResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {BillingSubscriptionPrimaryHolderModel}
|
|
22
|
+
* @memberof ListBillingSubscriptionsResponse
|
|
23
|
+
*/
|
|
24
|
+
primaryHolder?: BillingSubscriptionPrimaryHolderModel;
|
|
19
25
|
/**
|
|
20
26
|
*
|
|
21
27
|
* @type {Array<BillingSubscriptionModel>}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
import { exists } from '../runtime';
|
|
15
|
-
import { BillingSubscriptionModelFromJSON, BillingSubscriptionModelToJSON, } from './';
|
|
15
|
+
import { BillingSubscriptionModelFromJSON, BillingSubscriptionModelToJSON, BillingSubscriptionPrimaryHolderModelFromJSON, BillingSubscriptionPrimaryHolderModelToJSON, } from './';
|
|
16
16
|
export function ListBillingSubscriptionsResponseFromJSON(json) {
|
|
17
17
|
return ListBillingSubscriptionsResponseFromJSONTyped(json, false);
|
|
18
18
|
}
|
|
@@ -21,6 +21,7 @@ export function ListBillingSubscriptionsResponseFromJSONTyped(json, ignoreDiscri
|
|
|
21
21
|
return json;
|
|
22
22
|
}
|
|
23
23
|
return {
|
|
24
|
+
'primaryHolder': !exists(json, 'primaryHolder') ? undefined : BillingSubscriptionPrimaryHolderModelFromJSON(json['primaryHolder']),
|
|
24
25
|
'subscriptions': !exists(json, 'subscriptions') ? undefined : (json['subscriptions'].map(BillingSubscriptionModelFromJSON)),
|
|
25
26
|
'subscriptionsAsBeneficiary': !exists(json, 'subscriptionsAsBeneficiary') ? undefined : (json['subscriptionsAsBeneficiary'].map(BillingSubscriptionModelFromJSON)),
|
|
26
27
|
};
|
|
@@ -33,6 +34,7 @@ export function ListBillingSubscriptionsResponseToJSON(value) {
|
|
|
33
34
|
return null;
|
|
34
35
|
}
|
|
35
36
|
return {
|
|
37
|
+
'primaryHolder': BillingSubscriptionPrimaryHolderModelToJSON(value.primaryHolder),
|
|
36
38
|
'subscriptions': value.subscriptions === undefined ? undefined : (value.subscriptions.map(BillingSubscriptionModelToJSON)),
|
|
37
39
|
'subscriptionsAsBeneficiary': value.subscriptionsAsBeneficiary === undefined ? undefined : (value.subscriptionsAsBeneficiary.map(BillingSubscriptionModelToJSON)),
|
|
38
40
|
};
|
|
@@ -68,6 +68,7 @@ export * from './BillingSubscriberAggregateModel';
|
|
|
68
68
|
export * from './BillingSubscriberModel';
|
|
69
69
|
export * from './BillingSubscriptionItemModel';
|
|
70
70
|
export * from './BillingSubscriptionModel';
|
|
71
|
+
export * from './BillingSubscriptionPrimaryHolderModel';
|
|
71
72
|
export * from './BillingUpcomingInvoiceModel';
|
|
72
73
|
export * from './BlogDocument';
|
|
73
74
|
export * from './BlogEvent';
|
|
@@ -68,6 +68,7 @@ export * from './BillingSubscriberAggregateModel';
|
|
|
68
68
|
export * from './BillingSubscriberModel';
|
|
69
69
|
export * from './BillingSubscriptionItemModel';
|
|
70
70
|
export * from './BillingSubscriptionModel';
|
|
71
|
+
export * from './BillingSubscriptionPrimaryHolderModel';
|
|
71
72
|
export * from './BillingUpcomingInvoiceModel';
|
|
72
73
|
export * from './BlogDocument';
|
|
73
74
|
export * from './BlogEvent';
|
|
@@ -7979,6 +7979,13 @@ export interface components {
|
|
|
7979
7979
|
trialEndAt?: string;
|
|
7980
7980
|
upcomingInvoicePreview?: components["schemas"]["BillingUpcomingInvoiceModel"];
|
|
7981
7981
|
};
|
|
7982
|
+
/** BillingSubscriptionPrimaryHolderModel */
|
|
7983
|
+
BillingSubscriptionPrimaryHolderModel: {
|
|
7984
|
+
emailAddress?: string;
|
|
7985
|
+
fullName?: string;
|
|
7986
|
+
/** Format: int64 */
|
|
7987
|
+
userId?: number;
|
|
7988
|
+
};
|
|
7982
7989
|
/** BillingUpcomingInvoiceModel */
|
|
7983
7990
|
BillingUpcomingInvoiceModel: {
|
|
7984
7991
|
/** Format: date-time */
|
|
@@ -12757,6 +12764,7 @@ export interface components {
|
|
|
12757
12764
|
};
|
|
12758
12765
|
/** ListBillingSubscriptionsResponse */
|
|
12759
12766
|
ListBillingSubscriptionsResponse: {
|
|
12767
|
+
primaryHolder?: components["schemas"]["BillingSubscriptionPrimaryHolderModel"];
|
|
12760
12768
|
subscriptions?: components["schemas"]["BillingSubscriptionModel"][];
|
|
12761
12769
|
subscriptionsAsBeneficiary?: components["schemas"]["BillingSubscriptionModel"][];
|
|
12762
12770
|
};
|