@constructive-io/knative-job-service 2.16.6 → 2.17.2

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/esm/index.js CHANGED
@@ -9,12 +9,12 @@ import retry from 'async-retry';
9
9
  import { Client } from 'pg';
10
10
  import { createRequire } from 'module';
11
11
  const functionRegistry = {
12
- 'simple-email': {
13
- moduleName: '@constructive-io/simple-email-fn',
12
+ 'send-email': {
13
+ moduleName: '@constructive-io/send-email-fn',
14
14
  defaultPort: 8081
15
15
  },
16
- 'send-email-link': {
17
- moduleName: '@constructive-io/send-email-link-fn',
16
+ 'send-verification-link': {
17
+ moduleName: '@constructive-io/send-verification-link-fn',
18
18
  defaultPort: 8082
19
19
  }
20
20
  };
package/index.js CHANGED
@@ -29,12 +29,12 @@ const async_retry_1 = __importDefault(require("async-retry"));
29
29
  const pg_1 = require("pg");
30
30
  const module_1 = require("module");
31
31
  const functionRegistry = {
32
- 'simple-email': {
33
- moduleName: '@constructive-io/simple-email-fn',
32
+ 'send-email': {
33
+ moduleName: '@constructive-io/send-email-fn',
34
34
  defaultPort: 8081
35
35
  },
36
- 'send-email-link': {
37
- moduleName: '@constructive-io/send-email-link-fn',
36
+ 'send-verification-link': {
37
+ moduleName: '@constructive-io/send-verification-link-fn',
38
38
  defaultPort: 8082
39
39
  }
40
40
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@constructive-io/knative-job-service",
3
- "version": "2.16.6",
3
+ "version": "2.17.2",
4
4
  "description": "knative job service",
5
5
  "author": "Constructive <developers@constructive.io>",
6
6
  "homepage": "https://github.com/constructive-io/jobs/tree/master/packages/knative-job-service#readme",
@@ -38,9 +38,9 @@
38
38
  "url": "https://github.com/constructive-io/jobs/issues"
39
39
  },
40
40
  "devDependencies": {
41
- "@constructive-io/graphql-server": "^4.27.1",
42
- "@constructive-io/graphql-types": "^3.8.0",
43
- "@constructive-io/postmaster": "^1.10.0",
41
+ "@constructive-io/graphql-server": "^4.29.1",
42
+ "@constructive-io/graphql-types": "^3.9.1",
43
+ "@constructive-io/postmaster": "^1.11.1",
44
44
  "@pgpm/database-jobs": "^0.18.0",
45
45
  "@pgpm/inflection": "^0.18.0",
46
46
  "@pgpm/metaschema-modules": "^0.21.1",
@@ -48,26 +48,26 @@
48
48
  "@pgpm/services": "^0.18.0",
49
49
  "@pgpm/types": "^0.18.0",
50
50
  "@pgpm/verify": "^0.18.0",
51
- "@pgpmjs/core": "^6.16.1",
51
+ "@pgpmjs/core": "^6.17.1",
52
52
  "@types/supertest": "^7.2.0",
53
53
  "makage": "^0.3.0",
54
- "pgsql-test": "^4.12.1",
54
+ "pgsql-test": "^4.13.1",
55
55
  "supertest": "^7.2.2",
56
56
  "ts-node": "^10.9.2"
57
57
  },
58
58
  "dependencies": {
59
- "@constructive-io/job-pg": "^2.9.0",
60
- "@constructive-io/job-scheduler": "^2.9.0",
61
- "@constructive-io/job-utils": "^2.9.0",
62
- "@constructive-io/knative-job-fn": "^1.9.0",
63
- "@constructive-io/knative-job-server": "^2.9.0",
64
- "@constructive-io/knative-job-worker": "^2.12.1",
65
- "@constructive-io/send-email-link-fn": "^2.10.0",
66
- "@constructive-io/simple-email-fn": "^1.10.0",
67
- "@pgpmjs/env": "^2.21.0",
68
- "@pgpmjs/logger": "^2.9.0",
59
+ "@constructive-io/job-pg": "^2.10.1",
60
+ "@constructive-io/job-scheduler": "^2.10.1",
61
+ "@constructive-io/job-utils": "^2.10.1",
62
+ "@constructive-io/knative-job-fn": "^1.10.1",
63
+ "@constructive-io/knative-job-server": "^2.10.1",
64
+ "@constructive-io/knative-job-worker": "^2.13.1",
65
+ "@constructive-io/send-email-fn": "^1.11.2",
66
+ "@constructive-io/send-verification-link-fn": "^2.11.2",
67
+ "@pgpmjs/env": "^2.22.1",
68
+ "@pgpmjs/logger": "^2.10.1",
69
69
  "async-retry": "1.3.3",
70
70
  "pg": "8.20.0"
71
71
  },
72
- "gitHead": "90016935b53d6fb84e0b83879377f0c2eb9abce6"
72
+ "gitHead": "d43f1d7e38cc39a71b4f8d2cafb39f46df12e31a"
73
73
  }
package/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export type FunctionName = 'simple-email' | 'send-email-link';
1
+ export type FunctionName = 'send-email' | 'send-verification-link';
2
2
  export type FunctionServiceConfig = {
3
3
  name: FunctionName;
4
4
  port?: number;