@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.
|
|
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.
|
|
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
|
-
|
|
47
|
+
7d954e3db2d166e8e4af8f76e0bdee8503377f4002f82e4419f62115d306073bfcb33a6ace93008c4a3119cf25fac5d6
|
|
@@ -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
|
@@ -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
|
}
|