@periskope/types 0.6.72 → 0.6.73

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/types.d.ts CHANGED
@@ -93,7 +93,7 @@ export type NotificationType = Tables<'tbl_chat_notifications'>;
93
93
  export type ChatAccessType = Merge<Partial<Tables<'tbl_chat_access'>>, Tables<'tbl_org_members'>>;
94
94
  export declare const labelColors: string[];
95
95
  export declare const enumChatColors: readonly ["#B4876E", "#A5B337", "#06CF9C", "#25D366", "#02A698", "#7D9EF1", "#007BFC", "#5E47DE", "#7F66FF", "#9333EA", "#FA6533", "#C4532D", "#DC2626", "#FF2E74", "#DB2777"];
96
- export declare const SUPPORTED_TYPES: readonly ["chat", "sticker", "image", "video", "document", "vcard", "multi_vcard", "audio", "ptt", "poll_creation"];
96
+ export declare const SUPPORTED_TYPES: readonly ["chat", "sticker", "image", "video", "document", "vcard", "multi_vcard", "audio", "ptt", "poll_creation", "location"];
97
97
  export type SendMessageContent = {
98
98
  message_type?: (typeof SUPPORTED_TYPES)[number];
99
99
  body?: string;
package/dist/types.js CHANGED
@@ -48,6 +48,7 @@ exports.SUPPORTED_TYPES = [
48
48
  'audio',
49
49
  'ptt',
50
50
  'poll_creation',
51
+ 'location'
51
52
  ];
52
53
  var IntegrationLogType;
53
54
  (function (IntegrationLogType) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.72",
3
+ "version": "0.6.73",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/types.ts CHANGED
@@ -177,6 +177,7 @@ export const SUPPORTED_TYPES = [
177
177
  'audio',
178
178
  'ptt',
179
179
  'poll_creation',
180
+ 'location'
180
181
  ] as const;
181
182
 
182
183
  export type SendMessageContent = {