@scoreboardmax/api-types 1.0.30 → 1.0.32

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.cjs CHANGED
@@ -47,6 +47,8 @@ var ApiResource;
47
47
  ApiResource["AccountList"] = "accountList";
48
48
  ApiResource["App"] = "app";
49
49
  ApiResource["AppList"] = "appList";
50
+ ApiResource["Archive"] = "archive";
51
+ ApiResource["ArchiveList"] = "archiveList";
50
52
  ApiResource["File"] = "file";
51
53
  ApiResource["FileList"] = "fileList";
52
54
  ApiResource["Auth"] = "auth";
package/dist/index.d.ts CHANGED
@@ -24,6 +24,8 @@ export declare enum ApiResource {
24
24
  AccountList = "accountList",
25
25
  App = "app",
26
26
  AppList = "appList",
27
+ Archive = "archive",
28
+ ArchiveList = "archiveList",
27
29
  File = "file",
28
30
  FileList = "fileList",
29
31
  Auth = "auth",
@@ -329,6 +331,7 @@ export interface Auth {
329
331
  userId?: string;
330
332
  type: AuthType;
331
333
  isAdmin: boolean;
334
+ isAssumed?: boolean;
332
335
  description?: string | null;
333
336
  permissions: Permissions;
334
337
  dateCreated: string;
@@ -741,7 +744,7 @@ export interface Plan {
741
744
  planId: PlanId;
742
745
  resetScoreboards: boolean;
743
746
  apiAccess: boolean;
744
- customizationAccess?: boolean;
747
+ customizationAccess: boolean;
745
748
  maxScoreboards: number;
746
749
  maxActiveScoreboards: number;
747
750
  maxConcurrentDevices: number;
package/dist/index.mjs CHANGED
@@ -38,6 +38,8 @@ export var ApiResource;
38
38
  ApiResource["AccountList"] = "accountList";
39
39
  ApiResource["App"] = "app";
40
40
  ApiResource["AppList"] = "appList";
41
+ ApiResource["Archive"] = "archive";
42
+ ApiResource["ArchiveList"] = "archiveList";
41
43
  ApiResource["File"] = "file";
42
44
  ApiResource["FileList"] = "fileList";
43
45
  ApiResource["Auth"] = "auth";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scoreboardmax/api-types",
3
- "version": "1.0.30",
3
+ "version": "1.0.32",
4
4
  "description": "TypeScript definitions for ScoreboardMax API",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",