@chipi-stack/types 11.17.0 → 11.19.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/dist/index.d.mts +6 -5
- package/dist/index.d.ts +6 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -352,11 +352,12 @@ interface User {
|
|
|
352
352
|
type Country = "MX" | "US" | "OTHER";
|
|
353
353
|
interface CreateUserParams {
|
|
354
354
|
externalId: string;
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
355
|
+
username?: string;
|
|
356
|
+
name?: string;
|
|
357
|
+
lastName?: string;
|
|
358
|
+
country?: Country;
|
|
359
|
+
phoneCountryCode?: number;
|
|
360
|
+
phoneNumber?: number;
|
|
360
361
|
email?: string;
|
|
361
362
|
profession?: string;
|
|
362
363
|
taxId?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -352,11 +352,12 @@ interface User {
|
|
|
352
352
|
type Country = "MX" | "US" | "OTHER";
|
|
353
353
|
interface CreateUserParams {
|
|
354
354
|
externalId: string;
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
355
|
+
username?: string;
|
|
356
|
+
name?: string;
|
|
357
|
+
lastName?: string;
|
|
358
|
+
country?: Country;
|
|
359
|
+
phoneCountryCode?: number;
|
|
360
|
+
phoneNumber?: number;
|
|
360
361
|
email?: string;
|
|
361
362
|
profession?: string;
|
|
362
363
|
taxId?: string;
|