@gitpod/gitpod-protocol 0.1.5-update-ovsx.0 → 0.1.5-update-yarnlock.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.
- package/data/gitpod-schema.json +159 -25
- package/lib/accounting-protocol.d.ts +165 -0
- package/lib/accounting-protocol.d.ts.map +1 -0
- package/lib/accounting-protocol.js +120 -0
- package/lib/accounting-protocol.js.map +1 -0
- package/lib/admin-protocol.d.ts +51 -6
- package/lib/admin-protocol.d.ts.map +1 -1
- package/lib/admin-protocol.js +17 -2
- package/lib/admin-protocol.js.map +1 -1
- package/lib/analytics.d.ts +44 -0
- package/lib/analytics.d.ts.map +1 -0
- package/lib/analytics.js +10 -0
- package/lib/analytics.js.map +1 -0
- package/lib/attribution.d.ts +25 -0
- package/lib/attribution.d.ts.map +1 -0
- package/lib/attribution.js +58 -0
- package/lib/attribution.js.map +1 -0
- package/lib/auth.d.ts +25 -0
- package/lib/auth.d.ts.map +1 -0
- package/lib/auth.js +16 -0
- package/lib/auth.js.map +1 -0
- package/lib/billing-mode.d.ts +45 -0
- package/lib/billing-mode.d.ts.map +1 -0
- package/lib/billing-mode.js +44 -0
- package/lib/billing-mode.js.map +1 -0
- package/lib/blocked-repositories-protocol.d.ts +13 -0
- package/lib/blocked-repositories-protocol.d.ts.map +1 -0
- package/lib/blocked-repositories-protocol.js +8 -0
- package/lib/blocked-repositories-protocol.js.map +1 -0
- package/lib/context-url.d.ts +30 -0
- package/lib/context-url.d.ts.map +1 -0
- package/lib/context-url.js +100 -0
- package/lib/context-url.js.map +1 -0
- package/lib/context-url.spec.d.ts +12 -0
- package/lib/context-url.spec.d.ts.map +1 -0
- package/lib/context-url.spec.js +81 -0
- package/lib/context-url.spec.js.map +1 -0
- package/lib/encryption/container-module.d.ts +2 -2
- package/lib/encryption/container-module.d.ts.map +1 -1
- package/lib/encryption/container-module.js +8 -6
- package/lib/encryption/container-module.js.map +1 -1
- package/lib/encryption/encryption-engine.d.ts +2 -2
- package/lib/encryption/encryption-engine.d.ts.map +1 -1
- package/lib/encryption/encryption-engine.js +28 -28
- package/lib/encryption/encryption-engine.js.map +1 -1
- package/lib/encryption/encryption-engine.spec.d.ts +3 -3
- package/lib/encryption/encryption-engine.spec.d.ts.map +1 -1
- package/lib/encryption/encryption-engine.spec.js +32 -39
- package/lib/encryption/encryption-engine.spec.js.map +1 -1
- package/lib/encryption/encryption-service.d.ts +2 -2
- package/lib/encryption/encryption-service.d.ts.map +1 -1
- package/lib/encryption/encryption-service.js +33 -46
- package/lib/encryption/encryption-service.js.map +1 -1
- package/lib/encryption/key-provider.d.ts +3 -3
- package/lib/encryption/key-provider.d.ts.map +1 -1
- package/lib/encryption/key-provider.js +34 -40
- package/lib/encryption/key-provider.js.map +1 -1
- package/lib/env.d.ts +2 -8
- package/lib/env.d.ts.map +1 -1
- package/lib/env.js +10 -29
- package/lib/env.js.map +1 -1
- package/lib/experiments/always-default.d.ts +8 -0
- package/lib/experiments/always-default.d.ts.map +1 -0
- package/lib/experiments/always-default.js +20 -0
- package/lib/experiments/always-default.js.map +1 -0
- package/lib/experiments/configcat-server.d.ts +10 -0
- package/lib/experiments/configcat-server.d.ts.map +1 -0
- package/lib/experiments/configcat-server.js +37 -0
- package/lib/experiments/configcat-server.js.map +1 -0
- package/lib/experiments/configcat.d.ts +21 -0
- package/lib/experiments/configcat.d.ts.map +1 -0
- package/lib/experiments/configcat.js +51 -0
- package/lib/experiments/configcat.js.map +1 -0
- package/lib/experiments/types.d.ts +22 -0
- package/lib/experiments/types.d.ts.map +1 -0
- package/lib/experiments/types.js +10 -0
- package/lib/experiments/types.js.map +1 -0
- package/lib/frontend-dashboard-service.d.ts +99 -0
- package/lib/frontend-dashboard-service.d.ts.map +1 -0
- package/lib/frontend-dashboard-service.js +55 -0
- package/lib/frontend-dashboard-service.js.map +1 -0
- package/lib/gitpod-file-parser.d.ts +2 -2
- package/lib/gitpod-file-parser.d.ts.map +1 -1
- package/lib/gitpod-file-parser.js +29 -44
- package/lib/gitpod-file-parser.js.map +1 -1
- package/lib/gitpod-file-parser.spec.d.ts +2 -2
- package/lib/gitpod-file-parser.spec.js +147 -144
- package/lib/gitpod-file-parser.spec.js.map +1 -1
- package/lib/gitpod-service.d.ts +290 -50
- package/lib/gitpod-service.d.ts.map +1 -1
- package/lib/gitpod-service.js +288 -123
- package/lib/gitpod-service.js.map +1 -1
- package/lib/headless-workspace-log.d.ts +11 -13
- package/lib/headless-workspace-log.d.ts.map +1 -1
- package/lib/headless-workspace-log.js +8 -9
- package/lib/headless-workspace-log.js.map +1 -1
- package/lib/ide-frontend-service.d.ts +26 -0
- package/lib/ide-frontend-service.d.ts.map +1 -0
- package/lib/ide-frontend-service.js +8 -0
- package/lib/ide-frontend-service.js.map +1 -0
- package/lib/ide-protocol.d.ts +126 -0
- package/lib/ide-protocol.d.ts.map +1 -0
- package/lib/ide-protocol.js +18 -0
- package/lib/ide-protocol.js.map +1 -0
- package/lib/index.d.ts +18 -12
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +28 -13
- package/lib/index.js.map +1 -1
- package/lib/installation-admin-protocol.d.ts +30 -0
- package/lib/installation-admin-protocol.d.ts.map +1 -0
- package/lib/installation-admin-protocol.js +31 -0
- package/lib/installation-admin-protocol.js.map +1 -0
- package/lib/license-protocol.d.ts +9 -2
- package/lib/license-protocol.d.ts.map +1 -1
- package/lib/license-protocol.js +3 -2
- package/lib/license-protocol.js.map +1 -1
- package/lib/messaging/browser/connection.d.ts +6 -4
- package/lib/messaging/browser/connection.d.ts.map +1 -1
- package/lib/messaging/browser/connection.js +188 -48
- package/lib/messaging/browser/connection.js.map +1 -1
- package/lib/messaging/browser/window-connection.d.ts +9 -4
- package/lib/messaging/browser/window-connection.d.ts.map +1 -1
- package/lib/messaging/browser/window-connection.js +48 -59
- package/lib/messaging/browser/window-connection.js.map +1 -1
- package/lib/messaging/client-call-metrics.d.ts +21 -0
- package/lib/messaging/client-call-metrics.d.ts.map +1 -0
- package/lib/messaging/client-call-metrics.js +95 -0
- package/lib/messaging/client-call-metrics.js.map +1 -0
- package/lib/messaging/error.d.ts +18 -4
- package/lib/messaging/error.d.ts.map +1 -1
- package/lib/messaging/error.js +38 -7
- package/lib/messaging/error.js.map +1 -1
- package/lib/messaging/handler.d.ts +10 -0
- package/lib/messaging/handler.d.ts.map +1 -1
- package/lib/messaging/handler.js +2 -1
- package/lib/messaging/handler.js.map +1 -1
- package/lib/messaging/node/connection.d.ts +1 -17
- package/lib/messaging/node/connection.d.ts.map +1 -1
- package/lib/messaging/node/connection.js +24 -59
- package/lib/messaging/node/connection.js.map +1 -1
- package/lib/messaging/proxy-factory.d.ts +3 -1
- package/lib/messaging/proxy-factory.d.ts.map +1 -1
- package/lib/messaging/proxy-factory.js +76 -162
- package/lib/messaging/proxy-factory.js.map +1 -1
- package/lib/oss-allowlist.d.ts +14 -0
- package/lib/oss-allowlist.d.ts.map +1 -0
- package/lib/oss-allowlist.js +8 -0
- package/lib/oss-allowlist.js.map +1 -0
- package/lib/payment-protocol.d.ts +18 -0
- package/lib/payment-protocol.d.ts.map +1 -0
- package/lib/payment-protocol.js +13 -0
- package/lib/payment-protocol.js.map +1 -0
- package/lib/permission.d.ts +26 -15
- package/lib/permission.d.ts.map +1 -1
- package/lib/permission.js +50 -36
- package/lib/permission.js.map +1 -1
- package/lib/plans.d.ts +213 -0
- package/lib/plans.d.ts.map +1 -0
- package/lib/plans.js +625 -0
- package/lib/plans.js.map +1 -0
- package/lib/protocol.d.ts +338 -111
- package/lib/protocol.d.ts.map +1 -1
- package/lib/protocol.js +422 -201
- package/lib/protocol.js.map +1 -1
- package/lib/protocol.spec.d.ts +7 -0
- package/lib/protocol.spec.d.ts.map +1 -0
- package/lib/protocol.spec.js +127 -0
- package/lib/protocol.spec.js.map +1 -0
- package/lib/snapshot-url.d.ts +14 -0
- package/lib/snapshot-url.d.ts.map +1 -0
- package/lib/snapshot-url.js +26 -0
- package/lib/snapshot-url.js.map +1 -0
- package/lib/snapshot-url.spec.d.ts +7 -0
- package/lib/snapshot-url.spec.d.ts.map +1 -0
- package/lib/snapshot-url.spec.js +41 -0
- package/lib/snapshot-url.spec.js.map +1 -0
- package/lib/team-subscription-protocol.d.ts +93 -0
- package/lib/team-subscription-protocol.d.ts.map +1 -0
- package/lib/team-subscription-protocol.js +82 -0
- package/lib/team-subscription-protocol.js.map +1 -0
- package/lib/teams-projects-protocol.d.ts +136 -0
- package/lib/teams-projects-protocol.d.ts.map +1 -0
- package/lib/teams-projects-protocol.js +41 -0
- package/lib/teams-projects-protocol.js.map +1 -0
- package/lib/typings/globals.d.ts +8 -3
- package/lib/typings/globals.d.ts.map +1 -1
- package/lib/typings/globals.js +2 -2
- package/lib/usage.d.ts +73 -0
- package/lib/usage.d.ts.map +1 -0
- package/lib/usage.js +20 -0
- package/lib/usage.js.map +1 -0
- package/lib/util/analytics.d.ts +8 -0
- package/lib/util/analytics.d.ts.map +1 -0
- package/lib/util/analytics.js +88 -0
- package/lib/util/analytics.js.map +1 -0
- package/lib/util/async-iterator.d.ts +2 -2
- package/lib/util/async-iterator.d.ts.map +1 -1
- package/lib/util/async-iterator.js +60 -137
- package/lib/util/async-iterator.js.map +1 -1
- package/lib/util/cancelable.d.ts +2 -2
- package/lib/util/cancelable.js +20 -61
- package/lib/util/cancelable.js.map +1 -1
- package/lib/util/date-time.d.ts +2 -2
- package/lib/util/date-time.js +14 -13
- package/lib/util/date-time.js.map +1 -1
- package/lib/util/debug-app.d.ts +25 -0
- package/lib/util/debug-app.d.ts.map +1 -0
- package/lib/util/debug-app.js +100 -0
- package/lib/util/debug-app.js.map +1 -0
- package/lib/util/deep-partial.d.ts +2 -2
- package/lib/util/deep-partial.js +2 -2
- package/lib/util/deferred.d.ts +2 -2
- package/lib/util/deferred.js +13 -14
- package/lib/util/deferred.js.map +1 -1
- package/lib/util/disposable.d.ts +2 -2
- package/lib/util/disposable.d.ts.map +1 -1
- package/lib/util/disposable.js +28 -40
- package/lib/util/disposable.js.map +1 -1
- package/lib/util/event.d.ts +1 -1
- package/lib/util/event.d.ts.map +1 -1
- package/lib/util/event.js +64 -77
- package/lib/util/event.js.map +1 -1
- package/lib/util/garbage-collected-cache.d.ts +3 -2
- package/lib/util/garbage-collected-cache.d.ts.map +1 -1
- package/lib/util/garbage-collected-cache.js +35 -49
- package/lib/util/garbage-collected-cache.js.map +1 -1
- package/lib/util/generate-workspace-id.d.ts +9 -0
- package/lib/util/generate-workspace-id.d.ts.map +1 -0
- package/lib/util/generate-workspace-id.js +491 -0
- package/lib/util/generate-workspace-id.js.map +1 -0
- package/lib/util/generate-workspace-id.spec.d.ts +7 -0
- package/lib/util/generate-workspace-id.spec.d.ts.map +1 -0
- package/lib/util/generate-workspace-id.spec.js +98 -0
- package/lib/util/generate-workspace-id.spec.js.map +1 -0
- package/lib/util/gitpod-cookie.d.ts +20 -0
- package/lib/util/gitpod-cookie.d.ts.map +1 -0
- package/lib/util/gitpod-cookie.js +41 -0
- package/lib/util/gitpod-cookie.js.map +1 -0
- package/lib/util/gitpod-host-url.d.ts +20 -8
- package/lib/util/gitpod-host-url.d.ts.map +1 -1
- package/lib/util/gitpod-host-url.js +143 -85
- package/lib/util/gitpod-host-url.js.map +1 -1
- package/lib/util/gitpod-host-url.spec.d.ts +16 -0
- package/lib/util/gitpod-host-url.spec.d.ts.map +1 -0
- package/lib/util/gitpod-host-url.spec.js +134 -0
- package/lib/util/gitpod-host-url.spec.js.map +1 -0
- package/lib/util/grpc.d.ts +35 -0
- package/lib/util/grpc.d.ts.map +1 -0
- package/lib/util/grpc.js +90 -0
- package/lib/util/grpc.js.map +1 -0
- package/lib/util/jaeger-client-types.d.ts +68 -0
- package/lib/util/jaeger-client-types.d.ts.map +1 -0
- package/lib/util/jaeger-client-types.js +8 -0
- package/lib/util/jaeger-client-types.js.map +1 -0
- package/lib/util/logging.d.ts +58 -35
- package/lib/util/logging.d.ts.map +1 -1
- package/lib/util/logging.js +144 -129
- package/lib/util/logging.js.map +1 -1
- package/lib/util/logging.spec.d.ts +7 -0
- package/lib/util/logging.spec.d.ts.map +1 -0
- package/lib/util/logging.spec.js +52 -0
- package/lib/util/logging.spec.js.map +1 -0
- package/lib/util/make-link.d.ts +2 -2
- package/lib/util/make-link.js +8 -7
- package/lib/util/make-link.js.map +1 -1
- package/lib/util/nice-grpc.d.ts +9 -0
- package/lib/util/nice-grpc.d.ts.map +1 -0
- package/lib/util/nice-grpc.js +121 -0
- package/lib/util/nice-grpc.js.map +1 -0
- package/lib/util/parse-workspace-id.d.ts +15 -5
- package/lib/util/parse-workspace-id.d.ts.map +1 -1
- package/lib/util/parse-workspace-id.js +39 -9
- package/lib/util/parse-workspace-id.js.map +1 -1
- package/lib/util/parse-workspace-id.spec.d.ts +10 -2
- package/lib/util/parse-workspace-id.spec.d.ts.map +1 -1
- package/lib/util/parse-workspace-id.spec.js +130 -49
- package/lib/util/parse-workspace-id.spec.js.map +1 -1
- package/lib/util/queue.d.ts +2 -2
- package/lib/util/queue.js +19 -57
- package/lib/util/queue.js.map +1 -1
- package/lib/util/queue.spec.d.ts +2 -2
- package/lib/util/queue.spec.js +149 -288
- package/lib/util/queue.spec.js.map +1 -1
- package/lib/util/repeat.d.ts +15 -0
- package/lib/util/repeat.d.ts.map +1 -0
- package/lib/util/repeat.js +55 -0
- package/lib/util/repeat.js.map +1 -0
- package/lib/util/semaphore.d.ts +2 -2
- package/lib/util/semaphore.d.ts.map +1 -1
- package/lib/util/semaphore.js +18 -48
- package/lib/util/semaphore.js.map +1 -1
- package/lib/util/skip-if.d.ts +2 -2
- package/lib/util/skip-if.d.ts.map +1 -1
- package/lib/util/skip-if.js +9 -8
- package/lib/util/skip-if.js.map +1 -1
- package/lib/util/timeutil.d.ts +4 -2
- package/lib/util/timeutil.d.ts.map +1 -1
- package/lib/util/timeutil.js +43 -18
- package/lib/util/timeutil.js.map +1 -1
- package/lib/util/timeutil.spec.d.ts +4 -2
- package/lib/util/timeutil.spec.d.ts.map +1 -1
- package/lib/util/timeutil.spec.js +57 -25
- package/lib/util/timeutil.spec.js.map +1 -1
- package/lib/util/tracing.d.ts +55 -8
- package/lib/util/tracing.d.ts.map +1 -1
- package/lib/util/tracing.js +210 -66
- package/lib/util/tracing.js.map +1 -1
- package/lib/util/tracing.spec.d.ts +7 -0
- package/lib/util/tracing.spec.d.ts.map +1 -0
- package/lib/util/tracing.spec.js +121 -0
- package/lib/util/tracing.spec.js.map +1 -0
- package/lib/util/workspace-port-authentication.d.ts +9 -9
- package/lib/util/workspace-port-authentication.d.ts.map +1 -1
- package/lib/util/workspace-port-authentication.js +13 -14
- package/lib/util/workspace-port-authentication.js.map +1 -1
- package/lib/webhook-event.d.ts +44 -0
- package/lib/webhook-event.d.ts.map +1 -0
- package/lib/webhook-event.js +8 -0
- package/lib/webhook-event.js.map +1 -0
- package/lib/workspace-class.d.ts +14 -0
- package/lib/workspace-class.d.ts.map +1 -0
- package/lib/workspace-class.js +8 -0
- package/lib/workspace-class.js.map +1 -0
- package/lib/workspace-cluster.d.ts +80 -0
- package/lib/workspace-cluster.d.ts.map +1 -0
- package/lib/workspace-cluster.js +36 -0
- package/lib/workspace-cluster.js.map +1 -0
- package/lib/workspace-instance.d.ts +51 -8
- package/lib/workspace-instance.d.ts.map +1 -1
- package/lib/workspace-instance.js +2 -2
- package/lib/wsready.d.ts +8 -2
- package/lib/wsready.d.ts.map +1 -1
- package/lib/wsready.js +4 -3
- package/lib/wsready.js.map +1 -1
- package/package.json +42 -18
- package/pkg-yarn.lock +24 -10
- package/provenance-bundle.jsonl +2 -0
- package/src/accounting-protocol.ts +253 -0
- package/src/admin-protocol.ts +96 -21
- package/src/analytics.ts +52 -0
- package/src/attribution.ts +67 -0
- package/src/auth.ts +27 -0
- package/src/billing-mode.ts +84 -0
- package/src/blocked-repositories-protocol.ts +13 -0
- package/src/context-url.spec.ts +49 -0
- package/src/context-url.ts +107 -0
- package/src/encryption/container-module.ts +4 -5
- package/src/encryption/encryption-engine.spec.ts +11 -10
- package/src/encryption/encryption-engine.ts +22 -18
- package/src/encryption/encryption-service.ts +6 -7
- package/src/encryption/key-provider.ts +18 -21
- package/src/env.ts +3 -26
- package/src/experiments/always-default.ts +24 -0
- package/src/experiments/configcat-server.ts +42 -0
- package/src/experiments/configcat.ts +56 -0
- package/src/experiments/types.ts +34 -0
- package/src/frontend-dashboard-service.ts +148 -0
- package/src/gitpod-file-parser.spec.ts +57 -63
- package/src/gitpod-file-parser.ts +18 -19
- package/src/gitpod-service.ts +602 -99
- package/src/headless-workspace-log.ts +14 -16
- package/src/ide-frontend-service.ts +28 -0
- package/src/ide-protocol.ts +147 -0
- package/src/index.ts +18 -12
- package/src/installation-admin-protocol.ts +45 -0
- package/src/license-protocol.ts +14 -8
- package/src/messaging/browser/connection.ts +202 -26
- package/src/messaging/browser/window-connection.ts +45 -29
- package/src/messaging/client-call-metrics.ts +94 -0
- package/src/messaging/error.ts +51 -10
- package/src/messaging/handler.ts +13 -1
- package/src/messaging/node/connection.ts +23 -70
- package/src/messaging/proxy-factory.ts +35 -34
- package/src/oss-allowlist.ts +15 -0
- package/src/payment-protocol.ts +20 -0
- package/src/permission.ts +53 -40
- package/src/plans.ts +699 -0
- package/src/protocol.spec.ts +97 -0
- package/src/protocol.ts +790 -302
- package/src/snapshot-url.spec.ts +27 -0
- package/src/snapshot-url.ts +27 -0
- package/src/team-subscription-protocol.ts +153 -0
- package/src/teams-projects-protocol.ts +180 -0
- package/src/typings/globals.ts +13 -5
- package/src/usage.ts +85 -0
- package/src/util/analytics.ts +109 -0
- package/src/util/async-iterator.ts +6 -7
- package/src/util/cancelable.ts +5 -5
- package/src/util/date-time.ts +10 -10
- package/src/util/debug-app.ts +81 -0
- package/src/util/deep-partial.ts +2 -2
- package/src/util/deferred.ts +8 -8
- package/src/util/disposable.ts +3 -6
- package/src/util/event.ts +9 -11
- package/src/util/garbage-collected-cache.ts +18 -10
- package/src/util/generate-workspace-id.spec.ts +58 -0
- package/src/util/generate-workspace-id.ts +481 -0
- package/src/util/gitpod-cookie.ts +38 -0
- package/src/util/gitpod-host-url.spec.ts +76 -0
- package/src/util/gitpod-host-url.ts +119 -40
- package/src/util/grpc.ts +107 -0
- package/src/util/jaeger-client-types.ts +102 -0
- package/src/util/logging.spec.ts +23 -0
- package/src/util/logging.ts +163 -73
- package/src/util/make-link.ts +8 -9
- package/src/util/nice-grpc.ts +96 -0
- package/src/util/parse-workspace-id.spec.ts +62 -12
- package/src/util/parse-workspace-id.ts +40 -10
- package/src/util/queue.spec.ts +30 -28
- package/src/util/queue.ts +2 -2
- package/src/util/repeat.ts +45 -0
- package/src/util/semaphore.ts +8 -10
- package/src/util/skip-if.ts +12 -9
- package/src/util/timeutil.spec.ts +42 -16
- package/src/util/timeutil.ts +33 -17
- package/src/util/tracing.spec.ts +88 -0
- package/src/util/tracing.ts +211 -33
- package/src/util/workspace-port-authentication.ts +12 -15
- package/src/webhook-event.ts +55 -0
- package/src/workspace-class.ts +14 -0
- package/src/workspace-cluster.ts +121 -0
- package/src/workspace-instance.ts +120 -36
- package/src/wsready.ts +11 -4
- package/data/builtin-theia-plugins.json +0 -362
- package/lib/email-protocol.d.ts +0 -49
- package/lib/email-protocol.d.ts.map +0 -1
- package/lib/email-protocol.js +0 -27
- package/lib/email-protocol.js.map +0 -1
- package/lib/messaging/connection-error-handler.d.ts +0 -27
- package/lib/messaging/connection-error-handler.d.ts.map +0 -1
- package/lib/messaging/connection-error-handler.js +0 -45
- package/lib/messaging/connection-error-handler.js.map +0 -1
- package/lib/theia-plugins.d.ts +0 -11
- package/lib/theia-plugins.d.ts.map +0 -1
- package/lib/theia-plugins.js +0 -8
- package/lib/theia-plugins.js.map +0 -1
- package/lib/util/repeater.d.ts +0 -22
- package/lib/util/repeater.d.ts.map +0 -1
- package/lib/util/repeater.js +0 -117
- package/lib/util/repeater.js.map +0 -1
- package/lib/util/safe-promise.d.ts +0 -11
- package/lib/util/safe-promise.d.ts.map +0 -1
- package/lib/util/safe-promise.js +0 -33
- package/lib/util/safe-promise.js.map +0 -1
- package/lib/util/without.d.ts +0 -7
- package/lib/util/without.d.ts.map +0 -1
- package/lib/util/without.js +0 -8
- package/lib/util/without.js.map +0 -1
- package/src/email-protocol.ts +0 -67
- package/src/messaging/connection-error-handler.ts +0 -62
- package/src/theia-plugins.ts +0 -11
- package/src/util/jaeger-client.d.ts +0 -105
- package/src/util/repeater.ts +0 -49
- package/src/util/safe-promise.ts +0 -26
- package/src/util/without.ts +0 -8
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Copyright (c) 2020
|
|
2
|
+
* Copyright (c) 2020 Gitpod GmbH. All rights reserved.
|
|
3
3
|
* Licensed under the GNU Affero General Public License (AGPL).
|
|
4
|
-
* See License
|
|
4
|
+
* See License.AGPL.txt in the project root for license information.
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
import { NamedWorkspaceFeatureFlag } from "./protocol";
|
|
@@ -23,16 +23,22 @@ export interface WorkspaceInstance {
|
|
|
23
23
|
// The time an instance has switched phase to 'Running'
|
|
24
24
|
startedTime?: string;
|
|
25
25
|
|
|
26
|
+
// The time an instance has switched phase to 'Stopping' */
|
|
27
|
+
stoppingTime?: string;
|
|
28
|
+
|
|
26
29
|
// The time an instance has switched phase to 'Stopped' */
|
|
27
30
|
stoppedTime?: string;
|
|
28
31
|
|
|
29
32
|
// ideUrl is the URL at which the workspace is available on the internet
|
|
33
|
+
// Note: this is nitially empty, filled during starting process!
|
|
30
34
|
ideUrl: string;
|
|
31
35
|
|
|
32
36
|
// region is the name of the workspace cluster this instance runs in
|
|
37
|
+
// Note: this is nitially empty, filled during starting process!
|
|
33
38
|
region: string;
|
|
34
39
|
|
|
35
40
|
// workspaceImage is the name of the Docker image this instance runs
|
|
41
|
+
// Note: this is nitially empty, filled during starting process!
|
|
36
42
|
workspaceImage: string;
|
|
37
43
|
|
|
38
44
|
// status is the latest status of the instance that we're aware of
|
|
@@ -43,12 +49,34 @@ export interface WorkspaceInstance {
|
|
|
43
49
|
// values here.
|
|
44
50
|
configuration?: WorkspaceInstanceConfiguration;
|
|
45
51
|
|
|
46
|
-
// instance is hard-deleted on the database and about to be collected by
|
|
52
|
+
// instance is hard-deleted on the database and about to be collected by periodic deleter
|
|
47
53
|
readonly deleted?: boolean;
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Contains information about the image build, if there was any
|
|
57
|
+
*/
|
|
58
|
+
imageBuildInfo?: ImageBuildInfo;
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* workspace class, also known as workspace size, determines the type of
|
|
62
|
+
* resources that are provided to the workspace.
|
|
63
|
+
*/
|
|
64
|
+
workspaceClass?: string;
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Identifies the team or user to which this instance's runtime should be attributed to
|
|
68
|
+
* (e.g. for usage analytics or billing purposes).
|
|
69
|
+
*/
|
|
70
|
+
usageAttributionId?: string;
|
|
48
71
|
}
|
|
49
72
|
|
|
50
73
|
// WorkspaceInstanceStatus describes the current state of a workspace instance
|
|
51
74
|
export interface WorkspaceInstanceStatus {
|
|
75
|
+
// version is the current version of the workspace instance status
|
|
76
|
+
// Note: consider this value opague. The only guarantee given is that it imposes
|
|
77
|
+
// a partial order on status updates, i.e. a.version > b.version -> a newer than b.
|
|
78
|
+
version?: number;
|
|
79
|
+
|
|
52
80
|
// phase describes a high-level state of the workspace instance
|
|
53
81
|
phase: WorkspaceInstancePhase;
|
|
54
82
|
|
|
@@ -70,6 +98,12 @@ export interface WorkspaceInstanceStatus {
|
|
|
70
98
|
// nodeName is the name of the node the instance was scheduled onto
|
|
71
99
|
nodeName?: string;
|
|
72
100
|
|
|
101
|
+
// podName is the name of the pod of this instance
|
|
102
|
+
podName?: string;
|
|
103
|
+
|
|
104
|
+
// nodeIp is the IP of the node the workspace is running on
|
|
105
|
+
nodeIp?: string;
|
|
106
|
+
|
|
73
107
|
// ownerToken is the token one needs to access the workspace. Its presence is checked by ws-proxy.
|
|
74
108
|
ownerToken?: string;
|
|
75
109
|
}
|
|
@@ -77,53 +111,55 @@ export interface WorkspaceInstanceStatus {
|
|
|
77
111
|
// WorkspaceInstancePhase describes a high-level state of a workspace instance
|
|
78
112
|
export type WorkspaceInstancePhase =
|
|
79
113
|
// unknown indicates an issue within the system in that it cannot determine the actual phase of
|
|
80
|
-
|
|
81
|
-
"unknown"
|
|
114
|
+
// a workspace. This phase is usually accompanied by an error.
|
|
115
|
+
| "unknown"
|
|
82
116
|
|
|
83
117
|
// Preparing means that we haven't actually started the workspace instance just yet, but rather
|
|
84
|
-
// are still preparing for launch.
|
|
85
|
-
"preparing"
|
|
118
|
+
// are still preparing for launch.
|
|
119
|
+
| "preparing"
|
|
120
|
+
|
|
121
|
+
// Building means that we are building the Docker image for the workspace. A workspace will enter this phase only
|
|
122
|
+
// if an image build is required for that workspace.
|
|
123
|
+
| "building"
|
|
86
124
|
|
|
87
125
|
// Pending means the workspace does not yet consume resources in the cluster, but rather is looking for
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
"pending"
|
|
126
|
+
// some space within the cluster. If for example the cluster needs to scale up to accomodate the
|
|
127
|
+
// workspace, the workspace will be in Pending state until that happened.
|
|
128
|
+
| "pending"
|
|
91
129
|
|
|
92
130
|
// Creating means the workspace is currently being created. Thati includes downloading the images required
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
"creating"
|
|
131
|
+
// to run the workspace over the network. The time spent in this phase varies widely and depends on the current
|
|
132
|
+
// network speed, image size and cache states.
|
|
133
|
+
| "creating"
|
|
96
134
|
|
|
97
135
|
// Initializing is the phase in which the workspace is executing the appropriate workspace initializer (e.g. Git
|
|
98
|
-
|
|
99
|
-
"initializing"
|
|
136
|
+
// clone or backup download). After this phase one can expect the workspace to either be Running or Failed.
|
|
137
|
+
| "initializing"
|
|
100
138
|
|
|
101
139
|
// Running means the workspace is able to actively perform work, either by serving a user through Theia,
|
|
102
|
-
|
|
103
|
-
"running"
|
|
140
|
+
// or as a headless workspace.
|
|
141
|
+
| "running"
|
|
104
142
|
|
|
105
143
|
// Interrupted is an exceptional state where the container should be running but is temporarily unavailable.
|
|
106
144
|
// When in this state, we expect it to become running or stopping anytime soon.
|
|
107
|
-
"interrupted"
|
|
145
|
+
| "interrupted"
|
|
108
146
|
|
|
109
147
|
// Stopping means that the workspace is currently shutting down. It could go to stopped every moment.
|
|
110
|
-
"stopping"
|
|
148
|
+
| "stopping"
|
|
111
149
|
|
|
112
150
|
// Stopped means the workspace ended regularly because it was shut down.
|
|
113
|
-
"stopped";
|
|
151
|
+
| "stopped";
|
|
114
152
|
|
|
115
153
|
export interface WorkspaceInstanceConditions {
|
|
116
154
|
// Failed contains the reason the workspace failed to operate. If this field is empty, the workspace has not failed.
|
|
117
|
-
failed
|
|
155
|
+
// failed contains technical details for the failure of the workspace.
|
|
156
|
+
failed?: string;
|
|
118
157
|
|
|
119
158
|
// timeout contains the reason the workspace has timed out. If this field is empty, the workspace has not timed out.
|
|
120
|
-
timeout?: string
|
|
159
|
+
timeout?: string;
|
|
121
160
|
|
|
122
161
|
// PullingImages marks if the workspace is currently pulling its images. This condition can only be set during PhaseCreating
|
|
123
|
-
pullingImages?: boolean
|
|
124
|
-
|
|
125
|
-
// ServiceExists denotes if the workspace theia-/ports- services exist. This condition will be true if either of the two services exist.
|
|
126
|
-
serviceExists?: boolean
|
|
162
|
+
pullingImages?: boolean;
|
|
127
163
|
|
|
128
164
|
// deployed marks that a workspace instance was sent/deployed at a workspace manager
|
|
129
165
|
deployed?: boolean;
|
|
@@ -133,22 +169,28 @@ export interface WorkspaceInstanceConditions {
|
|
|
133
169
|
|
|
134
170
|
// ISO8601 timestamp when the first user activity was registered in the frontend. Only set if the workspace is running.
|
|
135
171
|
firstUserActivity?: string;
|
|
172
|
+
|
|
173
|
+
// headlessTaskFailed indicates that a headless workspace task failed
|
|
174
|
+
// headlessTaskFailed is only set if:
|
|
175
|
+
// * this workspace is headless
|
|
176
|
+
// * the task being run returned a non 0 exit status code
|
|
177
|
+
headlessTaskFailed?: string;
|
|
178
|
+
|
|
179
|
+
// stopped_by_request is true if the workspace was stopped using a StopWorkspace call
|
|
180
|
+
stoppedByRequest?: boolean;
|
|
136
181
|
}
|
|
137
182
|
|
|
138
183
|
// AdmissionLevel describes who can access a workspace instance and its ports.
|
|
139
|
-
export type AdmissionLevel =
|
|
184
|
+
export type AdmissionLevel = "owner_only" | "everyone";
|
|
140
185
|
|
|
141
186
|
// PortVisibility describes how a port can be accessed
|
|
142
|
-
export type PortVisibility =
|
|
187
|
+
export type PortVisibility = "public" | "private";
|
|
143
188
|
|
|
144
189
|
// WorkspaceInstancePort describes a port exposed on a workspace instance
|
|
145
190
|
export interface WorkspaceInstancePort {
|
|
146
191
|
// The outward-facing port number
|
|
147
192
|
port: number;
|
|
148
193
|
|
|
149
|
-
// An optional inward-facing port number. If not present we'll use port.
|
|
150
|
-
targetPort?: number;
|
|
151
|
-
|
|
152
194
|
// The visiblity of this port. Optional for backwards compatibility.
|
|
153
195
|
visibility?: PortVisibility;
|
|
154
196
|
|
|
@@ -168,26 +210,68 @@ export interface WorkspaceInstanceRepoStatus {
|
|
|
168
210
|
uncommitedFiles?: string[];
|
|
169
211
|
|
|
170
212
|
// the total number of uncommited files
|
|
171
|
-
totalUncommitedFiles?: number
|
|
213
|
+
totalUncommitedFiles?: number;
|
|
172
214
|
|
|
173
215
|
// untrackedFiles is the list of untracked files in the workspace, possibly truncated
|
|
174
216
|
untrackedFiles?: string[];
|
|
175
217
|
|
|
176
218
|
// the total number of untracked files
|
|
177
|
-
totalUntrackedFiles?: number
|
|
219
|
+
totalUntrackedFiles?: number;
|
|
178
220
|
|
|
179
221
|
// unpushedCommits is the list of unpushed changes in the workspace, possibly truncated
|
|
180
222
|
unpushedCommits?: string[];
|
|
181
223
|
|
|
182
224
|
// the total number of unpushed changes
|
|
183
|
-
totalUnpushedCommits?: number
|
|
225
|
+
totalUnpushedCommits?: number;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
// ConfigurationIdeConfig ide config of WorkspaceInstanceConfiguration
|
|
229
|
+
export interface ConfigurationIdeConfig {
|
|
230
|
+
useLatest?: boolean;
|
|
231
|
+
desktopIdeAlias?: string;
|
|
184
232
|
}
|
|
185
233
|
|
|
186
234
|
// WorkspaceInstanceConfiguration contains all per-instance configuration
|
|
187
235
|
export interface WorkspaceInstanceConfiguration {
|
|
188
236
|
// theiaVersion is the version of Theia this workspace instance uses
|
|
189
|
-
|
|
237
|
+
// @deprected: replaced with the ideImage field
|
|
238
|
+
theiaVersion?: string;
|
|
190
239
|
|
|
191
240
|
// feature flags are the lowercase feature-flag names as passed to ws-manager
|
|
192
241
|
featureFlags?: NamedWorkspaceFeatureFlag[];
|
|
193
|
-
|
|
242
|
+
|
|
243
|
+
// ideImage is the ref of the IDE image this instance uses.
|
|
244
|
+
ideImage: string;
|
|
245
|
+
|
|
246
|
+
// ideImageLayers are images needed for the ide to run,
|
|
247
|
+
// including ide-desktop, desktop-plugin and so on
|
|
248
|
+
ideImageLayers?: string[];
|
|
249
|
+
|
|
250
|
+
// desktopIdeImage is the ref of the desktop IDE image this instance uses.
|
|
251
|
+
// @deprected: replaced with the ideImageLayers field
|
|
252
|
+
desktopIdeImage?: string;
|
|
253
|
+
|
|
254
|
+
// desktopIdePluginImage is the ref of the desktop IDE plugin image this instance uses.
|
|
255
|
+
// @deprected: replaced with the desktopIdePluginImage field
|
|
256
|
+
desktopIdePluginImage?: string;
|
|
257
|
+
|
|
258
|
+
// supervisorImage is the ref of the supervisor image this instance uses.
|
|
259
|
+
supervisorImage?: string;
|
|
260
|
+
|
|
261
|
+
ideConfig?: ConfigurationIdeConfig;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
/**
|
|
265
|
+
* Holds information about the image build (if there was one) for this WorkspaceInstance
|
|
266
|
+
*/
|
|
267
|
+
export interface ImageBuildInfo {
|
|
268
|
+
log?: ImageBuildLogInfo;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
/**
|
|
272
|
+
* Holds information about how to access logs for this an image build
|
|
273
|
+
*/
|
|
274
|
+
export interface ImageBuildLogInfo {
|
|
275
|
+
url: string;
|
|
276
|
+
headers: { [key: string]: string };
|
|
277
|
+
}
|
package/src/wsready.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Copyright (c)
|
|
2
|
+
* Copyright (c) 2023 Gitpod GmbH. All rights reserved.
|
|
3
3
|
* Licensed under the GNU Affero General Public License (AGPL).
|
|
4
|
-
* See License
|
|
4
|
+
* See License.AGPL.txt in the project root for license information.
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
// generated using github.com/32leaves/bel on
|
|
7
|
+
// generated using github.com/32leaves/bel on 2023-02-14 09:41:16.808994006 +0000 UTC m=+0.008933200
|
|
8
8
|
// DO NOT MODIFY
|
|
9
9
|
|
|
10
10
|
export enum WorkspaceInitSource {
|
|
@@ -13,5 +13,12 @@ export enum WorkspaceInitSource {
|
|
|
13
13
|
WorkspaceInitFromOther = "from-other",
|
|
14
14
|
}
|
|
15
15
|
export interface WorkspaceReadyMessage {
|
|
16
|
-
source: WorkspaceInitSource
|
|
16
|
+
source: WorkspaceInitSource;
|
|
17
|
+
metrics: InitializerMetric[];
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export interface InitializerMetric {
|
|
21
|
+
type: string;
|
|
22
|
+
duration: number;
|
|
23
|
+
size: number;
|
|
17
24
|
}
|
|
@@ -1,362 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"loc": "vscode.bat-1.44.2.vsix",
|
|
4
|
-
"name": "vscode.bat@1.44.2",
|
|
5
|
-
"url": "https://open-vsx.org/api/vscode/bat/1.44.2/file/vscode.bat-1.44.2.vsix"
|
|
6
|
-
},
|
|
7
|
-
{
|
|
8
|
-
"loc": "vscode.clojure-1.44.2.vsix",
|
|
9
|
-
"name": "vscode.clojure@1.44.2",
|
|
10
|
-
"url": "https://open-vsx.org/api/vscode/clojure/1.44.2/file/vscode.clojure-1.44.2.vsix"
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"loc": "vscode.coffeescript-1.44.2.vsix",
|
|
14
|
-
"name": "vscode.coffeescript@1.44.2",
|
|
15
|
-
"url": "https://open-vsx.org/api/vscode/coffeescript/1.44.2/file/vscode.coffeescript-1.44.2.vsix"
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"loc": "vscode.cpp-1.44.2.vsix",
|
|
19
|
-
"name": "vscode.cpp@1.44.2",
|
|
20
|
-
"url": "https://open-vsx.org/api/vscode/cpp/1.44.2/file/vscode.cpp-1.44.2.vsix"
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"loc": "vscode.csharp-1.44.2.vsix",
|
|
24
|
-
"name": "vscode.csharp@1.44.2",
|
|
25
|
-
"url": "https://open-vsx.org/api/vscode/csharp/1.44.2/file/vscode.csharp-1.44.2.vsix"
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"loc": "llvm-vs-code-extensions.vscode-clangd-0.1.5.vsix",
|
|
29
|
-
"name": "llvm-vs-code-extensions.vscode-clangd@0.1.5",
|
|
30
|
-
"url": "https://open-vsx.org/api/llvm-vs-code-extensions/vscode-clangd/0.1.5/file/llvm-vs-code-extensions.vscode-clangd-0.1.5.vsix"
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"loc": "vscode.css-1.44.2.vsix",
|
|
34
|
-
"name": "vscode.css@1.44.2",
|
|
35
|
-
"url": "https://open-vsx.org/api/vscode/css/1.44.2/file/vscode.css-1.44.2.vsix"
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"loc": "vscode.debug-auto-launch-1.44.2.vsix",
|
|
39
|
-
"name": "vscode.debug-auto-launch@1.44.2",
|
|
40
|
-
"url": "https://open-vsx.org/api/vscode/debug-auto-launch/1.44.2/file/vscode.debug-auto-launch-1.44.2.vsix"
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"loc": "vscode.emmet-1.44.2.vsix",
|
|
44
|
-
"name": "vscode.emmet@1.44.2",
|
|
45
|
-
"url": "https://open-vsx.org/api/vscode/emmet/1.44.2/file/vscode.emmet-1.44.2.vsix"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"loc": "vscode.fsharp-1.44.2.vsix",
|
|
49
|
-
"name": "vscode.fsharp@1.44.2",
|
|
50
|
-
"url": "https://open-vsx.org/api/vscode/fsharp/1.44.2/file/vscode.fsharp-1.44.2.vsix"
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"loc": "vscode.go-1.44.2.vsix",
|
|
54
|
-
"name": "vscode.go@1.44.2",
|
|
55
|
-
"url": "https://open-vsx.org/api/vscode/go/1.44.2/file/vscode.go-1.44.2.vsix"
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"loc": "vscode.groovy-1.44.2.vsix",
|
|
59
|
-
"name": "vscode.groovy@1.44.2",
|
|
60
|
-
"url": "https://open-vsx.org/api/vscode/groovy/1.44.2/file/vscode.groovy-1.44.2.vsix"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"loc": "vscode.handlebars-1.44.2.vsix",
|
|
64
|
-
"name": "vscode.handlebars@1.44.2",
|
|
65
|
-
"url": "https://open-vsx.org/api/vscode/handlebars/1.44.2/file/vscode.handlebars-1.44.2.vsix"
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
"loc": "vscode.hlsl-1.44.2.vsix",
|
|
69
|
-
"name": "vscode.hlsl@1.44.2",
|
|
70
|
-
"url": "https://open-vsx.org/api/vscode/hlsl/1.44.2/file/vscode.hlsl-1.44.2.vsix"
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"loc": "vscode.html-1.44.2.vsix",
|
|
74
|
-
"name": "vscode.html@1.44.2",
|
|
75
|
-
"url": "https://open-vsx.org/api/vscode/html/1.44.2/file/vscode.html-1.44.2.vsix"
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"loc": "vscode.ini-1.44.2.vsix",
|
|
79
|
-
"name": "vscode.ini@1.44.2",
|
|
80
|
-
"url": "https://open-vsx.org/api/vscode/ini/1.44.2/file/vscode.ini-1.44.2.vsix"
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
"loc": "vscode.java-1.48.0.vsix",
|
|
84
|
-
"name": "vscode.java@1.48.0",
|
|
85
|
-
"url": "https://open-vsx.org/api/vscode/java/1.48.0/file/vscode.java-1.48.0.vsix"
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
"loc": "vscode.javascript-1.44.2.vsix",
|
|
89
|
-
"name": "vscode.javascript@1.44.2",
|
|
90
|
-
"url": "https://open-vsx.org/api/vscode/javascript/1.44.2/file/vscode.javascript-1.44.2.vsix"
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"loc": "vscode.json-1.44.2.vsix",
|
|
94
|
-
"name": "vscode.json@1.44.2",
|
|
95
|
-
"url": "https://open-vsx.org/api/vscode/json/1.44.2/file/vscode.json-1.44.2.vsix"
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"loc": "vscode.json-language-features-1.46.1.vsix",
|
|
99
|
-
"name": "vscode.json-language-features@1.46.1",
|
|
100
|
-
"url": "https://open-vsx.org/api/vscode/json-language-features/1.46.1/file/vscode.json-language-features-1.46.1.vsix"
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
"loc": "vscode.less-1.44.2.vsix",
|
|
104
|
-
"name": "vscode.less@1.44.2",
|
|
105
|
-
"url": "https://open-vsx.org/api/vscode/less/1.44.2/file/vscode.less-1.44.2.vsix"
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
"loc": "vscode.log-1.44.2.vsix",
|
|
109
|
-
"name": "vscode.log@1.44.2",
|
|
110
|
-
"url": "https://open-vsx.org/api/vscode/log/1.44.2/file/vscode.log-1.44.2.vsix"
|
|
111
|
-
},
|
|
112
|
-
{
|
|
113
|
-
"loc": "vscode.lua-1.44.2.vsix",
|
|
114
|
-
"name": "vscode.lua@1.44.2",
|
|
115
|
-
"url": "https://open-vsx.org/api/vscode/lua/1.44.2/file/vscode.lua-1.44.2.vsix"
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
"loc": "vscode.make-1.44.2.vsix",
|
|
119
|
-
"name": "vscode.make@1.44.2",
|
|
120
|
-
"url": "https://open-vsx.org/api/vscode/make/1.44.2/file/vscode.make-1.44.2.vsix"
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
"loc": "vscode.markdown-1.44.2.vsix",
|
|
124
|
-
"name": "vscode.markdown@1.44.2",
|
|
125
|
-
"url": "https://open-vsx.org/api/vscode/markdown/1.44.2/file/vscode.markdown-1.44.2.vsix"
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
"loc": "vscode.npm-1.39.1.vsix",
|
|
129
|
-
"name": "vscode.npm@1.39.1",
|
|
130
|
-
"url": "https://open-vsx.org/api/vscode/npm/1.39.1/file/vscode.npm-1.39.1.vsix"
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
"loc": "vscode.objective-c-1.44.2.vsix",
|
|
134
|
-
"name": "vscode.objective-c@1.44.2",
|
|
135
|
-
"url": "https://open-vsx.org/api/vscode/objective-c/1.44.2/file/vscode.objective-c-1.44.2.vsix"
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
"loc": "vscode.perl-1.44.2.vsix",
|
|
139
|
-
"name": "vscode.perl@1.44.2",
|
|
140
|
-
"url": "https://open-vsx.org/api/vscode/perl/1.44.2/file/vscode.perl-1.44.2.vsix"
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
"loc": "vscode.php-1.44.2.vsix",
|
|
144
|
-
"name": "vscode.php@1.44.2",
|
|
145
|
-
"url": "https://open-vsx.org/api/vscode/php/1.44.2/file/vscode.php-1.44.2.vsix"
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
"loc": "vscode.powershell-1.44.2.vsix",
|
|
149
|
-
"name": "vscode.powershell@1.44.2",
|
|
150
|
-
"url": "https://open-vsx.org/api/vscode/powershell/1.44.2/file/vscode.powershell-1.44.2.vsix"
|
|
151
|
-
},
|
|
152
|
-
{
|
|
153
|
-
"loc": "vscode.pug-1.44.2.vsix",
|
|
154
|
-
"name": "vscode.pug@1.44.2",
|
|
155
|
-
"url": "https://open-vsx.org/api/vscode/pug/1.44.2/file/vscode.pug-1.44.2.vsix"
|
|
156
|
-
},
|
|
157
|
-
{
|
|
158
|
-
"loc": "vscode.python-1.47.3.vsix",
|
|
159
|
-
"name": "vscode.python@1.47.3",
|
|
160
|
-
"url": "https://open-vsx.org/api/vscode/python/1.47.3/file/vscode.python-1.47.3.vsix"
|
|
161
|
-
},
|
|
162
|
-
{
|
|
163
|
-
"loc": "vscode.r-1.44.2.vsix",
|
|
164
|
-
"name": "vscode.r@1.44.2",
|
|
165
|
-
"url": "https://open-vsx.org/api/vscode/r/1.44.2/file/vscode.r-1.44.2.vsix"
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
"loc": "vscode.razor-1.44.2.vsix",
|
|
169
|
-
"name": "vscode.razor@1.44.2",
|
|
170
|
-
"url": "https://open-vsx.org/api/vscode/razor/1.44.2/file/vscode.razor-1.44.2.vsix"
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
"loc": "vscode.ruby-1.44.2.vsix",
|
|
174
|
-
"name": "vscode.ruby@1.44.2",
|
|
175
|
-
"url": "https://open-vsx.org/api/vscode/ruby/1.44.2/file/vscode.ruby-1.44.2.vsix"
|
|
176
|
-
},
|
|
177
|
-
{
|
|
178
|
-
"loc": "vscode.rust-1.44.2.vsix",
|
|
179
|
-
"name": "vscode.rust@1.44.2",
|
|
180
|
-
"url": "https://open-vsx.org/api/vscode/rust/1.44.2/file/vscode.rust-1.44.2.vsix"
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
"loc": "vscode.scss-1.44.2.vsix",
|
|
184
|
-
"name": "vscode.scss@1.44.2",
|
|
185
|
-
"url": "https://open-vsx.org/api/vscode/scss/1.44.2/file/vscode.scss-1.44.2.vsix"
|
|
186
|
-
},
|
|
187
|
-
{
|
|
188
|
-
"loc": "vscode.shaderlab-1.44.2.vsix",
|
|
189
|
-
"name": "vscode.shaderlab@1.44.2",
|
|
190
|
-
"url": "https://open-vsx.org/api/vscode/shaderlab/1.44.2/file/vscode.shaderlab-1.44.2.vsix"
|
|
191
|
-
},
|
|
192
|
-
{
|
|
193
|
-
"loc": "vscode.shellscript-1.44.2.vsix",
|
|
194
|
-
"name": "vscode.shellscript@1.44.2",
|
|
195
|
-
"url": "https://open-vsx.org/api/vscode/shellscript/1.44.2/file/vscode.shellscript-1.44.2.vsix"
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
"loc": "vscode.sql-1.44.2.vsix",
|
|
199
|
-
"name": "vscode.sql@1.44.2",
|
|
200
|
-
"url": "https://open-vsx.org/api/vscode/sql/1.44.2/file/vscode.sql-1.44.2.vsix"
|
|
201
|
-
},
|
|
202
|
-
{
|
|
203
|
-
"loc": "vscode.swift-1.44.2.vsix",
|
|
204
|
-
"name": "vscode.swift@1.44.2",
|
|
205
|
-
"url": "https://open-vsx.org/api/vscode/swift/1.44.2/file/vscode.swift-1.44.2.vsix"
|
|
206
|
-
},
|
|
207
|
-
{
|
|
208
|
-
"loc": "vscode.typescript-1.44.2.vsix",
|
|
209
|
-
"name": "vscode.typescript@1.44.2",
|
|
210
|
-
"url": "https://open-vsx.org/api/vscode/typescript/1.44.2/file/vscode.typescript-1.44.2.vsix"
|
|
211
|
-
},
|
|
212
|
-
{
|
|
213
|
-
"loc": "vscode.typescript-language-features-1.44.2.vsix",
|
|
214
|
-
"name": "vscode.typescript-language-features@1.44.2",
|
|
215
|
-
"url": "https://open-vsx.org/api/vscode/typescript-language-features/1.44.2/file/vscode.typescript-language-features-1.44.2.vsix"
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
"loc": "vscode.vb-1.44.2.vsix",
|
|
219
|
-
"name": "vscode.vb@1.44.2",
|
|
220
|
-
"url": "https://open-vsx.org/api/vscode/vb/1.44.2/file/vscode.vb-1.44.2.vsix"
|
|
221
|
-
},
|
|
222
|
-
{
|
|
223
|
-
"loc": "vscode.xml-1.44.2.vsix",
|
|
224
|
-
"name": "vscode.xml@1.44.2",
|
|
225
|
-
"url": "https://open-vsx.org/api/vscode/xml/1.44.2/file/vscode.xml-1.44.2.vsix"
|
|
226
|
-
},
|
|
227
|
-
{
|
|
228
|
-
"loc": "vscode.yaml-1.44.2.vsix",
|
|
229
|
-
"name": "vscode.yaml@1.44.2",
|
|
230
|
-
"url": "https://open-vsx.org/api/vscode/yaml/1.44.2/file/vscode.yaml-1.44.2.vsix"
|
|
231
|
-
},
|
|
232
|
-
{
|
|
233
|
-
"loc": "redhat.java-0.65.0.vsix",
|
|
234
|
-
"name": "redhat.java@0.65.0",
|
|
235
|
-
"url": "https://open-vsx.org/api/redhat/java/0.65.0/file/redhat.java-0.65.0.vsix"
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
"loc": "vscjava.vscode-java-debug-0.27.1.vsix",
|
|
239
|
-
"name": "vscjava.vscode-java-debug@0.27.1",
|
|
240
|
-
"url": "https://open-vsx.org/api/vscjava/vscode-java-debug/0.27.1/file/vscjava.vscode-java-debug-0.27.1.vsix"
|
|
241
|
-
},
|
|
242
|
-
{
|
|
243
|
-
"loc": "vscjava.vscode-java-dependency-0.9.0.vsix",
|
|
244
|
-
"name": "vscjava.vscode-java-dependency@0.9.0",
|
|
245
|
-
"url": "https://open-vsx.org/api/vscjava/vscode-java-dependency/0.9.0/file/vscjava.vscode-java-dependency-0.9.0.vsix"
|
|
246
|
-
},
|
|
247
|
-
{
|
|
248
|
-
"loc": "ms-vscode.node-debug-1.38.4.vsix",
|
|
249
|
-
"name": "ms-vscode.node-debug@1.38.4",
|
|
250
|
-
"url": "https://open-vsx.org/api/ms-vscode/node-debug/1.38.4/file/ms-vscode.node-debug-1.38.4.vsix"
|
|
251
|
-
},
|
|
252
|
-
{
|
|
253
|
-
"loc": "ms-vscode.node-debug2-1.33.0.vsix",
|
|
254
|
-
"name": "ms-vscode.node-debug2@1.33.0",
|
|
255
|
-
"url": "https://open-vsx.org/api/ms-vscode/node-debug2/1.33.0/file/ms-vscode.node-debug2-1.33.0.vsix"
|
|
256
|
-
},
|
|
257
|
-
{
|
|
258
|
-
"loc": "ms-python.python-2020.7.96456.vsix",
|
|
259
|
-
"name": "ms-python.python@2020.7.96456",
|
|
260
|
-
"url": "https://open-vsx.org/api/ms-python/python/2020.7.96456/file/ms-python.python-2020.7.96456.vsix"
|
|
261
|
-
},
|
|
262
|
-
{
|
|
263
|
-
"loc": "ms-vscode.Go-0.14.3.vsix",
|
|
264
|
-
"name": "ms-vscode.Go@0.14.3",
|
|
265
|
-
"url": "https://open-vsx.org/api/ms-vscode/Go/0.14.3/file/ms-vscode.Go-0.14.3.vsix"
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
"loc": "redhat.vscode-xml-0.11.0.vsix",
|
|
269
|
-
"name": "redhat.vscode-xml@0.11.0",
|
|
270
|
-
"url": "https://open-vsx.org/api/redhat/vscode-xml/0.11.0/file/redhat.vscode-xml-0.11.0.vsix"
|
|
271
|
-
},
|
|
272
|
-
{
|
|
273
|
-
"loc": "redhat.vscode-yaml-0.8.0.vsix",
|
|
274
|
-
"name": "redhat.vscode-yaml@0.8.0",
|
|
275
|
-
"url": "https://open-vsx.org/api/redhat/vscode-yaml/0.8.0/file/redhat.vscode-yaml-0.8.0.vsix"
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
"loc": "bmewburn.vscode-intelephense-client-1.4.0.vsix",
|
|
279
|
-
"name": "bmewburn.vscode-intelephense-client@1.4.0",
|
|
280
|
-
"url": "https://open-vsx.org/api/bmewburn/vscode-intelephense-client/1.4.0/file/bmewburn.vscode-intelephense-client-1.4.0.vsix"
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
"loc": "felixfbecker.php-debug-1.13.0.vsix",
|
|
284
|
-
"name": "felixfbecker.php-debug@1.13.0",
|
|
285
|
-
"url": "https://open-vsx.org/api/felixfbecker/php-debug/1.13.0/file/felixfbecker.php-debug-1.13.0.vsix"
|
|
286
|
-
},
|
|
287
|
-
{
|
|
288
|
-
"loc": "rust-lang.rust-0.7.8.vsix",
|
|
289
|
-
"name": "rust-lang.rust@0.7.8",
|
|
290
|
-
"url": "https://open-vsx.org/api/rust-lang/rust/0.7.8/file/rust-lang.rust-0.7.8.vsix"
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
"loc": "vscode.theme-abyss-1.44.2.vsix",
|
|
294
|
-
"name": "vscode.theme-abyss@1.44.2",
|
|
295
|
-
"url": "https://open-vsx.org/api/vscode/theme-abyss/1.44.2/file/vscode.theme-abyss-1.44.2.vsix"
|
|
296
|
-
},
|
|
297
|
-
{
|
|
298
|
-
"loc": "vscode.theme-kimbie-dark-1.44.2.vsix",
|
|
299
|
-
"name": "vscode.theme-kimbie-dark@1.44.2",
|
|
300
|
-
"url": "https://open-vsx.org/api/vscode/theme-kimbie-dark/1.44.2/file/vscode.theme-kimbie-dark-1.44.2.vsix"
|
|
301
|
-
},
|
|
302
|
-
{
|
|
303
|
-
"loc": "vscode.theme-monokai-1.44.2.vsix",
|
|
304
|
-
"name": "vscode.theme-monokai@1.44.2",
|
|
305
|
-
"url": "https://open-vsx.org/api/vscode/theme-monokai/1.44.2/file/vscode.theme-monokai-1.44.2.vsix"
|
|
306
|
-
},
|
|
307
|
-
{
|
|
308
|
-
"loc": "vscode.theme-monokai-dimmed-1.44.2.vsix",
|
|
309
|
-
"name": "vscode.theme-monokai-dimmed@1.44.2",
|
|
310
|
-
"url": "https://open-vsx.org/api/vscode/theme-monokai-dimmed/1.44.2/file/vscode.theme-monokai-dimmed-1.44.2.vsix"
|
|
311
|
-
},
|
|
312
|
-
{
|
|
313
|
-
"loc": "vscode.theme-quietlight-1.44.2.vsix",
|
|
314
|
-
"name": "vscode.theme-quietlight@1.44.2",
|
|
315
|
-
"url": "https://open-vsx.org/api/vscode/theme-quietlight/1.44.2/file/vscode.theme-quietlight-1.44.2.vsix"
|
|
316
|
-
},
|
|
317
|
-
{
|
|
318
|
-
"loc": "vscode.theme-red-1.44.2.vsix",
|
|
319
|
-
"name": "vscode.theme-red@1.44.2",
|
|
320
|
-
"url": "https://open-vsx.org/api/vscode/theme-red/1.44.2/file/vscode.theme-red-1.44.2.vsix"
|
|
321
|
-
},
|
|
322
|
-
{
|
|
323
|
-
"loc": "vscode.theme-solarized-dark-1.44.2.vsix",
|
|
324
|
-
"name": "vscode.theme-solarized-dark@1.44.2",
|
|
325
|
-
"url": "https://open-vsx.org/api/vscode/theme-solarized-dark/1.44.2/file/vscode.theme-solarized-dark-1.44.2.vsix"
|
|
326
|
-
},
|
|
327
|
-
{
|
|
328
|
-
"loc": "vscode.theme-solarized-light-1.44.2.vsix",
|
|
329
|
-
"name": "vscode.theme-solarized-light@1.44.2",
|
|
330
|
-
"url": "https://open-vsx.org/api/vscode/theme-solarized-light/1.44.2/file/vscode.theme-solarized-light-1.44.2.vsix"
|
|
331
|
-
},
|
|
332
|
-
{
|
|
333
|
-
"loc": "vscode.theme-tomorrow-night-blue-1.44.2.vsix",
|
|
334
|
-
"name": "vscode.theme-tomorrow-night-blue@1.44.2",
|
|
335
|
-
"url": "https://open-vsx.org/api/vscode/theme-tomorrow-night-blue/1.44.2/file/vscode.theme-tomorrow-night-blue-1.44.2.vsix"
|
|
336
|
-
},
|
|
337
|
-
{
|
|
338
|
-
"loc": "vscode.vscode-theme-seti-1.44.2.vsix",
|
|
339
|
-
"name": "vscode.vscode-theme-seti@1.44.2",
|
|
340
|
-
"url": "https://open-vsx.org/api/vscode/vscode-theme-seti/1.44.2/file/vscode.vscode-theme-seti-1.44.2.vsix"
|
|
341
|
-
},
|
|
342
|
-
{
|
|
343
|
-
"loc": "vscode.merge-conflict-1.44.2.vsix",
|
|
344
|
-
"name": "vscode.merge-conflict@1.44.2",
|
|
345
|
-
"url": "https://open-vsx.org/api/vscode/merge-conflict/1.44.2/file/vscode.merge-conflict-1.44.2.vsix"
|
|
346
|
-
},
|
|
347
|
-
{
|
|
348
|
-
"loc": "references-view-0.0.47.vsix",
|
|
349
|
-
"name": "ms-vscode.references-view@0.0.47",
|
|
350
|
-
"url": "https://open-vsx.org/api/ms-vscode/references-view/0.0.47/file/ms-vscode.references-view-0.0.47.vsix"
|
|
351
|
-
},
|
|
352
|
-
{
|
|
353
|
-
"loc": "EditorConfig.EditorConfig-0.15.1.vsix",
|
|
354
|
-
"name": "EditorConfig.EditorConfig@0.15.1",
|
|
355
|
-
"url": "https://open-vsx.org/api/EditorConfig/EditorConfig/0.15.1/file/EditorConfig.EditorConfig-0.15.1.vsix"
|
|
356
|
-
},
|
|
357
|
-
{
|
|
358
|
-
"loc": "vscode.docker-1.47.3.vsix",
|
|
359
|
-
"name": "vscode.docker@1.47.3",
|
|
360
|
-
"url": "https://open-vsx.org/api/vscode/docker/1.47.3/file/vscode.docker-1.47.3.vsix"
|
|
361
|
-
}
|
|
362
|
-
]
|