@randock/nameshift-api-client 0.0.12 → 0.0.14

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 (47) hide show
  1. package/.openapi-generator/FILES +11 -1
  2. package/dist/apis/LeadsApi.d.ts +38 -3
  3. package/dist/apis/LeadsApi.js +170 -1
  4. package/dist/models/CreateLeadMessageInput.d.ts +31 -0
  5. package/dist/models/CreateLeadMessageInput.js +50 -0
  6. package/dist/models/CreateLeadMessageInputData.d.ts +32 -0
  7. package/dist/models/CreateLeadMessageInputData.js +51 -0
  8. package/dist/models/IntersectionDomainDtoWithAccountDto.d.ts +75 -0
  9. package/dist/models/IntersectionDomainDtoWithAccountDto.js +73 -0
  10. package/dist/models/IntersectionLeadDtoWithLeadDetailsDto.d.ts +81 -0
  11. package/dist/models/IntersectionLeadDtoWithLeadDetailsDto.js +83 -0
  12. package/dist/models/IntersectionLeadDtoWithListFieldsDto.d.ts +37 -2
  13. package/dist/models/IntersectionLeadDtoWithListFieldsDto.js +23 -1
  14. package/dist/models/IntersectionLeadDtoWithListFieldsDtoLastMessageData.d.ts +32 -0
  15. package/dist/models/IntersectionLeadDtoWithListFieldsDtoLastMessageData.js +51 -0
  16. package/dist/models/IntersectionLeadDtoWithListFieldsDtoLastOffer.d.ts +37 -0
  17. package/dist/models/IntersectionLeadDtoWithListFieldsDtoLastOffer.js +53 -0
  18. package/dist/models/LeadDto.d.ts +22 -0
  19. package/dist/models/LeadDto.js +16 -1
  20. package/dist/models/LeadMessageData.d.ts +32 -0
  21. package/dist/models/LeadMessageData.js +51 -0
  22. package/dist/models/LeadMessageDto.d.ts +85 -0
  23. package/dist/models/LeadMessageDto.js +84 -0
  24. package/dist/models/LeadMessageDtoData.d.ts +32 -0
  25. package/dist/models/LeadMessageDtoData.js +51 -0
  26. package/dist/models/ListLeadMessagesDto.d.ts +32 -0
  27. package/dist/models/ListLeadMessagesDto.js +51 -0
  28. package/dist/models/PutLeadInput.d.ts +32 -0
  29. package/dist/models/PutLeadInput.js +51 -0
  30. package/dist/models/index.d.ts +11 -1
  31. package/dist/models/index.js +11 -1
  32. package/package.json +2 -1
  33. package/src/apis/LeadsApi.ts +160 -6
  34. package/src/models/CreateLeadMessageInput.ts +66 -0
  35. package/src/models/CreateLeadMessageInputData.ts +73 -0
  36. package/src/models/IntersectionDomainDtoWithAccountDto.ts +142 -0
  37. package/src/models/IntersectionLeadDtoWithLeadDetailsDto.ts +146 -0
  38. package/src/models/IntersectionLeadDtoWithListFieldsDto.ts +61 -2
  39. package/src/models/IntersectionLeadDtoWithListFieldsDtoLastMessageData.ts +73 -0
  40. package/src/models/IntersectionLeadDtoWithListFieldsDtoLastOffer.ts +75 -0
  41. package/src/models/LeadDto.ts +35 -0
  42. package/src/models/LeadMessageData.ts +73 -0
  43. package/src/models/LeadMessageDto.ts +148 -0
  44. package/src/models/LeadMessageDtoData.ts +73 -0
  45. package/src/models/ListLeadMessagesDto.ts +73 -0
  46. package/src/models/PutLeadInput.ts +73 -0
  47. package/src/models/index.ts +11 -1
@@ -0,0 +1,85 @@
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 { LeadMessageDtoData } from './LeadMessageDtoData';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface LeadMessageDto
17
+ */
18
+ export interface LeadMessageDto {
19
+ /**
20
+ * The current id
21
+ * @type {string}
22
+ * @memberof LeadMessageDto
23
+ */
24
+ id: string;
25
+ /**
26
+ * The message type
27
+ * @type {string}
28
+ * @memberof LeadMessageDto
29
+ */
30
+ type: LeadMessageDtoTypeEnum;
31
+ /**
32
+ * The message origin
33
+ * @type {string}
34
+ * @memberof LeadMessageDto
35
+ */
36
+ origin: LeadMessageDtoOriginEnum;
37
+ /**
38
+ *
39
+ * @type {LeadMessageDtoData}
40
+ * @memberof LeadMessageDto
41
+ */
42
+ data: LeadMessageDtoData | null;
43
+ /**
44
+ * Created at date
45
+ * @type {Date}
46
+ * @memberof LeadMessageDto
47
+ */
48
+ createdAt: Date;
49
+ /**
50
+ * Initials of the buyer/seller *
51
+ * @type {string}
52
+ * @memberof LeadMessageDto
53
+ */
54
+ initials: string;
55
+ /**
56
+ * Optional message *
57
+ * @type {string}
58
+ * @memberof LeadMessageDto
59
+ */
60
+ message: string | null;
61
+ }
62
+ /**
63
+ * @export
64
+ */
65
+ export declare const LeadMessageDtoTypeEnum: {
66
+ readonly OFFER: "offer";
67
+ readonly MESSAGE: "message";
68
+ };
69
+ export type LeadMessageDtoTypeEnum = typeof LeadMessageDtoTypeEnum[keyof typeof LeadMessageDtoTypeEnum];
70
+ /**
71
+ * @export
72
+ */
73
+ export declare const LeadMessageDtoOriginEnum: {
74
+ readonly BUYER: "buyer";
75
+ readonly SELLER: "seller";
76
+ readonly ADMIN: "admin";
77
+ };
78
+ export type LeadMessageDtoOriginEnum = typeof LeadMessageDtoOriginEnum[keyof typeof LeadMessageDtoOriginEnum];
79
+ /**
80
+ * Check if a given object implements the LeadMessageDto interface.
81
+ */
82
+ export declare function instanceOfLeadMessageDto(value: object): boolean;
83
+ export declare function LeadMessageDtoFromJSON(json: any): LeadMessageDto;
84
+ export declare function LeadMessageDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): LeadMessageDto;
85
+ export declare function LeadMessageDtoToJSON(value?: LeadMessageDto | null): any;
@@ -0,0 +1,84 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Nameshift
6
+ * Nameshift API
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.LeadMessageDtoToJSON = exports.LeadMessageDtoFromJSONTyped = exports.LeadMessageDtoFromJSON = exports.instanceOfLeadMessageDto = exports.LeadMessageDtoOriginEnum = exports.LeadMessageDtoTypeEnum = void 0;
17
+ var LeadMessageDtoData_1 = require("./LeadMessageDtoData");
18
+ /**
19
+ * @export
20
+ */
21
+ exports.LeadMessageDtoTypeEnum = {
22
+ OFFER: 'offer',
23
+ MESSAGE: 'message'
24
+ };
25
+ /**
26
+ * @export
27
+ */
28
+ exports.LeadMessageDtoOriginEnum = {
29
+ BUYER: 'buyer',
30
+ SELLER: 'seller',
31
+ ADMIN: 'admin'
32
+ };
33
+ /**
34
+ * Check if a given object implements the LeadMessageDto interface.
35
+ */
36
+ function instanceOfLeadMessageDto(value) {
37
+ var isInstance = true;
38
+ isInstance = isInstance && "id" in value;
39
+ isInstance = isInstance && "type" in value;
40
+ isInstance = isInstance && "origin" in value;
41
+ isInstance = isInstance && "data" in value;
42
+ isInstance = isInstance && "createdAt" in value;
43
+ isInstance = isInstance && "initials" in value;
44
+ isInstance = isInstance && "message" in value;
45
+ return isInstance;
46
+ }
47
+ exports.instanceOfLeadMessageDto = instanceOfLeadMessageDto;
48
+ function LeadMessageDtoFromJSON(json) {
49
+ return LeadMessageDtoFromJSONTyped(json, false);
50
+ }
51
+ exports.LeadMessageDtoFromJSON = LeadMessageDtoFromJSON;
52
+ function LeadMessageDtoFromJSONTyped(json, ignoreDiscriminator) {
53
+ if ((json === undefined) || (json === null)) {
54
+ return json;
55
+ }
56
+ return {
57
+ 'id': json['id'],
58
+ 'type': json['type'],
59
+ 'origin': json['origin'],
60
+ 'data': (0, LeadMessageDtoData_1.LeadMessageDtoDataFromJSON)(json['data']),
61
+ 'createdAt': (new Date(json['createdAt'])),
62
+ 'initials': json['initials'],
63
+ 'message': json['message'],
64
+ };
65
+ }
66
+ exports.LeadMessageDtoFromJSONTyped = LeadMessageDtoFromJSONTyped;
67
+ function LeadMessageDtoToJSON(value) {
68
+ if (value === undefined) {
69
+ return undefined;
70
+ }
71
+ if (value === null) {
72
+ return null;
73
+ }
74
+ return {
75
+ 'id': value.id,
76
+ 'type': value.type,
77
+ 'origin': value.origin,
78
+ 'data': (0, LeadMessageDtoData_1.LeadMessageDtoDataToJSON)(value.data),
79
+ 'createdAt': (value.createdAt.toISOString()),
80
+ 'initials': value.initials,
81
+ 'message': value.message,
82
+ };
83
+ }
84
+ exports.LeadMessageDtoToJSON = LeadMessageDtoToJSON;
@@ -0,0 +1,32 @@
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 { MoneyDto } from './MoneyDto';
13
+ /**
14
+ * Optional data *
15
+ * @export
16
+ * @interface LeadMessageDtoData
17
+ */
18
+ export interface LeadMessageDtoData {
19
+ /**
20
+ *
21
+ * @type {MoneyDto}
22
+ * @memberof LeadMessageDtoData
23
+ */
24
+ price: MoneyDto;
25
+ }
26
+ /**
27
+ * Check if a given object implements the LeadMessageDtoData interface.
28
+ */
29
+ export declare function instanceOfLeadMessageDtoData(value: object): boolean;
30
+ export declare function LeadMessageDtoDataFromJSON(json: any): LeadMessageDtoData;
31
+ export declare function LeadMessageDtoDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): LeadMessageDtoData;
32
+ export declare function LeadMessageDtoDataToJSON(value?: LeadMessageDtoData | null): any;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Nameshift
6
+ * Nameshift API
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.LeadMessageDtoDataToJSON = exports.LeadMessageDtoDataFromJSONTyped = exports.LeadMessageDtoDataFromJSON = exports.instanceOfLeadMessageDtoData = void 0;
17
+ var MoneyDto_1 = require("./MoneyDto");
18
+ /**
19
+ * Check if a given object implements the LeadMessageDtoData interface.
20
+ */
21
+ function instanceOfLeadMessageDtoData(value) {
22
+ var isInstance = true;
23
+ isInstance = isInstance && "price" in value;
24
+ return isInstance;
25
+ }
26
+ exports.instanceOfLeadMessageDtoData = instanceOfLeadMessageDtoData;
27
+ function LeadMessageDtoDataFromJSON(json) {
28
+ return LeadMessageDtoDataFromJSONTyped(json, false);
29
+ }
30
+ exports.LeadMessageDtoDataFromJSON = LeadMessageDtoDataFromJSON;
31
+ function LeadMessageDtoDataFromJSONTyped(json, ignoreDiscriminator) {
32
+ if ((json === undefined) || (json === null)) {
33
+ return json;
34
+ }
35
+ return {
36
+ 'price': (0, MoneyDto_1.MoneyDtoFromJSON)(json['price']),
37
+ };
38
+ }
39
+ exports.LeadMessageDtoDataFromJSONTyped = LeadMessageDtoDataFromJSONTyped;
40
+ function LeadMessageDtoDataToJSON(value) {
41
+ if (value === undefined) {
42
+ return undefined;
43
+ }
44
+ if (value === null) {
45
+ return null;
46
+ }
47
+ return {
48
+ 'price': (0, MoneyDto_1.MoneyDtoToJSON)(value.price),
49
+ };
50
+ }
51
+ exports.LeadMessageDtoDataToJSON = LeadMessageDtoDataToJSON;
@@ -0,0 +1,32 @@
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 { LeadMessageDto } from './LeadMessageDto';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListLeadMessagesDto
17
+ */
18
+ export interface ListLeadMessagesDto {
19
+ /**
20
+ *
21
+ * @type {Array<LeadMessageDto>}
22
+ * @memberof ListLeadMessagesDto
23
+ */
24
+ messages: Array<LeadMessageDto>;
25
+ }
26
+ /**
27
+ * Check if a given object implements the ListLeadMessagesDto interface.
28
+ */
29
+ export declare function instanceOfListLeadMessagesDto(value: object): boolean;
30
+ export declare function ListLeadMessagesDtoFromJSON(json: any): ListLeadMessagesDto;
31
+ export declare function ListLeadMessagesDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListLeadMessagesDto;
32
+ export declare function ListLeadMessagesDtoToJSON(value?: ListLeadMessagesDto | null): any;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Nameshift
6
+ * Nameshift API
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.ListLeadMessagesDtoToJSON = exports.ListLeadMessagesDtoFromJSONTyped = exports.ListLeadMessagesDtoFromJSON = exports.instanceOfListLeadMessagesDto = void 0;
17
+ var LeadMessageDto_1 = require("./LeadMessageDto");
18
+ /**
19
+ * Check if a given object implements the ListLeadMessagesDto interface.
20
+ */
21
+ function instanceOfListLeadMessagesDto(value) {
22
+ var isInstance = true;
23
+ isInstance = isInstance && "messages" in value;
24
+ return isInstance;
25
+ }
26
+ exports.instanceOfListLeadMessagesDto = instanceOfListLeadMessagesDto;
27
+ function ListLeadMessagesDtoFromJSON(json) {
28
+ return ListLeadMessagesDtoFromJSONTyped(json, false);
29
+ }
30
+ exports.ListLeadMessagesDtoFromJSON = ListLeadMessagesDtoFromJSON;
31
+ function ListLeadMessagesDtoFromJSONTyped(json, ignoreDiscriminator) {
32
+ if ((json === undefined) || (json === null)) {
33
+ return json;
34
+ }
35
+ return {
36
+ 'messages': (json['messages'].map(LeadMessageDto_1.LeadMessageDtoFromJSON)),
37
+ };
38
+ }
39
+ exports.ListLeadMessagesDtoFromJSONTyped = ListLeadMessagesDtoFromJSONTyped;
40
+ function ListLeadMessagesDtoToJSON(value) {
41
+ if (value === undefined) {
42
+ return undefined;
43
+ }
44
+ if (value === null) {
45
+ return null;
46
+ }
47
+ return {
48
+ 'messages': (value.messages.map(LeadMessageDto_1.LeadMessageDtoToJSON)),
49
+ };
50
+ }
51
+ exports.ListLeadMessagesDtoToJSON = ListLeadMessagesDtoToJSON;
@@ -0,0 +1,32 @@
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 { MoneyDto } from './MoneyDto';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface PutLeadInput
17
+ */
18
+ export interface PutLeadInput {
19
+ /**
20
+ *
21
+ * @type {MoneyDto}
22
+ * @memberof PutLeadInput
23
+ */
24
+ offer: MoneyDto | null;
25
+ }
26
+ /**
27
+ * Check if a given object implements the PutLeadInput interface.
28
+ */
29
+ export declare function instanceOfPutLeadInput(value: object): boolean;
30
+ export declare function PutLeadInputFromJSON(json: any): PutLeadInput;
31
+ export declare function PutLeadInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): PutLeadInput;
32
+ export declare function PutLeadInputToJSON(value?: PutLeadInput | null): any;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Nameshift
6
+ * Nameshift API
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.PutLeadInputToJSON = exports.PutLeadInputFromJSONTyped = exports.PutLeadInputFromJSON = exports.instanceOfPutLeadInput = void 0;
17
+ var MoneyDto_1 = require("./MoneyDto");
18
+ /**
19
+ * Check if a given object implements the PutLeadInput interface.
20
+ */
21
+ function instanceOfPutLeadInput(value) {
22
+ var isInstance = true;
23
+ isInstance = isInstance && "offer" in value;
24
+ return isInstance;
25
+ }
26
+ exports.instanceOfPutLeadInput = instanceOfPutLeadInput;
27
+ function PutLeadInputFromJSON(json) {
28
+ return PutLeadInputFromJSONTyped(json, false);
29
+ }
30
+ exports.PutLeadInputFromJSON = PutLeadInputFromJSON;
31
+ function PutLeadInputFromJSONTyped(json, ignoreDiscriminator) {
32
+ if ((json === undefined) || (json === null)) {
33
+ return json;
34
+ }
35
+ return {
36
+ 'offer': (0, MoneyDto_1.MoneyDtoFromJSON)(json['offer']),
37
+ };
38
+ }
39
+ exports.PutLeadInputFromJSONTyped = PutLeadInputFromJSONTyped;
40
+ function PutLeadInputToJSON(value) {
41
+ if (value === undefined) {
42
+ return undefined;
43
+ }
44
+ if (value === null) {
45
+ return null;
46
+ }
47
+ return {
48
+ 'offer': (0, MoneyDto_1.MoneyDtoToJSON)(value.offer),
49
+ };
50
+ }
51
+ exports.PutLeadInputToJSON = PutLeadInputToJSON;
@@ -1,10 +1,12 @@
1
1
  export * from './AccountAddressDto';
2
2
  export * from './AccountAddressInput';
3
+ export * from './AccountDto';
3
4
  export * from './AccountFinancialInput';
4
5
  export * from './AccountSettingsInput';
5
6
  export * from './BatchUpdate404Response';
6
7
  export * from './BatchUpdateDomainsInput';
7
8
  export * from './CreateLeadInput';
9
+ export * from './CreateLeadMessageInput';
8
10
  export * from './DeleteDomainsInput';
9
11
  export * from './DomainDto';
10
12
  export * from './ImportDomainsDto';
@@ -12,12 +14,19 @@ export * from './IntersectionAccountDtoWithAddressDto';
12
14
  export * from './IntersectionAccountDtoWithFinancialDto';
13
15
  export * from './IntersectionAccountDtoWithFinancialDtoWithSettingsDtoWithAddressDto';
14
16
  export * from './IntersectionAccountDtoWithSettingsDto';
15
- export * from './IntersectionLeadDto';
17
+ export * from './IntersectionDomainDtoWithAccountDto';
18
+ export * from './IntersectionLeadDtoWithLeadDetailsDto';
16
19
  export * from './IntersectionLeadDtoWithListFieldsDto';
20
+ export * from './IntersectionLeadDtoWithListFieldsDtoLastMessageData';
21
+ export * from './IntersectionLeadDtoWithListFieldsDtoLastOffer';
17
22
  export * from './LeadDto';
23
+ export * from './LeadMessageData';
24
+ export * from './LeadMessageDto';
25
+ export * from './LeadMessageDtoData';
18
26
  export * from './List200Response';
19
27
  export * from './List400Response';
20
28
  export * from './List401Response';
29
+ export * from './ListLeadMessagesDto';
21
30
  export * from './Login401Response';
22
31
  export * from './Login429Response';
23
32
  export * from './LoginInput';
@@ -27,6 +36,7 @@ export * from './PaginateResponse';
27
36
  export * from './PaginateResponseLinks';
28
37
  export * from './PaginateResponseMeta';
29
38
  export * from './PublicDomainControllerGetDomainIdentifier404Response';
39
+ export * from './PutLeadInput';
30
40
  export * from './TokenDto';
31
41
  export * from './UpdateDomainInput';
32
42
  export * from './UpdateSettings401Response';
@@ -18,11 +18,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
18
18
  /* eslint-disable */
19
19
  __exportStar(require("./AccountAddressDto"), exports);
20
20
  __exportStar(require("./AccountAddressInput"), exports);
21
+ __exportStar(require("./AccountDto"), exports);
21
22
  __exportStar(require("./AccountFinancialInput"), exports);
22
23
  __exportStar(require("./AccountSettingsInput"), exports);
23
24
  __exportStar(require("./BatchUpdate404Response"), exports);
24
25
  __exportStar(require("./BatchUpdateDomainsInput"), exports);
25
26
  __exportStar(require("./CreateLeadInput"), exports);
27
+ __exportStar(require("./CreateLeadMessageInput"), exports);
26
28
  __exportStar(require("./DeleteDomainsInput"), exports);
27
29
  __exportStar(require("./DomainDto"), exports);
28
30
  __exportStar(require("./ImportDomainsDto"), exports);
@@ -30,12 +32,19 @@ __exportStar(require("./IntersectionAccountDtoWithAddressDto"), exports);
30
32
  __exportStar(require("./IntersectionAccountDtoWithFinancialDto"), exports);
31
33
  __exportStar(require("./IntersectionAccountDtoWithFinancialDtoWithSettingsDtoWithAddressDto"), exports);
32
34
  __exportStar(require("./IntersectionAccountDtoWithSettingsDto"), exports);
33
- __exportStar(require("./IntersectionLeadDto"), exports);
35
+ __exportStar(require("./IntersectionDomainDtoWithAccountDto"), exports);
36
+ __exportStar(require("./IntersectionLeadDtoWithLeadDetailsDto"), exports);
34
37
  __exportStar(require("./IntersectionLeadDtoWithListFieldsDto"), exports);
38
+ __exportStar(require("./IntersectionLeadDtoWithListFieldsDtoLastMessageData"), exports);
39
+ __exportStar(require("./IntersectionLeadDtoWithListFieldsDtoLastOffer"), exports);
35
40
  __exportStar(require("./LeadDto"), exports);
41
+ __exportStar(require("./LeadMessageData"), exports);
42
+ __exportStar(require("./LeadMessageDto"), exports);
43
+ __exportStar(require("./LeadMessageDtoData"), exports);
36
44
  __exportStar(require("./List200Response"), exports);
37
45
  __exportStar(require("./List400Response"), exports);
38
46
  __exportStar(require("./List401Response"), exports);
47
+ __exportStar(require("./ListLeadMessagesDto"), exports);
39
48
  __exportStar(require("./Login401Response"), exports);
40
49
  __exportStar(require("./Login429Response"), exports);
41
50
  __exportStar(require("./LoginInput"), exports);
@@ -45,6 +54,7 @@ __exportStar(require("./PaginateResponse"), exports);
45
54
  __exportStar(require("./PaginateResponseLinks"), exports);
46
55
  __exportStar(require("./PaginateResponseMeta"), exports);
47
56
  __exportStar(require("./PublicDomainControllerGetDomainIdentifier404Response"), exports);
57
+ __exportStar(require("./PutLeadInput"), exports);
48
58
  __exportStar(require("./TokenDto"), exports);
49
59
  __exportStar(require("./UpdateDomainInput"), exports);
50
60
  __exportStar(require("./UpdateSettings401Response"), exports);
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.12",
3
+ "version": "0.0.14",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
+ "author": "OpenAPI-Generator",
5
6
  "main": "./dist/index.js",
6
7
  "typings": "./dist/index.d.ts",
7
8
  "scripts": {