@primitivedotdev/cli 0.28.0 → 0.30.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/README.md +3 -0
- package/dist/oclif/index.js +2127 -226
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -21,6 +21,7 @@ This package wraps the [@primitivedotdev/sdk](https://www.npmjs.com/package/@pri
|
|
|
21
21
|
export PRIMITIVE_API_KEY=prim_...
|
|
22
22
|
|
|
23
23
|
primitive whoami
|
|
24
|
+
primitive functions templates
|
|
24
25
|
primitive functions init my-fn
|
|
25
26
|
cd my-fn && npm install && npm run build
|
|
26
27
|
primitive functions deploy --name my-fn --file ./dist/handler.js
|
|
@@ -42,6 +43,8 @@ primitive emails list
|
|
|
42
43
|
primitive emails get --id <inbound-email-id>
|
|
43
44
|
primitive sent list
|
|
44
45
|
primitive domains list
|
|
46
|
+
primitive functions templates
|
|
47
|
+
primitive functions init my-fn --template email-reply
|
|
45
48
|
primitive functions logs --id <function-id>
|
|
46
49
|
primitive deliveries replay --id <delivery-id>
|
|
47
50
|
```
|