@randock/nameshift-api-client 0.0.250 → 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 +3 -3
- package/dist/models/OrderCompanyInfoDto.d.ts +1 -1
- package/dist/models/RegisterAccountInput.d.ts +6 -0
- package/dist/models/RegisterAccountInput.js +2 -0
- package/dist/models/SubscriptionCompanyInfoDto.d.ts +1 -1
- package/package.json +1 -1
- package/src/models/OrderCompanyInfoDto.ts +1 -1
- package/src/models/RegisterAccountInput.ts +8 -0
- package/src/models/SubscriptionCompanyInfoDto.ts +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @randock/nameshift-api-client@0.0.
|
|
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.
|
|
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
|
-
|
|
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.
|
|
@@ -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
|
}
|
|
@@ -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
|
@@ -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
|
|