@randock/nameshift-api-client 0.0.15 → 0.0.17
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/.openapi-generator/FILES +2 -5
- package/dist/apis/AccountsApi.d.ts +10 -10
- package/dist/apis/AccountsApi.js +9 -15
- package/dist/apis/AuthApi.d.ts +3 -3
- package/dist/apis/DomainsApi.d.ts +30 -19
- package/dist/apis/DomainsApi.js +56 -5
- package/dist/apis/DomainsPublicApi.d.ts +12 -3
- package/dist/apis/DomainsPublicApi.js +43 -0
- package/dist/apis/LeadsApi.d.ts +13 -13
- package/dist/apis/LeadsApi.js +4 -6
- package/dist/apis/LeadsPublicApi.d.ts +4 -4
- package/dist/apis/LeadsPublicApi.js +1 -1
- package/dist/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.d.ts +81 -0
- package/dist/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.js +76 -0
- package/dist/models/ObjectId.d.ts +31 -0
- package/dist/models/ObjectId.js +50 -0
- package/dist/models/index.d.ts +2 -5
- package/dist/models/index.js +2 -5
- package/package.json +5 -1
- package/src/apis/AccountsApi.ts +15 -27
- package/src/apis/AuthApi.ts +3 -3
- package/src/apis/DomainsApi.ts +65 -24
- package/src/apis/DomainsPublicApi.ts +38 -3
- package/src/apis/LeadsApi.ts +18 -19
- package/src/apis/LeadsPublicApi.ts +7 -7
- package/src/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.ts +151 -0
- package/src/models/ObjectId.ts +66 -0
- package/src/models/index.ts +2 -5
package/src/models/index.ts
CHANGED
|
@@ -11,17 +11,13 @@ export * from './CreateLeadInput';
|
|
|
11
11
|
export * from './CreateLeadMessageInput';
|
|
12
12
|
export * from './DeleteDomainsInput';
|
|
13
13
|
export * from './DomainDto';
|
|
14
|
-
export * from './ImportDomainsDto';
|
|
15
|
-
export * from './IntersectionAccountDtoWithAddressDto';
|
|
16
|
-
export * from './IntersectionAccountDtoWithFinancialDto';
|
|
17
14
|
export * from './IntersectionAccountDtoWithFinancialDtoWithSettingsDtoWithAddressDto';
|
|
18
|
-
export * from './IntersectionAccountDtoWithSettingsDto';
|
|
19
15
|
export * from './IntersectionDomainDtoWithAccountDto';
|
|
16
|
+
export * from './IntersectionDomainDtoWithHijackerDtoWithAccountDto';
|
|
20
17
|
export * from './IntersectionLeadDtoWithLeadDetailsDto';
|
|
21
18
|
export * from './IntersectionLeadDtoWithListFieldsDto';
|
|
22
19
|
export * from './IntersectionLeadDtoWithListFieldsDtoLastMessageData';
|
|
23
20
|
export * from './IntersectionLeadDtoWithListFieldsDtoLastOffer';
|
|
24
|
-
export * from './LeadDto';
|
|
25
21
|
export * from './LeadMessageData';
|
|
26
22
|
export * from './LeadMessageDto';
|
|
27
23
|
export * from './LeadMessageDtoData';
|
|
@@ -34,6 +30,7 @@ export * from './Login429Response';
|
|
|
34
30
|
export * from './LoginInput';
|
|
35
31
|
export * from './MoneyDto';
|
|
36
32
|
export * from './MoneyInput';
|
|
33
|
+
export * from './ObjectId';
|
|
37
34
|
export * from './PaginateResponse';
|
|
38
35
|
export * from './PaginateResponseLinks';
|
|
39
36
|
export * from './PaginateResponseMeta';
|