@randock/nameshift-api-client 0.0.250 → 0.0.251

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.250
1
+ ## @randock/nameshift-api-client@0.0.251
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.250 --save
39
+ npm install @randock/nameshift-api-client@0.0.251 --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
- 96344a49fb1cdc35cf722af6373ce5feb2378992673acfbe5fc53a2d4dfed31e0766cefd804216f6c3d466f74b9418dd
47
+ aab0623cc8fb928973e526075607715a718379e8715496b283085e4584d9f50dd246f0bc9663aee5d7d3e4443966f28c
@@ -63,6 +63,12 @@ export interface RegisterAccountInput {
63
63
  * @memberof RegisterAccountInput
64
64
  */
65
65
  adId?: string | null;
66
+ /**
67
+ *
68
+ * @type {string}
69
+ * @memberof RegisterAccountInput
70
+ */
71
+ timezone?: string;
66
72
  }
67
73
  /**
68
74
  * @export
@@ -59,6 +59,7 @@ function RegisterAccountInputFromJSONTyped(json, ignoreDiscriminator) {
59
59
  'phoneNumber': json['phoneNumber'] == null ? undefined : json['phoneNumber'],
60
60
  'adProgram': json['adProgram'] == null ? undefined : json['adProgram'],
61
61
  'adId': json['adId'] == null ? undefined : json['adId'],
62
+ 'timezone': json['timezone'] == null ? undefined : json['timezone'],
62
63
  };
63
64
  }
64
65
  function RegisterAccountInputToJSON(json) {
@@ -78,5 +79,6 @@ function RegisterAccountInputToJSONTyped(value, ignoreDiscriminator) {
78
79
  'phoneNumber': value['phoneNumber'],
79
80
  'adProgram': value['adProgram'],
80
81
  'adId': value['adId'],
82
+ 'timezone': value['timezone'],
81
83
  };
82
84
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.250",
3
+ "version": "0.0.251",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -67,6 +67,12 @@ export interface RegisterAccountInput {
67
67
  * @memberof RegisterAccountInput
68
68
  */
69
69
  adId?: string | null;
70
+ /**
71
+ *
72
+ * @type {string}
73
+ * @memberof RegisterAccountInput
74
+ */
75
+ timezone?: string;
70
76
  }
71
77
 
72
78
 
@@ -111,6 +117,7 @@ export function RegisterAccountInputFromJSONTyped(json: any, ignoreDiscriminator
111
117
  'phoneNumber': json['phoneNumber'] == null ? undefined : json['phoneNumber'],
112
118
  'adProgram': json['adProgram'] == null ? undefined : json['adProgram'],
113
119
  'adId': json['adId'] == null ? undefined : json['adId'],
120
+ 'timezone': json['timezone'] == null ? undefined : json['timezone'],
114
121
  };
115
122
  }
116
123
 
@@ -133,6 +140,7 @@ export function RegisterAccountInputToJSONTyped(value?: RegisterAccountInput | n
133
140
  'phoneNumber': value['phoneNumber'],
134
141
  'adProgram': value['adProgram'],
135
142
  'adId': value['adId'],
143
+ 'timezone': value['timezone'],
136
144
  };
137
145
  }
138
146