@randock/nameshift-api-client 0.0.251 → 0.0.252

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.251
1
+ ## @randock/nameshift-api-client@0.0.252
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.251 --save
39
+ npm install @randock/nameshift-api-client@0.0.252 --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
- aab0623cc8fb928973e526075607715a718379e8715496b283085e4584d9f50dd246f0bc9663aee5d7d3e4443966f28c
47
+ 77af6611fccd317ef4ca6533087b98e441b7c67ee3250eaa2417faf6b446770ab680c6b2a34efea11685a5dab4b5a16d
@@ -27,7 +27,7 @@ export interface OrderCompanyInfoDto {
27
27
  * @type {OrderCompanyTaxIdDto}
28
28
  * @memberof OrderCompanyInfoDto
29
29
  */
30
- taxId: OrderCompanyTaxIdDto;
30
+ taxId: OrderCompanyTaxIdDto | null;
31
31
  }
32
32
  /**
33
33
  * Check if a given object implements the OrderCompanyInfoDto interface.
@@ -27,7 +27,7 @@ export interface SubscriptionCompanyInfoDto {
27
27
  * @type {SubscriptionCompanyTaxIdDto}
28
28
  * @memberof SubscriptionCompanyInfoDto
29
29
  */
30
- taxId: SubscriptionCompanyTaxIdDto;
30
+ taxId: SubscriptionCompanyTaxIdDto | null;
31
31
  }
32
32
  /**
33
33
  * Check if a given object implements the SubscriptionCompanyInfoDto interface.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.251",
3
+ "version": "0.0.252",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -38,7 +38,7 @@ export interface OrderCompanyInfoDto {
38
38
  * @type {OrderCompanyTaxIdDto}
39
39
  * @memberof OrderCompanyInfoDto
40
40
  */
41
- taxId: OrderCompanyTaxIdDto;
41
+ taxId: OrderCompanyTaxIdDto | null;
42
42
  }
43
43
 
44
44
  /**
@@ -38,7 +38,7 @@ export interface SubscriptionCompanyInfoDto {
38
38
  * @type {SubscriptionCompanyTaxIdDto}
39
39
  * @memberof SubscriptionCompanyInfoDto
40
40
  */
41
- taxId: SubscriptionCompanyTaxIdDto;
41
+ taxId: SubscriptionCompanyTaxIdDto | null;
42
42
  }
43
43
 
44
44
  /**