@randock/nameshift-api-client 0.0.168 → 0.0.169
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
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @randock/nameshift-api-client@0.0.
|
|
1
|
+
## @randock/nameshift-api-client@0.0.169
|
|
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.169 --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
|
+
75830f1fdc254847872761e2a7c3feaf9ec0dc765c4eee17410d21a8aa3c6a45ba6b711b3a49f94ac3b504a01b692e0f
|
|
@@ -32,13 +32,19 @@ export interface DomainTransferDetailsOrderBuyerDto {
|
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof DomainTransferDetailsOrderBuyerDto
|
|
34
34
|
*/
|
|
35
|
-
firstName: string;
|
|
35
|
+
firstName: string | null;
|
|
36
36
|
/**
|
|
37
37
|
* The order buyer last name
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof DomainTransferDetailsOrderBuyerDto
|
|
40
40
|
*/
|
|
41
|
-
lastName: string;
|
|
41
|
+
lastName: string | null;
|
|
42
|
+
/**
|
|
43
|
+
* The company name
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof DomainTransferDetailsOrderBuyerDto
|
|
46
|
+
*/
|
|
47
|
+
companyName: string | null;
|
|
42
48
|
}
|
|
43
49
|
/**
|
|
44
50
|
* Check if a given object implements the DomainTransferDetailsOrderBuyerDto interface.
|
|
@@ -30,6 +30,8 @@ function instanceOfDomainTransferDetailsOrderBuyerDto(value) {
|
|
|
30
30
|
return false;
|
|
31
31
|
if (!('lastName' in value) || value['lastName'] === undefined)
|
|
32
32
|
return false;
|
|
33
|
+
if (!('companyName' in value) || value['companyName'] === undefined)
|
|
34
|
+
return false;
|
|
33
35
|
return true;
|
|
34
36
|
}
|
|
35
37
|
function DomainTransferDetailsOrderBuyerDtoFromJSON(json) {
|
|
@@ -44,6 +46,7 @@ function DomainTransferDetailsOrderBuyerDtoFromJSONTyped(json, ignoreDiscriminat
|
|
|
44
46
|
'email': json['email'],
|
|
45
47
|
'firstName': json['firstName'],
|
|
46
48
|
'lastName': json['lastName'],
|
|
49
|
+
'companyName': json['companyName'],
|
|
47
50
|
};
|
|
48
51
|
}
|
|
49
52
|
function DomainTransferDetailsOrderBuyerDtoToJSON(json) {
|
|
@@ -59,5 +62,6 @@ function DomainTransferDetailsOrderBuyerDtoToJSONTyped(value, ignoreDiscriminato
|
|
|
59
62
|
'email': value['email'],
|
|
60
63
|
'firstName': value['firstName'],
|
|
61
64
|
'lastName': value['lastName'],
|
|
65
|
+
'companyName': value['companyName'],
|
|
62
66
|
};
|
|
63
67
|
}
|
package/package.json
CHANGED
|
@@ -36,13 +36,19 @@ export interface DomainTransferDetailsOrderBuyerDto {
|
|
|
36
36
|
* @type {string}
|
|
37
37
|
* @memberof DomainTransferDetailsOrderBuyerDto
|
|
38
38
|
*/
|
|
39
|
-
firstName: string;
|
|
39
|
+
firstName: string | null;
|
|
40
40
|
/**
|
|
41
41
|
* The order buyer last name
|
|
42
42
|
* @type {string}
|
|
43
43
|
* @memberof DomainTransferDetailsOrderBuyerDto
|
|
44
44
|
*/
|
|
45
|
-
lastName: string;
|
|
45
|
+
lastName: string | null;
|
|
46
|
+
/**
|
|
47
|
+
* The company name
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof DomainTransferDetailsOrderBuyerDto
|
|
50
|
+
*/
|
|
51
|
+
companyName: string | null;
|
|
46
52
|
}
|
|
47
53
|
|
|
48
54
|
/**
|
|
@@ -53,6 +59,7 @@ export function instanceOfDomainTransferDetailsOrderBuyerDto(value: object): val
|
|
|
53
59
|
if (!('email' in value) || value['email'] === undefined) return false;
|
|
54
60
|
if (!('firstName' in value) || value['firstName'] === undefined) return false;
|
|
55
61
|
if (!('lastName' in value) || value['lastName'] === undefined) return false;
|
|
62
|
+
if (!('companyName' in value) || value['companyName'] === undefined) return false;
|
|
56
63
|
return true;
|
|
57
64
|
}
|
|
58
65
|
|
|
@@ -70,6 +77,7 @@ export function DomainTransferDetailsOrderBuyerDtoFromJSONTyped(json: any, ignor
|
|
|
70
77
|
'email': json['email'],
|
|
71
78
|
'firstName': json['firstName'],
|
|
72
79
|
'lastName': json['lastName'],
|
|
80
|
+
'companyName': json['companyName'],
|
|
73
81
|
};
|
|
74
82
|
}
|
|
75
83
|
|
|
@@ -88,6 +96,7 @@ export function DomainTransferDetailsOrderBuyerDtoFromJSONTyped(json: any, ignor
|
|
|
88
96
|
'email': value['email'],
|
|
89
97
|
'firstName': value['firstName'],
|
|
90
98
|
'lastName': value['lastName'],
|
|
99
|
+
'companyName': value['companyName'],
|
|
91
100
|
};
|
|
92
101
|
}
|
|
93
102
|
|