openc3 5.8.1 → 5.9.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.
- checksums.yaml +4 -4
- data/ext/openc3/ext/crc/crc.c +1 -1
- data/lib/openc3/api/cmd_api.rb +1 -1
- data/lib/openc3/microservices/decom_microservice.rb +10 -2
- data/lib/openc3/microservices/reaction_microservice.rb +152 -81
- data/lib/openc3/microservices/timeline_microservice.rb +1 -1
- data/lib/openc3/microservices/trigger_group_microservice.rb +188 -118
- data/lib/openc3/migrations/20230615000000_autonomic.rb +86 -0
- data/lib/openc3/models/activity_model.rb +2 -4
- data/lib/openc3/models/microservice_model.rb +6 -2
- data/lib/openc3/models/model.rb +1 -3
- data/lib/openc3/models/reaction_model.rb +124 -119
- data/lib/openc3/models/scope_model.rb +15 -3
- data/lib/openc3/models/timeline_model.rb +1 -3
- data/lib/openc3/models/trigger_group_model.rb +16 -50
- data/lib/openc3/models/trigger_model.rb +86 -123
- data/lib/openc3/packets/json_packet.rb +2 -3
- data/lib/openc3/script/commands.rb +10 -0
- data/lib/openc3/script/script.rb +1 -0
- data/lib/openc3/top_level.rb +0 -12
- data/lib/openc3/utilities/authorization.rb +1 -1
- data/lib/openc3/utilities/bucket_require.rb +5 -1
- data/lib/openc3/utilities/bucket_utilities.rb +4 -1
- data/lib/openc3/utilities/cli_generator.rb +56 -4
- data/lib/openc3/utilities/ruby_lex_utils.rb +4 -0
- data/lib/openc3/version.rb +6 -6
- data/templates/plugin/README.md +54 -4
- data/templates/plugin/Rakefile +31 -3
- data/templates/tool_angular/.editorconfig +16 -0
- data/templates/tool_angular/.gitignore +44 -0
- data/templates/tool_angular/.vscode/extensions.json +4 -0
- data/templates/tool_angular/.vscode/launch.json +20 -0
- data/templates/tool_angular/.vscode/tasks.json +42 -0
- data/templates/tool_angular/angular.json +111 -0
- data/templates/tool_angular/extra-webpack.config.js +8 -0
- data/templates/tool_angular/package.json +47 -0
- data/templates/tool_angular/src/app/app-routing.module.ts +15 -0
- data/templates/tool_angular/src/app/app.component.html +31 -0
- data/templates/tool_angular/src/app/app.component.scss +26 -0
- data/templates/tool_angular/src/app/app.component.spec.ts +29 -0
- data/templates/tool_angular/src/app/app.component.ts +51 -0
- data/templates/tool_angular/src/app/app.module.ts +30 -0
- data/templates/tool_angular/src/app/custom-overlay-container.ts +17 -0
- data/templates/tool_angular/src/app/empty-route/empty-route.component.ts +7 -0
- data/templates/tool_angular/src/app/openc3-api.d.ts +1 -0
- data/templates/tool_angular/src/assets/.gitkeep +0 -0
- data/templates/tool_angular/src/environments/environment.prod.ts +3 -0
- data/templates/tool_angular/src/environments/environment.ts +16 -0
- data/templates/tool_angular/src/favicon.ico +0 -0
- data/templates/tool_angular/src/index.html +13 -0
- data/templates/tool_angular/src/main.single-spa.ts +40 -0
- data/templates/tool_angular/src/single-spa/asset-url.ts +12 -0
- data/templates/tool_angular/src/single-spa/single-spa-props.ts +8 -0
- data/templates/tool_angular/src/styles.scss +1 -0
- data/templates/tool_angular/tsconfig.app.json +13 -0
- data/templates/tool_angular/tsconfig.json +33 -0
- data/templates/tool_angular/tsconfig.spec.json +14 -0
- data/templates/tool_angular/yarn.lock +8080 -0
- data/templates/tool_react/.eslintrc +7 -0
- data/templates/tool_react/.gitignore +72 -0
- data/templates/tool_react/.prettierignore +8 -0
- data/templates/tool_react/babel.config.json +29 -0
- data/templates/tool_react/jest.config.js +12 -0
- data/templates/tool_react/package.json +53 -0
- data/templates/tool_react/src/openc3-tool_name.js +24 -0
- data/templates/tool_react/src/root.component.js +88 -0
- data/templates/tool_react/src/root.component.test.js +9 -0
- data/templates/tool_react/webpack.config.js +27 -0
- data/templates/tool_react/yarn.lock +6854 -0
- data/templates/tool_svelte/.gitignore +72 -0
- data/templates/tool_svelte/.prettierignore +8 -0
- data/templates/tool_svelte/babel.config.js +12 -0
- data/templates/tool_svelte/build/smui.css +5 -0
- data/templates/tool_svelte/jest.config.js +9 -0
- data/templates/tool_svelte/package.json +46 -0
- data/templates/tool_svelte/rollup.config.js +72 -0
- data/templates/tool_svelte/src/App.svelte +42 -0
- data/templates/tool_svelte/src/App.test.js +9 -0
- data/templates/tool_svelte/src/services/api.js +92 -0
- data/templates/tool_svelte/src/services/axios.js +85 -0
- data/templates/tool_svelte/src/services/cable.js +65 -0
- data/templates/tool_svelte/src/services/config-parser.js +199 -0
- data/templates/tool_svelte/src/services/openc3-api.js +647 -0
- data/templates/tool_svelte/src/theme/_smui-theme.scss +25 -0
- data/templates/tool_svelte/src/tool_name.js +17 -0
- data/templates/tool_svelte/yarn.lock +5052 -0
- data/templates/tool_vue/.browserslistrc +16 -0
- data/templates/tool_vue/.env.standalone +1 -0
- data/templates/tool_vue/.eslintrc.js +43 -0
- data/templates/tool_vue/.gitignore +2 -0
- data/templates/tool_vue/.nycrc +3 -0
- data/templates/tool_vue/.prettierrc.js +5 -0
- data/templates/tool_vue/babel.config.json +11 -0
- data/templates/tool_vue/jsconfig.json +6 -0
- data/templates/tool_vue/package.json +52 -0
- data/templates/tool_vue/src/App.vue +15 -0
- data/templates/tool_vue/src/main.js +38 -0
- data/templates/tool_vue/src/router.js +29 -0
- data/templates/tool_vue/src/tools/tool_name/tool_name.vue +63 -0
- data/templates/tool_vue/vue.config.js +30 -0
- data/templates/tool_vue/yarn.lock +9145 -0
- data/templates/widget/package.json +9 -9
- data/templates/widget/yarn.lock +77 -73
- metadata +76 -2
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "widget",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.9.0",
|
|
4
4
|
"private": true,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "vue-cli-service build --target lib --dest tools/widgets/<%= widget_name %> --formats umd-min <%= widget_path %> --name <%= widget_name %>"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@openc3/tool-common": "5.
|
|
9
|
+
"@openc3/tool-common": "5.9.0",
|
|
10
10
|
"vue": "2.7.14",
|
|
11
11
|
"vuetify": "2.6.14"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@babel/eslint-parser": "7.
|
|
15
|
-
"@rushstack/eslint-patch": "1.3.
|
|
14
|
+
"@babel/eslint-parser": "7.22.5",
|
|
15
|
+
"@rushstack/eslint-patch": "1.3.2",
|
|
16
16
|
"@vue/babel-preset-app": "5.0.8",
|
|
17
17
|
"@vue/cli": "5.0.8",
|
|
18
18
|
"@vue/cli-plugin-babel": "5.0.8",
|
|
@@ -21,15 +21,15 @@
|
|
|
21
21
|
"@vue/eslint-config-prettier": "7.1.0",
|
|
22
22
|
"babel-loader": "9.1.2",
|
|
23
23
|
"babel-plugin-istanbul": "6.1.1",
|
|
24
|
-
"eslint": "8.
|
|
24
|
+
"eslint": "8.44.0",
|
|
25
25
|
"eslint-config-prettier": "8.8.0",
|
|
26
26
|
"eslint-plugin-prettier": "4.2.1",
|
|
27
|
-
"eslint-plugin-vue": "9.
|
|
27
|
+
"eslint-plugin-vue": "9.15.1",
|
|
28
28
|
"prettier": "2.8.8",
|
|
29
|
-
"sass": "1.
|
|
30
|
-
"sass-loader": "13.3.
|
|
29
|
+
"sass": "1.63.6",
|
|
30
|
+
"sass-loader": "13.3.2",
|
|
31
31
|
"vue-cli-plugin-vuetify": "2.5.8",
|
|
32
32
|
"vue-template-compiler": "2.7.14",
|
|
33
|
-
"webpack": "5.
|
|
33
|
+
"webpack": "5.88.1"
|
|
34
34
|
}
|
|
35
35
|
}
|
data/templates/widget/yarn.lock
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
# yarn lockfile v1
|
|
3
3
|
|
|
4
4
|
|
|
5
|
+
"@aashutoshrathi/word-wrap@^1.2.3":
|
|
6
|
+
version "1.2.6"
|
|
7
|
+
resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf"
|
|
8
|
+
integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==
|
|
9
|
+
|
|
5
10
|
"@achrinza/node-ipc@^9.2.5":
|
|
6
11
|
version "9.2.6"
|
|
7
12
|
resolved "https://registry.yarnpkg.com/@achrinza/node-ipc/-/node-ipc-9.2.6.tgz#75c89e95fe38ff9e3dd33a0d2681dc28f1c31f33"
|
|
@@ -167,10 +172,10 @@
|
|
|
167
172
|
json5 "^2.2.2"
|
|
168
173
|
semver "^6.3.0"
|
|
169
174
|
|
|
170
|
-
"@babel/eslint-parser@7.
|
|
171
|
-
version "7.
|
|
172
|
-
resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.
|
|
173
|
-
integrity sha512-
|
|
175
|
+
"@babel/eslint-parser@7.22.5":
|
|
176
|
+
version "7.22.5"
|
|
177
|
+
resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.22.5.tgz#fa032503b9e2d188e25b1b95d29e8b8431042d78"
|
|
178
|
+
integrity sha512-C69RWYNYtrgIRE5CmTd77ZiLDXqgBipahJc/jHP3sLcAGj6AJzxNIuKNpVnICqbyK7X3pFUfEvL++rvtbQpZkQ==
|
|
174
179
|
dependencies:
|
|
175
180
|
"@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1"
|
|
176
181
|
eslint-visitor-keys "^2.1.0"
|
|
@@ -1165,14 +1170,14 @@
|
|
|
1165
1170
|
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.4.0.tgz#3e61c564fcd6b921cb789838631c5ee44df09403"
|
|
1166
1171
|
integrity sha512-A9983Q0LnDGdLPjxyXQ00sbV+K+O+ko2Dr+CZigbHWtX9pNfxlaBkMR8X1CztI73zuEyEBXTVjx7CE+/VSwDiQ==
|
|
1167
1172
|
|
|
1168
|
-
"@eslint/eslintrc@^2.0
|
|
1169
|
-
version "2.0
|
|
1170
|
-
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.
|
|
1171
|
-
integrity sha512
|
|
1173
|
+
"@eslint/eslintrc@^2.1.0":
|
|
1174
|
+
version "2.1.0"
|
|
1175
|
+
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.0.tgz#82256f164cc9e0b59669efc19d57f8092706841d"
|
|
1176
|
+
integrity sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==
|
|
1172
1177
|
dependencies:
|
|
1173
1178
|
ajv "^6.12.4"
|
|
1174
1179
|
debug "^4.3.2"
|
|
1175
|
-
espree "^9.
|
|
1180
|
+
espree "^9.6.0"
|
|
1176
1181
|
globals "^13.19.0"
|
|
1177
1182
|
ignore "^5.2.0"
|
|
1178
1183
|
import-fresh "^3.2.1"
|
|
@@ -1180,10 +1185,10 @@
|
|
|
1180
1185
|
minimatch "^3.1.2"
|
|
1181
1186
|
strip-json-comments "^3.1.1"
|
|
1182
1187
|
|
|
1183
|
-
"@eslint/js@8.
|
|
1184
|
-
version "8.
|
|
1185
|
-
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.
|
|
1186
|
-
integrity sha512-
|
|
1188
|
+
"@eslint/js@8.44.0":
|
|
1189
|
+
version "8.44.0"
|
|
1190
|
+
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.44.0.tgz#961a5903c74139390478bdc808bcde3fc45ab7af"
|
|
1191
|
+
integrity sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==
|
|
1187
1192
|
|
|
1188
1193
|
"@graphql-tools/merge@8.3.1":
|
|
1189
1194
|
version "8.3.1"
|
|
@@ -1263,10 +1268,10 @@
|
|
|
1263
1268
|
dependencies:
|
|
1264
1269
|
"@hapi/hoek" "^9.0.0"
|
|
1265
1270
|
|
|
1266
|
-
"@humanwhocodes/config-array@^0.11.
|
|
1267
|
-
version "0.11.
|
|
1268
|
-
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.
|
|
1269
|
-
integrity sha512-
|
|
1271
|
+
"@humanwhocodes/config-array@^0.11.10":
|
|
1272
|
+
version "0.11.10"
|
|
1273
|
+
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2"
|
|
1274
|
+
integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==
|
|
1270
1275
|
dependencies:
|
|
1271
1276
|
"@humanwhocodes/object-schema" "^1.2.1"
|
|
1272
1277
|
debug "^4.1.1"
|
|
@@ -1449,10 +1454,10 @@
|
|
|
1449
1454
|
resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570"
|
|
1450
1455
|
integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==
|
|
1451
1456
|
|
|
1452
|
-
"@rushstack/eslint-patch@1.3.
|
|
1453
|
-
version "1.3.
|
|
1454
|
-
resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.3.
|
|
1455
|
-
integrity sha512-
|
|
1457
|
+
"@rushstack/eslint-patch@1.3.2":
|
|
1458
|
+
version "1.3.2"
|
|
1459
|
+
resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.3.2.tgz#31b9c510d8cada9683549e1dbb4284cca5001faf"
|
|
1460
|
+
integrity sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw==
|
|
1456
1461
|
|
|
1457
1462
|
"@sideway/address@^4.1.3":
|
|
1458
1463
|
version "4.1.4"
|
|
@@ -2410,6 +2415,11 @@ acorn@^8.0.4, acorn@^8.0.5, acorn@^8.5.0, acorn@^8.7.1, acorn@^8.8.0:
|
|
|
2410
2415
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a"
|
|
2411
2416
|
integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==
|
|
2412
2417
|
|
|
2418
|
+
acorn@^8.9.0:
|
|
2419
|
+
version "8.9.0"
|
|
2420
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.9.0.tgz#78a16e3b2bcc198c10822786fa6679e245db5b59"
|
|
2421
|
+
integrity sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==
|
|
2422
|
+
|
|
2413
2423
|
address@^1.1.2:
|
|
2414
2424
|
version "1.2.2"
|
|
2415
2425
|
resolved "https://registry.yarnpkg.com/address/-/address-1.2.2.tgz#2b5248dac5485a6390532c6a517fda2e3faac89e"
|
|
@@ -3982,10 +3992,10 @@ enhanced-resolve@^5.10.0:
|
|
|
3982
3992
|
graceful-fs "^4.2.4"
|
|
3983
3993
|
tapable "^2.2.0"
|
|
3984
3994
|
|
|
3985
|
-
enhanced-resolve@^5.
|
|
3986
|
-
version "5.
|
|
3987
|
-
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.
|
|
3988
|
-
integrity sha512-
|
|
3995
|
+
enhanced-resolve@^5.15.0:
|
|
3996
|
+
version "5.15.0"
|
|
3997
|
+
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35"
|
|
3998
|
+
integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==
|
|
3989
3999
|
dependencies:
|
|
3990
4000
|
graceful-fs "^4.2.4"
|
|
3991
4001
|
tapable "^2.2.0"
|
|
@@ -4056,10 +4066,10 @@ eslint-plugin-prettier@4.2.1, eslint-plugin-prettier@^4.0.0:
|
|
|
4056
4066
|
dependencies:
|
|
4057
4067
|
prettier-linter-helpers "^1.0.0"
|
|
4058
4068
|
|
|
4059
|
-
eslint-plugin-vue@9.
|
|
4060
|
-
version "9.
|
|
4061
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.
|
|
4062
|
-
integrity sha512-
|
|
4069
|
+
eslint-plugin-vue@9.15.1:
|
|
4070
|
+
version "9.15.1"
|
|
4071
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.15.1.tgz#3c09e0edab444b5d4d9239a12a645a0e2e2ea5be"
|
|
4072
|
+
integrity sha512-CJE/oZOslvmAR9hf8SClTdQ9JLweghT6JCBQNrT2Iel1uVw0W0OLJxzvPd6CxmABKCvLrtyDnqGV37O7KQv6+A==
|
|
4063
4073
|
dependencies:
|
|
4064
4074
|
"@eslint-community/eslint-utils" "^4.3.0"
|
|
4065
4075
|
natural-compare "^1.4.0"
|
|
@@ -4119,16 +4129,16 @@ eslint-webpack-plugin@^3.1.0:
|
|
|
4119
4129
|
normalize-path "^3.0.0"
|
|
4120
4130
|
schema-utils "^4.0.0"
|
|
4121
4131
|
|
|
4122
|
-
eslint@8.
|
|
4123
|
-
version "8.
|
|
4124
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.
|
|
4125
|
-
integrity sha512-
|
|
4132
|
+
eslint@8.44.0:
|
|
4133
|
+
version "8.44.0"
|
|
4134
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.44.0.tgz#51246e3889b259bbcd1d7d736a0c10add4f0e500"
|
|
4135
|
+
integrity sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A==
|
|
4126
4136
|
dependencies:
|
|
4127
4137
|
"@eslint-community/eslint-utils" "^4.2.0"
|
|
4128
4138
|
"@eslint-community/regexpp" "^4.4.0"
|
|
4129
|
-
"@eslint/eslintrc" "^2.0
|
|
4130
|
-
"@eslint/js" "8.
|
|
4131
|
-
"@humanwhocodes/config-array" "^0.11.
|
|
4139
|
+
"@eslint/eslintrc" "^2.1.0"
|
|
4140
|
+
"@eslint/js" "8.44.0"
|
|
4141
|
+
"@humanwhocodes/config-array" "^0.11.10"
|
|
4132
4142
|
"@humanwhocodes/module-importer" "^1.0.1"
|
|
4133
4143
|
"@nodelib/fs.walk" "^1.2.8"
|
|
4134
4144
|
ajv "^6.10.0"
|
|
@@ -4139,7 +4149,7 @@ eslint@8.41.0:
|
|
|
4139
4149
|
escape-string-regexp "^4.0.0"
|
|
4140
4150
|
eslint-scope "^7.2.0"
|
|
4141
4151
|
eslint-visitor-keys "^3.4.1"
|
|
4142
|
-
espree "^9.
|
|
4152
|
+
espree "^9.6.0"
|
|
4143
4153
|
esquery "^1.4.2"
|
|
4144
4154
|
esutils "^2.0.2"
|
|
4145
4155
|
fast-deep-equal "^3.1.3"
|
|
@@ -4159,7 +4169,7 @@ eslint@8.41.0:
|
|
|
4159
4169
|
lodash.merge "^4.6.2"
|
|
4160
4170
|
minimatch "^3.1.2"
|
|
4161
4171
|
natural-compare "^1.4.0"
|
|
4162
|
-
optionator "^0.9.
|
|
4172
|
+
optionator "^0.9.3"
|
|
4163
4173
|
strip-ansi "^6.0.1"
|
|
4164
4174
|
strip-json-comments "^3.1.0"
|
|
4165
4175
|
text-table "^0.2.0"
|
|
@@ -4173,12 +4183,12 @@ espree@^9.3.1:
|
|
|
4173
4183
|
acorn-jsx "^5.3.2"
|
|
4174
4184
|
eslint-visitor-keys "^3.3.0"
|
|
4175
4185
|
|
|
4176
|
-
espree@^9.
|
|
4177
|
-
version "9.
|
|
4178
|
-
resolved "https://registry.yarnpkg.com/espree/-/espree-9.
|
|
4179
|
-
integrity sha512-
|
|
4186
|
+
espree@^9.6.0:
|
|
4187
|
+
version "9.6.0"
|
|
4188
|
+
resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.0.tgz#80869754b1c6560f32e3b6929194a3fe07c5b82f"
|
|
4189
|
+
integrity sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==
|
|
4180
4190
|
dependencies:
|
|
4181
|
-
acorn "^8.
|
|
4191
|
+
acorn "^8.9.0"
|
|
4182
4192
|
acorn-jsx "^5.3.2"
|
|
4183
4193
|
eslint-visitor-keys "^3.4.1"
|
|
4184
4194
|
|
|
@@ -5742,7 +5752,7 @@ kind-of@^6.0.0, kind-of@^6.0.2:
|
|
|
5742
5752
|
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
|
|
5743
5753
|
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
|
|
5744
5754
|
|
|
5745
|
-
klona@^2.0.5
|
|
5755
|
+
klona@^2.0.5:
|
|
5746
5756
|
version "2.0.6"
|
|
5747
5757
|
resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.6.tgz#85bffbf819c03b2f53270412420a4555ef882e22"
|
|
5748
5758
|
integrity sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==
|
|
@@ -6471,17 +6481,17 @@ opener@^1.5.2:
|
|
|
6471
6481
|
resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598"
|
|
6472
6482
|
integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==
|
|
6473
6483
|
|
|
6474
|
-
optionator@^0.9.
|
|
6475
|
-
version "0.9.
|
|
6476
|
-
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.
|
|
6477
|
-
integrity sha512-
|
|
6484
|
+
optionator@^0.9.3:
|
|
6485
|
+
version "0.9.3"
|
|
6486
|
+
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64"
|
|
6487
|
+
integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==
|
|
6478
6488
|
dependencies:
|
|
6489
|
+
"@aashutoshrathi/word-wrap" "^1.2.3"
|
|
6479
6490
|
deep-is "^0.1.3"
|
|
6480
6491
|
fast-levenshtein "^2.0.6"
|
|
6481
6492
|
levn "^0.4.1"
|
|
6482
6493
|
prelude-ls "^1.2.1"
|
|
6483
6494
|
type-check "^0.4.0"
|
|
6484
|
-
word-wrap "^1.2.3"
|
|
6485
6495
|
|
|
6486
6496
|
ora@^5.3.0, ora@^5.4.1:
|
|
6487
6497
|
version "5.4.1"
|
|
@@ -7510,18 +7520,17 @@ safe-regex@^1.1.0:
|
|
|
7510
7520
|
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
|
|
7511
7521
|
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
|
|
7512
7522
|
|
|
7513
|
-
sass-loader@13.3.
|
|
7514
|
-
version "13.3.
|
|
7515
|
-
resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-13.3.
|
|
7516
|
-
integrity sha512-
|
|
7523
|
+
sass-loader@13.3.2:
|
|
7524
|
+
version "13.3.2"
|
|
7525
|
+
resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-13.3.2.tgz#460022de27aec772480f03de17f5ba88fa7e18c6"
|
|
7526
|
+
integrity sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg==
|
|
7517
7527
|
dependencies:
|
|
7518
|
-
klona "^2.0.6"
|
|
7519
7528
|
neo-async "^2.6.2"
|
|
7520
7529
|
|
|
7521
|
-
sass@1.
|
|
7522
|
-
version "1.
|
|
7523
|
-
resolved "https://registry.yarnpkg.com/sass/-/sass-1.
|
|
7524
|
-
integrity sha512-
|
|
7530
|
+
sass@1.63.6:
|
|
7531
|
+
version "1.63.6"
|
|
7532
|
+
resolved "https://registry.yarnpkg.com/sass/-/sass-1.63.6.tgz#481610e612902e0c31c46b46cf2dad66943283ea"
|
|
7533
|
+
integrity sha512-MJuxGMHzaOW7ipp+1KdELtqKbfAWbH7OLIdoSMnVe3EXPMTmxTmlaZDCTsgIpPCs3w99lLo9/zDKkOrJuT5byw==
|
|
7525
7534
|
dependencies:
|
|
7526
7535
|
chokidar ">=3.0.0 <4.0.0"
|
|
7527
7536
|
immutable "^4.0.0"
|
|
@@ -7550,10 +7559,10 @@ schema-utils@^3.0.0, schema-utils@^3.1.0, schema-utils@^3.1.1:
|
|
|
7550
7559
|
ajv "^6.12.5"
|
|
7551
7560
|
ajv-keywords "^3.5.2"
|
|
7552
7561
|
|
|
7553
|
-
schema-utils@^3.
|
|
7554
|
-
version "3.
|
|
7555
|
-
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.
|
|
7556
|
-
integrity sha512-
|
|
7562
|
+
schema-utils@^3.2.0:
|
|
7563
|
+
version "3.3.0"
|
|
7564
|
+
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe"
|
|
7565
|
+
integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==
|
|
7557
7566
|
dependencies:
|
|
7558
7567
|
"@types/json-schema" "^7.0.8"
|
|
7559
7568
|
ajv "^6.12.5"
|
|
@@ -8713,10 +8722,10 @@ webpack-virtual-modules@^0.4.2:
|
|
|
8713
8722
|
resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz#3e4008230731f1db078d9cb6f68baf8571182b45"
|
|
8714
8723
|
integrity sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==
|
|
8715
8724
|
|
|
8716
|
-
webpack@5.
|
|
8717
|
-
version "5.
|
|
8718
|
-
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.
|
|
8719
|
-
integrity sha512-
|
|
8725
|
+
webpack@5.88.1:
|
|
8726
|
+
version "5.88.1"
|
|
8727
|
+
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.88.1.tgz#21eba01e81bd5edff1968aea726e2fbfd557d3f8"
|
|
8728
|
+
integrity sha512-FROX3TxQnC/ox4N+3xQoWZzvGXSuscxR32rbzjpXgEzWudJFEJBpdlkkob2ylrv5yzzufD1zph1OoFsLtm6stQ==
|
|
8720
8729
|
dependencies:
|
|
8721
8730
|
"@types/eslint-scope" "^3.7.3"
|
|
8722
8731
|
"@types/estree" "^1.0.0"
|
|
@@ -8727,7 +8736,7 @@ webpack@5.84.1:
|
|
|
8727
8736
|
acorn-import-assertions "^1.9.0"
|
|
8728
8737
|
browserslist "^4.14.5"
|
|
8729
8738
|
chrome-trace-event "^1.0.2"
|
|
8730
|
-
enhanced-resolve "^5.
|
|
8739
|
+
enhanced-resolve "^5.15.0"
|
|
8731
8740
|
es-module-lexer "^1.2.1"
|
|
8732
8741
|
eslint-scope "5.1.1"
|
|
8733
8742
|
events "^3.2.0"
|
|
@@ -8737,7 +8746,7 @@ webpack@5.84.1:
|
|
|
8737
8746
|
loader-runner "^4.2.0"
|
|
8738
8747
|
mime-types "^2.1.27"
|
|
8739
8748
|
neo-async "^2.6.2"
|
|
8740
|
-
schema-utils "^3.
|
|
8749
|
+
schema-utils "^3.2.0"
|
|
8741
8750
|
tapable "^2.1.1"
|
|
8742
8751
|
terser-webpack-plugin "^5.3.7"
|
|
8743
8752
|
watchpack "^2.4.0"
|
|
@@ -8831,11 +8840,6 @@ wildcard@^2.0.0:
|
|
|
8831
8840
|
resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.0.tgz#a77d20e5200c6faaac979e4b3aadc7b3dd7f8fec"
|
|
8832
8841
|
integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==
|
|
8833
8842
|
|
|
8834
|
-
word-wrap@^1.2.3:
|
|
8835
|
-
version "1.2.3"
|
|
8836
|
-
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
|
|
8837
|
-
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
|
|
8838
|
-
|
|
8839
8843
|
wrap-ansi@^3.0.1:
|
|
8840
8844
|
version "3.0.1"
|
|
8841
8845
|
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-3.0.1.tgz#288a04d87eda5c286e060dfe8f135ce8d007f8ba"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: openc3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.
|
|
4
|
+
version: 5.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryan Melton
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2023-
|
|
12
|
+
date: 2023-07-07 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -892,6 +892,7 @@ files:
|
|
|
892
892
|
- lib/openc3/migrations/20220420190000_log_stuff.rb
|
|
893
893
|
- lib/openc3/migrations/20221202214600_add_target_names.rb
|
|
894
894
|
- lib/openc3/migrations/20221210174900_convert_to_multi.rb
|
|
895
|
+
- lib/openc3/migrations/20230615000000_autonomic.rb
|
|
895
896
|
- lib/openc3/models/activity_model.rb
|
|
896
897
|
- lib/openc3/models/auth_model.rb
|
|
897
898
|
- lib/openc3/models/cvt_model.rb
|
|
@@ -1057,6 +1058,79 @@ files:
|
|
|
1057
1058
|
- templates/target/targets/TARGET/procedures/procedure.rb
|
|
1058
1059
|
- templates/target/targets/TARGET/screens/status.txt
|
|
1059
1060
|
- templates/target/targets/TARGET/target.txt
|
|
1061
|
+
- templates/tool_angular/.editorconfig
|
|
1062
|
+
- templates/tool_angular/.gitignore
|
|
1063
|
+
- templates/tool_angular/.vscode/extensions.json
|
|
1064
|
+
- templates/tool_angular/.vscode/launch.json
|
|
1065
|
+
- templates/tool_angular/.vscode/tasks.json
|
|
1066
|
+
- templates/tool_angular/angular.json
|
|
1067
|
+
- templates/tool_angular/extra-webpack.config.js
|
|
1068
|
+
- templates/tool_angular/package.json
|
|
1069
|
+
- templates/tool_angular/src/app/app-routing.module.ts
|
|
1070
|
+
- templates/tool_angular/src/app/app.component.html
|
|
1071
|
+
- templates/tool_angular/src/app/app.component.scss
|
|
1072
|
+
- templates/tool_angular/src/app/app.component.spec.ts
|
|
1073
|
+
- templates/tool_angular/src/app/app.component.ts
|
|
1074
|
+
- templates/tool_angular/src/app/app.module.ts
|
|
1075
|
+
- templates/tool_angular/src/app/custom-overlay-container.ts
|
|
1076
|
+
- templates/tool_angular/src/app/empty-route/empty-route.component.ts
|
|
1077
|
+
- templates/tool_angular/src/app/openc3-api.d.ts
|
|
1078
|
+
- templates/tool_angular/src/assets/.gitkeep
|
|
1079
|
+
- templates/tool_angular/src/environments/environment.prod.ts
|
|
1080
|
+
- templates/tool_angular/src/environments/environment.ts
|
|
1081
|
+
- templates/tool_angular/src/favicon.ico
|
|
1082
|
+
- templates/tool_angular/src/index.html
|
|
1083
|
+
- templates/tool_angular/src/main.single-spa.ts
|
|
1084
|
+
- templates/tool_angular/src/single-spa/asset-url.ts
|
|
1085
|
+
- templates/tool_angular/src/single-spa/single-spa-props.ts
|
|
1086
|
+
- templates/tool_angular/src/styles.scss
|
|
1087
|
+
- templates/tool_angular/tsconfig.app.json
|
|
1088
|
+
- templates/tool_angular/tsconfig.json
|
|
1089
|
+
- templates/tool_angular/tsconfig.spec.json
|
|
1090
|
+
- templates/tool_angular/yarn.lock
|
|
1091
|
+
- templates/tool_react/.eslintrc
|
|
1092
|
+
- templates/tool_react/.gitignore
|
|
1093
|
+
- templates/tool_react/.prettierignore
|
|
1094
|
+
- templates/tool_react/babel.config.json
|
|
1095
|
+
- templates/tool_react/jest.config.js
|
|
1096
|
+
- templates/tool_react/package.json
|
|
1097
|
+
- templates/tool_react/src/openc3-tool_name.js
|
|
1098
|
+
- templates/tool_react/src/root.component.js
|
|
1099
|
+
- templates/tool_react/src/root.component.test.js
|
|
1100
|
+
- templates/tool_react/webpack.config.js
|
|
1101
|
+
- templates/tool_react/yarn.lock
|
|
1102
|
+
- templates/tool_svelte/.gitignore
|
|
1103
|
+
- templates/tool_svelte/.prettierignore
|
|
1104
|
+
- templates/tool_svelte/babel.config.js
|
|
1105
|
+
- templates/tool_svelte/build/smui.css
|
|
1106
|
+
- templates/tool_svelte/jest.config.js
|
|
1107
|
+
- templates/tool_svelte/package.json
|
|
1108
|
+
- templates/tool_svelte/rollup.config.js
|
|
1109
|
+
- templates/tool_svelte/src/App.svelte
|
|
1110
|
+
- templates/tool_svelte/src/App.test.js
|
|
1111
|
+
- templates/tool_svelte/src/services/api.js
|
|
1112
|
+
- templates/tool_svelte/src/services/axios.js
|
|
1113
|
+
- templates/tool_svelte/src/services/cable.js
|
|
1114
|
+
- templates/tool_svelte/src/services/config-parser.js
|
|
1115
|
+
- templates/tool_svelte/src/services/openc3-api.js
|
|
1116
|
+
- templates/tool_svelte/src/theme/_smui-theme.scss
|
|
1117
|
+
- templates/tool_svelte/src/tool_name.js
|
|
1118
|
+
- templates/tool_svelte/yarn.lock
|
|
1119
|
+
- templates/tool_vue/.browserslistrc
|
|
1120
|
+
- templates/tool_vue/.env.standalone
|
|
1121
|
+
- templates/tool_vue/.eslintrc.js
|
|
1122
|
+
- templates/tool_vue/.gitignore
|
|
1123
|
+
- templates/tool_vue/.nycrc
|
|
1124
|
+
- templates/tool_vue/.prettierrc.js
|
|
1125
|
+
- templates/tool_vue/babel.config.json
|
|
1126
|
+
- templates/tool_vue/jsconfig.json
|
|
1127
|
+
- templates/tool_vue/package.json
|
|
1128
|
+
- templates/tool_vue/src/App.vue
|
|
1129
|
+
- templates/tool_vue/src/main.js
|
|
1130
|
+
- templates/tool_vue/src/router.js
|
|
1131
|
+
- templates/tool_vue/src/tools/tool_name/tool_name.vue
|
|
1132
|
+
- templates/tool_vue/vue.config.js
|
|
1133
|
+
- templates/tool_vue/yarn.lock
|
|
1060
1134
|
- templates/widget/.browserslistrc
|
|
1061
1135
|
- templates/widget/.eslintrc.js
|
|
1062
1136
|
- templates/widget/.nycrc
|