@periskope/types 0.6.172 → 0.6.174

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.
@@ -152,7 +152,7 @@ export type CreateTicketAction = {
152
152
  assignee?: string;
153
153
  priority?: '0' | '1' | '2' | '3' | '4';
154
154
  label?: string;
155
- append_to_latest_ticket?: boolean;
155
+ append_to_latest_ticket?: 'true' | 'false';
156
156
  };
157
157
  };
158
158
  export type FlagMessageAction = {
@@ -235,7 +235,7 @@ export type ReplyToMessageAction = {
235
235
  type: 'image' | 'video' | 'audio' | 'document';
236
236
  name: string;
237
237
  };
238
- maintain_flag_status: boolean;
238
+ maintain_flag_status: 'true' | 'false';
239
239
  debounce_messages: 'true' | 'false';
240
240
  debounce_message_time: `${number} ${'seconds' | 'minutes' | 'hours' | 'days'}` | null | undefined;
241
241
  };
package/dist/types.d.ts CHANGED
@@ -89,6 +89,9 @@ export type OrgMetadata = {
89
89
  [id: string]: number;
90
90
  };
91
91
  };
92
+ rules?: {
93
+ limit?: number;
94
+ };
92
95
  };
93
96
  type AccessScopes = {
94
97
  feature_flags: Record<string, boolean>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.172",
3
+ "version": "0.6.174",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/rules.types.ts CHANGED
@@ -802,7 +802,7 @@ export type CreateTicketAction = {
802
802
  assignee?: string;
803
803
  priority?: '0' | '1' | '2' | '3' | '4';
804
804
  label?: string;
805
- append_to_latest_ticket?: boolean;
805
+ append_to_latest_ticket?: 'true' | 'false';
806
806
  };
807
807
  };
808
808
 
@@ -894,7 +894,7 @@ export type ReplyToMessageAction = {
894
894
  type: 'image' | 'video' | 'audio' | 'document';
895
895
  name: string;
896
896
  };
897
- maintain_flag_status: boolean;
897
+ maintain_flag_status: 'true' | 'false';
898
898
  debounce_messages: 'true' | 'false';
899
899
  debounce_message_time:
900
900
  | `${number} ${'seconds' | 'minutes' | 'hours' | 'days'}`
package/types.ts CHANGED
@@ -106,6 +106,9 @@ export type OrgMetadata = {
106
106
  [id: string]: number;
107
107
  };
108
108
  };
109
+ rules?: {
110
+ limit?: number;
111
+ }
109
112
  };
110
113
 
111
114
  type AccessScopes = {