@randock/nameshift-api-client 0.0.410 → 0.0.411
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.411
|
|
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.411 --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
|
+
cb3ee89449f57f68e8dc525c08dd500bc9c352d20624fdbfdc8366dbc86725c197c03cb65cd82e5fc2df3c8d55e750fc
|
|
@@ -47,6 +47,12 @@ export interface AuctionBidDto {
|
|
|
47
47
|
* @memberof AuctionBidDto
|
|
48
48
|
*/
|
|
49
49
|
createdAt: Date;
|
|
50
|
+
/**
|
|
51
|
+
* Soft-deletion timestamp of the underlying buyer account, if the buyer was removed
|
|
52
|
+
* @type {Date}
|
|
53
|
+
* @memberof AuctionBidDto
|
|
54
|
+
*/
|
|
55
|
+
buyerDeletedAt: Date | null;
|
|
50
56
|
/**
|
|
51
57
|
* Auction Bid is email verified
|
|
52
58
|
* @type {boolean}
|
|
@@ -34,6 +34,8 @@ function instanceOfAuctionBidDto(value) {
|
|
|
34
34
|
return false;
|
|
35
35
|
if (!('createdAt' in value) || value['createdAt'] === undefined)
|
|
36
36
|
return false;
|
|
37
|
+
if (!('buyerDeletedAt' in value) || value['buyerDeletedAt'] === undefined)
|
|
38
|
+
return false;
|
|
37
39
|
if (!('isEmailVerified' in value) || value['isEmailVerified'] === undefined)
|
|
38
40
|
return false;
|
|
39
41
|
if (!('isPhoneVerified' in value) || value['isPhoneVerified'] === undefined)
|
|
@@ -61,6 +63,7 @@ function AuctionBidDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
61
63
|
'amount': (0, MoneyDto_1.MoneyDtoFromJSON)(json['amount']),
|
|
62
64
|
'nickname': json['nickname'],
|
|
63
65
|
'createdAt': (new Date(json['createdAt'])),
|
|
66
|
+
'buyerDeletedAt': (json['buyerDeletedAt'] == null ? null : new Date(json['buyerDeletedAt'])),
|
|
64
67
|
'isEmailVerified': json['isEmailVerified'],
|
|
65
68
|
'isPhoneVerified': json['isPhoneVerified'],
|
|
66
69
|
'isKycCompleted': json['isKycCompleted'],
|
|
@@ -83,6 +86,7 @@ function AuctionBidDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
|
83
86
|
'amount': (0, MoneyDto_1.MoneyDtoToJSON)(value['amount']),
|
|
84
87
|
'nickname': value['nickname'],
|
|
85
88
|
'createdAt': ((value['createdAt']).toISOString()),
|
|
89
|
+
'buyerDeletedAt': (value['buyerDeletedAt'] == null ? null : value['buyerDeletedAt'].toISOString()),
|
|
86
90
|
'isEmailVerified': value['isEmailVerified'],
|
|
87
91
|
'isPhoneVerified': value['isPhoneVerified'],
|
|
88
92
|
'isKycCompleted': value['isKycCompleted'],
|
package/package.json
CHANGED
|
@@ -64,6 +64,12 @@ export interface AuctionBidDto {
|
|
|
64
64
|
* @memberof AuctionBidDto
|
|
65
65
|
*/
|
|
66
66
|
createdAt: Date;
|
|
67
|
+
/**
|
|
68
|
+
* Soft-deletion timestamp of the underlying buyer account, if the buyer was removed
|
|
69
|
+
* @type {Date}
|
|
70
|
+
* @memberof AuctionBidDto
|
|
71
|
+
*/
|
|
72
|
+
buyerDeletedAt: Date | null;
|
|
67
73
|
/**
|
|
68
74
|
* Auction Bid is email verified
|
|
69
75
|
* @type {boolean}
|
|
@@ -111,6 +117,7 @@ export function instanceOfAuctionBidDto(value: object): value is AuctionBidDto {
|
|
|
111
117
|
if (!('amount' in value) || value['amount'] === undefined) return false;
|
|
112
118
|
if (!('nickname' in value) || value['nickname'] === undefined) return false;
|
|
113
119
|
if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
|
|
120
|
+
if (!('buyerDeletedAt' in value) || value['buyerDeletedAt'] === undefined) return false;
|
|
114
121
|
if (!('isEmailVerified' in value) || value['isEmailVerified'] === undefined) return false;
|
|
115
122
|
if (!('isPhoneVerified' in value) || value['isPhoneVerified'] === undefined) return false;
|
|
116
123
|
if (!('isKycCompleted' in value) || value['isKycCompleted'] === undefined) return false;
|
|
@@ -135,6 +142,7 @@ export function AuctionBidDtoFromJSONTyped(json: any, ignoreDiscriminator: boole
|
|
|
135
142
|
'amount': MoneyDtoFromJSON(json['amount']),
|
|
136
143
|
'nickname': json['nickname'],
|
|
137
144
|
'createdAt': (new Date(json['createdAt'])),
|
|
145
|
+
'buyerDeletedAt': (json['buyerDeletedAt'] == null ? null : new Date(json['buyerDeletedAt'])),
|
|
138
146
|
'isEmailVerified': json['isEmailVerified'],
|
|
139
147
|
'isPhoneVerified': json['isPhoneVerified'],
|
|
140
148
|
'isKycCompleted': json['isKycCompleted'],
|
|
@@ -160,6 +168,7 @@ export function AuctionBidDtoToJSONTyped(value?: AuctionBidDto | null, ignoreDis
|
|
|
160
168
|
'amount': MoneyDtoToJSON(value['amount']),
|
|
161
169
|
'nickname': value['nickname'],
|
|
162
170
|
'createdAt': ((value['createdAt']).toISOString()),
|
|
171
|
+
'buyerDeletedAt': (value['buyerDeletedAt'] == null ? null : (value['buyerDeletedAt'] as any).toISOString()),
|
|
163
172
|
'isEmailVerified': value['isEmailVerified'],
|
|
164
173
|
'isPhoneVerified': value['isPhoneVerified'],
|
|
165
174
|
'isKycCompleted': value['isKycCompleted'],
|