@randock/nameshift-api-client 0.0.451 → 0.0.452

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.451
1
+ ## @randock/nameshift-api-client@0.0.452
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.451 --save
39
+ npm install @randock/nameshift-api-client@0.0.452 --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
- 2324197faf47c3bca212933ec5d9495853519e3cf0b254ded3fc0e50f735bdeb57f1aae4e5310145bcd3a3a65b0e77b8
47
+ 11d8717da0f6d0c75e15c65370bbdb2d8696728235ffa9b97d1324422789ce0d01d6e433369ddc3a8ce1cb49a7852d83
@@ -75,6 +75,7 @@ export interface DomainsApiListRequest {
75
75
  filterSold?: string;
76
76
  filterHijacked?: string;
77
77
  filterPointingDnsStatus?: string;
78
+ filterMarketplace?: string;
78
79
  filterCurrencyCode?: string;
79
80
  filterVerified?: string;
80
81
  filterName?: string;
@@ -1224,6 +1224,9 @@ var DomainsApi = /** @class */ (function (_super) {
1224
1224
  if (requestParameters['filterPointingDnsStatus'] != null) {
1225
1225
  queryParameters['filter[pointingDnsStatus]'] = requestParameters['filterPointingDnsStatus'];
1226
1226
  }
1227
+ if (requestParameters['filterMarketplace'] != null) {
1228
+ queryParameters['filter[marketplace]'] = requestParameters['filterMarketplace'];
1229
+ }
1227
1230
  if (requestParameters['filterCurrencyCode'] != null) {
1228
1231
  queryParameters['filter[currencyCode]'] = requestParameters['filterCurrencyCode'];
1229
1232
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.451",
3
+ "version": "0.0.452",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -157,6 +157,7 @@ export interface DomainsApiListRequest {
157
157
  filterSold?: string;
158
158
  filterHijacked?: string;
159
159
  filterPointingDnsStatus?: string;
160
+ filterMarketplace?: string;
160
161
  filterCurrencyCode?: string;
161
162
  filterVerified?: string;
162
163
  filterName?: string;
@@ -1066,6 +1067,10 @@ export class DomainsApi extends runtime.BaseAPI {
1066
1067
  queryParameters['filter[pointingDnsStatus]'] = requestParameters['filterPointingDnsStatus'];
1067
1068
  }
1068
1069
 
1070
+ if (requestParameters['filterMarketplace'] != null) {
1071
+ queryParameters['filter[marketplace]'] = requestParameters['filterMarketplace'];
1072
+ }
1073
+
1069
1074
  if (requestParameters['filterCurrencyCode'] != null) {
1070
1075
  queryParameters['filter[currencyCode]'] = requestParameters['filterCurrencyCode'];
1071
1076
  }