@randock/nameshift-api-client 0.0.184 → 0.0.185

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.
Files changed (39) hide show
  1. package/.openapi-generator/FILES +6 -0
  2. package/README.md +3 -3
  3. package/dist/apis/AdminApi.d.ts +27 -1
  4. package/dist/apis/AdminApi.js +119 -0
  5. package/dist/apis/DomainsApi.d.ts +3 -3
  6. package/dist/apis/DomainsApi.js +1 -1
  7. package/dist/apis/TasksApi.d.ts +3 -3
  8. package/dist/apis/TasksApi.js +1 -1
  9. package/dist/models/ChangeSubscriptionStatusInput.d.ts +42 -0
  10. package/dist/models/ChangeSubscriptionStatusInput.js +61 -0
  11. package/dist/models/GetAllSubscriptions200Response.d.ts +47 -0
  12. package/dist/models/GetAllSubscriptions200Response.js +62 -0
  13. package/dist/models/List200Response1.d.ts +3 -3
  14. package/dist/models/List200Response1.js +3 -3
  15. package/dist/models/List200Response2.d.ts +3 -3
  16. package/dist/models/List200Response2.js +3 -3
  17. package/dist/models/SubscriptionListItemDto.d.ts +102 -0
  18. package/dist/models/SubscriptionListItemDto.js +104 -0
  19. package/dist/models/SubscriptionListItemDtoBuyerInformation.d.ts +64 -0
  20. package/dist/models/SubscriptionListItemDtoBuyerInformation.js +73 -0
  21. package/dist/models/SubscriptionListItemDtoDomainInformation.d.ts +44 -0
  22. package/dist/models/SubscriptionListItemDtoDomainInformation.js +59 -0
  23. package/dist/models/SubscriptionListItemDtoSellerAccount.d.ts +50 -0
  24. package/dist/models/SubscriptionListItemDtoSellerAccount.js +63 -0
  25. package/dist/models/index.d.ts +6 -0
  26. package/dist/models/index.js +6 -0
  27. package/package.json +1 -1
  28. package/src/apis/AdminApi.ts +118 -0
  29. package/src/apis/DomainsApi.ts +6 -6
  30. package/src/apis/TasksApi.ts +6 -6
  31. package/src/models/ChangeSubscriptionStatusInput.ts +79 -0
  32. package/src/models/GetAllSubscriptions200Response.ts +106 -0
  33. package/src/models/List200Response1.ts +10 -10
  34. package/src/models/List200Response2.ts +10 -10
  35. package/src/models/SubscriptionListItemDto.ts +189 -0
  36. package/src/models/SubscriptionListItemDtoBuyerInformation.ts +126 -0
  37. package/src/models/SubscriptionListItemDtoDomainInformation.ts +84 -0
  38. package/src/models/SubscriptionListItemDtoSellerAccount.ts +93 -0
  39. package/src/models/index.ts +6 -0
@@ -0,0 +1,189 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Nameshift
5
+ * Nameshift API
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
+
15
+ import { mapValues } from '../runtime';
16
+ import type { SubscriptionListItemDtoBuyerInformation } from './SubscriptionListItemDtoBuyerInformation';
17
+ import {
18
+ SubscriptionListItemDtoBuyerInformationFromJSON,
19
+ SubscriptionListItemDtoBuyerInformationFromJSONTyped,
20
+ SubscriptionListItemDtoBuyerInformationToJSON,
21
+ SubscriptionListItemDtoBuyerInformationToJSONTyped,
22
+ } from './SubscriptionListItemDtoBuyerInformation';
23
+ import type { SubscriptionListItemDtoSellerAccount } from './SubscriptionListItemDtoSellerAccount';
24
+ import {
25
+ SubscriptionListItemDtoSellerAccountFromJSON,
26
+ SubscriptionListItemDtoSellerAccountFromJSONTyped,
27
+ SubscriptionListItemDtoSellerAccountToJSON,
28
+ SubscriptionListItemDtoSellerAccountToJSONTyped,
29
+ } from './SubscriptionListItemDtoSellerAccount';
30
+ import type { MoneyDto } from './MoneyDto';
31
+ import {
32
+ MoneyDtoFromJSON,
33
+ MoneyDtoFromJSONTyped,
34
+ MoneyDtoToJSON,
35
+ MoneyDtoToJSONTyped,
36
+ } from './MoneyDto';
37
+ import type { SubscriptionListItemDtoDomainInformation } from './SubscriptionListItemDtoDomainInformation';
38
+ import {
39
+ SubscriptionListItemDtoDomainInformationFromJSON,
40
+ SubscriptionListItemDtoDomainInformationFromJSONTyped,
41
+ SubscriptionListItemDtoDomainInformationToJSON,
42
+ SubscriptionListItemDtoDomainInformationToJSONTyped,
43
+ } from './SubscriptionListItemDtoDomainInformation';
44
+
45
+ /**
46
+ *
47
+ * @export
48
+ * @interface SubscriptionListItemDto
49
+ */
50
+ export interface SubscriptionListItemDto {
51
+ /**
52
+ * The subscription ID
53
+ * @type {object}
54
+ * @memberof SubscriptionListItemDto
55
+ */
56
+ id: object;
57
+ /**
58
+ * The subscription status
59
+ * @type {string}
60
+ * @memberof SubscriptionListItemDto
61
+ */
62
+ status: SubscriptionListItemDtoStatusEnum;
63
+ /**
64
+ * The subscription type
65
+ * @type {string}
66
+ * @memberof SubscriptionListItemDto
67
+ */
68
+ type: SubscriptionListItemDtoTypeEnum;
69
+ /**
70
+ * The subscription start date
71
+ * @type {Date}
72
+ * @memberof SubscriptionListItemDto
73
+ */
74
+ startedAt: Date | null;
75
+ /**
76
+ * The subscription creation date
77
+ * @type {Date}
78
+ * @memberof SubscriptionListItemDto
79
+ */
80
+ createdAt: Date;
81
+ /**
82
+ * The subscription domain information
83
+ * @type {SubscriptionListItemDtoDomainInformation}
84
+ * @memberof SubscriptionListItemDto
85
+ */
86
+ domain: SubscriptionListItemDtoDomainInformation;
87
+ /**
88
+ * The subscription seller information
89
+ * @type {SubscriptionListItemDtoSellerAccount}
90
+ * @memberof SubscriptionListItemDto
91
+ */
92
+ sellerAccount: SubscriptionListItemDtoSellerAccount;
93
+ /**
94
+ * The subscription buyer information
95
+ * @type {SubscriptionListItemDtoBuyerInformation}
96
+ * @memberof SubscriptionListItemDto
97
+ */
98
+ buyerInformation: SubscriptionListItemDtoBuyerInformation;
99
+ /**
100
+ * The subscription base price
101
+ * @type {MoneyDto}
102
+ * @memberof SubscriptionListItemDto
103
+ */
104
+ basePrice: MoneyDto | null;
105
+ }
106
+
107
+
108
+ /**
109
+ * @export
110
+ */
111
+ export const SubscriptionListItemDtoStatusEnum = {
112
+ DRAFT: 'draft',
113
+ ACTIVE: 'active',
114
+ PAUSED: 'paused',
115
+ CANCELLED: 'cancelled'
116
+ } as const;
117
+ export type SubscriptionListItemDtoStatusEnum = typeof SubscriptionListItemDtoStatusEnum[keyof typeof SubscriptionListItemDtoStatusEnum];
118
+
119
+ /**
120
+ * @export
121
+ */
122
+ export const SubscriptionListItemDtoTypeEnum = {
123
+ RENT: 'rent',
124
+ LEASE_TO_OWN: 'lease_to_own'
125
+ } as const;
126
+ export type SubscriptionListItemDtoTypeEnum = typeof SubscriptionListItemDtoTypeEnum[keyof typeof SubscriptionListItemDtoTypeEnum];
127
+
128
+
129
+ /**
130
+ * Check if a given object implements the SubscriptionListItemDto interface.
131
+ */
132
+ export function instanceOfSubscriptionListItemDto(value: object): value is SubscriptionListItemDto {
133
+ if (!('id' in value) || value['id'] === undefined) return false;
134
+ if (!('status' in value) || value['status'] === undefined) return false;
135
+ if (!('type' in value) || value['type'] === undefined) return false;
136
+ if (!('startedAt' in value) || value['startedAt'] === undefined) return false;
137
+ if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
138
+ if (!('domain' in value) || value['domain'] === undefined) return false;
139
+ if (!('sellerAccount' in value) || value['sellerAccount'] === undefined) return false;
140
+ if (!('buyerInformation' in value) || value['buyerInformation'] === undefined) return false;
141
+ if (!('basePrice' in value) || value['basePrice'] === undefined) return false;
142
+ return true;
143
+ }
144
+
145
+ export function SubscriptionListItemDtoFromJSON(json: any): SubscriptionListItemDto {
146
+ return SubscriptionListItemDtoFromJSONTyped(json, false);
147
+ }
148
+
149
+ export function SubscriptionListItemDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionListItemDto {
150
+ if (json == null) {
151
+ return json;
152
+ }
153
+ return {
154
+
155
+ 'id': json['id'],
156
+ 'status': json['status'],
157
+ 'type': json['type'],
158
+ 'startedAt': (json['startedAt'] == null ? null : new Date(json['startedAt'])),
159
+ 'createdAt': (new Date(json['createdAt'])),
160
+ 'domain': SubscriptionListItemDtoDomainInformationFromJSON(json['domain']),
161
+ 'sellerAccount': SubscriptionListItemDtoSellerAccountFromJSON(json['sellerAccount']),
162
+ 'buyerInformation': SubscriptionListItemDtoBuyerInformationFromJSON(json['buyerInformation']),
163
+ 'basePrice': MoneyDtoFromJSON(json['basePrice']),
164
+ };
165
+ }
166
+
167
+ export function SubscriptionListItemDtoToJSON(json: any): SubscriptionListItemDto {
168
+ return SubscriptionListItemDtoToJSONTyped(json, false);
169
+ }
170
+
171
+ export function SubscriptionListItemDtoToJSONTyped(value?: SubscriptionListItemDto | null, ignoreDiscriminator: boolean = false): any {
172
+ if (value == null) {
173
+ return value;
174
+ }
175
+
176
+ return {
177
+
178
+ 'id': value['id'],
179
+ 'status': value['status'],
180
+ 'type': value['type'],
181
+ 'startedAt': (value['startedAt'] == null ? null : (value['startedAt'] as any).toISOString()),
182
+ 'createdAt': ((value['createdAt']).toISOString()),
183
+ 'domain': SubscriptionListItemDtoDomainInformationToJSON(value['domain']),
184
+ 'sellerAccount': SubscriptionListItemDtoSellerAccountToJSON(value['sellerAccount']),
185
+ 'buyerInformation': SubscriptionListItemDtoBuyerInformationToJSON(value['buyerInformation']),
186
+ 'basePrice': MoneyDtoToJSON(value['basePrice']),
187
+ };
188
+ }
189
+
@@ -0,0 +1,126 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Nameshift
5
+ * Nameshift API
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
+
15
+ import { mapValues } from '../runtime';
16
+ import type { SubscriptionCompanyInfoDto } from './SubscriptionCompanyInfoDto';
17
+ import {
18
+ SubscriptionCompanyInfoDtoFromJSON,
19
+ SubscriptionCompanyInfoDtoFromJSONTyped,
20
+ SubscriptionCompanyInfoDtoToJSON,
21
+ SubscriptionCompanyInfoDtoToJSONTyped,
22
+ } from './SubscriptionCompanyInfoDto';
23
+ import type { AddressDto } from './AddressDto';
24
+ import {
25
+ AddressDtoFromJSON,
26
+ AddressDtoFromJSONTyped,
27
+ AddressDtoToJSON,
28
+ AddressDtoToJSONTyped,
29
+ } from './AddressDto';
30
+
31
+ /**
32
+ *
33
+ * @export
34
+ * @interface SubscriptionListItemDtoBuyerInformation
35
+ */
36
+ export interface SubscriptionListItemDtoBuyerInformation {
37
+ /**
38
+ * The subscription buyer first name
39
+ * @type {string}
40
+ * @memberof SubscriptionListItemDtoBuyerInformation
41
+ */
42
+ firstName: string | null;
43
+ /**
44
+ * The subscription buyer last name
45
+ * @type {string}
46
+ * @memberof SubscriptionListItemDtoBuyerInformation
47
+ */
48
+ lastName: string | null;
49
+ /**
50
+ * The subscription buyer email
51
+ * @type {string}
52
+ * @memberof SubscriptionListItemDtoBuyerInformation
53
+ */
54
+ email: string;
55
+ /**
56
+ * The subscription buyer phone
57
+ * @type {string}
58
+ * @memberof SubscriptionListItemDtoBuyerInformation
59
+ */
60
+ phone: string | null;
61
+ /**
62
+ * The subscription buyer address
63
+ * @type {AddressDto}
64
+ * @memberof SubscriptionListItemDtoBuyerInformation
65
+ */
66
+ address: AddressDto | null;
67
+ /**
68
+ * The subscription buyer company information
69
+ * @type {SubscriptionCompanyInfoDto}
70
+ * @memberof SubscriptionListItemDtoBuyerInformation
71
+ */
72
+ companyInfo: SubscriptionCompanyInfoDto | null;
73
+ }
74
+
75
+ /**
76
+ * Check if a given object implements the SubscriptionListItemDtoBuyerInformation interface.
77
+ */
78
+ export function instanceOfSubscriptionListItemDtoBuyerInformation(value: object): value is SubscriptionListItemDtoBuyerInformation {
79
+ if (!('firstName' in value) || value['firstName'] === undefined) return false;
80
+ if (!('lastName' in value) || value['lastName'] === undefined) return false;
81
+ if (!('email' in value) || value['email'] === undefined) return false;
82
+ if (!('phone' in value) || value['phone'] === undefined) return false;
83
+ if (!('address' in value) || value['address'] === undefined) return false;
84
+ if (!('companyInfo' in value) || value['companyInfo'] === undefined) return false;
85
+ return true;
86
+ }
87
+
88
+ export function SubscriptionListItemDtoBuyerInformationFromJSON(json: any): SubscriptionListItemDtoBuyerInformation {
89
+ return SubscriptionListItemDtoBuyerInformationFromJSONTyped(json, false);
90
+ }
91
+
92
+ export function SubscriptionListItemDtoBuyerInformationFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionListItemDtoBuyerInformation {
93
+ if (json == null) {
94
+ return json;
95
+ }
96
+ return {
97
+
98
+ 'firstName': json['firstName'],
99
+ 'lastName': json['lastName'],
100
+ 'email': json['email'],
101
+ 'phone': json['phone'],
102
+ 'address': AddressDtoFromJSON(json['address']),
103
+ 'companyInfo': SubscriptionCompanyInfoDtoFromJSON(json['companyInfo']),
104
+ };
105
+ }
106
+
107
+ export function SubscriptionListItemDtoBuyerInformationToJSON(json: any): SubscriptionListItemDtoBuyerInformation {
108
+ return SubscriptionListItemDtoBuyerInformationToJSONTyped(json, false);
109
+ }
110
+
111
+ export function SubscriptionListItemDtoBuyerInformationToJSONTyped(value?: SubscriptionListItemDtoBuyerInformation | null, ignoreDiscriminator: boolean = false): any {
112
+ if (value == null) {
113
+ return value;
114
+ }
115
+
116
+ return {
117
+
118
+ 'firstName': value['firstName'],
119
+ 'lastName': value['lastName'],
120
+ 'email': value['email'],
121
+ 'phone': value['phone'],
122
+ 'address': AddressDtoToJSON(value['address']),
123
+ 'companyInfo': SubscriptionCompanyInfoDtoToJSON(value['companyInfo']),
124
+ };
125
+ }
126
+
@@ -0,0 +1,84 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Nameshift
5
+ * Nameshift API
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
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface SubscriptionListItemDtoDomainInformation
20
+ */
21
+ export interface SubscriptionListItemDtoDomainInformation {
22
+ /**
23
+ * The subscription domain TLD
24
+ * @type {string}
25
+ * @memberof SubscriptionListItemDtoDomainInformation
26
+ */
27
+ tld: string;
28
+ /**
29
+ * The subscription domain name
30
+ * @type {string}
31
+ * @memberof SubscriptionListItemDtoDomainInformation
32
+ */
33
+ name: string;
34
+ /**
35
+ * The subscription domain name
36
+ * @type {string}
37
+ * @memberof SubscriptionListItemDtoDomainInformation
38
+ */
39
+ displayName: string;
40
+ }
41
+
42
+ /**
43
+ * Check if a given object implements the SubscriptionListItemDtoDomainInformation interface.
44
+ */
45
+ export function instanceOfSubscriptionListItemDtoDomainInformation(value: object): value is SubscriptionListItemDtoDomainInformation {
46
+ if (!('tld' in value) || value['tld'] === undefined) return false;
47
+ if (!('name' in value) || value['name'] === undefined) return false;
48
+ if (!('displayName' in value) || value['displayName'] === undefined) return false;
49
+ return true;
50
+ }
51
+
52
+ export function SubscriptionListItemDtoDomainInformationFromJSON(json: any): SubscriptionListItemDtoDomainInformation {
53
+ return SubscriptionListItemDtoDomainInformationFromJSONTyped(json, false);
54
+ }
55
+
56
+ export function SubscriptionListItemDtoDomainInformationFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionListItemDtoDomainInformation {
57
+ if (json == null) {
58
+ return json;
59
+ }
60
+ return {
61
+
62
+ 'tld': json['tld'],
63
+ 'name': json['name'],
64
+ 'displayName': json['displayName'],
65
+ };
66
+ }
67
+
68
+ export function SubscriptionListItemDtoDomainInformationToJSON(json: any): SubscriptionListItemDtoDomainInformation {
69
+ return SubscriptionListItemDtoDomainInformationToJSONTyped(json, false);
70
+ }
71
+
72
+ export function SubscriptionListItemDtoDomainInformationToJSONTyped(value?: SubscriptionListItemDtoDomainInformation | null, ignoreDiscriminator: boolean = false): any {
73
+ if (value == null) {
74
+ return value;
75
+ }
76
+
77
+ return {
78
+
79
+ 'tld': value['tld'],
80
+ 'name': value['name'],
81
+ 'displayName': value['displayName'],
82
+ };
83
+ }
84
+
@@ -0,0 +1,93 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Nameshift
5
+ * Nameshift API
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
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface SubscriptionListItemDtoSellerAccount
20
+ */
21
+ export interface SubscriptionListItemDtoSellerAccount {
22
+ /**
23
+ * The subscription seller account ID
24
+ * @type {object}
25
+ * @memberof SubscriptionListItemDtoSellerAccount
26
+ */
27
+ accountId: object;
28
+ /**
29
+ * The subscription seller account ID
30
+ * @type {string}
31
+ * @memberof SubscriptionListItemDtoSellerAccount
32
+ */
33
+ identifier: string;
34
+ /**
35
+ * The subscription seller account name
36
+ * @type {string}
37
+ * @memberof SubscriptionListItemDtoSellerAccount
38
+ */
39
+ name: string;
40
+ /**
41
+ * Indicates if subscription seller account is a business or not
42
+ * @type {boolean}
43
+ * @memberof SubscriptionListItemDtoSellerAccount
44
+ */
45
+ isBusiness: boolean | null;
46
+ }
47
+
48
+ /**
49
+ * Check if a given object implements the SubscriptionListItemDtoSellerAccount interface.
50
+ */
51
+ export function instanceOfSubscriptionListItemDtoSellerAccount(value: object): value is SubscriptionListItemDtoSellerAccount {
52
+ if (!('accountId' in value) || value['accountId'] === undefined) return false;
53
+ if (!('identifier' in value) || value['identifier'] === undefined) return false;
54
+ if (!('name' in value) || value['name'] === undefined) return false;
55
+ if (!('isBusiness' in value) || value['isBusiness'] === undefined) return false;
56
+ return true;
57
+ }
58
+
59
+ export function SubscriptionListItemDtoSellerAccountFromJSON(json: any): SubscriptionListItemDtoSellerAccount {
60
+ return SubscriptionListItemDtoSellerAccountFromJSONTyped(json, false);
61
+ }
62
+
63
+ export function SubscriptionListItemDtoSellerAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionListItemDtoSellerAccount {
64
+ if (json == null) {
65
+ return json;
66
+ }
67
+ return {
68
+
69
+ 'accountId': json['accountId'],
70
+ 'identifier': json['identifier'],
71
+ 'name': json['name'],
72
+ 'isBusiness': json['isBusiness'],
73
+ };
74
+ }
75
+
76
+ export function SubscriptionListItemDtoSellerAccountToJSON(json: any): SubscriptionListItemDtoSellerAccount {
77
+ return SubscriptionListItemDtoSellerAccountToJSONTyped(json, false);
78
+ }
79
+
80
+ export function SubscriptionListItemDtoSellerAccountToJSONTyped(value?: SubscriptionListItemDtoSellerAccount | null, ignoreDiscriminator: boolean = false): any {
81
+ if (value == null) {
82
+ return value;
83
+ }
84
+
85
+ return {
86
+
87
+ 'accountId': value['accountId'],
88
+ 'identifier': value['identifier'],
89
+ 'name': value['name'],
90
+ 'isBusiness': value['isBusiness'],
91
+ };
92
+ }
93
+
@@ -29,6 +29,7 @@ export * from './BuyerLeadListItemDomainDto';
29
29
  export * from './BuyerLeadListItemDto';
30
30
  export * from './BuyerSecurityUserDto';
31
31
  export * from './ChangeOrderStatusInput';
32
+ export * from './ChangeSubscriptionStatusInput';
32
33
  export * from './ChartDataPoint';
33
34
  export * from './CompanyInformationDto';
34
35
  export * from './CompanyTaxIdDto';
@@ -69,6 +70,7 @@ export * from './GetAllDomainTransfers200Response';
69
70
  export * from './GetAllInvoices200Response';
70
71
  export * from './GetAllOrders200Response';
71
72
  export * from './GetAllOwnedDomains200Response';
73
+ export * from './GetAllSubscriptions200Response';
72
74
  export * from './GetBuyerLeads200Response';
73
75
  export * from './GetBuyerTransfers200Response';
74
76
  export * from './HttpException';
@@ -145,6 +147,10 @@ export * from './SubscriptionCompanyInfoDto';
145
147
  export * from './SubscriptionCompanyTaxIdDto';
146
148
  export * from './SubscriptionDomainDto';
147
149
  export * from './SubscriptionDto';
150
+ export * from './SubscriptionListItemDto';
151
+ export * from './SubscriptionListItemDtoBuyerInformation';
152
+ export * from './SubscriptionListItemDtoDomainInformation';
153
+ export * from './SubscriptionListItemDtoSellerAccount';
148
154
  export * from './TaskListDomainDto';
149
155
  export * from './TaskListDomainTransferDto';
150
156
  export * from './TaskListLeadDto';