@scoreboardmax/api-types 1.0.31 → 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 +2 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
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;
|
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";
|