@k-msg/webhook 0.23.0 → 0.23.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/dist/index.js +23 -23
- package/dist/index.js.map +7 -4
- package/dist/index.mjs +23 -23
- package/dist/index.mjs.map +7 -4
- package/dist/registry/types.d.ts +4 -0
- package/dist/services/webhook.registry.d.ts +1 -0
- package/dist/toolkit/index.js +24 -24
- package/dist/toolkit/index.js.map +8 -5
- package/dist/toolkit/index.mjs +24 -24
- package/dist/toolkit/index.mjs.map +8 -5
- package/package.json +2 -2
package/dist/registry/types.d.ts
CHANGED
|
@@ -46,6 +46,9 @@ export interface StorageConfig {
|
|
|
46
46
|
tableName?: string;
|
|
47
47
|
maxMemoryUsage?: number;
|
|
48
48
|
retentionDays?: number;
|
|
49
|
+
/**
|
|
50
|
+
* Preferred option. If both legacy and `fieldCrypto` are set, `fieldCrypto` takes precedence.
|
|
51
|
+
*/
|
|
49
52
|
fieldCrypto?: FieldCryptoConfig;
|
|
50
53
|
/**
|
|
51
54
|
* @deprecated Use `fieldCrypto` instead.
|
|
@@ -53,6 +56,7 @@ export interface StorageConfig {
|
|
|
53
56
|
enableEncryption?: boolean;
|
|
54
57
|
/**
|
|
55
58
|
* @deprecated Use `fieldCrypto` with a provider implementation.
|
|
59
|
+
* Legacy option kept for compatibility only.
|
|
56
60
|
*/
|
|
57
61
|
encryptionKey?: string;
|
|
58
62
|
}
|