@constructive-io/simple-email-fn 0.4.2 → 1.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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +5 -5
package/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { createJobApp } from '@constructive-io/knative-job-fn';
2
2
  import { send as sendSmtp } from 'simple-smtp-server';
3
- import { send as sendPostmaster } from '@launchql/postmaster';
3
+ import { send as sendPostmaster } from '@constructive-io/postmaster';
4
4
  import { parseEnvBoolean } from '@pgpmjs/env';
5
5
  import { createLogger } from '@pgpmjs/logger';
6
6
  const isNonEmptyString = (value) => typeof value === 'string' && value.trim().length > 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@constructive-io/simple-email-fn",
3
- "version": "0.4.2",
3
+ "version": "1.0.0",
4
4
  "description": "Simple Knative email function that sends emails directly from job payload",
5
5
  "author": "Constructive <developers@constructive.io>",
6
6
  "homepage": "https://github.com/constructive-io/constructive",
@@ -33,11 +33,11 @@
33
33
  "makage": "^0.1.10"
34
34
  },
35
35
  "dependencies": {
36
- "@constructive-io/knative-job-fn": "^0.4.1",
37
- "@launchql/postmaster": "0.1.4",
36
+ "@constructive-io/knative-job-fn": "^1.0.0",
37
+ "@constructive-io/postmaster": "^1.0.0",
38
38
  "@pgpmjs/env": "^2.10.1",
39
- "@pgpmjs/logger": "^1.5.0",
39
+ "@pgpmjs/logger": "^2.0.0",
40
40
  "simple-smtp-server": "^0.2.1"
41
41
  },
42
- "gitHead": "39b5c59b01b8ce391dc14daf5a9430ca0ff67574"
42
+ "gitHead": "390f4dd57fc158554518ec454bf2a4856d550552"
43
43
  }