@shipfox/api-server 12.6.0 → 13.0.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
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@shipfox/api-server",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "
|
|
5
|
+
"version": "13.0.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git+https://github.com/ShipfoxHQ/shipfox.git",
|
|
@@ -32,20 +32,20 @@
|
|
|
32
32
|
"@shipfox/api-definitions-dto": "12.3.0",
|
|
33
33
|
"@shipfox/api-dispatcher": "12.2.0",
|
|
34
34
|
"@shipfox/api-email-challenges": "1.1.8",
|
|
35
|
-
"@shipfox/api-integration-core": "
|
|
35
|
+
"@shipfox/api-integration-core": "13.0.0",
|
|
36
36
|
"@shipfox/api-integration-core-dto": "12.2.0",
|
|
37
|
-
"@shipfox/api-logs": "
|
|
37
|
+
"@shipfox/api-logs": "13.0.0",
|
|
38
38
|
"@shipfox/api-projects": "12.2.0",
|
|
39
39
|
"@shipfox/api-projects-dto": "12.2.0",
|
|
40
|
-
"@shipfox/api-runners": "
|
|
41
|
-
"@shipfox/api-runners-dto": "
|
|
40
|
+
"@shipfox/api-runners": "13.0.0",
|
|
41
|
+
"@shipfox/api-runners-dto": "13.0.0",
|
|
42
42
|
"@shipfox/api-secrets": "12.2.0",
|
|
43
43
|
"@shipfox/api-secrets-dto": "12.0.0",
|
|
44
|
-
"@shipfox/api-triggers": "
|
|
45
|
-
"@shipfox/api-workflows": "
|
|
46
|
-
"@shipfox/api-workflows-dto": "
|
|
44
|
+
"@shipfox/api-triggers": "13.0.0",
|
|
45
|
+
"@shipfox/api-workflows": "13.0.0",
|
|
46
|
+
"@shipfox/api-workflows-dto": "13.0.0",
|
|
47
47
|
"@shipfox/api-workspaces-dto": "12.0.0",
|
|
48
|
-
"@shipfox/api-workspaces": "
|
|
48
|
+
"@shipfox/api-workspaces": "13.0.0",
|
|
49
49
|
"@shipfox/config": "1.2.4",
|
|
50
50
|
"@shipfox/node-error-monitoring": "0.3.0",
|
|
51
51
|
"@shipfox/node-fastify": "0.4.2",
|
package/src/modules.test.ts
CHANGED
|
@@ -210,12 +210,9 @@ describe('defaultModules', () => {
|
|
|
210
210
|
{
|
|
211
211
|
contract: runnersInterModuleContract,
|
|
212
212
|
handlers: {
|
|
213
|
-
cancelJobs: vi.fn(),
|
|
214
|
-
enqueueJobExecution: vi.fn(),
|
|
215
213
|
getEffectiveRunnerToolCapabilities: vi.fn(),
|
|
216
214
|
getWorkspaceJobCounts: vi.fn(),
|
|
217
215
|
getLeaseState: vi.fn(),
|
|
218
|
-
releaseJobExecution: vi.fn(),
|
|
219
216
|
},
|
|
220
217
|
},
|
|
221
218
|
],
|