@randock/nameshift-api-client 0.0.355 → 0.0.356
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.356
|
|
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.356 --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
|
+
550338822ecfa2344d22419082144067838e8ed9f2bf5f6813d2aa81a164cd2d45e024f0294b6398579b663cd75298bd
|
|
@@ -97,6 +97,12 @@ export interface SellerAuctionListItemDto {
|
|
|
97
97
|
* @memberof SellerAuctionListItemDto
|
|
98
98
|
*/
|
|
99
99
|
bids: Array<AuctionBidDto>;
|
|
100
|
+
/**
|
|
101
|
+
*
|
|
102
|
+
* @type {object}
|
|
103
|
+
* @memberof SellerAuctionListItemDto
|
|
104
|
+
*/
|
|
105
|
+
accountPaymentId: object | null;
|
|
100
106
|
}
|
|
101
107
|
/**
|
|
102
108
|
* @export
|
|
@@ -63,6 +63,8 @@ function instanceOfSellerAuctionListItemDto(value) {
|
|
|
63
63
|
return false;
|
|
64
64
|
if (!('bids' in value) || value['bids'] === undefined)
|
|
65
65
|
return false;
|
|
66
|
+
if (!('accountPaymentId' in value) || value['accountPaymentId'] === undefined)
|
|
67
|
+
return false;
|
|
66
68
|
return true;
|
|
67
69
|
}
|
|
68
70
|
function SellerAuctionListItemDtoFromJSON(json) {
|
|
@@ -86,6 +88,7 @@ function SellerAuctionListItemDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
86
88
|
'sellerAccount': (0, SellerAuctionListItemDtoSellerAccount_1.SellerAuctionListItemDtoSellerAccountFromJSON)(json['sellerAccount']),
|
|
87
89
|
'numberOfBids': json['numberOfBids'],
|
|
88
90
|
'bids': (json['bids'].map(AuctionBidDto_1.AuctionBidDtoFromJSON)),
|
|
91
|
+
'accountPaymentId': json['accountPaymentId'],
|
|
89
92
|
};
|
|
90
93
|
}
|
|
91
94
|
function SellerAuctionListItemDtoToJSON(json) {
|
|
@@ -110,5 +113,6 @@ function SellerAuctionListItemDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
|
110
113
|
'sellerAccount': (0, SellerAuctionListItemDtoSellerAccount_1.SellerAuctionListItemDtoSellerAccountToJSON)(value['sellerAccount']),
|
|
111
114
|
'numberOfBids': value['numberOfBids'],
|
|
112
115
|
'bids': (value['bids'].map(AuctionBidDto_1.AuctionBidDtoToJSON)),
|
|
116
|
+
'accountPaymentId': value['accountPaymentId'],
|
|
113
117
|
};
|
|
114
118
|
}
|
package/package.json
CHANGED
|
@@ -126,6 +126,12 @@ export interface SellerAuctionListItemDto {
|
|
|
126
126
|
* @memberof SellerAuctionListItemDto
|
|
127
127
|
*/
|
|
128
128
|
bids: Array<AuctionBidDto>;
|
|
129
|
+
/**
|
|
130
|
+
*
|
|
131
|
+
* @type {object}
|
|
132
|
+
* @memberof SellerAuctionListItemDto
|
|
133
|
+
*/
|
|
134
|
+
accountPaymentId: object | null;
|
|
129
135
|
}
|
|
130
136
|
|
|
131
137
|
|
|
@@ -159,6 +165,7 @@ export function instanceOfSellerAuctionListItemDto(value: object): value is Sell
|
|
|
159
165
|
if (!('sellerAccount' in value) || value['sellerAccount'] === undefined) return false;
|
|
160
166
|
if (!('numberOfBids' in value) || value['numberOfBids'] === undefined) return false;
|
|
161
167
|
if (!('bids' in value) || value['bids'] === undefined) return false;
|
|
168
|
+
if (!('accountPaymentId' in value) || value['accountPaymentId'] === undefined) return false;
|
|
162
169
|
return true;
|
|
163
170
|
}
|
|
164
171
|
|
|
@@ -185,6 +192,7 @@ export function SellerAuctionListItemDtoFromJSONTyped(json: any, ignoreDiscrimin
|
|
|
185
192
|
'sellerAccount': SellerAuctionListItemDtoSellerAccountFromJSON(json['sellerAccount']),
|
|
186
193
|
'numberOfBids': json['numberOfBids'],
|
|
187
194
|
'bids': ((json['bids'] as Array<any>).map(AuctionBidDtoFromJSON)),
|
|
195
|
+
'accountPaymentId': json['accountPaymentId'],
|
|
188
196
|
};
|
|
189
197
|
}
|
|
190
198
|
|
|
@@ -212,6 +220,7 @@ export function SellerAuctionListItemDtoToJSONTyped(value?: SellerAuctionListIte
|
|
|
212
220
|
'sellerAccount': SellerAuctionListItemDtoSellerAccountToJSON(value['sellerAccount']),
|
|
213
221
|
'numberOfBids': value['numberOfBids'],
|
|
214
222
|
'bids': ((value['bids'] as Array<any>).map(AuctionBidDtoToJSON)),
|
|
223
|
+
'accountPaymentId': value['accountPaymentId'],
|
|
215
224
|
};
|
|
216
225
|
}
|
|
217
226
|
|