@randock/nameshift-api-client 0.0.162 → 0.0.163
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.163
|
|
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.163 --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
|
+
e5242ec7e02013ac46f0ed06abdccebb4d758e44ea4a513868b455cb461f11c16df26877ec1ed6727b6b043c705f5a78
|
|
@@ -16,6 +16,12 @@ import type { OrderCompanyInfoDto } from './OrderCompanyInfoDto';
|
|
|
16
16
|
* @interface UpdateOrderInput
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateOrderInput {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof UpdateOrderInput
|
|
23
|
+
*/
|
|
24
|
+
locale?: string;
|
|
19
25
|
/**
|
|
20
26
|
*
|
|
21
27
|
* @type {string}
|
|
@@ -33,6 +33,7 @@ function UpdateOrderInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
33
33
|
return json;
|
|
34
34
|
}
|
|
35
35
|
return {
|
|
36
|
+
'locale': json['locale'] == null ? undefined : json['locale'],
|
|
36
37
|
'email': json['email'] == null ? undefined : json['email'],
|
|
37
38
|
'firstName': json['firstName'] == null ? undefined : json['firstName'],
|
|
38
39
|
'lastName': json['lastName'] == null ? undefined : json['lastName'],
|
|
@@ -54,6 +55,7 @@ function UpdateOrderInputToJSONTyped(value, ignoreDiscriminator) {
|
|
|
54
55
|
return value;
|
|
55
56
|
}
|
|
56
57
|
return {
|
|
58
|
+
'locale': value['locale'],
|
|
57
59
|
'email': value['email'],
|
|
58
60
|
'firstName': value['firstName'],
|
|
59
61
|
'lastName': value['lastName'],
|
package/package.json
CHANGED
|
@@ -27,6 +27,12 @@ import {
|
|
|
27
27
|
* @interface UpdateOrderInput
|
|
28
28
|
*/
|
|
29
29
|
export interface UpdateOrderInput {
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UpdateOrderInput
|
|
34
|
+
*/
|
|
35
|
+
locale?: string;
|
|
30
36
|
/**
|
|
31
37
|
*
|
|
32
38
|
* @type {string}
|
|
@@ -106,6 +112,7 @@ export function UpdateOrderInputFromJSONTyped(json: any, ignoreDiscriminator: bo
|
|
|
106
112
|
}
|
|
107
113
|
return {
|
|
108
114
|
|
|
115
|
+
'locale': json['locale'] == null ? undefined : json['locale'],
|
|
109
116
|
'email': json['email'] == null ? undefined : json['email'],
|
|
110
117
|
'firstName': json['firstName'] == null ? undefined : json['firstName'],
|
|
111
118
|
'lastName': json['lastName'] == null ? undefined : json['lastName'],
|
|
@@ -130,6 +137,7 @@ export function UpdateOrderInputFromJSONTyped(json: any, ignoreDiscriminator: bo
|
|
|
130
137
|
|
|
131
138
|
return {
|
|
132
139
|
|
|
140
|
+
'locale': value['locale'],
|
|
133
141
|
'email': value['email'],
|
|
134
142
|
'firstName': value['firstName'],
|
|
135
143
|
'lastName': value['lastName'],
|