@otr-app/shared-backend-generated-client 2.5.97 → 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.
@@ -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';
@@ -17,6 +17,7 @@ export interface SocialPhoneNumber {
17
17
  lastUpdatedDateUtc?: Timestamp;
18
18
  phoneNumber?: string;
19
19
  type?: SocialPhoneNumber.TypeEnum;
20
+ verificationDateUtc?: string;
20
21
  }
21
22
  export namespace SocialPhoneNumber {
22
23
  export type TypeEnum = 'HOME' | 'MOBILE' | 'NOT_SPECIFIED' | 'OFFICE';
@@ -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
  }
@@ -15,6 +15,7 @@ export interface SocialPhoneNumber {
15
15
  "lastUpdatedDateUtc"?: models.Timestamp;
16
16
  "phoneNumber"?: string;
17
17
  "type"?: SocialPhoneNumber.TypeEnum;
18
+ "verificationDateUtc"?: string;
18
19
  }
19
20
  export declare namespace SocialPhoneNumber {
20
21
  enum TypeEnum {
@@ -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
  };
@@ -40,6 +40,12 @@ export interface SocialPhoneNumber {
40
40
  * @memberof SocialPhoneNumber
41
41
  */
42
42
  type?: SocialPhoneNumberTypeEnum;
43
+ /**
44
+ *
45
+ * @type {Date}
46
+ * @memberof SocialPhoneNumber
47
+ */
48
+ verificationDateUtc?: Date;
43
49
  }
44
50
  export declare function SocialPhoneNumberFromJSON(json: any): SocialPhoneNumber;
45
51
  export declare function SocialPhoneNumberFromJSONTyped(json: any, ignoreDiscriminator: boolean): SocialPhoneNumber;
@@ -25,6 +25,7 @@ export function SocialPhoneNumberFromJSONTyped(json, ignoreDiscriminator) {
25
25
  'lastUpdatedDateUtc': !exists(json, 'lastUpdatedDateUtc') ? undefined : TimestampFromJSON(json['lastUpdatedDateUtc']),
26
26
  'phoneNumber': !exists(json, 'phoneNumber') ? undefined : json['phoneNumber'],
27
27
  'type': !exists(json, 'type') ? undefined : json['type'],
28
+ 'verificationDateUtc': !exists(json, 'verificationDateUtc') ? undefined : (new Date(json['verificationDateUtc'])),
28
29
  };
29
30
  }
30
31
  export function SocialPhoneNumberToJSON(value) {
@@ -39,6 +40,7 @@ export function SocialPhoneNumberToJSON(value) {
39
40
  'lastUpdatedDateUtc': TimestampToJSON(value.lastUpdatedDateUtc),
40
41
  'phoneNumber': value.phoneNumber,
41
42
  'type': value.type,
43
+ 'verificationDateUtc': value.verificationDateUtc === undefined ? undefined : (value.verificationDateUtc.toISOString()),
42
44
  };
43
45
  }
44
46
  /**
@@ -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
  };
@@ -14823,6 +14831,8 @@ export interface components {
14823
14831
  phoneNumber?: string;
14824
14832
  /** @enum {string} */
14825
14833
  type?: PhoneNumberDomainType;
14834
+ /** Format: date-time */
14835
+ verificationDateUtc?: string;
14826
14836
  };
14827
14837
  /** Source */
14828
14838
  Source: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.97",
3
+ "version": "2.5.99",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"