@randock/nameshift-api-client 0.0.150 → 0.0.151

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.150
1
+ ## @randock/nameshift-api-client@0.0.151
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.150 --save
39
+ npm install @randock/nameshift-api-client@0.0.151 --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
- 8082eab6a04e2786e811d65371081899eeb52a18c383b72b374c07f3b9268739579f437e93cf047b999fdacbaa4ae67a
47
+ 586b9b9f24ab92f4ce9927e076081734281144c1e8150ea8698161cc40a05154bb88aa449f442e869b3f70604b5f31d7
@@ -20,7 +20,7 @@ export interface PaginateResponseMeta {
20
20
  * @type {number}
21
21
  * @memberof PaginateResponseMeta
22
22
  */
23
- page?: number;
23
+ currentPage?: number;
24
24
  /**
25
25
  *
26
26
  * @type {number}
@@ -32,7 +32,7 @@ function PaginateResponseMetaFromJSONTyped(json, ignoreDiscriminator) {
32
32
  return json;
33
33
  }
34
34
  return {
35
- 'page': json['page'] == null ? undefined : json['page'],
35
+ 'currentPage': json['currentPage'] == null ? undefined : json['currentPage'],
36
36
  'itemsPerPage': json['itemsPerPage'] == null ? undefined : json['itemsPerPage'],
37
37
  'offset': json['offset'] == null ? undefined : json['offset'],
38
38
  'unpaged': json['unpaged'] == null ? undefined : json['unpaged'],
@@ -50,7 +50,7 @@ function PaginateResponseMetaToJSONTyped(value, ignoreDiscriminator) {
50
50
  return value;
51
51
  }
52
52
  return {
53
- 'page': value['page'],
53
+ 'currentPage': value['currentPage'],
54
54
  'itemsPerPage': value['itemsPerPage'],
55
55
  'offset': value['offset'],
56
56
  'unpaged': value['unpaged'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.150",
3
+ "version": "0.0.151",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -24,7 +24,7 @@ export interface PaginateResponseMeta {
24
24
  * @type {number}
25
25
  * @memberof PaginateResponseMeta
26
26
  */
27
- page?: number;
27
+ currentPage?: number;
28
28
  /**
29
29
  *
30
30
  * @type {number}
@@ -80,7 +80,7 @@ export function PaginateResponseMetaFromJSONTyped(json: any, ignoreDiscriminator
80
80
  }
81
81
  return {
82
82
 
83
- 'page': json['page'] == null ? undefined : json['page'],
83
+ 'currentPage': json['currentPage'] == null ? undefined : json['currentPage'],
84
84
  'itemsPerPage': json['itemsPerPage'] == null ? undefined : json['itemsPerPage'],
85
85
  'offset': json['offset'] == null ? undefined : json['offset'],
86
86
  'unpaged': json['unpaged'] == null ? undefined : json['unpaged'],
@@ -101,7 +101,7 @@ export function PaginateResponseMetaFromJSONTyped(json: any, ignoreDiscriminator
101
101
 
102
102
  return {
103
103
 
104
- 'page': value['page'],
104
+ 'currentPage': value['currentPage'],
105
105
  'itemsPerPage': value['itemsPerPage'],
106
106
  'offset': value['offset'],
107
107
  'unpaged': value['unpaged'],