@periskope/types 0.6.48 → 0.6.50

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.
@@ -9,7 +9,7 @@ export declare const TableColumns: {
9
9
  readonly tbl_chat_tickets: readonly ["created_at", "ticket_id", "subject", "status", "assignee", "assigned_by", "chat_id", "due_date", "org_id", "label_ids", "quoted_message_id", "raised_by", "priority", "last_updated_at"];
10
10
  readonly tbl_chats: readonly ["org_id", "chat_id", "archived", "id", "is_group", "is_muted", "is_read_only", "mute_expiration", "name", "pinned", "unread_count", "group_metadata", "chat_image", "timestamp", "invite_link", "org_phone", "label_ids", "updated_at"];
11
11
  readonly tbl_contacts: readonly ["org_id", "contact_id", "id", "number", "is_business", "is_enterprise", "name", "pushname", "short_name", "contact_type", "is_me", "is_user", "is_group", "is_wa_contact", "is_my_contact", "is_blocked", "contact_image", "contact_color", "business_profile", "verified_name", "is_internal", "label_ids", "verified_level", "updated_at"];
12
- readonly tbl_org: readonly ["org_id", "created_at", "org_image", "org_name", "support_link", "org_metadata", "org_plan"];
12
+ readonly tbl_org: readonly ["org_id", "created_at", "org_image", "org_name", "support_link", "org_metadata", "org_plan", "stripe_customer_details", "stripe_customer_id", "stripe_subscription_details"];
13
13
  readonly tbl_org_labels: readonly ["label_id", "created_at", "org_id", "name", "color", "type"];
14
14
  readonly tbl_org_members: readonly ["created_at", "email", "user_id", "invited_at", "invited_by", "org_id", "role", "member_image", "member_name", "is_active", "member_color"];
15
15
  readonly tbl_org_phones: readonly ["org_id", "org_phone", "created_at", "updated_at", "wa_state", "phone_id", "qr_code", "phone_image", "phone_name", "server_ip"];
@@ -179,7 +179,10 @@ exports.TableColumns = {
179
179
  "org_name",
180
180
  "support_link",
181
181
  "org_metadata",
182
- "org_plan"
182
+ "org_plan",
183
+ "stripe_customer_details",
184
+ "stripe_customer_id",
185
+ "stripe_subscription_details"
183
186
  ],
184
187
  "tbl_org_labels": [
185
188
  "label_id",
@@ -682,6 +682,9 @@ export interface Database {
682
682
  org_metadata: Json | null;
683
683
  org_name: string | null;
684
684
  org_plan: Json | null;
685
+ stripe_customer_details: Json | null;
686
+ stripe_customer_id: string | null;
687
+ stripe_subscription_details: Json | null;
685
688
  support_link: string | null;
686
689
  };
687
690
  Insert: {
@@ -691,6 +694,9 @@ export interface Database {
691
694
  org_metadata?: Json | null;
692
695
  org_name?: string | null;
693
696
  org_plan?: Json | null;
697
+ stripe_customer_details?: Json | null;
698
+ stripe_customer_id?: string | null;
699
+ stripe_subscription_details?: Json | null;
694
700
  support_link?: string | null;
695
701
  };
696
702
  Update: {
@@ -700,6 +706,9 @@ export interface Database {
700
706
  org_metadata?: Json | null;
701
707
  org_name?: string | null;
702
708
  org_plan?: Json | null;
709
+ stripe_customer_details?: Json | null;
710
+ stripe_customer_id?: string | null;
711
+ stripe_subscription_details?: Json | null;
703
712
  support_link?: string | null;
704
713
  };
705
714
  Relationships: [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.48",
3
+ "version": "0.6.50",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -176,7 +176,10 @@ export const TableColumns = {
176
176
  "org_name",
177
177
  "support_link",
178
178
  "org_metadata",
179
- "org_plan"
179
+ "org_plan",
180
+ "stripe_customer_details",
181
+ "stripe_customer_id",
182
+ "stripe_subscription_details"
180
183
  ],
181
184
  "tbl_org_labels": [
182
185
  "label_id",
package/supabase.types.ts CHANGED
@@ -685,6 +685,9 @@ export interface Database {
685
685
  org_metadata: Json | null
686
686
  org_name: string | null
687
687
  org_plan: Json | null
688
+ stripe_customer_details: Json | null
689
+ stripe_customer_id: string | null
690
+ stripe_subscription_details: Json | null
688
691
  support_link: string | null
689
692
  }
690
693
  Insert: {
@@ -694,6 +697,9 @@ export interface Database {
694
697
  org_metadata?: Json | null
695
698
  org_name?: string | null
696
699
  org_plan?: Json | null
700
+ stripe_customer_details?: Json | null
701
+ stripe_customer_id?: string | null
702
+ stripe_subscription_details?: Json | null
697
703
  support_link?: string | null
698
704
  }
699
705
  Update: {
@@ -703,6 +709,9 @@ export interface Database {
703
709
  org_metadata?: Json | null
704
710
  org_name?: string | null
705
711
  org_plan?: Json | null
712
+ stripe_customer_details?: Json | null
713
+ stripe_customer_id?: string | null
714
+ stripe_subscription_details?: Json | null
706
715
  support_link?: string | null
707
716
  }
708
717
  Relationships: []