@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 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: string;
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: string;
2323
+ username?: string | null;
2324
2324
  featured?: boolean | null;
2325
2325
  firstName?: string | null;
2326
2326
  lastName?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {