@connectedxm/admin 1.0.2 → 1.0.3
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 +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2320,7 +2320,7 @@ declare const useConnectedXM: () => ConnectedXMClientContextState;
|
|
|
2320
2320
|
interface AccountCreateInputs {
|
|
2321
2321
|
accountType: keyof typeof AccountType;
|
|
2322
2322
|
email: string;
|
|
2323
|
-
username
|
|
2323
|
+
username?: string | null;
|
|
2324
2324
|
featured?: boolean | null;
|
|
2325
2325
|
firstName?: string | null;
|
|
2326
2326
|
lastName?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -2320,7 +2320,7 @@ declare const useConnectedXM: () => ConnectedXMClientContextState;
|
|
|
2320
2320
|
interface AccountCreateInputs {
|
|
2321
2321
|
accountType: keyof typeof AccountType;
|
|
2322
2322
|
email: string;
|
|
2323
|
-
username
|
|
2323
|
+
username?: string | null;
|
|
2324
2324
|
featured?: boolean | null;
|
|
2325
2325
|
firstName?: string | null;
|
|
2326
2326
|
lastName?: string | null;
|