@periskope/types 0.6.166 → 0.6.167

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.
@@ -669,18 +669,19 @@ exports.ActionNameMap = {
669
669
  debounce_messages: {
670
670
  id: 'debounce_messages',
671
671
  type: 'dropdown',
672
- label: 'Debounce Messages',
672
+ label: 'Enable Cooldown Period',
673
673
  placeholder: 'Select...',
674
674
  value: [
675
675
  { id: 'true', value: 'true', label: 'True' },
676
676
  { id: 'false', value: 'false', label: 'False' },
677
677
  ],
678
+ info: 'If enabled, only one message per chat will be sent in the specified cooldown period',
678
679
  required: false,
679
680
  },
680
681
  debounce_message_time: {
681
682
  id: 'debounce_message_time',
682
683
  type: 'dynamic',
683
- label: 'Debounce Messages Time',
684
+ label: 'Cooldown Period',
684
685
  placeholder: 'Enter time',
685
686
  value: 'debounce_messages',
686
687
  required: false,
@@ -731,18 +732,19 @@ exports.ActionNameMap = {
731
732
  debounce_messages: {
732
733
  id: 'debounce_messages',
733
734
  type: 'dropdown',
734
- label: 'Debounce Messages',
735
+ label: 'Enable Cooldown Period',
735
736
  placeholder: 'Select...',
736
737
  value: [
737
738
  { id: 'true', value: 'true', label: 'True' },
738
739
  { id: 'false', value: 'false', label: 'False' },
739
740
  ],
741
+ info: 'If enabled, only one message per chat will be sent in the specified cooldown period',
740
742
  required: false,
741
743
  },
742
744
  debounce_message_time: {
743
745
  id: 'debounce_message_time',
744
746
  type: 'dynamic',
745
- label: 'Debounce Messages Time',
747
+ label: 'Cooldown Period',
746
748
  placeholder: 'Enter time',
747
749
  value: 'debounce_messages',
748
750
  required: false,
@@ -2,31 +2,6 @@ export type Json = {
2
2
  [key: string]: any;
3
3
  } | any;
4
4
  export type Database = {
5
- graphql_public: {
6
- Tables: {
7
- [_ in never]: never;
8
- };
9
- Views: {
10
- [_ in never]: never;
11
- };
12
- Functions: {
13
- graphql: {
14
- Args: {
15
- operationName?: string;
16
- query?: string;
17
- variables?: Json;
18
- extensions?: Json;
19
- };
20
- Returns: Json;
21
- };
22
- };
23
- Enums: {
24
- [_ in never]: never;
25
- };
26
- CompositeTypes: {
27
- [_ in never]: never;
28
- };
29
- };
30
5
  internal: {
31
6
  Tables: {
32
7
  config: {
@@ -2359,6 +2334,7 @@ export type Database = {
2359
2334
  owner_id: string | null;
2360
2335
  path_tokens: string[] | null;
2361
2336
  updated_at: string | null;
2337
+ user_metadata: Json | null;
2362
2338
  version: string | null;
2363
2339
  };
2364
2340
  Insert: {
@@ -2372,6 +2348,7 @@ export type Database = {
2372
2348
  owner_id?: string | null;
2373
2349
  path_tokens?: string[] | null;
2374
2350
  updated_at?: string | null;
2351
+ user_metadata?: Json | null;
2375
2352
  version?: string | null;
2376
2353
  };
2377
2354
  Update: {
@@ -2385,6 +2362,7 @@ export type Database = {
2385
2362
  owner_id?: string | null;
2386
2363
  path_tokens?: string[] | null;
2387
2364
  updated_at?: string | null;
2365
+ user_metadata?: Json | null;
2388
2366
  version?: string | null;
2389
2367
  };
2390
2368
  Relationships: [
@@ -2406,6 +2384,7 @@ export type Database = {
2406
2384
  key: string;
2407
2385
  owner_id: string | null;
2408
2386
  upload_signature: string;
2387
+ user_metadata: Json | null;
2409
2388
  version: string;
2410
2389
  };
2411
2390
  Insert: {
@@ -2416,6 +2395,7 @@ export type Database = {
2416
2395
  key: string;
2417
2396
  owner_id?: string | null;
2418
2397
  upload_signature: string;
2398
+ user_metadata?: Json | null;
2419
2399
  version: string;
2420
2400
  };
2421
2401
  Update: {
@@ -2426,6 +2406,7 @@ export type Database = {
2426
2406
  key?: string;
2427
2407
  owner_id?: string | null;
2428
2408
  upload_signature?: string;
2409
+ user_metadata?: Json | null;
2429
2410
  version?: string;
2430
2411
  };
2431
2412
  Relationships: [
@@ -2562,6 +2543,10 @@ export type Database = {
2562
2543
  updated_at: string;
2563
2544
  }[];
2564
2545
  };
2546
+ operation: {
2547
+ Args: Record<PropertyKey, never>;
2548
+ Returns: string;
2549
+ };
2565
2550
  search: {
2566
2551
  Args: {
2567
2552
  prefix: string;
package/index.ts CHANGED
@@ -1,3 +1,3 @@
1
- export * from './rules.types';
2
- export * from './supabase.types';
3
- export * from './types';
1
+ export * from './rules.types';
2
+ export * from './supabase.types';
3
+ export * from './types';
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.166",
3
+ "version": "0.6.167",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "dependencies": {
8
- "@periskope/whatsapp-web.js": "1.23.1-alpha.exodus.8",
9
8
  "@types/pg": "8.11.2",
10
9
  "pg": "^8.11.3",
11
10
  "stripe": "^14.19.0",