@shipfox/api-server 16.1.0 → 17.0.1
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": "17.0.1",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git+https://github.com/ShipfoxHQ/shipfox.git",
|
|
@@ -22,37 +22,37 @@
|
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@shipfox/annotations": "
|
|
25
|
+
"@shipfox/annotations": "17.0.0",
|
|
26
26
|
"@shipfox/annotations-dto": "12.3.0",
|
|
27
|
-
"@shipfox/api-agent": "
|
|
28
|
-
"@shipfox/api-agent-dto": "
|
|
29
|
-
"@shipfox/api-auth": "
|
|
30
|
-
"@shipfox/api-auth-dto": "
|
|
31
|
-
"@shipfox/api-definitions": "
|
|
32
|
-
"@shipfox/api-definitions-dto": "
|
|
33
|
-
"@shipfox/api-dispatcher": "
|
|
34
|
-
"@shipfox/api-email-challenges": "1.1.
|
|
35
|
-
"@shipfox/api-integration-core": "
|
|
27
|
+
"@shipfox/api-agent": "17.0.1",
|
|
28
|
+
"@shipfox/api-agent-dto": "17.0.0",
|
|
29
|
+
"@shipfox/api-auth": "17.0.0",
|
|
30
|
+
"@shipfox/api-auth-dto": "17.0.0",
|
|
31
|
+
"@shipfox/api-definitions": "17.0.0",
|
|
32
|
+
"@shipfox/api-definitions-dto": "17.0.0",
|
|
33
|
+
"@shipfox/api-dispatcher": "17.0.0",
|
|
34
|
+
"@shipfox/api-email-challenges": "1.1.11",
|
|
35
|
+
"@shipfox/api-integration-core": "17.0.0",
|
|
36
36
|
"@shipfox/api-integration-core-dto": "16.0.0",
|
|
37
|
-
"@shipfox/api-logs": "
|
|
38
|
-
"@shipfox/api-projects": "
|
|
37
|
+
"@shipfox/api-logs": "17.0.1",
|
|
38
|
+
"@shipfox/api-projects": "17.0.0",
|
|
39
39
|
"@shipfox/api-projects-dto": "15.0.0",
|
|
40
|
-
"@shipfox/api-runners": "
|
|
40
|
+
"@shipfox/api-runners": "17.0.0",
|
|
41
41
|
"@shipfox/api-runners-dto": "16.0.0",
|
|
42
|
-
"@shipfox/api-secrets": "
|
|
42
|
+
"@shipfox/api-secrets": "17.0.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": "17.0.0",
|
|
45
|
+
"@shipfox/api-workflows": "17.0.0",
|
|
46
|
+
"@shipfox/api-workflows-dto": "17.0.0",
|
|
47
47
|
"@shipfox/api-workspaces-dto": "15.0.0",
|
|
48
|
-
"@shipfox/api-workspaces": "
|
|
48
|
+
"@shipfox/api-workspaces": "17.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.3",
|
|
52
52
|
"@shipfox/node-jwt": "0.4.0",
|
|
53
53
|
"@shipfox/node-module": "1.0.7",
|
|
54
54
|
"@shipfox/node-opentelemetry": "0.6.5",
|
|
55
|
-
"@shipfox/node-postgres": "0.5.
|
|
55
|
+
"@shipfox/node-postgres": "0.5.1"
|
|
56
56
|
},
|
|
57
57
|
"imports": {
|
|
58
58
|
"#*": "./dist/*"
|
package/src/modules.test.ts
CHANGED
|
@@ -246,6 +246,7 @@ describe('defaultModules', () => {
|
|
|
246
246
|
contract: workflowsInterModuleContract,
|
|
247
247
|
handlers: {
|
|
248
248
|
deliverEventToJobListener: vi.fn(),
|
|
249
|
+
getLeasedAgentSessionContext: vi.fn(),
|
|
249
250
|
getLeasedAgentToolContext: vi.fn(),
|
|
250
251
|
getStepLogContext: vi.fn(),
|
|
251
252
|
listJobStepAttempts: vi.fn(),
|
|
@@ -37,12 +37,13 @@ export function publishedTestEnvironment() {
|
|
|
37
37
|
SLACK_OAUTH_CLIENT_SECRET: 'external-consumer-client-secret',
|
|
38
38
|
SLACK_OAUTH_REDIRECT_URL: 'https://shipfox.example.com/integrations/slack/callback',
|
|
39
39
|
SLACK_SIGNING_SECRET: 'external-consumer-signing-secret',
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
40
|
+
OBJECT_STORAGE_S3_ACCESS_KEY_ID: 'external-consumer-access-key',
|
|
41
|
+
OBJECT_STORAGE_S3_BUCKET: 'shipfox',
|
|
42
|
+
OBJECT_STORAGE_S3_ENDPOINT: 'http://127.0.0.1:3900',
|
|
43
|
+
OBJECT_STORAGE_S3_FORCE_PATH_STYLE: 'true',
|
|
44
|
+
OBJECT_STORAGE_S3_REGION: 'garage',
|
|
45
|
+
OBJECT_STORAGE_S3_SECRET_ACCESS_KEY: 'external-consumer-secret-key',
|
|
46
|
+
AGENT_SESSION_ENCRYPTION_KEK: 'MDEyMzQ1Njc4OWFiY2RlZjAxMjM0NTY3ODlhYmNkZWY=',
|
|
46
47
|
POSTGRES_DATABASE: postgresDatabase,
|
|
47
48
|
POSTGRES_HOST: postgresHost,
|
|
48
49
|
POSTGRES_MAX_CONNECTIONS: '5',
|