@lepsto/sdk-app 85.0.1 → 87.1.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/dist/{chunk-HRKHYP5B.js → chunk-EMK3O6JA.js} +4 -4
- package/dist/{chunk-HRKHYP5B.js.map → chunk-EMK3O6JA.js.map} +1 -1
- package/dist/index.cjs +12 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +11 -7
- package/dist/index.js.map +1 -1
- package/dist/playground/index.cjs.map +1 -1
- package/dist/playground/index.js +1 -1
- package/docs/recipes/sdk-usage.md +4 -3
- package/package.json +3 -2
- package/src/gen/bindings.gen.ts +2 -2
- package/src/gen/manifest.gen.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { bindings } from './chunk-
|
|
1
|
+
import { bindings } from './chunk-EMK3O6JA.js';
|
|
2
2
|
|
|
3
3
|
// src/runtime/errors.ts
|
|
4
4
|
var ACCESS_DENIED_CODES = /* @__PURE__ */ new Set([
|
|
@@ -35,11 +35,15 @@ function isAccessDenied(err) {
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
// src/runtime/csrf.ts
|
|
38
|
-
var
|
|
38
|
+
var CSRF_COOKIES = ["lepsto_csrf", "lessly_csrf"];
|
|
39
39
|
function readCsrfCookie() {
|
|
40
40
|
if (typeof document === "undefined" || !document) return null;
|
|
41
|
-
const
|
|
42
|
-
|
|
41
|
+
for (const name of CSRF_COOKIES) {
|
|
42
|
+
const match = document.cookie.match(new RegExp(`(?:^|; )${name}=([^;]*)`));
|
|
43
|
+
const value = match ? decodeURIComponent(match[1]) : "";
|
|
44
|
+
if (value) return value;
|
|
45
|
+
}
|
|
46
|
+
return null;
|
|
43
47
|
}
|
|
44
48
|
|
|
45
49
|
// src/runtime/request.ts
|
|
@@ -125,7 +129,7 @@ async function executeRequest(opts, binding, input) {
|
|
|
125
129
|
throw new LesslyApiError(
|
|
126
130
|
0,
|
|
127
131
|
"csrf_cookie_missing",
|
|
128
|
-
`CSRF cookie "lessly_csrf" is missing; the session must be re-established before mutating requests (${binding.method} ${binding.path}).`,
|
|
132
|
+
`CSRF cookie "lepsto_csrf" (or the legacy "lessly_csrf") is missing; the session must be re-established before mutating requests (${binding.method} ${binding.path}).`,
|
|
129
133
|
null
|
|
130
134
|
);
|
|
131
135
|
}
|
|
@@ -807,7 +811,7 @@ var operations = {
|
|
|
807
811
|
"workflow_health_list": "read",
|
|
808
812
|
"workflow_health_ping": "read",
|
|
809
813
|
"workflow_killswitch_get": "read",
|
|
810
|
-
"workflow_killswitch_set": "
|
|
814
|
+
"workflow_killswitch_set": "admin",
|
|
811
815
|
"workflow_run_cancel": "write",
|
|
812
816
|
"workflow_run_get": "read",
|
|
813
817
|
"workflow_run_list": "read",
|
|
@@ -822,7 +826,7 @@ var operations = {
|
|
|
822
826
|
"workflow_version_list": "read",
|
|
823
827
|
"workflow_wait_get": "read",
|
|
824
828
|
"workflow_wait_list": "read",
|
|
825
|
-
"workflow_wait_list_all": "
|
|
829
|
+
"workflow_wait_list_all": "admin",
|
|
826
830
|
"workflow_wait_resolve": "write"
|
|
827
831
|
};
|
|
828
832
|
var compositions = {
|