@shipfox/api-runners 9.0.3 → 9.3.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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipfox/api-runners",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "9.0
|
|
4
|
+
"version": "9.3.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/ShipfoxHQ/shipfox.git",
|
|
@@ -21,22 +21,22 @@
|
|
|
21
21
|
"@temporalio/workflow": "1.18.1",
|
|
22
22
|
"drizzle-orm": "^0.45.2",
|
|
23
23
|
"zod": "^4.4.3",
|
|
24
|
-
"@shipfox/api-auth-context": "9.0
|
|
25
|
-
"@shipfox/api-auth-dto": "9.0
|
|
24
|
+
"@shipfox/api-auth-context": "9.3.0",
|
|
25
|
+
"@shipfox/api-auth-dto": "9.3.0",
|
|
26
26
|
"@shipfox/api-runners-dto": "9.0.2",
|
|
27
|
-
"@shipfox/api-workflows-dto": "9.0
|
|
27
|
+
"@shipfox/api-workflows-dto": "9.3.0",
|
|
28
28
|
"@shipfox/config": "1.2.4",
|
|
29
29
|
"@shipfox/inter-module": "0.2.2",
|
|
30
30
|
"@shipfox/node-drizzle": "0.3.4",
|
|
31
31
|
"@shipfox/node-error-monitoring": "0.3.0",
|
|
32
32
|
"@shipfox/node-auth-root-key": "0.2.3",
|
|
33
|
-
"@shipfox/node-fastify": "0.3.
|
|
34
|
-
"@shipfox/node-module": "1.0.
|
|
35
|
-
"@shipfox/node-opentelemetry": "0.6.
|
|
33
|
+
"@shipfox/node-fastify": "0.3.4",
|
|
34
|
+
"@shipfox/node-module": "1.0.3",
|
|
35
|
+
"@shipfox/node-opentelemetry": "0.6.3",
|
|
36
36
|
"@shipfox/node-outbox": "0.2.6",
|
|
37
37
|
"@shipfox/node-postgres": "0.4.4",
|
|
38
38
|
"@shipfox/node-rate-limit": "0.3.2",
|
|
39
|
-
"@shipfox/node-temporal": "0.4.
|
|
39
|
+
"@shipfox/node-temporal": "0.4.4",
|
|
40
40
|
"@shipfox/node-tokens": "0.3.2",
|
|
41
41
|
"@shipfox/runner-labels": "0.1.3"
|
|
42
42
|
},
|
package/test/fixtures/auth.ts
CHANGED
|
@@ -82,4 +82,12 @@ export const runnersTestAuthClient: AuthInterModuleClient = {
|
|
|
82
82
|
mintJobLeaseToken(claims) {
|
|
83
83
|
return Promise.resolve({token: mintLeaseToken(claims)});
|
|
84
84
|
},
|
|
85
|
+
getCurrentAdminRole() {
|
|
86
|
+
return Promise.resolve({role: null});
|
|
87
|
+
},
|
|
88
|
+
requireAdminRole(_input) {
|
|
89
|
+
return Promise.reject(
|
|
90
|
+
new Error('Administrator role checks are not configured in runner tests'),
|
|
91
|
+
);
|
|
92
|
+
},
|
|
85
93
|
};
|