@randock/nameshift-api-client 0.0.109 → 0.0.110

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.
@@ -33,7 +33,7 @@ src/models/BuyerDomainTransferListItemDomainDto.ts
33
33
  src/models/BuyerDomainTransferListItemDto.ts
34
34
  src/models/BuyerLeadListItemDomainDto.ts
35
35
  src/models/BuyerLeadListItemDto.ts
36
- src/models/BuyerUserDto.ts
36
+ src/models/BuyerSecurityUserDto.ts
37
37
  src/models/ChangeOrderStatusInput.ts
38
38
  src/models/ChartDataPoint.ts
39
39
  src/models/ConflictException.ts
@@ -114,13 +114,13 @@ src/models/PutLeadOfferInput.ts
114
114
  src/models/RegisterAccountInput.ts
115
115
  src/models/RelatedSellerDomain.ts
116
116
  src/models/RequestAccessTokenInput.ts
117
- src/models/SecurityUserAccountDto.ts
118
- src/models/SecurityUserDto.ts
119
117
  src/models/SellerDomainTransferAuthCodeDto.ts
120
118
  src/models/SellerDomainTransferDomainDto.ts
121
119
  src/models/SellerDomainTransferDto.ts
122
120
  src/models/SellerDomainTransferListItemDomainDto.ts
123
121
  src/models/SellerDomainTransferListItemDto.ts
122
+ src/models/SellerSecurityUserAccountDto.ts
123
+ src/models/SellerSecurityUserDto.ts
124
124
  src/models/SetDomainTransferConfirmationInput.ts
125
125
  src/models/SetNewPasswordInput.ts
126
126
  src/models/StoreBuyerLocaleInput.ts
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @randock/nameshift-api-client@0.0.109
1
+ ## @randock/nameshift-api-client@0.0.110
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @randock/nameshift-api-client@0.0.109 --save
39
+ npm install @randock/nameshift-api-client@0.0.110 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -44,4 +44,4 @@ _unPublished (not recommended):_
44
44
  ```
45
45
  npm install PATH_TO_GENERATED_PACKAGE --save
46
46
  ```
47
- 41815b86406beb373fe5d2c42500b7e3dad1d56aa7f7ebec7b7623261aee3f2fff406a16c112f8e1cc9492dc9e25fac9
47
+ 40a3a87e8f8e8ebc3325ce82a816b87e3624e8caa5b2180a19fd087f9a5840a7537071e690b00c6bd301c34faea30f0a
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import * as runtime from '../runtime';
13
- import type { BatchReadBuyerLeadMessageInput, BuyerDomainTransferAuthCodeDto, BuyerUserDto, CreateBuyerLeadMessageInput, GetBuyerInvoices200Response, GetBuyerLeads200Response, GetBuyerTransfers200Response, LeadDto, LeadMessageDto, ObjectId, PutBuyerLeadOfferInput, SetDomainTransferConfirmationInput, StoreBuyerLocaleInput } from '../models/index';
13
+ import type { BatchReadBuyerLeadMessageInput, BuyerDomainTransferAuthCodeDto, BuyerSecurityUserDto, CreateBuyerLeadMessageInput, GetBuyerInvoices200Response, GetBuyerLeads200Response, GetBuyerTransfers200Response, LeadDto, LeadMessageDto, ObjectId, PutBuyerLeadOfferInput, SetDomainTransferConfirmationInput, StoreBuyerLocaleInput } from '../models/index';
14
14
  export interface BuyersApiAcceptBuyerLeadOfferRequest {
15
15
  leadId: string;
16
16
  }
@@ -86,11 +86,11 @@ export declare class BuyersApi extends runtime.BaseAPI {
86
86
  /**
87
87
  *
88
88
  */
89
- buyerMeRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<BuyerUserDto>>;
89
+ buyerMeRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<BuyerSecurityUserDto>>;
90
90
  /**
91
91
  *
92
92
  */
93
- buyerMe(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<BuyerUserDto>;
93
+ buyerMe(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<BuyerSecurityUserDto>;
94
94
  /**
95
95
  *
96
96
  */
@@ -210,7 +210,7 @@ var BuyersApi = /** @class */ (function (_super) {
210
210
  }, initOverrides)];
211
211
  case 3:
212
212
  response = _a.sent();
213
- return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.BuyerUserDtoFromJSON)(jsonValue); })];
213
+ return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.BuyerSecurityUserDtoFromJSON)(jsonValue); })];
214
214
  }
215
215
  });
216
216
  });
@@ -0,0 +1,69 @@
1
+ /**
2
+ * Nameshift
3
+ * Nameshift API
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 BuyerSecurityUserDto
16
+ */
17
+ export interface BuyerSecurityUserDto {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof BuyerSecurityUserDto
22
+ */
23
+ id: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof BuyerSecurityUserDto
28
+ */
29
+ email: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof BuyerSecurityUserDto
34
+ */
35
+ intercomHash: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof BuyerSecurityUserDto
40
+ */
41
+ locale: string;
42
+ /**
43
+ *
44
+ * @type {Array<string>}
45
+ * @memberof BuyerSecurityUserDto
46
+ */
47
+ roles: Array<string>;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof BuyerSecurityUserDto
52
+ */
53
+ type: BuyerSecurityUserDtoTypeEnum;
54
+ }
55
+ /**
56
+ * @export
57
+ */
58
+ export declare const BuyerSecurityUserDtoTypeEnum: {
59
+ readonly BUYER: "buyer";
60
+ readonly SELLER: "seller";
61
+ };
62
+ export type BuyerSecurityUserDtoTypeEnum = typeof BuyerSecurityUserDtoTypeEnum[keyof typeof BuyerSecurityUserDtoTypeEnum];
63
+ /**
64
+ * Check if a given object implements the BuyerSecurityUserDto interface.
65
+ */
66
+ export declare function instanceOfBuyerSecurityUserDto(value: object): value is BuyerSecurityUserDto;
67
+ export declare function BuyerSecurityUserDtoFromJSON(json: any): BuyerSecurityUserDto;
68
+ export declare function BuyerSecurityUserDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): BuyerSecurityUserDto;
69
+ export declare function BuyerSecurityUserDtoToJSON(value?: BuyerSecurityUserDto | null): any;
@@ -13,50 +13,62 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.instanceOfBuyerUserDto = instanceOfBuyerUserDto;
17
- exports.BuyerUserDtoFromJSON = BuyerUserDtoFromJSON;
18
- exports.BuyerUserDtoFromJSONTyped = BuyerUserDtoFromJSONTyped;
19
- exports.BuyerUserDtoToJSON = BuyerUserDtoToJSON;
16
+ exports.BuyerSecurityUserDtoTypeEnum = void 0;
17
+ exports.instanceOfBuyerSecurityUserDto = instanceOfBuyerSecurityUserDto;
18
+ exports.BuyerSecurityUserDtoFromJSON = BuyerSecurityUserDtoFromJSON;
19
+ exports.BuyerSecurityUserDtoFromJSONTyped = BuyerSecurityUserDtoFromJSONTyped;
20
+ exports.BuyerSecurityUserDtoToJSON = BuyerSecurityUserDtoToJSON;
20
21
  /**
21
- * Check if a given object implements the BuyerUserDto interface.
22
+ * @export
22
23
  */
23
- function instanceOfBuyerUserDto(value) {
24
+ exports.BuyerSecurityUserDtoTypeEnum = {
25
+ BUYER: 'buyer',
26
+ SELLER: 'seller'
27
+ };
28
+ /**
29
+ * Check if a given object implements the BuyerSecurityUserDto interface.
30
+ */
31
+ function instanceOfBuyerSecurityUserDto(value) {
24
32
  if (!('id' in value) || value['id'] === undefined)
25
33
  return false;
26
- if (!('buyerId' in value) || value['buyerId'] === undefined)
34
+ if (!('email' in value) || value['email'] === undefined)
35
+ return false;
36
+ if (!('intercomHash' in value) || value['intercomHash'] === undefined)
27
37
  return false;
28
38
  if (!('locale' in value) || value['locale'] === undefined)
29
39
  return false;
30
- if (!('email' in value) || value['email'] === undefined)
31
- return false;
32
40
  if (!('roles' in value) || value['roles'] === undefined)
33
41
  return false;
42
+ if (!('type' in value) || value['type'] === undefined)
43
+ return false;
34
44
  return true;
35
45
  }
36
- function BuyerUserDtoFromJSON(json) {
37
- return BuyerUserDtoFromJSONTyped(json, false);
46
+ function BuyerSecurityUserDtoFromJSON(json) {
47
+ return BuyerSecurityUserDtoFromJSONTyped(json, false);
38
48
  }
39
- function BuyerUserDtoFromJSONTyped(json, ignoreDiscriminator) {
49
+ function BuyerSecurityUserDtoFromJSONTyped(json, ignoreDiscriminator) {
40
50
  if (json == null) {
41
51
  return json;
42
52
  }
43
53
  return {
44
54
  'id': json['id'],
45
- 'buyerId': json['buyerId'],
46
- 'locale': json['locale'],
47
55
  'email': json['email'],
56
+ 'intercomHash': json['intercomHash'],
57
+ 'locale': json['locale'],
48
58
  'roles': json['roles'],
59
+ 'type': json['type'],
49
60
  };
50
61
  }
51
- function BuyerUserDtoToJSON(value) {
62
+ function BuyerSecurityUserDtoToJSON(value) {
52
63
  if (value == null) {
53
64
  return value;
54
65
  }
55
66
  return {
56
67
  'id': value['id'],
57
- 'buyerId': value['buyerId'],
58
- 'locale': value['locale'],
59
68
  'email': value['email'],
69
+ 'intercomHash': value['intercomHash'],
70
+ 'locale': value['locale'],
60
71
  'roles': value['roles'],
72
+ 'type': value['type'],
61
73
  };
62
74
  }
@@ -0,0 +1,37 @@
1
+ /**
2
+ * Nameshift
3
+ * Nameshift API
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 SellerSecurityUserAccountDto
16
+ */
17
+ export interface SellerSecurityUserAccountDto {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof SellerSecurityUserAccountDto
22
+ */
23
+ id: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof SellerSecurityUserAccountDto
28
+ */
29
+ name: string;
30
+ }
31
+ /**
32
+ * Check if a given object implements the SellerSecurityUserAccountDto interface.
33
+ */
34
+ export declare function instanceOfSellerSecurityUserAccountDto(value: object): value is SellerSecurityUserAccountDto;
35
+ export declare function SellerSecurityUserAccountDtoFromJSON(json: any): SellerSecurityUserAccountDto;
36
+ export declare function SellerSecurityUserAccountDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): SellerSecurityUserAccountDto;
37
+ export declare function SellerSecurityUserAccountDtoToJSON(value?: SellerSecurityUserAccountDto | null): any;
@@ -13,24 +13,24 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.instanceOfSecurityUserAccountDto = instanceOfSecurityUserAccountDto;
17
- exports.SecurityUserAccountDtoFromJSON = SecurityUserAccountDtoFromJSON;
18
- exports.SecurityUserAccountDtoFromJSONTyped = SecurityUserAccountDtoFromJSONTyped;
19
- exports.SecurityUserAccountDtoToJSON = SecurityUserAccountDtoToJSON;
16
+ exports.instanceOfSellerSecurityUserAccountDto = instanceOfSellerSecurityUserAccountDto;
17
+ exports.SellerSecurityUserAccountDtoFromJSON = SellerSecurityUserAccountDtoFromJSON;
18
+ exports.SellerSecurityUserAccountDtoFromJSONTyped = SellerSecurityUserAccountDtoFromJSONTyped;
19
+ exports.SellerSecurityUserAccountDtoToJSON = SellerSecurityUserAccountDtoToJSON;
20
20
  /**
21
- * Check if a given object implements the SecurityUserAccountDto interface.
21
+ * Check if a given object implements the SellerSecurityUserAccountDto interface.
22
22
  */
23
- function instanceOfSecurityUserAccountDto(value) {
23
+ function instanceOfSellerSecurityUserAccountDto(value) {
24
24
  if (!('id' in value) || value['id'] === undefined)
25
25
  return false;
26
26
  if (!('name' in value) || value['name'] === undefined)
27
27
  return false;
28
28
  return true;
29
29
  }
30
- function SecurityUserAccountDtoFromJSON(json) {
31
- return SecurityUserAccountDtoFromJSONTyped(json, false);
30
+ function SellerSecurityUserAccountDtoFromJSON(json) {
31
+ return SellerSecurityUserAccountDtoFromJSONTyped(json, false);
32
32
  }
33
- function SecurityUserAccountDtoFromJSONTyped(json, ignoreDiscriminator) {
33
+ function SellerSecurityUserAccountDtoFromJSONTyped(json, ignoreDiscriminator) {
34
34
  if (json == null) {
35
35
  return json;
36
36
  }
@@ -39,7 +39,7 @@ function SecurityUserAccountDtoFromJSONTyped(json, ignoreDiscriminator) {
39
39
  'name': json['name'],
40
40
  };
41
41
  }
42
- function SecurityUserAccountDtoToJSON(value) {
42
+ function SellerSecurityUserAccountDtoToJSON(value) {
43
43
  if (value == null) {
44
44
  return value;
45
45
  }
@@ -0,0 +1,88 @@
1
+ /**
2
+ * Nameshift
3
+ * Nameshift API
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
+ import type { SellerSecurityUserAccountDto } from './SellerSecurityUserAccountDto';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface SellerSecurityUserDto
17
+ */
18
+ export interface SellerSecurityUserDto {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof SellerSecurityUserDto
23
+ */
24
+ id: string;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof SellerSecurityUserDto
29
+ */
30
+ email: string;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof SellerSecurityUserDto
35
+ */
36
+ intercomHash: string;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof SellerSecurityUserDto
41
+ */
42
+ locale: string;
43
+ /**
44
+ *
45
+ * @type {Array<string>}
46
+ * @memberof SellerSecurityUserDto
47
+ */
48
+ roles: Array<string>;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof SellerSecurityUserDto
53
+ */
54
+ type: SellerSecurityUserDtoTypeEnum;
55
+ /**
56
+ *
57
+ * @type {string}
58
+ * @memberof SellerSecurityUserDto
59
+ */
60
+ firstname: string;
61
+ /**
62
+ *
63
+ * @type {string}
64
+ * @memberof SellerSecurityUserDto
65
+ */
66
+ lastname: string;
67
+ /**
68
+ *
69
+ * @type {SellerSecurityUserAccountDto}
70
+ * @memberof SellerSecurityUserDto
71
+ */
72
+ account: SellerSecurityUserAccountDto;
73
+ }
74
+ /**
75
+ * @export
76
+ */
77
+ export declare const SellerSecurityUserDtoTypeEnum: {
78
+ readonly BUYER: "buyer";
79
+ readonly SELLER: "seller";
80
+ };
81
+ export type SellerSecurityUserDtoTypeEnum = typeof SellerSecurityUserDtoTypeEnum[keyof typeof SellerSecurityUserDtoTypeEnum];
82
+ /**
83
+ * Check if a given object implements the SellerSecurityUserDto interface.
84
+ */
85
+ export declare function instanceOfSellerSecurityUserDto(value: object): value is SellerSecurityUserDto;
86
+ export declare function SellerSecurityUserDtoFromJSON(json: any): SellerSecurityUserDto;
87
+ export declare function SellerSecurityUserDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): SellerSecurityUserDto;
88
+ export declare function SellerSecurityUserDtoToJSON(value?: SellerSecurityUserDto | null): any;
@@ -13,59 +13,75 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.instanceOfSecurityUserDto = instanceOfSecurityUserDto;
17
- exports.SecurityUserDtoFromJSON = SecurityUserDtoFromJSON;
18
- exports.SecurityUserDtoFromJSONTyped = SecurityUserDtoFromJSONTyped;
19
- exports.SecurityUserDtoToJSON = SecurityUserDtoToJSON;
20
- var SecurityUserAccountDto_1 = require("./SecurityUserAccountDto");
16
+ exports.SellerSecurityUserDtoTypeEnum = void 0;
17
+ exports.instanceOfSellerSecurityUserDto = instanceOfSellerSecurityUserDto;
18
+ exports.SellerSecurityUserDtoFromJSON = SellerSecurityUserDtoFromJSON;
19
+ exports.SellerSecurityUserDtoFromJSONTyped = SellerSecurityUserDtoFromJSONTyped;
20
+ exports.SellerSecurityUserDtoToJSON = SellerSecurityUserDtoToJSON;
21
+ var SellerSecurityUserAccountDto_1 = require("./SellerSecurityUserAccountDto");
21
22
  /**
22
- * Check if a given object implements the SecurityUserDto interface.
23
+ * @export
23
24
  */
24
- function instanceOfSecurityUserDto(value) {
25
+ exports.SellerSecurityUserDtoTypeEnum = {
26
+ BUYER: 'buyer',
27
+ SELLER: 'seller'
28
+ };
29
+ /**
30
+ * Check if a given object implements the SellerSecurityUserDto interface.
31
+ */
32
+ function instanceOfSellerSecurityUserDto(value) {
25
33
  if (!('id' in value) || value['id'] === undefined)
26
34
  return false;
27
- if (!('firstname' in value) || value['firstname'] === undefined)
28
- return false;
29
- if (!('lastname' in value) || value['lastname'] === undefined)
30
- return false;
31
35
  if (!('email' in value) || value['email'] === undefined)
32
36
  return false;
33
- if (!('account' in value) || value['account'] === undefined)
37
+ if (!('intercomHash' in value) || value['intercomHash'] === undefined)
38
+ return false;
39
+ if (!('locale' in value) || value['locale'] === undefined)
34
40
  return false;
35
41
  if (!('roles' in value) || value['roles'] === undefined)
36
42
  return false;
37
- if (!('intercomHash' in value) || value['intercomHash'] === undefined)
43
+ if (!('type' in value) || value['type'] === undefined)
44
+ return false;
45
+ if (!('firstname' in value) || value['firstname'] === undefined)
46
+ return false;
47
+ if (!('lastname' in value) || value['lastname'] === undefined)
48
+ return false;
49
+ if (!('account' in value) || value['account'] === undefined)
38
50
  return false;
39
51
  return true;
40
52
  }
41
- function SecurityUserDtoFromJSON(json) {
42
- return SecurityUserDtoFromJSONTyped(json, false);
53
+ function SellerSecurityUserDtoFromJSON(json) {
54
+ return SellerSecurityUserDtoFromJSONTyped(json, false);
43
55
  }
44
- function SecurityUserDtoFromJSONTyped(json, ignoreDiscriminator) {
56
+ function SellerSecurityUserDtoFromJSONTyped(json, ignoreDiscriminator) {
45
57
  if (json == null) {
46
58
  return json;
47
59
  }
48
60
  return {
49
61
  'id': json['id'],
50
- 'firstname': json['firstname'],
51
- 'lastname': json['lastname'],
52
62
  'email': json['email'],
53
- 'account': (0, SecurityUserAccountDto_1.SecurityUserAccountDtoFromJSON)(json['account']),
54
- 'roles': json['roles'],
55
63
  'intercomHash': json['intercomHash'],
64
+ 'locale': json['locale'],
65
+ 'roles': json['roles'],
66
+ 'type': json['type'],
67
+ 'firstname': json['firstname'],
68
+ 'lastname': json['lastname'],
69
+ 'account': (0, SellerSecurityUserAccountDto_1.SellerSecurityUserAccountDtoFromJSON)(json['account']),
56
70
  };
57
71
  }
58
- function SecurityUserDtoToJSON(value) {
72
+ function SellerSecurityUserDtoToJSON(value) {
59
73
  if (value == null) {
60
74
  return value;
61
75
  }
62
76
  return {
63
77
  'id': value['id'],
64
- 'firstname': value['firstname'],
65
- 'lastname': value['lastname'],
66
78
  'email': value['email'],
67
- 'account': (0, SecurityUserAccountDto_1.SecurityUserAccountDtoToJSON)(value['account']),
68
- 'roles': value['roles'],
69
79
  'intercomHash': value['intercomHash'],
80
+ 'locale': value['locale'],
81
+ 'roles': value['roles'],
82
+ 'type': value['type'],
83
+ 'firstname': value['firstname'],
84
+ 'lastname': value['lastname'],
85
+ 'account': (0, SellerSecurityUserAccountDto_1.SellerSecurityUserAccountDtoToJSON)(value['account']),
70
86
  };
71
87
  }
@@ -13,7 +13,7 @@ export * from './BuyerDomainTransferListItemDomainDto';
13
13
  export * from './BuyerDomainTransferListItemDto';
14
14
  export * from './BuyerLeadListItemDomainDto';
15
15
  export * from './BuyerLeadListItemDto';
16
- export * from './BuyerUserDto';
16
+ export * from './BuyerSecurityUserDto';
17
17
  export * from './ChangeOrderStatusInput';
18
18
  export * from './ChartDataPoint';
19
19
  export * from './ConflictException';
@@ -94,13 +94,13 @@ export * from './PutLeadOfferInput';
94
94
  export * from './RegisterAccountInput';
95
95
  export * from './RelatedSellerDomain';
96
96
  export * from './RequestAccessTokenInput';
97
- export * from './SecurityUserAccountDto';
98
- export * from './SecurityUserDto';
99
97
  export * from './SellerDomainTransferAuthCodeDto';
100
98
  export * from './SellerDomainTransferDomainDto';
101
99
  export * from './SellerDomainTransferDto';
102
100
  export * from './SellerDomainTransferListItemDomainDto';
103
101
  export * from './SellerDomainTransferListItemDto';
102
+ export * from './SellerSecurityUserAccountDto';
103
+ export * from './SellerSecurityUserDto';
104
104
  export * from './SetDomainTransferConfirmationInput';
105
105
  export * from './SetNewPasswordInput';
106
106
  export * from './StoreBuyerLocaleInput';
@@ -31,7 +31,7 @@ __exportStar(require("./BuyerDomainTransferListItemDomainDto"), exports);
31
31
  __exportStar(require("./BuyerDomainTransferListItemDto"), exports);
32
32
  __exportStar(require("./BuyerLeadListItemDomainDto"), exports);
33
33
  __exportStar(require("./BuyerLeadListItemDto"), exports);
34
- __exportStar(require("./BuyerUserDto"), exports);
34
+ __exportStar(require("./BuyerSecurityUserDto"), exports);
35
35
  __exportStar(require("./ChangeOrderStatusInput"), exports);
36
36
  __exportStar(require("./ChartDataPoint"), exports);
37
37
  __exportStar(require("./ConflictException"), exports);
@@ -112,13 +112,13 @@ __exportStar(require("./PutLeadOfferInput"), exports);
112
112
  __exportStar(require("./RegisterAccountInput"), exports);
113
113
  __exportStar(require("./RelatedSellerDomain"), exports);
114
114
  __exportStar(require("./RequestAccessTokenInput"), exports);
115
- __exportStar(require("./SecurityUserAccountDto"), exports);
116
- __exportStar(require("./SecurityUserDto"), exports);
117
115
  __exportStar(require("./SellerDomainTransferAuthCodeDto"), exports);
118
116
  __exportStar(require("./SellerDomainTransferDomainDto"), exports);
119
117
  __exportStar(require("./SellerDomainTransferDto"), exports);
120
118
  __exportStar(require("./SellerDomainTransferListItemDomainDto"), exports);
121
119
  __exportStar(require("./SellerDomainTransferListItemDto"), exports);
120
+ __exportStar(require("./SellerSecurityUserAccountDto"), exports);
121
+ __exportStar(require("./SellerSecurityUserDto"), exports);
122
122
  __exportStar(require("./SetDomainTransferConfirmationInput"), exports);
123
123
  __exportStar(require("./SetNewPasswordInput"), exports);
124
124
  __exportStar(require("./StoreBuyerLocaleInput"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.109",
3
+ "version": "0.0.110",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -18,7 +18,7 @@ import type {
18
18
  BadRequestException,
19
19
  BatchReadBuyerLeadMessageInput,
20
20
  BuyerDomainTransferAuthCodeDto,
21
- BuyerUserDto,
21
+ BuyerSecurityUserDto,
22
22
  CreateBuyerLeadMessageInput,
23
23
  GetBuyerInvoices200Response,
24
24
  GetBuyerLeads200Response,
@@ -39,8 +39,8 @@ import {
39
39
  BatchReadBuyerLeadMessageInputToJSON,
40
40
  BuyerDomainTransferAuthCodeDtoFromJSON,
41
41
  BuyerDomainTransferAuthCodeDtoToJSON,
42
- BuyerUserDtoFromJSON,
43
- BuyerUserDtoToJSON,
42
+ BuyerSecurityUserDtoFromJSON,
43
+ BuyerSecurityUserDtoToJSON,
44
44
  CreateBuyerLeadMessageInputFromJSON,
45
45
  CreateBuyerLeadMessageInputToJSON,
46
46
  GetBuyerInvoices200ResponseFromJSON,
@@ -230,7 +230,7 @@ export class BuyersApi extends runtime.BaseAPI {
230
230
  /**
231
231
  *
232
232
  */
233
- async buyerMeRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<BuyerUserDto>> {
233
+ async buyerMeRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<BuyerSecurityUserDto>> {
234
234
  const queryParameters: any = {};
235
235
 
236
236
  const headerParameters: runtime.HTTPHeaders = {};
@@ -250,13 +250,13 @@ export class BuyersApi extends runtime.BaseAPI {
250
250
  query: queryParameters,
251
251
  }, initOverrides);
252
252
 
253
- return new runtime.JSONApiResponse(response, (jsonValue) => BuyerUserDtoFromJSON(jsonValue));
253
+ return new runtime.JSONApiResponse(response, (jsonValue) => BuyerSecurityUserDtoFromJSON(jsonValue));
254
254
  }
255
255
 
256
256
  /**
257
257
  *
258
258
  */
259
- async buyerMe(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<BuyerUserDto> {
259
+ async buyerMe(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<BuyerSecurityUserDto> {
260
260
  const response = await this.buyerMeRaw(initOverrides);
261
261
  return await response.value();
262
262
  }