@alfe.ai/integration-manifest 0.0.4 → 0.0.5
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.d.ts +3 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -62,6 +62,7 @@ interface InstallTargets {
|
|
|
62
62
|
interface IntegrationHooks {
|
|
63
63
|
pre_install?: string;
|
|
64
64
|
post_install?: string;
|
|
65
|
+
post_activate?: string;
|
|
65
66
|
pre_uninstall?: string;
|
|
66
67
|
post_uninstall?: string;
|
|
67
68
|
health_check?: string;
|
|
@@ -244,6 +245,7 @@ declare const InstallTargetsSchema: z.ZodObject<{
|
|
|
244
245
|
declare const IntegrationHooksSchema: z.ZodObject<{
|
|
245
246
|
pre_install: z.ZodOptional<z.ZodString>;
|
|
246
247
|
post_install: z.ZodOptional<z.ZodString>;
|
|
248
|
+
post_activate: z.ZodOptional<z.ZodString>;
|
|
247
249
|
pre_uninstall: z.ZodOptional<z.ZodString>;
|
|
248
250
|
post_uninstall: z.ZodOptional<z.ZodString>;
|
|
249
251
|
health_check: z.ZodOptional<z.ZodString>;
|
|
@@ -314,6 +316,7 @@ declare const IntegrationManifestSchema: z.ZodObject<{
|
|
|
314
316
|
hooks: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
315
317
|
pre_install: z.ZodOptional<z.ZodString>;
|
|
316
318
|
post_install: z.ZodOptional<z.ZodString>;
|
|
319
|
+
post_activate: z.ZodOptional<z.ZodString>;
|
|
317
320
|
pre_uninstall: z.ZodOptional<z.ZodString>;
|
|
318
321
|
post_uninstall: z.ZodOptional<z.ZodString>;
|
|
319
322
|
health_check: z.ZodOptional<z.ZodString>;
|
package/dist/index.js
CHANGED
|
@@ -77,6 +77,7 @@ const InstallTargetsSchema = z.object({
|
|
|
77
77
|
const IntegrationHooksSchema = z.object({
|
|
78
78
|
pre_install: z.string().optional(),
|
|
79
79
|
post_install: z.string().optional(),
|
|
80
|
+
post_activate: z.string().optional(),
|
|
80
81
|
pre_uninstall: z.string().optional(),
|
|
81
82
|
post_uninstall: z.string().optional(),
|
|
82
83
|
health_check: z.string().optional()
|