@periskope/types 0.6.13-7.2 → 0.6.13-7.3
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/rules.types.d.ts +3 -4
- package/package.json +1 -1
- package/rules.types.ts +3 -4
package/dist/rules.types.d.ts
CHANGED
|
@@ -148,10 +148,9 @@ export type CreateTicketAction = {
|
|
|
148
148
|
type: 'create_ticket';
|
|
149
149
|
delay: `${number} ${'seconds' | 'minutes' | 'hours' | 'days'}`;
|
|
150
150
|
metadata: {
|
|
151
|
-
assignee
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
label: string;
|
|
151
|
+
assignee?: string;
|
|
152
|
+
priority?: 0 | 1 | 2 | 3 | 4;
|
|
153
|
+
label?: string;
|
|
155
154
|
};
|
|
156
155
|
};
|
|
157
156
|
export type FlagMessageAction = {
|
package/package.json
CHANGED
package/rules.types.ts
CHANGED
|
@@ -509,10 +509,9 @@ export type CreateTicketAction = {
|
|
|
509
509
|
type: 'create_ticket';
|
|
510
510
|
delay: `${number} ${'seconds' | 'minutes' | 'hours' | 'days'}`;
|
|
511
511
|
metadata: {
|
|
512
|
-
assignee
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
label: string;
|
|
512
|
+
assignee?: string;
|
|
513
|
+
priority?: 0 | 1 | 2 | 3 | 4;
|
|
514
|
+
label?: string;
|
|
516
515
|
};
|
|
517
516
|
};
|
|
518
517
|
|