@faasjs/func 0.0.2-beta.373 → 0.0.2-beta.374

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/README.md +5 -5
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -50,8 +50,8 @@ FaasJS's function module.
50
50
 
51
51
  | Name | Type |
52
52
  | :------ | :------ |
53
- | `plugins?` | { [key: string]: { [key: string]: `any`; `config?`: { [key: string]: `any`; } ; `provider?`: `string` \| [`ProviderConfig`](#providerconfig) ; `type`: `string` }; } |
54
- | `providers?` | { [key: string]: [`ProviderConfig`](#providerconfig); } |
53
+ | `plugins?` | { `[key: string]`: { `[key: string]`: `any`; `config?`: { `[key: string]`: `any`; } ; `provider?`: `string` \| [`ProviderConfig`](#providerconfig) ; `type`: `string` }; } |
54
+ | `providers?` | { `[key: string]`: [`ProviderConfig`](#providerconfig); } |
55
55
 
56
56
  ___
57
57
 
@@ -68,12 +68,12 @@ ___
68
68
  | Name | Type |
69
69
  | :------ | :------ |
70
70
  | `config?` | [`Config`](#config) |
71
- | `dependencies` | { [name: string]: `string`; } |
71
+ | `dependencies` | { `[name: string]`: `string`; } |
72
72
  | `env?` | `string` |
73
73
  | `filename` | `string` |
74
74
  | `logger?` | `Logger` |
75
75
  | `name?` | `string` |
76
- | `plugins?` | { [name: string]: { [key: string]: `any`; `config`: { [key: string]: `any`; } ; `name?`: `string` ; `plugin`: [`Plugin`](#plugin) ; `provider?`: `string` ; `type`: `string` }; } |
76
+ | `plugins?` | { `[name: string]`: { `[key: string]`: `any`; `config`: { `[key: string]`: `any`; } ; `name?`: `string` ; `plugin`: [`Plugin`](#plugin) ; `provider?`: `string` ; `type`: `string` }; } |
77
77
  | `root` | `string` |
78
78
  | `version?` | `string` |
79
79
 
@@ -254,7 +254,7 @@ ___
254
254
 
255
255
  | Name | Type |
256
256
  | :------ | :------ |
257
- | `config` | { [key: string]: `any`; } |
257
+ | `config` | { `[key: string]`: `any`; } |
258
258
  | `type` | `string` |
259
259
 
260
260
  ___
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@faasjs/func",
3
- "version": "0.0.2-beta.373",
3
+ "version": "0.0.2-beta.374",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -22,8 +22,8 @@
22
22
  "dist"
23
23
  ],
24
24
  "peerDependencies": {
25
- "@faasjs/deep_merge": "^0.0.2-beta.373",
26
- "@faasjs/logger": "^0.0.2-beta.373"
25
+ "@faasjs/deep_merge": "^0.0.2-beta.374",
26
+ "@faasjs/logger": "^0.0.2-beta.374"
27
27
  },
28
28
  "devDependencies": {
29
29
  "tsup": "*",