@things-factory/operato-ecs 7.0.1-alpha.9 → 7.0.1-alpha.90
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/_index.html +6 -2
- package/client/bootstrap.js +24 -23
- package/client/themes/app-theme.css +19 -3
- package/client/themes/grist-theme.css +3 -1
- package/client/themes/layout-theme.css +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +27 -27
- package/views/auth-page.html +3 -1
- package/views/public/home.html +4 -2
package/_index.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
<!
|
1
|
+
<!doctype html>
|
2
2
|
<html lang="en">
|
3
3
|
<head>
|
4
4
|
<meta charset="utf-8" />
|
@@ -52,6 +52,10 @@
|
|
52
52
|
<!-- Performance tip: hint to the browser to start the handshake for the fonts site -->
|
53
53
|
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
|
54
54
|
<link href="/node_modules/@material-design-icons/font/index.css" rel="stylesheet" />
|
55
|
+
<link href="/node_modules/material-symbols/index.css" rel="stylesheet" />
|
56
|
+
<link href="/node_modules/@fontsource/roboto/index.css" rel="stylesheet" />
|
57
|
+
<link rel="stylesheet" href="/theme.css" />
|
58
|
+
|
55
59
|
<style>
|
56
60
|
html,
|
57
61
|
body {
|
@@ -78,7 +82,7 @@
|
|
78
82
|
}
|
79
83
|
</script>
|
80
84
|
</head>
|
81
|
-
<body>
|
85
|
+
<body class="light">
|
82
86
|
<things-app></things-app>
|
83
87
|
<noscript> Please enable JavaScript to view this website. </noscript>
|
84
88
|
<!-- Load webcomponents-loader.js to check and load any polyfills your browser needs -->
|
package/client/bootstrap.js
CHANGED
@@ -5,17 +5,18 @@ import '@things-factory/setting-ui' /* secure-iplist-setting-let */
|
|
5
5
|
|
6
6
|
import { html } from 'lit-html'
|
7
7
|
|
8
|
-
import {
|
9
|
-
import { auth, hasPrivilege } from '@things-factory/auth-base/dist-client'
|
10
|
-
import { setAuthManagementMenus } from '@things-factory/auth-ui'
|
11
|
-
import { APPEND_APP_TOOL } from '@things-factory/apptool-base'
|
12
|
-
import { setupAppToolPart } from '@things-factory/apptool-ui'
|
13
|
-
import { setupMenuPart, updateMenuTemplate } from '@things-factory/lite-menu'
|
14
|
-
import { setupContextUIPart } from '@things-factory/context-ui'
|
15
|
-
import { ADD_MORENDA } from '@things-factory/more-base'
|
16
|
-
import { ADD_SETTING } from '@things-factory/setting-base'
|
17
|
-
import { navigate, store } from '@things-factory/shell'
|
8
|
+
import { navigate, store } from '@operato/shell'
|
18
9
|
import { appendViewpart, toggleOverlay, TOOL_POSITION, VIEWPART_POSITION } from '@operato/layout'
|
10
|
+
import { registerDefaultGroups } from '@operato/board/register-default-groups.js'
|
11
|
+
|
12
|
+
import { hasPrivilege } from '@things-factory/auth-base/dist-client'
|
13
|
+
import { setAuthManagementMenus } from '@things-factory/auth-ui/dist-client'
|
14
|
+
import { APPEND_APP_TOOL } from '@things-factory/apptool-base/client'
|
15
|
+
import { setupAppToolPart } from '@things-factory/apptool-ui/dist-client'
|
16
|
+
import { setupMenuPart, updateMenuTemplate } from '@things-factory/lite-menu/dist-client'
|
17
|
+
import { setupContextUIPart } from '@things-factory/context-ui/dist-client'
|
18
|
+
import { ADD_MORENDA } from '@things-factory/more-base/client'
|
19
|
+
import { ADD_SETTING } from '@things-factory/setting-base/dist-client'
|
19
20
|
|
20
21
|
console.log(
|
21
22
|
`%c
|
@@ -53,7 +54,7 @@ export default async function bootstrap() {
|
|
53
54
|
store.dispatch({
|
54
55
|
type: ADD_MORENDA,
|
55
56
|
morenda: {
|
56
|
-
icon: html` <
|
57
|
+
icon: html` <md-icon>view_list</md-icon> `,
|
57
58
|
name: html` <ox-i18n msgid="text.addon-menu management"></ox-i18n> `,
|
58
59
|
action: () => {
|
59
60
|
navigate('addon-menu-setting')
|
@@ -66,7 +67,7 @@ export default async function bootstrap() {
|
|
66
67
|
store.dispatch({
|
67
68
|
type: ADD_MORENDA,
|
68
69
|
morenda: {
|
69
|
-
icon: html` <
|
70
|
+
icon: html` <md-icon>settings</md-icon> `,
|
70
71
|
name: html` <ox-i18n msgid="label.setting"></ox-i18n> `,
|
71
72
|
action: () => {
|
72
73
|
navigate('setting')
|
@@ -81,7 +82,7 @@ export default async function bootstrap() {
|
|
81
82
|
store.dispatch({
|
82
83
|
type: ADD_MORENDA,
|
83
84
|
morenda: {
|
84
|
-
icon: html` <
|
85
|
+
icon: html` <md-icon>vpn_key</md-icon> `,
|
85
86
|
name: html` <ox-i18n msgid="text.oauth2-clients"></ox-i18n> `,
|
86
87
|
action: () => {
|
87
88
|
navigate('oauth2-clients')
|
@@ -94,7 +95,7 @@ export default async function bootstrap() {
|
|
94
95
|
store.dispatch({
|
95
96
|
type: ADD_MORENDA,
|
96
97
|
morenda: {
|
97
|
-
icon: html` <
|
98
|
+
icon: html` <md-icon>font_download</md-icon> `,
|
98
99
|
name: html` <ox-i18n msgid="menu.fonts"></ox-i18n> `,
|
99
100
|
action: () => {
|
100
101
|
navigate('font-list')
|
@@ -105,7 +106,7 @@ export default async function bootstrap() {
|
|
105
106
|
store.dispatch({
|
106
107
|
type: ADD_MORENDA,
|
107
108
|
morenda: {
|
108
|
-
icon: html` <
|
109
|
+
icon: html` <md-icon>attachment</md-icon> `,
|
109
110
|
name: html` <ox-i18n msgid="menu.attachments"></ox-i18n> `,
|
110
111
|
action: () => {
|
111
112
|
navigate('attachment-list')
|
@@ -116,7 +117,7 @@ export default async function bootstrap() {
|
|
116
117
|
store.dispatch({
|
117
118
|
type: ADD_MORENDA,
|
118
119
|
morenda: {
|
119
|
-
icon: html` <
|
120
|
+
icon: html` <md-icon>dvr</md-icon> `,
|
120
121
|
name: html` <ox-i18n msgid="menu.board-list"></ox-i18n> `,
|
121
122
|
action: () => {
|
122
123
|
navigate('board-list')
|
@@ -127,7 +128,7 @@ export default async function bootstrap() {
|
|
127
128
|
store.dispatch({
|
128
129
|
type: ADD_MORENDA,
|
129
130
|
morenda: {
|
130
|
-
icon: html` <
|
131
|
+
icon: html` <md-icon>airplay</md-icon> `,
|
131
132
|
name: html` <ox-i18n msgid="menu.play-groups"></ox-i18n> `,
|
132
133
|
action: () => {
|
133
134
|
navigate('play-list')
|
@@ -140,7 +141,7 @@ export default async function bootstrap() {
|
|
140
141
|
store.dispatch({
|
141
142
|
type: ADD_MORENDA,
|
142
143
|
morenda: {
|
143
|
-
icon: html` <
|
144
|
+
icon: html` <md-icon>device_hub</md-icon> `,
|
144
145
|
name: html` <ox-i18n msgid="text.connection"></ox-i18n> `,
|
145
146
|
action: () => {
|
146
147
|
navigate('connection')
|
@@ -151,7 +152,7 @@ export default async function bootstrap() {
|
|
151
152
|
store.dispatch({
|
152
153
|
type: ADD_MORENDA,
|
153
154
|
morenda: {
|
154
|
-
icon: html` <
|
155
|
+
icon: html` <md-icon>format_list_numbered</md-icon> `,
|
155
156
|
name: html` <ox-i18n msgid="text.scenario"></ox-i18n> `,
|
156
157
|
action: () => {
|
157
158
|
navigate('scenario')
|
@@ -162,7 +163,7 @@ export default async function bootstrap() {
|
|
162
163
|
store.dispatch({
|
163
164
|
type: ADD_MORENDA,
|
164
165
|
morenda: {
|
165
|
-
icon: html` <
|
166
|
+
icon: html` <md-icon>hub</md-icon> `,
|
166
167
|
name: html` <ox-i18n msgid="text.integration analysis"></ox-i18n> (beta)`,
|
167
168
|
action: () => {
|
168
169
|
navigate('integration-analysis')
|
@@ -175,7 +176,7 @@ export default async function bootstrap() {
|
|
175
176
|
store.dispatch({
|
176
177
|
type: ADD_MORENDA,
|
177
178
|
morenda: {
|
178
|
-
icon: html` <
|
179
|
+
icon: html` <md-icon>app_registration</md-icon> `,
|
179
180
|
name: html` <ox-i18n msgid="title.state-register"></ox-i18n> `,
|
180
181
|
action: () => {
|
181
182
|
navigate('state-register-page')
|
@@ -187,7 +188,7 @@ export default async function bootstrap() {
|
|
187
188
|
store.dispatch({
|
188
189
|
type: ADD_MORENDA,
|
189
190
|
morenda: {
|
190
|
-
icon: html` <
|
191
|
+
icon: html` <md-icon>extension</md-icon> `,
|
191
192
|
name: html` <ox-i18n msgid="text.api-sandbox"></ox-i18n> `,
|
192
193
|
action: () => {
|
193
194
|
navigate('api-swagger')
|
@@ -198,7 +199,7 @@ export default async function bootstrap() {
|
|
198
199
|
// store.dispatch({
|
199
200
|
// type: ADD_MORENDA,
|
200
201
|
// morenda: {
|
201
|
-
// icon: html` <
|
202
|
+
// icon: html` <md-icon>help</md-icon> `,
|
202
203
|
// name: html` <ox-i18n msgid="text.help"></ox-i18n> `,
|
203
204
|
// action: () => {
|
204
205
|
// navigate('help')
|
@@ -83,17 +83,33 @@ body {
|
|
83
83
|
--mdc-button-outline-width: 1px;
|
84
84
|
--mdc-button-horizontal-padding: 16px;
|
85
85
|
|
86
|
+
--md-fab-container-color: var(--primary-color);
|
87
|
+
--md-fab-icon-color: var(--focus-color);
|
88
|
+
|
89
|
+
--md-theme-on-primary: var(--theme-white-color);
|
90
|
+
--md-theme-primary: var(--secondary-text-color);
|
91
|
+
--md-theme-on-secondary: var(--theme-white-color);
|
92
|
+
--md-theme-secondary: var(--primary-color);
|
93
|
+
--md-button-outline-color: var(--primary-color);
|
94
|
+
--md-danger-button-primary-color: var(--status-danger-color);
|
95
|
+
--md-danger-button-outline-color: var(--status-danger-color);
|
96
|
+
--md-button-outline-width: 1px;
|
97
|
+
--md-button-horizontal-padding: 16px;
|
98
|
+
|
86
99
|
/* button style */
|
87
100
|
--button-background-color: #fafbfc;
|
88
101
|
--button-border: var(--border-dark-color);
|
89
102
|
--button-border-radius: var(--border-radius);
|
90
103
|
--button-margin: var(--margin-default) var(--margin-default) var(--margin-default) 0;
|
91
|
-
--button-padding: var(--padding-
|
104
|
+
--button-padding: calc(var(--padding-narrow) * 1.5) var(--padding-wide);
|
92
105
|
--button-color: var(--secondary-color);
|
93
|
-
--button-font:
|
106
|
+
--button-font: 600 var(--fontsize-default) var(--theme-font);
|
94
107
|
--button-text-transform: capitalize;
|
95
108
|
--button-active-box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.2);
|
96
109
|
--button-activ-border: 1px solid var(--primary-color);
|
110
|
+
--button-activ-background-color: var(--primary-color);
|
111
|
+
--button-activ-color: var(--theme-white-color);
|
112
|
+
--iconbtn-padding: var(--padding-narrow);
|
97
113
|
|
98
114
|
--button-primary-background-color: var(--primary-color);
|
99
115
|
--button-primary-active-background-color: var(--status-success-color);
|
@@ -124,7 +140,7 @@ body {
|
|
124
140
|
--label-color: var(--secondary-color);
|
125
141
|
--label-text-transform: capitalize;
|
126
142
|
--input-margin: var(--margin-narrow) 0;
|
127
|
-
--input-padding:
|
143
|
+
--input-padding: 6px 2px;
|
128
144
|
--input-min-width: 200px;
|
129
145
|
--input-font: normal var(--fontsize-default) var(--theme-font);
|
130
146
|
--input-hint-font: normal var(--fontsize-small) var(--theme-font);
|
@@ -36,6 +36,8 @@ body {
|
|
36
36
|
--grid-header-filter-title-font: normal 12px var(--theme-font);
|
37
37
|
--grid-header-filter-title-icon-color: var(--primary-color);
|
38
38
|
|
39
|
+
--grid-body-bottom-border: 1px solid rgba(var(--secondary-color-rgb), 0.2);
|
40
|
+
|
39
41
|
--grid-gutter-padding: var(--padding-default) 0;
|
40
42
|
|
41
43
|
--grid-record-background-color: var(--theme-white-color);
|
@@ -143,7 +145,7 @@ body {
|
|
143
145
|
--record-view-footer-button-border-width: 0 0 0 1px;
|
144
146
|
--record-view-footer-button-font: 17px;
|
145
147
|
--record-view-footer-button-color: var(--theme-white-color);
|
146
|
-
--record-view-footer-iconbutton-size:
|
148
|
+
--record-view-footer-iconbutton-size: 28px;
|
147
149
|
--record-view-footer-focus-background: var(--primary-color);
|
148
150
|
|
149
151
|
--ox-grist-padding: var(--padding-default) var(--padding-default) 0 var(--padding-default);
|
@@ -55,7 +55,7 @@ body {
|
|
55
55
|
|
56
56
|
/* components - resize splitter style */
|
57
57
|
--splitter-background-color: rgba(0, 0, 0, 0.1);
|
58
|
-
--splitter-hover-background-color:
|
58
|
+
--splitter-hover-background-color: rgba(0, 0, 0, 0.1);
|
59
59
|
}
|
60
60
|
|
61
61
|
@media only screen and (max-width: 460px) {
|
@@ -1 +1 @@
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/lerna/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","../server/middlewares/index.ts","../server/index.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.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/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.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/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.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/@jest/expect-utils/build/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","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":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","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":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","63ee24e4a891725a4b60f0392844d8bb140746c4e3d07fe3c87fc04860e9e362","de41947a4e4d4476f386d9a8aca6957eebde0813eabe4b2cdabd03ecf7bd7dfe","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"7fd7fcbf021a5845bdd9397d4649fcf2fe17152d2098140fc723099a215d19ad","affectsGlobalScope":true},"df3389f71a71a38bc931aaf1ef97a65fada98f0a27f19dd12f8b8de2b0f4e461","d69a3298a197fe5d59edba0ec23b4abf2c8e7b8c6718eac97833633cd664e4c9",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"8b809082dfeffc8cc4f3b9c59f55c0ff52ba12f5ae0766cb5c35deee83b8552e","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","d4f9d3ae2fe1ae199e1c832cca2c44f45e0b305dfa2808afdd51249b6f4a5163","7525257b4aa35efc7a1bbc00f205a9a96c4e4ab791da90db41b77938c4e0c18e","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"9c611eff81287837680c1f4496daf9e737d6f3a1ff17752207814b8f8e1265af","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","b5d4e3e524f2eead4519c8e819eaf7fa44a27c22418eff1b7b2d0ebc5fdc510d","afb1701fd4be413a8a5a88df6befdd4510c30a31372c07a4138facf61594c66d","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"c07146dbbbd8b347241b5df250a51e48f2d7bef19b1e187b1a3f20c849988ff1","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"46755a4afc53df75f0bfce72259fb971daac826b0cdd8c4eaccad2755a817403","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7fa32887f8a97909fca35ebba3740f8caf8df146618d8fff957a3f89f67a2f6a","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"94c086dff8dbc5998749326bc69b520e8e4273fb5b7b58b50e0210e0885dfcde","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","21c56c6e8eeacef15f63f373a29fab6a2b36e4705be7a528aae8c51469e2737b",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"5ab630d466ac55baa6d32820378098404fc18ba9da6f7bc5df30c5dbb1cffae8","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":false,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":1,"noEmitOnError":true,"noImplicitAny":false,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":false,"target":4,"useDefineForClassFields":false},"fileIdsList":[[136],[138,141],[47],[83],[84,89,117],[85,96,97,104,114,125],[85,86,96,104],[87,126],[88,89,97,105],[89,114,122],[90,92,96,104],[83,91],[92,93],[96],[94,96],[83,96],[96,97,98,114,125],[96,97,98,111,114,117],[81,84,130],[92,96,99,104,114,125],[96,97,99,100,104,114,122,125],[99,101,114,122,125],[47,48,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,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],[96,102],[103,125,130],[92,96,104,114],[105],[106],[83,107],[108,124,130],[109],[110],[96,111,112],[111,113,126,128],[84,96,114,115,116,117],[84,114,116],[114,115],[117],[118],[83,114],[96,120,121],[120,121],[89,104,114,122],[123],[104,124],[84,99,110,125],[89,126],[114,127],[103,128],[129],[84,89,96,98,107,114,125,128,130],[114,131],[134,140],[138],[135,139],[137],[58,62,125],[58,114,125],[53],[55,58,122,125],[104,122],[133],[53,133],[55,58,104,125],[50,51,54,57,84,96,114,125],[50,56],[54,58,84,117,125,133],[84,133],[74,84,133],[52,53,133],[58],[52,53,54,55,56,57,58,59,60,62,63,64,65,66,67,68,69,70,71,72,73,75,76,77,78,79,80],[58,65,66],[56,58,66,67],[57],[50,53,58],[58,62,66,67],[62],[56,58,61,125],[50,55,56,58,62,65],[84,114],[53,58,74,84,130,133],[44,45],[44]],"referencedMap":[[137,1],[142,2],[47,3],[48,3],[83,4],[84,5],[85,6],[86,7],[87,8],[88,9],[89,10],[90,11],[91,12],[92,13],[93,13],[95,14],[94,15],[96,16],[97,17],[98,18],[82,19],[99,20],[100,21],[101,22],[133,23],[102,24],[103,25],[104,26],[105,27],[106,28],[107,29],[108,30],[109,31],[110,32],[111,33],[112,33],[113,34],[114,35],[116,36],[115,37],[117,38],[118,39],[119,40],[120,41],[121,42],[122,43],[123,44],[124,45],[125,46],[126,47],[127,48],[128,49],[129,50],[130,51],[131,52],[141,53],[139,54],[140,55],[138,56],[65,57],[72,58],[64,57],[79,59],[56,60],[55,61],[78,62],[73,63],[76,64],[58,65],[57,66],[53,67],[52,68],[75,69],[54,70],[59,71],[63,71],[81,72],[80,71],[67,73],[68,74],[70,75],[66,76],[69,77],[74,62],[61,78],[62,79],[71,80],[51,81],[77,82],[46,83],[45,84]],"exportedModulesMap":[[137,1],[142,2],[47,3],[48,3],[83,4],[84,5],[85,6],[86,7],[87,8],[88,9],[89,10],[90,11],[91,12],[92,13],[93,13],[95,14],[94,15],[96,16],[97,17],[98,18],[82,19],[99,20],[100,21],[101,22],[133,23],[102,24],[103,25],[104,26],[105,27],[106,28],[107,29],[108,30],[109,31],[110,32],[111,33],[112,33],[113,34],[114,35],[116,36],[115,37],[117,38],[118,39],[119,40],[120,41],[121,42],[122,43],[123,44],[124,45],[125,46],[126,47],[127,48],[128,49],[129,50],[130,51],[131,52],[141,53],[139,54],[140,55],[138,56],[65,57],[72,58],[64,57],[79,59],[56,60],[55,61],[78,62],[73,63],[76,64],[58,65],[57,66],[53,67],[52,68],[75,69],[54,70],[59,71],[63,71],[81,72],[80,71],[67,73],[68,74],[70,75],[66,76],[69,77],[74,62],[61,78],[62,79],[71,80],[51,81],[77,82],[46,83],[45,84]],"semanticDiagnosticsPerFile":[134,137,136,142,47,48,83,84,85,86,87,88,89,90,91,92,93,95,94,96,97,98,82,132,99,100,101,133,102,103,104,105,106,107,108,109,110,111,112,113,114,116,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,49,135,141,139,140,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,138,44,65,72,64,79,56,55,78,73,76,58,57,53,52,75,54,59,60,63,50,81,80,67,68,70,66,69,74,61,62,71,51,77,46,45]},"version":"4.9.5"}
|
1
|
+
{"program":{"fileNames":["../../../node_modules/lerna/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","../server/middlewares/index.ts","../server/index.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.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/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.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/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.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/@jest/expect-utils/build/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","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":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","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":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","63ee24e4a891725a4b60f0392844d8bb140746c4e3d07fe3c87fc04860e9e362","de41947a4e4d4476f386d9a8aca6957eebde0813eabe4b2cdabd03ecf7bd7dfe","d78c698fa755ef94e3af591883bfee3a330ffec36392e00aaacdff3541cf5382","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"6968359c8dbc693224fd1ea0b1f96b135f14d8eee3d6e23296d68c3a9da3ea00",{"version":"79d75a353f29d9f7fc63e879ccebe213baaaea26676fb3e47cc96cf221b27b4f","affectsGlobalScope":true},"dfdc7699360a0d512d7e31c69f75cb6a419cf415c98673e24499793170db5d6b","dcf46daa1e04481b1c2f360c7a77bf019885bd70353a92aa698b9c22b7fe3d6b",{"version":"033350619c2cfcbeab2a483f4b221e0866e17cc4ac514240d285d35c35eecf7c","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"b197fb2d5fa71cebc66e5d10e15c7d02f15fcd3194fbdaafeb964262582f2a82","affectsGlobalScope":true},"1a7f593d587f49ca97710c021c453ab1b95db5e39e58567f4af644f97a5fb0e0","dd4705d1d78af32c407e93e5df009962bed324599d6a5b2a9d661ba44dd99e43","3a02975d4a7034567425e529a0770f7f895ed605d2b576f7831668b7beea9fea","7525257b4aa35efc7a1bbc00f205a9a96c4e4ab791da90db41b77938c4e0c18e","cf87b355c4f531e98a9bba2b0e62d413b49b58b26bf8a9865e60a22d3af1fcd3",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"1a08fe5930473dcae34b831b3440cd51ff2c682cf03bd70e28812751dd1644dd","affectsGlobalScope":true},"6f3e00b838cf23f7837ffca5da88ae25f0a81742af9ccadce5cb85ac72050929","304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","cbcb993f1fa22b7769074eb09c1307756e6380659a2990d6f50cfd8943bd8333","55a93997681797056da069cfac92878bff4d2a35e61c1c16280ee0cba38702f2","ea25afcaf96904668f7eebc1b834f89b5b5e5acafd430c29990028a1aaa0bcbe","df981b2ce32930887db27eeae29e48b9b841e4ba0bbba1162ebed04c778cd7e1",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"3be96458790a77cb357856dab45d1cc8383ac63ba4e085f620b202fb62a6e1db","02d85d03fd4a4f63cba0b133f0e0192368dfeb4338bd33f87788a4f6302de873","bb3a0ce56babb71d7c208ed848b4aafe545e7a7e06304fc0c8cfe3ad328cab7a",{"version":"43bb766c0dc5f1150021f161aa6831eb2cc75dab278172408515cb6e47f697a9","affectsGlobalScope":true},{"version":"8bcf09ba67bd0ec12a9f1efc1e58e1ba2cb1ff78920ce6cf67ebfe6003c54b82","affectsGlobalScope":true},"13ce7518e39051544dd1e3124c185665adda05a5021676f2606c2c74ad2c964f","4ac5899be65d5e2cabe3aaf3dfc2cf7641e54dde23db198d9f683dfabe228145","124dacf89c97915479ed6ad81b09ba42fd40962d069c0642fed42e2d9719f2ba","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","ad06959073c066bb9543ef9c1dee37fc3140d2ecaae42b97bf4e27f2f03d6511","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","782abaae13e868dee4ea9c16d44499af251d112fba535c558d10ff5279b34678","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","98e7b7220dad76c509d584c9b7b1ec4dcbd7df5e3a2d37d28c54f74461ec0975",{"version":"c61b5fad633f25bb0de0f95612191c1df9a6671cd66f451507b5223bff41b50d","affectsGlobalScope":true},{"version":"d21966ba3284ade60cb94eb2c533ab5b2af7fd0b4b28462043f6ebcb8400bd21","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","b8e9e44ce8eba70af569523ff31d669cc239a93f548899a259f3224392a75e6c","005d1caa2a5d9bc096f75b598d0fd184bc848dd2665b050a17a17d5dc1ef652d","619735e4e221e1bf137ae3efa5330beee4a06039dccb876c822f9d8913a392da",{"version":"3560d0809b0677d77e39d0459ae6129c0e045cb3d43d1f345df06cf7ab7d6029","affectsGlobalScope":true},{"version":"5ab086d9457abbc69cca270e5475073f2e8eb35b2fb810c516400de7b7c7d575","affectsGlobalScope":true},"2a2fd53f2d963624b596fb720b390cbfe8d744e92cb55b48a8090a8fd42a302d","1f01c8fde66abc4ff6aed1db050a928b3bcb6f29bc89630a0d748a0649e14074","60223439b7ee9b26a08d527cacc8b34ea6c6741589ef4949f4669c9aeb97978e",{"version":"48fffe7824c2e8cf8c812f528c33d4c4f502767582083df35920a7f56fe794b3","affectsGlobalScope":true},"561bf7d1d3163db272980f9167b4b98f6a9ee8698c5955e9d9584e84088aad51",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"5ab630d466ac55baa6d32820378098404fc18ba9da6f7bc5df30c5dbb1cffae8","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":false,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":1,"noEmitOnError":true,"noImplicitAny":false,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":false,"target":4,"useDefineForClassFields":false},"fileIdsList":[[137],[139,142],[47],[83],[84,89,118],[85,96,97,104,115,126],[85,86,96,104],[87,127],[88,89,97,105],[89,115,123],[90,92,96,104],[83,91],[92,93],[96],[94,96],[83,96],[96,97,98,115,126],[96,97,98,111,115,118],[81,84,131],[92,96,99,104,115,126],[96,97,99,100,104,115,123,126],[99,101,115,123,126],[47,48,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,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],[96,102],[103,126,131],[92,96,104,115],[105],[106],[83,107],[104,105,108,125,131],[109],[110],[96,111,112],[111,113,127,129],[84,96,115,116,117,118],[84,115,117],[115,116],[118],[119],[83,115],[96,121,122],[121,122],[89,104,115,123],[124],[104,125],[84,99,110,126],[89,127],[115,128],[103,129],[130],[84,89,96,98,107,115,126,129,131],[115,132],[135,141],[139],[136,140],[138],[58,62,126],[58,115,126],[53],[55,58,123,126],[104,123],[134],[53,134],[55,58,104,126],[50,51,54,57,84,96,115,126],[50,56],[54,58,84,118,126,134],[84,134],[74,84,134],[52,53,134],[58],[52,53,54,55,56,57,58,59,60,62,63,64,65,66,67,68,69,70,71,72,73,75,76,77,78,79,80],[58,65,66],[56,58,66,67],[57],[50,53,58],[58,62,66,67],[62],[56,58,61,126],[50,55,56,58,62,65],[84,115],[53,58,74,84,131,134],[44,45],[44]],"referencedMap":[[138,1],[143,2],[47,3],[48,3],[83,4],[84,5],[85,6],[86,7],[87,8],[88,9],[89,10],[90,11],[91,12],[92,13],[93,13],[95,14],[94,15],[96,16],[97,17],[98,18],[82,19],[99,20],[100,21],[101,22],[134,23],[102,24],[103,25],[104,26],[105,27],[106,28],[107,29],[108,30],[109,31],[110,32],[111,33],[112,33],[113,34],[115,35],[117,36],[116,37],[118,38],[119,39],[120,40],[121,41],[122,42],[123,43],[124,44],[125,45],[126,46],[127,47],[128,48],[129,49],[130,50],[131,51],[132,52],[142,53],[140,54],[141,55],[139,56],[65,57],[72,58],[64,57],[79,59],[56,60],[55,61],[78,62],[73,63],[76,64],[58,65],[57,66],[53,67],[52,68],[75,69],[54,70],[59,71],[63,71],[81,72],[80,71],[67,73],[68,74],[70,75],[66,76],[69,77],[74,62],[61,78],[62,79],[71,80],[51,81],[77,82],[46,83],[45,84]],"exportedModulesMap":[[138,1],[143,2],[47,3],[48,3],[83,4],[84,5],[85,6],[86,7],[87,8],[88,9],[89,10],[90,11],[91,12],[92,13],[93,13],[95,14],[94,15],[96,16],[97,17],[98,18],[82,19],[99,20],[100,21],[101,22],[134,23],[102,24],[103,25],[104,26],[105,27],[106,28],[107,29],[108,30],[109,31],[110,32],[111,33],[112,33],[113,34],[115,35],[117,36],[116,37],[118,38],[119,39],[120,40],[121,41],[122,42],[123,43],[124,44],[125,45],[126,46],[127,47],[128,48],[129,49],[130,50],[131,51],[132,52],[142,53],[140,54],[141,55],[139,56],[65,57],[72,58],[64,57],[79,59],[56,60],[55,61],[78,62],[73,63],[76,64],[58,65],[57,66],[53,67],[52,68],[75,69],[54,70],[59,71],[63,71],[81,72],[80,71],[67,73],[68,74],[70,75],[66,76],[69,77],[74,62],[61,78],[62,79],[71,80],[51,81],[77,82],[46,83],[45,84]],"semanticDiagnosticsPerFile":[135,138,137,143,47,48,83,84,85,86,87,88,89,90,91,92,93,95,94,96,97,98,82,133,99,100,101,134,102,103,104,105,106,107,108,109,110,111,112,113,114,115,117,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,49,136,142,140,141,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,139,44,65,72,64,79,56,55,78,73,76,58,57,53,52,75,54,59,60,63,50,81,80,67,68,70,66,69,74,61,62,71,51,77,46,45]},"version":"4.9.5"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@things-factory/operato-ecs",
|
3
|
-
"version": "7.0.1-alpha.
|
3
|
+
"version": "7.0.1-alpha.90",
|
4
4
|
"main": "dist-server/index.js",
|
5
5
|
"browser": "client/index.js",
|
6
6
|
"things-factory": true,
|
@@ -55,33 +55,33 @@
|
|
55
55
|
"@operato/scene-switch": "^2.0.0-alpha.0",
|
56
56
|
"@operato/scene-table": "^2.0.0-alpha.0",
|
57
57
|
"@operato/scene-timer": "^2.0.0-alpha.0",
|
58
|
-
"@things-factory/api": "^7.0.1-alpha.
|
59
|
-
"@things-factory/apptool-ui": "^7.0.1-alpha.
|
60
|
-
"@things-factory/auth-ui": "^7.0.1-alpha.
|
61
|
-
"@things-factory/board-service": "^7.0.1-alpha.
|
62
|
-
"@things-factory/board-ui": "^7.0.1-alpha.
|
63
|
-
"@things-factory/context-ui": "^7.0.1-alpha.
|
64
|
-
"@things-factory/dashboard": "^7.0.1-alpha.
|
65
|
-
"@things-factory/export-ui": "^7.0.1-alpha.
|
66
|
-
"@things-factory/help": "^7.0.1-alpha.
|
67
|
-
"@things-factory/i18n-base": "^7.0.1-alpha.
|
68
|
-
"@things-factory/integration-melsec": "^7.0.1-alpha.
|
69
|
-
"@things-factory/integration-modbus": "^7.0.1-alpha.
|
70
|
-
"@things-factory/integration-opc": "^7.0.1-alpha.
|
71
|
-
"@things-factory/integration-ui": "^7.0.1-alpha.
|
72
|
-
"@things-factory/lite-menu": "^7.0.1-alpha.
|
73
|
-
"@things-factory/more-ui": "^7.0.1-alpha.
|
74
|
-
"@things-factory/notification": "^7.0.1-alpha.
|
75
|
-
"@things-factory/oauth2-client": "^7.0.1-alpha.
|
76
|
-
"@things-factory/print-ui": "^7.0.1-alpha.
|
77
|
-
"@things-factory/resource-ui": "^7.0.1-alpha.
|
78
|
-
"@things-factory/setting-base": "^7.0.1-alpha.
|
79
|
-
"@things-factory/setting-ui": "^7.0.1-alpha.
|
80
|
-
"@things-factory/shell": "^7.0.1-alpha.
|
81
|
-
"@things-factory/system": "^7.0.1-alpha.
|
58
|
+
"@things-factory/api": "^7.0.1-alpha.90",
|
59
|
+
"@things-factory/apptool-ui": "^7.0.1-alpha.90",
|
60
|
+
"@things-factory/auth-ui": "^7.0.1-alpha.90",
|
61
|
+
"@things-factory/board-service": "^7.0.1-alpha.90",
|
62
|
+
"@things-factory/board-ui": "^7.0.1-alpha.90",
|
63
|
+
"@things-factory/context-ui": "^7.0.1-alpha.90",
|
64
|
+
"@things-factory/dashboard": "^7.0.1-alpha.90",
|
65
|
+
"@things-factory/export-ui": "^7.0.1-alpha.90",
|
66
|
+
"@things-factory/help": "^7.0.1-alpha.90",
|
67
|
+
"@things-factory/i18n-base": "^7.0.1-alpha.90",
|
68
|
+
"@things-factory/integration-melsec": "^7.0.1-alpha.90",
|
69
|
+
"@things-factory/integration-modbus": "^7.0.1-alpha.90",
|
70
|
+
"@things-factory/integration-opc": "^7.0.1-alpha.90",
|
71
|
+
"@things-factory/integration-ui": "^7.0.1-alpha.90",
|
72
|
+
"@things-factory/lite-menu": "^7.0.1-alpha.90",
|
73
|
+
"@things-factory/more-ui": "^7.0.1-alpha.90",
|
74
|
+
"@things-factory/notification": "^7.0.1-alpha.90",
|
75
|
+
"@things-factory/oauth2-client": "^7.0.1-alpha.90",
|
76
|
+
"@things-factory/print-ui": "^7.0.1-alpha.90",
|
77
|
+
"@things-factory/resource-ui": "^7.0.1-alpha.90",
|
78
|
+
"@things-factory/setting-base": "^7.0.1-alpha.90",
|
79
|
+
"@things-factory/setting-ui": "^7.0.1-alpha.90",
|
80
|
+
"@things-factory/shell": "^7.0.1-alpha.90",
|
81
|
+
"@things-factory/system": "^7.0.1-alpha.90"
|
82
82
|
},
|
83
83
|
"devDependencies": {
|
84
|
-
"@things-factory/builder": "^7.0.1-alpha.
|
84
|
+
"@things-factory/builder": "^7.0.1-alpha.71"
|
85
85
|
},
|
86
|
-
"gitHead": "
|
86
|
+
"gitHead": "79086a82c81dadca6c105a37fa91a2cd34a74183"
|
87
87
|
}
|
package/views/auth-page.html
CHANGED
@@ -53,6 +53,8 @@
|
|
53
53
|
<!-- Performance tip: hint to the browser to start the handshake for the fonts site -->
|
54
54
|
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
|
55
55
|
<link href="/node_modules/@material-design-icons/font/index.css" rel="stylesheet" />
|
56
|
+
<link href="/node_modules/material-symbols/index.css" rel="stylesheet" />
|
57
|
+
<link href="/node_modules/@fontsource/roboto/index.css" rel="stylesheet" />
|
56
58
|
<link rel="stylesheet" href="/theme.css" />
|
57
59
|
|
58
60
|
<style>
|
@@ -78,7 +80,7 @@
|
|
78
80
|
<link rel="prefetch" href="/auth/forgot-password.js">
|
79
81
|
<link rel="prefetch" href="/auth/checkin.js">
|
80
82
|
</head>
|
81
|
-
<body>
|
83
|
+
<body class="light">
|
82
84
|
<<%- pageElement %> id="page"></<%- pageElement %>>
|
83
85
|
<noscript>
|
84
86
|
Please enable JavaScript to view this website.
|
package/views/public/home.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
<!
|
1
|
+
<!doctype html>
|
2
2
|
<html lang="en">
|
3
3
|
<head>
|
4
4
|
<meta charset="utf-8" />
|
@@ -52,6 +52,8 @@
|
|
52
52
|
<!-- Performance tip: hint to the browser to start the handshake for the fonts site -->
|
53
53
|
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
|
54
54
|
<link href="/node_modules/@material-design-icons/font/index.css" rel="stylesheet" />
|
55
|
+
<link href="/node_modules/material-symbols/index.css" rel="stylesheet" />
|
56
|
+
<link href="/node_modules/@fontsource/roboto/index.css" rel="stylesheet" />
|
55
57
|
<link rel="stylesheet" href="/theme.css" />
|
56
58
|
|
57
59
|
<style>
|
@@ -72,7 +74,7 @@
|
|
72
74
|
<!--- prefetch -->
|
73
75
|
<link rel="prefetch" href="/public/home.js" />
|
74
76
|
</head>
|
75
|
-
<body>
|
77
|
+
<body class="light">
|
76
78
|
<home-page id="page"></home-page>
|
77
79
|
<noscript> Please enable JavaScript to view this website. </noscript>
|
78
80
|
<!-- Load webcomponents-loader.js to check and load any polyfills your browser needs -->
|