@elevasis/ui 2.48.0 → 2.50.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/api/index.js +4 -3
- package/dist/app/index.d.ts +132 -0
- package/dist/app/index.js +8 -6
- package/dist/auth/index.js +8 -6
- package/dist/charts/index.js +8 -6
- package/dist/{chunk-SOGPJFO6.js → chunk-4UA62IDF.js} +1 -1
- package/dist/{chunk-OFLWSKSC.js → chunk-7Q5THR43.js} +1 -1
- package/dist/chunk-EJL4U7OZ.js +79 -0
- package/dist/chunk-FVOMKZ7S.js +118 -0
- package/dist/{chunk-FVI3AMBM.js → chunk-SBNC3FRX.js} +163 -214
- package/dist/{chunk-CDZB24OR.js → chunk-XOPLS4S6.js} +1 -85
- package/dist/components/index.d.ts +132 -0
- package/dist/components/index.js +8 -6
- package/dist/components/navigation/index.js +8 -6
- package/dist/features/auth/index.d.ts +132 -0
- package/dist/features/auth/index.js +9 -7
- package/dist/features/clients/index.js +8 -6
- package/dist/features/crm/index.d.ts +132 -0
- package/dist/features/crm/index.js +8 -6
- package/dist/features/dashboard/index.js +8 -6
- package/dist/features/delivery/index.d.ts +132 -0
- package/dist/features/delivery/index.js +8 -6
- package/dist/features/knowledge/index.js +8 -6
- package/dist/features/lead-gen/index.js +8 -6
- package/dist/features/monitoring/index.js +8 -6
- package/dist/features/monitoring/requests/index.js +9 -7
- package/dist/features/operations/index.d.ts +2 -2
- package/dist/features/operations/index.js +8 -6
- package/dist/features/public-agent-chat/index.d.ts +161 -0
- package/dist/features/public-agent-chat/index.js +413 -0
- package/dist/features/settings/index.d.ts +132 -0
- package/dist/features/settings/index.js +8 -6
- package/dist/hooks/access/index.js +8 -6
- package/dist/hooks/delivery/index.d.ts +132 -0
- package/dist/hooks/delivery/index.js +8 -6
- package/dist/hooks/index.d.ts +135 -1
- package/dist/hooks/index.js +8 -6
- package/dist/hooks/published.d.ts +135 -1
- package/dist/hooks/published.js +8 -6
- package/dist/index.d.ts +135 -1
- package/dist/index.js +9 -7
- package/dist/initialization/index.d.ts +132 -0
- package/dist/knowledge/index.js +264 -30
- package/dist/{knowledge-search-index-MHOBQTT3.js → knowledge-search-index-JOPRYZN6.js} +600 -561
- package/dist/layout/index.js +8 -6
- package/dist/organization/index.js +8 -6
- package/dist/profile/index.d.ts +132 -0
- package/dist/provider/index.d.ts +132 -0
- package/dist/provider/index.js +8 -6
- package/dist/provider/published.d.ts +132 -0
- package/dist/provider/published.js +8 -6
- package/dist/supabase/index.d.ts +258 -0
- package/dist/test-utils/index.js +4 -3
- package/dist/types/index.d.ts +135 -3
- package/dist/utils/index.js +2 -1
- package/package.json +10 -5
|
@@ -2115,6 +2115,138 @@ type Database = {
|
|
|
2115
2115
|
};
|
|
2116
2116
|
Relationships: [];
|
|
2117
2117
|
};
|
|
2118
|
+
agent_access_grants: {
|
|
2119
|
+
Row: {
|
|
2120
|
+
allowed_origins: string[];
|
|
2121
|
+
branding: Json;
|
|
2122
|
+
capture_fields: Json;
|
|
2123
|
+
code_hash: string | null;
|
|
2124
|
+
code_salt: string | null;
|
|
2125
|
+
created_at: string;
|
|
2126
|
+
disabled_at: string | null;
|
|
2127
|
+
expires_at: string | null;
|
|
2128
|
+
id: string;
|
|
2129
|
+
max_sessions_per_visitor: number;
|
|
2130
|
+
max_turns_per_session: number;
|
|
2131
|
+
mode: string;
|
|
2132
|
+
organization_id: string;
|
|
2133
|
+
resource_id: string;
|
|
2134
|
+
slug: string;
|
|
2135
|
+
tool_policy: Json;
|
|
2136
|
+
updated_at: string;
|
|
2137
|
+
};
|
|
2138
|
+
Insert: {
|
|
2139
|
+
allowed_origins?: string[];
|
|
2140
|
+
branding?: Json;
|
|
2141
|
+
capture_fields?: Json;
|
|
2142
|
+
code_hash?: string | null;
|
|
2143
|
+
code_salt?: string | null;
|
|
2144
|
+
created_at?: string;
|
|
2145
|
+
disabled_at?: string | null;
|
|
2146
|
+
expires_at?: string | null;
|
|
2147
|
+
id?: string;
|
|
2148
|
+
max_sessions_per_visitor?: number;
|
|
2149
|
+
max_turns_per_session?: number;
|
|
2150
|
+
mode?: string;
|
|
2151
|
+
organization_id: string;
|
|
2152
|
+
resource_id: string;
|
|
2153
|
+
slug: string;
|
|
2154
|
+
tool_policy?: Json;
|
|
2155
|
+
updated_at?: string;
|
|
2156
|
+
};
|
|
2157
|
+
Update: {
|
|
2158
|
+
allowed_origins?: string[];
|
|
2159
|
+
branding?: Json;
|
|
2160
|
+
capture_fields?: Json;
|
|
2161
|
+
code_hash?: string | null;
|
|
2162
|
+
code_salt?: string | null;
|
|
2163
|
+
created_at?: string;
|
|
2164
|
+
disabled_at?: string | null;
|
|
2165
|
+
expires_at?: string | null;
|
|
2166
|
+
id?: string;
|
|
2167
|
+
max_sessions_per_visitor?: number;
|
|
2168
|
+
max_turns_per_session?: number;
|
|
2169
|
+
mode?: string;
|
|
2170
|
+
organization_id?: string;
|
|
2171
|
+
resource_id?: string;
|
|
2172
|
+
slug?: string;
|
|
2173
|
+
tool_policy?: Json;
|
|
2174
|
+
updated_at?: string;
|
|
2175
|
+
};
|
|
2176
|
+
Relationships: [
|
|
2177
|
+
{
|
|
2178
|
+
foreignKeyName: "agent_access_grants_organization_id_fkey";
|
|
2179
|
+
columns: ["organization_id"];
|
|
2180
|
+
isOneToOne: false;
|
|
2181
|
+
referencedRelation: "organizations";
|
|
2182
|
+
referencedColumns: ["id"];
|
|
2183
|
+
}
|
|
2184
|
+
];
|
|
2185
|
+
};
|
|
2186
|
+
agent_chat_capabilities: {
|
|
2187
|
+
Row: {
|
|
2188
|
+
created_at: string;
|
|
2189
|
+
expires_at: string;
|
|
2190
|
+
grant_id: string;
|
|
2191
|
+
id: string;
|
|
2192
|
+
organization_id: string;
|
|
2193
|
+
origin: string | null;
|
|
2194
|
+
resource_id: string;
|
|
2195
|
+
revoked_at: string | null;
|
|
2196
|
+
session_id: string | null;
|
|
2197
|
+
token_hash: string;
|
|
2198
|
+
visitor_id: string | null;
|
|
2199
|
+
};
|
|
2200
|
+
Insert: {
|
|
2201
|
+
created_at?: string;
|
|
2202
|
+
expires_at: string;
|
|
2203
|
+
grant_id: string;
|
|
2204
|
+
id?: string;
|
|
2205
|
+
organization_id: string;
|
|
2206
|
+
origin?: string | null;
|
|
2207
|
+
resource_id: string;
|
|
2208
|
+
revoked_at?: string | null;
|
|
2209
|
+
session_id?: string | null;
|
|
2210
|
+
token_hash: string;
|
|
2211
|
+
visitor_id?: string | null;
|
|
2212
|
+
};
|
|
2213
|
+
Update: {
|
|
2214
|
+
created_at?: string;
|
|
2215
|
+
expires_at?: string;
|
|
2216
|
+
grant_id?: string;
|
|
2217
|
+
id?: string;
|
|
2218
|
+
organization_id?: string;
|
|
2219
|
+
origin?: string | null;
|
|
2220
|
+
resource_id?: string;
|
|
2221
|
+
revoked_at?: string | null;
|
|
2222
|
+
session_id?: string | null;
|
|
2223
|
+
token_hash?: string;
|
|
2224
|
+
visitor_id?: string | null;
|
|
2225
|
+
};
|
|
2226
|
+
Relationships: [
|
|
2227
|
+
{
|
|
2228
|
+
foreignKeyName: "agent_chat_capabilities_grant_id_fkey";
|
|
2229
|
+
columns: ["grant_id"];
|
|
2230
|
+
isOneToOne: false;
|
|
2231
|
+
referencedRelation: "agent_access_grants";
|
|
2232
|
+
referencedColumns: ["id"];
|
|
2233
|
+
},
|
|
2234
|
+
{
|
|
2235
|
+
foreignKeyName: "agent_chat_capabilities_organization_id_fkey";
|
|
2236
|
+
columns: ["organization_id"];
|
|
2237
|
+
isOneToOne: false;
|
|
2238
|
+
referencedRelation: "organizations";
|
|
2239
|
+
referencedColumns: ["id"];
|
|
2240
|
+
},
|
|
2241
|
+
{
|
|
2242
|
+
foreignKeyName: "agent_chat_capabilities_session_id_fkey";
|
|
2243
|
+
columns: ["session_id"];
|
|
2244
|
+
isOneToOne: false;
|
|
2245
|
+
referencedRelation: "sessions";
|
|
2246
|
+
referencedColumns: ["session_id"];
|
|
2247
|
+
}
|
|
2248
|
+
];
|
|
2249
|
+
};
|
|
2118
2250
|
organizations: {
|
|
2119
2251
|
Row: {
|
|
2120
2252
|
config: Json;
|
|
@@ -1,24 +1,26 @@
|
|
|
1
|
-
export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberAccessModal, MyRolesPage, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-
|
|
1
|
+
export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberAccessModal, MyRolesPage, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-SBNC3FRX.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
|
+
import '../../chunk-ZTWA5H77.js';
|
|
4
5
|
import '../../chunk-AUDNF2Q7.js';
|
|
5
6
|
import '../../chunk-6M6OLGQY.js';
|
|
6
7
|
import '../../chunk-MKH2KOAO.js';
|
|
7
|
-
import '../../chunk-
|
|
8
|
+
import '../../chunk-7Q5THR43.js';
|
|
8
9
|
import '../../chunk-SJHM4WDG.js';
|
|
9
|
-
import '../../chunk-
|
|
10
|
+
import '../../chunk-GMXGDO3I.js';
|
|
10
11
|
import '../../chunk-S3XR4II4.js';
|
|
11
12
|
import '../../chunk-6DO4PE3O.js';
|
|
12
|
-
import '../../chunk-OFLWSKSC.js';
|
|
13
13
|
import '../../chunk-DD3CCMCZ.js';
|
|
14
|
-
import '../../chunk-
|
|
14
|
+
import '../../chunk-EJL4U7OZ.js';
|
|
15
|
+
import '../../chunk-GUKY77FJ.js';
|
|
15
16
|
import '../../chunk-2IFYDILW.js';
|
|
16
17
|
import '../../chunk-Q7DJKLEN.js';
|
|
17
18
|
import '../../chunk-HENXLGVD.js';
|
|
18
19
|
import '../../chunk-7FPLLSHN.js';
|
|
19
20
|
import '../../chunk-RNP5R5I3.js';
|
|
20
21
|
import '../../chunk-W2SFTXMT.js';
|
|
21
|
-
import '../../chunk-
|
|
22
|
+
import '../../chunk-XOPLS4S6.js';
|
|
23
|
+
import '../../chunk-FVOMKZ7S.js';
|
|
22
24
|
import '../../chunk-KRWALB24.js';
|
|
23
25
|
import '../../chunk-2FTX4WO2.js';
|
|
24
26
|
import '../../chunk-MQZE7SUI.js';
|
|
@@ -1,24 +1,26 @@
|
|
|
1
|
-
export { AccessKeys, useAccess } from '../../chunk-
|
|
1
|
+
export { AccessKeys, useAccess } from '../../chunk-SBNC3FRX.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
|
+
import '../../chunk-ZTWA5H77.js';
|
|
4
5
|
import '../../chunk-AUDNF2Q7.js';
|
|
5
6
|
import '../../chunk-6M6OLGQY.js';
|
|
6
7
|
import '../../chunk-MKH2KOAO.js';
|
|
7
|
-
import '../../chunk-
|
|
8
|
+
import '../../chunk-7Q5THR43.js';
|
|
8
9
|
import '../../chunk-SJHM4WDG.js';
|
|
9
|
-
import '../../chunk-
|
|
10
|
+
import '../../chunk-GMXGDO3I.js';
|
|
10
11
|
import '../../chunk-S3XR4II4.js';
|
|
11
12
|
import '../../chunk-6DO4PE3O.js';
|
|
12
|
-
import '../../chunk-OFLWSKSC.js';
|
|
13
13
|
import '../../chunk-DD3CCMCZ.js';
|
|
14
|
-
import '../../chunk-
|
|
14
|
+
import '../../chunk-EJL4U7OZ.js';
|
|
15
|
+
import '../../chunk-GUKY77FJ.js';
|
|
15
16
|
import '../../chunk-2IFYDILW.js';
|
|
16
17
|
import '../../chunk-Q7DJKLEN.js';
|
|
17
18
|
import '../../chunk-HENXLGVD.js';
|
|
18
19
|
import '../../chunk-7FPLLSHN.js';
|
|
19
20
|
import '../../chunk-RNP5R5I3.js';
|
|
20
21
|
import '../../chunk-W2SFTXMT.js';
|
|
21
|
-
import '../../chunk-
|
|
22
|
+
import '../../chunk-XOPLS4S6.js';
|
|
23
|
+
import '../../chunk-FVOMKZ7S.js';
|
|
22
24
|
import '../../chunk-KRWALB24.js';
|
|
23
25
|
import '../../chunk-2FTX4WO2.js';
|
|
24
26
|
import '../../chunk-MQZE7SUI.js';
|
|
@@ -2113,6 +2113,138 @@ type Database = {
|
|
|
2113
2113
|
};
|
|
2114
2114
|
Relationships: [];
|
|
2115
2115
|
};
|
|
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
|
+
};
|
|
2116
2248
|
organizations: {
|
|
2117
2249
|
Row: {
|
|
2118
2250
|
config: Json;
|
|
@@ -1,24 +1,26 @@
|
|
|
1
|
-
export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateMilestone, useCreateNote, useCreateProject, useCreateTask, useDeleteMilestone, useDeleteProject, useDeleteTask2 as useDeleteTask, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateMilestone, useUpdateProject, useUpdateTask } from '../../chunk-
|
|
1
|
+
export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateMilestone, useCreateNote, useCreateProject, useCreateTask, useDeleteMilestone, useDeleteProject, useDeleteTask2 as useDeleteTask, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateMilestone, useUpdateProject, useUpdateTask } from '../../chunk-SBNC3FRX.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
|
+
import '../../chunk-ZTWA5H77.js';
|
|
4
5
|
import '../../chunk-AUDNF2Q7.js';
|
|
5
6
|
import '../../chunk-6M6OLGQY.js';
|
|
6
7
|
import '../../chunk-MKH2KOAO.js';
|
|
7
|
-
import '../../chunk-
|
|
8
|
+
import '../../chunk-7Q5THR43.js';
|
|
8
9
|
import '../../chunk-SJHM4WDG.js';
|
|
9
|
-
import '../../chunk-
|
|
10
|
+
import '../../chunk-GMXGDO3I.js';
|
|
10
11
|
import '../../chunk-S3XR4II4.js';
|
|
11
12
|
import '../../chunk-6DO4PE3O.js';
|
|
12
|
-
import '../../chunk-OFLWSKSC.js';
|
|
13
13
|
import '../../chunk-DD3CCMCZ.js';
|
|
14
|
-
import '../../chunk-
|
|
14
|
+
import '../../chunk-EJL4U7OZ.js';
|
|
15
|
+
import '../../chunk-GUKY77FJ.js';
|
|
15
16
|
import '../../chunk-2IFYDILW.js';
|
|
16
17
|
import '../../chunk-Q7DJKLEN.js';
|
|
17
18
|
import '../../chunk-HENXLGVD.js';
|
|
18
19
|
import '../../chunk-7FPLLSHN.js';
|
|
19
20
|
import '../../chunk-RNP5R5I3.js';
|
|
20
21
|
import '../../chunk-W2SFTXMT.js';
|
|
21
|
-
import '../../chunk-
|
|
22
|
+
import '../../chunk-XOPLS4S6.js';
|
|
23
|
+
import '../../chunk-FVOMKZ7S.js';
|
|
22
24
|
import '../../chunk-KRWALB24.js';
|
|
23
25
|
import '../../chunk-2FTX4WO2.js';
|
|
24
26
|
import '../../chunk-MQZE7SUI.js';
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -2296,6 +2296,138 @@ type Database = {
|
|
|
2296
2296
|
};
|
|
2297
2297
|
Relationships: [];
|
|
2298
2298
|
};
|
|
2299
|
+
agent_access_grants: {
|
|
2300
|
+
Row: {
|
|
2301
|
+
allowed_origins: string[];
|
|
2302
|
+
branding: Json;
|
|
2303
|
+
capture_fields: Json;
|
|
2304
|
+
code_hash: string | null;
|
|
2305
|
+
code_salt: string | null;
|
|
2306
|
+
created_at: string;
|
|
2307
|
+
disabled_at: string | null;
|
|
2308
|
+
expires_at: string | null;
|
|
2309
|
+
id: string;
|
|
2310
|
+
max_sessions_per_visitor: number;
|
|
2311
|
+
max_turns_per_session: number;
|
|
2312
|
+
mode: string;
|
|
2313
|
+
organization_id: string;
|
|
2314
|
+
resource_id: string;
|
|
2315
|
+
slug: string;
|
|
2316
|
+
tool_policy: Json;
|
|
2317
|
+
updated_at: string;
|
|
2318
|
+
};
|
|
2319
|
+
Insert: {
|
|
2320
|
+
allowed_origins?: string[];
|
|
2321
|
+
branding?: Json;
|
|
2322
|
+
capture_fields?: Json;
|
|
2323
|
+
code_hash?: string | null;
|
|
2324
|
+
code_salt?: string | null;
|
|
2325
|
+
created_at?: string;
|
|
2326
|
+
disabled_at?: string | null;
|
|
2327
|
+
expires_at?: string | null;
|
|
2328
|
+
id?: string;
|
|
2329
|
+
max_sessions_per_visitor?: number;
|
|
2330
|
+
max_turns_per_session?: number;
|
|
2331
|
+
mode?: string;
|
|
2332
|
+
organization_id: string;
|
|
2333
|
+
resource_id: string;
|
|
2334
|
+
slug: string;
|
|
2335
|
+
tool_policy?: Json;
|
|
2336
|
+
updated_at?: string;
|
|
2337
|
+
};
|
|
2338
|
+
Update: {
|
|
2339
|
+
allowed_origins?: string[];
|
|
2340
|
+
branding?: Json;
|
|
2341
|
+
capture_fields?: Json;
|
|
2342
|
+
code_hash?: string | null;
|
|
2343
|
+
code_salt?: string | null;
|
|
2344
|
+
created_at?: string;
|
|
2345
|
+
disabled_at?: string | null;
|
|
2346
|
+
expires_at?: string | null;
|
|
2347
|
+
id?: string;
|
|
2348
|
+
max_sessions_per_visitor?: number;
|
|
2349
|
+
max_turns_per_session?: number;
|
|
2350
|
+
mode?: string;
|
|
2351
|
+
organization_id?: string;
|
|
2352
|
+
resource_id?: string;
|
|
2353
|
+
slug?: string;
|
|
2354
|
+
tool_policy?: Json;
|
|
2355
|
+
updated_at?: string;
|
|
2356
|
+
};
|
|
2357
|
+
Relationships: [
|
|
2358
|
+
{
|
|
2359
|
+
foreignKeyName: "agent_access_grants_organization_id_fkey";
|
|
2360
|
+
columns: ["organization_id"];
|
|
2361
|
+
isOneToOne: false;
|
|
2362
|
+
referencedRelation: "organizations";
|
|
2363
|
+
referencedColumns: ["id"];
|
|
2364
|
+
}
|
|
2365
|
+
];
|
|
2366
|
+
};
|
|
2367
|
+
agent_chat_capabilities: {
|
|
2368
|
+
Row: {
|
|
2369
|
+
created_at: string;
|
|
2370
|
+
expires_at: string;
|
|
2371
|
+
grant_id: string;
|
|
2372
|
+
id: string;
|
|
2373
|
+
organization_id: string;
|
|
2374
|
+
origin: string | null;
|
|
2375
|
+
resource_id: string;
|
|
2376
|
+
revoked_at: string | null;
|
|
2377
|
+
session_id: string | null;
|
|
2378
|
+
token_hash: string;
|
|
2379
|
+
visitor_id: string | null;
|
|
2380
|
+
};
|
|
2381
|
+
Insert: {
|
|
2382
|
+
created_at?: string;
|
|
2383
|
+
expires_at: string;
|
|
2384
|
+
grant_id: string;
|
|
2385
|
+
id?: string;
|
|
2386
|
+
organization_id: string;
|
|
2387
|
+
origin?: string | null;
|
|
2388
|
+
resource_id: string;
|
|
2389
|
+
revoked_at?: string | null;
|
|
2390
|
+
session_id?: string | null;
|
|
2391
|
+
token_hash: string;
|
|
2392
|
+
visitor_id?: string | null;
|
|
2393
|
+
};
|
|
2394
|
+
Update: {
|
|
2395
|
+
created_at?: string;
|
|
2396
|
+
expires_at?: string;
|
|
2397
|
+
grant_id?: string;
|
|
2398
|
+
id?: string;
|
|
2399
|
+
organization_id?: string;
|
|
2400
|
+
origin?: string | null;
|
|
2401
|
+
resource_id?: string;
|
|
2402
|
+
revoked_at?: string | null;
|
|
2403
|
+
session_id?: string | null;
|
|
2404
|
+
token_hash?: string;
|
|
2405
|
+
visitor_id?: string | null;
|
|
2406
|
+
};
|
|
2407
|
+
Relationships: [
|
|
2408
|
+
{
|
|
2409
|
+
foreignKeyName: "agent_chat_capabilities_grant_id_fkey";
|
|
2410
|
+
columns: ["grant_id"];
|
|
2411
|
+
isOneToOne: false;
|
|
2412
|
+
referencedRelation: "agent_access_grants";
|
|
2413
|
+
referencedColumns: ["id"];
|
|
2414
|
+
},
|
|
2415
|
+
{
|
|
2416
|
+
foreignKeyName: "agent_chat_capabilities_organization_id_fkey";
|
|
2417
|
+
columns: ["organization_id"];
|
|
2418
|
+
isOneToOne: false;
|
|
2419
|
+
referencedRelation: "organizations";
|
|
2420
|
+
referencedColumns: ["id"];
|
|
2421
|
+
},
|
|
2422
|
+
{
|
|
2423
|
+
foreignKeyName: "agent_chat_capabilities_session_id_fkey";
|
|
2424
|
+
columns: ["session_id"];
|
|
2425
|
+
isOneToOne: false;
|
|
2426
|
+
referencedRelation: "sessions";
|
|
2427
|
+
referencedColumns: ["session_id"];
|
|
2428
|
+
}
|
|
2429
|
+
];
|
|
2430
|
+
};
|
|
2299
2431
|
organizations: {
|
|
2300
2432
|
Row: {
|
|
2301
2433
|
config: Json;
|
|
@@ -7316,6 +7448,8 @@ declare function useCommandQueue({ status, limit, offset, humanCheckpoint, timeR
|
|
|
7316
7448
|
priorityMax?: number;
|
|
7317
7449
|
}): _tanstack_react_query.UseQueryResult<CommandQueueListResponse, Error>;
|
|
7318
7450
|
|
|
7451
|
+
declare function useCommandQueueTask(taskId: string | undefined): _tanstack_react_query.UseQueryResult<Task, Error>;
|
|
7452
|
+
|
|
7319
7453
|
interface SubmitActionRequest {
|
|
7320
7454
|
taskId: string;
|
|
7321
7455
|
actionId: string;
|
|
@@ -10387,5 +10521,5 @@ declare function useCreateNote(): _tanstack_react_query.UseMutationResult<{
|
|
|
10387
10521
|
type?: string;
|
|
10388
10522
|
}, "organization_id">, unknown>;
|
|
10389
10523
|
|
|
10390
|
-
export { AccessKeys, ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, acquisitionListKeys, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution };
|
|
10524
|
+
export { AccessKeys, ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, acquisitionListKeys, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTask, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution };
|
|
10391
10525
|
export type { AccessKeyInput, AcqCompanyWithCount, AcqContactWithCompany, AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, AddCompaniesToListResult, AddContactsToListResult, AssignRoleInput, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChatMessage, ClientDetailResponse, ClientResponse, ClientStatus, ClientStatusResponse, ClientsListFilters, CreateApiKeyRequest, CreateApiKeyResponse, CreateClientRequest, CreateCredentialRequest, CreateCredentialResponse, CreateOrgRoleInput, CreateScheduleInput, CreateSessionResponse, CredentialListItem, DealDetail, DealLookupFilters, DealLookupItem, DealSummaryStageItem, DealsSummaryResponse, DeleteExecutionParams, Deployment, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteActionInput, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, FailingResource, GetMessagesResponse, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListExecutionsFilters, ListRecordsFilters, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MessageEvent, MessageType, OrgRole, RemoveCompaniesFromListResult, RequestRow, RequestSeverity, RequestType, RequestsListFilters, ResourceFilterFacet, ResourcesResponse, RetryExecutionParams, RevokeRoleInput, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, StaleDealSummaryItem, StatefulItem, StatusFilter, SubmitActionRequest, SubmitActionResponse, SubmitRequestInput, SystemHealthExecutionSummary, SystemHealthResponse, TaskSchedule, TopFailingResourcesParams, TransitionItemInput, TransitionListCompanyInput, TransitionListMemberInput, TransitionStateInput, UpdateClientRequest, UpdateListStatusInput, UpdateOrgRoleInput, UpdateScheduleInput, UseAccessResult, UseActivitiesParams, UseActivityTrendParams, UseArtifactsParams, UseBatchedResourcesHealthParams, UseExecuteResourceOptions, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseExecutionSSEOptions, UseExecutionSSEResult, UseInFlightExecutionsOptions, UseListProgressOptions, UseNotificationCountArgs, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, UseSystemHealthParams, UseWorkflowExecutionOptions, UseWorkflowExecutionResult, VerifyCredentialResponse, WebSocketState, WorkflowExecutionTriggerParams };
|
package/dist/hooks/index.js
CHANGED
|
@@ -1,24 +1,26 @@
|
|
|
1
|
-
export { AccessKeys, ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from '../chunk-
|
|
1
|
+
export { AccessKeys, ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTask, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from '../chunk-SBNC3FRX.js';
|
|
2
2
|
import '../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../chunk-OJJK27GC.js';
|
|
4
|
+
import '../chunk-ZTWA5H77.js';
|
|
4
5
|
import '../chunk-AUDNF2Q7.js';
|
|
5
6
|
import '../chunk-6M6OLGQY.js';
|
|
6
7
|
import '../chunk-MKH2KOAO.js';
|
|
7
|
-
import '../chunk-
|
|
8
|
+
import '../chunk-7Q5THR43.js';
|
|
8
9
|
import '../chunk-SJHM4WDG.js';
|
|
9
|
-
import '../chunk-
|
|
10
|
+
import '../chunk-GMXGDO3I.js';
|
|
10
11
|
import '../chunk-S3XR4II4.js';
|
|
11
12
|
import '../chunk-6DO4PE3O.js';
|
|
12
|
-
import '../chunk-OFLWSKSC.js';
|
|
13
13
|
import '../chunk-DD3CCMCZ.js';
|
|
14
|
-
import '../chunk-
|
|
14
|
+
import '../chunk-EJL4U7OZ.js';
|
|
15
|
+
import '../chunk-GUKY77FJ.js';
|
|
15
16
|
import '../chunk-2IFYDILW.js';
|
|
16
17
|
import '../chunk-Q7DJKLEN.js';
|
|
17
18
|
import '../chunk-HENXLGVD.js';
|
|
18
19
|
export { useMergedExecution } from '../chunk-7FPLLSHN.js';
|
|
19
20
|
import '../chunk-RNP5R5I3.js';
|
|
20
21
|
import '../chunk-W2SFTXMT.js';
|
|
21
|
-
|
|
22
|
+
import '../chunk-XOPLS4S6.js';
|
|
23
|
+
export { REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY } from '../chunk-FVOMKZ7S.js';
|
|
22
24
|
import '../chunk-KRWALB24.js';
|
|
23
25
|
import '../chunk-2FTX4WO2.js';
|
|
24
26
|
import '../chunk-MQZE7SUI.js';
|