@periskope/types 0.6.464 → 0.6.465
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/supabase.types.d.ts
CHANGED
|
@@ -2249,11 +2249,12 @@ export type Database = {
|
|
|
2249
2249
|
is_revealed: boolean;
|
|
2250
2250
|
name: string;
|
|
2251
2251
|
org_id: string;
|
|
2252
|
+
refresh_token_hash: string | null;
|
|
2252
2253
|
role: string;
|
|
2253
2254
|
token: string;
|
|
2254
2255
|
token_hash: string;
|
|
2255
2256
|
token_metadata: Json;
|
|
2256
|
-
type:
|
|
2257
|
+
type: string;
|
|
2257
2258
|
};
|
|
2258
2259
|
Insert: {
|
|
2259
2260
|
exp: string;
|
|
@@ -2262,11 +2263,12 @@ export type Database = {
|
|
|
2262
2263
|
is_revealed?: boolean;
|
|
2263
2264
|
name: string;
|
|
2264
2265
|
org_id: string;
|
|
2266
|
+
refresh_token_hash?: string | null;
|
|
2265
2267
|
role: string;
|
|
2266
2268
|
token: string;
|
|
2267
2269
|
token_hash: string;
|
|
2268
2270
|
token_metadata?: Json;
|
|
2269
|
-
type:
|
|
2271
|
+
type: string;
|
|
2270
2272
|
};
|
|
2271
2273
|
Update: {
|
|
2272
2274
|
exp?: string;
|
|
@@ -2275,11 +2277,12 @@ export type Database = {
|
|
|
2275
2277
|
is_revealed?: boolean;
|
|
2276
2278
|
name?: string;
|
|
2277
2279
|
org_id?: string;
|
|
2280
|
+
refresh_token_hash?: string | null;
|
|
2278
2281
|
role?: string;
|
|
2279
2282
|
token?: string;
|
|
2280
2283
|
token_hash?: string;
|
|
2281
2284
|
token_metadata?: Json;
|
|
2282
|
-
type?:
|
|
2285
|
+
type?: string;
|
|
2283
2286
|
};
|
|
2284
2287
|
Relationships: [
|
|
2285
2288
|
{
|
|
@@ -4413,7 +4416,7 @@ export declare const Constants: {
|
|
|
4413
4416
|
readonly enum_chat_tickets_status: readonly ["open", "inprogress", "closed", "archived"];
|
|
4414
4417
|
readonly enum_credit_transaction_type: readonly ["credit", "debit"];
|
|
4415
4418
|
readonly enum_integration_name: readonly ["org.created", "org.updated", "org.member.created", "org.member.updated", "org.subscription.trial_will_end", "chat.created", "chat.updated", "chat.notification.created", "message.created", "message.updated", "message.deleted", "message.ack.updated", "reaction.created", "reaction.updated", "ticket.created", "ticket.updated", "ticket.deleted", "org.integrations.updated", "message.flagged", "message.unflagged", "chat.label.updated", "reaction.added", "message.ticket.attached", "org.phone.created", "org.phone.connected", "org.phone.disconnected", "org.phone.qr", "org.phone.updated", "note.created", "chat.custom_properties.updated"];
|
|
4416
|
-
readonly enum_integration_type: readonly ["zapier", "pabbly", "api", "webhook", "hubspot", "freshdesk", "slack", "jira", "salesforce", "zohodesk", "gsheets", "zohocrm"];
|
|
4419
|
+
readonly enum_integration_type: readonly ["zapier", "pabbly", "api", "webhook", "hubspot", "freshdesk", "slack", "jira", "salesforce", "zohodesk", "gsheets", "zohocrm", "mcp"];
|
|
4417
4420
|
readonly enum_member_role: readonly ["admin", "member"];
|
|
4418
4421
|
};
|
|
4419
4422
|
};
|