@zdrops/ai-assistants-sdk 1.6.0 → 1.7.0
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/CHANGELOG.md +7 -0
- package/dist/index.d.cts +23 -15
- package/dist/index.d.ts +23 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.7.0](https://github.com/ZDrops/ai-assistants-sdk/compare/ai-assistants-sdk-v1.6.0...ai-assistants-sdk-v1.7.0) (2026-06-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* regenerate types for WhiteGallo billing address fields ([4127dc1](https://github.com/ZDrops/ai-assistants-sdk/commit/4127dc1b8ffd51227665b7eefda2f9b221f8412a))
|
|
9
|
+
|
|
3
10
|
## [1.6.0](https://github.com/ZDrops/ai-assistants-sdk/compare/ai-assistants-sdk-v1.5.1...ai-assistants-sdk-v1.6.0) (2026-06-21)
|
|
4
11
|
|
|
5
12
|
|
package/dist/index.d.cts
CHANGED
|
@@ -166,10 +166,12 @@ interface components {
|
|
|
166
166
|
companyName?: Record<string, never> | null;
|
|
167
167
|
/** @example US123456789 */
|
|
168
168
|
taxId?: Record<string, never> | null;
|
|
169
|
-
/** @example
|
|
170
|
-
|
|
171
|
-
/** @example
|
|
172
|
-
|
|
169
|
+
/** @example Main Street */
|
|
170
|
+
address: string;
|
|
171
|
+
/** @example 12B */
|
|
172
|
+
houseNumber: string;
|
|
173
|
+
/** @example Manhattan */
|
|
174
|
+
district?: Record<string, never> | null;
|
|
173
175
|
/** @example New York */
|
|
174
176
|
city: string;
|
|
175
177
|
/** @example NY */
|
|
@@ -181,7 +183,9 @@ interface components {
|
|
|
181
183
|
* @example US
|
|
182
184
|
*/
|
|
183
185
|
country: string;
|
|
184
|
-
/** @example +1
|
|
186
|
+
/** @example +1 */
|
|
187
|
+
phoneCountryCode?: Record<string, never> | null;
|
|
188
|
+
/** @example (555) 123-4567 */
|
|
185
189
|
phone?: Record<string, never> | null;
|
|
186
190
|
};
|
|
187
191
|
UpsertBillingDto: {
|
|
@@ -193,22 +197,26 @@ interface components {
|
|
|
193
197
|
companyName?: string;
|
|
194
198
|
/** @example US123456789 */
|
|
195
199
|
taxId?: string;
|
|
196
|
-
/**
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
+
/**
|
|
201
|
+
* @description ISO 3166-1 alpha-2 country code
|
|
202
|
+
* @example US
|
|
203
|
+
*/
|
|
204
|
+
country: string;
|
|
200
205
|
/** @example New York */
|
|
201
206
|
city: string;
|
|
207
|
+
/** @example Main Street */
|
|
208
|
+
address: string;
|
|
209
|
+
/** @example 12B */
|
|
210
|
+
houseNumber: string;
|
|
211
|
+
/** @example Manhattan */
|
|
212
|
+
district?: string;
|
|
202
213
|
/** @example NY */
|
|
203
214
|
state?: string;
|
|
204
215
|
/** @example 10001 */
|
|
205
216
|
postalCode: string;
|
|
206
|
-
/**
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
*/
|
|
210
|
-
country: string;
|
|
211
|
-
/** @example +1-555-123-4567 */
|
|
217
|
+
/** @example +1 */
|
|
218
|
+
phoneCountryCode?: string;
|
|
219
|
+
/** @example (555) 123-4567 */
|
|
212
220
|
phone?: string;
|
|
213
221
|
};
|
|
214
222
|
PreferenceResponseDto: {
|
package/dist/index.d.ts
CHANGED
|
@@ -166,10 +166,12 @@ interface components {
|
|
|
166
166
|
companyName?: Record<string, never> | null;
|
|
167
167
|
/** @example US123456789 */
|
|
168
168
|
taxId?: Record<string, never> | null;
|
|
169
|
-
/** @example
|
|
170
|
-
|
|
171
|
-
/** @example
|
|
172
|
-
|
|
169
|
+
/** @example Main Street */
|
|
170
|
+
address: string;
|
|
171
|
+
/** @example 12B */
|
|
172
|
+
houseNumber: string;
|
|
173
|
+
/** @example Manhattan */
|
|
174
|
+
district?: Record<string, never> | null;
|
|
173
175
|
/** @example New York */
|
|
174
176
|
city: string;
|
|
175
177
|
/** @example NY */
|
|
@@ -181,7 +183,9 @@ interface components {
|
|
|
181
183
|
* @example US
|
|
182
184
|
*/
|
|
183
185
|
country: string;
|
|
184
|
-
/** @example +1
|
|
186
|
+
/** @example +1 */
|
|
187
|
+
phoneCountryCode?: Record<string, never> | null;
|
|
188
|
+
/** @example (555) 123-4567 */
|
|
185
189
|
phone?: Record<string, never> | null;
|
|
186
190
|
};
|
|
187
191
|
UpsertBillingDto: {
|
|
@@ -193,22 +197,26 @@ interface components {
|
|
|
193
197
|
companyName?: string;
|
|
194
198
|
/** @example US123456789 */
|
|
195
199
|
taxId?: string;
|
|
196
|
-
/**
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
+
/**
|
|
201
|
+
* @description ISO 3166-1 alpha-2 country code
|
|
202
|
+
* @example US
|
|
203
|
+
*/
|
|
204
|
+
country: string;
|
|
200
205
|
/** @example New York */
|
|
201
206
|
city: string;
|
|
207
|
+
/** @example Main Street */
|
|
208
|
+
address: string;
|
|
209
|
+
/** @example 12B */
|
|
210
|
+
houseNumber: string;
|
|
211
|
+
/** @example Manhattan */
|
|
212
|
+
district?: string;
|
|
202
213
|
/** @example NY */
|
|
203
214
|
state?: string;
|
|
204
215
|
/** @example 10001 */
|
|
205
216
|
postalCode: string;
|
|
206
|
-
/**
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
*/
|
|
210
|
-
country: string;
|
|
211
|
-
/** @example +1-555-123-4567 */
|
|
217
|
+
/** @example +1 */
|
|
218
|
+
phoneCountryCode?: string;
|
|
219
|
+
/** @example (555) 123-4567 */
|
|
212
220
|
phone?: string;
|
|
213
221
|
};
|
|
214
222
|
PreferenceResponseDto: {
|