@xtr-dev/payload-automation 0.0.27 → 0.0.29

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.
@@ -1,113 +1,115 @@
1
- import { createAdvancedTrigger } from './trigger-helpers.js';
1
+ import { createTrigger } from './trigger-helpers.js';
2
2
  /**
3
- * Common parameter sets for reuse across different triggers
4
- */ export const webhookParameters = {
5
- path: {
6
- type: 'text',
7
- required: true,
8
- admin: {
9
- description: 'URL path for the webhook endpoint (e.g., "my-webhook")'
10
- },
11
- validate: (value)=>{
12
- if (typeof value === 'string' && value.includes(' ')) {
13
- return 'Webhook path cannot contain spaces';
3
+ * Preset trigger builders for common patterns
4
+ */ /**
5
+ * Create a webhook trigger with common webhook parameters pre-configured
6
+ */ export function webhookTrigger(slug) {
7
+ return createTrigger(slug, [
8
+ {
9
+ name: 'path',
10
+ type: 'text',
11
+ required: true,
12
+ admin: {
13
+ description: 'URL path for the webhook endpoint (e.g., "my-webhook")'
14
+ },
15
+ validate: (value)=>{
16
+ if (typeof value === 'string' && value.includes(' ')) {
17
+ return 'Webhook path cannot contain spaces';
18
+ }
19
+ return true;
14
20
  }
15
- return true;
16
- }
17
- },
18
- secret: {
19
- type: 'text',
20
- admin: {
21
- description: 'Secret key for webhook signature validation (optional but recommended)'
22
- }
23
- },
24
- headers: {
25
- type: 'json',
26
- admin: {
27
- description: 'Expected HTTP headers for validation (JSON object)'
28
- }
29
- }
30
- };
31
- export const cronParameters = {
32
- expression: {
33
- type: 'text',
34
- required: true,
35
- admin: {
36
- description: 'Cron expression for scheduling (e.g., "0 9 * * 1" for every Monday at 9 AM)',
37
- placeholder: '0 9 * * 1'
38
- }
39
- },
40
- timezone: {
41
- type: 'text',
42
- defaultValue: 'UTC',
43
- admin: {
44
- description: 'Timezone for cron execution (e.g., "America/New_York", "Europe/London")',
45
- placeholder: 'UTC'
46
21
  },
47
- validate: (value)=>{
48
- if (value) {
49
- try {
50
- new Intl.DateTimeFormat('en', {
51
- timeZone: value
52
- });
53
- return true;
54
- } catch {
55
- return `Invalid timezone: ${value}. Please use a valid IANA timezone identifier`;
56
- }
22
+ {
23
+ name: 'secret',
24
+ type: 'text',
25
+ admin: {
26
+ description: 'Secret key for webhook signature validation (optional but recommended)'
57
27
  }
58
- return true;
59
- }
60
- }
61
- };
62
- export const eventParameters = {
63
- eventTypes: {
64
- type: 'select',
65
- hasMany: true,
66
- options: [
67
- {
68
- label: 'User Created',
69
- value: 'user.created'
70
- },
71
- {
72
- label: 'User Updated',
73
- value: 'user.updated'
74
- },
75
- {
76
- label: 'Document Published',
77
- value: 'document.published'
78
- },
79
- {
80
- label: 'Payment Completed',
81
- value: 'payment.completed'
28
+ },
29
+ {
30
+ name: 'headers',
31
+ type: 'json',
32
+ admin: {
33
+ description: 'Expected HTTP headers for validation (JSON object)'
82
34
  }
83
- ],
84
- admin: {
85
- description: 'Event types that should trigger this workflow'
86
- }
87
- },
88
- filters: {
89
- type: 'json',
90
- admin: {
91
- description: 'JSON filters to apply to event data (e.g., {"status": "active"})'
92
35
  }
93
- }
94
- };
95
- /**
96
- * Preset trigger builders for common patterns
97
- */ /**
98
- * Create a webhook trigger with common webhook parameters pre-configured
99
- */ export function webhookTrigger(slug) {
100
- return createAdvancedTrigger(slug).extend(webhookParameters);
36
+ ]);
101
37
  }
102
38
  /**
103
39
  * Create a scheduled/cron trigger with timing parameters pre-configured
104
40
  */ export function cronTrigger(slug) {
105
- return createAdvancedTrigger(slug).extend(cronParameters);
41
+ return createTrigger(slug, [
42
+ {
43
+ name: 'expression',
44
+ type: 'text',
45
+ required: true,
46
+ admin: {
47
+ description: 'Cron expression for scheduling (e.g., "0 9 * * 1" for every Monday at 9 AM)',
48
+ placeholder: '0 9 * * 1'
49
+ }
50
+ },
51
+ {
52
+ name: 'timezone',
53
+ type: 'text',
54
+ defaultValue: 'UTC',
55
+ admin: {
56
+ description: 'Timezone for cron execution (e.g., "America/New_York", "Europe/London")',
57
+ placeholder: 'UTC'
58
+ },
59
+ validate: (value)=>{
60
+ if (value) {
61
+ try {
62
+ new Intl.DateTimeFormat('en', {
63
+ timeZone: value
64
+ });
65
+ return true;
66
+ } catch {
67
+ return `Invalid timezone: ${value}. Please use a valid IANA timezone identifier`;
68
+ }
69
+ }
70
+ return true;
71
+ }
72
+ }
73
+ ]);
106
74
  }
107
75
  /**
108
76
  * Create an event-driven trigger with event filtering parameters
109
77
  */ export function eventTrigger(slug) {
110
- return createAdvancedTrigger(slug).extend(eventParameters);
78
+ return createTrigger(slug, [
79
+ {
80
+ name: 'eventTypes',
81
+ type: 'select',
82
+ hasMany: true,
83
+ options: [
84
+ {
85
+ label: 'User Created',
86
+ value: 'user.created'
87
+ },
88
+ {
89
+ label: 'User Updated',
90
+ value: 'user.updated'
91
+ },
92
+ {
93
+ label: 'Document Published',
94
+ value: 'document.published'
95
+ },
96
+ {
97
+ label: 'Payment Completed',
98
+ value: 'payment.completed'
99
+ }
100
+ ],
101
+ admin: {
102
+ description: 'Event types that should trigger this workflow'
103
+ }
104
+ },
105
+ {
106
+ name: 'filters',
107
+ type: 'json',
108
+ admin: {
109
+ description: 'JSON filters to apply to event data (e.g., {"status": "active"})'
110
+ }
111
+ }
112
+ ]);
111
113
  }
112
114
  /**
113
115
  * Create a simple manual trigger (no parameters needed)
@@ -120,15 +122,17 @@ export const eventParameters = {
120
122
  /**
121
123
  * Create an API trigger for external systems to call
122
124
  */ export function apiTrigger(slug) {
123
- return createAdvancedTrigger(slug).extend({
124
- endpoint: {
125
+ return createTrigger(slug, [
126
+ {
127
+ name: 'endpoint',
125
128
  type: 'text',
126
129
  required: true,
127
130
  admin: {
128
131
  description: 'API endpoint path (e.g., "/api/triggers/my-trigger")'
129
132
  }
130
133
  },
131
- method: {
134
+ {
135
+ name: 'method',
132
136
  type: 'select',
133
137
  options: [
134
138
  'GET',
@@ -141,7 +145,8 @@ export const eventParameters = {
141
145
  description: 'HTTP method for the API endpoint'
142
146
  }
143
147
  },
144
- authentication: {
148
+ {
149
+ name: 'authentication',
145
150
  type: 'select',
146
151
  options: [
147
152
  {
@@ -166,7 +171,7 @@ export const eventParameters = {
166
171
  description: 'Authentication method for the API endpoint'
167
172
  }
168
173
  }
169
- });
174
+ ]);
170
175
  }
171
176
 
172
177
  //# sourceMappingURL=trigger-presets.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/utils/trigger-presets.ts"],"sourcesContent":["import { createAdvancedTrigger } from './trigger-helpers.js'\n\n/**\n * Common parameter sets for reuse across different triggers\n */\n\nexport const webhookParameters: Record<string, any> = {\n path: {\n type: 'text',\n required: true,\n admin: {\n description: 'URL path for the webhook endpoint (e.g., \"my-webhook\")'\n },\n validate: (value: any) => {\n if (typeof value === 'string' && value.includes(' ')) {\n return 'Webhook path cannot contain spaces'\n }\n return true\n }\n },\n secret: {\n type: 'text',\n admin: {\n description: 'Secret key for webhook signature validation (optional but recommended)'\n }\n },\n headers: {\n type: 'json',\n admin: {\n description: 'Expected HTTP headers for validation (JSON object)'\n }\n }\n}\n\nexport const cronParameters: Record<string, any> = {\n expression: {\n type: 'text',\n required: true,\n admin: {\n description: 'Cron expression for scheduling (e.g., \"0 9 * * 1\" for every Monday at 9 AM)',\n placeholder: '0 9 * * 1'\n }\n },\n timezone: {\n type: 'text',\n defaultValue: 'UTC',\n admin: {\n description: 'Timezone for cron execution (e.g., \"America/New_York\", \"Europe/London\")',\n placeholder: 'UTC'\n },\n validate: (value: any) => {\n if (value) {\n try {\n new Intl.DateTimeFormat('en', { timeZone: value as string })\n return true\n } catch {\n return `Invalid timezone: ${value}. Please use a valid IANA timezone identifier`\n }\n }\n return true\n }\n }\n}\n\nexport const eventParameters: Record<string, any> = {\n eventTypes: {\n type: 'select',\n hasMany: true,\n options: [\n { label: 'User Created', value: 'user.created' },\n { label: 'User Updated', value: 'user.updated' },\n { label: 'Document Published', value: 'document.published' },\n { label: 'Payment Completed', value: 'payment.completed' }\n ],\n admin: {\n description: 'Event types that should trigger this workflow'\n }\n },\n filters: {\n type: 'json',\n admin: {\n description: 'JSON filters to apply to event data (e.g., {\"status\": \"active\"})'\n }\n }\n}\n\n/**\n * Preset trigger builders for common patterns\n */\n\n/**\n * Create a webhook trigger with common webhook parameters pre-configured\n */\nexport function webhookTrigger<TSlug extends string>(slug: TSlug) {\n return createAdvancedTrigger(slug).extend(webhookParameters)\n}\n\n/**\n * Create a scheduled/cron trigger with timing parameters pre-configured\n */\nexport function cronTrigger<TSlug extends string>(slug: TSlug) {\n return createAdvancedTrigger(slug).extend(cronParameters)\n}\n\n/**\n * Create an event-driven trigger with event filtering parameters\n */\nexport function eventTrigger<TSlug extends string>(slug: TSlug) {\n return createAdvancedTrigger(slug).extend(eventParameters)\n}\n\n/**\n * Create a simple manual trigger (no parameters needed)\n */\nexport function manualTrigger<TSlug extends string>(slug: TSlug) {\n return {\n slug,\n inputs: []\n }\n}\n\n/**\n * Create an API trigger for external systems to call\n */\nexport function apiTrigger<TSlug extends string>(slug: TSlug) {\n return createAdvancedTrigger(slug).extend({\n endpoint: {\n type: 'text',\n required: true,\n admin: {\n description: 'API endpoint path (e.g., \"/api/triggers/my-trigger\")'\n }\n },\n method: {\n type: 'select',\n options: ['GET', 'POST', 'PUT', 'PATCH'],\n defaultValue: 'POST',\n admin: {\n description: 'HTTP method for the API endpoint'\n }\n },\n authentication: {\n type: 'select',\n options: [\n { label: 'None', value: 'none' },\n { label: 'API Key', value: 'api-key' },\n { label: 'Bearer Token', value: 'bearer' },\n { label: 'Basic Auth', value: 'basic' }\n ],\n defaultValue: 'api-key',\n admin: {\n description: 'Authentication method for the API endpoint'\n }\n }\n })\n}"],"names":["createAdvancedTrigger","webhookParameters","path","type","required","admin","description","validate","value","includes","secret","headers","cronParameters","expression","placeholder","timezone","defaultValue","Intl","DateTimeFormat","timeZone","eventParameters","eventTypes","hasMany","options","label","filters","webhookTrigger","slug","extend","cronTrigger","eventTrigger","manualTrigger","inputs","apiTrigger","endpoint","method","authentication"],"mappings":"AAAA,SAASA,qBAAqB,QAAQ,uBAAsB;AAE5D;;CAEC,GAED,OAAO,MAAMC,oBAAyC;IACpDC,MAAM;QACJC,MAAM;QACNC,UAAU;QACVC,OAAO;YACLC,aAAa;QACf;QACAC,UAAU,CAACC;YACT,IAAI,OAAOA,UAAU,YAAYA,MAAMC,QAAQ,CAAC,MAAM;gBACpD,OAAO;YACT;YACA,OAAO;QACT;IACF;IACAC,QAAQ;QACNP,MAAM;QACNE,OAAO;YACLC,aAAa;QACf;IACF;IACAK,SAAS;QACPR,MAAM;QACNE,OAAO;YACLC,aAAa;QACf;IACF;AACF,EAAC;AAED,OAAO,MAAMM,iBAAsC;IACjDC,YAAY;QACVV,MAAM;QACNC,UAAU;QACVC,OAAO;YACLC,aAAa;YACbQ,aAAa;QACf;IACF;IACAC,UAAU;QACRZ,MAAM;QACNa,cAAc;QACdX,OAAO;YACLC,aAAa;YACbQ,aAAa;QACf;QACAP,UAAU,CAACC;YACT,IAAIA,OAAO;gBACT,IAAI;oBACF,IAAIS,KAAKC,cAAc,CAAC,MAAM;wBAAEC,UAAUX;oBAAgB;oBAC1D,OAAO;gBACT,EAAE,OAAM;oBACN,OAAO,CAAC,kBAAkB,EAAEA,MAAM,6CAA6C,CAAC;gBAClF;YACF;YACA,OAAO;QACT;IACF;AACF,EAAC;AAED,OAAO,MAAMY,kBAAuC;IAClDC,YAAY;QACVlB,MAAM;QACNmB,SAAS;QACTC,SAAS;YACP;gBAAEC,OAAO;gBAAgBhB,OAAO;YAAe;YAC/C;gBAAEgB,OAAO;gBAAgBhB,OAAO;YAAe;YAC/C;gBAAEgB,OAAO;gBAAsBhB,OAAO;YAAqB;YAC3D;gBAAEgB,OAAO;gBAAqBhB,OAAO;YAAoB;SAC1D;QACDH,OAAO;YACLC,aAAa;QACf;IACF;IACAmB,SAAS;QACPtB,MAAM;QACNE,OAAO;YACLC,aAAa;QACf;IACF;AACF,EAAC;AAED;;CAEC,GAED;;CAEC,GACD,OAAO,SAASoB,eAAqCC,IAAW;IAC9D,OAAO3B,sBAAsB2B,MAAMC,MAAM,CAAC3B;AAC5C;AAEA;;CAEC,GACD,OAAO,SAAS4B,YAAkCF,IAAW;IAC3D,OAAO3B,sBAAsB2B,MAAMC,MAAM,CAAChB;AAC5C;AAEA;;CAEC,GACD,OAAO,SAASkB,aAAmCH,IAAW;IAC5D,OAAO3B,sBAAsB2B,MAAMC,MAAM,CAACR;AAC5C;AAEA;;CAEC,GACD,OAAO,SAASW,cAAoCJ,IAAW;IAC7D,OAAO;QACLA;QACAK,QAAQ,EAAE;IACZ;AACF;AAEA;;CAEC,GACD,OAAO,SAASC,WAAiCN,IAAW;IAC1D,OAAO3B,sBAAsB2B,MAAMC,MAAM,CAAC;QACxCM,UAAU;YACR/B,MAAM;YACNC,UAAU;YACVC,OAAO;gBACLC,aAAa;YACf;QACF;QACA6B,QAAQ;YACNhC,MAAM;YACNoB,SAAS;gBAAC;gBAAO;gBAAQ;gBAAO;aAAQ;YACxCP,cAAc;YACdX,OAAO;gBACLC,aAAa;YACf;QACF;QACA8B,gBAAgB;YACdjC,MAAM;YACNoB,SAAS;gBACP;oBAAEC,OAAO;oBAAQhB,OAAO;gBAAO;gBAC/B;oBAAEgB,OAAO;oBAAWhB,OAAO;gBAAU;gBACrC;oBAAEgB,OAAO;oBAAgBhB,OAAO;gBAAS;gBACzC;oBAAEgB,OAAO;oBAAchB,OAAO;gBAAQ;aACvC;YACDQ,cAAc;YACdX,OAAO;gBACLC,aAAa;YACf;QACF;IACF;AACF"}
1
+ {"version":3,"sources":["../../src/utils/trigger-presets.ts"],"sourcesContent":["import { createTrigger } from './trigger-helpers.js'\nimport type { CustomTriggerConfig } from '../plugin/config-types.js'\n\n/**\n * Preset trigger builders for common patterns\n */\n\n/**\n * Create a webhook trigger with common webhook parameters pre-configured\n */\nexport function webhookTrigger(slug: string): CustomTriggerConfig {\n return createTrigger(slug, [\n {\n name: 'path',\n type: 'text',\n required: true,\n admin: {\n description: 'URL path for the webhook endpoint (e.g., \"my-webhook\")'\n },\n validate: (value: any) => {\n if (typeof value === 'string' && value.includes(' ')) {\n return 'Webhook path cannot contain spaces'\n }\n return true\n }\n },\n {\n name: 'secret',\n type: 'text',\n admin: {\n description: 'Secret key for webhook signature validation (optional but recommended)'\n }\n },\n {\n name: 'headers',\n type: 'json',\n admin: {\n description: 'Expected HTTP headers for validation (JSON object)'\n }\n }\n ])\n}\n\n/**\n * Create a scheduled/cron trigger with timing parameters pre-configured\n */\nexport function cronTrigger(slug: string): CustomTriggerConfig {\n return createTrigger(slug, [\n {\n name: 'expression',\n type: 'text',\n required: true,\n admin: {\n description: 'Cron expression for scheduling (e.g., \"0 9 * * 1\" for every Monday at 9 AM)',\n placeholder: '0 9 * * 1'\n }\n },\n {\n name: 'timezone',\n type: 'text',\n defaultValue: 'UTC',\n admin: {\n description: 'Timezone for cron execution (e.g., \"America/New_York\", \"Europe/London\")',\n placeholder: 'UTC'\n },\n validate: (value: any) => {\n if (value) {\n try {\n new Intl.DateTimeFormat('en', { timeZone: value as string })\n return true\n } catch {\n return `Invalid timezone: ${value}. Please use a valid IANA timezone identifier`\n }\n }\n return true\n }\n }\n ])\n}\n\n/**\n * Create an event-driven trigger with event filtering parameters\n */\nexport function eventTrigger(slug: string): CustomTriggerConfig {\n return createTrigger(slug, [\n {\n name: 'eventTypes',\n type: 'select',\n hasMany: true,\n options: [\n { label: 'User Created', value: 'user.created' },\n { label: 'User Updated', value: 'user.updated' },\n { label: 'Document Published', value: 'document.published' },\n { label: 'Payment Completed', value: 'payment.completed' }\n ],\n admin: {\n description: 'Event types that should trigger this workflow'\n }\n },\n {\n name: 'filters',\n type: 'json',\n admin: {\n description: 'JSON filters to apply to event data (e.g., {\"status\": \"active\"})'\n }\n }\n ])\n}\n\n/**\n * Create a simple manual trigger (no parameters needed)\n */\nexport function manualTrigger(slug: string): CustomTriggerConfig {\n return {\n slug,\n inputs: []\n }\n}\n\n/**\n * Create an API trigger for external systems to call\n */\nexport function apiTrigger(slug: string): CustomTriggerConfig {\n return createTrigger(slug, [\n {\n name: 'endpoint',\n type: 'text',\n required: true,\n admin: {\n description: 'API endpoint path (e.g., \"/api/triggers/my-trigger\")'\n }\n },\n {\n name: 'method',\n type: 'select',\n options: ['GET', 'POST', 'PUT', 'PATCH'],\n defaultValue: 'POST',\n admin: {\n description: 'HTTP method for the API endpoint'\n }\n },\n {\n name: 'authentication',\n type: 'select',\n options: [\n { label: 'None', value: 'none' },\n { label: 'API Key', value: 'api-key' },\n { label: 'Bearer Token', value: 'bearer' },\n { label: 'Basic Auth', value: 'basic' }\n ],\n defaultValue: 'api-key',\n admin: {\n description: 'Authentication method for the API endpoint'\n }\n }\n ])\n}"],"names":["createTrigger","webhookTrigger","slug","name","type","required","admin","description","validate","value","includes","cronTrigger","placeholder","defaultValue","Intl","DateTimeFormat","timeZone","eventTrigger","hasMany","options","label","manualTrigger","inputs","apiTrigger"],"mappings":"AAAA,SAASA,aAAa,QAAQ,uBAAsB;AAGpD;;CAEC,GAED;;CAEC,GACD,OAAO,SAASC,eAAeC,IAAY;IACzC,OAAOF,cAAcE,MAAM;QACzB;YACEC,MAAM;YACNC,MAAM;YACNC,UAAU;YACVC,OAAO;gBACLC,aAAa;YACf;YACAC,UAAU,CAACC;gBACT,IAAI,OAAOA,UAAU,YAAYA,MAAMC,QAAQ,CAAC,MAAM;oBACpD,OAAO;gBACT;gBACA,OAAO;YACT;QACF;QACA;YACEP,MAAM;YACNC,MAAM;YACNE,OAAO;gBACLC,aAAa;YACf;QACF;QACA;YACEJ,MAAM;YACNC,MAAM;YACNE,OAAO;gBACLC,aAAa;YACf;QACF;KACD;AACH;AAEA;;CAEC,GACD,OAAO,SAASI,YAAYT,IAAY;IACtC,OAAOF,cAAcE,MAAM;QACzB;YACEC,MAAM;YACNC,MAAM;YACNC,UAAU;YACVC,OAAO;gBACLC,aAAa;gBACbK,aAAa;YACf;QACF;QACA;YACET,MAAM;YACNC,MAAM;YACNS,cAAc;YACdP,OAAO;gBACLC,aAAa;gBACbK,aAAa;YACf;YACAJ,UAAU,CAACC;gBACT,IAAIA,OAAO;oBACT,IAAI;wBACF,IAAIK,KAAKC,cAAc,CAAC,MAAM;4BAAEC,UAAUP;wBAAgB;wBAC1D,OAAO;oBACT,EAAE,OAAM;wBACN,OAAO,CAAC,kBAAkB,EAAEA,MAAM,6CAA6C,CAAC;oBAClF;gBACF;gBACA,OAAO;YACT;QACF;KACD;AACH;AAEA;;CAEC,GACD,OAAO,SAASQ,aAAaf,IAAY;IACvC,OAAOF,cAAcE,MAAM;QACzB;YACEC,MAAM;YACNC,MAAM;YACNc,SAAS;YACTC,SAAS;gBACP;oBAAEC,OAAO;oBAAgBX,OAAO;gBAAe;gBAC/C;oBAAEW,OAAO;oBAAgBX,OAAO;gBAAe;gBAC/C;oBAAEW,OAAO;oBAAsBX,OAAO;gBAAqB;gBAC3D;oBAAEW,OAAO;oBAAqBX,OAAO;gBAAoB;aAC1D;YACDH,OAAO;gBACLC,aAAa;YACf;QACF;QACA;YACEJ,MAAM;YACNC,MAAM;YACNE,OAAO;gBACLC,aAAa;YACf;QACF;KACD;AACH;AAEA;;CAEC,GACD,OAAO,SAASc,cAAcnB,IAAY;IACxC,OAAO;QACLA;QACAoB,QAAQ,EAAE;IACZ;AACF;AAEA;;CAEC,GACD,OAAO,SAASC,WAAWrB,IAAY;IACrC,OAAOF,cAAcE,MAAM;QACzB;YACEC,MAAM;YACNC,MAAM;YACNC,UAAU;YACVC,OAAO;gBACLC,aAAa;YACf;QACF;QACA;YACEJ,MAAM;YACNC,MAAM;YACNe,SAAS;gBAAC;gBAAO;gBAAQ;gBAAO;aAAQ;YACxCN,cAAc;YACdP,OAAO;gBACLC,aAAa;YACf;QACF;QACA;YACEJ,MAAM;YACNC,MAAM;YACNe,SAAS;gBACP;oBAAEC,OAAO;oBAAQX,OAAO;gBAAO;gBAC/B;oBAAEW,OAAO;oBAAWX,OAAO;gBAAU;gBACrC;oBAAEW,OAAO;oBAAgBX,OAAO;gBAAS;gBACzC;oBAAEW,OAAO;oBAAcX,OAAO;gBAAQ;aACvC;YACDI,cAAc;YACdP,OAAO;gBACLC,aAAa;YACf;QACF;KACD;AACH"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xtr-dev/payload-automation",
3
- "version": "0.0.27",
3
+ "version": "0.0.29",
4
4
  "description": "PayloadCMS Automation Plugin - Comprehensive workflow automation system with visual workflow building, execution tracking, and step types",
5
5
  "license": "MIT",
6
6
  "type": "module",