@randock/nameshift-api-client 0.0.254 → 0.0.255

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.254
1
+ ## @randock/nameshift-api-client@0.0.255
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.254 --save
39
+ npm install @randock/nameshift-api-client@0.0.255 --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
- 1a919e357af0b16ec17dde8b9af508d00dd5ff0a2349182cb9be0d00d448e6a8ddc317dc6afbce470bb1d17dd7f4326d
47
+ 7d954e3db2d166e8e4af8f76e0bdee8503377f4002f82e4419f62115d306073bfcb33a6ace93008c4a3119cf25fac5d6
@@ -21,6 +21,7 @@ export interface DomainsPublicApiListRequest {
21
21
  limit?: number;
22
22
  sort?: Array<SortDto>;
23
23
  filter?: string;
24
+ search?: string;
24
25
  cursor?: string;
25
26
  }
26
27
  /**
@@ -147,6 +147,9 @@ var DomainsPublicApi = /** @class */ (function (_super) {
147
147
  if (requestParameters['filter'] != null) {
148
148
  queryParameters['filter'] = requestParameters['filter'];
149
149
  }
150
+ if (requestParameters['search'] != null) {
151
+ queryParameters['search'] = requestParameters['search'];
152
+ }
150
153
  if (requestParameters['cursor'] != null) {
151
154
  queryParameters['cursor'] = requestParameters['cursor'];
152
155
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.254",
3
+ "version": "0.0.255",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -48,6 +48,7 @@ export interface DomainsPublicApiListRequest {
48
48
  limit?: number;
49
49
  sort?: Array<SortDto>;
50
50
  filter?: string;
51
+ search?: string;
51
52
  cursor?: string;
52
53
  }
53
54
 
@@ -119,6 +120,10 @@ export class DomainsPublicApi extends runtime.BaseAPI {
119
120
  queryParameters['filter'] = requestParameters['filter'];
120
121
  }
121
122
 
123
+ if (requestParameters['search'] != null) {
124
+ queryParameters['search'] = requestParameters['search'];
125
+ }
126
+
122
127
  if (requestParameters['cursor'] != null) {
123
128
  queryParameters['cursor'] = requestParameters['cursor'];
124
129
  }