@otr-app/shared-backend-generated-client 2.3.257 → 2.3.258
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/createBillingSubscriptionRequest.ts +2 -0
- package/dist/angular/model/models.ts +1 -0
- package/dist/angular/model/subscriptionGuardianModel.ts +19 -0
- package/dist/typescript/model/CreateBillingSubscriptionRequest.d.ts +2 -0
- package/dist/typescript/model/SubscriptionGuardianModel.d.ts +16 -0
- package/dist/typescript/model/SubscriptionGuardianModel.js +13 -0
- package/dist/typescript/model/models.d.ts +1 -0
- package/dist/typescript/model/models.js +1 -0
- package/package.json +1 -1
|
@@ -784,6 +784,7 @@ model/subscriberDomain.ts
|
|
|
784
784
|
model/subscriptionDiscountEligibility.ts
|
|
785
785
|
model/subscriptionDiscountEligibilityReq.ts
|
|
786
786
|
model/subscriptionDiscountEligibilityRes.ts
|
|
787
|
+
model/subscriptionGuardianModel.ts
|
|
787
788
|
model/syncStripeChargesRequest.ts
|
|
788
789
|
model/syncStripeChargesResponse.ts
|
|
789
790
|
model/syncStripeDisputeResponse.ts
|
|
@@ -9,10 +9,12 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { SubscriptionGuardianModel } from './subscriptionGuardianModel';
|
|
12
13
|
|
|
13
14
|
|
|
14
15
|
export interface CreateBillingSubscriptionRequest {
|
|
15
16
|
cardId?: string;
|
|
17
|
+
guardian?: SubscriptionGuardianModel;
|
|
16
18
|
priceIds?: Array<string>;
|
|
17
19
|
productId?: string;
|
|
18
20
|
}
|
|
@@ -662,6 +662,7 @@ export * from './subscriberDomain';
|
|
|
662
662
|
export * from './subscriptionDiscountEligibility';
|
|
663
663
|
export * from './subscriptionDiscountEligibilityReq';
|
|
664
664
|
export * from './subscriptionDiscountEligibilityRes';
|
|
665
|
+
export * from './subscriptionGuardianModel';
|
|
665
666
|
export * from './syncStripeChargesRequest';
|
|
666
667
|
export * from './syncStripeChargesResponse';
|
|
667
668
|
export * from './syncStripeDisputeResponse';
|
|
@@ -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 SubscriptionGuardianModel {
|
|
15
|
+
emailAddress: string;
|
|
16
|
+
firstName: string;
|
|
17
|
+
lastName: string;
|
|
18
|
+
}
|
|
19
|
+
|
|
@@ -9,8 +9,10 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import * as models from './models';
|
|
12
13
|
export interface CreateBillingSubscriptionRequest {
|
|
13
14
|
"cardId"?: string;
|
|
15
|
+
"guardian"?: models.SubscriptionGuardianModel;
|
|
14
16
|
"priceIds"?: Array<string>;
|
|
15
17
|
"productId"?: string;
|
|
16
18
|
}
|
|
@@ -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 SubscriptionGuardianModel {
|
|
13
|
+
"emailAddress": string;
|
|
14
|
+
"firstName": string;
|
|
15
|
+
"lastName": string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
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 });
|
|
@@ -662,6 +662,7 @@ export * from './SubscriberDomain';
|
|
|
662
662
|
export * from './SubscriptionDiscountEligibility';
|
|
663
663
|
export * from './SubscriptionDiscountEligibilityReq';
|
|
664
664
|
export * from './SubscriptionDiscountEligibilityRes';
|
|
665
|
+
export * from './SubscriptionGuardianModel';
|
|
665
666
|
export * from './SyncStripeChargesRequest';
|
|
666
667
|
export * from './SyncStripeChargesResponse';
|
|
667
668
|
export * from './SyncStripeDisputeResponse';
|
|
@@ -674,6 +674,7 @@ __exportStar(require("./SubscriberDomain"), exports);
|
|
|
674
674
|
__exportStar(require("./SubscriptionDiscountEligibility"), exports);
|
|
675
675
|
__exportStar(require("./SubscriptionDiscountEligibilityReq"), exports);
|
|
676
676
|
__exportStar(require("./SubscriptionDiscountEligibilityRes"), exports);
|
|
677
|
+
__exportStar(require("./SubscriptionGuardianModel"), exports);
|
|
677
678
|
__exportStar(require("./SyncStripeChargesRequest"), exports);
|
|
678
679
|
__exportStar(require("./SyncStripeChargesResponse"), exports);
|
|
679
680
|
__exportStar(require("./SyncStripeDisputeResponse"), exports);
|