@connectedxm/admin 0.0.52 → 0.0.54

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
@@ -2113,6 +2113,7 @@ interface User extends BaseUser {
2113
2113
  interface UserApiKey {
2114
2114
  id: string;
2115
2115
  publicPart: string;
2116
+ key: string;
2116
2117
  name: string;
2117
2118
  description?: string;
2118
2119
  startDate: string;
@@ -3649,7 +3650,7 @@ interface UserUpdateInputs {
3649
3650
  interface UserApiKeyCreateInputs {
3650
3651
  name: string;
3651
3652
  startDate: string;
3652
- endDate: string;
3653
+ endDate?: string;
3653
3654
  description?: string | null;
3654
3655
  }
3655
3656
  interface VideoUpdateInputs {
package/dist/index.d.ts CHANGED
@@ -2113,6 +2113,7 @@ interface User extends BaseUser {
2113
2113
  interface UserApiKey {
2114
2114
  id: string;
2115
2115
  publicPart: string;
2116
+ key: string;
2116
2117
  name: string;
2117
2118
  description?: string;
2118
2119
  startDate: string;
@@ -3649,7 +3650,7 @@ interface UserUpdateInputs {
3649
3650
  interface UserApiKeyCreateInputs {
3650
3651
  name: string;
3651
3652
  startDate: string;
3652
- endDate: string;
3653
+ endDate?: string;
3653
3654
  description?: string | null;
3654
3655
  }
3655
3656
  interface VideoUpdateInputs {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "0.0.52",
3
+ "version": "0.0.54",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {