@budibase/types 1.2.58 → 1.2.59-alpha.0

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.
Files changed (56) hide show
  1. package/dist/api/web/errors.d.ts +5 -0
  2. package/dist/api/web/errors.js +3 -0
  3. package/dist/api/web/errors.js.map +1 -0
  4. package/dist/api/web/index.d.ts +2 -0
  5. package/dist/api/web/index.js +2 -0
  6. package/dist/api/web/index.js.map +1 -1
  7. package/dist/api/web/user.d.ts +46 -0
  8. package/dist/api/web/user.js +3 -0
  9. package/dist/api/web/user.js.map +1 -0
  10. package/dist/documents/app/app.d.ts +13 -5
  11. package/dist/documents/app/layout.d.ts +1 -0
  12. package/dist/documents/app/screen.d.ts +1 -1
  13. package/dist/documents/global/user.d.ts +14 -0
  14. package/dist/documents/global/userGroup.d.ts +3 -3
  15. package/dist/documents/index.d.ts +1 -0
  16. package/dist/documents/index.js +1 -0
  17. package/dist/documents/index.js.map +1 -1
  18. package/dist/documents/platform/accounts.d.ts +4 -0
  19. package/dist/documents/platform/accounts.js +3 -0
  20. package/dist/documents/platform/accounts.js.map +1 -0
  21. package/dist/documents/platform/index.d.ts +2 -0
  22. package/dist/documents/platform/index.js +2 -0
  23. package/dist/documents/platform/index.js.map +1 -1
  24. package/dist/documents/platform/users.d.ts +8 -0
  25. package/dist/documents/platform/users.js +3 -0
  26. package/dist/documents/platform/users.js.map +1 -0
  27. package/dist/documents/pouch.d.ts +23 -0
  28. package/dist/documents/pouch.js +3 -0
  29. package/dist/documents/pouch.js.map +1 -0
  30. package/dist/sdk/auth.d.ts +5 -0
  31. package/dist/sdk/auth.js +3 -0
  32. package/dist/sdk/auth.js.map +1 -0
  33. package/dist/sdk/events/screen.d.ts +2 -2
  34. package/dist/sdk/index.d.ts +1 -0
  35. package/dist/sdk/index.js +1 -0
  36. package/dist/sdk/index.js.map +1 -1
  37. package/dist/sdk/search.d.ts +7 -1
  38. package/dist/tsconfig.build.tsbuildinfo +1 -1
  39. package/package.json +2 -2
  40. package/src/api/web/errors.ts +5 -0
  41. package/src/api/web/index.ts +2 -0
  42. package/src/api/web/user.ts +43 -0
  43. package/src/documents/app/app.ts +17 -5
  44. package/src/documents/app/layout.ts +3 -1
  45. package/src/documents/app/screen.ts +1 -1
  46. package/src/documents/global/user.ts +18 -0
  47. package/src/documents/global/userGroup.ts +5 -4
  48. package/src/documents/index.ts +1 -0
  49. package/src/documents/platform/accounts.ts +5 -0
  50. package/src/documents/platform/index.ts +2 -0
  51. package/src/documents/platform/users.ts +9 -0
  52. package/src/documents/pouch.ts +26 -0
  53. package/src/sdk/auth.ts +5 -0
  54. package/src/sdk/events/screen.ts +2 -2
  55. package/src/sdk/index.ts +1 -0
  56. package/src/sdk/search.ts +7 -1
@@ -0,0 +1,5 @@
1
+ export interface APIError {
2
+ message: string;
3
+ status: number;
4
+ error?: any;
5
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=errors.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"errors.js","sourceRoot":"","sources":["../../../src/api/web/errors.ts"],"names":[],"mappings":""}
@@ -1 +1,3 @@
1
1
  export * from "./analytics";
2
+ export * from "./user";
3
+ export * from "./errors";
@@ -15,4 +15,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./analytics"), exports);
18
+ __exportStar(require("./user"), exports);
19
+ __exportStar(require("./errors"), exports);
18
20
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/api/web/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA2B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/api/web/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA2B;AAC3B,yCAAsB;AACtB,2CAAwB"}
@@ -0,0 +1,46 @@
1
+ import { User } from "../../documents";
2
+ export interface CreateUserResponse {
3
+ _id: string;
4
+ _rev: string;
5
+ email: string;
6
+ }
7
+ export interface BulkCreateUsersRequest {
8
+ users: User[];
9
+ groups: any[];
10
+ }
11
+ export interface UserDetails {
12
+ _id: string;
13
+ email: string;
14
+ }
15
+ export interface BulkCreateUsersResponse {
16
+ successful: UserDetails[];
17
+ unsuccessful: {
18
+ email: string;
19
+ reason: string;
20
+ }[];
21
+ }
22
+ export interface BulkDeleteUsersRequest {
23
+ userIds: string[];
24
+ }
25
+ export interface BulkDeleteUsersResponse {
26
+ successful: UserDetails[];
27
+ unsuccessful: {
28
+ _id: string;
29
+ email: string;
30
+ reason: string;
31
+ }[];
32
+ }
33
+ export interface InviteUserRequest {
34
+ email: string;
35
+ userInfo: any;
36
+ }
37
+ export declare type InviteUsersRequest = InviteUserRequest[];
38
+ export interface InviteUsersResponse {
39
+ successful: {
40
+ email: string;
41
+ }[];
42
+ unsuccessful: {
43
+ email: string;
44
+ reason: string;
45
+ }[];
46
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=user.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user.js","sourceRoot":"","sources":["../../../src/api/web/user.ts"],"names":[],"mappings":""}
@@ -14,14 +14,11 @@ export interface App extends Document {
14
14
  tenantId: string;
15
15
  status: string;
16
16
  theme?: string;
17
- customTheme?: {
18
- buttonBorderRadius?: string;
19
- primaryColor?: string;
20
- primaryColorHover?: string;
21
- };
17
+ customTheme?: AppCustomTheme;
22
18
  revertableVersion?: string;
23
19
  navigation?: AppNavigation;
24
20
  automationErrors?: AppMetadataErrors;
21
+ icon?: AppIcon;
25
22
  }
26
23
  export interface AppInstance {
27
24
  _id: string;
@@ -44,3 +41,14 @@ export interface AppNavigationLink {
44
41
  id?: string;
45
42
  roleId?: string;
46
43
  }
44
+ export interface AppCustomTheme {
45
+ buttonBorderRadius?: string;
46
+ primaryColor?: string;
47
+ primaryColorHover?: string;
48
+ navTextColor?: string;
49
+ navBackground?: string;
50
+ }
51
+ export interface AppIcon {
52
+ name: string;
53
+ color: string;
54
+ }
@@ -1,3 +1,4 @@
1
1
  import { Document } from "../document";
2
2
  export interface Layout extends Document {
3
+ props: any;
3
4
  }
@@ -1,6 +1,6 @@
1
1
  import { Document } from "../document";
2
2
  export interface Screen extends Document {
3
- layoutId: string;
3
+ layoutId?: string;
4
4
  showNavigation?: boolean;
5
5
  width?: string;
6
6
  routing: {
@@ -14,7 +14,21 @@ export interface User extends Document {
14
14
  status?: string;
15
15
  createdAt?: number;
16
16
  userGroups?: string[];
17
+ forceResetPassword?: boolean;
17
18
  }
18
19
  export interface UserRoles {
19
20
  [key: string]: string;
20
21
  }
22
+ export interface BuilderUser extends User {
23
+ builder: {
24
+ global: boolean;
25
+ };
26
+ }
27
+ export interface AdminUser extends User {
28
+ admin: {
29
+ global: boolean;
30
+ };
31
+ builder: {
32
+ global: boolean;
33
+ };
34
+ }
@@ -3,14 +3,14 @@ export interface UserGroup extends Document {
3
3
  name: string;
4
4
  icon: string;
5
5
  color: string;
6
- users: groupUser[];
6
+ users: GroupUser[];
7
7
  apps: string[];
8
8
  roles: UserGroupRoles;
9
9
  createdAt?: number;
10
10
  }
11
- export interface groupUser {
11
+ export interface GroupUser {
12
12
  _id: string;
13
- email: string[];
13
+ email: string;
14
14
  }
15
15
  export interface UserGroupRoles {
16
16
  [key: string]: string;
@@ -3,3 +3,4 @@ export * from "./app";
3
3
  export * from "./global";
4
4
  export * from "./platform";
5
5
  export * from "./document";
6
+ export * from "./pouch";
@@ -19,4 +19,5 @@ __exportStar(require("./app"), exports);
19
19
  __exportStar(require("./global"), exports);
20
20
  __exportStar(require("./platform"), exports);
21
21
  __exportStar(require("./document"), exports);
22
+ __exportStar(require("./pouch"), exports);
22
23
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/documents/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAAyB;AACzB,wCAAqB;AACrB,2CAAwB;AACxB,6CAA0B;AAC1B,6CAA0B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/documents/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAAyB;AACzB,wCAAqB;AACrB,2CAAwB;AACxB,6CAA0B;AAC1B,6CAA0B;AAC1B,0CAAuB"}
@@ -0,0 +1,4 @@
1
+ import { Document } from "../document";
2
+ export interface AccountMetadata extends Document {
3
+ email: string;
4
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=accounts.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accounts.js","sourceRoot":"","sources":["../../../src/documents/platform/accounts.ts"],"names":[],"mappings":""}
@@ -1 +1,3 @@
1
1
  export * from "./info";
2
+ export * from "./users";
3
+ export * from "./accounts";
@@ -15,4 +15,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./info"), exports);
18
+ __exportStar(require("./users"), exports);
19
+ __exportStar(require("./accounts"), exports);
18
20
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/documents/platform/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAsB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/documents/platform/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAsB;AACtB,0CAAuB;AACvB,6CAA0B"}
@@ -0,0 +1,8 @@
1
+ import { Document } from "../document";
2
+ /**
3
+ * doc id is user email
4
+ */
5
+ export interface PlatformUserByEmail extends Document {
6
+ tenantId: string;
7
+ userId: string;
8
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=users.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"users.js","sourceRoot":"","sources":["../../../src/documents/platform/users.ts"],"names":[],"mappings":""}
@@ -0,0 +1,23 @@
1
+ export interface RowValue {
2
+ rev: string;
3
+ deleted: boolean;
4
+ }
5
+ export interface RowResponse<T> {
6
+ id: string;
7
+ key: string;
8
+ error: string;
9
+ value: RowValue;
10
+ doc: T;
11
+ }
12
+ export interface AllDocsResponse<T> {
13
+ offset: number;
14
+ total_rows: number;
15
+ rows: RowResponse<T>[];
16
+ }
17
+ export declare type BulkDocsResponse = BulkDocResponse[];
18
+ interface BulkDocResponse {
19
+ ok: boolean;
20
+ id: string;
21
+ rev: string;
22
+ }
23
+ export {};
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=pouch.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pouch.js","sourceRoot":"","sources":["../../src/documents/pouch.ts"],"names":[],"mappings":""}
@@ -0,0 +1,5 @@
1
+ export interface AuthToken {
2
+ userId: string;
3
+ tenantId: string;
4
+ sessionId: string;
5
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=auth.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"auth.js","sourceRoot":"","sources":["../../src/sdk/auth.ts"],"names":[],"mappings":""}
@@ -1,11 +1,11 @@
1
1
  import { BaseEvent } from "./event";
2
2
  export interface ScreenCreatedEvent extends BaseEvent {
3
3
  screenId: string;
4
- layoutId: string;
4
+ layoutId?: string;
5
5
  roleId: string;
6
6
  }
7
7
  export interface ScreenDeletedEvent extends BaseEvent {
8
8
  screenId: string;
9
- layoutId: string;
9
+ layoutId?: string;
10
10
  roleId: string;
11
11
  }
@@ -5,3 +5,4 @@ export * from "./licensing";
5
5
  export * from "./migrations";
6
6
  export * from "./datasources";
7
7
  export * from "./search";
8
+ export * from "./auth";
package/dist/sdk/index.js CHANGED
@@ -21,4 +21,5 @@ __exportStar(require("./licensing"), exports);
21
21
  __exportStar(require("./migrations"), exports);
22
22
  __exportStar(require("./datasources"), exports);
23
23
  __exportStar(require("./search"), exports);
24
+ __exportStar(require("./auth"), exports);
24
25
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/sdk/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAAyB;AACzB,4CAAyB;AACzB,2CAAwB;AACxB,8CAA2B;AAC3B,+CAA4B;AAC5B,gDAA6B;AAC7B,2CAAwB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/sdk/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAAyB;AACzB,4CAAyB;AACzB,2CAAwB;AACxB,8CAA2B;AAC3B,+CAA4B;AAC5B,gDAA6B;AAC7B,2CAAwB;AACxB,yCAAsB"}
@@ -30,7 +30,13 @@ export interface SearchFilters {
30
30
  [key: string]: any[];
31
31
  };
32
32
  contains?: {
33
- [key: string]: any;
33
+ [key: string]: any[];
34
+ };
35
+ notContains?: {
36
+ [key: string]: any[];
37
+ };
38
+ containsAny?: {
39
+ [key: string]: any[];
34
40
  };
35
41
  }
36
42
  export interface SortJson {
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/sdk/hosting.ts","../src/sdk/events/identification.ts","../src/sdk/context.ts","../src/sdk/events/event.ts","../src/sdk/events/app.ts","../src/sdk/events/auth.ts","../src/sdk/events/automation.ts","../src/sdk/events/email.ts","../src/sdk/events/datasource.ts","../src/sdk/events/layout.ts","../src/sdk/events/license.ts","../src/sdk/events/version.ts","../src/sdk/events/query.ts","../src/sdk/events/role.ts","../src/sdk/events/rows.ts","../src/sdk/events/screen.ts","../src/sdk/events/serve.ts","../src/sdk/events/table.ts","../src/sdk/events/user.ts","../src/sdk/events/view.ts","../src/sdk/events/account.ts","../src/sdk/events/backfill.ts","../src/sdk/events/userGroup.ts","../src/sdk/events/index.ts","../src/sdk/licensing/license.ts","../src/sdk/licensing/index.ts","../src/sdk/migrations.ts","../src/sdk/datasources.ts","../src/sdk/search.ts","../src/sdk/index.ts","../src/documents/account/account.ts","../src/documents/account/index.ts","../src/documents/document.ts","../src/documents/app/app.ts","../src/documents/app/automation.ts","../src/documents/app/view.ts","../src/documents/app/table.ts","../src/documents/app/datasource.ts","../src/documents/app/layout.ts","../src/documents/app/query.ts","../src/documents/app/role.ts","../src/documents/app/screen.ts","../src/documents/app/row.ts","../src/documents/app/user.ts","../src/documents/app/index.ts","../src/documents/global/config.ts","../src/documents/global/user.ts","../src/documents/global/userGroup.ts","../src/documents/global/index.ts","../src/documents/platform/info.ts","../src/documents/platform/index.ts","../src/documents/index.ts","../src/api/web/analytics.ts","../src/api/web/index.ts","../src/api/index.ts","../src/index.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/bson/bson.d.ts","../../../node_modules/@types/mongodb/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},{"version":"cc2fb422a777f2187f47e33bf5203c03577fae95c5dc2c5faf1ada278d26cff3","signature":"7f28ff60aa0eb9c874da6cb0803785c049abc58f47e886fa4c5002d0fd4b71dc"},{"version":"f2ed9bc6c98914a8acc1f347afd3a2fb21636c74b1765b0a309c706a70fcc7f7","signature":"e8f5d625050af9a4983371e1aac9398e5f7cdb623d6cfa927ad864dba7c45ac9"},{"version":"70f5afecd8c7c708028c2927c4a83f821d66895167d2d1a3ebfc6ec8a46f2418","signature":"ed3db85523e2fae45b835196eac76976b2e09aa8852cb4d499b556d0179a08f3"},{"version":"0438c952ced25e9b9b2b4af403019064fc4ccf11921aeb10be50e0ac55516567","signature":"e89bb15f390e39b47e6bfe5e82c7a221fe39de2856d0e743e9cda0aee310b494"},{"version":"e71b4a582b504275d2b471a728567abb2db94dca3ae4b04020e520804e783c03","signature":"0a59c19ad3137e50c4077334eca86bc427ee3315df898c76601bc9e659879324"},{"version":"f5de0f6d5af70e217b87d28b39f9af8898f848dde48c410023f01d6534150160","signature":"58c32072433d144b2198f60f2a0cc7eb8cb9b797ae9400bcf78bd7b6b85707f9"},{"version":"06be601fa1874b4b0cdd98b4dff5dc96b6e6eb9edb42118ab7b6ad89f5baf0c0","signature":"ff61e7ce143b035d656f92a86ee4ed4f57e82047c7c83c6b463ead04d65ac1e2"},{"version":"45aa3f5403e3da5c87ec79dd06119933edd9540a0522569c9010f1a287ea4985","signature":"80a08d83b29234f36aa3cec2a4594964a9c83ff949a9f2399e5f1d97d0326970"},{"version":"efa267b3ca52a8e1ea03a6c3a0048de98d973e82fef64936560dc8133b9d21eb","signature":"2f83411e1d64adb650d512eaba0a988a8cadb46dddef36c05da03bc85dd8fc83"},{"version":"b4e67ffaf8e9f286845f3beb1a0621a337c533e46270f9bd4e7e48169ed707aa","signature":"040dde7d6d42b0223f76161e19af4dfd7da9b17d70e741aa86d1c7f86f061d8e"},{"version":"4321df3a04d44002b47a7c4d2e42b52a03ab52c5406e418e9b44d8f3cfc97fa5","signature":"4b3ff71aed86d3d567cd120b6b1236f24f3fc77678904f6028736a119679e7da"},{"version":"23bd67eb3caf0344aa1a4a3b9e2a88f4dd4a7204cda42e532f54612cfd61a7af","signature":"75ad38655a628aafe3e6a62dfb409e152ed3e43e176eddf9cf2ce7efe396d393"},{"version":"643b4a91e77e5a597388564b6d1fd6256dfdd326d92c8dd03b1abf803780276b","signature":"f5e5d663beb219629c0b87536be5b4fa3a8add4e2978c8cc62ce508529ada512"},{"version":"cf677cb1f7df804602ff5406a67817dd56f3b75662dfa2e082b6c74a3e2b662b","signature":"d7651d069b6c6a356d6c62cb84d47ab650488b91675ce01a20c3953ceca2f222"},{"version":"9320793776b0fbdd66201b57f43dd9cebf24de2bed01a7533623d63daf47bced","signature":"6aaa00a78799631e894f35597f85a202e3f8b4e6ad1213147aca3b2eefde92e6"},{"version":"be367d0f0187284feac17cfc24dc5c0afb12b9bdfe2418131567a0baa083b1ed","signature":"787d7d26421b83dba787a1ee68e02b10f1331372138834e291976b36ff94b3e1"},{"version":"e96c1288e782cb1c4018a47bbcfb54244c389ffcc575ca89ff35d62944138ec7","signature":"8463ea2d0b02f183b8e28baf286bbd554b262aea1a775a5f6b1e9d68137a4ca2"},{"version":"1f45637d24a9677a9480d1f5c6d1dc62e6051a31c1b3bea1cd5dd5abe91ab29b","signature":"7453cc35bb0d3e72d8cfa76dada0633c10c99f2faf943b78f643583208d62167"},{"version":"6a2364dd21d7ec07ac3bc152d92d711bd19549c59a59fe87353bde2e742d6923","signature":"40e804f56f10bd6d868c920ac4d4f760a06989416a8526e7edeeb01f0e143d35"},{"version":"f69ac66ed5f71ee0e9d14c044b811d557dd3e6138db0fff1107c45a8a8f25d96","signature":"5cdb3e00509ecaf6ec1fe2f9bc8a2546a50c968a56b81fe5d8cb821f9eb1deb2"},{"version":"f53557bbfa5bce74e6535ce28af9591a798228aa4aa2bcc1fd71c36578799ab1","signature":"83148bed9686d9c51672014be000503893f14c1de6820602121db8584de8e537"},{"version":"5043f7e9b57906fb49f7dfed3364f1a810536f7ca0baeb2a7d3e18ae6673383c","signature":"f0a3e9d385910136bcf01e0db080cd5e5cb1c4f45d2dafbfda13c15773cd18d6"},{"version":"e2d0db9429b3b5f83b296acc0064cdef76479c7071a27b28d983f37e33946999","signature":"320d0dffb9276aef0cdab6f8736d18dcf50b0570992b29114b22995dc5e00df6"},{"version":"7c5910088a2e61147440c478f4a8787d48e29f7f02e8284adae232eeafb48c46","signature":"30c89beb8c29e59827aff97ee4fe444dacb82c3533a4d2a61e5e0045be9e78f9"},{"version":"531ae907cdc45429b6c9afcd9ee84be5fbef77c0faf80d482123eb14eeafd184","signature":"a8a477f4b1fc204acc7d62903a95aa0e677a296576a6590b545c53c5dc7797c8"},{"version":"3ffa3a235cbd35af04fe828989d9e4f8e9db30c877423bcf2abe1f5cb543461a","signature":"6b22beca71fc46d4991b8e0506ff4ded583e1048854d5b77a10269b1ed7b773b"},{"version":"d50127f6d7519d677bc95a27865b4498668299838448f3ab9562a7d96ae5d8ba","signature":"47c1986c1f195d2d0d559cbb3ac956e278b56bae8f8952af12e82ff243d001e8"},{"version":"87ba6292541852eaae8b62c353ee2a7219dd056e2d4ac4e44c2af727cc247267","signature":"f55d12bfc517589c229c95a05c5ada3e849c1161df0fd10c3902a1f4d6a4b12b"},{"version":"78213f3507dac40e389f0bd314cb9a98b22ae4d1025fc70e02c3635b2a172d12","signature":"2f1f3385c610b11a22322e5df6c725706fce43b5749dc578d306f9dadcaa9f38"},{"version":"dad5cb4b214588a6da9c03aafb46d47aae12e087136a3bad400b9b3bd97fd10e","signature":"12d7142a0490a4f6a19cea8ebfb1f9eff1c03c47976ccfb5a224ce1825bec79f"},{"version":"bd96922e6a1d34176b47fd73c040c7adb9b91aa5a4cf525ee9014a6fd8d8d7ed","signature":"85c3b27b3ae001fddc63b9f78e504a7465c23694633fa4bf511d15e1fb512326"},{"version":"78555a1313a15b1547abbb6d30c6d38f500af2428129df1a66b88deaad1193dc","signature":"8d2b7f9590ed438dc4a810d20f7282c71a88e9b92d6b3b122c3faef80753f5fb"},{"version":"b29e35cd13cc9d274614c3ebf6d1e78a2d3501691c083e02c70ebb288124d911","signature":"7d807f1d6b3433095cf59e900c625b11a039bce72a21055fe8606fe71e712dee"},{"version":"b9fb447409dcb3c3eaee22cacf49c51eae730b5d3cea5a60f5e0f96809f7156e","signature":"8e175a89714ad6270f6870dd41a5b16948eaf2026916cb017fdd8481a804058e"},{"version":"c4a7ff5a66e38217e2f9c7c3468a69e200eb27ae3d4fd1586aba47c259f15edf","signature":"a73a3ecd24d609c07308c2d133a6f82b1249a865e5eb01f250315aa21c498770"},{"version":"b91a723793ddaffd33173fac52f0c37d208238eea8fe1025b1331922e0fc9607","signature":"a3f8a6277838f7d6086e2ea93b655ac579965d93c857103f03ff4fc4dab4e822"},{"version":"3805c6cd4dcf177ebbcdbac95c1311bf9cecda35908a28044052461ec4ece12f","signature":"3d331a6d4f292c91e8138e45140a5765e5c67c916c87c4e34468cc3c73e9d84f"},{"version":"02cf8d33c1505e3a145f9b2336a242ed477329c1691448e549c44111d7cf212e","signature":"287c1bac97d736e74805687fd016cff6c0a9084611651201758e2ec390db9582"},{"version":"534e639b9037a23c0be0132cad5eebb5247154f36806febd245e6877244c2f88","signature":"23bd9f3b0c88a54ad15e3d2a015569d69260a287cc42dd4361d68b58fbc3f41e"},{"version":"9e5ea1ae57d78c2a06c70121c05f80507b5fbf60be7fb649555d49a5cb77f41a","signature":"a6a88c0b51293dfe0896e310c5ff4a60cfe1db12c3b15da4696ab1483ef6b7aa"},{"version":"d0416eea265e5abeb77728a8f8f479c9beb5aa2386910243c8cca2e3e3bea07b","signature":"ca530b63ef29b46763af9a45325fc625da88903ca315e4fd2f338fbae97e7bcf"},{"version":"5dbb29ec102dc12b920c99b64c02f9802b42090fca62483f6345f51bbd3571e0","signature":"1175b2ca1fd5e9784c2b399377c704c8ba184c4acdffc3703076af3cf26828ef"},{"version":"58b93fe4b57303876e4b1873ce56f1b4e46655bc4eb821fcc2e80dd886c2aaa3","signature":"cdc388e88f08136f8b243dfabe4ff68b65652a23a2e02c5abb0adc210f162c55"},{"version":"e80fbb8abcc1f5ab5a42db55e2c0fb3d78d31a7304b6dfff13fab24ea768febf","signature":"e31267d4b1b5b3317d289ab381823fe4274398941532fe425f237fc492ca0fa8"},{"version":"0ce055d2ed05c51142869cfa888cc89ba8e57990652b099632e06ff4e54c2a9e","signature":"f0a75661ea98d7452fcbf8b91c7b3a7d3c14e38e62876df576e35e9a249d9c02"},{"version":"35f1bb433335e81446c488b79f16d0b58e435d2f4a6c2d57d4bf8ffbdc32a307","signature":"6dda15c61d6e8070b6e6c7901c2ba479e6222f1201fc03c20c3bda523897583b"},{"version":"da468bf9e79ad6ab140bf7294b77f00d4dd235aa8dc45d58435ee634d7c0aadd","signature":"d9236b5e849f07f4ef1b43d0a8c2088dd2396797bcbcc3ceafd66ea66b8376f1"},{"version":"fbc62094def385219b9ecd099034333eb746c5355f24865fcd9330d5f155cafa","signature":"904ce30b75c37728314e40ebce2e918dfb2b6484df07fc3191aef32b73399a44"},{"version":"ea4309810967e2b9f4ee49622c6d6137626297fa91380fcc3719aac8f69c8a0c","signature":"58990ac73b549a4d8b629ff966ffad2883d47d5d11877f7a8baf972b57212b04"},{"version":"8c99213d1d9ac83db53893e1f66fc476a77b336bf0b473145c79f7d242ca15de","signature":"3cd5c18a3f586516b0e2f4cbbe3e447b8d91245877b80ec2a09561acf091b274"},{"version":"2ccf1dd1570704d178f7eb57d84d065807b0711eaaac4a281495d7e4ada562d2","signature":"0d0cd7b17a7a35dc800a56efbedf6b296ae568122ec0f1b058802585fe4f1ca0"},{"version":"accf90d17c7f5f77f6569f4e7ec70e9e89916b88b7f0b123dd0496ba309a25ad","signature":"c0caa019a68bcd3f03092fd69cc05f88d5615b6aa6be3cfcccbe0a9f51f5356f"},{"version":"f2554547dfe3281b043bad42a7bff6ecfb24d1b939c3a90481d41cc62b9df4c5","signature":"bd56bdf2985d2fe92c818b5d07eb9e1f1974ad51742ec3b723c541906548485b"},{"version":"0db7871c32a85f5d18cf5fbabc53e42113443617dda6893d8722605418a00530","signature":"d52b929cd81fa8d22d057bb235ce8db3dfd7823b7f4312df388826e66fc00460"},{"version":"1bafa0be277d83039902d00d06e830b6d157f7f5b369f5147ef6894b0e868b90","signature":"d06ae40f78248c0ca5b29676305a440dc62395c682d4d2e2ca7c4a75a1598903"},{"version":"4d683891f9beea0bb529c714c645275e91fb84282b867484766bb0ceda52ff7c","signature":"3d6dfc7d3e9f4af5cef7baa5c0d1841e25209f7f836033cc00aeb60244f24333"},"4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",{"version":"32ddf2b046fa7269050f64a87f1f3d2db10b92ad6302460681915af1207b1222","affectsGlobalScope":true},"c2b5085f47e41d6940bbc5b0d3bd7cc0037c752efb18aecd243c9cf83ad0c0b7","3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b","9b2a8f604e7c0482a9061755f00b287cc99bd8718dc82d8207dd74c599b6dc43","d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",{"version":"1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7","affectsGlobalScope":true},"3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3","50ae84dc0183f9f69b4d0933e240fb76cc77fddb2ec223dd070d12420b6ccfa6","b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45","4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",{"version":"60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05","affectsGlobalScope":true},{"version":"588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c","affectsGlobalScope":true},"ae064ed4f855716b7ff348639ddcd6a6d354a72fae82f506608a7dc9266aa24c","8e63e656267f767e6c15b47776f641d30ef29690581ab9bdddff5b83885d1a43","53d2c24a3cbc00a88ebaf8ab8e1b6e206bc3a6647d544f877241684ea3d484e3","ecee890ff04b70d8e8815fb753c20f24f95203426267a577823d375009c1ace7","0ce99c641ea20b0c0c09d093fc28f18f5ab31dc80033707a1ac3154399de2559","7dc9ed91e245cf0c4f8add7f6845d0cb08cceec4408ce3398c51e1f6dd7679ec","44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d","d79fda68cbfb361c4ee9cd9ea169babb65887534d64017726cd01f54783d20a5","1606ea615c0a5ea9f5c1376a33e34c0e1112e8dee31a5b3b8a74ce781893aa6f","9fef9de633d01cb7f01f68195626a890ededd25cf96a1e785617d08c8668230d","4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",{"version":"ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5","affectsGlobalScope":true},"4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a","9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e","f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0","e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7","c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc","874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09","6c903bceaf3f3bc04f2d4c7dcd89ce9fb148b3ba0a5f5408d8f6de2b7eecc7ea","605c24042a348b033b30121cff64380eb5d6d82853c5608f1f94ef72385cf5c9","23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779","4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",{"version":"eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d","affectsGlobalScope":true},"7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d","a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd","4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e","3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13","0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb","22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"79d679a1d56574cc5cef92be1f0e5e8fb4af62fb55933b236670a0e0a23c83f6","89ccbe04e737ce613f5f04990271cfa84901446350b8551b0555ddf19319723b","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","ea5aa4d1e53916a4aaf9d7e03203dd74544bb13c0d35b0bd7a64b31a5c086d0f","52a2350f36cdad787e4b6342abf62282e7c7bafcdd954c538f0e75adeb736a5e","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a"],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":true,"outDir":"./","sourceMap":true,"strict":true,"target":2},"fileIdsList":[[109,126,129,140,144],[100],[97],[99],[100,105],[101,109,110,117,126],[101,102,109,117],[103,133],[104,105,110,118],[105,126],[106,107,109,117],[107],[108,109],[109],[109,110,111,126,132],[110,111],[112,117,126,132],[109,110,112,113,117,126,129,132],[112,114,126,129,132],[97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139],[109,115],[116,132],[107,109,117,126],[118],[119],[99,120],[121,131],[122],[123],[109,124],[124,125,133,135],[109,126],[127],[128],[117,126,129],[130],[117,131],[123,132],[133],[126,134],[135],[136],[109,111,126,132,135,137],[126,138],[94],[93],[70],[71],[73],[70,73,77],[73,74,75,76,77,78,79,80,81,82,83,84],[73,76],[86,87,88],[73,87],[72,73,85,89,91],[90],[64,66,70,92,95],[42,92],[92],[44],[41],[42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63],[44,92],[41,43,64,66,67,68,69],[65],[68,92]],"referencedMap":[[145,1],[144,2],[97,3],[99,4],[100,5],[101,6],[102,7],[103,8],[104,9],[105,10],[106,11],[107,12],[108,13],[109,14],[110,15],[111,16],[112,17],[113,18],[114,19],[140,20],[115,21],[116,22],[117,23],[118,24],[119,25],[120,26],[121,27],[122,28],[123,29],[124,30],[125,31],[126,32],[127,33],[128,34],[129,35],[130,36],[131,37],[132,38],[133,39],[134,40],[135,41],[136,42],[137,43],[138,44],[95,45],[94,46],[71,47],[72,48],[74,49],[75,49],[78,50],[85,51],[79,49],[80,49],[81,49],[83,49],[82,49],[77,52],[84,49],[86,49],[89,53],[87,49],[88,54],[92,55],[91,56],[90,49],[96,57],[43,58],[68,59],[61,60],[45,60],[46,60],[47,60],[62,60],[49,60],[48,60],[44,61],[42,47],[64,62],[50,60],[53,60],[54,60],[55,60],[56,60],[57,60],[58,60],[59,60],[63,60],[52,60],[60,63],[70,64],[66,65],[69,66]],"exportedModulesMap":[[145,1],[144,2],[97,3],[99,4],[100,5],[101,6],[102,7],[103,8],[104,9],[105,10],[106,11],[107,12],[108,13],[109,14],[110,15],[111,16],[112,17],[113,18],[114,19],[140,20],[115,21],[116,22],[117,23],[118,24],[119,25],[120,26],[121,27],[122,28],[123,29],[124,30],[125,31],[126,32],[127,33],[128,34],[129,35],[130,36],[131,37],[132,38],[133,39],[134,40],[135,41],[136,42],[137,43],[138,44],[95,45],[94,46],[71,47],[72,48],[74,49],[75,49],[78,50],[85,51],[79,49],[80,49],[81,49],[83,49],[82,49],[77,52],[84,49],[86,49],[89,53],[87,49],[88,49],[92,55],[91,56],[90,49],[96,57],[43,58],[68,59],[61,60],[45,60],[46,60],[47,60],[62,60],[49,60],[48,60],[44,61],[42,47],[64,62],[50,60],[53,60],[54,60],[55,60],[56,60],[57,60],[58,60],[59,60],[63,60],[52,60],[60,63],[70,64],[66,65],[69,66]],"semanticDiagnosticsPerFile":[141,142,145,146,144,143,97,99,100,101,102,103,104,105,106,107,108,109,110,111,98,139,112,113,114,140,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,7,33,38,39,34,35,36,37,1,40,95,93,94,71,72,74,75,78,85,79,80,81,83,82,77,84,76,73,86,89,87,88,92,91,90,96,43,68,61,45,46,47,62,49,48,44,42,64,50,51,53,54,55,56,57,58,59,63,52,60,41,70,66,65,67,69]},"version":"4.7.3"}
1
+ {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/sdk/hosting.ts","../src/sdk/events/identification.ts","../src/sdk/context.ts","../src/sdk/events/event.ts","../src/sdk/events/app.ts","../src/sdk/events/auth.ts","../src/sdk/events/automation.ts","../src/sdk/events/email.ts","../src/sdk/events/datasource.ts","../src/sdk/events/layout.ts","../src/sdk/events/license.ts","../src/sdk/events/version.ts","../src/sdk/events/query.ts","../src/sdk/events/role.ts","../src/sdk/events/rows.ts","../src/sdk/events/screen.ts","../src/sdk/events/serve.ts","../src/sdk/events/table.ts","../src/sdk/events/user.ts","../src/sdk/events/view.ts","../src/sdk/events/account.ts","../src/sdk/events/backfill.ts","../src/sdk/events/userGroup.ts","../src/sdk/events/index.ts","../src/sdk/licensing/license.ts","../src/sdk/licensing/index.ts","../src/sdk/migrations.ts","../src/sdk/datasources.ts","../src/sdk/search.ts","../src/sdk/auth.ts","../src/sdk/index.ts","../src/documents/account/account.ts","../src/documents/account/index.ts","../src/documents/document.ts","../src/documents/app/app.ts","../src/documents/app/automation.ts","../src/documents/app/view.ts","../src/documents/app/table.ts","../src/documents/app/datasource.ts","../src/documents/app/layout.ts","../src/documents/app/query.ts","../src/documents/app/role.ts","../src/documents/app/screen.ts","../src/documents/app/row.ts","../src/documents/app/user.ts","../src/documents/app/index.ts","../src/documents/global/config.ts","../src/documents/global/user.ts","../src/documents/global/userGroup.ts","../src/documents/global/index.ts","../src/documents/platform/info.ts","../src/documents/platform/users.ts","../src/documents/platform/accounts.ts","../src/documents/platform/index.ts","../src/documents/pouch.ts","../src/documents/index.ts","../src/api/web/analytics.ts","../src/api/web/user.ts","../src/api/web/errors.ts","../src/api/web/index.ts","../src/api/index.ts","../src/index.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/bson/bson.d.ts","../../../node_modules/@types/mongodb/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},{"version":"cc2fb422a777f2187f47e33bf5203c03577fae95c5dc2c5faf1ada278d26cff3","signature":"7f28ff60aa0eb9c874da6cb0803785c049abc58f47e886fa4c5002d0fd4b71dc"},{"version":"f2ed9bc6c98914a8acc1f347afd3a2fb21636c74b1765b0a309c706a70fcc7f7","signature":"e8f5d625050af9a4983371e1aac9398e5f7cdb623d6cfa927ad864dba7c45ac9"},{"version":"70f5afecd8c7c708028c2927c4a83f821d66895167d2d1a3ebfc6ec8a46f2418","signature":"ed3db85523e2fae45b835196eac76976b2e09aa8852cb4d499b556d0179a08f3"},{"version":"0438c952ced25e9b9b2b4af403019064fc4ccf11921aeb10be50e0ac55516567","signature":"e89bb15f390e39b47e6bfe5e82c7a221fe39de2856d0e743e9cda0aee310b494"},{"version":"e71b4a582b504275d2b471a728567abb2db94dca3ae4b04020e520804e783c03","signature":"0a59c19ad3137e50c4077334eca86bc427ee3315df898c76601bc9e659879324"},{"version":"f5de0f6d5af70e217b87d28b39f9af8898f848dde48c410023f01d6534150160","signature":"58c32072433d144b2198f60f2a0cc7eb8cb9b797ae9400bcf78bd7b6b85707f9"},{"version":"06be601fa1874b4b0cdd98b4dff5dc96b6e6eb9edb42118ab7b6ad89f5baf0c0","signature":"ff61e7ce143b035d656f92a86ee4ed4f57e82047c7c83c6b463ead04d65ac1e2"},{"version":"45aa3f5403e3da5c87ec79dd06119933edd9540a0522569c9010f1a287ea4985","signature":"80a08d83b29234f36aa3cec2a4594964a9c83ff949a9f2399e5f1d97d0326970"},{"version":"efa267b3ca52a8e1ea03a6c3a0048de98d973e82fef64936560dc8133b9d21eb","signature":"2f83411e1d64adb650d512eaba0a988a8cadb46dddef36c05da03bc85dd8fc83"},{"version":"b4e67ffaf8e9f286845f3beb1a0621a337c533e46270f9bd4e7e48169ed707aa","signature":"040dde7d6d42b0223f76161e19af4dfd7da9b17d70e741aa86d1c7f86f061d8e"},{"version":"4321df3a04d44002b47a7c4d2e42b52a03ab52c5406e418e9b44d8f3cfc97fa5","signature":"4b3ff71aed86d3d567cd120b6b1236f24f3fc77678904f6028736a119679e7da"},{"version":"23bd67eb3caf0344aa1a4a3b9e2a88f4dd4a7204cda42e532f54612cfd61a7af","signature":"75ad38655a628aafe3e6a62dfb409e152ed3e43e176eddf9cf2ce7efe396d393"},{"version":"643b4a91e77e5a597388564b6d1fd6256dfdd326d92c8dd03b1abf803780276b","signature":"f5e5d663beb219629c0b87536be5b4fa3a8add4e2978c8cc62ce508529ada512"},{"version":"cf677cb1f7df804602ff5406a67817dd56f3b75662dfa2e082b6c74a3e2b662b","signature":"d7651d069b6c6a356d6c62cb84d47ab650488b91675ce01a20c3953ceca2f222"},{"version":"9320793776b0fbdd66201b57f43dd9cebf24de2bed01a7533623d63daf47bced","signature":"6aaa00a78799631e894f35597f85a202e3f8b4e6ad1213147aca3b2eefde92e6"},{"version":"bae37b78164a4fe6402f15111e8e655d04a9ac611d6f2008d2d41714469eea4e","signature":"54f186ce2f32e0288d611cc0e6525e0bcd001a4472f7213ed9117d0db72ce0f5"},{"version":"e96c1288e782cb1c4018a47bbcfb54244c389ffcc575ca89ff35d62944138ec7","signature":"8463ea2d0b02f183b8e28baf286bbd554b262aea1a775a5f6b1e9d68137a4ca2"},{"version":"1f45637d24a9677a9480d1f5c6d1dc62e6051a31c1b3bea1cd5dd5abe91ab29b","signature":"7453cc35bb0d3e72d8cfa76dada0633c10c99f2faf943b78f643583208d62167"},{"version":"6a2364dd21d7ec07ac3bc152d92d711bd19549c59a59fe87353bde2e742d6923","signature":"40e804f56f10bd6d868c920ac4d4f760a06989416a8526e7edeeb01f0e143d35"},{"version":"f69ac66ed5f71ee0e9d14c044b811d557dd3e6138db0fff1107c45a8a8f25d96","signature":"5cdb3e00509ecaf6ec1fe2f9bc8a2546a50c968a56b81fe5d8cb821f9eb1deb2"},{"version":"f53557bbfa5bce74e6535ce28af9591a798228aa4aa2bcc1fd71c36578799ab1","signature":"83148bed9686d9c51672014be000503893f14c1de6820602121db8584de8e537"},{"version":"5043f7e9b57906fb49f7dfed3364f1a810536f7ca0baeb2a7d3e18ae6673383c","signature":"f0a3e9d385910136bcf01e0db080cd5e5cb1c4f45d2dafbfda13c15773cd18d6"},{"version":"e2d0db9429b3b5f83b296acc0064cdef76479c7071a27b28d983f37e33946999","signature":"320d0dffb9276aef0cdab6f8736d18dcf50b0570992b29114b22995dc5e00df6"},{"version":"7c5910088a2e61147440c478f4a8787d48e29f7f02e8284adae232eeafb48c46","signature":"30c89beb8c29e59827aff97ee4fe444dacb82c3533a4d2a61e5e0045be9e78f9"},{"version":"531ae907cdc45429b6c9afcd9ee84be5fbef77c0faf80d482123eb14eeafd184","signature":"a8a477f4b1fc204acc7d62903a95aa0e677a296576a6590b545c53c5dc7797c8"},{"version":"3ffa3a235cbd35af04fe828989d9e4f8e9db30c877423bcf2abe1f5cb543461a","signature":"6b22beca71fc46d4991b8e0506ff4ded583e1048854d5b77a10269b1ed7b773b"},{"version":"d50127f6d7519d677bc95a27865b4498668299838448f3ab9562a7d96ae5d8ba","signature":"47c1986c1f195d2d0d559cbb3ac956e278b56bae8f8952af12e82ff243d001e8"},{"version":"87ba6292541852eaae8b62c353ee2a7219dd056e2d4ac4e44c2af727cc247267","signature":"f55d12bfc517589c229c95a05c5ada3e849c1161df0fd10c3902a1f4d6a4b12b"},{"version":"c2863943daeff1e78799393b9c61bc830095acc1de0a65a079a5ca47bb5aa125","signature":"29853dad718e1d3aef497bb12a500095996d5820b0ed4d7b523a80be17295353"},{"version":"98403014f93697cf693ef5e5c6a22e3074d13c276745aa5ab9d8a2e02c6b1b32","signature":"f694b5727a4decb2038f9833431fd117b120d00090b081c6e7832590dcf7b5a8"},{"version":"13c337f50e6d05b14c561f3ec56f36aef569909b541e689a64d8d30febeb3890","signature":"40d32cc1bc52db1a75ccd6a267a1972a186ae7aa674a32b71682570e2bece515"},{"version":"bd96922e6a1d34176b47fd73c040c7adb9b91aa5a4cf525ee9014a6fd8d8d7ed","signature":"85c3b27b3ae001fddc63b9f78e504a7465c23694633fa4bf511d15e1fb512326"},{"version":"78555a1313a15b1547abbb6d30c6d38f500af2428129df1a66b88deaad1193dc","signature":"8d2b7f9590ed438dc4a810d20f7282c71a88e9b92d6b3b122c3faef80753f5fb"},{"version":"b29e35cd13cc9d274614c3ebf6d1e78a2d3501691c083e02c70ebb288124d911","signature":"7d807f1d6b3433095cf59e900c625b11a039bce72a21055fe8606fe71e712dee"},{"version":"09993ffd858b250f3b05205ea4719a815df94e3918ed19f63adb62258f456bfc","signature":"cda61821dd562a8b68481cc36966beb7d71cd360892724ee34339bef65f38ec6"},{"version":"c4a7ff5a66e38217e2f9c7c3468a69e200eb27ae3d4fd1586aba47c259f15edf","signature":"a73a3ecd24d609c07308c2d133a6f82b1249a865e5eb01f250315aa21c498770"},{"version":"b91a723793ddaffd33173fac52f0c37d208238eea8fe1025b1331922e0fc9607","signature":"a3f8a6277838f7d6086e2ea93b655ac579965d93c857103f03ff4fc4dab4e822"},{"version":"3805c6cd4dcf177ebbcdbac95c1311bf9cecda35908a28044052461ec4ece12f","signature":"3d331a6d4f292c91e8138e45140a5765e5c67c916c87c4e34468cc3c73e9d84f"},{"version":"02cf8d33c1505e3a145f9b2336a242ed477329c1691448e549c44111d7cf212e","signature":"287c1bac97d736e74805687fd016cff6c0a9084611651201758e2ec390db9582"},{"version":"c8a2055310d50decc608c825eb89a3b099258349e83000396c0cfb36b64c706a","signature":"46ca88259aa3a2ea90ce48648a8317e8acd59ae851b04b1afa42868546732aa5"},{"version":"9e5ea1ae57d78c2a06c70121c05f80507b5fbf60be7fb649555d49a5cb77f41a","signature":"a6a88c0b51293dfe0896e310c5ff4a60cfe1db12c3b15da4696ab1483ef6b7aa"},{"version":"d0416eea265e5abeb77728a8f8f479c9beb5aa2386910243c8cca2e3e3bea07b","signature":"ca530b63ef29b46763af9a45325fc625da88903ca315e4fd2f338fbae97e7bcf"},{"version":"628701025429c464272afb2e434bd79b8c79593a08e7736a340e4cce86a88416","signature":"8c3d498f2b0ee3d2a7d650cb0cd0703a3d991279417bec9d4d977579d9a46a25"},{"version":"58b93fe4b57303876e4b1873ce56f1b4e46655bc4eb821fcc2e80dd886c2aaa3","signature":"cdc388e88f08136f8b243dfabe4ff68b65652a23a2e02c5abb0adc210f162c55"},{"version":"e80fbb8abcc1f5ab5a42db55e2c0fb3d78d31a7304b6dfff13fab24ea768febf","signature":"e31267d4b1b5b3317d289ab381823fe4274398941532fe425f237fc492ca0fa8"},{"version":"0ce055d2ed05c51142869cfa888cc89ba8e57990652b099632e06ff4e54c2a9e","signature":"f0a75661ea98d7452fcbf8b91c7b3a7d3c14e38e62876df576e35e9a249d9c02"},{"version":"35f1bb433335e81446c488b79f16d0b58e435d2f4a6c2d57d4bf8ffbdc32a307","signature":"6dda15c61d6e8070b6e6c7901c2ba479e6222f1201fc03c20c3bda523897583b"},{"version":"fe185aa34c008530ee319861cd8168fb26ce972d1e7f769a4c49f13a9856f9f3","signature":"8b93d4ef3ccd767bbe90776d5955b16546e4f275f1f597e4183823fa96b368de"},{"version":"285ec07e7d7a2e13edfef5387201b2e49982d138236de3634efe65449506cecd","signature":"e99f89535ff991e240352151aa92ce4d10639ce887df132858907394e9e1b021"},{"version":"ea4309810967e2b9f4ee49622c6d6137626297fa91380fcc3719aac8f69c8a0c","signature":"58990ac73b549a4d8b629ff966ffad2883d47d5d11877f7a8baf972b57212b04"},{"version":"8c99213d1d9ac83db53893e1f66fc476a77b336bf0b473145c79f7d242ca15de","signature":"3cd5c18a3f586516b0e2f4cbbe3e447b8d91245877b80ec2a09561acf091b274"},{"version":"fc6e0e48bc5c429cbacfd7cf160d71131b914ec69f00394fcf59602e04f0f875","signature":"ecb1c1d03f90c7e544d393a377040b7bb8f8e3802b0a2be64551748f5e3081be"},{"version":"6e6a0847c92b56147c7305fe612f929d734d49740a9f320388277430f9fa932e","signature":"bcef51e281dc23358bd61cd0e5faa522ab1d6efe66838108a6f293844c024345"},{"version":"89fdda62943ccab2b00eb769d862a9df60107dcb1a0c710c6075d18d96b44aef","signature":"9563736832ca0c43824d8d8dd2ece25bc9047be104ee78f7f5a9ef531c93ae9d"},{"version":"3c2355cf18bbd3340aaae29eecf08026df5e300d4be95415c0b931cf1869ca90","signature":"bb85c73fd510f18275f05b81ef2c12277ad1f858b742d918e70ede6b776b090a"},{"version":"2d507428287091d0e891efbba40cf64b82fddca876cd9cbf6ab80a20c94d7ea3","signature":"97fc18b8d21d9e5f6a7094a0e51a1face3f8c2b93aa710e18d2b1857e804bb4a"},{"version":"f2554547dfe3281b043bad42a7bff6ecfb24d1b939c3a90481d41cc62b9df4c5","signature":"bd56bdf2985d2fe92c818b5d07eb9e1f1974ad51742ec3b723c541906548485b"},{"version":"b31ccd1f7b7572805fdc45d6b096ff78dabe878e32fbbd3c210ce2cc0f92860a","signature":"1e72bfc8cf4d4092387607feb51e47d87fff7a1e8f4dfae18188100379c4c519"},{"version":"5bf5a18ffae152ee68871de3564ed204815e4f483b70235429ad8b730d9841b3","signature":"58847934b8d6b6beeec9394c2b7870c591e786df8bdcce041790aa420e8ca7b4"},{"version":"952e88b08fe2386d7c77c8b5e6d2027a40f0fa44a96fcb68419aa0ccc5b0fa22","signature":"2ddaa5786d564d6a72770dad8cc33de09fac84d0969439b3ee87a499e42decc8"},{"version":"1bafa0be277d83039902d00d06e830b6d157f7f5b369f5147ef6894b0e868b90","signature":"d06ae40f78248c0ca5b29676305a440dc62395c682d4d2e2ca7c4a75a1598903"},{"version":"4d683891f9beea0bb529c714c645275e91fb84282b867484766bb0ceda52ff7c","signature":"3d6dfc7d3e9f4af5cef7baa5c0d1841e25209f7f836033cc00aeb60244f24333"},"4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",{"version":"32ddf2b046fa7269050f64a87f1f3d2db10b92ad6302460681915af1207b1222","affectsGlobalScope":true},"c2b5085f47e41d6940bbc5b0d3bd7cc0037c752efb18aecd243c9cf83ad0c0b7","3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b","9b2a8f604e7c0482a9061755f00b287cc99bd8718dc82d8207dd74c599b6dc43","d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",{"version":"1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7","affectsGlobalScope":true},"3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3","50ae84dc0183f9f69b4d0933e240fb76cc77fddb2ec223dd070d12420b6ccfa6","b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45","4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",{"version":"60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05","affectsGlobalScope":true},{"version":"588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c","affectsGlobalScope":true},"ae064ed4f855716b7ff348639ddcd6a6d354a72fae82f506608a7dc9266aa24c","8e63e656267f767e6c15b47776f641d30ef29690581ab9bdddff5b83885d1a43","53d2c24a3cbc00a88ebaf8ab8e1b6e206bc3a6647d544f877241684ea3d484e3","ecee890ff04b70d8e8815fb753c20f24f95203426267a577823d375009c1ace7","0ce99c641ea20b0c0c09d093fc28f18f5ab31dc80033707a1ac3154399de2559","7dc9ed91e245cf0c4f8add7f6845d0cb08cceec4408ce3398c51e1f6dd7679ec","44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d","d79fda68cbfb361c4ee9cd9ea169babb65887534d64017726cd01f54783d20a5","1606ea615c0a5ea9f5c1376a33e34c0e1112e8dee31a5b3b8a74ce781893aa6f","9fef9de633d01cb7f01f68195626a890ededd25cf96a1e785617d08c8668230d","4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",{"version":"ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5","affectsGlobalScope":true},"4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a","9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e","f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0","e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7","c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc","874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09","6c903bceaf3f3bc04f2d4c7dcd89ce9fb148b3ba0a5f5408d8f6de2b7eecc7ea","605c24042a348b033b30121cff64380eb5d6d82853c5608f1f94ef72385cf5c9","23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779","4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",{"version":"eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d","affectsGlobalScope":true},"7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d","a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd","4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e","3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13","0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb","22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"79d679a1d56574cc5cef92be1f0e5e8fb4af62fb55933b236670a0e0a23c83f6","89ccbe04e737ce613f5f04990271cfa84901446350b8551b0555ddf19319723b","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","ea5aa4d1e53916a4aaf9d7e03203dd74544bb13c0d35b0bd7a64b31a5c086d0f","52a2350f36cdad787e4b6342abf62282e7c7bafcdd954c538f0e75adeb736a5e","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a"],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":true,"outDir":"./","sourceMap":true,"strict":true,"target":2},"fileIdsList":[[115,132,135,146,150],[106],[103],[105],[106,111],[107,115,116,123,132],[107,108,115,123],[109,139],[110,111,116,124],[111,132],[112,113,115,123],[113],[114,115],[115],[115,116,117,132,138],[116,117],[118,123,132,138],[115,116,118,119,123,132,135,138],[118,120,132,135,138],[103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145],[115,121],[122,138],[113,115,123,132],[124],[125],[105,126],[127,137],[128],[129],[115,130],[130,131,139,141],[115,132],[133],[134],[123,132,135],[136],[123,137],[129,138],[139],[132,140],[141],[142],[115,117,132,138,141,143],[132,144],[100],[97,98,99],[96],[71],[72],[74],[71,74,78],[74,75,76,77,78,79,80,81,82,83,84,85],[74,77],[87,88,89],[73,74,86,90,94,95],[91,92,93],[64,66,71,96,101],[42,96],[44],[41],[42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63],[44,96],[41,43,64,66,67,68,69,70],[65],[68,96]],"referencedMap":[[151,1],[150,2],[103,3],[105,4],[106,5],[107,6],[108,7],[109,8],[110,9],[111,10],[112,11],[113,12],[114,13],[115,14],[116,15],[117,16],[118,17],[119,18],[120,19],[146,20],[121,21],[122,22],[123,23],[124,24],[125,25],[126,26],[127,27],[128,28],[129,29],[130,30],[131,31],[132,32],[133,33],[134,34],[135,35],[136,36],[137,37],[138,38],[139,39],[140,40],[141,41],[142,42],[143,43],[144,44],[101,45],[100,46],[98,47],[72,48],[73,49],[75,50],[76,50],[79,51],[86,52],[80,50],[81,50],[82,50],[84,50],[83,50],[78,53],[85,50],[87,50],[90,54],[88,50],[89,50],[96,55],[93,50],[94,56],[91,50],[92,50],[102,57],[43,58],[68,47],[61,59],[45,59],[46,59],[47,59],[62,59],[49,59],[48,59],[44,60],[42,48],[64,61],[50,59],[53,59],[54,59],[55,59],[56,59],[57,59],[58,59],[59,59],[63,59],[52,59],[60,62],[71,63],[66,64],[69,65]],"exportedModulesMap":[[151,1],[150,2],[103,3],[105,4],[106,5],[107,6],[108,7],[109,8],[110,9],[111,10],[112,11],[113,12],[114,13],[115,14],[116,15],[117,16],[118,17],[119,18],[120,19],[146,20],[121,21],[122,22],[123,23],[124,24],[125,25],[126,26],[127,27],[128,28],[129,29],[130,30],[131,31],[132,32],[133,33],[134,34],[135,35],[136,36],[137,37],[138,38],[139,39],[140,40],[141,41],[142,42],[143,43],[144,44],[101,45],[100,46],[98,47],[72,48],[73,49],[75,50],[76,50],[79,51],[86,52],[80,50],[81,50],[82,50],[84,50],[83,50],[78,53],[85,50],[87,50],[90,54],[88,50],[89,50],[96,55],[93,50],[94,56],[91,50],[92,50],[102,57],[43,58],[68,47],[61,59],[45,59],[46,59],[47,59],[62,59],[49,59],[48,59],[44,60],[42,48],[64,61],[50,59],[53,59],[54,59],[55,59],[56,59],[57,59],[58,59],[59,59],[63,59],[52,59],[60,62],[71,63],[66,64],[69,65]],"semanticDiagnosticsPerFile":[147,148,151,152,150,149,103,105,106,107,108,109,110,111,112,113,114,115,116,117,104,145,118,119,120,146,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,7,33,38,39,34,35,36,37,1,40,101,97,99,100,98,72,73,75,76,79,86,80,81,82,84,83,78,85,77,74,87,90,88,89,96,93,94,91,92,95,102,70,43,68,61,45,46,47,62,49,48,44,42,64,50,51,53,54,55,56,57,58,59,63,52,60,41,71,66,65,67,69]},"version":"4.7.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@budibase/types",
3
- "version": "1.2.58",
3
+ "version": "1.2.59-alpha.0",
4
4
  "description": "Budibase types",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -17,5 +17,5 @@
17
17
  "rimraf": "3.0.2",
18
18
  "typescript": "4.7.3"
19
19
  },
20
- "gitHead": "2922b47620173f41097d36b9dc5b1c0f8f7b063a"
20
+ "gitHead": "365df003a72dfe4de8575334b5302ccbf6b2ce4f"
21
21
  }
@@ -0,0 +1,5 @@
1
+ export interface APIError {
2
+ message: string
3
+ status: number
4
+ error?: any
5
+ }
@@ -1 +1,3 @@
1
1
  export * from "./analytics"
2
+ export * from "./user"
3
+ export * from "./errors"
@@ -0,0 +1,43 @@
1
+ import { User } from "../../documents"
2
+
3
+ export interface CreateUserResponse {
4
+ _id: string
5
+ _rev: string
6
+ email: string
7
+ }
8
+
9
+ export interface BulkCreateUsersRequest {
10
+ users: User[]
11
+ groups: any[]
12
+ }
13
+
14
+ export interface UserDetails {
15
+ _id: string
16
+ email: string
17
+ }
18
+
19
+ export interface BulkCreateUsersResponse {
20
+ successful: UserDetails[]
21
+ unsuccessful: { email: string; reason: string }[]
22
+ }
23
+
24
+ export interface BulkDeleteUsersRequest {
25
+ userIds: string[]
26
+ }
27
+
28
+ export interface BulkDeleteUsersResponse {
29
+ successful: UserDetails[]
30
+ unsuccessful: { _id: string; email: string; reason: string }[]
31
+ }
32
+
33
+ export interface InviteUserRequest {
34
+ email: string
35
+ userInfo: any
36
+ }
37
+
38
+ export type InviteUsersRequest = InviteUserRequest[]
39
+
40
+ export interface InviteUsersResponse {
41
+ successful: { email: string }[]
42
+ unsuccessful: { email: string; reason: string }[]
43
+ }
@@ -14,14 +14,11 @@ export interface App extends Document {
14
14
  tenantId: string
15
15
  status: string
16
16
  theme?: string
17
- customTheme?: {
18
- buttonBorderRadius?: string
19
- primaryColor?: string
20
- primaryColorHover?: string
21
- }
17
+ customTheme?: AppCustomTheme
22
18
  revertableVersion?: string
23
19
  navigation?: AppNavigation
24
20
  automationErrors?: AppMetadataErrors
21
+ icon?: AppIcon
25
22
  }
26
23
 
27
24
  export interface AppInstance {
@@ -47,3 +44,18 @@ export interface AppNavigationLink {
47
44
  id?: string
48
45
  roleId?: string
49
46
  }
47
+
48
+ export interface AppCustomTheme {
49
+ buttonBorderRadius?: string
50
+ primaryColor?: string
51
+ primaryColorHover?: string
52
+
53
+ // Used to exist before new design UI
54
+ navTextColor?: string
55
+ navBackground?: string
56
+ }
57
+
58
+ export interface AppIcon {
59
+ name: string
60
+ color: string
61
+ }
@@ -1,3 +1,5 @@
1
1
  import { Document } from "../document"
2
2
 
3
- export interface Layout extends Document {}
3
+ export interface Layout extends Document {
4
+ props: any
5
+ }
@@ -1,7 +1,7 @@
1
1
  import { Document } from "../document"
2
2
 
3
3
  export interface Screen extends Document {
4
- layoutId: string
4
+ layoutId?: string
5
5
  showNavigation?: boolean
6
6
  width?: string
7
7
  routing: {
@@ -15,8 +15,26 @@ export interface User extends Document {
15
15
  status?: string
16
16
  createdAt?: number // override the default createdAt behaviour - users sdk historically set this to Date.now()
17
17
  userGroups?: string[]
18
+ forceResetPassword?: boolean
18
19
  }
19
20
 
20
21
  export interface UserRoles {
21
22
  [key: string]: string
22
23
  }
24
+
25
+ // utility types
26
+
27
+ export interface BuilderUser extends User {
28
+ builder: {
29
+ global: boolean
30
+ }
31
+ }
32
+
33
+ export interface AdminUser extends User {
34
+ admin: {
35
+ global: boolean
36
+ }
37
+ builder: {
38
+ global: boolean
39
+ }
40
+ }
@@ -1,19 +1,20 @@
1
1
  import { Document } from "../document"
2
- import { User } from "./user"
2
+
3
3
  export interface UserGroup extends Document {
4
4
  name: string
5
5
  icon: string
6
6
  color: string
7
- users: groupUser[]
7
+ users: GroupUser[]
8
8
  apps: string[]
9
9
  roles: UserGroupRoles
10
10
  createdAt?: number
11
11
  }
12
12
 
13
- export interface groupUser {
13
+ export interface GroupUser {
14
14
  _id: string
15
- email: string[]
15
+ email: string
16
16
  }
17
+
17
18
  export interface UserGroupRoles {
18
19
  [key: string]: string
19
20
  }
@@ -3,3 +3,4 @@ export * from "./app"
3
3
  export * from "./global"
4
4
  export * from "./platform"
5
5
  export * from "./document"
6
+ export * from "./pouch"
@@ -0,0 +1,5 @@
1
+ import { Document } from "../document"
2
+
3
+ export interface AccountMetadata extends Document {
4
+ email: string
5
+ }
@@ -1 +1,3 @@
1
1
  export * from "./info"
2
+ export * from "./users"
3
+ export * from "./accounts"
@@ -0,0 +1,9 @@
1
+ import { Document } from "../document"
2
+
3
+ /**
4
+ * doc id is user email
5
+ */
6
+ export interface PlatformUserByEmail extends Document {
7
+ tenantId: string
8
+ userId: string
9
+ }
@@ -0,0 +1,26 @@
1
+ export interface RowValue {
2
+ rev: string
3
+ deleted: boolean
4
+ }
5
+
6
+ export interface RowResponse<T> {
7
+ id: string
8
+ key: string
9
+ error: string
10
+ value: RowValue
11
+ doc: T
12
+ }
13
+
14
+ export interface AllDocsResponse<T> {
15
+ offset: number
16
+ total_rows: number
17
+ rows: RowResponse<T>[]
18
+ }
19
+
20
+ export type BulkDocsResponse = BulkDocResponse[]
21
+
22
+ interface BulkDocResponse {
23
+ ok: boolean
24
+ id: string
25
+ rev: string
26
+ }
@@ -0,0 +1,5 @@
1
+ export interface AuthToken {
2
+ userId: string
3
+ tenantId: string
4
+ sessionId: string
5
+ }
@@ -2,12 +2,12 @@ import { BaseEvent } from "./event"
2
2
 
3
3
  export interface ScreenCreatedEvent extends BaseEvent {
4
4
  screenId: string
5
- layoutId: string
5
+ layoutId?: string
6
6
  roleId: string
7
7
  }
8
8
 
9
9
  export interface ScreenDeletedEvent extends BaseEvent {
10
10
  screenId: string
11
- layoutId: string
11
+ layoutId?: string
12
12
  roleId: string
13
13
  }
package/src/sdk/index.ts CHANGED
@@ -5,3 +5,4 @@ export * from "./licensing"
5
5
  export * from "./migrations"
6
6
  export * from "./datasources"
7
7
  export * from "./search"
8
+ export * from "./auth"
package/src/sdk/search.ts CHANGED
@@ -31,7 +31,13 @@ export interface SearchFilters {
31
31
  [key: string]: any[]
32
32
  }
33
33
  contains?: {
34
- [key: string]: any
34
+ [key: string]: any[]
35
+ }
36
+ notContains?: {
37
+ [key: string]: any[]
38
+ }
39
+ containsAny?: {
40
+ [key: string]: any[]
35
41
  }
36
42
  }
37
43