@randock/nameshift-api-client 0.0.107 → 0.0.108

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.107
1
+ ## @randock/nameshift-api-client@0.0.108
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.107 --save
39
+ npm install @randock/nameshift-api-client@0.0.108 --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
- 369eda823d1ecbaa04dc8f6557f855052303eaa31ad3299be303825cd505525ca8c5ecdbc98e7d5de5a0f093d0800c5d
47
+ 00ef6f22a96247ade912d79fae52fa2ddf7067d08aadc34ecf473017497476abfaba62ff9cc0b868edecd0a89d68578a
@@ -22,13 +22,13 @@ export interface OrderListItemDtoBuyerInformation {
22
22
  * @type {string}
23
23
  * @memberof OrderListItemDtoBuyerInformation
24
24
  */
25
- firstName: string;
25
+ firstName: string | null;
26
26
  /**
27
27
  * The order buyer last name
28
28
  * @type {string}
29
29
  * @memberof OrderListItemDtoBuyerInformation
30
30
  */
31
- lastName: string;
31
+ lastName: string | null;
32
32
  /**
33
33
  * The order buyer email
34
34
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.107",
3
+ "version": "0.0.108",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -37,13 +37,13 @@ export interface OrderListItemDtoBuyerInformation {
37
37
  * @type {string}
38
38
  * @memberof OrderListItemDtoBuyerInformation
39
39
  */
40
- firstName: string;
40
+ firstName: string | null;
41
41
  /**
42
42
  * The order buyer last name
43
43
  * @type {string}
44
44
  * @memberof OrderListItemDtoBuyerInformation
45
45
  */
46
- lastName: string;
46
+ lastName: string | null;
47
47
  /**
48
48
  * The order buyer email
49
49
  * @type {string}