@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 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 123 Main St */
170
- street: string;
171
- /** @example Suite 100 */
172
- street2?: Record<string, never> | null;
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-555-123-4567 */
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
- /** @example 123 Main St */
197
- street: string;
198
- /** @example Suite 100 */
199
- street2?: string;
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
- * @description ISO 3166-1 alpha-2 country code
208
- * @example US
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 123 Main St */
170
- street: string;
171
- /** @example Suite 100 */
172
- street2?: Record<string, never> | null;
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-555-123-4567 */
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
- /** @example 123 Main St */
197
- street: string;
198
- /** @example Suite 100 */
199
- street2?: string;
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
- * @description ISO 3166-1 alpha-2 country code
208
- * @example US
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zdrops/ai-assistants-sdk",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "description": "TypeScript SDK for the AI Assistants API",
5
5
  "license": "MIT",
6
6
  "type": "module",