@vellumai/cli 0.9.0-dev.202606180114.0fe4ffc → 0.9.0-dev.202606180319.c59b38a
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/package.json
CHANGED
|
@@ -127,8 +127,6 @@ describe("buildIngressNginxConfig", () => {
|
|
|
127
127
|
"location = /v1/pair/ { return 404; }",
|
|
128
128
|
"location = /v1/pair/web-init { return 404; }",
|
|
129
129
|
"location = /v1/pair/web-init/ { return 404; }",
|
|
130
|
-
"location = /v1/remote-web/pairing-challenge { return 404; }",
|
|
131
|
-
"location = /v1/remote-web/pairing-challenge/ { return 404; }",
|
|
132
130
|
"location = /v1/devices { return 404; }",
|
|
133
131
|
"location = /v1/devices/ { return 404; }",
|
|
134
132
|
"location = /v1/devices/revoke { return 404; }",
|
package/src/lib/nginx-ingress.ts
CHANGED
|
@@ -255,8 +255,6 @@ function buildRemoteWebIngressLocations(opts: {
|
|
|
255
255
|
location = /v1/pair/ { return 404; }
|
|
256
256
|
location = /v1/pair/web-init { return 404; }
|
|
257
257
|
location = /v1/pair/web-init/ { return 404; }
|
|
258
|
-
location = /v1/remote-web/pairing-challenge { return 404; }
|
|
259
|
-
location = /v1/remote-web/pairing-challenge/ { return 404; }
|
|
260
258
|
location = /v1/devices { return 404; }
|
|
261
259
|
location = /v1/devices/ { return 404; }
|
|
262
260
|
location = /v1/devices/revoke { return 404; }
|