@griffin-app/griffin-ts 0.1.19 → 0.1.21

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@griffin-app/griffin-ts",
3
- "version": "0.1.19",
3
+ "version": "0.1.21",
4
4
  "description": "TypeScript DSL for defining griffin API tests",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -10,6 +10,7 @@ export const NotificationProviderSchema = StringEnum([
10
10
  "slack",
11
11
  "email",
12
12
  "webhook",
13
+ "resend",
13
14
  ], {$id: "NotificationProvider"});
14
15
 
15
16
  export const SecretsProviderSchema = StringEnum([
@@ -23,6 +24,7 @@ export const ProviderSchema = StringEnum([
23
24
  "slack",
24
25
  "email",
25
26
  "webhook",
27
+ "resend",
26
28
  ], {$id: "Provider"});
27
29
 
28
30
  export type IntegrationCategory = Static<typeof IntegrationCategorySchema>;