@randock/nameshift-api-client 0.0.122 → 0.0.124

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.122
1
+ ## @randock/nameshift-api-client@0.0.124
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.122 --save
39
+ npm install @randock/nameshift-api-client@0.0.124 --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
- 0fdc877bbdb671e0eb59e40dfa013cea45a4387085ed3553645c8d55ea8e6fa8875bb0a925dd5f4f46d7c9f6bd25179b
47
+ ad017e1fb0b376fd159bfcc5c24c9d8ced25e1d23f15e57a2657676fc39f9a6442e814222b3fed41ca2fc2d80581cfc8
@@ -59,6 +59,12 @@ export interface BuyerLeadListItemDto {
59
59
  * @memberof BuyerLeadListItemDto
60
60
  */
61
61
  unreadMessages: number;
62
+ /**
63
+ * Lead order payment URL
64
+ * @type {string}
65
+ * @memberof BuyerLeadListItemDto
66
+ */
67
+ orderPaymentUrl: string | null;
62
68
  }
63
69
  /**
64
70
  * @export
@@ -58,6 +58,8 @@ function instanceOfBuyerLeadListItemDto(value) {
58
58
  return false;
59
59
  if (!('unreadMessages' in value) || value['unreadMessages'] === undefined)
60
60
  return false;
61
+ if (!('orderPaymentUrl' in value) || value['orderPaymentUrl'] === undefined)
62
+ return false;
61
63
  return true;
62
64
  }
63
65
  function BuyerLeadListItemDtoFromJSON(json) {
@@ -75,6 +77,7 @@ function BuyerLeadListItemDtoFromJSONTyped(json, ignoreDiscriminator) {
75
77
  'createdAt': (new Date(json['createdAt'])),
76
78
  'domain': (0, BuyerLeadListItemDomainDto_1.BuyerLeadListItemDomainDtoFromJSON)(json['domain']),
77
79
  'unreadMessages': json['unreadMessages'],
80
+ 'orderPaymentUrl': json['orderPaymentUrl'],
78
81
  };
79
82
  }
80
83
  function BuyerLeadListItemDtoToJSON(json) {
@@ -93,5 +96,6 @@ function BuyerLeadListItemDtoToJSONTyped(value, ignoreDiscriminator) {
93
96
  'createdAt': ((value['createdAt']).toISOString()),
94
97
  'domain': (0, BuyerLeadListItemDomainDto_1.BuyerLeadListItemDomainDtoToJSON)(value['domain']),
95
98
  'unreadMessages': value['unreadMessages'],
99
+ 'orderPaymentUrl': value['orderPaymentUrl'],
96
100
  };
97
101
  }
@@ -60,6 +60,12 @@ export interface IntersectionDomainSalesInformationDtoWithDomainStatsDto {
60
60
  * @memberof IntersectionDomainSalesInformationDtoWithDomainStatsDto
61
61
  */
62
62
  sold: boolean;
63
+ /**
64
+ * The domain "isPurchaseable" status
65
+ * @type {boolean}
66
+ * @memberof IntersectionDomainSalesInformationDtoWithDomainStatsDto
67
+ */
68
+ isPurchaseable: boolean;
63
69
  }
64
70
  /**
65
71
  * Check if a given object implements the IntersectionDomainSalesInformationDtoWithDomainStatsDto interface.
@@ -39,6 +39,8 @@ function instanceOfIntersectionDomainSalesInformationDtoWithDomainStatsDto(value
39
39
  return false;
40
40
  if (!('sold' in value) || value['sold'] === undefined)
41
41
  return false;
42
+ if (!('isPurchaseable' in value) || value['isPurchaseable'] === undefined)
43
+ return false;
42
44
  return true;
43
45
  }
44
46
  function IntersectionDomainSalesInformationDtoWithDomainStatsDtoFromJSON(json) {
@@ -56,6 +58,7 @@ function IntersectionDomainSalesInformationDtoWithDomainStatsDtoFromJSONTyped(js
56
58
  'minOfferPrice': (0, MoneyDto_1.MoneyDtoFromJSON)(json['minOfferPrice']),
57
59
  'seller': (0, DomainSellerDto_1.DomainSellerDtoFromJSON)(json['seller']),
58
60
  'sold': json['sold'],
61
+ 'isPurchaseable': json['isPurchaseable'],
59
62
  };
60
63
  }
61
64
  function IntersectionDomainSalesInformationDtoWithDomainStatsDtoToJSON(json) {
@@ -74,5 +77,6 @@ function IntersectionDomainSalesInformationDtoWithDomainStatsDtoToJSONTyped(valu
74
77
  'minOfferPrice': (0, MoneyDto_1.MoneyDtoToJSON)(value['minOfferPrice']),
75
78
  'seller': (0, DomainSellerDto_1.DomainSellerDtoToJSON)(value['seller']),
76
79
  'sold': value['sold'],
80
+ 'isPurchaseable': value['isPurchaseable'],
77
81
  };
78
82
  }
@@ -65,6 +65,12 @@ export interface IntersectionLeadDtoWithLeadDetailsDto {
65
65
  * @memberof IntersectionLeadDtoWithLeadDetailsDto
66
66
  */
67
67
  unreadSellerMessagesNumber: number;
68
+ /**
69
+ * Lead order payment URL
70
+ * @type {string}
71
+ * @memberof IntersectionLeadDtoWithLeadDetailsDto
72
+ */
73
+ orderPaymentUrl: string | null;
68
74
  }
69
75
  /**
70
76
  * @export
@@ -60,6 +60,8 @@ function instanceOfIntersectionLeadDtoWithLeadDetailsDto(value) {
60
60
  return false;
61
61
  if (!('unreadSellerMessagesNumber' in value) || value['unreadSellerMessagesNumber'] === undefined)
62
62
  return false;
63
+ if (!('orderPaymentUrl' in value) || value['orderPaymentUrl'] === undefined)
64
+ return false;
63
65
  return true;
64
66
  }
65
67
  function IntersectionLeadDtoWithLeadDetailsDtoFromJSON(json) {
@@ -78,6 +80,7 @@ function IntersectionLeadDtoWithLeadDetailsDtoFromJSONTyped(json, ignoreDiscrimi
78
80
  'createdAt': (new Date(json['createdAt'])),
79
81
  'unreadBuyerMessagesNumber': json['unreadBuyerMessagesNumber'],
80
82
  'unreadSellerMessagesNumber': json['unreadSellerMessagesNumber'],
83
+ 'orderPaymentUrl': json['orderPaymentUrl'],
81
84
  };
82
85
  }
83
86
  function IntersectionLeadDtoWithLeadDetailsDtoToJSON(json) {
@@ -97,5 +100,6 @@ function IntersectionLeadDtoWithLeadDetailsDtoToJSONTyped(value, ignoreDiscrimin
97
100
  'createdAt': ((value['createdAt']).toISOString()),
98
101
  'unreadBuyerMessagesNumber': value['unreadBuyerMessagesNumber'],
99
102
  'unreadSellerMessagesNumber': value['unreadSellerMessagesNumber'],
103
+ 'orderPaymentUrl': value['orderPaymentUrl'],
100
104
  };
101
105
  }
@@ -84,6 +84,12 @@ export interface IntersectionLeadDtoWithListFieldsDto {
84
84
  * @memberof IntersectionLeadDtoWithListFieldsDto
85
85
  */
86
86
  unreadSellerMessagesNumber: number;
87
+ /**
88
+ * Lead order payment URL
89
+ * @type {string}
90
+ * @memberof IntersectionLeadDtoWithListFieldsDto
91
+ */
92
+ orderPaymentUrl: string | null;
87
93
  /**
88
94
  *
89
95
  * @type {string}
@@ -85,6 +85,8 @@ function instanceOfIntersectionLeadDtoWithListFieldsDto(value) {
85
85
  return false;
86
86
  if (!('unreadSellerMessagesNumber' in value) || value['unreadSellerMessagesNumber'] === undefined)
87
87
  return false;
88
+ if (!('orderPaymentUrl' in value) || value['orderPaymentUrl'] === undefined)
89
+ return false;
88
90
  if (!('domainName' in value) || value['domainName'] === undefined)
89
91
  return false;
90
92
  if (!('buyerInitials' in value) || value['buyerInitials'] === undefined)
@@ -114,6 +116,7 @@ function IntersectionLeadDtoWithListFieldsDtoFromJSONTyped(json, ignoreDiscrimin
114
116
  'domain': (0, LeadDomainDto_1.LeadDomainDtoFromJSON)(json['domain']),
115
117
  'unreadBuyerMessagesNumber': json['unreadBuyerMessagesNumber'],
116
118
  'unreadSellerMessagesNumber': json['unreadSellerMessagesNumber'],
119
+ 'orderPaymentUrl': json['orderPaymentUrl'],
117
120
  'domainName': json['domainName'],
118
121
  'buyerInitials': json['buyerInitials'],
119
122
  'lastMessageMessage': json['lastMessageMessage'],
@@ -140,6 +143,7 @@ function IntersectionLeadDtoWithListFieldsDtoToJSONTyped(value, ignoreDiscrimina
140
143
  'domain': (0, LeadDomainDto_1.LeadDomainDtoToJSON)(value['domain']),
141
144
  'unreadBuyerMessagesNumber': value['unreadBuyerMessagesNumber'],
142
145
  'unreadSellerMessagesNumber': value['unreadSellerMessagesNumber'],
146
+ 'orderPaymentUrl': value['orderPaymentUrl'],
143
147
  'domainName': value['domainName'],
144
148
  'buyerInitials': value['buyerInitials'],
145
149
  'lastMessageMessage': value['lastMessageMessage'],
@@ -65,6 +65,12 @@ export interface LeadDto {
65
65
  * @memberof LeadDto
66
66
  */
67
67
  unreadSellerMessagesNumber: number;
68
+ /**
69
+ * Lead order payment URL
70
+ * @type {string}
71
+ * @memberof LeadDto
72
+ */
73
+ orderPaymentUrl: string | null;
68
74
  }
69
75
  /**
70
76
  * @export
@@ -60,6 +60,8 @@ function instanceOfLeadDto(value) {
60
60
  return false;
61
61
  if (!('unreadSellerMessagesNumber' in value) || value['unreadSellerMessagesNumber'] === undefined)
62
62
  return false;
63
+ if (!('orderPaymentUrl' in value) || value['orderPaymentUrl'] === undefined)
64
+ return false;
63
65
  return true;
64
66
  }
65
67
  function LeadDtoFromJSON(json) {
@@ -78,6 +80,7 @@ function LeadDtoFromJSONTyped(json, ignoreDiscriminator) {
78
80
  'domain': (0, LeadDomainDto_1.LeadDomainDtoFromJSON)(json['domain']),
79
81
  'unreadBuyerMessagesNumber': json['unreadBuyerMessagesNumber'],
80
82
  'unreadSellerMessagesNumber': json['unreadSellerMessagesNumber'],
83
+ 'orderPaymentUrl': json['orderPaymentUrl'],
81
84
  };
82
85
  }
83
86
  function LeadDtoToJSON(json) {
@@ -97,5 +100,6 @@ function LeadDtoToJSONTyped(value, ignoreDiscriminator) {
97
100
  'domain': (0, LeadDomainDto_1.LeadDomainDtoToJSON)(value['domain']),
98
101
  'unreadBuyerMessagesNumber': value['unreadBuyerMessagesNumber'],
99
102
  'unreadSellerMessagesNumber': value['unreadSellerMessagesNumber'],
103
+ 'orderPaymentUrl': value['orderPaymentUrl'],
100
104
  };
101
105
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.122",
3
+ "version": "0.0.124",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -76,6 +76,12 @@ export interface BuyerLeadListItemDto {
76
76
  * @memberof BuyerLeadListItemDto
77
77
  */
78
78
  unreadMessages: number;
79
+ /**
80
+ * Lead order payment URL
81
+ * @type {string}
82
+ * @memberof BuyerLeadListItemDto
83
+ */
84
+ orderPaymentUrl: string | null;
79
85
  }
80
86
 
81
87
 
@@ -114,6 +120,7 @@ export function instanceOfBuyerLeadListItemDto(value: object): value is BuyerLea
114
120
  if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
115
121
  if (!('domain' in value) || value['domain'] === undefined) return false;
116
122
  if (!('unreadMessages' in value) || value['unreadMessages'] === undefined) return false;
123
+ if (!('orderPaymentUrl' in value) || value['orderPaymentUrl'] === undefined) return false;
117
124
  return true;
118
125
  }
119
126
 
@@ -134,6 +141,7 @@ export function BuyerLeadListItemDtoFromJSONTyped(json: any, ignoreDiscriminator
134
141
  'createdAt': (new Date(json['createdAt'])),
135
142
  'domain': BuyerLeadListItemDomainDtoFromJSON(json['domain']),
136
143
  'unreadMessages': json['unreadMessages'],
144
+ 'orderPaymentUrl': json['orderPaymentUrl'],
137
145
  };
138
146
  }
139
147
 
@@ -155,6 +163,7 @@ export function BuyerLeadListItemDtoFromJSONTyped(json: any, ignoreDiscriminator
155
163
  'createdAt': ((value['createdAt']).toISOString()),
156
164
  'domain': BuyerLeadListItemDomainDtoToJSON(value['domain']),
157
165
  'unreadMessages': value['unreadMessages'],
166
+ 'orderPaymentUrl': value['orderPaymentUrl'],
158
167
  };
159
168
  }
160
169
 
@@ -83,6 +83,12 @@ export interface IntersectionDomainSalesInformationDtoWithDomainStatsDto {
83
83
  * @memberof IntersectionDomainSalesInformationDtoWithDomainStatsDto
84
84
  */
85
85
  sold: boolean;
86
+ /**
87
+ * The domain "isPurchaseable" status
88
+ * @type {boolean}
89
+ * @memberof IntersectionDomainSalesInformationDtoWithDomainStatsDto
90
+ */
91
+ isPurchaseable: boolean;
86
92
  }
87
93
 
88
94
  /**
@@ -96,6 +102,7 @@ export function instanceOfIntersectionDomainSalesInformationDtoWithDomainStatsDt
96
102
  if (!('minOfferPrice' in value) || value['minOfferPrice'] === undefined) return false;
97
103
  if (!('seller' in value) || value['seller'] === undefined) return false;
98
104
  if (!('sold' in value) || value['sold'] === undefined) return false;
105
+ if (!('isPurchaseable' in value) || value['isPurchaseable'] === undefined) return false;
99
106
  return true;
100
107
  }
101
108
 
@@ -116,6 +123,7 @@ export function IntersectionDomainSalesInformationDtoWithDomainStatsDtoFromJSONT
116
123
  'minOfferPrice': MoneyDtoFromJSON(json['minOfferPrice']),
117
124
  'seller': DomainSellerDtoFromJSON(json['seller']),
118
125
  'sold': json['sold'],
126
+ 'isPurchaseable': json['isPurchaseable'],
119
127
  };
120
128
  }
121
129
 
@@ -137,6 +145,7 @@ export function IntersectionDomainSalesInformationDtoWithDomainStatsDtoFromJSONT
137
145
  'minOfferPrice': MoneyDtoToJSON(value['minOfferPrice']),
138
146
  'seller': DomainSellerDtoToJSON(value['seller']),
139
147
  'sold': value['sold'],
148
+ 'isPurchaseable': value['isPurchaseable'],
140
149
  };
141
150
  }
142
151
 
@@ -82,6 +82,12 @@ export interface IntersectionLeadDtoWithLeadDetailsDto {
82
82
  * @memberof IntersectionLeadDtoWithLeadDetailsDto
83
83
  */
84
84
  unreadSellerMessagesNumber: number;
85
+ /**
86
+ * Lead order payment URL
87
+ * @type {string}
88
+ * @memberof IntersectionLeadDtoWithLeadDetailsDto
89
+ */
90
+ orderPaymentUrl: string | null;
85
91
  }
86
92
 
87
93
 
@@ -121,6 +127,7 @@ export function instanceOfIntersectionLeadDtoWithLeadDetailsDto(value: object):
121
127
  if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
122
128
  if (!('unreadBuyerMessagesNumber' in value) || value['unreadBuyerMessagesNumber'] === undefined) return false;
123
129
  if (!('unreadSellerMessagesNumber' in value) || value['unreadSellerMessagesNumber'] === undefined) return false;
130
+ if (!('orderPaymentUrl' in value) || value['orderPaymentUrl'] === undefined) return false;
124
131
  return true;
125
132
  }
126
133
 
@@ -142,6 +149,7 @@ export function IntersectionLeadDtoWithLeadDetailsDtoFromJSONTyped(json: any, ig
142
149
  'createdAt': (new Date(json['createdAt'])),
143
150
  'unreadBuyerMessagesNumber': json['unreadBuyerMessagesNumber'],
144
151
  'unreadSellerMessagesNumber': json['unreadSellerMessagesNumber'],
152
+ 'orderPaymentUrl': json['orderPaymentUrl'],
145
153
  };
146
154
  }
147
155
 
@@ -164,6 +172,7 @@ export function IntersectionLeadDtoWithLeadDetailsDtoFromJSONTyped(json: any, ig
164
172
  'createdAt': ((value['createdAt']).toISOString()),
165
173
  'unreadBuyerMessagesNumber': value['unreadBuyerMessagesNumber'],
166
174
  'unreadSellerMessagesNumber': value['unreadSellerMessagesNumber'],
175
+ 'orderPaymentUrl': value['orderPaymentUrl'],
167
176
  };
168
177
  }
169
178
 
@@ -107,6 +107,12 @@ export interface IntersectionLeadDtoWithListFieldsDto {
107
107
  * @memberof IntersectionLeadDtoWithListFieldsDto
108
108
  */
109
109
  unreadSellerMessagesNumber: number;
110
+ /**
111
+ * Lead order payment URL
112
+ * @type {string}
113
+ * @memberof IntersectionLeadDtoWithListFieldsDto
114
+ */
115
+ orderPaymentUrl: string | null;
110
116
  /**
111
117
  *
112
118
  * @type {string}
@@ -195,6 +201,7 @@ export function instanceOfIntersectionLeadDtoWithListFieldsDto(value: object): v
195
201
  if (!('domain' in value) || value['domain'] === undefined) return false;
196
202
  if (!('unreadBuyerMessagesNumber' in value) || value['unreadBuyerMessagesNumber'] === undefined) return false;
197
203
  if (!('unreadSellerMessagesNumber' in value) || value['unreadSellerMessagesNumber'] === undefined) return false;
204
+ if (!('orderPaymentUrl' in value) || value['orderPaymentUrl'] === undefined) return false;
198
205
  if (!('domainName' in value) || value['domainName'] === undefined) return false;
199
206
  if (!('buyerInitials' in value) || value['buyerInitials'] === undefined) return false;
200
207
  if (!('lastMessageMessage' in value) || value['lastMessageMessage'] === undefined) return false;
@@ -223,6 +230,7 @@ export function IntersectionLeadDtoWithListFieldsDtoFromJSONTyped(json: any, ign
223
230
  'domain': LeadDomainDtoFromJSON(json['domain']),
224
231
  'unreadBuyerMessagesNumber': json['unreadBuyerMessagesNumber'],
225
232
  'unreadSellerMessagesNumber': json['unreadSellerMessagesNumber'],
233
+ 'orderPaymentUrl': json['orderPaymentUrl'],
226
234
  'domainName': json['domainName'],
227
235
  'buyerInitials': json['buyerInitials'],
228
236
  'lastMessageMessage': json['lastMessageMessage'],
@@ -252,6 +260,7 @@ export function IntersectionLeadDtoWithListFieldsDtoFromJSONTyped(json: any, ign
252
260
  'domain': LeadDomainDtoToJSON(value['domain']),
253
261
  'unreadBuyerMessagesNumber': value['unreadBuyerMessagesNumber'],
254
262
  'unreadSellerMessagesNumber': value['unreadSellerMessagesNumber'],
263
+ 'orderPaymentUrl': value['orderPaymentUrl'],
255
264
  'domainName': value['domainName'],
256
265
  'buyerInitials': value['buyerInitials'],
257
266
  'lastMessageMessage': value['lastMessageMessage'],
@@ -82,6 +82,12 @@ export interface LeadDto {
82
82
  * @memberof LeadDto
83
83
  */
84
84
  unreadSellerMessagesNumber: number;
85
+ /**
86
+ * Lead order payment URL
87
+ * @type {string}
88
+ * @memberof LeadDto
89
+ */
90
+ orderPaymentUrl: string | null;
85
91
  }
86
92
 
87
93
 
@@ -121,6 +127,7 @@ export function instanceOfLeadDto(value: object): value is LeadDto {
121
127
  if (!('domain' in value) || value['domain'] === undefined) return false;
122
128
  if (!('unreadBuyerMessagesNumber' in value) || value['unreadBuyerMessagesNumber'] === undefined) return false;
123
129
  if (!('unreadSellerMessagesNumber' in value) || value['unreadSellerMessagesNumber'] === undefined) return false;
130
+ if (!('orderPaymentUrl' in value) || value['orderPaymentUrl'] === undefined) return false;
124
131
  return true;
125
132
  }
126
133
 
@@ -142,6 +149,7 @@ export function LeadDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): L
142
149
  'domain': LeadDomainDtoFromJSON(json['domain']),
143
150
  'unreadBuyerMessagesNumber': json['unreadBuyerMessagesNumber'],
144
151
  'unreadSellerMessagesNumber': json['unreadSellerMessagesNumber'],
152
+ 'orderPaymentUrl': json['orderPaymentUrl'],
145
153
  };
146
154
  }
147
155
 
@@ -164,6 +172,7 @@ export function LeadDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): L
164
172
  'domain': LeadDomainDtoToJSON(value['domain']),
165
173
  'unreadBuyerMessagesNumber': value['unreadBuyerMessagesNumber'],
166
174
  'unreadSellerMessagesNumber': value['unreadSellerMessagesNumber'],
175
+ 'orderPaymentUrl': value['orderPaymentUrl'],
167
176
  };
168
177
  }
169
178