@dvina/sdk 4.0.6 → 4.0.35
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-ELTXQJUU.js +4 -0
- package/dist/{_generated_documents-AODD423G.js.map → _generated_documents-ELTXQJUU.js.map} +1 -1
- package/dist/{_generated_documents-HTHWTLGT.cjs → _generated_documents-ZGDAJYZQ.cjs} +638 -422
- package/dist/{_generated_documents-HTHWTLGT.cjs.map → _generated_documents-ZGDAJYZQ.cjs.map} +1 -1
- package/dist/adapters/angular/index.cjs +4 -4
- package/dist/adapters/angular/index.js +2 -2
- package/dist/{chunk-HHR27PDE.js → chunk-B6DO72PH.js} +1050 -44
- package/dist/chunk-B6DO72PH.js.map +1 -0
- package/dist/{chunk-2SDQPYT6.js → chunk-E2BA2ELL.js} +140 -37
- package/dist/chunk-E2BA2ELL.js.map +1 -0
- package/dist/{chunk-5HODZTE2.cjs → chunk-LQFZEQHL.cjs} +1511 -466
- package/dist/chunk-LQFZEQHL.cjs.map +1 -0
- package/dist/{chunk-57QJNKRV.cjs → chunk-ZFR7CX4F.cjs} +193 -36
- package/dist/chunk-ZFR7CX4F.cjs.map +1 -0
- package/dist/index.cjs +498 -314
- package/dist/index.d.cts +759 -1
- package/dist/index.d.ts +759 -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.ts
CHANGED
|
@@ -789,6 +789,7 @@ type ChatCreateInput = {
|
|
|
789
789
|
insight?: InputMaybe<InsightCreateNestedOneWithoutChatInput>;
|
|
790
790
|
messages?: InputMaybe<ChatMessageCreateNestedManyWithoutChatInput>;
|
|
791
791
|
name: Scalars['String'];
|
|
792
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
792
793
|
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
793
794
|
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
794
795
|
};
|
|
@@ -826,6 +827,7 @@ type ChatCreateWithoutArtifactsInput = {
|
|
|
826
827
|
insight?: InputMaybe<InsightCreateNestedOneWithoutChatInput>;
|
|
827
828
|
messages?: InputMaybe<ChatMessageCreateNestedManyWithoutChatInput>;
|
|
828
829
|
name: Scalars['String'];
|
|
830
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
829
831
|
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
830
832
|
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
831
833
|
};
|
|
@@ -836,6 +838,7 @@ type ChatCreateWithoutInsightInput = {
|
|
|
836
838
|
id?: InputMaybe<Scalars['String']>;
|
|
837
839
|
messages?: InputMaybe<ChatMessageCreateNestedManyWithoutChatInput>;
|
|
838
840
|
name: Scalars['String'];
|
|
841
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
839
842
|
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
840
843
|
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
841
844
|
};
|
|
@@ -846,9 +849,21 @@ type ChatCreateWithoutMessagesInput = {
|
|
|
846
849
|
id?: InputMaybe<Scalars['String']>;
|
|
847
850
|
insight?: InputMaybe<InsightCreateNestedOneWithoutChatInput>;
|
|
848
851
|
name: Scalars['String'];
|
|
852
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
849
853
|
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
850
854
|
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
851
855
|
};
|
|
856
|
+
type ChatImportExecuteInput = {
|
|
857
|
+
files: Array<ChatImportFileInput>;
|
|
858
|
+
skipDuplicates?: Scalars['Boolean'];
|
|
859
|
+
};
|
|
860
|
+
type ChatImportFileInput = {
|
|
861
|
+
content: Scalars['String'];
|
|
862
|
+
path: Scalars['String'];
|
|
863
|
+
};
|
|
864
|
+
type ChatImportPreviewInput = {
|
|
865
|
+
files: Array<ChatImportFileInput>;
|
|
866
|
+
};
|
|
852
867
|
type ChatListRelationFilter = {
|
|
853
868
|
every?: InputMaybe<ChatWhereInput>;
|
|
854
869
|
none?: InputMaybe<ChatWhereInput>;
|
|
@@ -858,6 +873,7 @@ type ChatMessageCreateManyChatInput = {
|
|
|
858
873
|
actions?: InputMaybe<Scalars['JSON']>;
|
|
859
874
|
from: ChatMessageFromEnum;
|
|
860
875
|
id?: InputMaybe<Scalars['String']>;
|
|
876
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
861
877
|
sentAt?: InputMaybe<Scalars['DateTime']>;
|
|
862
878
|
};
|
|
863
879
|
type ChatMessageCreateManyChatInputEnvelope = {
|
|
@@ -899,6 +915,7 @@ type ChatMessageCreateWithoutArtifactsInput = {
|
|
|
899
915
|
feedback?: InputMaybe<FeedbackCreateNestedOneWithoutChatMessageInput>;
|
|
900
916
|
from: ChatMessageFromEnum;
|
|
901
917
|
id?: InputMaybe<Scalars['String']>;
|
|
918
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
902
919
|
sentAt?: InputMaybe<Scalars['DateTime']>;
|
|
903
920
|
};
|
|
904
921
|
type ChatMessageCreateWithoutChatInput = {
|
|
@@ -908,6 +925,7 @@ type ChatMessageCreateWithoutChatInput = {
|
|
|
908
925
|
feedback?: InputMaybe<FeedbackCreateNestedOneWithoutChatMessageInput>;
|
|
909
926
|
from: ChatMessageFromEnum;
|
|
910
927
|
id?: InputMaybe<Scalars['String']>;
|
|
928
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
911
929
|
sentAt?: InputMaybe<Scalars['DateTime']>;
|
|
912
930
|
};
|
|
913
931
|
type ChatMessageCreateWithoutFeedbackInput = {
|
|
@@ -917,6 +935,7 @@ type ChatMessageCreateWithoutFeedbackInput = {
|
|
|
917
935
|
contents?: InputMaybe<ContentBlockCreateNestedManyWithoutChatMessageInput>;
|
|
918
936
|
from: ChatMessageFromEnum;
|
|
919
937
|
id?: InputMaybe<Scalars['String']>;
|
|
938
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
920
939
|
sentAt?: InputMaybe<Scalars['DateTime']>;
|
|
921
940
|
};
|
|
922
941
|
declare enum ChatMessageFromEnum {
|
|
@@ -957,6 +976,7 @@ type ChatMessageOrderByWithRelationInput = {
|
|
|
957
976
|
feedback?: InputMaybe<FeedbackOrderByWithRelationInput>;
|
|
958
977
|
from?: InputMaybe<SortOrder>;
|
|
959
978
|
id?: InputMaybe<SortOrder>;
|
|
979
|
+
originMeta?: InputMaybe<SortOrderInput>;
|
|
960
980
|
sentAt?: InputMaybe<SortOrder>;
|
|
961
981
|
};
|
|
962
982
|
type ChatMessageRelationFilter = {
|
|
@@ -971,12 +991,14 @@ type ChatMessageScalarWhereInput = {
|
|
|
971
991
|
chatId?: InputMaybe<StringFilter>;
|
|
972
992
|
from?: InputMaybe<EnumChatMessageFromEnumFilter>;
|
|
973
993
|
id?: InputMaybe<StringFilter>;
|
|
994
|
+
originMeta?: InputMaybe<JsonNullableFilter>;
|
|
974
995
|
sentAt?: InputMaybe<DateTimeFilter>;
|
|
975
996
|
};
|
|
976
997
|
type ChatMessageUpdateManyMutationInput = {
|
|
977
998
|
actions?: InputMaybe<Scalars['JSON']>;
|
|
978
999
|
from?: InputMaybe<ChatMessageFromEnum>;
|
|
979
1000
|
id?: InputMaybe<Scalars['String']>;
|
|
1001
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
980
1002
|
sentAt?: InputMaybe<Scalars['DateTime']>;
|
|
981
1003
|
};
|
|
982
1004
|
type ChatMessageUpdateManyWithWhereWithoutChatInput = {
|
|
@@ -1020,6 +1042,7 @@ type ChatMessageUpdateWithoutArtifactsInput = {
|
|
|
1020
1042
|
feedback?: InputMaybe<FeedbackUpdateOneWithoutChatMessageNestedInput>;
|
|
1021
1043
|
from?: InputMaybe<ChatMessageFromEnum>;
|
|
1022
1044
|
id?: InputMaybe<Scalars['String']>;
|
|
1045
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
1023
1046
|
sentAt?: InputMaybe<Scalars['DateTime']>;
|
|
1024
1047
|
};
|
|
1025
1048
|
type ChatMessageUpdateWithoutChatInput = {
|
|
@@ -1029,6 +1052,7 @@ type ChatMessageUpdateWithoutChatInput = {
|
|
|
1029
1052
|
feedback?: InputMaybe<FeedbackUpdateOneWithoutChatMessageNestedInput>;
|
|
1030
1053
|
from?: InputMaybe<ChatMessageFromEnum>;
|
|
1031
1054
|
id?: InputMaybe<Scalars['String']>;
|
|
1055
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
1032
1056
|
sentAt?: InputMaybe<Scalars['DateTime']>;
|
|
1033
1057
|
};
|
|
1034
1058
|
type ChatMessageUpsertWithWhereUniqueWithoutChatInput = {
|
|
@@ -1053,6 +1077,7 @@ type ChatMessageWhereInput = {
|
|
|
1053
1077
|
feedback?: InputMaybe<FeedbackNullableRelationFilter>;
|
|
1054
1078
|
from?: InputMaybe<EnumChatMessageFromEnumFilter>;
|
|
1055
1079
|
id?: InputMaybe<StringFilter>;
|
|
1080
|
+
originMeta?: InputMaybe<JsonNullableFilter>;
|
|
1056
1081
|
sentAt?: InputMaybe<DateTimeFilter>;
|
|
1057
1082
|
};
|
|
1058
1083
|
type ChatMessageWhereUniqueInput = {
|
|
@@ -1067,6 +1092,7 @@ type ChatMessageWhereUniqueInput = {
|
|
|
1067
1092
|
feedback?: InputMaybe<FeedbackNullableRelationFilter>;
|
|
1068
1093
|
from?: InputMaybe<EnumChatMessageFromEnumFilter>;
|
|
1069
1094
|
id?: InputMaybe<Scalars['String']>;
|
|
1095
|
+
originMeta?: InputMaybe<JsonNullableFilter>;
|
|
1070
1096
|
sentAt?: InputMaybe<DateTimeFilter>;
|
|
1071
1097
|
};
|
|
1072
1098
|
type ChatNullableRelationFilter = {
|
|
@@ -1099,6 +1125,7 @@ type ChatOrderByWithRelationInput = {
|
|
|
1099
1125
|
insightId?: InputMaybe<SortOrderInput>;
|
|
1100
1126
|
messages?: InputMaybe<ChatMessageOrderByRelationAggregateInput>;
|
|
1101
1127
|
name?: InputMaybe<SortOrder>;
|
|
1128
|
+
originMeta?: InputMaybe<SortOrderInput>;
|
|
1102
1129
|
piiMaskRules?: InputMaybe<SortOrderInput>;
|
|
1103
1130
|
piiSanitizationEnabled?: InputMaybe<SortOrder>;
|
|
1104
1131
|
updatedAt?: InputMaybe<SortOrder>;
|
|
@@ -1107,6 +1134,18 @@ type ChatRelationFilter = {
|
|
|
1107
1134
|
is?: InputMaybe<ChatWhereInput>;
|
|
1108
1135
|
isNot?: InputMaybe<ChatWhereInput>;
|
|
1109
1136
|
};
|
|
1137
|
+
declare enum ChatSourceImportFidelityEnum {
|
|
1138
|
+
Exact = "Exact",
|
|
1139
|
+
Normalized = "Normalized"
|
|
1140
|
+
}
|
|
1141
|
+
declare enum ChatSourceImportModeEnum {
|
|
1142
|
+
Full = "Full"
|
|
1143
|
+
}
|
|
1144
|
+
declare enum ChatSourceProviderEnum {
|
|
1145
|
+
ChatGpt = "ChatGpt",
|
|
1146
|
+
Claude = "Claude",
|
|
1147
|
+
Grok = "Grok"
|
|
1148
|
+
}
|
|
1110
1149
|
type ChatUpdateInput = {
|
|
1111
1150
|
agents?: InputMaybe<AgentUpdateManyWithoutChatsNestedInput>;
|
|
1112
1151
|
artifacts?: InputMaybe<ArtifactUpdateManyWithoutChatNestedInput>;
|
|
@@ -1115,6 +1154,7 @@ type ChatUpdateInput = {
|
|
|
1115
1154
|
insight?: InputMaybe<InsightUpdateOneWithoutChatNestedInput>;
|
|
1116
1155
|
messages?: InputMaybe<ChatMessageUpdateManyWithoutChatNestedInput>;
|
|
1117
1156
|
name?: InputMaybe<Scalars['String']>;
|
|
1157
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
1118
1158
|
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
1119
1159
|
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1120
1160
|
};
|
|
@@ -1162,6 +1202,7 @@ type ChatUpdateWithoutArtifactsInput = {
|
|
|
1162
1202
|
insight?: InputMaybe<InsightUpdateOneWithoutChatNestedInput>;
|
|
1163
1203
|
messages?: InputMaybe<ChatMessageUpdateManyWithoutChatNestedInput>;
|
|
1164
1204
|
name?: InputMaybe<Scalars['String']>;
|
|
1205
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
1165
1206
|
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
1166
1207
|
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1167
1208
|
};
|
|
@@ -1172,6 +1213,7 @@ type ChatUpdateWithoutInsightInput = {
|
|
|
1172
1213
|
id?: InputMaybe<Scalars['String']>;
|
|
1173
1214
|
messages?: InputMaybe<ChatMessageUpdateManyWithoutChatNestedInput>;
|
|
1174
1215
|
name?: InputMaybe<Scalars['String']>;
|
|
1216
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
1175
1217
|
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
1176
1218
|
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1177
1219
|
};
|
|
@@ -1182,6 +1224,7 @@ type ChatUpdateWithoutMessagesInput = {
|
|
|
1182
1224
|
id?: InputMaybe<Scalars['String']>;
|
|
1183
1225
|
insight?: InputMaybe<InsightUpdateOneWithoutChatNestedInput>;
|
|
1184
1226
|
name?: InputMaybe<Scalars['String']>;
|
|
1227
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
1185
1228
|
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
1186
1229
|
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1187
1230
|
};
|
|
@@ -1213,6 +1256,7 @@ type ChatWhereInput = {
|
|
|
1213
1256
|
insightId?: InputMaybe<StringNullableFilter>;
|
|
1214
1257
|
messages?: InputMaybe<ChatMessageListRelationFilter>;
|
|
1215
1258
|
name?: InputMaybe<StringFilter>;
|
|
1259
|
+
originMeta?: InputMaybe<JsonNullableFilter>;
|
|
1216
1260
|
piiMaskRules?: InputMaybe<JsonNullableFilter>;
|
|
1217
1261
|
piiSanitizationEnabled?: InputMaybe<BoolFilter>;
|
|
1218
1262
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
@@ -1230,6 +1274,7 @@ type ChatWhereUniqueInput = {
|
|
|
1230
1274
|
insightId?: InputMaybe<Scalars['String']>;
|
|
1231
1275
|
messages?: InputMaybe<ChatMessageListRelationFilter>;
|
|
1232
1276
|
name?: InputMaybe<StringFilter>;
|
|
1277
|
+
originMeta?: InputMaybe<JsonNullableFilter>;
|
|
1233
1278
|
piiMaskRules?: InputMaybe<JsonNullableFilter>;
|
|
1234
1279
|
piiSanitizationEnabled?: InputMaybe<BoolFilter>;
|
|
1235
1280
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
@@ -1756,6 +1801,24 @@ type EnumPresentationFilter = {
|
|
|
1756
1801
|
not?: InputMaybe<NestedEnumPresentationFilter>;
|
|
1757
1802
|
notIn?: InputMaybe<Array<Presentation>>;
|
|
1758
1803
|
};
|
|
1804
|
+
type EnumPulseEventKindFilter = {
|
|
1805
|
+
equals?: InputMaybe<PulseEventKind>;
|
|
1806
|
+
in?: InputMaybe<Array<PulseEventKind>>;
|
|
1807
|
+
not?: InputMaybe<NestedEnumPulseEventKindFilter>;
|
|
1808
|
+
notIn?: InputMaybe<Array<PulseEventKind>>;
|
|
1809
|
+
};
|
|
1810
|
+
type EnumPulseEventPriorityFilter = {
|
|
1811
|
+
equals?: InputMaybe<PulseEventPriority>;
|
|
1812
|
+
in?: InputMaybe<Array<PulseEventPriority>>;
|
|
1813
|
+
not?: InputMaybe<NestedEnumPulseEventPriorityFilter>;
|
|
1814
|
+
notIn?: InputMaybe<Array<PulseEventPriority>>;
|
|
1815
|
+
};
|
|
1816
|
+
type EnumPulseEventStatusFilter = {
|
|
1817
|
+
equals?: InputMaybe<PulseEventStatus>;
|
|
1818
|
+
in?: InputMaybe<Array<PulseEventStatus>>;
|
|
1819
|
+
not?: InputMaybe<NestedEnumPulseEventStatusFilter>;
|
|
1820
|
+
notIn?: InputMaybe<Array<PulseEventStatus>>;
|
|
1821
|
+
};
|
|
1759
1822
|
type EnumRelationTypeFilter = {
|
|
1760
1823
|
equals?: InputMaybe<RelationType>;
|
|
1761
1824
|
in?: InputMaybe<Array<RelationType>>;
|
|
@@ -1961,6 +2024,7 @@ type FolderCreateInput = {
|
|
|
1961
2024
|
};
|
|
1962
2025
|
declare enum FolderOrderByRelevanceFieldEnum {
|
|
1963
2026
|
Id = "id",
|
|
2027
|
+
ParentPath = "parentPath",
|
|
1964
2028
|
Path = "path",
|
|
1965
2029
|
UserId = "userId",
|
|
1966
2030
|
WorkspaceId = "workspaceId"
|
|
@@ -1974,6 +2038,7 @@ type FolderOrderByWithRelationInput = {
|
|
|
1974
2038
|
_relevance?: InputMaybe<FolderOrderByRelevanceInput>;
|
|
1975
2039
|
createdAt?: InputMaybe<SortOrder>;
|
|
1976
2040
|
id?: InputMaybe<SortOrder>;
|
|
2041
|
+
parentPath?: InputMaybe<SortOrderInput>;
|
|
1977
2042
|
path?: InputMaybe<SortOrder>;
|
|
1978
2043
|
updatedAt?: InputMaybe<SortOrder>;
|
|
1979
2044
|
};
|
|
@@ -1987,6 +2052,7 @@ type FolderWhereInput = {
|
|
|
1987
2052
|
OR?: InputMaybe<Array<FolderWhereInput>>;
|
|
1988
2053
|
createdAt?: InputMaybe<DateTimeFilter>;
|
|
1989
2054
|
id?: InputMaybe<StringFilter>;
|
|
2055
|
+
parentPath?: InputMaybe<StringNullableFilter>;
|
|
1990
2056
|
path?: InputMaybe<StringFilter>;
|
|
1991
2057
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
1992
2058
|
};
|
|
@@ -1996,6 +2062,7 @@ type FolderWhereUniqueInput = {
|
|
|
1996
2062
|
OR?: InputMaybe<Array<FolderWhereInput>>;
|
|
1997
2063
|
createdAt?: InputMaybe<DateTimeFilter>;
|
|
1998
2064
|
id?: InputMaybe<Scalars['String']>;
|
|
2065
|
+
parentPath?: InputMaybe<StringNullableFilter>;
|
|
1999
2066
|
path?: InputMaybe<StringFilter>;
|
|
2000
2067
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
2001
2068
|
workspaceId_userId_path?: InputMaybe<FolderWorkspaceIdUserIdPathCompoundUniqueInput>;
|
|
@@ -2358,6 +2425,8 @@ type IntegrationCatalogWhereInput = {
|
|
|
2358
2425
|
supportUrl?: InputMaybe<StringNullableFilter>;
|
|
2359
2426
|
};
|
|
2360
2427
|
declare enum IntegrationOrderByRelevanceFieldEnum {
|
|
2428
|
+
ComposioAuthConfigId = "composioAuthConfigId",
|
|
2429
|
+
ComposioConnectedAccountId = "composioConnectedAccountId",
|
|
2361
2430
|
Id = "id",
|
|
2362
2431
|
ProviderKey = "providerKey",
|
|
2363
2432
|
UserId = "userId",
|
|
@@ -2370,6 +2439,7 @@ type IntegrationOrderByRelevanceInput = {
|
|
|
2370
2439
|
};
|
|
2371
2440
|
type IntegrationOrderByWithRelationInput = {
|
|
2372
2441
|
_relevance?: InputMaybe<IntegrationOrderByRelevanceInput>;
|
|
2442
|
+
connectedAt?: InputMaybe<SortOrderInput>;
|
|
2373
2443
|
createdAt?: InputMaybe<SortOrder>;
|
|
2374
2444
|
id?: InputMaybe<SortOrder>;
|
|
2375
2445
|
providerKey?: InputMaybe<SortOrder>;
|
|
@@ -2386,6 +2456,7 @@ type IntegrationWhereInput = {
|
|
|
2386
2456
|
AND?: InputMaybe<Array<IntegrationWhereInput>>;
|
|
2387
2457
|
NOT?: InputMaybe<Array<IntegrationWhereInput>>;
|
|
2388
2458
|
OR?: InputMaybe<Array<IntegrationWhereInput>>;
|
|
2459
|
+
connectedAt?: InputMaybe<DateTimeNullableFilter>;
|
|
2389
2460
|
createdAt?: InputMaybe<DateTimeFilter>;
|
|
2390
2461
|
id?: InputMaybe<StringFilter>;
|
|
2391
2462
|
providerKey?: InputMaybe<StringFilter>;
|
|
@@ -2577,6 +2648,24 @@ type NestedEnumPresentationFilter = {
|
|
|
2577
2648
|
not?: InputMaybe<NestedEnumPresentationFilter>;
|
|
2578
2649
|
notIn?: InputMaybe<Array<Presentation>>;
|
|
2579
2650
|
};
|
|
2651
|
+
type NestedEnumPulseEventKindFilter = {
|
|
2652
|
+
equals?: InputMaybe<PulseEventKind>;
|
|
2653
|
+
in?: InputMaybe<Array<PulseEventKind>>;
|
|
2654
|
+
not?: InputMaybe<NestedEnumPulseEventKindFilter>;
|
|
2655
|
+
notIn?: InputMaybe<Array<PulseEventKind>>;
|
|
2656
|
+
};
|
|
2657
|
+
type NestedEnumPulseEventPriorityFilter = {
|
|
2658
|
+
equals?: InputMaybe<PulseEventPriority>;
|
|
2659
|
+
in?: InputMaybe<Array<PulseEventPriority>>;
|
|
2660
|
+
not?: InputMaybe<NestedEnumPulseEventPriorityFilter>;
|
|
2661
|
+
notIn?: InputMaybe<Array<PulseEventPriority>>;
|
|
2662
|
+
};
|
|
2663
|
+
type NestedEnumPulseEventStatusFilter = {
|
|
2664
|
+
equals?: InputMaybe<PulseEventStatus>;
|
|
2665
|
+
in?: InputMaybe<Array<PulseEventStatus>>;
|
|
2666
|
+
not?: InputMaybe<NestedEnumPulseEventStatusFilter>;
|
|
2667
|
+
notIn?: InputMaybe<Array<PulseEventStatus>>;
|
|
2668
|
+
};
|
|
2580
2669
|
type NestedEnumRelationTypeFilter = {
|
|
2581
2670
|
equals?: InputMaybe<RelationType>;
|
|
2582
2671
|
in?: InputMaybe<Array<RelationType>>;
|
|
@@ -2710,6 +2799,97 @@ declare enum Presentation {
|
|
|
2710
2799
|
Table = "Table",
|
|
2711
2800
|
VerticalBar = "VerticalBar"
|
|
2712
2801
|
}
|
|
2802
|
+
declare enum PulseEventKind {
|
|
2803
|
+
Activity = "activity",
|
|
2804
|
+
NeedsAction = "needs_action",
|
|
2805
|
+
Reconnect = "reconnect",
|
|
2806
|
+
Suggestion = "suggestion",
|
|
2807
|
+
Warning = "warning"
|
|
2808
|
+
}
|
|
2809
|
+
declare enum PulseEventOrderByRelevanceFieldEnum {
|
|
2810
|
+
DedupeKey = "dedupeKey",
|
|
2811
|
+
Id = "id",
|
|
2812
|
+
IntegrationId = "integrationId",
|
|
2813
|
+
Message = "message",
|
|
2814
|
+
ProviderKey = "providerKey",
|
|
2815
|
+
RemoteEventId = "remoteEventId",
|
|
2816
|
+
RemoteLogId = "remoteLogId",
|
|
2817
|
+
RemoteTriggerId = "remoteTriggerId",
|
|
2818
|
+
Summary = "summary",
|
|
2819
|
+
Title = "title",
|
|
2820
|
+
TriggerSlug = "triggerSlug",
|
|
2821
|
+
UserId = "userId",
|
|
2822
|
+
WorkspaceId = "workspaceId"
|
|
2823
|
+
}
|
|
2824
|
+
type PulseEventOrderByRelevanceInput = {
|
|
2825
|
+
fields: Array<PulseEventOrderByRelevanceFieldEnum>;
|
|
2826
|
+
search: Scalars['String'];
|
|
2827
|
+
sort: SortOrder;
|
|
2828
|
+
};
|
|
2829
|
+
type PulseEventOrderByWithRelationInput = {
|
|
2830
|
+
_relevance?: InputMaybe<PulseEventOrderByRelevanceInput>;
|
|
2831
|
+
acknowledgedAt?: InputMaybe<SortOrderInput>;
|
|
2832
|
+
actions?: InputMaybe<SortOrderInput>;
|
|
2833
|
+
createdAt?: InputMaybe<SortOrder>;
|
|
2834
|
+
dedupeKey?: InputMaybe<SortOrderInput>;
|
|
2835
|
+
dismissedAt?: InputMaybe<SortOrderInput>;
|
|
2836
|
+
id?: InputMaybe<SortOrder>;
|
|
2837
|
+
integrationId?: InputMaybe<SortOrder>;
|
|
2838
|
+
kind?: InputMaybe<SortOrder>;
|
|
2839
|
+
message?: InputMaybe<SortOrderInput>;
|
|
2840
|
+
payload?: InputMaybe<SortOrderInput>;
|
|
2841
|
+
priority?: InputMaybe<SortOrder>;
|
|
2842
|
+
providerKey?: InputMaybe<SortOrder>;
|
|
2843
|
+
remoteEventId?: InputMaybe<SortOrder>;
|
|
2844
|
+
remoteLogId?: InputMaybe<SortOrderInput>;
|
|
2845
|
+
remoteTriggerId?: InputMaybe<SortOrderInput>;
|
|
2846
|
+
resolvedAt?: InputMaybe<SortOrderInput>;
|
|
2847
|
+
seenAt?: InputMaybe<SortOrderInput>;
|
|
2848
|
+
status?: InputMaybe<SortOrder>;
|
|
2849
|
+
summary?: InputMaybe<SortOrderInput>;
|
|
2850
|
+
title?: InputMaybe<SortOrder>;
|
|
2851
|
+
triggerSlug?: InputMaybe<SortOrder>;
|
|
2852
|
+
updatedAt?: InputMaybe<SortOrder>;
|
|
2853
|
+
};
|
|
2854
|
+
declare enum PulseEventPriority {
|
|
2855
|
+
High = "high",
|
|
2856
|
+
Low = "low",
|
|
2857
|
+
Medium = "medium"
|
|
2858
|
+
}
|
|
2859
|
+
declare enum PulseEventStatus {
|
|
2860
|
+
Acknowledged = "acknowledged",
|
|
2861
|
+
Dismissed = "dismissed",
|
|
2862
|
+
Resolved = "resolved",
|
|
2863
|
+
Seen = "seen",
|
|
2864
|
+
Unread = "unread"
|
|
2865
|
+
}
|
|
2866
|
+
type PulseEventWhereInput = {
|
|
2867
|
+
AND?: InputMaybe<Array<PulseEventWhereInput>>;
|
|
2868
|
+
NOT?: InputMaybe<Array<PulseEventWhereInput>>;
|
|
2869
|
+
OR?: InputMaybe<Array<PulseEventWhereInput>>;
|
|
2870
|
+
acknowledgedAt?: InputMaybe<DateTimeNullableFilter>;
|
|
2871
|
+
actions?: InputMaybe<JsonNullableFilter>;
|
|
2872
|
+
createdAt?: InputMaybe<DateTimeFilter>;
|
|
2873
|
+
dedupeKey?: InputMaybe<StringNullableFilter>;
|
|
2874
|
+
dismissedAt?: InputMaybe<DateTimeNullableFilter>;
|
|
2875
|
+
id?: InputMaybe<StringFilter>;
|
|
2876
|
+
integrationId?: InputMaybe<StringFilter>;
|
|
2877
|
+
kind?: InputMaybe<EnumPulseEventKindFilter>;
|
|
2878
|
+
message?: InputMaybe<StringNullableFilter>;
|
|
2879
|
+
payload?: InputMaybe<JsonNullableFilter>;
|
|
2880
|
+
priority?: InputMaybe<EnumPulseEventPriorityFilter>;
|
|
2881
|
+
providerKey?: InputMaybe<StringFilter>;
|
|
2882
|
+
remoteEventId?: InputMaybe<StringFilter>;
|
|
2883
|
+
remoteLogId?: InputMaybe<StringNullableFilter>;
|
|
2884
|
+
remoteTriggerId?: InputMaybe<StringNullableFilter>;
|
|
2885
|
+
resolvedAt?: InputMaybe<DateTimeNullableFilter>;
|
|
2886
|
+
seenAt?: InputMaybe<DateTimeNullableFilter>;
|
|
2887
|
+
status?: InputMaybe<EnumPulseEventStatusFilter>;
|
|
2888
|
+
summary?: InputMaybe<StringNullableFilter>;
|
|
2889
|
+
title?: InputMaybe<StringFilter>;
|
|
2890
|
+
triggerSlug?: InputMaybe<StringFilter>;
|
|
2891
|
+
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
2892
|
+
};
|
|
2713
2893
|
declare enum QueryMode {
|
|
2714
2894
|
Default = "default",
|
|
2715
2895
|
Insensitive = "insensitive"
|
|
@@ -3458,6 +3638,11 @@ declare enum TokenUsageLimit {
|
|
|
3458
3638
|
Hard = "HARD",
|
|
3459
3639
|
Soft = "SOFT"
|
|
3460
3640
|
}
|
|
3641
|
+
type UpdatePulseTriggerInput = {
|
|
3642
|
+
enabled: Scalars['Boolean'];
|
|
3643
|
+
integrationId: Scalars['String'];
|
|
3644
|
+
slug: Scalars['String'];
|
|
3645
|
+
};
|
|
3461
3646
|
declare enum UsageHistoryGranularity {
|
|
3462
3647
|
Day = "DAY",
|
|
3463
3648
|
Month = "MONTH",
|
|
@@ -3579,6 +3764,7 @@ type ChatFragment = {
|
|
|
3579
3764
|
id: string;
|
|
3580
3765
|
insightId?: string | null;
|
|
3581
3766
|
name: string;
|
|
3767
|
+
originMeta?: any | null;
|
|
3582
3768
|
piiMaskRules?: any | null;
|
|
3583
3769
|
piiSanitizationEnabled: boolean;
|
|
3584
3770
|
updatedAt: string;
|
|
@@ -3597,6 +3783,7 @@ type ChatConnectionFragment = {
|
|
|
3597
3783
|
id: string;
|
|
3598
3784
|
insightId?: string | null;
|
|
3599
3785
|
name: string;
|
|
3786
|
+
originMeta?: any | null;
|
|
3600
3787
|
piiMaskRules?: any | null;
|
|
3601
3788
|
piiSanitizationEnabled: boolean;
|
|
3602
3789
|
updatedAt: string;
|
|
@@ -3613,12 +3800,42 @@ type ChatConnectionFragment = {
|
|
|
3613
3800
|
startCursor?: string | null;
|
|
3614
3801
|
};
|
|
3615
3802
|
};
|
|
3803
|
+
type ChatImportExecuteOutputFragment = {
|
|
3804
|
+
__typename: 'ChatImportExecuteOutput';
|
|
3805
|
+
archiveHash: string;
|
|
3806
|
+
createdChatCount: number;
|
|
3807
|
+
createdMessageCount: number;
|
|
3808
|
+
duplicateConversationCount: number;
|
|
3809
|
+
provider: ChatSourceProviderEnum;
|
|
3810
|
+
warnings: Array<string>;
|
|
3811
|
+
chats: Array<{
|
|
3812
|
+
__typename: 'ImportedChatSummaryOutput';
|
|
3813
|
+
chatId: string;
|
|
3814
|
+
externalConversationId: string;
|
|
3815
|
+
messageCount: number;
|
|
3816
|
+
name: string;
|
|
3817
|
+
provider: ChatSourceProviderEnum;
|
|
3818
|
+
}>;
|
|
3819
|
+
};
|
|
3820
|
+
type ChatImportPreviewOutputFragment = {
|
|
3821
|
+
__typename: 'ChatImportPreviewOutput';
|
|
3822
|
+
archiveHash: string;
|
|
3823
|
+
chatCount: number;
|
|
3824
|
+
duplicateConversationCount: number;
|
|
3825
|
+
fidelity: ChatSourceImportFidelityEnum;
|
|
3826
|
+
hasAttachments: boolean;
|
|
3827
|
+
messageCount: number;
|
|
3828
|
+
mode: ChatSourceImportModeEnum;
|
|
3829
|
+
provider: ChatSourceProviderEnum;
|
|
3830
|
+
warnings: Array<string>;
|
|
3831
|
+
};
|
|
3616
3832
|
type ChatMessageFragment = {
|
|
3617
3833
|
__typename: 'ChatMessage';
|
|
3618
3834
|
actions: any;
|
|
3619
3835
|
chatId: string;
|
|
3620
3836
|
from: ChatMessageFromEnum;
|
|
3621
3837
|
id: string;
|
|
3838
|
+
originMeta?: any | null;
|
|
3622
3839
|
sentAt: string;
|
|
3623
3840
|
chat: {
|
|
3624
3841
|
__typename?: 'Chat';
|
|
@@ -3654,6 +3871,7 @@ type ChatMessageConnectionFragment = {
|
|
|
3654
3871
|
chatId: string;
|
|
3655
3872
|
from: ChatMessageFromEnum;
|
|
3656
3873
|
id: string;
|
|
3874
|
+
originMeta?: any | null;
|
|
3657
3875
|
sentAt: string;
|
|
3658
3876
|
chat: {
|
|
3659
3877
|
__typename?: 'Chat';
|
|
@@ -3985,6 +4203,7 @@ type FinalContentEventOutputFragment = {
|
|
|
3985
4203
|
chatId: string;
|
|
3986
4204
|
from: ChatMessageFromEnum;
|
|
3987
4205
|
id: string;
|
|
4206
|
+
originMeta?: any | null;
|
|
3988
4207
|
sentAt: string;
|
|
3989
4208
|
contents?: Array<{
|
|
3990
4209
|
__typename: 'StreamMessageContentOutput';
|
|
@@ -4032,6 +4251,14 @@ type FolderConnectionFragment = {
|
|
|
4032
4251
|
startCursor?: string | null;
|
|
4033
4252
|
};
|
|
4034
4253
|
};
|
|
4254
|
+
type ImportedChatSummaryOutputFragment = {
|
|
4255
|
+
__typename: 'ImportedChatSummaryOutput';
|
|
4256
|
+
chatId: string;
|
|
4257
|
+
externalConversationId: string;
|
|
4258
|
+
messageCount: number;
|
|
4259
|
+
name: string;
|
|
4260
|
+
provider: ChatSourceProviderEnum;
|
|
4261
|
+
};
|
|
4035
4262
|
type IndexContentObjectFragment = {
|
|
4036
4263
|
__typename: 'IndexContentObject';
|
|
4037
4264
|
content: string;
|
|
@@ -4082,6 +4309,7 @@ type InsightConnectionFragment = {
|
|
|
4082
4309
|
};
|
|
4083
4310
|
type IntegrationFragment = {
|
|
4084
4311
|
__typename: 'Integration';
|
|
4312
|
+
connectedAt?: string | null;
|
|
4085
4313
|
createdAt: string;
|
|
4086
4314
|
id: string;
|
|
4087
4315
|
providerKey: string;
|
|
@@ -4140,6 +4368,7 @@ type IntegrationConnectionFragment = {
|
|
|
4140
4368
|
totalCount: number;
|
|
4141
4369
|
nodes?: Array<{
|
|
4142
4370
|
__typename: 'Integration';
|
|
4371
|
+
connectedAt?: string | null;
|
|
4143
4372
|
createdAt: string;
|
|
4144
4373
|
id: string;
|
|
4145
4374
|
providerKey: string;
|
|
@@ -4273,6 +4502,7 @@ type MessageStartEventOutputFragment = {
|
|
|
4273
4502
|
chatId: string;
|
|
4274
4503
|
from: ChatMessageFromEnum;
|
|
4275
4504
|
id: string;
|
|
4505
|
+
originMeta?: any | null;
|
|
4276
4506
|
sentAt: string;
|
|
4277
4507
|
contents?: Array<{
|
|
4278
4508
|
__typename: 'StreamMessageContentOutput';
|
|
@@ -4338,6 +4568,96 @@ type PrivacyStatsFragment = {
|
|
|
4338
4568
|
dataKeptAwayFromThirdParties?: number | null;
|
|
4339
4569
|
messagesProtectedFromTraining?: number | null;
|
|
4340
4570
|
};
|
|
4571
|
+
type PulseAppSummaryModelFragment = {
|
|
4572
|
+
__typename: 'PulseAppSummaryModel';
|
|
4573
|
+
activeTriggerCount: number;
|
|
4574
|
+
integrationId: string;
|
|
4575
|
+
providerKey?: string | null;
|
|
4576
|
+
};
|
|
4577
|
+
type PulseEventFragment = {
|
|
4578
|
+
__typename: 'PulseEvent';
|
|
4579
|
+
acknowledgedAt?: string | null;
|
|
4580
|
+
actions?: any | null;
|
|
4581
|
+
createdAt: string;
|
|
4582
|
+
dedupeKey?: string | null;
|
|
4583
|
+
dismissedAt?: string | null;
|
|
4584
|
+
id: string;
|
|
4585
|
+
integrationId: string;
|
|
4586
|
+
kind: PulseEventKind;
|
|
4587
|
+
message?: string | null;
|
|
4588
|
+
payload?: any | null;
|
|
4589
|
+
priority: PulseEventPriority;
|
|
4590
|
+
providerKey: string;
|
|
4591
|
+
remoteEventId: string;
|
|
4592
|
+
remoteLogId?: string | null;
|
|
4593
|
+
remoteTriggerId?: string | null;
|
|
4594
|
+
resolvedAt?: string | null;
|
|
4595
|
+
seenAt?: string | null;
|
|
4596
|
+
status: PulseEventStatus;
|
|
4597
|
+
summary?: string | null;
|
|
4598
|
+
title: string;
|
|
4599
|
+
triggerSlug: string;
|
|
4600
|
+
updatedAt: string;
|
|
4601
|
+
integration: {
|
|
4602
|
+
__typename?: 'Integration';
|
|
4603
|
+
id: string;
|
|
4604
|
+
};
|
|
4605
|
+
};
|
|
4606
|
+
type PulseEventConnectionFragment = {
|
|
4607
|
+
__typename: 'PulseEventConnection';
|
|
4608
|
+
totalCount: number;
|
|
4609
|
+
nodes?: Array<{
|
|
4610
|
+
__typename: 'PulseEvent';
|
|
4611
|
+
acknowledgedAt?: string | null;
|
|
4612
|
+
actions?: any | null;
|
|
4613
|
+
createdAt: string;
|
|
4614
|
+
dedupeKey?: string | null;
|
|
4615
|
+
dismissedAt?: string | null;
|
|
4616
|
+
id: string;
|
|
4617
|
+
integrationId: string;
|
|
4618
|
+
kind: PulseEventKind;
|
|
4619
|
+
message?: string | null;
|
|
4620
|
+
payload?: any | null;
|
|
4621
|
+
priority: PulseEventPriority;
|
|
4622
|
+
providerKey: string;
|
|
4623
|
+
remoteEventId: string;
|
|
4624
|
+
remoteLogId?: string | null;
|
|
4625
|
+
remoteTriggerId?: string | null;
|
|
4626
|
+
resolvedAt?: string | null;
|
|
4627
|
+
seenAt?: string | null;
|
|
4628
|
+
status: PulseEventStatus;
|
|
4629
|
+
summary?: string | null;
|
|
4630
|
+
title: string;
|
|
4631
|
+
triggerSlug: string;
|
|
4632
|
+
updatedAt: string;
|
|
4633
|
+
integration: {
|
|
4634
|
+
__typename?: 'Integration';
|
|
4635
|
+
id: string;
|
|
4636
|
+
};
|
|
4637
|
+
}> | null;
|
|
4638
|
+
pageInfo: {
|
|
4639
|
+
__typename?: 'PageInfo';
|
|
4640
|
+
endCursor?: string | null;
|
|
4641
|
+
hasNextPage: boolean;
|
|
4642
|
+
hasPreviousPage: boolean;
|
|
4643
|
+
startCursor?: string | null;
|
|
4644
|
+
};
|
|
4645
|
+
};
|
|
4646
|
+
type PulseEventStatsModelFragment = {
|
|
4647
|
+
__typename: 'PulseEventStatsModel';
|
|
4648
|
+
highPriorityCount: number;
|
|
4649
|
+
needsActionCount: number;
|
|
4650
|
+
unreadCount: number;
|
|
4651
|
+
};
|
|
4652
|
+
type PulseTriggerSettingModelFragment = {
|
|
4653
|
+
__typename: 'PulseTriggerSettingModel';
|
|
4654
|
+
integrationId: string;
|
|
4655
|
+
isEnabled: boolean;
|
|
4656
|
+
message?: string | null;
|
|
4657
|
+
name: string;
|
|
4658
|
+
providerKey: string;
|
|
4659
|
+
slug: string;
|
|
4660
|
+
};
|
|
4341
4661
|
type ReasoningEventOutputFragment = {
|
|
4342
4662
|
__typename: 'ReasoningEventOutput';
|
|
4343
4663
|
delta: string;
|
|
@@ -4424,6 +4744,7 @@ type StreamMessageOutputFragment = {
|
|
|
4424
4744
|
chatId: string;
|
|
4425
4745
|
from: ChatMessageFromEnum;
|
|
4426
4746
|
id: string;
|
|
4747
|
+
originMeta?: any | null;
|
|
4427
4748
|
sentAt: string;
|
|
4428
4749
|
contents?: Array<{
|
|
4429
4750
|
__typename: 'StreamMessageContentOutput';
|
|
@@ -4653,6 +4974,47 @@ type UsageWindowsStatusTypeFragment = {
|
|
|
4653
4974
|
windowStart?: string | null;
|
|
4654
4975
|
};
|
|
4655
4976
|
};
|
|
4977
|
+
type UserSkillFileFragment = {
|
|
4978
|
+
__typename: 'UserSkillFile';
|
|
4979
|
+
createdAt: string;
|
|
4980
|
+
fileId: string;
|
|
4981
|
+
formatKey: string;
|
|
4982
|
+
id: string;
|
|
4983
|
+
name: string;
|
|
4984
|
+
path: string;
|
|
4985
|
+
updatedAt: string;
|
|
4986
|
+
file: {
|
|
4987
|
+
__typename?: 'File';
|
|
4988
|
+
id: string;
|
|
4989
|
+
};
|
|
4990
|
+
};
|
|
4991
|
+
type UserSkillFileModelFragment = {
|
|
4992
|
+
__typename: 'UserSkillFileModel';
|
|
4993
|
+
createdAt: string;
|
|
4994
|
+
fileId: string;
|
|
4995
|
+
formatKey: string;
|
|
4996
|
+
id: string;
|
|
4997
|
+
mimeType?: string | null;
|
|
4998
|
+
name: string;
|
|
4999
|
+
path: string;
|
|
5000
|
+
size?: number | null;
|
|
5001
|
+
updatedAt: string;
|
|
5002
|
+
};
|
|
5003
|
+
type UserSkillFolderFragment = {
|
|
5004
|
+
__typename: 'UserSkillFolder';
|
|
5005
|
+
createdAt: string;
|
|
5006
|
+
id: string;
|
|
5007
|
+
path: string;
|
|
5008
|
+
updatedAt: string;
|
|
5009
|
+
};
|
|
5010
|
+
type UserSkillFolderModelFragment = {
|
|
5011
|
+
__typename: 'UserSkillFolderModel';
|
|
5012
|
+
createdAt: string;
|
|
5013
|
+
id: string;
|
|
5014
|
+
itemCount: number;
|
|
5015
|
+
path: string;
|
|
5016
|
+
updatedAt: string;
|
|
5017
|
+
};
|
|
4656
5018
|
type WindowDetailTypeFragment = {
|
|
4657
5019
|
__typename: 'WindowDetailType';
|
|
4658
5020
|
cost: number;
|
|
@@ -4669,6 +5031,9 @@ type WorkspaceDeleteScheduleFragment = {
|
|
|
4669
5031
|
updatedAt: string;
|
|
4670
5032
|
workspaceId: string;
|
|
4671
5033
|
};
|
|
5034
|
+
type AcknowledgePulseEventMutationVariables = Exact<{
|
|
5035
|
+
id: Scalars['ID'];
|
|
5036
|
+
}>;
|
|
4672
5037
|
type AddInsightToReportMutationVariables = Exact<{
|
|
4673
5038
|
insightId: Scalars['String'];
|
|
4674
5039
|
order?: InputMaybe<Scalars['Int']>;
|
|
@@ -4685,6 +5050,9 @@ type CancelWorkspaceDeletionMutationVariables = Exact<{
|
|
|
4685
5050
|
type ConnectIntegrationMutationVariables = Exact<{
|
|
4686
5051
|
providerKey: Scalars['String'];
|
|
4687
5052
|
}>;
|
|
5053
|
+
type ContinueImportedChatMutationVariables = Exact<{
|
|
5054
|
+
chatId: Scalars['String'];
|
|
5055
|
+
}>;
|
|
4688
5056
|
type ContinueInterpretationMutationVariables = Exact<{
|
|
4689
5057
|
sourceId?: InputMaybe<Scalars['String']>;
|
|
4690
5058
|
workspaceId: Scalars['String'];
|
|
@@ -4726,6 +5094,14 @@ type CreateTableMutationVariables = Exact<{
|
|
|
4726
5094
|
name: Scalars['String'];
|
|
4727
5095
|
title?: InputMaybe<Scalars['String']>;
|
|
4728
5096
|
}>;
|
|
5097
|
+
type CreateUserSkillFileMutationVariables = Exact<{
|
|
5098
|
+
fileId: Scalars['String'];
|
|
5099
|
+
name?: InputMaybe<Scalars['String']>;
|
|
5100
|
+
path: Scalars['String'];
|
|
5101
|
+
}>;
|
|
5102
|
+
type CreateUserSkillFolderMutationVariables = Exact<{
|
|
5103
|
+
path: Scalars['String'];
|
|
5104
|
+
}>;
|
|
4729
5105
|
type DeleteAgentMutationVariables = Exact<{
|
|
4730
5106
|
where: AgentWhereUniqueInput;
|
|
4731
5107
|
}>;
|
|
@@ -4759,12 +5135,30 @@ type DeleteReportMutationVariables = Exact<{
|
|
|
4759
5135
|
type DeleteTableMutationVariables = Exact<{
|
|
4760
5136
|
where: TableWhereUniqueInput;
|
|
4761
5137
|
}>;
|
|
5138
|
+
type DeleteUserSkillFileMutationVariables = Exact<{
|
|
5139
|
+
id: Scalars['ID'];
|
|
5140
|
+
}>;
|
|
5141
|
+
type DeleteUserSkillFolderMutationVariables = Exact<{
|
|
5142
|
+
id: Scalars['ID'];
|
|
5143
|
+
}>;
|
|
4762
5144
|
type DisconnectIntegrationMutationVariables = Exact<{
|
|
4763
5145
|
providerKey: Scalars['String'];
|
|
4764
5146
|
}>;
|
|
5147
|
+
type DismissPulseEventMutationVariables = Exact<{
|
|
5148
|
+
id: Scalars['ID'];
|
|
5149
|
+
}>;
|
|
5150
|
+
type ExecuteChatImportMutationVariables = Exact<{
|
|
5151
|
+
input: ChatImportExecuteInput;
|
|
5152
|
+
}>;
|
|
4765
5153
|
type GenerateUploadUriMutationVariables = Exact<{
|
|
4766
5154
|
data: FileInput;
|
|
4767
5155
|
}>;
|
|
5156
|
+
type MarkPulseEventSeenMutationVariables = Exact<{
|
|
5157
|
+
id: Scalars['ID'];
|
|
5158
|
+
}>;
|
|
5159
|
+
type PreviewChatImportMutationVariables = Exact<{
|
|
5160
|
+
input: ChatImportPreviewInput;
|
|
5161
|
+
}>;
|
|
4768
5162
|
type ReanalyzeDocumentMutationVariables = Exact<{
|
|
4769
5163
|
id: Scalars['ID'];
|
|
4770
5164
|
}>;
|
|
@@ -4794,6 +5188,9 @@ type RemoveInsightFromReportMutationVariables = Exact<{
|
|
|
4794
5188
|
type ResetWorkspaceMutationVariables = Exact<{
|
|
4795
5189
|
[key: string]: never;
|
|
4796
5190
|
}>;
|
|
5191
|
+
type ResolvePulseEventMutationVariables = Exact<{
|
|
5192
|
+
id: Scalars['ID'];
|
|
5193
|
+
}>;
|
|
4797
5194
|
type ScheduleWorkspaceDeletionMutationVariables = Exact<{
|
|
4798
5195
|
[key: string]: never;
|
|
4799
5196
|
}>;
|
|
@@ -4834,6 +5231,9 @@ type UpdateInterpMutationVariables = Exact<{
|
|
|
4834
5231
|
data: InterpretationUpdateInput;
|
|
4835
5232
|
where: InterpretationWhereUniqueInput;
|
|
4836
5233
|
}>;
|
|
5234
|
+
type UpdatePulseTriggerMutationVariables = Exact<{
|
|
5235
|
+
input: UpdatePulseTriggerInput;
|
|
5236
|
+
}>;
|
|
4837
5237
|
type UpdateReportMutationVariables = Exact<{
|
|
4838
5238
|
data: ReportUpdateInput;
|
|
4839
5239
|
where: ReportWhereUniqueInput;
|
|
@@ -4842,6 +5242,15 @@ type UpdateTableMutationVariables = Exact<{
|
|
|
4842
5242
|
data: TableUpdateInput;
|
|
4843
5243
|
where: TableWhereUniqueInput;
|
|
4844
5244
|
}>;
|
|
5245
|
+
type UpdateUserSkillFileMutationVariables = Exact<{
|
|
5246
|
+
id: Scalars['ID'];
|
|
5247
|
+
name?: InputMaybe<Scalars['String']>;
|
|
5248
|
+
path?: InputMaybe<Scalars['String']>;
|
|
5249
|
+
}>;
|
|
5250
|
+
type UpdateUserSkillFolderMutationVariables = Exact<{
|
|
5251
|
+
id: Scalars['ID'];
|
|
5252
|
+
path: Scalars['String'];
|
|
5253
|
+
}>;
|
|
4845
5254
|
type AgentQueryVariables = Exact<{
|
|
4846
5255
|
id: Scalars['ID'];
|
|
4847
5256
|
}>;
|
|
@@ -5170,6 +5579,9 @@ type IntegrationCatalogQueryVariables = Exact<{
|
|
|
5170
5579
|
type IntegrationCatalog_ProviderQueryVariables = Exact<{
|
|
5171
5580
|
providerKey: Scalars['String'];
|
|
5172
5581
|
}>;
|
|
5582
|
+
type IntegrationCatalogToolsQueryVariables = Exact<{
|
|
5583
|
+
providerKey: Scalars['String'];
|
|
5584
|
+
}>;
|
|
5173
5585
|
type IntegrationCatalogsQueryVariables = Exact<{
|
|
5174
5586
|
after?: InputMaybe<Scalars['String']>;
|
|
5175
5587
|
before?: InputMaybe<Scalars['String']>;
|
|
@@ -5211,6 +5623,32 @@ type NotificationsByReferenceQueryVariables = Exact<{
|
|
|
5211
5623
|
type PrivacyStatsQueryVariables = Exact<{
|
|
5212
5624
|
[key: string]: never;
|
|
5213
5625
|
}>;
|
|
5626
|
+
type PulseAppSummaryQueryVariables = Exact<{
|
|
5627
|
+
integrationId: Scalars['String'];
|
|
5628
|
+
}>;
|
|
5629
|
+
type PulseEventQueryVariables = Exact<{
|
|
5630
|
+
id: Scalars['ID'];
|
|
5631
|
+
}>;
|
|
5632
|
+
type PulseEvent_IntegrationQueryVariables = Exact<{
|
|
5633
|
+
id: Scalars['ID'];
|
|
5634
|
+
}>;
|
|
5635
|
+
type PulseEvent_Integration_ProviderQueryVariables = Exact<{
|
|
5636
|
+
id: Scalars['ID'];
|
|
5637
|
+
}>;
|
|
5638
|
+
type PulseEventStatsQueryVariables = Exact<{
|
|
5639
|
+
filter?: InputMaybe<PulseEventWhereInput>;
|
|
5640
|
+
}>;
|
|
5641
|
+
type PulseEventsQueryVariables = Exact<{
|
|
5642
|
+
after?: InputMaybe<Scalars['String']>;
|
|
5643
|
+
before?: InputMaybe<Scalars['String']>;
|
|
5644
|
+
filter?: InputMaybe<PulseEventWhereInput>;
|
|
5645
|
+
first?: InputMaybe<Scalars['Int']>;
|
|
5646
|
+
last?: InputMaybe<Scalars['Int']>;
|
|
5647
|
+
orderBy?: InputMaybe<Array<PulseEventOrderByWithRelationInput> | PulseEventOrderByWithRelationInput>;
|
|
5648
|
+
}>;
|
|
5649
|
+
type PulseTriggerSettingsQueryVariables = Exact<{
|
|
5650
|
+
integrationId: Scalars['String'];
|
|
5651
|
+
}>;
|
|
5214
5652
|
type QueryQueryVariables = Exact<{
|
|
5215
5653
|
geoFilter?: InputMaybe<GeoFilter>;
|
|
5216
5654
|
query: Scalars['JSON'];
|
|
@@ -5288,6 +5726,18 @@ type TablesQueryVariables = Exact<{
|
|
|
5288
5726
|
last?: InputMaybe<Scalars['Int']>;
|
|
5289
5727
|
orderBy?: InputMaybe<Array<TableOrderByWithRelationInput> | TableOrderByWithRelationInput>;
|
|
5290
5728
|
}>;
|
|
5729
|
+
type UserSkillFileQueryVariables = Exact<{
|
|
5730
|
+
id: Scalars['ID'];
|
|
5731
|
+
}>;
|
|
5732
|
+
type UserSkillFilesQueryVariables = Exact<{
|
|
5733
|
+
path?: InputMaybe<Scalars['String']>;
|
|
5734
|
+
}>;
|
|
5735
|
+
type UserSkillFolderQueryVariables = Exact<{
|
|
5736
|
+
id: Scalars['ID'];
|
|
5737
|
+
}>;
|
|
5738
|
+
type UserSkillFoldersQueryVariables = Exact<{
|
|
5739
|
+
path?: InputMaybe<Scalars['String']>;
|
|
5740
|
+
}>;
|
|
5291
5741
|
type WorkspaceDeletionScheduleQueryVariables = Exact<{
|
|
5292
5742
|
[key: string]: never;
|
|
5293
5743
|
}>;
|
|
@@ -5298,6 +5748,7 @@ type SendMessageStreamSubscriptionVariables = Exact<{
|
|
|
5298
5748
|
chatId: Scalars['String'];
|
|
5299
5749
|
content: Scalars['String'];
|
|
5300
5750
|
extendedThinking?: InputMaybe<Scalars['Boolean']>;
|
|
5751
|
+
hiddenContext?: InputMaybe<Scalars['String']>;
|
|
5301
5752
|
isVoiceInput: Scalars['Boolean'];
|
|
5302
5753
|
isVoiceOutput: Scalars['Boolean'];
|
|
5303
5754
|
model?: InputMaybe<SendMessageModel>;
|
|
@@ -5322,6 +5773,7 @@ type SendMessageStreamSubscription$1 = {
|
|
|
5322
5773
|
chatId: string;
|
|
5323
5774
|
from: ChatMessageFromEnum;
|
|
5324
5775
|
id: string;
|
|
5776
|
+
originMeta?: any | null;
|
|
5325
5777
|
sentAt: string;
|
|
5326
5778
|
contents?: Array<{
|
|
5327
5779
|
__typename: 'StreamMessageContentOutput';
|
|
@@ -5351,6 +5803,7 @@ type SendMessageStreamSubscription$1 = {
|
|
|
5351
5803
|
chatId: string;
|
|
5352
5804
|
from: ChatMessageFromEnum;
|
|
5353
5805
|
id: string;
|
|
5806
|
+
originMeta?: any | null;
|
|
5354
5807
|
sentAt: string;
|
|
5355
5808
|
contents?: Array<{
|
|
5356
5809
|
__typename: 'StreamMessageContentOutput';
|
|
@@ -5462,6 +5915,7 @@ declare class Chat extends DvinaModel {
|
|
|
5462
5915
|
readonly id: string;
|
|
5463
5916
|
readonly insightId: string | undefined;
|
|
5464
5917
|
readonly name: string;
|
|
5918
|
+
readonly originMeta: any | undefined;
|
|
5465
5919
|
readonly piiMaskRules: any | undefined;
|
|
5466
5920
|
readonly piiSanitizationEnabled: boolean;
|
|
5467
5921
|
readonly updatedAt: Date;
|
|
@@ -5475,11 +5929,34 @@ declare class Chat extends DvinaModel {
|
|
|
5475
5929
|
/** Query the messages relation for this Chat. Call .fetch() or .watch() to execute. */
|
|
5476
5930
|
messages(variables?: Omit<Chat_MessagesQueryVariables, 'id'>): Chat_MessagesQuery;
|
|
5477
5931
|
}
|
|
5932
|
+
declare class ChatImportExecuteOutput extends DvinaModel {
|
|
5933
|
+
readonly archiveHash: string;
|
|
5934
|
+
readonly createdChatCount: number;
|
|
5935
|
+
readonly createdMessageCount: number;
|
|
5936
|
+
readonly duplicateConversationCount: number;
|
|
5937
|
+
readonly provider: ChatSourceProviderEnum;
|
|
5938
|
+
readonly warnings: string[];
|
|
5939
|
+
readonly chats: ImportedChatSummaryOutput[];
|
|
5940
|
+
constructor(request: DvinaRequest, data: ChatImportExecuteOutputFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
5941
|
+
}
|
|
5942
|
+
declare class ChatImportPreviewOutput extends DvinaModel {
|
|
5943
|
+
readonly archiveHash: string;
|
|
5944
|
+
readonly chatCount: number;
|
|
5945
|
+
readonly duplicateConversationCount: number;
|
|
5946
|
+
readonly fidelity: ChatSourceImportFidelityEnum;
|
|
5947
|
+
readonly hasAttachments: boolean;
|
|
5948
|
+
readonly messageCount: number;
|
|
5949
|
+
readonly mode: ChatSourceImportModeEnum;
|
|
5950
|
+
readonly provider: ChatSourceProviderEnum;
|
|
5951
|
+
readonly warnings: string[];
|
|
5952
|
+
constructor(request: DvinaRequest, data: ChatImportPreviewOutputFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
5953
|
+
}
|
|
5478
5954
|
declare class ChatMessage extends DvinaModel {
|
|
5479
5955
|
readonly actions: any;
|
|
5480
5956
|
readonly chatId: string;
|
|
5481
5957
|
readonly from: ChatMessageFromEnum;
|
|
5482
5958
|
readonly id: string;
|
|
5959
|
+
readonly originMeta: any | undefined;
|
|
5483
5960
|
readonly sentAt: Date;
|
|
5484
5961
|
constructor(request: DvinaRequest, data: ChatMessageFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
5485
5962
|
/** Query the artifacts relation for this ChatMessage. Call .fetch() or .watch() to execute. */
|
|
@@ -5680,6 +6157,14 @@ declare class Folder extends DvinaModel {
|
|
|
5680
6157
|
readonly updatedAt: Date;
|
|
5681
6158
|
constructor(request: DvinaRequest, data: FolderFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
5682
6159
|
}
|
|
6160
|
+
declare class ImportedChatSummaryOutput extends DvinaModel {
|
|
6161
|
+
readonly chatId: string;
|
|
6162
|
+
readonly externalConversationId: string;
|
|
6163
|
+
readonly messageCount: number;
|
|
6164
|
+
readonly name: string;
|
|
6165
|
+
readonly provider: ChatSourceProviderEnum;
|
|
6166
|
+
constructor(request: DvinaRequest, data: ImportedChatSummaryOutputFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6167
|
+
}
|
|
5683
6168
|
declare class IndexContentObject extends DvinaModel {
|
|
5684
6169
|
readonly content: string;
|
|
5685
6170
|
readonly metadata: any;
|
|
@@ -5707,6 +6192,7 @@ declare class Insight extends DvinaModel {
|
|
|
5707
6192
|
reports(variables?: Omit<Insight_ReportsQueryVariables, 'id'>): Insight_ReportsQuery;
|
|
5708
6193
|
}
|
|
5709
6194
|
declare class Integration extends DvinaModel {
|
|
6195
|
+
readonly connectedAt: Date | undefined;
|
|
5710
6196
|
readonly createdAt: Date;
|
|
5711
6197
|
readonly id: string;
|
|
5712
6198
|
readonly providerKey: string;
|
|
@@ -5860,6 +6346,54 @@ declare class PrivacyStats extends DvinaModel {
|
|
|
5860
6346
|
readonly messagesProtectedFromTraining: number | undefined;
|
|
5861
6347
|
constructor(request: DvinaRequest, data: PrivacyStatsFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
5862
6348
|
}
|
|
6349
|
+
declare class PulseAppSummaryModel extends DvinaModel {
|
|
6350
|
+
readonly activeTriggerCount: number;
|
|
6351
|
+
readonly integrationId: string;
|
|
6352
|
+
readonly providerKey: string | undefined;
|
|
6353
|
+
constructor(request: DvinaRequest, data: PulseAppSummaryModelFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6354
|
+
}
|
|
6355
|
+
declare class PulseEvent extends DvinaModel {
|
|
6356
|
+
readonly acknowledgedAt: Date | undefined;
|
|
6357
|
+
readonly actions: any | undefined;
|
|
6358
|
+
readonly createdAt: Date;
|
|
6359
|
+
readonly dedupeKey: string | undefined;
|
|
6360
|
+
readonly dismissedAt: Date | undefined;
|
|
6361
|
+
readonly id: string;
|
|
6362
|
+
readonly integrationId: string;
|
|
6363
|
+
readonly kind: PulseEventKind;
|
|
6364
|
+
readonly message: string | undefined;
|
|
6365
|
+
readonly payload: any | undefined;
|
|
6366
|
+
readonly priority: PulseEventPriority;
|
|
6367
|
+
readonly providerKey: string;
|
|
6368
|
+
readonly remoteEventId: string;
|
|
6369
|
+
readonly remoteLogId: string | undefined;
|
|
6370
|
+
readonly remoteTriggerId: string | undefined;
|
|
6371
|
+
readonly resolvedAt: Date | undefined;
|
|
6372
|
+
readonly seenAt: Date | undefined;
|
|
6373
|
+
readonly status: PulseEventStatus;
|
|
6374
|
+
readonly summary: string | undefined;
|
|
6375
|
+
readonly title: string;
|
|
6376
|
+
readonly triggerSlug: string;
|
|
6377
|
+
readonly updatedAt: Date;
|
|
6378
|
+
constructor(request: DvinaRequest, data: PulseEventFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6379
|
+
/** Query the integration relation for this PulseEvent. Call .fetch() or .watch() to execute. */
|
|
6380
|
+
integration(variables?: Omit<PulseEvent_IntegrationQueryVariables, 'id'>): PulseEvent_IntegrationQuery;
|
|
6381
|
+
}
|
|
6382
|
+
declare class PulseEventStatsModel extends DvinaModel {
|
|
6383
|
+
readonly highPriorityCount: number;
|
|
6384
|
+
readonly needsActionCount: number;
|
|
6385
|
+
readonly unreadCount: number;
|
|
6386
|
+
constructor(request: DvinaRequest, data: PulseEventStatsModelFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6387
|
+
}
|
|
6388
|
+
declare class PulseTriggerSettingModel extends DvinaModel {
|
|
6389
|
+
readonly integrationId: string;
|
|
6390
|
+
readonly isEnabled: boolean;
|
|
6391
|
+
readonly message: string | undefined;
|
|
6392
|
+
readonly name: string;
|
|
6393
|
+
readonly providerKey: string;
|
|
6394
|
+
readonly slug: string;
|
|
6395
|
+
constructor(request: DvinaRequest, data: PulseTriggerSettingModelFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6396
|
+
}
|
|
5863
6397
|
declare class ReasoningEventOutput extends DvinaModel {
|
|
5864
6398
|
readonly delta: string;
|
|
5865
6399
|
readonly type: string;
|
|
@@ -5922,6 +6456,7 @@ declare class StreamMessageOutput extends DvinaModel {
|
|
|
5922
6456
|
readonly chatId: string;
|
|
5923
6457
|
readonly from: ChatMessageFromEnum;
|
|
5924
6458
|
readonly id: string;
|
|
6459
|
+
readonly originMeta: any | undefined;
|
|
5925
6460
|
readonly sentAt: Date;
|
|
5926
6461
|
readonly contents: StreamMessageContentOutput[];
|
|
5927
6462
|
constructor(request: DvinaRequest, data: StreamMessageOutputFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
@@ -6042,6 +6577,45 @@ declare class UsageWindowsStatusType extends DvinaModel {
|
|
|
6042
6577
|
readonly week: WindowDetailType;
|
|
6043
6578
|
constructor(request: DvinaRequest, data: UsageWindowsStatusTypeFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6044
6579
|
}
|
|
6580
|
+
declare class UserSkillFile extends DvinaModel {
|
|
6581
|
+
readonly createdAt: Date;
|
|
6582
|
+
readonly fileId: string;
|
|
6583
|
+
readonly formatKey: string;
|
|
6584
|
+
readonly id: string;
|
|
6585
|
+
readonly name: string;
|
|
6586
|
+
readonly path: string;
|
|
6587
|
+
readonly updatedAt: Date;
|
|
6588
|
+
constructor(request: DvinaRequest, data: UserSkillFileFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6589
|
+
/** Lazy-fetch the file relation. Call .fetch() or .watch() to execute. */
|
|
6590
|
+
file(): FileMetaQuery;
|
|
6591
|
+
}
|
|
6592
|
+
declare class UserSkillFileModel extends DvinaModel {
|
|
6593
|
+
readonly createdAt: Date;
|
|
6594
|
+
readonly fileId: string;
|
|
6595
|
+
readonly formatKey: string;
|
|
6596
|
+
readonly id: string;
|
|
6597
|
+
readonly mimeType: string | undefined;
|
|
6598
|
+
readonly name: string;
|
|
6599
|
+
readonly path: string;
|
|
6600
|
+
readonly size: number | undefined;
|
|
6601
|
+
readonly updatedAt: Date;
|
|
6602
|
+
constructor(request: DvinaRequest, data: UserSkillFileModelFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6603
|
+
}
|
|
6604
|
+
declare class UserSkillFolder extends DvinaModel {
|
|
6605
|
+
readonly createdAt: Date;
|
|
6606
|
+
readonly id: string;
|
|
6607
|
+
readonly path: string;
|
|
6608
|
+
readonly updatedAt: Date;
|
|
6609
|
+
constructor(request: DvinaRequest, data: UserSkillFolderFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6610
|
+
}
|
|
6611
|
+
declare class UserSkillFolderModel extends DvinaModel {
|
|
6612
|
+
readonly createdAt: Date;
|
|
6613
|
+
readonly id: string;
|
|
6614
|
+
readonly itemCount: number;
|
|
6615
|
+
readonly path: string;
|
|
6616
|
+
readonly updatedAt: Date;
|
|
6617
|
+
constructor(request: DvinaRequest, data: UserSkillFolderModelFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6618
|
+
}
|
|
6045
6619
|
declare class WindowDetailType extends DvinaModel {
|
|
6046
6620
|
readonly cost: number;
|
|
6047
6621
|
readonly isExceeded: boolean;
|
|
@@ -6100,6 +6674,9 @@ declare class InterpretationConnection extends Connection<Interpretation> {
|
|
|
6100
6674
|
declare class NotificationConnection extends Connection<Notification> {
|
|
6101
6675
|
constructor(request: DvinaRequest, fetch: (variables?: ConnectionVariables, options?: FetchOptions) => Promise<NotificationConnection | undefined>, data: NotificationConnectionFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6102
6676
|
}
|
|
6677
|
+
declare class PulseEventConnection extends Connection<PulseEvent> {
|
|
6678
|
+
constructor(request: DvinaRequest, fetch: (variables?: ConnectionVariables, options?: FetchOptions) => Promise<PulseEventConnection | undefined>, data: PulseEventConnectionFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6679
|
+
}
|
|
6103
6680
|
declare class ReportConnection extends Connection<Report> {
|
|
6104
6681
|
constructor(request: DvinaRequest, fetch: (variables?: ConnectionVariables, options?: FetchOptions) => Promise<ReportConnection | undefined>, data: ReportConnectionFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6105
6682
|
}
|
|
@@ -6250,6 +6827,14 @@ declare class IntegrationCatalogSubBuilder<TIncluded = {}> {
|
|
|
6250
6827
|
provider: IntegrationProvider;
|
|
6251
6828
|
}>;
|
|
6252
6829
|
}
|
|
6830
|
+
declare class PulseEventSubBuilder<TIncluded = {}> {
|
|
6831
|
+
/** @internal */
|
|
6832
|
+
_includes: IncludeDirective[];
|
|
6833
|
+
/** Include integration in the parent query. */
|
|
6834
|
+
integration(variables?: Omit<PulseEvent_IntegrationQueryVariables, 'id'>, builder?: (q: IntegrationSubBuilder) => IntegrationSubBuilder<any>): PulseEventSubBuilder<TIncluded & {
|
|
6835
|
+
integration: Integration;
|
|
6836
|
+
}>;
|
|
6837
|
+
}
|
|
6253
6838
|
declare class ReportSubBuilder<TIncluded = {}> {
|
|
6254
6839
|
/** @internal */
|
|
6255
6840
|
_includes: IncludeDirective[];
|
|
@@ -6282,6 +6867,9 @@ declare class TableSubBuilder<TIncluded = {}> {
|
|
|
6282
6867
|
toRelations: Relation[];
|
|
6283
6868
|
}>;
|
|
6284
6869
|
}
|
|
6870
|
+
declare class AcknowledgePulseEventMutation extends Request {
|
|
6871
|
+
fetch(variables: AcknowledgePulseEventMutationVariables, options?: FetchOptions): Promise<PulseEvent>;
|
|
6872
|
+
}
|
|
6285
6873
|
declare class AddInsightToReportMutation extends Request {
|
|
6286
6874
|
fetch(variables: AddInsightToReportMutationVariables, options?: FetchOptions): Promise<Report>;
|
|
6287
6875
|
}
|
|
@@ -6294,6 +6882,9 @@ declare class CancelWorkspaceDeletionMutation extends Request {
|
|
|
6294
6882
|
declare class ConnectIntegrationMutation extends Request {
|
|
6295
6883
|
fetch(variables: ConnectIntegrationMutationVariables, options?: FetchOptions): Promise<CreateIntegrationOutput>;
|
|
6296
6884
|
}
|
|
6885
|
+
declare class ContinueImportedChatMutation extends Request {
|
|
6886
|
+
fetch(variables: ContinueImportedChatMutationVariables): Promise<string>;
|
|
6887
|
+
}
|
|
6297
6888
|
declare class ContinueInterpretationMutation extends Request {
|
|
6298
6889
|
fetch(variables: ContinueInterpretationMutationVariables): Promise<boolean>;
|
|
6299
6890
|
}
|
|
@@ -6327,6 +6918,12 @@ declare class CreateReportMutation extends Request {
|
|
|
6327
6918
|
declare class CreateTableMutation extends Request {
|
|
6328
6919
|
fetch(variables: CreateTableMutationVariables, options?: FetchOptions): Promise<Table>;
|
|
6329
6920
|
}
|
|
6921
|
+
declare class CreateUserSkillFileMutation extends Request {
|
|
6922
|
+
fetch(variables: CreateUserSkillFileMutationVariables, options?: FetchOptions): Promise<UserSkillFileModel>;
|
|
6923
|
+
}
|
|
6924
|
+
declare class CreateUserSkillFolderMutation extends Request {
|
|
6925
|
+
fetch(variables: CreateUserSkillFolderMutationVariables, options?: FetchOptions): Promise<UserSkillFolderModel>;
|
|
6926
|
+
}
|
|
6330
6927
|
declare class DeleteAgentMutation extends Request {
|
|
6331
6928
|
fetch(variables: DeleteAgentMutationVariables, options?: FetchOptions): Promise<Agent>;
|
|
6332
6929
|
}
|
|
@@ -6360,12 +6957,30 @@ declare class DeleteReportMutation extends Request {
|
|
|
6360
6957
|
declare class DeleteTableMutation extends Request {
|
|
6361
6958
|
fetch(variables: DeleteTableMutationVariables, options?: FetchOptions): Promise<Table>;
|
|
6362
6959
|
}
|
|
6960
|
+
declare class DeleteUserSkillFileMutation extends Request {
|
|
6961
|
+
fetch(variables: DeleteUserSkillFileMutationVariables, options?: FetchOptions): Promise<UserSkillFileModel>;
|
|
6962
|
+
}
|
|
6963
|
+
declare class DeleteUserSkillFolderMutation extends Request {
|
|
6964
|
+
fetch(variables: DeleteUserSkillFolderMutationVariables, options?: FetchOptions): Promise<UserSkillFolderModel>;
|
|
6965
|
+
}
|
|
6363
6966
|
declare class DisconnectIntegrationMutation extends Request {
|
|
6364
6967
|
fetch(variables: DisconnectIntegrationMutationVariables): Promise<void>;
|
|
6365
6968
|
}
|
|
6969
|
+
declare class DismissPulseEventMutation extends Request {
|
|
6970
|
+
fetch(variables: DismissPulseEventMutationVariables, options?: FetchOptions): Promise<PulseEvent>;
|
|
6971
|
+
}
|
|
6972
|
+
declare class ExecuteChatImportMutation extends Request {
|
|
6973
|
+
fetch(variables: ExecuteChatImportMutationVariables, options?: FetchOptions): Promise<ChatImportExecuteOutput>;
|
|
6974
|
+
}
|
|
6366
6975
|
declare class GenerateUploadUriMutation extends Request {
|
|
6367
6976
|
fetch(variables: GenerateUploadUriMutationVariables, options?: FetchOptions): Promise<FileModel>;
|
|
6368
6977
|
}
|
|
6978
|
+
declare class MarkPulseEventSeenMutation extends Request {
|
|
6979
|
+
fetch(variables: MarkPulseEventSeenMutationVariables, options?: FetchOptions): Promise<PulseEvent>;
|
|
6980
|
+
}
|
|
6981
|
+
declare class PreviewChatImportMutation extends Request {
|
|
6982
|
+
fetch(variables: PreviewChatImportMutationVariables, options?: FetchOptions): Promise<ChatImportPreviewOutput>;
|
|
6983
|
+
}
|
|
6369
6984
|
declare class ReanalyzeDocumentMutation extends Request {
|
|
6370
6985
|
fetch(variables: ReanalyzeDocumentMutationVariables, options?: FetchOptions): Promise<Document>;
|
|
6371
6986
|
}
|
|
@@ -6390,6 +7005,9 @@ declare class RemoveInsightFromReportMutation extends Request {
|
|
|
6390
7005
|
declare class ResetWorkspaceMutation extends Request {
|
|
6391
7006
|
fetch(variables?: ResetWorkspaceMutationVariables): Promise<boolean>;
|
|
6392
7007
|
}
|
|
7008
|
+
declare class ResolvePulseEventMutation extends Request {
|
|
7009
|
+
fetch(variables: ResolvePulseEventMutationVariables, options?: FetchOptions): Promise<PulseEvent>;
|
|
7010
|
+
}
|
|
6393
7011
|
declare class ScheduleWorkspaceDeletionMutation extends Request {
|
|
6394
7012
|
fetch(variables?: ScheduleWorkspaceDeletionMutationVariables, options?: FetchOptions): Promise<WorkspaceDeleteSchedule>;
|
|
6395
7013
|
}
|
|
@@ -6420,12 +7038,21 @@ declare class UpdateInsightInReportMutation extends Request {
|
|
|
6420
7038
|
declare class UpdateInterpMutation extends Request {
|
|
6421
7039
|
fetch(variables: UpdateInterpMutationVariables, options?: FetchOptions): Promise<Interpretation>;
|
|
6422
7040
|
}
|
|
7041
|
+
declare class UpdatePulseTriggerMutation extends Request {
|
|
7042
|
+
fetch(variables: UpdatePulseTriggerMutationVariables, options?: FetchOptions): Promise<PulseTriggerSettingModel>;
|
|
7043
|
+
}
|
|
6423
7044
|
declare class UpdateReportMutation extends Request {
|
|
6424
7045
|
fetch(variables: UpdateReportMutationVariables, options?: FetchOptions): Promise<Report>;
|
|
6425
7046
|
}
|
|
6426
7047
|
declare class UpdateTableMutation extends Request {
|
|
6427
7048
|
fetch(variables: UpdateTableMutationVariables, options?: FetchOptions): Promise<Table>;
|
|
6428
7049
|
}
|
|
7050
|
+
declare class UpdateUserSkillFileMutation extends Request {
|
|
7051
|
+
fetch(variables: UpdateUserSkillFileMutationVariables, options?: FetchOptions): Promise<UserSkillFileModel>;
|
|
7052
|
+
}
|
|
7053
|
+
declare class UpdateUserSkillFolderMutation extends Request {
|
|
7054
|
+
fetch(variables: UpdateUserSkillFolderMutationVariables, options?: FetchOptions): Promise<UserSkillFolderModel>;
|
|
7055
|
+
}
|
|
6429
7056
|
declare class AgentQuery<TIncluded = {}> extends Request {
|
|
6430
7057
|
private _variables;
|
|
6431
7058
|
private _includes;
|
|
@@ -7065,6 +7692,9 @@ declare class IntegrationCatalog_ProviderQuery extends Request {
|
|
|
7065
7692
|
fetch(options?: FetchOptions): Promise<IntegrationProvider | undefined>;
|
|
7066
7693
|
watch(options?: FetchOptions): DvinaQueryRef<IntegrationProvider | undefined>;
|
|
7067
7694
|
}
|
|
7695
|
+
declare class IntegrationCatalogToolsQuery extends Request {
|
|
7696
|
+
fetch(variables: IntegrationCatalogToolsQueryVariables): Promise<string[]>;
|
|
7697
|
+
}
|
|
7068
7698
|
declare class IntegrationCatalogsQuery<TIncluded = {}> extends Request {
|
|
7069
7699
|
private _variables;
|
|
7070
7700
|
private _includes;
|
|
@@ -7121,6 +7751,60 @@ declare class PrivacyStatsQuery<TIncluded = {}> extends Request {
|
|
|
7121
7751
|
fetch(options?: FetchOptions): Promise<WithIncludes<PrivacyStats, TIncluded>>;
|
|
7122
7752
|
watch(options?: FetchOptions): DvinaQueryRef<WithIncludes<PrivacyStats, TIncluded>>;
|
|
7123
7753
|
}
|
|
7754
|
+
declare class PulseAppSummaryQuery<TIncluded = {}> extends Request {
|
|
7755
|
+
private _variables;
|
|
7756
|
+
private _includes;
|
|
7757
|
+
constructor(request: DvinaRequest, syncEngine?: SyncEngine, variables?: PulseAppSummaryQueryVariables, baseUrl?: string);
|
|
7758
|
+
fetch(options?: FetchOptions): Promise<WithIncludes<PulseAppSummaryModel, TIncluded> | undefined>;
|
|
7759
|
+
watch(options?: FetchOptions): DvinaQueryRef<WithIncludes<PulseAppSummaryModel, TIncluded> | undefined>;
|
|
7760
|
+
}
|
|
7761
|
+
declare class PulseEventQuery<TIncluded = {}> extends Request {
|
|
7762
|
+
private _variables;
|
|
7763
|
+
private _includes;
|
|
7764
|
+
constructor(request: DvinaRequest, syncEngine?: SyncEngine, variables?: PulseEventQueryVariables, baseUrl?: string);
|
|
7765
|
+
fetch(options?: FetchOptions): Promise<WithIncludes<PulseEvent, TIncluded>>;
|
|
7766
|
+
watch(options?: FetchOptions): DvinaQueryRef<WithIncludes<PulseEvent, TIncluded>>;
|
|
7767
|
+
/** Include integration in this query (Smart Fetch — single HTTP request). */
|
|
7768
|
+
integration(variables?: Omit<PulseEvent_IntegrationQueryVariables, 'id'>, builder?: (q: IntegrationSubBuilder) => IntegrationSubBuilder<any>): PulseEventQuery<TIncluded & {
|
|
7769
|
+
integration: Integration;
|
|
7770
|
+
}>;
|
|
7771
|
+
}
|
|
7772
|
+
declare class PulseEvent_IntegrationQuery extends Request {
|
|
7773
|
+
private _variables;
|
|
7774
|
+
constructor(request: DvinaRequest, syncEngine?: SyncEngine, variables?: PulseEvent_IntegrationQueryVariables, baseUrl?: string);
|
|
7775
|
+
fetch(options?: FetchOptions): Promise<Integration | undefined>;
|
|
7776
|
+
watch(options?: FetchOptions): DvinaQueryRef<Integration | undefined>;
|
|
7777
|
+
}
|
|
7778
|
+
declare class PulseEvent_Integration_ProviderQuery extends Request {
|
|
7779
|
+
private _variables;
|
|
7780
|
+
constructor(request: DvinaRequest, syncEngine?: SyncEngine, variables?: PulseEvent_Integration_ProviderQueryVariables, baseUrl?: string);
|
|
7781
|
+
fetch(options?: FetchOptions): Promise<IntegrationProvider | undefined>;
|
|
7782
|
+
watch(options?: FetchOptions): DvinaQueryRef<IntegrationProvider | undefined>;
|
|
7783
|
+
}
|
|
7784
|
+
declare class PulseEventStatsQuery<TIncluded = {}> extends Request {
|
|
7785
|
+
private _variables;
|
|
7786
|
+
private _includes;
|
|
7787
|
+
constructor(request: DvinaRequest, syncEngine?: SyncEngine, variables?: PulseEventStatsQueryVariables, baseUrl?: string);
|
|
7788
|
+
fetch(options?: FetchOptions): Promise<WithIncludes<PulseEventStatsModel, TIncluded>>;
|
|
7789
|
+
watch(options?: FetchOptions): DvinaQueryRef<WithIncludes<PulseEventStatsModel, TIncluded>>;
|
|
7790
|
+
}
|
|
7791
|
+
declare class PulseEventsQuery<TIncluded = {}> extends Request {
|
|
7792
|
+
private _variables;
|
|
7793
|
+
private _includes;
|
|
7794
|
+
constructor(request: DvinaRequest, syncEngine?: SyncEngine, variables?: PulseEventsQueryVariables, baseUrl?: string);
|
|
7795
|
+
fetch(options?: FetchOptions): Promise<ConnectionWithNodes<PulseEventConnection, TIncluded>>;
|
|
7796
|
+
watch(options?: FetchOptions): DvinaQueryRef<ConnectionWithNodes<PulseEventConnection, TIncluded>>;
|
|
7797
|
+
/** Include integration in this query (Smart Fetch — single HTTP request). */
|
|
7798
|
+
integration(variables?: Omit<PulseEvent_IntegrationQueryVariables, 'id'>, builder?: (q: IntegrationSubBuilder) => IntegrationSubBuilder<any>): PulseEventsQuery<TIncluded & {
|
|
7799
|
+
integration: Integration;
|
|
7800
|
+
}>;
|
|
7801
|
+
}
|
|
7802
|
+
declare class PulseTriggerSettingsQuery<TIncluded = {}> extends Request {
|
|
7803
|
+
private _variables;
|
|
7804
|
+
private _includes;
|
|
7805
|
+
constructor(request: DvinaRequest, syncEngine?: SyncEngine, variables?: PulseTriggerSettingsQueryVariables, baseUrl?: string);
|
|
7806
|
+
fetch(options?: FetchOptions): Promise<PulseTriggerSettingModel[]>;
|
|
7807
|
+
}
|
|
7124
7808
|
declare class QueryQuery extends Request {
|
|
7125
7809
|
fetch(variables: QueryQueryVariables): Promise<any>;
|
|
7126
7810
|
}
|
|
@@ -7268,6 +7952,32 @@ declare class TablesQuery<TIncluded = {}> extends Request {
|
|
|
7268
7952
|
toRelations: Relation[];
|
|
7269
7953
|
}>;
|
|
7270
7954
|
}
|
|
7955
|
+
declare class UserSkillFileQuery<TIncluded = {}> extends Request {
|
|
7956
|
+
private _variables;
|
|
7957
|
+
private _includes;
|
|
7958
|
+
constructor(request: DvinaRequest, syncEngine?: SyncEngine, variables?: UserSkillFileQueryVariables, baseUrl?: string);
|
|
7959
|
+
fetch(options?: FetchOptions): Promise<WithIncludes<UserSkillFileModel, TIncluded>>;
|
|
7960
|
+
watch(options?: FetchOptions): DvinaQueryRef<WithIncludes<UserSkillFileModel, TIncluded>>;
|
|
7961
|
+
}
|
|
7962
|
+
declare class UserSkillFilesQuery<TIncluded = {}> extends Request {
|
|
7963
|
+
private _variables;
|
|
7964
|
+
private _includes;
|
|
7965
|
+
constructor(request: DvinaRequest, syncEngine?: SyncEngine, variables?: UserSkillFilesQueryVariables, baseUrl?: string);
|
|
7966
|
+
fetch(options?: FetchOptions): Promise<UserSkillFileModel[]>;
|
|
7967
|
+
}
|
|
7968
|
+
declare class UserSkillFolderQuery<TIncluded = {}> extends Request {
|
|
7969
|
+
private _variables;
|
|
7970
|
+
private _includes;
|
|
7971
|
+
constructor(request: DvinaRequest, syncEngine?: SyncEngine, variables?: UserSkillFolderQueryVariables, baseUrl?: string);
|
|
7972
|
+
fetch(options?: FetchOptions): Promise<WithIncludes<UserSkillFolderModel, TIncluded>>;
|
|
7973
|
+
watch(options?: FetchOptions): DvinaQueryRef<WithIncludes<UserSkillFolderModel, TIncluded>>;
|
|
7974
|
+
}
|
|
7975
|
+
declare class UserSkillFoldersQuery<TIncluded = {}> extends Request {
|
|
7976
|
+
private _variables;
|
|
7977
|
+
private _includes;
|
|
7978
|
+
constructor(request: DvinaRequest, syncEngine?: SyncEngine, variables?: UserSkillFoldersQueryVariables, baseUrl?: string);
|
|
7979
|
+
fetch(options?: FetchOptions): Promise<UserSkillFolderModel[]>;
|
|
7980
|
+
}
|
|
7271
7981
|
declare class WorkspaceDeletionScheduleQuery<TIncluded = {}> extends Request {
|
|
7272
7982
|
private _variables;
|
|
7273
7983
|
private _includes;
|
|
@@ -7304,6 +8014,8 @@ declare class DvinaSdk extends Request {
|
|
|
7304
8014
|
/** Billing client for the Dvina Billing API (plans, subscriptions, seats, sessions). */
|
|
7305
8015
|
readonly billing: BillingClient;
|
|
7306
8016
|
constructor(options: DvinaSdkOptions);
|
|
8017
|
+
/** Mutation: acknowledgePulseEvent */
|
|
8018
|
+
acknowledgePulseEvent(variables: AcknowledgePulseEventMutationVariables): Promise<PulseEvent>;
|
|
7307
8019
|
/** Mutation: addInsightToReport */
|
|
7308
8020
|
addInsightToReport(variables: AddInsightToReportMutationVariables): Promise<Report>;
|
|
7309
8021
|
/** Mutation: cancelOauthFlow (scalar) */
|
|
@@ -7312,6 +8024,8 @@ declare class DvinaSdk extends Request {
|
|
|
7312
8024
|
cancelWorkspaceDeletion(): Promise<boolean>;
|
|
7313
8025
|
/** Mutation: connectIntegration */
|
|
7314
8026
|
connectIntegration(variables: ConnectIntegrationMutationVariables): Promise<CreateIntegrationOutput>;
|
|
8027
|
+
/** Mutation: continueImportedChat (scalar) */
|
|
8028
|
+
continueImportedChat(variables: ContinueImportedChatMutationVariables): Promise<string>;
|
|
7315
8029
|
/** Mutation: continueInterpretation (scalar) */
|
|
7316
8030
|
continueInterpretation(variables: ContinueInterpretationMutationVariables): Promise<boolean>;
|
|
7317
8031
|
/** Mutation: createAgent */
|
|
@@ -7334,6 +8048,10 @@ declare class DvinaSdk extends Request {
|
|
|
7334
8048
|
createReport(variables: CreateReportMutationVariables): Promise<Report>;
|
|
7335
8049
|
/** Mutation: createTable */
|
|
7336
8050
|
createTable(variables: CreateTableMutationVariables): Promise<Table>;
|
|
8051
|
+
/** Mutation: createUserSkillFile */
|
|
8052
|
+
createUserSkillFile(variables: CreateUserSkillFileMutationVariables): Promise<UserSkillFileModel>;
|
|
8053
|
+
/** Mutation: createUserSkillFolder */
|
|
8054
|
+
createUserSkillFolder(variables: CreateUserSkillFolderMutationVariables): Promise<UserSkillFolderModel>;
|
|
7337
8055
|
/** Mutation: deleteAgent */
|
|
7338
8056
|
deleteAgent(variables: DeleteAgentMutationVariables): Promise<Agent>;
|
|
7339
8057
|
/** Mutation: deleteArtifact */
|
|
@@ -7356,10 +8074,22 @@ declare class DvinaSdk extends Request {
|
|
|
7356
8074
|
deleteReport(variables: DeleteReportMutationVariables): Promise<Report>;
|
|
7357
8075
|
/** Mutation: deleteTable */
|
|
7358
8076
|
deleteTable(variables: DeleteTableMutationVariables): Promise<Table>;
|
|
8077
|
+
/** Mutation: deleteUserSkillFile */
|
|
8078
|
+
deleteUserSkillFile(variables: DeleteUserSkillFileMutationVariables): Promise<UserSkillFileModel>;
|
|
8079
|
+
/** Mutation: deleteUserSkillFolder */
|
|
8080
|
+
deleteUserSkillFolder(variables: DeleteUserSkillFolderMutationVariables): Promise<UserSkillFolderModel>;
|
|
7359
8081
|
/** Mutation: disconnectIntegration (scalar) */
|
|
7360
8082
|
disconnectIntegration(variables: DisconnectIntegrationMutationVariables): Promise<void>;
|
|
8083
|
+
/** Mutation: dismissPulseEvent */
|
|
8084
|
+
dismissPulseEvent(variables: DismissPulseEventMutationVariables): Promise<PulseEvent>;
|
|
8085
|
+
/** Mutation: executeChatImport */
|
|
8086
|
+
executeChatImport(variables: ExecuteChatImportMutationVariables): Promise<ChatImportExecuteOutput>;
|
|
7361
8087
|
/** Mutation: generateUploadUri */
|
|
7362
8088
|
generateUploadUri(variables: GenerateUploadUriMutationVariables): Promise<FileModel>;
|
|
8089
|
+
/** Mutation: markPulseEventSeen */
|
|
8090
|
+
markPulseEventSeen(variables: MarkPulseEventSeenMutationVariables): Promise<PulseEvent>;
|
|
8091
|
+
/** Mutation: previewChatImport */
|
|
8092
|
+
previewChatImport(variables: PreviewChatImportMutationVariables): Promise<ChatImportPreviewOutput>;
|
|
7363
8093
|
/** Mutation: reanalyzeDocument */
|
|
7364
8094
|
reanalyzeDocument(variables: ReanalyzeDocumentMutationVariables): Promise<Document>;
|
|
7365
8095
|
/** Mutation: refineMindInstruction (scalar) */
|
|
@@ -7376,6 +8106,8 @@ declare class DvinaSdk extends Request {
|
|
|
7376
8106
|
removeInsightFromReport(variables: RemoveInsightFromReportMutationVariables): Promise<Report>;
|
|
7377
8107
|
/** Mutation: resetWorkspace (scalar) */
|
|
7378
8108
|
resetWorkspace(): Promise<boolean>;
|
|
8109
|
+
/** Mutation: resolvePulseEvent */
|
|
8110
|
+
resolvePulseEvent(variables: ResolvePulseEventMutationVariables): Promise<PulseEvent>;
|
|
7379
8111
|
/** Mutation: scheduleWorkspaceDeletion */
|
|
7380
8112
|
scheduleWorkspaceDeletion(): Promise<WorkspaceDeleteSchedule>;
|
|
7381
8113
|
/** Mutation: setDatabasePrimaryKey (scalar) */
|
|
@@ -7396,10 +8128,16 @@ declare class DvinaSdk extends Request {
|
|
|
7396
8128
|
updateInsightInReport(variables: UpdateInsightInReportMutationVariables): Promise<Report>;
|
|
7397
8129
|
/** Mutation: updateInterp */
|
|
7398
8130
|
updateInterp(variables: UpdateInterpMutationVariables): Promise<Interpretation>;
|
|
8131
|
+
/** Mutation: updatePulseTrigger */
|
|
8132
|
+
updatePulseTrigger(variables: UpdatePulseTriggerMutationVariables): Promise<PulseTriggerSettingModel>;
|
|
7399
8133
|
/** Mutation: updateReport */
|
|
7400
8134
|
updateReport(variables: UpdateReportMutationVariables): Promise<Report>;
|
|
7401
8135
|
/** Mutation: updateTable */
|
|
7402
8136
|
updateTable(variables: UpdateTableMutationVariables): Promise<Table>;
|
|
8137
|
+
/** Mutation: updateUserSkillFile */
|
|
8138
|
+
updateUserSkillFile(variables: UpdateUserSkillFileMutationVariables): Promise<UserSkillFileModel>;
|
|
8139
|
+
/** Mutation: updateUserSkillFolder */
|
|
8140
|
+
updateUserSkillFolder(variables: UpdateUserSkillFolderMutationVariables): Promise<UserSkillFolderModel>;
|
|
7403
8141
|
/** Query: agent — call .fetch() or .watch() to execute. */
|
|
7404
8142
|
agent(variables: AgentQueryVariables): AgentQuery;
|
|
7405
8143
|
/** Query: agents — call .fetch() or .watch() to execute. */
|
|
@@ -7474,6 +8212,8 @@ declare class DvinaSdk extends Request {
|
|
|
7474
8212
|
integration(variables: IntegrationQueryVariables): IntegrationQuery;
|
|
7475
8213
|
/** Query: integrationCatalog — call .fetch() or .watch() to execute. */
|
|
7476
8214
|
integrationCatalog(variables: IntegrationCatalogQueryVariables): IntegrationCatalogQuery;
|
|
8215
|
+
/** Query: integrationCatalogTools (scalar) */
|
|
8216
|
+
integrationCatalogTools(variables: IntegrationCatalogToolsQueryVariables): Promise<string[]>;
|
|
7477
8217
|
/** Query: integrationCatalogs — call .fetch() or .watch() to execute. */
|
|
7478
8218
|
integrationCatalogs(variables?: IntegrationCatalogsQueryVariables): IntegrationCatalogsQuery;
|
|
7479
8219
|
/** Query: integrations — call .fetch() or .watch() to execute. */
|
|
@@ -7488,6 +8228,16 @@ declare class DvinaSdk extends Request {
|
|
|
7488
8228
|
notificationsByReference(variables: NotificationsByReferenceQueryVariables): NotificationsByReferenceQuery;
|
|
7489
8229
|
/** Query: privacyStats — call .fetch() or .watch() to execute. */
|
|
7490
8230
|
privacyStats(): PrivacyStatsQuery;
|
|
8231
|
+
/** Query: pulseAppSummary — call .fetch() or .watch() to execute. */
|
|
8232
|
+
pulseAppSummary(variables: PulseAppSummaryQueryVariables): PulseAppSummaryQuery;
|
|
8233
|
+
/** Query: pulseEvent — call .fetch() or .watch() to execute. */
|
|
8234
|
+
pulseEvent(variables: PulseEventQueryVariables): PulseEventQuery;
|
|
8235
|
+
/** Query: pulseEventStats — call .fetch() or .watch() to execute. */
|
|
8236
|
+
pulseEventStats(variables?: PulseEventStatsQueryVariables): PulseEventStatsQuery;
|
|
8237
|
+
/** Query: pulseEvents — call .fetch() or .watch() to execute. */
|
|
8238
|
+
pulseEvents(variables?: PulseEventsQueryVariables): PulseEventsQuery;
|
|
8239
|
+
/** Query: pulseTriggerSettings — call .fetch() or .watch() to execute. */
|
|
8240
|
+
pulseTriggerSettings(variables: PulseTriggerSettingsQueryVariables): PulseTriggerSettingsQuery;
|
|
7491
8241
|
/** Query: query (scalar) */
|
|
7492
8242
|
query(variables: QueryQueryVariables): Promise<any>;
|
|
7493
8243
|
/** Query: queryWithInsightId (scalar) */
|
|
@@ -7504,6 +8254,14 @@ declare class DvinaSdk extends Request {
|
|
|
7504
8254
|
table(variables: TableQueryVariables): TableQuery;
|
|
7505
8255
|
/** Query: tables — call .fetch() or .watch() to execute. */
|
|
7506
8256
|
tables(variables?: TablesQueryVariables): TablesQuery;
|
|
8257
|
+
/** Query: userSkillFile — call .fetch() or .watch() to execute. */
|
|
8258
|
+
userSkillFile(variables: UserSkillFileQueryVariables): UserSkillFileQuery;
|
|
8259
|
+
/** Query: userSkillFiles — call .fetch() or .watch() to execute. */
|
|
8260
|
+
userSkillFiles(variables?: UserSkillFilesQueryVariables): UserSkillFilesQuery;
|
|
8261
|
+
/** Query: userSkillFolder — call .fetch() or .watch() to execute. */
|
|
8262
|
+
userSkillFolder(variables: UserSkillFolderQueryVariables): UserSkillFolderQuery;
|
|
8263
|
+
/** Query: userSkillFolders — call .fetch() or .watch() to execute. */
|
|
8264
|
+
userSkillFolders(variables?: UserSkillFoldersQueryVariables): UserSkillFoldersQuery;
|
|
7507
8265
|
/** Query: workspaceDeletionSchedule — call .fetch() or .watch() to execute. */
|
|
7508
8266
|
workspaceDeletionSchedule(): WorkspaceDeletionScheduleQuery;
|
|
7509
8267
|
/** mcpAuthUpdates subscription */
|
|
@@ -7582,4 +8340,4 @@ declare const PRIMARY_KEY_CONFIG: Record<string, string | string[]>;
|
|
|
7582
8340
|
*/
|
|
7583
8341
|
declare const MUTATION_CACHE_RULES: Record<string, CacheRule>;
|
|
7584
8342
|
|
|
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 };
|
|
8343
|
+
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, ChatImportExecuteOutput, ChatImportPreviewOutput, ChatMessage, ChatMessageConnection, ChatMessageFromEnum, ChatMessageOrderByRelevanceFieldEnum, ChatMessageQuery, ChatMessageSubBuilder, ChatMessage_ArtifactsQuery, ChatMessage_ChatQuery, ChatMessage_Chat_InsightQuery, ChatMessage_ContentsQuery, ChatMessage_FeedbackQuery, ChatMessagesQuery, ChatOrderByRelevanceFieldEnum, ChatQuery, ChatSourceImportFidelityEnum, ChatSourceImportModeEnum, ChatSourceProviderEnum, ChatSubBuilder, ChatTitleEventOutput, Chat_AgentsQuery, Chat_ArtifactsQuery, Chat_InsightQuery, Chat_Insight_ReportMembersQuery, Chat_MessagesQuery, ChatsQuery, ConnectIntegrationMutation, Connection, ConnectionVariables, ConnectionWithNodes, ContentBlock, ContentBlockType, ContentMask, ContinueImportedChatMutation, ContinueInterpretationMutation, CreateAgentMutation, CreateChatMutation, CreateDatabaseMutation, CreateDocumentMutation, CreateFeedbackMutation, CreateFolderMutation, CreateInsightMutation, CreateIntegrationMutation, CreateIntegrationOutput, CreateReportMutation, CreateTableMutation, CreateUserSkillFileMutation, CreateUserSkillFolderMutation, 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, DeleteUserSkillFileMutation, DeleteUserSkillFolderMutation, 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, ExecuteChatImportMutation, 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, ImportedChatSummaryOutput, 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, PreviewChatImportMutation, 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, UpdateUserSkillFileMutation, UpdateUserSkillFolderMutation, type UploadOptions, type UploadProgressEvent, type UploadResult, UsageHistoryGranularity, UsageMetaOutput, UsageStatus, UsageWindowsStatusType, UserSkillFile, UserSkillFileModel, UserSkillFileQuery, UserSkillFilesQuery, UserSkillFolder, UserSkillFolderModel, UserSkillFolderQuery, UserSkillFoldersQuery, WindowDetailType, WithIncludes, WorkspaceDeleteSchedule, WorkspaceDeletionScheduleQuery, type WsTransport, type WsTransportOptions, createLazySyncEngine, createWsTransport, reconstructConnectionNodes, reconstructEntity, uploadFile };
|