@randock/nameshift-api-client 0.0.134 → 0.0.135
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/README.md +3 -3
- package/dist/models/DomainSellerDto.d.ts +5 -5
- package/dist/models/DomainSellerDto.js +5 -5
- package/dist/models/IntersectionDomainSalesInformationDtoWithDomainStatsDto.d.ts +1 -1
- package/package.json +1 -1
- package/src/models/DomainSellerDto.ts +10 -10
- package/src/models/IntersectionDomainSalesInformationDtoWithDomainStatsDto.ts +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @randock/nameshift-api-client@0.0.
|
|
1
|
+
## @randock/nameshift-api-client@0.0.135
|
|
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.
|
|
39
|
+
npm install @randock/nameshift-api-client@0.0.135 --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
|
-
|
|
47
|
+
345e401def5d53a6d7a8650806e5fde59f138a95a815e89b701486f1aeab8e1b508e83d04b0572d0903d042166954efd
|
|
@@ -23,17 +23,17 @@ export interface DomainSellerDto {
|
|
|
23
23
|
*/
|
|
24
24
|
createdAt: Date;
|
|
25
25
|
/**
|
|
26
|
-
* The
|
|
27
|
-
* @type {
|
|
26
|
+
* The seller account name
|
|
27
|
+
* @type {string}
|
|
28
28
|
* @memberof DomainSellerDto
|
|
29
29
|
*/
|
|
30
|
-
|
|
30
|
+
name: string;
|
|
31
31
|
/**
|
|
32
32
|
* Last online, formatted
|
|
33
|
-
* @type {
|
|
33
|
+
* @type {Date}
|
|
34
34
|
* @memberof DomainSellerDto
|
|
35
35
|
*/
|
|
36
|
-
lastOnline:
|
|
36
|
+
lastOnline: Date;
|
|
37
37
|
/**
|
|
38
38
|
* Delivers in, formatted
|
|
39
39
|
* @type {string}
|
|
@@ -25,7 +25,7 @@ var RelatedSellerDomain_1 = require("./RelatedSellerDomain");
|
|
|
25
25
|
function instanceOfDomainSellerDto(value) {
|
|
26
26
|
if (!('createdAt' in value) || value['createdAt'] === undefined)
|
|
27
27
|
return false;
|
|
28
|
-
if (!('
|
|
28
|
+
if (!('name' in value) || value['name'] === undefined)
|
|
29
29
|
return false;
|
|
30
30
|
if (!('lastOnline' in value) || value['lastOnline'] === undefined)
|
|
31
31
|
return false;
|
|
@@ -44,8 +44,8 @@ function DomainSellerDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
44
44
|
}
|
|
45
45
|
return {
|
|
46
46
|
'createdAt': (new Date(json['createdAt'])),
|
|
47
|
-
'
|
|
48
|
-
'lastOnline': json['lastOnline'],
|
|
47
|
+
'name': json['name'],
|
|
48
|
+
'lastOnline': (new Date(json['lastOnline'])),
|
|
49
49
|
'deliversIn': json['deliversIn'],
|
|
50
50
|
'relatedDomains': (json['relatedDomains'] == null ? null : json['relatedDomains'].map(RelatedSellerDomain_1.RelatedSellerDomainFromJSON)),
|
|
51
51
|
};
|
|
@@ -60,8 +60,8 @@ function DomainSellerDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
|
60
60
|
}
|
|
61
61
|
return {
|
|
62
62
|
'createdAt': ((value['createdAt']).toISOString()),
|
|
63
|
-
'
|
|
64
|
-
'lastOnline': value['lastOnline'],
|
|
63
|
+
'name': value['name'],
|
|
64
|
+
'lastOnline': ((value['lastOnline']).toISOString()),
|
|
65
65
|
'deliversIn': value['deliversIn'],
|
|
66
66
|
'relatedDomains': (value['relatedDomains'] == null ? null : value['relatedDomains'].map(RelatedSellerDomain_1.RelatedSellerDomainToJSON)),
|
|
67
67
|
};
|
|
@@ -53,7 +53,7 @@ export interface IntersectionDomainSalesInformationDtoWithDomainStatsDto {
|
|
|
53
53
|
* @type {DomainSellerDto}
|
|
54
54
|
* @memberof IntersectionDomainSalesInformationDtoWithDomainStatsDto
|
|
55
55
|
*/
|
|
56
|
-
seller: DomainSellerDto;
|
|
56
|
+
seller: DomainSellerDto | null;
|
|
57
57
|
/**
|
|
58
58
|
* The domain "sold" status
|
|
59
59
|
* @type {boolean}
|
package/package.json
CHANGED
|
@@ -34,17 +34,17 @@ export interface DomainSellerDto {
|
|
|
34
34
|
*/
|
|
35
35
|
createdAt: Date;
|
|
36
36
|
/**
|
|
37
|
-
* The
|
|
38
|
-
* @type {
|
|
37
|
+
* The seller account name
|
|
38
|
+
* @type {string}
|
|
39
39
|
* @memberof DomainSellerDto
|
|
40
40
|
*/
|
|
41
|
-
|
|
41
|
+
name: string;
|
|
42
42
|
/**
|
|
43
43
|
* Last online, formatted
|
|
44
|
-
* @type {
|
|
44
|
+
* @type {Date}
|
|
45
45
|
* @memberof DomainSellerDto
|
|
46
46
|
*/
|
|
47
|
-
lastOnline:
|
|
47
|
+
lastOnline: Date;
|
|
48
48
|
/**
|
|
49
49
|
* Delivers in, formatted
|
|
50
50
|
* @type {string}
|
|
@@ -64,7 +64,7 @@ export interface DomainSellerDto {
|
|
|
64
64
|
*/
|
|
65
65
|
export function instanceOfDomainSellerDto(value: object): value is DomainSellerDto {
|
|
66
66
|
if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
|
|
67
|
-
if (!('
|
|
67
|
+
if (!('name' in value) || value['name'] === undefined) return false;
|
|
68
68
|
if (!('lastOnline' in value) || value['lastOnline'] === undefined) return false;
|
|
69
69
|
if (!('deliversIn' in value) || value['deliversIn'] === undefined) return false;
|
|
70
70
|
if (!('relatedDomains' in value) || value['relatedDomains'] === undefined) return false;
|
|
@@ -82,8 +82,8 @@ export function DomainSellerDtoFromJSONTyped(json: any, ignoreDiscriminator: boo
|
|
|
82
82
|
return {
|
|
83
83
|
|
|
84
84
|
'createdAt': (new Date(json['createdAt'])),
|
|
85
|
-
'
|
|
86
|
-
'lastOnline': json['lastOnline'],
|
|
85
|
+
'name': json['name'],
|
|
86
|
+
'lastOnline': (new Date(json['lastOnline'])),
|
|
87
87
|
'deliversIn': json['deliversIn'],
|
|
88
88
|
'relatedDomains': (json['relatedDomains'] == null ? null : (json['relatedDomains'] as Array<any>).map(RelatedSellerDomainFromJSON)),
|
|
89
89
|
};
|
|
@@ -101,8 +101,8 @@ export function DomainSellerDtoFromJSONTyped(json: any, ignoreDiscriminator: boo
|
|
|
101
101
|
return {
|
|
102
102
|
|
|
103
103
|
'createdAt': ((value['createdAt']).toISOString()),
|
|
104
|
-
'
|
|
105
|
-
'lastOnline': value['lastOnline'],
|
|
104
|
+
'name': value['name'],
|
|
105
|
+
'lastOnline': ((value['lastOnline']).toISOString()),
|
|
106
106
|
'deliversIn': value['deliversIn'],
|
|
107
107
|
'relatedDomains': (value['relatedDomains'] == null ? null : (value['relatedDomains'] as Array<any>).map(RelatedSellerDomainToJSON)),
|
|
108
108
|
};
|
|
@@ -76,7 +76,7 @@ export interface IntersectionDomainSalesInformationDtoWithDomainStatsDto {
|
|
|
76
76
|
* @type {DomainSellerDto}
|
|
77
77
|
* @memberof IntersectionDomainSalesInformationDtoWithDomainStatsDto
|
|
78
78
|
*/
|
|
79
|
-
seller: DomainSellerDto;
|
|
79
|
+
seller: DomainSellerDto | null;
|
|
80
80
|
/**
|
|
81
81
|
* The domain "sold" status
|
|
82
82
|
* @type {boolean}
|