@elevasis/ui 2.51.0 → 2.52.0
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/app/index.d.ts +82 -151
- package/dist/app/index.js +6 -5
- package/dist/auth/index.js +4 -4
- package/dist/charts/index.js +4 -4
- package/dist/{chunk-SBNC3FRX.js → chunk-CPIQ5GXG.js} +394 -112
- package/dist/{chunk-GUKY77FJ.js → chunk-E6NSKXYN.js} +12 -4
- package/dist/{chunk-7FPLLSHN.js → chunk-I3CFGE3N.js} +6 -0
- package/dist/chunk-M7WWRZ5Z.js +159 -0
- package/dist/components/chat/index.d.ts +9 -1
- package/dist/components/chat/index.js +1 -1
- package/dist/components/index.d.ts +98 -155
- package/dist/components/index.js +4 -4
- package/dist/components/navigation/index.js +4 -4
- package/dist/execution/index.d.ts +2 -0
- package/dist/execution/index.js +1 -1
- package/dist/features/auth/index.d.ts +80 -150
- package/dist/features/auth/index.js +5 -5
- package/dist/features/clients/index.js +4 -4
- package/dist/features/crm/index.d.ts +80 -150
- package/dist/features/crm/index.js +4 -4
- package/dist/features/dashboard/index.js +4 -4
- package/dist/features/delivery/index.d.ts +80 -150
- package/dist/features/delivery/index.js +4 -4
- package/dist/features/knowledge/index.js +4 -4
- package/dist/features/lead-gen/index.js +4 -4
- package/dist/features/monitoring/index.d.ts +1 -1
- package/dist/features/monitoring/index.js +4 -4
- package/dist/features/monitoring/requests/index.js +5 -5
- package/dist/features/operations/index.js +4 -4
- package/dist/features/public-agent-chat/index.d.ts +17 -3
- package/dist/features/public-agent-chat/index.js +313 -113
- package/dist/features/settings/index.d.ts +80 -150
- package/dist/features/settings/index.js +4 -4
- package/dist/hooks/access/index.js +4 -4
- package/dist/hooks/delivery/index.d.ts +80 -150
- package/dist/hooks/delivery/index.js +4 -4
- package/dist/hooks/index.d.ts +98 -152
- package/dist/hooks/index.js +4 -4
- package/dist/hooks/published.d.ts +98 -152
- package/dist/hooks/published.js +4 -4
- package/dist/index.d.ts +116 -155
- package/dist/index.js +4 -4
- package/dist/initialization/index.d.ts +80 -150
- package/dist/knowledge/index.js +5 -5
- package/dist/layout/index.js +4 -4
- package/dist/organization/index.js +4 -4
- package/dist/profile/index.d.ts +80 -150
- package/dist/provider/index.d.ts +80 -150
- package/dist/provider/index.js +4 -4
- package/dist/provider/published.d.ts +80 -150
- package/dist/provider/published.js +4 -4
- package/dist/supabase/index.d.ts +159 -292
- package/dist/types/index.d.ts +81 -151
- package/package.json +3 -3
- package/dist/chunk-EJL4U7OZ.js +0 -79
package/dist/supabase/index.d.ts
CHANGED
|
@@ -4,9 +4,6 @@ type Json = string | number | boolean | null | {
|
|
|
4
4
|
[key: string]: Json | undefined;
|
|
5
5
|
} | Json[];
|
|
6
6
|
type Database = {
|
|
7
|
-
__InternalSupabase: {
|
|
8
|
-
PostgrestVersion: "12.2.3 (519615d)";
|
|
9
|
-
};
|
|
10
7
|
public: {
|
|
11
8
|
Tables: {
|
|
12
9
|
acq_artifacts: {
|
|
@@ -1206,6 +1203,74 @@ type Database = {
|
|
|
1206
1203
|
}
|
|
1207
1204
|
];
|
|
1208
1205
|
};
|
|
1206
|
+
agent_access_grants: {
|
|
1207
|
+
Row: {
|
|
1208
|
+
allowed_origins: string[];
|
|
1209
|
+
branding: Json;
|
|
1210
|
+
capture_fields: Json;
|
|
1211
|
+
code_hash: string | null;
|
|
1212
|
+
code_salt: string | null;
|
|
1213
|
+
created_at: string;
|
|
1214
|
+
disabled_at: string | null;
|
|
1215
|
+
expires_at: string | null;
|
|
1216
|
+
id: string;
|
|
1217
|
+
max_sessions_per_visitor: number;
|
|
1218
|
+
max_turns_per_session: number;
|
|
1219
|
+
mode: string;
|
|
1220
|
+
organization_id: string;
|
|
1221
|
+
resource_id: string;
|
|
1222
|
+
slug: string;
|
|
1223
|
+
tool_policy: Json;
|
|
1224
|
+
updated_at: string;
|
|
1225
|
+
};
|
|
1226
|
+
Insert: {
|
|
1227
|
+
allowed_origins?: string[];
|
|
1228
|
+
branding?: Json;
|
|
1229
|
+
capture_fields?: Json;
|
|
1230
|
+
code_hash?: string | null;
|
|
1231
|
+
code_salt?: string | null;
|
|
1232
|
+
created_at?: string;
|
|
1233
|
+
disabled_at?: string | null;
|
|
1234
|
+
expires_at?: string | null;
|
|
1235
|
+
id?: string;
|
|
1236
|
+
max_sessions_per_visitor?: number;
|
|
1237
|
+
max_turns_per_session?: number;
|
|
1238
|
+
mode?: string;
|
|
1239
|
+
organization_id: string;
|
|
1240
|
+
resource_id: string;
|
|
1241
|
+
slug: string;
|
|
1242
|
+
tool_policy?: Json;
|
|
1243
|
+
updated_at?: string;
|
|
1244
|
+
};
|
|
1245
|
+
Update: {
|
|
1246
|
+
allowed_origins?: string[];
|
|
1247
|
+
branding?: Json;
|
|
1248
|
+
capture_fields?: Json;
|
|
1249
|
+
code_hash?: string | null;
|
|
1250
|
+
code_salt?: string | null;
|
|
1251
|
+
created_at?: string;
|
|
1252
|
+
disabled_at?: string | null;
|
|
1253
|
+
expires_at?: string | null;
|
|
1254
|
+
id?: string;
|
|
1255
|
+
max_sessions_per_visitor?: number;
|
|
1256
|
+
max_turns_per_session?: number;
|
|
1257
|
+
mode?: string;
|
|
1258
|
+
organization_id?: string;
|
|
1259
|
+
resource_id?: string;
|
|
1260
|
+
slug?: string;
|
|
1261
|
+
tool_policy?: Json;
|
|
1262
|
+
updated_at?: string;
|
|
1263
|
+
};
|
|
1264
|
+
Relationships: [
|
|
1265
|
+
{
|
|
1266
|
+
foreignKeyName: "agent_access_grants_organization_id_fkey";
|
|
1267
|
+
columns: ["organization_id"];
|
|
1268
|
+
isOneToOne: false;
|
|
1269
|
+
referencedRelation: "organizations";
|
|
1270
|
+
referencedColumns: ["id"];
|
|
1271
|
+
}
|
|
1272
|
+
];
|
|
1273
|
+
};
|
|
1209
1274
|
api_keys: {
|
|
1210
1275
|
Row: {
|
|
1211
1276
|
created_at: string | null;
|
|
@@ -2113,138 +2178,6 @@ type Database = {
|
|
|
2113
2178
|
};
|
|
2114
2179
|
Relationships: [];
|
|
2115
2180
|
};
|
|
2116
|
-
agent_access_grants: {
|
|
2117
|
-
Row: {
|
|
2118
|
-
allowed_origins: string[];
|
|
2119
|
-
branding: Json;
|
|
2120
|
-
capture_fields: Json;
|
|
2121
|
-
code_hash: string | null;
|
|
2122
|
-
code_salt: string | null;
|
|
2123
|
-
created_at: string;
|
|
2124
|
-
disabled_at: string | null;
|
|
2125
|
-
expires_at: string | null;
|
|
2126
|
-
id: string;
|
|
2127
|
-
max_sessions_per_visitor: number;
|
|
2128
|
-
max_turns_per_session: number;
|
|
2129
|
-
mode: string;
|
|
2130
|
-
organization_id: string;
|
|
2131
|
-
resource_id: string;
|
|
2132
|
-
slug: string;
|
|
2133
|
-
tool_policy: Json;
|
|
2134
|
-
updated_at: string;
|
|
2135
|
-
};
|
|
2136
|
-
Insert: {
|
|
2137
|
-
allowed_origins?: string[];
|
|
2138
|
-
branding?: Json;
|
|
2139
|
-
capture_fields?: Json;
|
|
2140
|
-
code_hash?: string | null;
|
|
2141
|
-
code_salt?: string | null;
|
|
2142
|
-
created_at?: string;
|
|
2143
|
-
disabled_at?: string | null;
|
|
2144
|
-
expires_at?: string | null;
|
|
2145
|
-
id?: string;
|
|
2146
|
-
max_sessions_per_visitor?: number;
|
|
2147
|
-
max_turns_per_session?: number;
|
|
2148
|
-
mode?: string;
|
|
2149
|
-
organization_id: string;
|
|
2150
|
-
resource_id: string;
|
|
2151
|
-
slug: string;
|
|
2152
|
-
tool_policy?: Json;
|
|
2153
|
-
updated_at?: string;
|
|
2154
|
-
};
|
|
2155
|
-
Update: {
|
|
2156
|
-
allowed_origins?: string[];
|
|
2157
|
-
branding?: Json;
|
|
2158
|
-
capture_fields?: Json;
|
|
2159
|
-
code_hash?: string | null;
|
|
2160
|
-
code_salt?: string | null;
|
|
2161
|
-
created_at?: string;
|
|
2162
|
-
disabled_at?: string | null;
|
|
2163
|
-
expires_at?: string | null;
|
|
2164
|
-
id?: string;
|
|
2165
|
-
max_sessions_per_visitor?: number;
|
|
2166
|
-
max_turns_per_session?: number;
|
|
2167
|
-
mode?: string;
|
|
2168
|
-
organization_id?: string;
|
|
2169
|
-
resource_id?: string;
|
|
2170
|
-
slug?: string;
|
|
2171
|
-
tool_policy?: Json;
|
|
2172
|
-
updated_at?: string;
|
|
2173
|
-
};
|
|
2174
|
-
Relationships: [
|
|
2175
|
-
{
|
|
2176
|
-
foreignKeyName: "agent_access_grants_organization_id_fkey";
|
|
2177
|
-
columns: ["organization_id"];
|
|
2178
|
-
isOneToOne: false;
|
|
2179
|
-
referencedRelation: "organizations";
|
|
2180
|
-
referencedColumns: ["id"];
|
|
2181
|
-
}
|
|
2182
|
-
];
|
|
2183
|
-
};
|
|
2184
|
-
agent_chat_capabilities: {
|
|
2185
|
-
Row: {
|
|
2186
|
-
created_at: string;
|
|
2187
|
-
expires_at: string;
|
|
2188
|
-
grant_id: string;
|
|
2189
|
-
id: string;
|
|
2190
|
-
organization_id: string;
|
|
2191
|
-
origin: string | null;
|
|
2192
|
-
resource_id: string;
|
|
2193
|
-
revoked_at: string | null;
|
|
2194
|
-
session_id: string | null;
|
|
2195
|
-
token_hash: string;
|
|
2196
|
-
visitor_id: string | null;
|
|
2197
|
-
};
|
|
2198
|
-
Insert: {
|
|
2199
|
-
created_at?: string;
|
|
2200
|
-
expires_at: string;
|
|
2201
|
-
grant_id: string;
|
|
2202
|
-
id?: string;
|
|
2203
|
-
organization_id: string;
|
|
2204
|
-
origin?: string | null;
|
|
2205
|
-
resource_id: string;
|
|
2206
|
-
revoked_at?: string | null;
|
|
2207
|
-
session_id?: string | null;
|
|
2208
|
-
token_hash: string;
|
|
2209
|
-
visitor_id?: string | null;
|
|
2210
|
-
};
|
|
2211
|
-
Update: {
|
|
2212
|
-
created_at?: string;
|
|
2213
|
-
expires_at?: string;
|
|
2214
|
-
grant_id?: string;
|
|
2215
|
-
id?: string;
|
|
2216
|
-
organization_id?: string;
|
|
2217
|
-
origin?: string | null;
|
|
2218
|
-
resource_id?: string;
|
|
2219
|
-
revoked_at?: string | null;
|
|
2220
|
-
session_id?: string | null;
|
|
2221
|
-
token_hash?: string;
|
|
2222
|
-
visitor_id?: string | null;
|
|
2223
|
-
};
|
|
2224
|
-
Relationships: [
|
|
2225
|
-
{
|
|
2226
|
-
foreignKeyName: "agent_chat_capabilities_grant_id_fkey";
|
|
2227
|
-
columns: ["grant_id"];
|
|
2228
|
-
isOneToOne: false;
|
|
2229
|
-
referencedRelation: "agent_access_grants";
|
|
2230
|
-
referencedColumns: ["id"];
|
|
2231
|
-
},
|
|
2232
|
-
{
|
|
2233
|
-
foreignKeyName: "agent_chat_capabilities_organization_id_fkey";
|
|
2234
|
-
columns: ["organization_id"];
|
|
2235
|
-
isOneToOne: false;
|
|
2236
|
-
referencedRelation: "organizations";
|
|
2237
|
-
referencedColumns: ["id"];
|
|
2238
|
-
},
|
|
2239
|
-
{
|
|
2240
|
-
foreignKeyName: "agent_chat_capabilities_session_id_fkey";
|
|
2241
|
-
columns: ["session_id"];
|
|
2242
|
-
isOneToOne: false;
|
|
2243
|
-
referencedRelation: "sessions";
|
|
2244
|
-
referencedColumns: ["session_id"];
|
|
2245
|
-
}
|
|
2246
|
-
];
|
|
2247
|
-
};
|
|
2248
2181
|
organizations: {
|
|
2249
2182
|
Row: {
|
|
2250
2183
|
config: Json;
|
|
@@ -3143,11 +3076,11 @@ type Database = {
|
|
|
3143
3076
|
Returns: undefined;
|
|
3144
3077
|
};
|
|
3145
3078
|
auth_jwt_claims: {
|
|
3146
|
-
Args: never
|
|
3079
|
+
Args: Record<PropertyKey, never>;
|
|
3147
3080
|
Returns: Json;
|
|
3148
3081
|
};
|
|
3149
3082
|
auth_uid_safe: {
|
|
3150
|
-
Args: never
|
|
3083
|
+
Args: Record<PropertyKey, never>;
|
|
3151
3084
|
Returns: string;
|
|
3152
3085
|
};
|
|
3153
3086
|
can_assign_role_in_org: {
|
|
@@ -3158,7 +3091,7 @@ type Database = {
|
|
|
3158
3091
|
Returns: boolean;
|
|
3159
3092
|
};
|
|
3160
3093
|
current_user_is_platform_admin: {
|
|
3161
|
-
Args: never
|
|
3094
|
+
Args: Record<PropertyKey, never>;
|
|
3162
3095
|
Returns: boolean;
|
|
3163
3096
|
};
|
|
3164
3097
|
current_user_shares_org_with: {
|
|
@@ -3168,11 +3101,11 @@ type Database = {
|
|
|
3168
3101
|
Returns: boolean;
|
|
3169
3102
|
};
|
|
3170
3103
|
current_user_supabase_id: {
|
|
3171
|
-
Args: never
|
|
3104
|
+
Args: Record<PropertyKey, never>;
|
|
3172
3105
|
Returns: string;
|
|
3173
3106
|
};
|
|
3174
3107
|
detect_stalled_executions: {
|
|
3175
|
-
Args: never
|
|
3108
|
+
Args: Record<PropertyKey, never>;
|
|
3176
3109
|
Returns: undefined;
|
|
3177
3110
|
};
|
|
3178
3111
|
execute_session_turn: {
|
|
@@ -3193,7 +3126,7 @@ type Database = {
|
|
|
3193
3126
|
}[];
|
|
3194
3127
|
};
|
|
3195
3128
|
get_platform_credential_kek: {
|
|
3196
|
-
Args: never
|
|
3129
|
+
Args: Record<PropertyKey, never>;
|
|
3197
3130
|
Returns: string;
|
|
3198
3131
|
};
|
|
3199
3132
|
get_storage_org_id: {
|
|
@@ -3203,7 +3136,7 @@ type Database = {
|
|
|
3203
3136
|
Returns: string;
|
|
3204
3137
|
};
|
|
3205
3138
|
get_workos_user_id: {
|
|
3206
|
-
Args: never
|
|
3139
|
+
Args: Record<PropertyKey, never>;
|
|
3207
3140
|
Returns: string;
|
|
3208
3141
|
};
|
|
3209
3142
|
has_org_access: {
|
|
@@ -3211,10 +3144,7 @@ type Database = {
|
|
|
3211
3144
|
action?: string;
|
|
3212
3145
|
org_id: string;
|
|
3213
3146
|
system_path: string;
|
|
3214
|
-
}
|
|
3215
|
-
Returns: boolean;
|
|
3216
|
-
} | {
|
|
3217
|
-
Args: {
|
|
3147
|
+
} | {
|
|
3218
3148
|
action?: string;
|
|
3219
3149
|
system_path: string;
|
|
3220
3150
|
};
|
|
@@ -3250,15 +3180,15 @@ type Database = {
|
|
|
3250
3180
|
Returns: Json;
|
|
3251
3181
|
};
|
|
3252
3182
|
process_due_schedules: {
|
|
3253
|
-
Args: never
|
|
3183
|
+
Args: Record<PropertyKey, never>;
|
|
3254
3184
|
Returns: Json;
|
|
3255
3185
|
};
|
|
3256
3186
|
recompute_all_memberships: {
|
|
3257
|
-
Args: never
|
|
3187
|
+
Args: Record<PropertyKey, never>;
|
|
3258
3188
|
Returns: undefined;
|
|
3259
3189
|
};
|
|
3260
3190
|
repair_membership_role_assignments: {
|
|
3261
|
-
Args: never
|
|
3191
|
+
Args: Record<PropertyKey, never>;
|
|
3262
3192
|
Returns: {
|
|
3263
3193
|
membership_id: string;
|
|
3264
3194
|
organization_id: string;
|
|
@@ -3288,7 +3218,7 @@ type Database = {
|
|
|
3288
3218
|
Returns: string;
|
|
3289
3219
|
};
|
|
3290
3220
|
upsert_user_profile: {
|
|
3291
|
-
Args: never
|
|
3221
|
+
Args: Record<PropertyKey, never>;
|
|
3292
3222
|
Returns: {
|
|
3293
3223
|
profile_display_name: string;
|
|
3294
3224
|
profile_email: string;
|
|
@@ -4457,6 +4387,72 @@ declare const useSupabase: () => _supabase_supabase_js.SupabaseClient<Database,
|
|
|
4457
4387
|
referencedColumns: ["id"];
|
|
4458
4388
|
}];
|
|
4459
4389
|
};
|
|
4390
|
+
agent_access_grants: {
|
|
4391
|
+
Row: {
|
|
4392
|
+
allowed_origins: string[];
|
|
4393
|
+
branding: Json;
|
|
4394
|
+
capture_fields: Json;
|
|
4395
|
+
code_hash: string | null;
|
|
4396
|
+
code_salt: string | null;
|
|
4397
|
+
created_at: string;
|
|
4398
|
+
disabled_at: string | null;
|
|
4399
|
+
expires_at: string | null;
|
|
4400
|
+
id: string;
|
|
4401
|
+
max_sessions_per_visitor: number;
|
|
4402
|
+
max_turns_per_session: number;
|
|
4403
|
+
mode: string;
|
|
4404
|
+
organization_id: string;
|
|
4405
|
+
resource_id: string;
|
|
4406
|
+
slug: string;
|
|
4407
|
+
tool_policy: Json;
|
|
4408
|
+
updated_at: string;
|
|
4409
|
+
};
|
|
4410
|
+
Insert: {
|
|
4411
|
+
allowed_origins?: string[];
|
|
4412
|
+
branding?: Json;
|
|
4413
|
+
capture_fields?: Json;
|
|
4414
|
+
code_hash?: string | null;
|
|
4415
|
+
code_salt?: string | null;
|
|
4416
|
+
created_at?: string;
|
|
4417
|
+
disabled_at?: string | null;
|
|
4418
|
+
expires_at?: string | null;
|
|
4419
|
+
id?: string;
|
|
4420
|
+
max_sessions_per_visitor?: number;
|
|
4421
|
+
max_turns_per_session?: number;
|
|
4422
|
+
mode?: string;
|
|
4423
|
+
organization_id: string;
|
|
4424
|
+
resource_id: string;
|
|
4425
|
+
slug: string;
|
|
4426
|
+
tool_policy?: Json;
|
|
4427
|
+
updated_at?: string;
|
|
4428
|
+
};
|
|
4429
|
+
Update: {
|
|
4430
|
+
allowed_origins?: string[];
|
|
4431
|
+
branding?: Json;
|
|
4432
|
+
capture_fields?: Json;
|
|
4433
|
+
code_hash?: string | null;
|
|
4434
|
+
code_salt?: string | null;
|
|
4435
|
+
created_at?: string;
|
|
4436
|
+
disabled_at?: string | null;
|
|
4437
|
+
expires_at?: string | null;
|
|
4438
|
+
id?: string;
|
|
4439
|
+
max_sessions_per_visitor?: number;
|
|
4440
|
+
max_turns_per_session?: number;
|
|
4441
|
+
mode?: string;
|
|
4442
|
+
organization_id?: string;
|
|
4443
|
+
resource_id?: string;
|
|
4444
|
+
slug?: string;
|
|
4445
|
+
tool_policy?: Json;
|
|
4446
|
+
updated_at?: string;
|
|
4447
|
+
};
|
|
4448
|
+
Relationships: [{
|
|
4449
|
+
foreignKeyName: "agent_access_grants_organization_id_fkey";
|
|
4450
|
+
columns: ["organization_id"];
|
|
4451
|
+
isOneToOne: false;
|
|
4452
|
+
referencedRelation: "organizations";
|
|
4453
|
+
referencedColumns: ["id"];
|
|
4454
|
+
}];
|
|
4455
|
+
};
|
|
4460
4456
|
api_keys: {
|
|
4461
4457
|
Row: {
|
|
4462
4458
|
created_at: string | null;
|
|
@@ -5315,132 +5311,6 @@ declare const useSupabase: () => _supabase_supabase_js.SupabaseClient<Database,
|
|
|
5315
5311
|
};
|
|
5316
5312
|
Relationships: [];
|
|
5317
5313
|
};
|
|
5318
|
-
agent_access_grants: {
|
|
5319
|
-
Row: {
|
|
5320
|
-
allowed_origins: string[];
|
|
5321
|
-
branding: Json;
|
|
5322
|
-
capture_fields: Json;
|
|
5323
|
-
code_hash: string | null;
|
|
5324
|
-
code_salt: string | null;
|
|
5325
|
-
created_at: string;
|
|
5326
|
-
disabled_at: string | null;
|
|
5327
|
-
expires_at: string | null;
|
|
5328
|
-
id: string;
|
|
5329
|
-
max_sessions_per_visitor: number;
|
|
5330
|
-
max_turns_per_session: number;
|
|
5331
|
-
mode: string;
|
|
5332
|
-
organization_id: string;
|
|
5333
|
-
resource_id: string;
|
|
5334
|
-
slug: string;
|
|
5335
|
-
tool_policy: Json;
|
|
5336
|
-
updated_at: string;
|
|
5337
|
-
};
|
|
5338
|
-
Insert: {
|
|
5339
|
-
allowed_origins?: string[];
|
|
5340
|
-
branding?: Json;
|
|
5341
|
-
capture_fields?: Json;
|
|
5342
|
-
code_hash?: string | null;
|
|
5343
|
-
code_salt?: string | null;
|
|
5344
|
-
created_at?: string;
|
|
5345
|
-
disabled_at?: string | null;
|
|
5346
|
-
expires_at?: string | null;
|
|
5347
|
-
id?: string;
|
|
5348
|
-
max_sessions_per_visitor?: number;
|
|
5349
|
-
max_turns_per_session?: number;
|
|
5350
|
-
mode?: string;
|
|
5351
|
-
organization_id: string;
|
|
5352
|
-
resource_id: string;
|
|
5353
|
-
slug: string;
|
|
5354
|
-
tool_policy?: Json;
|
|
5355
|
-
updated_at?: string;
|
|
5356
|
-
};
|
|
5357
|
-
Update: {
|
|
5358
|
-
allowed_origins?: string[];
|
|
5359
|
-
branding?: Json;
|
|
5360
|
-
capture_fields?: Json;
|
|
5361
|
-
code_hash?: string | null;
|
|
5362
|
-
code_salt?: string | null;
|
|
5363
|
-
created_at?: string;
|
|
5364
|
-
disabled_at?: string | null;
|
|
5365
|
-
expires_at?: string | null;
|
|
5366
|
-
id?: string;
|
|
5367
|
-
max_sessions_per_visitor?: number;
|
|
5368
|
-
max_turns_per_session?: number;
|
|
5369
|
-
mode?: string;
|
|
5370
|
-
organization_id?: string;
|
|
5371
|
-
resource_id?: string;
|
|
5372
|
-
slug?: string;
|
|
5373
|
-
tool_policy?: Json;
|
|
5374
|
-
updated_at?: string;
|
|
5375
|
-
};
|
|
5376
|
-
Relationships: [{
|
|
5377
|
-
foreignKeyName: "agent_access_grants_organization_id_fkey";
|
|
5378
|
-
columns: ["organization_id"];
|
|
5379
|
-
isOneToOne: false;
|
|
5380
|
-
referencedRelation: "organizations";
|
|
5381
|
-
referencedColumns: ["id"];
|
|
5382
|
-
}];
|
|
5383
|
-
};
|
|
5384
|
-
agent_chat_capabilities: {
|
|
5385
|
-
Row: {
|
|
5386
|
-
created_at: string;
|
|
5387
|
-
expires_at: string;
|
|
5388
|
-
grant_id: string;
|
|
5389
|
-
id: string;
|
|
5390
|
-
organization_id: string;
|
|
5391
|
-
origin: string | null;
|
|
5392
|
-
resource_id: string;
|
|
5393
|
-
revoked_at: string | null;
|
|
5394
|
-
session_id: string | null;
|
|
5395
|
-
token_hash: string;
|
|
5396
|
-
visitor_id: string | null;
|
|
5397
|
-
};
|
|
5398
|
-
Insert: {
|
|
5399
|
-
created_at?: string;
|
|
5400
|
-
expires_at: string;
|
|
5401
|
-
grant_id: string;
|
|
5402
|
-
id?: string;
|
|
5403
|
-
organization_id: string;
|
|
5404
|
-
origin?: string | null;
|
|
5405
|
-
resource_id: string;
|
|
5406
|
-
revoked_at?: string | null;
|
|
5407
|
-
session_id?: string | null;
|
|
5408
|
-
token_hash: string;
|
|
5409
|
-
visitor_id?: string | null;
|
|
5410
|
-
};
|
|
5411
|
-
Update: {
|
|
5412
|
-
created_at?: string;
|
|
5413
|
-
expires_at?: string;
|
|
5414
|
-
grant_id?: string;
|
|
5415
|
-
id?: string;
|
|
5416
|
-
organization_id?: string;
|
|
5417
|
-
origin?: string | null;
|
|
5418
|
-
resource_id?: string;
|
|
5419
|
-
revoked_at?: string | null;
|
|
5420
|
-
session_id?: string | null;
|
|
5421
|
-
token_hash?: string;
|
|
5422
|
-
visitor_id?: string | null;
|
|
5423
|
-
};
|
|
5424
|
-
Relationships: [{
|
|
5425
|
-
foreignKeyName: "agent_chat_capabilities_grant_id_fkey";
|
|
5426
|
-
columns: ["grant_id"];
|
|
5427
|
-
isOneToOne: false;
|
|
5428
|
-
referencedRelation: "agent_access_grants";
|
|
5429
|
-
referencedColumns: ["id"];
|
|
5430
|
-
}, {
|
|
5431
|
-
foreignKeyName: "agent_chat_capabilities_organization_id_fkey";
|
|
5432
|
-
columns: ["organization_id"];
|
|
5433
|
-
isOneToOne: false;
|
|
5434
|
-
referencedRelation: "organizations";
|
|
5435
|
-
referencedColumns: ["id"];
|
|
5436
|
-
}, {
|
|
5437
|
-
foreignKeyName: "agent_chat_capabilities_session_id_fkey";
|
|
5438
|
-
columns: ["session_id"];
|
|
5439
|
-
isOneToOne: false;
|
|
5440
|
-
referencedRelation: "sessions";
|
|
5441
|
-
referencedColumns: ["session_id"];
|
|
5442
|
-
}];
|
|
5443
|
-
};
|
|
5444
5314
|
organizations: {
|
|
5445
5315
|
Row: {
|
|
5446
5316
|
config: Json;
|
|
@@ -6290,11 +6160,11 @@ declare const useSupabase: () => _supabase_supabase_js.SupabaseClient<Database,
|
|
|
6290
6160
|
Returns: undefined;
|
|
6291
6161
|
};
|
|
6292
6162
|
auth_jwt_claims: {
|
|
6293
|
-
Args: never
|
|
6163
|
+
Args: Record<PropertyKey, never>;
|
|
6294
6164
|
Returns: Json;
|
|
6295
6165
|
};
|
|
6296
6166
|
auth_uid_safe: {
|
|
6297
|
-
Args: never
|
|
6167
|
+
Args: Record<PropertyKey, never>;
|
|
6298
6168
|
Returns: string;
|
|
6299
6169
|
};
|
|
6300
6170
|
can_assign_role_in_org: {
|
|
@@ -6305,7 +6175,7 @@ declare const useSupabase: () => _supabase_supabase_js.SupabaseClient<Database,
|
|
|
6305
6175
|
Returns: boolean;
|
|
6306
6176
|
};
|
|
6307
6177
|
current_user_is_platform_admin: {
|
|
6308
|
-
Args: never
|
|
6178
|
+
Args: Record<PropertyKey, never>;
|
|
6309
6179
|
Returns: boolean;
|
|
6310
6180
|
};
|
|
6311
6181
|
current_user_shares_org_with: {
|
|
@@ -6315,11 +6185,11 @@ declare const useSupabase: () => _supabase_supabase_js.SupabaseClient<Database,
|
|
|
6315
6185
|
Returns: boolean;
|
|
6316
6186
|
};
|
|
6317
6187
|
current_user_supabase_id: {
|
|
6318
|
-
Args: never
|
|
6188
|
+
Args: Record<PropertyKey, never>;
|
|
6319
6189
|
Returns: string;
|
|
6320
6190
|
};
|
|
6321
6191
|
detect_stalled_executions: {
|
|
6322
|
-
Args: never
|
|
6192
|
+
Args: Record<PropertyKey, never>;
|
|
6323
6193
|
Returns: undefined;
|
|
6324
6194
|
};
|
|
6325
6195
|
execute_session_turn: {
|
|
@@ -6340,7 +6210,7 @@ declare const useSupabase: () => _supabase_supabase_js.SupabaseClient<Database,
|
|
|
6340
6210
|
}[];
|
|
6341
6211
|
};
|
|
6342
6212
|
get_platform_credential_kek: {
|
|
6343
|
-
Args: never
|
|
6213
|
+
Args: Record<PropertyKey, never>;
|
|
6344
6214
|
Returns: string;
|
|
6345
6215
|
};
|
|
6346
6216
|
get_storage_org_id: {
|
|
@@ -6350,7 +6220,7 @@ declare const useSupabase: () => _supabase_supabase_js.SupabaseClient<Database,
|
|
|
6350
6220
|
Returns: string;
|
|
6351
6221
|
};
|
|
6352
6222
|
get_workos_user_id: {
|
|
6353
|
-
Args: never
|
|
6223
|
+
Args: Record<PropertyKey, never>;
|
|
6354
6224
|
Returns: string;
|
|
6355
6225
|
};
|
|
6356
6226
|
has_org_access: {
|
|
@@ -6358,10 +6228,7 @@ declare const useSupabase: () => _supabase_supabase_js.SupabaseClient<Database,
|
|
|
6358
6228
|
action?: string;
|
|
6359
6229
|
org_id: string;
|
|
6360
6230
|
system_path: string;
|
|
6361
|
-
}
|
|
6362
|
-
Returns: boolean;
|
|
6363
|
-
} | {
|
|
6364
|
-
Args: {
|
|
6231
|
+
} | {
|
|
6365
6232
|
action?: string;
|
|
6366
6233
|
system_path: string;
|
|
6367
6234
|
};
|
|
@@ -6397,15 +6264,15 @@ declare const useSupabase: () => _supabase_supabase_js.SupabaseClient<Database,
|
|
|
6397
6264
|
Returns: Json;
|
|
6398
6265
|
};
|
|
6399
6266
|
process_due_schedules: {
|
|
6400
|
-
Args: never
|
|
6267
|
+
Args: Record<PropertyKey, never>;
|
|
6401
6268
|
Returns: Json;
|
|
6402
6269
|
};
|
|
6403
6270
|
recompute_all_memberships: {
|
|
6404
|
-
Args: never
|
|
6271
|
+
Args: Record<PropertyKey, never>;
|
|
6405
6272
|
Returns: undefined;
|
|
6406
6273
|
};
|
|
6407
6274
|
repair_membership_role_assignments: {
|
|
6408
|
-
Args: never
|
|
6275
|
+
Args: Record<PropertyKey, never>;
|
|
6409
6276
|
Returns: {
|
|
6410
6277
|
membership_id: string;
|
|
6411
6278
|
organization_id: string;
|
|
@@ -6435,7 +6302,7 @@ declare const useSupabase: () => _supabase_supabase_js.SupabaseClient<Database,
|
|
|
6435
6302
|
Returns: string;
|
|
6436
6303
|
};
|
|
6437
6304
|
upsert_user_profile: {
|
|
6438
|
-
Args: never
|
|
6305
|
+
Args: Record<PropertyKey, never>;
|
|
6439
6306
|
Returns: {
|
|
6440
6307
|
profile_display_name: string;
|
|
6441
6308
|
profile_email: string;
|
|
@@ -6447,7 +6314,7 @@ declare const useSupabase: () => _supabase_supabase_js.SupabaseClient<Database,
|
|
|
6447
6314
|
Enums: { [_ in never]: never; };
|
|
6448
6315
|
CompositeTypes: { [_ in never]: never; };
|
|
6449
6316
|
}, {
|
|
6450
|
-
PostgrestVersion: "12
|
|
6317
|
+
PostgrestVersion: "12";
|
|
6451
6318
|
}>;
|
|
6452
6319
|
|
|
6453
6320
|
export { useSupabase };
|