@dvina/sdk 4.0.6 → 4.0.31
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/_generated_documents-BUDHKOOE.js +4 -0
- package/dist/{_generated_documents-AODD423G.js.map → _generated_documents-BUDHKOOE.js.map} +1 -1
- package/dist/{_generated_documents-HTHWTLGT.cjs → _generated_documents-YYWUEFO6.cjs} +522 -422
- package/dist/{_generated_documents-HTHWTLGT.cjs.map → _generated_documents-YYWUEFO6.cjs.map} +1 -1
- package/dist/adapters/angular/index.cjs +4 -4
- package/dist/adapters/angular/index.js +2 -2
- package/dist/{chunk-5HODZTE2.cjs → chunk-J4D5NNBG.cjs} +1033 -431
- package/dist/chunk-J4D5NNBG.cjs.map +1 -0
- package/dist/{chunk-HHR27PDE.js → chunk-KGSFT3KV.js} +591 -8
- package/dist/chunk-KGSFT3KV.js.map +1 -0
- package/dist/{chunk-57QJNKRV.cjs → chunk-NVBJ6NKK.cjs} +100 -13
- package/dist/chunk-NVBJ6NKK.cjs.map +1 -0
- package/dist/{chunk-2SDQPYT6.js → chunk-R25LNOGL.js} +76 -14
- package/dist/chunk-R25LNOGL.js.map +1 -0
- package/dist/index.cjs +406 -314
- package/dist/index.d.cts +432 -1
- package/dist/index.d.ts +432 -1
- package/dist/index.js +2 -2
- package/package.json +2 -2
- package/dist/_generated_documents-AODD423G.js +0 -4
- package/dist/chunk-2SDQPYT6.js.map +0 -1
- package/dist/chunk-57QJNKRV.cjs.map +0 -1
- package/dist/chunk-5HODZTE2.cjs.map +0 -1
- package/dist/chunk-HHR27PDE.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -1756,6 +1756,24 @@ type EnumPresentationFilter = {
|
|
|
1756
1756
|
not?: InputMaybe<NestedEnumPresentationFilter>;
|
|
1757
1757
|
notIn?: InputMaybe<Array<Presentation>>;
|
|
1758
1758
|
};
|
|
1759
|
+
type EnumPulseEventKindFilter = {
|
|
1760
|
+
equals?: InputMaybe<PulseEventKind>;
|
|
1761
|
+
in?: InputMaybe<Array<PulseEventKind>>;
|
|
1762
|
+
not?: InputMaybe<NestedEnumPulseEventKindFilter>;
|
|
1763
|
+
notIn?: InputMaybe<Array<PulseEventKind>>;
|
|
1764
|
+
};
|
|
1765
|
+
type EnumPulseEventPriorityFilter = {
|
|
1766
|
+
equals?: InputMaybe<PulseEventPriority>;
|
|
1767
|
+
in?: InputMaybe<Array<PulseEventPriority>>;
|
|
1768
|
+
not?: InputMaybe<NestedEnumPulseEventPriorityFilter>;
|
|
1769
|
+
notIn?: InputMaybe<Array<PulseEventPriority>>;
|
|
1770
|
+
};
|
|
1771
|
+
type EnumPulseEventStatusFilter = {
|
|
1772
|
+
equals?: InputMaybe<PulseEventStatus>;
|
|
1773
|
+
in?: InputMaybe<Array<PulseEventStatus>>;
|
|
1774
|
+
not?: InputMaybe<NestedEnumPulseEventStatusFilter>;
|
|
1775
|
+
notIn?: InputMaybe<Array<PulseEventStatus>>;
|
|
1776
|
+
};
|
|
1759
1777
|
type EnumRelationTypeFilter = {
|
|
1760
1778
|
equals?: InputMaybe<RelationType>;
|
|
1761
1779
|
in?: InputMaybe<Array<RelationType>>;
|
|
@@ -1961,6 +1979,7 @@ type FolderCreateInput = {
|
|
|
1961
1979
|
};
|
|
1962
1980
|
declare enum FolderOrderByRelevanceFieldEnum {
|
|
1963
1981
|
Id = "id",
|
|
1982
|
+
ParentPath = "parentPath",
|
|
1964
1983
|
Path = "path",
|
|
1965
1984
|
UserId = "userId",
|
|
1966
1985
|
WorkspaceId = "workspaceId"
|
|
@@ -1974,6 +1993,7 @@ type FolderOrderByWithRelationInput = {
|
|
|
1974
1993
|
_relevance?: InputMaybe<FolderOrderByRelevanceInput>;
|
|
1975
1994
|
createdAt?: InputMaybe<SortOrder>;
|
|
1976
1995
|
id?: InputMaybe<SortOrder>;
|
|
1996
|
+
parentPath?: InputMaybe<SortOrderInput>;
|
|
1977
1997
|
path?: InputMaybe<SortOrder>;
|
|
1978
1998
|
updatedAt?: InputMaybe<SortOrder>;
|
|
1979
1999
|
};
|
|
@@ -1987,6 +2007,7 @@ type FolderWhereInput = {
|
|
|
1987
2007
|
OR?: InputMaybe<Array<FolderWhereInput>>;
|
|
1988
2008
|
createdAt?: InputMaybe<DateTimeFilter>;
|
|
1989
2009
|
id?: InputMaybe<StringFilter>;
|
|
2010
|
+
parentPath?: InputMaybe<StringNullableFilter>;
|
|
1990
2011
|
path?: InputMaybe<StringFilter>;
|
|
1991
2012
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
1992
2013
|
};
|
|
@@ -1996,6 +2017,7 @@ type FolderWhereUniqueInput = {
|
|
|
1996
2017
|
OR?: InputMaybe<Array<FolderWhereInput>>;
|
|
1997
2018
|
createdAt?: InputMaybe<DateTimeFilter>;
|
|
1998
2019
|
id?: InputMaybe<Scalars['String']>;
|
|
2020
|
+
parentPath?: InputMaybe<StringNullableFilter>;
|
|
1999
2021
|
path?: InputMaybe<StringFilter>;
|
|
2000
2022
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
2001
2023
|
workspaceId_userId_path?: InputMaybe<FolderWorkspaceIdUserIdPathCompoundUniqueInput>;
|
|
@@ -2358,6 +2380,8 @@ type IntegrationCatalogWhereInput = {
|
|
|
2358
2380
|
supportUrl?: InputMaybe<StringNullableFilter>;
|
|
2359
2381
|
};
|
|
2360
2382
|
declare enum IntegrationOrderByRelevanceFieldEnum {
|
|
2383
|
+
ComposioAuthConfigId = "composioAuthConfigId",
|
|
2384
|
+
ComposioConnectedAccountId = "composioConnectedAccountId",
|
|
2361
2385
|
Id = "id",
|
|
2362
2386
|
ProviderKey = "providerKey",
|
|
2363
2387
|
UserId = "userId",
|
|
@@ -2370,6 +2394,7 @@ type IntegrationOrderByRelevanceInput = {
|
|
|
2370
2394
|
};
|
|
2371
2395
|
type IntegrationOrderByWithRelationInput = {
|
|
2372
2396
|
_relevance?: InputMaybe<IntegrationOrderByRelevanceInput>;
|
|
2397
|
+
connectedAt?: InputMaybe<SortOrderInput>;
|
|
2373
2398
|
createdAt?: InputMaybe<SortOrder>;
|
|
2374
2399
|
id?: InputMaybe<SortOrder>;
|
|
2375
2400
|
providerKey?: InputMaybe<SortOrder>;
|
|
@@ -2386,6 +2411,7 @@ type IntegrationWhereInput = {
|
|
|
2386
2411
|
AND?: InputMaybe<Array<IntegrationWhereInput>>;
|
|
2387
2412
|
NOT?: InputMaybe<Array<IntegrationWhereInput>>;
|
|
2388
2413
|
OR?: InputMaybe<Array<IntegrationWhereInput>>;
|
|
2414
|
+
connectedAt?: InputMaybe<DateTimeNullableFilter>;
|
|
2389
2415
|
createdAt?: InputMaybe<DateTimeFilter>;
|
|
2390
2416
|
id?: InputMaybe<StringFilter>;
|
|
2391
2417
|
providerKey?: InputMaybe<StringFilter>;
|
|
@@ -2577,6 +2603,24 @@ type NestedEnumPresentationFilter = {
|
|
|
2577
2603
|
not?: InputMaybe<NestedEnumPresentationFilter>;
|
|
2578
2604
|
notIn?: InputMaybe<Array<Presentation>>;
|
|
2579
2605
|
};
|
|
2606
|
+
type NestedEnumPulseEventKindFilter = {
|
|
2607
|
+
equals?: InputMaybe<PulseEventKind>;
|
|
2608
|
+
in?: InputMaybe<Array<PulseEventKind>>;
|
|
2609
|
+
not?: InputMaybe<NestedEnumPulseEventKindFilter>;
|
|
2610
|
+
notIn?: InputMaybe<Array<PulseEventKind>>;
|
|
2611
|
+
};
|
|
2612
|
+
type NestedEnumPulseEventPriorityFilter = {
|
|
2613
|
+
equals?: InputMaybe<PulseEventPriority>;
|
|
2614
|
+
in?: InputMaybe<Array<PulseEventPriority>>;
|
|
2615
|
+
not?: InputMaybe<NestedEnumPulseEventPriorityFilter>;
|
|
2616
|
+
notIn?: InputMaybe<Array<PulseEventPriority>>;
|
|
2617
|
+
};
|
|
2618
|
+
type NestedEnumPulseEventStatusFilter = {
|
|
2619
|
+
equals?: InputMaybe<PulseEventStatus>;
|
|
2620
|
+
in?: InputMaybe<Array<PulseEventStatus>>;
|
|
2621
|
+
not?: InputMaybe<NestedEnumPulseEventStatusFilter>;
|
|
2622
|
+
notIn?: InputMaybe<Array<PulseEventStatus>>;
|
|
2623
|
+
};
|
|
2580
2624
|
type NestedEnumRelationTypeFilter = {
|
|
2581
2625
|
equals?: InputMaybe<RelationType>;
|
|
2582
2626
|
in?: InputMaybe<Array<RelationType>>;
|
|
@@ -2710,6 +2754,97 @@ declare enum Presentation {
|
|
|
2710
2754
|
Table = "Table",
|
|
2711
2755
|
VerticalBar = "VerticalBar"
|
|
2712
2756
|
}
|
|
2757
|
+
declare enum PulseEventKind {
|
|
2758
|
+
Activity = "activity",
|
|
2759
|
+
NeedsAction = "needs_action",
|
|
2760
|
+
Reconnect = "reconnect",
|
|
2761
|
+
Suggestion = "suggestion",
|
|
2762
|
+
Warning = "warning"
|
|
2763
|
+
}
|
|
2764
|
+
declare enum PulseEventOrderByRelevanceFieldEnum {
|
|
2765
|
+
DedupeKey = "dedupeKey",
|
|
2766
|
+
Id = "id",
|
|
2767
|
+
IntegrationId = "integrationId",
|
|
2768
|
+
Message = "message",
|
|
2769
|
+
ProviderKey = "providerKey",
|
|
2770
|
+
RemoteEventId = "remoteEventId",
|
|
2771
|
+
RemoteLogId = "remoteLogId",
|
|
2772
|
+
RemoteTriggerId = "remoteTriggerId",
|
|
2773
|
+
Summary = "summary",
|
|
2774
|
+
Title = "title",
|
|
2775
|
+
TriggerSlug = "triggerSlug",
|
|
2776
|
+
UserId = "userId",
|
|
2777
|
+
WorkspaceId = "workspaceId"
|
|
2778
|
+
}
|
|
2779
|
+
type PulseEventOrderByRelevanceInput = {
|
|
2780
|
+
fields: Array<PulseEventOrderByRelevanceFieldEnum>;
|
|
2781
|
+
search: Scalars['String'];
|
|
2782
|
+
sort: SortOrder;
|
|
2783
|
+
};
|
|
2784
|
+
type PulseEventOrderByWithRelationInput = {
|
|
2785
|
+
_relevance?: InputMaybe<PulseEventOrderByRelevanceInput>;
|
|
2786
|
+
acknowledgedAt?: InputMaybe<SortOrderInput>;
|
|
2787
|
+
actions?: InputMaybe<SortOrderInput>;
|
|
2788
|
+
createdAt?: InputMaybe<SortOrder>;
|
|
2789
|
+
dedupeKey?: InputMaybe<SortOrderInput>;
|
|
2790
|
+
dismissedAt?: InputMaybe<SortOrderInput>;
|
|
2791
|
+
id?: InputMaybe<SortOrder>;
|
|
2792
|
+
integrationId?: InputMaybe<SortOrder>;
|
|
2793
|
+
kind?: InputMaybe<SortOrder>;
|
|
2794
|
+
message?: InputMaybe<SortOrderInput>;
|
|
2795
|
+
payload?: InputMaybe<SortOrderInput>;
|
|
2796
|
+
priority?: InputMaybe<SortOrder>;
|
|
2797
|
+
providerKey?: InputMaybe<SortOrder>;
|
|
2798
|
+
remoteEventId?: InputMaybe<SortOrder>;
|
|
2799
|
+
remoteLogId?: InputMaybe<SortOrderInput>;
|
|
2800
|
+
remoteTriggerId?: InputMaybe<SortOrderInput>;
|
|
2801
|
+
resolvedAt?: InputMaybe<SortOrderInput>;
|
|
2802
|
+
seenAt?: InputMaybe<SortOrderInput>;
|
|
2803
|
+
status?: InputMaybe<SortOrder>;
|
|
2804
|
+
summary?: InputMaybe<SortOrderInput>;
|
|
2805
|
+
title?: InputMaybe<SortOrder>;
|
|
2806
|
+
triggerSlug?: InputMaybe<SortOrder>;
|
|
2807
|
+
updatedAt?: InputMaybe<SortOrder>;
|
|
2808
|
+
};
|
|
2809
|
+
declare enum PulseEventPriority {
|
|
2810
|
+
High = "high",
|
|
2811
|
+
Low = "low",
|
|
2812
|
+
Medium = "medium"
|
|
2813
|
+
}
|
|
2814
|
+
declare enum PulseEventStatus {
|
|
2815
|
+
Acknowledged = "acknowledged",
|
|
2816
|
+
Dismissed = "dismissed",
|
|
2817
|
+
Resolved = "resolved",
|
|
2818
|
+
Seen = "seen",
|
|
2819
|
+
Unread = "unread"
|
|
2820
|
+
}
|
|
2821
|
+
type PulseEventWhereInput = {
|
|
2822
|
+
AND?: InputMaybe<Array<PulseEventWhereInput>>;
|
|
2823
|
+
NOT?: InputMaybe<Array<PulseEventWhereInput>>;
|
|
2824
|
+
OR?: InputMaybe<Array<PulseEventWhereInput>>;
|
|
2825
|
+
acknowledgedAt?: InputMaybe<DateTimeNullableFilter>;
|
|
2826
|
+
actions?: InputMaybe<JsonNullableFilter>;
|
|
2827
|
+
createdAt?: InputMaybe<DateTimeFilter>;
|
|
2828
|
+
dedupeKey?: InputMaybe<StringNullableFilter>;
|
|
2829
|
+
dismissedAt?: InputMaybe<DateTimeNullableFilter>;
|
|
2830
|
+
id?: InputMaybe<StringFilter>;
|
|
2831
|
+
integrationId?: InputMaybe<StringFilter>;
|
|
2832
|
+
kind?: InputMaybe<EnumPulseEventKindFilter>;
|
|
2833
|
+
message?: InputMaybe<StringNullableFilter>;
|
|
2834
|
+
payload?: InputMaybe<JsonNullableFilter>;
|
|
2835
|
+
priority?: InputMaybe<EnumPulseEventPriorityFilter>;
|
|
2836
|
+
providerKey?: InputMaybe<StringFilter>;
|
|
2837
|
+
remoteEventId?: InputMaybe<StringFilter>;
|
|
2838
|
+
remoteLogId?: InputMaybe<StringNullableFilter>;
|
|
2839
|
+
remoteTriggerId?: InputMaybe<StringNullableFilter>;
|
|
2840
|
+
resolvedAt?: InputMaybe<DateTimeNullableFilter>;
|
|
2841
|
+
seenAt?: InputMaybe<DateTimeNullableFilter>;
|
|
2842
|
+
status?: InputMaybe<EnumPulseEventStatusFilter>;
|
|
2843
|
+
summary?: InputMaybe<StringNullableFilter>;
|
|
2844
|
+
title?: InputMaybe<StringFilter>;
|
|
2845
|
+
triggerSlug?: InputMaybe<StringFilter>;
|
|
2846
|
+
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
2847
|
+
};
|
|
2713
2848
|
declare enum QueryMode {
|
|
2714
2849
|
Default = "default",
|
|
2715
2850
|
Insensitive = "insensitive"
|
|
@@ -3458,6 +3593,11 @@ declare enum TokenUsageLimit {
|
|
|
3458
3593
|
Hard = "HARD",
|
|
3459
3594
|
Soft = "SOFT"
|
|
3460
3595
|
}
|
|
3596
|
+
type UpdatePulseTriggerInput = {
|
|
3597
|
+
enabled: Scalars['Boolean'];
|
|
3598
|
+
integrationId: Scalars['String'];
|
|
3599
|
+
slug: Scalars['String'];
|
|
3600
|
+
};
|
|
3461
3601
|
declare enum UsageHistoryGranularity {
|
|
3462
3602
|
Day = "DAY",
|
|
3463
3603
|
Month = "MONTH",
|
|
@@ -4082,6 +4222,7 @@ type InsightConnectionFragment = {
|
|
|
4082
4222
|
};
|
|
4083
4223
|
type IntegrationFragment = {
|
|
4084
4224
|
__typename: 'Integration';
|
|
4225
|
+
connectedAt?: string | null;
|
|
4085
4226
|
createdAt: string;
|
|
4086
4227
|
id: string;
|
|
4087
4228
|
providerKey: string;
|
|
@@ -4140,6 +4281,7 @@ type IntegrationConnectionFragment = {
|
|
|
4140
4281
|
totalCount: number;
|
|
4141
4282
|
nodes?: Array<{
|
|
4142
4283
|
__typename: 'Integration';
|
|
4284
|
+
connectedAt?: string | null;
|
|
4143
4285
|
createdAt: string;
|
|
4144
4286
|
id: string;
|
|
4145
4287
|
providerKey: string;
|
|
@@ -4338,6 +4480,96 @@ type PrivacyStatsFragment = {
|
|
|
4338
4480
|
dataKeptAwayFromThirdParties?: number | null;
|
|
4339
4481
|
messagesProtectedFromTraining?: number | null;
|
|
4340
4482
|
};
|
|
4483
|
+
type PulseAppSummaryModelFragment = {
|
|
4484
|
+
__typename: 'PulseAppSummaryModel';
|
|
4485
|
+
activeTriggerCount: number;
|
|
4486
|
+
integrationId: string;
|
|
4487
|
+
providerKey?: string | null;
|
|
4488
|
+
};
|
|
4489
|
+
type PulseEventFragment = {
|
|
4490
|
+
__typename: 'PulseEvent';
|
|
4491
|
+
acknowledgedAt?: string | null;
|
|
4492
|
+
actions?: any | null;
|
|
4493
|
+
createdAt: string;
|
|
4494
|
+
dedupeKey?: string | null;
|
|
4495
|
+
dismissedAt?: string | null;
|
|
4496
|
+
id: string;
|
|
4497
|
+
integrationId: string;
|
|
4498
|
+
kind: PulseEventKind;
|
|
4499
|
+
message?: string | null;
|
|
4500
|
+
payload?: any | null;
|
|
4501
|
+
priority: PulseEventPriority;
|
|
4502
|
+
providerKey: string;
|
|
4503
|
+
remoteEventId: string;
|
|
4504
|
+
remoteLogId?: string | null;
|
|
4505
|
+
remoteTriggerId?: string | null;
|
|
4506
|
+
resolvedAt?: string | null;
|
|
4507
|
+
seenAt?: string | null;
|
|
4508
|
+
status: PulseEventStatus;
|
|
4509
|
+
summary?: string | null;
|
|
4510
|
+
title: string;
|
|
4511
|
+
triggerSlug: string;
|
|
4512
|
+
updatedAt: string;
|
|
4513
|
+
integration: {
|
|
4514
|
+
__typename?: 'Integration';
|
|
4515
|
+
id: string;
|
|
4516
|
+
};
|
|
4517
|
+
};
|
|
4518
|
+
type PulseEventConnectionFragment = {
|
|
4519
|
+
__typename: 'PulseEventConnection';
|
|
4520
|
+
totalCount: number;
|
|
4521
|
+
nodes?: Array<{
|
|
4522
|
+
__typename: 'PulseEvent';
|
|
4523
|
+
acknowledgedAt?: string | null;
|
|
4524
|
+
actions?: any | null;
|
|
4525
|
+
createdAt: string;
|
|
4526
|
+
dedupeKey?: string | null;
|
|
4527
|
+
dismissedAt?: string | null;
|
|
4528
|
+
id: string;
|
|
4529
|
+
integrationId: string;
|
|
4530
|
+
kind: PulseEventKind;
|
|
4531
|
+
message?: string | null;
|
|
4532
|
+
payload?: any | null;
|
|
4533
|
+
priority: PulseEventPriority;
|
|
4534
|
+
providerKey: string;
|
|
4535
|
+
remoteEventId: string;
|
|
4536
|
+
remoteLogId?: string | null;
|
|
4537
|
+
remoteTriggerId?: string | null;
|
|
4538
|
+
resolvedAt?: string | null;
|
|
4539
|
+
seenAt?: string | null;
|
|
4540
|
+
status: PulseEventStatus;
|
|
4541
|
+
summary?: string | null;
|
|
4542
|
+
title: string;
|
|
4543
|
+
triggerSlug: string;
|
|
4544
|
+
updatedAt: string;
|
|
4545
|
+
integration: {
|
|
4546
|
+
__typename?: 'Integration';
|
|
4547
|
+
id: string;
|
|
4548
|
+
};
|
|
4549
|
+
}> | null;
|
|
4550
|
+
pageInfo: {
|
|
4551
|
+
__typename?: 'PageInfo';
|
|
4552
|
+
endCursor?: string | null;
|
|
4553
|
+
hasNextPage: boolean;
|
|
4554
|
+
hasPreviousPage: boolean;
|
|
4555
|
+
startCursor?: string | null;
|
|
4556
|
+
};
|
|
4557
|
+
};
|
|
4558
|
+
type PulseEventStatsModelFragment = {
|
|
4559
|
+
__typename: 'PulseEventStatsModel';
|
|
4560
|
+
highPriorityCount: number;
|
|
4561
|
+
needsActionCount: number;
|
|
4562
|
+
unreadCount: number;
|
|
4563
|
+
};
|
|
4564
|
+
type PulseTriggerSettingModelFragment = {
|
|
4565
|
+
__typename: 'PulseTriggerSettingModel';
|
|
4566
|
+
integrationId: string;
|
|
4567
|
+
isEnabled: boolean;
|
|
4568
|
+
message?: string | null;
|
|
4569
|
+
name: string;
|
|
4570
|
+
providerKey: string;
|
|
4571
|
+
slug: string;
|
|
4572
|
+
};
|
|
4341
4573
|
type ReasoningEventOutputFragment = {
|
|
4342
4574
|
__typename: 'ReasoningEventOutput';
|
|
4343
4575
|
delta: string;
|
|
@@ -4669,6 +4901,9 @@ type WorkspaceDeleteScheduleFragment = {
|
|
|
4669
4901
|
updatedAt: string;
|
|
4670
4902
|
workspaceId: string;
|
|
4671
4903
|
};
|
|
4904
|
+
type AcknowledgePulseEventMutationVariables = Exact<{
|
|
4905
|
+
id: Scalars['ID'];
|
|
4906
|
+
}>;
|
|
4672
4907
|
type AddInsightToReportMutationVariables = Exact<{
|
|
4673
4908
|
insightId: Scalars['String'];
|
|
4674
4909
|
order?: InputMaybe<Scalars['Int']>;
|
|
@@ -4762,9 +4997,15 @@ type DeleteTableMutationVariables = Exact<{
|
|
|
4762
4997
|
type DisconnectIntegrationMutationVariables = Exact<{
|
|
4763
4998
|
providerKey: Scalars['String'];
|
|
4764
4999
|
}>;
|
|
5000
|
+
type DismissPulseEventMutationVariables = Exact<{
|
|
5001
|
+
id: Scalars['ID'];
|
|
5002
|
+
}>;
|
|
4765
5003
|
type GenerateUploadUriMutationVariables = Exact<{
|
|
4766
5004
|
data: FileInput;
|
|
4767
5005
|
}>;
|
|
5006
|
+
type MarkPulseEventSeenMutationVariables = Exact<{
|
|
5007
|
+
id: Scalars['ID'];
|
|
5008
|
+
}>;
|
|
4768
5009
|
type ReanalyzeDocumentMutationVariables = Exact<{
|
|
4769
5010
|
id: Scalars['ID'];
|
|
4770
5011
|
}>;
|
|
@@ -4794,6 +5035,9 @@ type RemoveInsightFromReportMutationVariables = Exact<{
|
|
|
4794
5035
|
type ResetWorkspaceMutationVariables = Exact<{
|
|
4795
5036
|
[key: string]: never;
|
|
4796
5037
|
}>;
|
|
5038
|
+
type ResolvePulseEventMutationVariables = Exact<{
|
|
5039
|
+
id: Scalars['ID'];
|
|
5040
|
+
}>;
|
|
4797
5041
|
type ScheduleWorkspaceDeletionMutationVariables = Exact<{
|
|
4798
5042
|
[key: string]: never;
|
|
4799
5043
|
}>;
|
|
@@ -4834,6 +5078,9 @@ type UpdateInterpMutationVariables = Exact<{
|
|
|
4834
5078
|
data: InterpretationUpdateInput;
|
|
4835
5079
|
where: InterpretationWhereUniqueInput;
|
|
4836
5080
|
}>;
|
|
5081
|
+
type UpdatePulseTriggerMutationVariables = Exact<{
|
|
5082
|
+
input: UpdatePulseTriggerInput;
|
|
5083
|
+
}>;
|
|
4837
5084
|
type UpdateReportMutationVariables = Exact<{
|
|
4838
5085
|
data: ReportUpdateInput;
|
|
4839
5086
|
where: ReportWhereUniqueInput;
|
|
@@ -5170,6 +5417,9 @@ type IntegrationCatalogQueryVariables = Exact<{
|
|
|
5170
5417
|
type IntegrationCatalog_ProviderQueryVariables = Exact<{
|
|
5171
5418
|
providerKey: Scalars['String'];
|
|
5172
5419
|
}>;
|
|
5420
|
+
type IntegrationCatalogToolsQueryVariables = Exact<{
|
|
5421
|
+
providerKey: Scalars['String'];
|
|
5422
|
+
}>;
|
|
5173
5423
|
type IntegrationCatalogsQueryVariables = Exact<{
|
|
5174
5424
|
after?: InputMaybe<Scalars['String']>;
|
|
5175
5425
|
before?: InputMaybe<Scalars['String']>;
|
|
@@ -5211,6 +5461,32 @@ type NotificationsByReferenceQueryVariables = Exact<{
|
|
|
5211
5461
|
type PrivacyStatsQueryVariables = Exact<{
|
|
5212
5462
|
[key: string]: never;
|
|
5213
5463
|
}>;
|
|
5464
|
+
type PulseAppSummaryQueryVariables = Exact<{
|
|
5465
|
+
integrationId: Scalars['String'];
|
|
5466
|
+
}>;
|
|
5467
|
+
type PulseEventQueryVariables = Exact<{
|
|
5468
|
+
id: Scalars['ID'];
|
|
5469
|
+
}>;
|
|
5470
|
+
type PulseEvent_IntegrationQueryVariables = Exact<{
|
|
5471
|
+
id: Scalars['ID'];
|
|
5472
|
+
}>;
|
|
5473
|
+
type PulseEvent_Integration_ProviderQueryVariables = Exact<{
|
|
5474
|
+
id: Scalars['ID'];
|
|
5475
|
+
}>;
|
|
5476
|
+
type PulseEventStatsQueryVariables = Exact<{
|
|
5477
|
+
filter?: InputMaybe<PulseEventWhereInput>;
|
|
5478
|
+
}>;
|
|
5479
|
+
type PulseEventsQueryVariables = Exact<{
|
|
5480
|
+
after?: InputMaybe<Scalars['String']>;
|
|
5481
|
+
before?: InputMaybe<Scalars['String']>;
|
|
5482
|
+
filter?: InputMaybe<PulseEventWhereInput>;
|
|
5483
|
+
first?: InputMaybe<Scalars['Int']>;
|
|
5484
|
+
last?: InputMaybe<Scalars['Int']>;
|
|
5485
|
+
orderBy?: InputMaybe<Array<PulseEventOrderByWithRelationInput> | PulseEventOrderByWithRelationInput>;
|
|
5486
|
+
}>;
|
|
5487
|
+
type PulseTriggerSettingsQueryVariables = Exact<{
|
|
5488
|
+
integrationId: Scalars['String'];
|
|
5489
|
+
}>;
|
|
5214
5490
|
type QueryQueryVariables = Exact<{
|
|
5215
5491
|
geoFilter?: InputMaybe<GeoFilter>;
|
|
5216
5492
|
query: Scalars['JSON'];
|
|
@@ -5298,6 +5574,7 @@ type SendMessageStreamSubscriptionVariables = Exact<{
|
|
|
5298
5574
|
chatId: Scalars['String'];
|
|
5299
5575
|
content: Scalars['String'];
|
|
5300
5576
|
extendedThinking?: InputMaybe<Scalars['Boolean']>;
|
|
5577
|
+
hiddenContext?: InputMaybe<Scalars['String']>;
|
|
5301
5578
|
isVoiceInput: Scalars['Boolean'];
|
|
5302
5579
|
isVoiceOutput: Scalars['Boolean'];
|
|
5303
5580
|
model?: InputMaybe<SendMessageModel>;
|
|
@@ -5707,6 +5984,7 @@ declare class Insight extends DvinaModel {
|
|
|
5707
5984
|
reports(variables?: Omit<Insight_ReportsQueryVariables, 'id'>): Insight_ReportsQuery;
|
|
5708
5985
|
}
|
|
5709
5986
|
declare class Integration extends DvinaModel {
|
|
5987
|
+
readonly connectedAt: Date | undefined;
|
|
5710
5988
|
readonly createdAt: Date;
|
|
5711
5989
|
readonly id: string;
|
|
5712
5990
|
readonly providerKey: string;
|
|
@@ -5860,6 +6138,54 @@ declare class PrivacyStats extends DvinaModel {
|
|
|
5860
6138
|
readonly messagesProtectedFromTraining: number | undefined;
|
|
5861
6139
|
constructor(request: DvinaRequest, data: PrivacyStatsFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
5862
6140
|
}
|
|
6141
|
+
declare class PulseAppSummaryModel extends DvinaModel {
|
|
6142
|
+
readonly activeTriggerCount: number;
|
|
6143
|
+
readonly integrationId: string;
|
|
6144
|
+
readonly providerKey: string | undefined;
|
|
6145
|
+
constructor(request: DvinaRequest, data: PulseAppSummaryModelFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6146
|
+
}
|
|
6147
|
+
declare class PulseEvent extends DvinaModel {
|
|
6148
|
+
readonly acknowledgedAt: Date | undefined;
|
|
6149
|
+
readonly actions: any | undefined;
|
|
6150
|
+
readonly createdAt: Date;
|
|
6151
|
+
readonly dedupeKey: string | undefined;
|
|
6152
|
+
readonly dismissedAt: Date | undefined;
|
|
6153
|
+
readonly id: string;
|
|
6154
|
+
readonly integrationId: string;
|
|
6155
|
+
readonly kind: PulseEventKind;
|
|
6156
|
+
readonly message: string | undefined;
|
|
6157
|
+
readonly payload: any | undefined;
|
|
6158
|
+
readonly priority: PulseEventPriority;
|
|
6159
|
+
readonly providerKey: string;
|
|
6160
|
+
readonly remoteEventId: string;
|
|
6161
|
+
readonly remoteLogId: string | undefined;
|
|
6162
|
+
readonly remoteTriggerId: string | undefined;
|
|
6163
|
+
readonly resolvedAt: Date | undefined;
|
|
6164
|
+
readonly seenAt: Date | undefined;
|
|
6165
|
+
readonly status: PulseEventStatus;
|
|
6166
|
+
readonly summary: string | undefined;
|
|
6167
|
+
readonly title: string;
|
|
6168
|
+
readonly triggerSlug: string;
|
|
6169
|
+
readonly updatedAt: Date;
|
|
6170
|
+
constructor(request: DvinaRequest, data: PulseEventFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6171
|
+
/** Query the integration relation for this PulseEvent. Call .fetch() or .watch() to execute. */
|
|
6172
|
+
integration(variables?: Omit<PulseEvent_IntegrationQueryVariables, 'id'>): PulseEvent_IntegrationQuery;
|
|
6173
|
+
}
|
|
6174
|
+
declare class PulseEventStatsModel extends DvinaModel {
|
|
6175
|
+
readonly highPriorityCount: number;
|
|
6176
|
+
readonly needsActionCount: number;
|
|
6177
|
+
readonly unreadCount: number;
|
|
6178
|
+
constructor(request: DvinaRequest, data: PulseEventStatsModelFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6179
|
+
}
|
|
6180
|
+
declare class PulseTriggerSettingModel extends DvinaModel {
|
|
6181
|
+
readonly integrationId: string;
|
|
6182
|
+
readonly isEnabled: boolean;
|
|
6183
|
+
readonly message: string | undefined;
|
|
6184
|
+
readonly name: string;
|
|
6185
|
+
readonly providerKey: string;
|
|
6186
|
+
readonly slug: string;
|
|
6187
|
+
constructor(request: DvinaRequest, data: PulseTriggerSettingModelFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6188
|
+
}
|
|
5863
6189
|
declare class ReasoningEventOutput extends DvinaModel {
|
|
5864
6190
|
readonly delta: string;
|
|
5865
6191
|
readonly type: string;
|
|
@@ -6100,6 +6426,9 @@ declare class InterpretationConnection extends Connection<Interpretation> {
|
|
|
6100
6426
|
declare class NotificationConnection extends Connection<Notification> {
|
|
6101
6427
|
constructor(request: DvinaRequest, fetch: (variables?: ConnectionVariables, options?: FetchOptions) => Promise<NotificationConnection | undefined>, data: NotificationConnectionFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6102
6428
|
}
|
|
6429
|
+
declare class PulseEventConnection extends Connection<PulseEvent> {
|
|
6430
|
+
constructor(request: DvinaRequest, fetch: (variables?: ConnectionVariables, options?: FetchOptions) => Promise<PulseEventConnection | undefined>, data: PulseEventConnectionFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6431
|
+
}
|
|
6103
6432
|
declare class ReportConnection extends Connection<Report> {
|
|
6104
6433
|
constructor(request: DvinaRequest, fetch: (variables?: ConnectionVariables, options?: FetchOptions) => Promise<ReportConnection | undefined>, data: ReportConnectionFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6105
6434
|
}
|
|
@@ -6250,6 +6579,14 @@ declare class IntegrationCatalogSubBuilder<TIncluded = {}> {
|
|
|
6250
6579
|
provider: IntegrationProvider;
|
|
6251
6580
|
}>;
|
|
6252
6581
|
}
|
|
6582
|
+
declare class PulseEventSubBuilder<TIncluded = {}> {
|
|
6583
|
+
/** @internal */
|
|
6584
|
+
_includes: IncludeDirective[];
|
|
6585
|
+
/** Include integration in the parent query. */
|
|
6586
|
+
integration(variables?: Omit<PulseEvent_IntegrationQueryVariables, 'id'>, builder?: (q: IntegrationSubBuilder) => IntegrationSubBuilder<any>): PulseEventSubBuilder<TIncluded & {
|
|
6587
|
+
integration: Integration;
|
|
6588
|
+
}>;
|
|
6589
|
+
}
|
|
6253
6590
|
declare class ReportSubBuilder<TIncluded = {}> {
|
|
6254
6591
|
/** @internal */
|
|
6255
6592
|
_includes: IncludeDirective[];
|
|
@@ -6282,6 +6619,9 @@ declare class TableSubBuilder<TIncluded = {}> {
|
|
|
6282
6619
|
toRelations: Relation[];
|
|
6283
6620
|
}>;
|
|
6284
6621
|
}
|
|
6622
|
+
declare class AcknowledgePulseEventMutation extends Request {
|
|
6623
|
+
fetch(variables: AcknowledgePulseEventMutationVariables, options?: FetchOptions): Promise<PulseEvent>;
|
|
6624
|
+
}
|
|
6285
6625
|
declare class AddInsightToReportMutation extends Request {
|
|
6286
6626
|
fetch(variables: AddInsightToReportMutationVariables, options?: FetchOptions): Promise<Report>;
|
|
6287
6627
|
}
|
|
@@ -6363,9 +6703,15 @@ declare class DeleteTableMutation extends Request {
|
|
|
6363
6703
|
declare class DisconnectIntegrationMutation extends Request {
|
|
6364
6704
|
fetch(variables: DisconnectIntegrationMutationVariables): Promise<void>;
|
|
6365
6705
|
}
|
|
6706
|
+
declare class DismissPulseEventMutation extends Request {
|
|
6707
|
+
fetch(variables: DismissPulseEventMutationVariables, options?: FetchOptions): Promise<PulseEvent>;
|
|
6708
|
+
}
|
|
6366
6709
|
declare class GenerateUploadUriMutation extends Request {
|
|
6367
6710
|
fetch(variables: GenerateUploadUriMutationVariables, options?: FetchOptions): Promise<FileModel>;
|
|
6368
6711
|
}
|
|
6712
|
+
declare class MarkPulseEventSeenMutation extends Request {
|
|
6713
|
+
fetch(variables: MarkPulseEventSeenMutationVariables, options?: FetchOptions): Promise<PulseEvent>;
|
|
6714
|
+
}
|
|
6369
6715
|
declare class ReanalyzeDocumentMutation extends Request {
|
|
6370
6716
|
fetch(variables: ReanalyzeDocumentMutationVariables, options?: FetchOptions): Promise<Document>;
|
|
6371
6717
|
}
|
|
@@ -6390,6 +6736,9 @@ declare class RemoveInsightFromReportMutation extends Request {
|
|
|
6390
6736
|
declare class ResetWorkspaceMutation extends Request {
|
|
6391
6737
|
fetch(variables?: ResetWorkspaceMutationVariables): Promise<boolean>;
|
|
6392
6738
|
}
|
|
6739
|
+
declare class ResolvePulseEventMutation extends Request {
|
|
6740
|
+
fetch(variables: ResolvePulseEventMutationVariables, options?: FetchOptions): Promise<PulseEvent>;
|
|
6741
|
+
}
|
|
6393
6742
|
declare class ScheduleWorkspaceDeletionMutation extends Request {
|
|
6394
6743
|
fetch(variables?: ScheduleWorkspaceDeletionMutationVariables, options?: FetchOptions): Promise<WorkspaceDeleteSchedule>;
|
|
6395
6744
|
}
|
|
@@ -6420,6 +6769,9 @@ declare class UpdateInsightInReportMutation extends Request {
|
|
|
6420
6769
|
declare class UpdateInterpMutation extends Request {
|
|
6421
6770
|
fetch(variables: UpdateInterpMutationVariables, options?: FetchOptions): Promise<Interpretation>;
|
|
6422
6771
|
}
|
|
6772
|
+
declare class UpdatePulseTriggerMutation extends Request {
|
|
6773
|
+
fetch(variables: UpdatePulseTriggerMutationVariables, options?: FetchOptions): Promise<PulseTriggerSettingModel>;
|
|
6774
|
+
}
|
|
6423
6775
|
declare class UpdateReportMutation extends Request {
|
|
6424
6776
|
fetch(variables: UpdateReportMutationVariables, options?: FetchOptions): Promise<Report>;
|
|
6425
6777
|
}
|
|
@@ -7065,6 +7417,9 @@ declare class IntegrationCatalog_ProviderQuery extends Request {
|
|
|
7065
7417
|
fetch(options?: FetchOptions): Promise<IntegrationProvider | undefined>;
|
|
7066
7418
|
watch(options?: FetchOptions): DvinaQueryRef<IntegrationProvider | undefined>;
|
|
7067
7419
|
}
|
|
7420
|
+
declare class IntegrationCatalogToolsQuery extends Request {
|
|
7421
|
+
fetch(variables: IntegrationCatalogToolsQueryVariables): Promise<string[]>;
|
|
7422
|
+
}
|
|
7068
7423
|
declare class IntegrationCatalogsQuery<TIncluded = {}> extends Request {
|
|
7069
7424
|
private _variables;
|
|
7070
7425
|
private _includes;
|
|
@@ -7121,6 +7476,60 @@ declare class PrivacyStatsQuery<TIncluded = {}> extends Request {
|
|
|
7121
7476
|
fetch(options?: FetchOptions): Promise<WithIncludes<PrivacyStats, TIncluded>>;
|
|
7122
7477
|
watch(options?: FetchOptions): DvinaQueryRef<WithIncludes<PrivacyStats, TIncluded>>;
|
|
7123
7478
|
}
|
|
7479
|
+
declare class PulseAppSummaryQuery<TIncluded = {}> extends Request {
|
|
7480
|
+
private _variables;
|
|
7481
|
+
private _includes;
|
|
7482
|
+
constructor(request: DvinaRequest, syncEngine?: SyncEngine, variables?: PulseAppSummaryQueryVariables, baseUrl?: string);
|
|
7483
|
+
fetch(options?: FetchOptions): Promise<WithIncludes<PulseAppSummaryModel, TIncluded> | undefined>;
|
|
7484
|
+
watch(options?: FetchOptions): DvinaQueryRef<WithIncludes<PulseAppSummaryModel, TIncluded> | undefined>;
|
|
7485
|
+
}
|
|
7486
|
+
declare class PulseEventQuery<TIncluded = {}> extends Request {
|
|
7487
|
+
private _variables;
|
|
7488
|
+
private _includes;
|
|
7489
|
+
constructor(request: DvinaRequest, syncEngine?: SyncEngine, variables?: PulseEventQueryVariables, baseUrl?: string);
|
|
7490
|
+
fetch(options?: FetchOptions): Promise<WithIncludes<PulseEvent, TIncluded>>;
|
|
7491
|
+
watch(options?: FetchOptions): DvinaQueryRef<WithIncludes<PulseEvent, TIncluded>>;
|
|
7492
|
+
/** Include integration in this query (Smart Fetch — single HTTP request). */
|
|
7493
|
+
integration(variables?: Omit<PulseEvent_IntegrationQueryVariables, 'id'>, builder?: (q: IntegrationSubBuilder) => IntegrationSubBuilder<any>): PulseEventQuery<TIncluded & {
|
|
7494
|
+
integration: Integration;
|
|
7495
|
+
}>;
|
|
7496
|
+
}
|
|
7497
|
+
declare class PulseEvent_IntegrationQuery extends Request {
|
|
7498
|
+
private _variables;
|
|
7499
|
+
constructor(request: DvinaRequest, syncEngine?: SyncEngine, variables?: PulseEvent_IntegrationQueryVariables, baseUrl?: string);
|
|
7500
|
+
fetch(options?: FetchOptions): Promise<Integration | undefined>;
|
|
7501
|
+
watch(options?: FetchOptions): DvinaQueryRef<Integration | undefined>;
|
|
7502
|
+
}
|
|
7503
|
+
declare class PulseEvent_Integration_ProviderQuery extends Request {
|
|
7504
|
+
private _variables;
|
|
7505
|
+
constructor(request: DvinaRequest, syncEngine?: SyncEngine, variables?: PulseEvent_Integration_ProviderQueryVariables, baseUrl?: string);
|
|
7506
|
+
fetch(options?: FetchOptions): Promise<IntegrationProvider | undefined>;
|
|
7507
|
+
watch(options?: FetchOptions): DvinaQueryRef<IntegrationProvider | undefined>;
|
|
7508
|
+
}
|
|
7509
|
+
declare class PulseEventStatsQuery<TIncluded = {}> extends Request {
|
|
7510
|
+
private _variables;
|
|
7511
|
+
private _includes;
|
|
7512
|
+
constructor(request: DvinaRequest, syncEngine?: SyncEngine, variables?: PulseEventStatsQueryVariables, baseUrl?: string);
|
|
7513
|
+
fetch(options?: FetchOptions): Promise<WithIncludes<PulseEventStatsModel, TIncluded>>;
|
|
7514
|
+
watch(options?: FetchOptions): DvinaQueryRef<WithIncludes<PulseEventStatsModel, TIncluded>>;
|
|
7515
|
+
}
|
|
7516
|
+
declare class PulseEventsQuery<TIncluded = {}> extends Request {
|
|
7517
|
+
private _variables;
|
|
7518
|
+
private _includes;
|
|
7519
|
+
constructor(request: DvinaRequest, syncEngine?: SyncEngine, variables?: PulseEventsQueryVariables, baseUrl?: string);
|
|
7520
|
+
fetch(options?: FetchOptions): Promise<ConnectionWithNodes<PulseEventConnection, TIncluded>>;
|
|
7521
|
+
watch(options?: FetchOptions): DvinaQueryRef<ConnectionWithNodes<PulseEventConnection, TIncluded>>;
|
|
7522
|
+
/** Include integration in this query (Smart Fetch — single HTTP request). */
|
|
7523
|
+
integration(variables?: Omit<PulseEvent_IntegrationQueryVariables, 'id'>, builder?: (q: IntegrationSubBuilder) => IntegrationSubBuilder<any>): PulseEventsQuery<TIncluded & {
|
|
7524
|
+
integration: Integration;
|
|
7525
|
+
}>;
|
|
7526
|
+
}
|
|
7527
|
+
declare class PulseTriggerSettingsQuery<TIncluded = {}> extends Request {
|
|
7528
|
+
private _variables;
|
|
7529
|
+
private _includes;
|
|
7530
|
+
constructor(request: DvinaRequest, syncEngine?: SyncEngine, variables?: PulseTriggerSettingsQueryVariables, baseUrl?: string);
|
|
7531
|
+
fetch(options?: FetchOptions): Promise<PulseTriggerSettingModel[]>;
|
|
7532
|
+
}
|
|
7124
7533
|
declare class QueryQuery extends Request {
|
|
7125
7534
|
fetch(variables: QueryQueryVariables): Promise<any>;
|
|
7126
7535
|
}
|
|
@@ -7304,6 +7713,8 @@ declare class DvinaSdk extends Request {
|
|
|
7304
7713
|
/** Billing client for the Dvina Billing API (plans, subscriptions, seats, sessions). */
|
|
7305
7714
|
readonly billing: BillingClient;
|
|
7306
7715
|
constructor(options: DvinaSdkOptions);
|
|
7716
|
+
/** Mutation: acknowledgePulseEvent */
|
|
7717
|
+
acknowledgePulseEvent(variables: AcknowledgePulseEventMutationVariables): Promise<PulseEvent>;
|
|
7307
7718
|
/** Mutation: addInsightToReport */
|
|
7308
7719
|
addInsightToReport(variables: AddInsightToReportMutationVariables): Promise<Report>;
|
|
7309
7720
|
/** Mutation: cancelOauthFlow (scalar) */
|
|
@@ -7358,8 +7769,12 @@ declare class DvinaSdk extends Request {
|
|
|
7358
7769
|
deleteTable(variables: DeleteTableMutationVariables): Promise<Table>;
|
|
7359
7770
|
/** Mutation: disconnectIntegration (scalar) */
|
|
7360
7771
|
disconnectIntegration(variables: DisconnectIntegrationMutationVariables): Promise<void>;
|
|
7772
|
+
/** Mutation: dismissPulseEvent */
|
|
7773
|
+
dismissPulseEvent(variables: DismissPulseEventMutationVariables): Promise<PulseEvent>;
|
|
7361
7774
|
/** Mutation: generateUploadUri */
|
|
7362
7775
|
generateUploadUri(variables: GenerateUploadUriMutationVariables): Promise<FileModel>;
|
|
7776
|
+
/** Mutation: markPulseEventSeen */
|
|
7777
|
+
markPulseEventSeen(variables: MarkPulseEventSeenMutationVariables): Promise<PulseEvent>;
|
|
7363
7778
|
/** Mutation: reanalyzeDocument */
|
|
7364
7779
|
reanalyzeDocument(variables: ReanalyzeDocumentMutationVariables): Promise<Document>;
|
|
7365
7780
|
/** Mutation: refineMindInstruction (scalar) */
|
|
@@ -7376,6 +7791,8 @@ declare class DvinaSdk extends Request {
|
|
|
7376
7791
|
removeInsightFromReport(variables: RemoveInsightFromReportMutationVariables): Promise<Report>;
|
|
7377
7792
|
/** Mutation: resetWorkspace (scalar) */
|
|
7378
7793
|
resetWorkspace(): Promise<boolean>;
|
|
7794
|
+
/** Mutation: resolvePulseEvent */
|
|
7795
|
+
resolvePulseEvent(variables: ResolvePulseEventMutationVariables): Promise<PulseEvent>;
|
|
7379
7796
|
/** Mutation: scheduleWorkspaceDeletion */
|
|
7380
7797
|
scheduleWorkspaceDeletion(): Promise<WorkspaceDeleteSchedule>;
|
|
7381
7798
|
/** Mutation: setDatabasePrimaryKey (scalar) */
|
|
@@ -7396,6 +7813,8 @@ declare class DvinaSdk extends Request {
|
|
|
7396
7813
|
updateInsightInReport(variables: UpdateInsightInReportMutationVariables): Promise<Report>;
|
|
7397
7814
|
/** Mutation: updateInterp */
|
|
7398
7815
|
updateInterp(variables: UpdateInterpMutationVariables): Promise<Interpretation>;
|
|
7816
|
+
/** Mutation: updatePulseTrigger */
|
|
7817
|
+
updatePulseTrigger(variables: UpdatePulseTriggerMutationVariables): Promise<PulseTriggerSettingModel>;
|
|
7399
7818
|
/** Mutation: updateReport */
|
|
7400
7819
|
updateReport(variables: UpdateReportMutationVariables): Promise<Report>;
|
|
7401
7820
|
/** Mutation: updateTable */
|
|
@@ -7474,6 +7893,8 @@ declare class DvinaSdk extends Request {
|
|
|
7474
7893
|
integration(variables: IntegrationQueryVariables): IntegrationQuery;
|
|
7475
7894
|
/** Query: integrationCatalog — call .fetch() or .watch() to execute. */
|
|
7476
7895
|
integrationCatalog(variables: IntegrationCatalogQueryVariables): IntegrationCatalogQuery;
|
|
7896
|
+
/** Query: integrationCatalogTools (scalar) */
|
|
7897
|
+
integrationCatalogTools(variables: IntegrationCatalogToolsQueryVariables): Promise<string[]>;
|
|
7477
7898
|
/** Query: integrationCatalogs — call .fetch() or .watch() to execute. */
|
|
7478
7899
|
integrationCatalogs(variables?: IntegrationCatalogsQueryVariables): IntegrationCatalogsQuery;
|
|
7479
7900
|
/** Query: integrations — call .fetch() or .watch() to execute. */
|
|
@@ -7488,6 +7909,16 @@ declare class DvinaSdk extends Request {
|
|
|
7488
7909
|
notificationsByReference(variables: NotificationsByReferenceQueryVariables): NotificationsByReferenceQuery;
|
|
7489
7910
|
/** Query: privacyStats — call .fetch() or .watch() to execute. */
|
|
7490
7911
|
privacyStats(): PrivacyStatsQuery;
|
|
7912
|
+
/** Query: pulseAppSummary — call .fetch() or .watch() to execute. */
|
|
7913
|
+
pulseAppSummary(variables: PulseAppSummaryQueryVariables): PulseAppSummaryQuery;
|
|
7914
|
+
/** Query: pulseEvent — call .fetch() or .watch() to execute. */
|
|
7915
|
+
pulseEvent(variables: PulseEventQueryVariables): PulseEventQuery;
|
|
7916
|
+
/** Query: pulseEventStats — call .fetch() or .watch() to execute. */
|
|
7917
|
+
pulseEventStats(variables?: PulseEventStatsQueryVariables): PulseEventStatsQuery;
|
|
7918
|
+
/** Query: pulseEvents — call .fetch() or .watch() to execute. */
|
|
7919
|
+
pulseEvents(variables?: PulseEventsQueryVariables): PulseEventsQuery;
|
|
7920
|
+
/** Query: pulseTriggerSettings — call .fetch() or .watch() to execute. */
|
|
7921
|
+
pulseTriggerSettings(variables: PulseTriggerSettingsQueryVariables): PulseTriggerSettingsQuery;
|
|
7491
7922
|
/** Query: query (scalar) */
|
|
7492
7923
|
query(variables: QueryQueryVariables): Promise<any>;
|
|
7493
7924
|
/** Query: queryWithInsightId (scalar) */
|
|
@@ -7582,4 +8013,4 @@ declare const PRIMARY_KEY_CONFIG: Record<string, string | string[]>;
|
|
|
7582
8013
|
*/
|
|
7583
8014
|
declare const MUTATION_CACHE_RULES: Record<string, CacheRule>;
|
|
7584
8015
|
|
|
7585
|
-
export { Action, ActionType, ActiveWindowType, AddInsightToReportMutation, Agent, AgentConnection, AgentOrderByRelevanceFieldEnum, AgentQuery, AgentSubBuilder, Agent_ChatsQuery, AgentsQuery, AiResourceType, Artifact, ArtifactConnection, ArtifactKind, ArtifactOrderByRelevanceFieldEnum, ArtifactQuery, ArtifactSubBuilder, Artifact_ChatQuery, Artifact_Chat_InsightQuery, Artifact_FileQuery, Artifact_MessageQuery, Artifact_Message_ChatQuery, Artifact_Message_ContentsQuery, Artifact_Message_FeedbackQuery, ArtifactsQuery, AudioEventOutput, CacheRule, CancelOauthFlowMutation, CancelWorkspaceDeletionMutation, CapabilityType, Chat, ChatConnection, ChatMessage, ChatMessageConnection, ChatMessageFromEnum, ChatMessageOrderByRelevanceFieldEnum, ChatMessageQuery, ChatMessageSubBuilder, ChatMessage_ArtifactsQuery, ChatMessage_ChatQuery, ChatMessage_Chat_InsightQuery, ChatMessage_ContentsQuery, ChatMessage_FeedbackQuery, ChatMessagesQuery, ChatOrderByRelevanceFieldEnum, ChatQuery, ChatSubBuilder, ChatTitleEventOutput, Chat_AgentsQuery, Chat_ArtifactsQuery, Chat_InsightQuery, Chat_Insight_ReportMembersQuery, Chat_MessagesQuery, ChatsQuery, ConnectIntegrationMutation, Connection, ConnectionVariables, ConnectionWithNodes, ContentBlock, ContentBlockType, ContentMask, ContinueInterpretationMutation, CreateAgentMutation, CreateChatMutation, CreateDatabaseMutation, CreateDocumentMutation, CreateFeedbackMutation, CreateFolderMutation, CreateInsightMutation, CreateIntegrationMutation, CreateIntegrationOutput, CreateReportMutation, CreateTableMutation, CubeModel, DB_ENTITY_SCHEMA, Database, DatabaseCatalog, DatabaseCatalogConnection, DatabaseCatalogOrderByRelevanceFieldEnum, DatabaseCatalogQuery, DatabaseCatalogSubBuilder, DatabaseCatalog_EngineQuery, DatabaseCatalogsQuery, DatabaseConnection, DatabaseEngine, DatabaseOrderByRelevanceFieldEnum, DatabaseQuery, DatabaseSchemaQuery, DatabaseSubBuilder, Database_EngineQuery, Database_Engine_CatalogQuery, Database_TablesQuery, DatabasesQuery, DeepAnalysisUsage, DeferredDvinaQueryRef, DeleteAgentMutation, DeleteArtifactMutation, DeleteChatMutation, DeleteDatabaseMutation, DeleteDocumentMutation, DeleteFolderMutation, DeleteInsightMutation, DeleteInsightsMutation, DeleteIntegrationMutation, DeleteReportMutation, DeleteTableMutation, DevAccessTokenOutput, DexieLiveQueryRef, DisconnectIntegrationMutation, Document, DocumentCatalog, DocumentCatalogConnection, DocumentCatalogOrderByRelevanceFieldEnum, DocumentCatalogQuery, DocumentCatalogSubBuilder, DocumentCatalog_FormatQuery, DocumentCatalogsQuery, DocumentConnection, DocumentContent, DocumentFormat, DocumentOrderByRelevanceFieldEnum, DocumentQuery, DocumentSubBuilder, Document_ContentsQuery, Document_FileQuery, Document_FormatQuery, Document_Format_CatalogQuery, Document_TablesQuery, DocumentsQuery, DvinaDatabase, DvinaError, DvinaModel, DvinaQueryRef, DvinaRequest, DvinaSdk, DvinaSdkOptions, EntitlementTier, ExportQuery, ExportWithInsightIdQuery, Feedback, FeedbackOrderByRelevanceFieldEnum, FeedbackType, FetchOptions, File, FileMetaQuery, FileModel, FileOrderByRelevanceFieldEnum, FileQuery, FileUrlsQuery, FinalContentEventOutput, FindFitTierQuery, Folder, FolderConnection, FolderOrderByRelevanceFieldEnum, FolderQuery, FoldersQuery, GenerateUploadUriMutation, GetCapabilityQuery, GetDevAccessTokenQuery, GetLimitQuery, GetRemainingQuery, GetTokenUsageByModelQuery, GetTokenUsageHistoryQuery, GetTokenUsageStatusQuery, GetTokenUsageStatus_WindowsQuery, GetTokenUsageStatus_Windows_DayQuery, GetTokenUsageStatus_Windows_FiveHourQuery, GetTokenUsageStatus_Windows_WeekQuery, GetUsageQuery, IndexContentObject, IndexType, Insight, InsightConnection, InsightOrderByRelevanceFieldEnum, InsightQuery, InsightSubBuilder, Insight_ChatQuery, Insight_ReportMembersQuery, Insight_ReportsQuery, InsightsQuery, Integration, IntegrationCatalog, IntegrationCatalogConnection, IntegrationCatalogOrderByRelevanceFieldEnum, IntegrationCatalogQuery, IntegrationCatalogSubBuilder, IntegrationCatalog_ProviderQuery, IntegrationCatalogsQuery, IntegrationConnection, IntegrationOrderByRelevanceFieldEnum, IntegrationProvider, IntegrationQuery, IntegrationStatus, IntegrationSubBuilder, Integration_ProviderQuery, Integration_Provider_CatalogQuery, IntegrationsQuery, Interpretation, InterpretationConnection, InterpretationOrderByRelevanceFieldEnum, InterpretationType, InterpretationsQuery, Invocation, LimitType, MUTATION_CACHE_RULES, MappedDvinaQueryRef, McpAuthPhase, McpAuthUpdateModel, McpAuthUpdatesSubscription, McpClientInformation, McpCodeVerifier, McpServer, McpTokens, McpTool, MessageEndEventOutput, MessageStartEventOutput, ModelTokenUsage, Notification, NotificationCategory, NotificationConnection, NotificationOrderByRelevanceFieldEnum, NotificationPriority, NotificationQuery, NotificationStatus, NotificationsByReferenceQuery, NotificationsQuery, NullsOrder, PRIMARY_KEY_CONFIG, Presentation, PrivacyStats, PrivacyStatsQuery, QueryMode, QueryQuery, QueryWithInsightIdQuery, QueryWithMessageIdQuery, ReanalyzeDocumentMutation, ReasoningEventOutput, RefineMindInstructionMutation, RefreshDatabaseSchemaMutation, ReinterpretSourceMutation, ReinterpretSourcesOfuserMutation, Relation, RelationType, RelocateInsightMutation, RemoveInsightFromReportMutation, Report, ReportConnection, ReportMember, ReportMemberSize, ReportOrderByRelevanceFieldEnum, ReportQuery, ReportSubBuilder, Report_InsightsQuery, Report_LayoutQuery, ReportsQuery, Request, ResetWorkspaceMutation, ResolvedFileUrl, ScheduleWorkspaceDeletionMutation, SearchQuery, SendMessageModel, SendMessageStreamSubscription, SetDatabasePrimaryKeyMutation, SortOrder, StreamMessageContentOutput, StreamMessageOutput, SyncEngine, SyncEvent, TABLE_TO_TYPENAME, TYPENAME_TO_TABLE, Table, TableConnection, TableOrderByRelevanceFieldEnum, TableQuery, TableStatus, TableSubBuilder, Table_DatabaseQuery, Table_Database_EngineQuery, Table_DocumentQuery, Table_Document_ContentsQuery, Table_Document_FileQuery, Table_Document_FormatQuery, Table_FromRelationsQuery, Table_ToRelationsQuery, TablesQuery, TextBlockEventOutput, TextDeltaEventOutput, TokenUsage, TokenUsageLimit, TokenUsageUpdatesSubscription, ToolInputDeltaEventOutput, ToolResultArtifactOutput, ToolResultEventOutput, ToolStartEventOutput, UpdateAgentMutation, UpdateChatMutation, UpdateDatabaseMutation, UpdateDocumentMutation, UpdateFolderMutation, UpdateInsightInReportMutation, UpdateInsightMutation, UpdateInterpMutation, UpdateReportMutation, UpdateTableMutation, type UploadOptions, type UploadProgressEvent, type UploadResult, UsageHistoryGranularity, UsageMetaOutput, UsageStatus, UsageWindowsStatusType, WindowDetailType, WithIncludes, WorkspaceDeleteSchedule, WorkspaceDeletionScheduleQuery, type WsTransport, type WsTransportOptions, createLazySyncEngine, createWsTransport, reconstructConnectionNodes, reconstructEntity, uploadFile };
|
|
8016
|
+
export { AcknowledgePulseEventMutation, Action, ActionType, ActiveWindowType, AddInsightToReportMutation, Agent, AgentConnection, AgentOrderByRelevanceFieldEnum, AgentQuery, AgentSubBuilder, Agent_ChatsQuery, AgentsQuery, AiResourceType, Artifact, ArtifactConnection, ArtifactKind, ArtifactOrderByRelevanceFieldEnum, ArtifactQuery, ArtifactSubBuilder, Artifact_ChatQuery, Artifact_Chat_InsightQuery, Artifact_FileQuery, Artifact_MessageQuery, Artifact_Message_ChatQuery, Artifact_Message_ContentsQuery, Artifact_Message_FeedbackQuery, ArtifactsQuery, AudioEventOutput, CacheRule, CancelOauthFlowMutation, CancelWorkspaceDeletionMutation, CapabilityType, Chat, ChatConnection, ChatMessage, ChatMessageConnection, ChatMessageFromEnum, ChatMessageOrderByRelevanceFieldEnum, ChatMessageQuery, ChatMessageSubBuilder, ChatMessage_ArtifactsQuery, ChatMessage_ChatQuery, ChatMessage_Chat_InsightQuery, ChatMessage_ContentsQuery, ChatMessage_FeedbackQuery, ChatMessagesQuery, ChatOrderByRelevanceFieldEnum, ChatQuery, ChatSubBuilder, ChatTitleEventOutput, Chat_AgentsQuery, Chat_ArtifactsQuery, Chat_InsightQuery, Chat_Insight_ReportMembersQuery, Chat_MessagesQuery, ChatsQuery, ConnectIntegrationMutation, Connection, ConnectionVariables, ConnectionWithNodes, ContentBlock, ContentBlockType, ContentMask, ContinueInterpretationMutation, CreateAgentMutation, CreateChatMutation, CreateDatabaseMutation, CreateDocumentMutation, CreateFeedbackMutation, CreateFolderMutation, CreateInsightMutation, CreateIntegrationMutation, CreateIntegrationOutput, CreateReportMutation, CreateTableMutation, CubeModel, DB_ENTITY_SCHEMA, Database, DatabaseCatalog, DatabaseCatalogConnection, DatabaseCatalogOrderByRelevanceFieldEnum, DatabaseCatalogQuery, DatabaseCatalogSubBuilder, DatabaseCatalog_EngineQuery, DatabaseCatalogsQuery, DatabaseConnection, DatabaseEngine, DatabaseOrderByRelevanceFieldEnum, DatabaseQuery, DatabaseSchemaQuery, DatabaseSubBuilder, Database_EngineQuery, Database_Engine_CatalogQuery, Database_TablesQuery, DatabasesQuery, DeepAnalysisUsage, DeferredDvinaQueryRef, DeleteAgentMutation, DeleteArtifactMutation, DeleteChatMutation, DeleteDatabaseMutation, DeleteDocumentMutation, DeleteFolderMutation, DeleteInsightMutation, DeleteInsightsMutation, DeleteIntegrationMutation, DeleteReportMutation, DeleteTableMutation, DevAccessTokenOutput, DexieLiveQueryRef, DisconnectIntegrationMutation, DismissPulseEventMutation, Document, DocumentCatalog, DocumentCatalogConnection, DocumentCatalogOrderByRelevanceFieldEnum, DocumentCatalogQuery, DocumentCatalogSubBuilder, DocumentCatalog_FormatQuery, DocumentCatalogsQuery, DocumentConnection, DocumentContent, DocumentFormat, DocumentOrderByRelevanceFieldEnum, DocumentQuery, DocumentSubBuilder, Document_ContentsQuery, Document_FileQuery, Document_FormatQuery, Document_Format_CatalogQuery, Document_TablesQuery, DocumentsQuery, DvinaDatabase, DvinaError, DvinaModel, DvinaQueryRef, DvinaRequest, DvinaSdk, DvinaSdkOptions, EntitlementTier, ExportQuery, ExportWithInsightIdQuery, Feedback, FeedbackOrderByRelevanceFieldEnum, FeedbackType, FetchOptions, File, FileMetaQuery, FileModel, FileOrderByRelevanceFieldEnum, FileQuery, FileUrlsQuery, FinalContentEventOutput, FindFitTierQuery, Folder, FolderConnection, FolderOrderByRelevanceFieldEnum, FolderQuery, FoldersQuery, GenerateUploadUriMutation, GetCapabilityQuery, GetDevAccessTokenQuery, GetLimitQuery, GetRemainingQuery, GetTokenUsageByModelQuery, GetTokenUsageHistoryQuery, GetTokenUsageStatusQuery, GetTokenUsageStatus_WindowsQuery, GetTokenUsageStatus_Windows_DayQuery, GetTokenUsageStatus_Windows_FiveHourQuery, GetTokenUsageStatus_Windows_WeekQuery, GetUsageQuery, IndexContentObject, IndexType, Insight, InsightConnection, InsightOrderByRelevanceFieldEnum, InsightQuery, InsightSubBuilder, Insight_ChatQuery, Insight_ReportMembersQuery, Insight_ReportsQuery, InsightsQuery, Integration, IntegrationCatalog, IntegrationCatalogConnection, IntegrationCatalogOrderByRelevanceFieldEnum, IntegrationCatalogQuery, IntegrationCatalogSubBuilder, IntegrationCatalogToolsQuery, IntegrationCatalog_ProviderQuery, IntegrationCatalogsQuery, IntegrationConnection, IntegrationOrderByRelevanceFieldEnum, IntegrationProvider, IntegrationQuery, IntegrationStatus, IntegrationSubBuilder, Integration_ProviderQuery, Integration_Provider_CatalogQuery, IntegrationsQuery, Interpretation, InterpretationConnection, InterpretationOrderByRelevanceFieldEnum, InterpretationType, InterpretationsQuery, Invocation, LimitType, MUTATION_CACHE_RULES, MappedDvinaQueryRef, MarkPulseEventSeenMutation, McpAuthPhase, McpAuthUpdateModel, McpAuthUpdatesSubscription, McpClientInformation, McpCodeVerifier, McpServer, McpTokens, McpTool, MessageEndEventOutput, MessageStartEventOutput, ModelTokenUsage, Notification, NotificationCategory, NotificationConnection, NotificationOrderByRelevanceFieldEnum, NotificationPriority, NotificationQuery, NotificationStatus, NotificationsByReferenceQuery, NotificationsQuery, NullsOrder, PRIMARY_KEY_CONFIG, Presentation, PrivacyStats, PrivacyStatsQuery, PulseAppSummaryModel, PulseAppSummaryQuery, PulseEvent, PulseEventConnection, PulseEventKind, PulseEventOrderByRelevanceFieldEnum, PulseEventPriority, PulseEventQuery, PulseEventStatsModel, PulseEventStatsQuery, PulseEventStatus, PulseEventSubBuilder, PulseEvent_IntegrationQuery, PulseEvent_Integration_ProviderQuery, PulseEventsQuery, PulseTriggerSettingModel, PulseTriggerSettingsQuery, QueryMode, QueryQuery, QueryWithInsightIdQuery, QueryWithMessageIdQuery, ReanalyzeDocumentMutation, ReasoningEventOutput, RefineMindInstructionMutation, RefreshDatabaseSchemaMutation, ReinterpretSourceMutation, ReinterpretSourcesOfuserMutation, Relation, RelationType, RelocateInsightMutation, RemoveInsightFromReportMutation, Report, ReportConnection, ReportMember, ReportMemberSize, ReportOrderByRelevanceFieldEnum, ReportQuery, ReportSubBuilder, Report_InsightsQuery, Report_LayoutQuery, ReportsQuery, Request, ResetWorkspaceMutation, ResolvePulseEventMutation, ResolvedFileUrl, ScheduleWorkspaceDeletionMutation, SearchQuery, SendMessageModel, SendMessageStreamSubscription, SetDatabasePrimaryKeyMutation, SortOrder, StreamMessageContentOutput, StreamMessageOutput, SyncEngine, SyncEvent, TABLE_TO_TYPENAME, TYPENAME_TO_TABLE, Table, TableConnection, TableOrderByRelevanceFieldEnum, TableQuery, TableStatus, TableSubBuilder, Table_DatabaseQuery, Table_Database_EngineQuery, Table_DocumentQuery, Table_Document_ContentsQuery, Table_Document_FileQuery, Table_Document_FormatQuery, Table_FromRelationsQuery, Table_ToRelationsQuery, TablesQuery, TextBlockEventOutput, TextDeltaEventOutput, TokenUsage, TokenUsageLimit, TokenUsageUpdatesSubscription, ToolInputDeltaEventOutput, ToolResultArtifactOutput, ToolResultEventOutput, ToolStartEventOutput, UpdateAgentMutation, UpdateChatMutation, UpdateDatabaseMutation, UpdateDocumentMutation, UpdateFolderMutation, UpdateInsightInReportMutation, UpdateInsightMutation, UpdateInterpMutation, UpdatePulseTriggerMutation, UpdateReportMutation, UpdateTableMutation, type UploadOptions, type UploadProgressEvent, type UploadResult, UsageHistoryGranularity, UsageMetaOutput, UsageStatus, UsageWindowsStatusType, WindowDetailType, WithIncludes, WorkspaceDeleteSchedule, WorkspaceDeletionScheduleQuery, type WsTransport, type WsTransportOptions, createLazySyncEngine, createWsTransport, reconstructConnectionNodes, reconstructEntity, uploadFile };
|