@dvina/sdk 4.0.31 → 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-BUDHKOOE.js.map → _generated_documents-ELTXQJUU.js.map} +1 -1
- package/dist/{_generated_documents-YYWUEFO6.cjs → _generated_documents-ZGDAJYZQ.cjs} +563 -447
- package/dist/{_generated_documents-YYWUEFO6.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-KGSFT3KV.js → chunk-B6DO72PH.js} +433 -10
- package/dist/chunk-B6DO72PH.js.map +1 -0
- package/dist/{chunk-R25LNOGL.js → chunk-E2BA2ELL.js} +68 -27
- package/dist/chunk-E2BA2ELL.js.map +1 -0
- package/dist/{chunk-J4D5NNBG.cjs → chunk-LQFZEQHL.cjs} +901 -458
- package/dist/chunk-LQFZEQHL.cjs.map +1 -0
- package/dist/{chunk-NVBJ6NKK.cjs → chunk-ZFR7CX4F.cjs} +96 -26
- package/dist/chunk-ZFR7CX4F.cjs.map +1 -0
- package/dist/index.cjs +429 -337
- package/dist/index.d.cts +328 -1
- package/dist/index.d.ts +328 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/dist/_generated_documents-BUDHKOOE.js +0 -4
- package/dist/chunk-J4D5NNBG.cjs.map +0 -1
- package/dist/chunk-KGSFT3KV.js.map +0 -1
- package/dist/chunk-NVBJ6NKK.cjs.map +0 -1
- package/dist/chunk-R25LNOGL.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>;
|
|
@@ -3719,6 +3764,7 @@ type ChatFragment = {
|
|
|
3719
3764
|
id: string;
|
|
3720
3765
|
insightId?: string | null;
|
|
3721
3766
|
name: string;
|
|
3767
|
+
originMeta?: any | null;
|
|
3722
3768
|
piiMaskRules?: any | null;
|
|
3723
3769
|
piiSanitizationEnabled: boolean;
|
|
3724
3770
|
updatedAt: string;
|
|
@@ -3737,6 +3783,7 @@ type ChatConnectionFragment = {
|
|
|
3737
3783
|
id: string;
|
|
3738
3784
|
insightId?: string | null;
|
|
3739
3785
|
name: string;
|
|
3786
|
+
originMeta?: any | null;
|
|
3740
3787
|
piiMaskRules?: any | null;
|
|
3741
3788
|
piiSanitizationEnabled: boolean;
|
|
3742
3789
|
updatedAt: string;
|
|
@@ -3753,12 +3800,42 @@ type ChatConnectionFragment = {
|
|
|
3753
3800
|
startCursor?: string | null;
|
|
3754
3801
|
};
|
|
3755
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
|
+
};
|
|
3756
3832
|
type ChatMessageFragment = {
|
|
3757
3833
|
__typename: 'ChatMessage';
|
|
3758
3834
|
actions: any;
|
|
3759
3835
|
chatId: string;
|
|
3760
3836
|
from: ChatMessageFromEnum;
|
|
3761
3837
|
id: string;
|
|
3838
|
+
originMeta?: any | null;
|
|
3762
3839
|
sentAt: string;
|
|
3763
3840
|
chat: {
|
|
3764
3841
|
__typename?: 'Chat';
|
|
@@ -3794,6 +3871,7 @@ type ChatMessageConnectionFragment = {
|
|
|
3794
3871
|
chatId: string;
|
|
3795
3872
|
from: ChatMessageFromEnum;
|
|
3796
3873
|
id: string;
|
|
3874
|
+
originMeta?: any | null;
|
|
3797
3875
|
sentAt: string;
|
|
3798
3876
|
chat: {
|
|
3799
3877
|
__typename?: 'Chat';
|
|
@@ -4125,6 +4203,7 @@ type FinalContentEventOutputFragment = {
|
|
|
4125
4203
|
chatId: string;
|
|
4126
4204
|
from: ChatMessageFromEnum;
|
|
4127
4205
|
id: string;
|
|
4206
|
+
originMeta?: any | null;
|
|
4128
4207
|
sentAt: string;
|
|
4129
4208
|
contents?: Array<{
|
|
4130
4209
|
__typename: 'StreamMessageContentOutput';
|
|
@@ -4172,6 +4251,14 @@ type FolderConnectionFragment = {
|
|
|
4172
4251
|
startCursor?: string | null;
|
|
4173
4252
|
};
|
|
4174
4253
|
};
|
|
4254
|
+
type ImportedChatSummaryOutputFragment = {
|
|
4255
|
+
__typename: 'ImportedChatSummaryOutput';
|
|
4256
|
+
chatId: string;
|
|
4257
|
+
externalConversationId: string;
|
|
4258
|
+
messageCount: number;
|
|
4259
|
+
name: string;
|
|
4260
|
+
provider: ChatSourceProviderEnum;
|
|
4261
|
+
};
|
|
4175
4262
|
type IndexContentObjectFragment = {
|
|
4176
4263
|
__typename: 'IndexContentObject';
|
|
4177
4264
|
content: string;
|
|
@@ -4415,6 +4502,7 @@ type MessageStartEventOutputFragment = {
|
|
|
4415
4502
|
chatId: string;
|
|
4416
4503
|
from: ChatMessageFromEnum;
|
|
4417
4504
|
id: string;
|
|
4505
|
+
originMeta?: any | null;
|
|
4418
4506
|
sentAt: string;
|
|
4419
4507
|
contents?: Array<{
|
|
4420
4508
|
__typename: 'StreamMessageContentOutput';
|
|
@@ -4656,6 +4744,7 @@ type StreamMessageOutputFragment = {
|
|
|
4656
4744
|
chatId: string;
|
|
4657
4745
|
from: ChatMessageFromEnum;
|
|
4658
4746
|
id: string;
|
|
4747
|
+
originMeta?: any | null;
|
|
4659
4748
|
sentAt: string;
|
|
4660
4749
|
contents?: Array<{
|
|
4661
4750
|
__typename: 'StreamMessageContentOutput';
|
|
@@ -4885,6 +4974,47 @@ type UsageWindowsStatusTypeFragment = {
|
|
|
4885
4974
|
windowStart?: string | null;
|
|
4886
4975
|
};
|
|
4887
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
|
+
};
|
|
4888
5018
|
type WindowDetailTypeFragment = {
|
|
4889
5019
|
__typename: 'WindowDetailType';
|
|
4890
5020
|
cost: number;
|
|
@@ -4920,6 +5050,9 @@ type CancelWorkspaceDeletionMutationVariables = Exact<{
|
|
|
4920
5050
|
type ConnectIntegrationMutationVariables = Exact<{
|
|
4921
5051
|
providerKey: Scalars['String'];
|
|
4922
5052
|
}>;
|
|
5053
|
+
type ContinueImportedChatMutationVariables = Exact<{
|
|
5054
|
+
chatId: Scalars['String'];
|
|
5055
|
+
}>;
|
|
4923
5056
|
type ContinueInterpretationMutationVariables = Exact<{
|
|
4924
5057
|
sourceId?: InputMaybe<Scalars['String']>;
|
|
4925
5058
|
workspaceId: Scalars['String'];
|
|
@@ -4961,6 +5094,14 @@ type CreateTableMutationVariables = Exact<{
|
|
|
4961
5094
|
name: Scalars['String'];
|
|
4962
5095
|
title?: InputMaybe<Scalars['String']>;
|
|
4963
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
|
+
}>;
|
|
4964
5105
|
type DeleteAgentMutationVariables = Exact<{
|
|
4965
5106
|
where: AgentWhereUniqueInput;
|
|
4966
5107
|
}>;
|
|
@@ -4994,18 +5135,30 @@ type DeleteReportMutationVariables = Exact<{
|
|
|
4994
5135
|
type DeleteTableMutationVariables = Exact<{
|
|
4995
5136
|
where: TableWhereUniqueInput;
|
|
4996
5137
|
}>;
|
|
5138
|
+
type DeleteUserSkillFileMutationVariables = Exact<{
|
|
5139
|
+
id: Scalars['ID'];
|
|
5140
|
+
}>;
|
|
5141
|
+
type DeleteUserSkillFolderMutationVariables = Exact<{
|
|
5142
|
+
id: Scalars['ID'];
|
|
5143
|
+
}>;
|
|
4997
5144
|
type DisconnectIntegrationMutationVariables = Exact<{
|
|
4998
5145
|
providerKey: Scalars['String'];
|
|
4999
5146
|
}>;
|
|
5000
5147
|
type DismissPulseEventMutationVariables = Exact<{
|
|
5001
5148
|
id: Scalars['ID'];
|
|
5002
5149
|
}>;
|
|
5150
|
+
type ExecuteChatImportMutationVariables = Exact<{
|
|
5151
|
+
input: ChatImportExecuteInput;
|
|
5152
|
+
}>;
|
|
5003
5153
|
type GenerateUploadUriMutationVariables = Exact<{
|
|
5004
5154
|
data: FileInput;
|
|
5005
5155
|
}>;
|
|
5006
5156
|
type MarkPulseEventSeenMutationVariables = Exact<{
|
|
5007
5157
|
id: Scalars['ID'];
|
|
5008
5158
|
}>;
|
|
5159
|
+
type PreviewChatImportMutationVariables = Exact<{
|
|
5160
|
+
input: ChatImportPreviewInput;
|
|
5161
|
+
}>;
|
|
5009
5162
|
type ReanalyzeDocumentMutationVariables = Exact<{
|
|
5010
5163
|
id: Scalars['ID'];
|
|
5011
5164
|
}>;
|
|
@@ -5089,6 +5242,15 @@ type UpdateTableMutationVariables = Exact<{
|
|
|
5089
5242
|
data: TableUpdateInput;
|
|
5090
5243
|
where: TableWhereUniqueInput;
|
|
5091
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
|
+
}>;
|
|
5092
5254
|
type AgentQueryVariables = Exact<{
|
|
5093
5255
|
id: Scalars['ID'];
|
|
5094
5256
|
}>;
|
|
@@ -5564,6 +5726,18 @@ type TablesQueryVariables = Exact<{
|
|
|
5564
5726
|
last?: InputMaybe<Scalars['Int']>;
|
|
5565
5727
|
orderBy?: InputMaybe<Array<TableOrderByWithRelationInput> | TableOrderByWithRelationInput>;
|
|
5566
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
|
+
}>;
|
|
5567
5741
|
type WorkspaceDeletionScheduleQueryVariables = Exact<{
|
|
5568
5742
|
[key: string]: never;
|
|
5569
5743
|
}>;
|
|
@@ -5599,6 +5773,7 @@ type SendMessageStreamSubscription$1 = {
|
|
|
5599
5773
|
chatId: string;
|
|
5600
5774
|
from: ChatMessageFromEnum;
|
|
5601
5775
|
id: string;
|
|
5776
|
+
originMeta?: any | null;
|
|
5602
5777
|
sentAt: string;
|
|
5603
5778
|
contents?: Array<{
|
|
5604
5779
|
__typename: 'StreamMessageContentOutput';
|
|
@@ -5628,6 +5803,7 @@ type SendMessageStreamSubscription$1 = {
|
|
|
5628
5803
|
chatId: string;
|
|
5629
5804
|
from: ChatMessageFromEnum;
|
|
5630
5805
|
id: string;
|
|
5806
|
+
originMeta?: any | null;
|
|
5631
5807
|
sentAt: string;
|
|
5632
5808
|
contents?: Array<{
|
|
5633
5809
|
__typename: 'StreamMessageContentOutput';
|
|
@@ -5739,6 +5915,7 @@ declare class Chat extends DvinaModel {
|
|
|
5739
5915
|
readonly id: string;
|
|
5740
5916
|
readonly insightId: string | undefined;
|
|
5741
5917
|
readonly name: string;
|
|
5918
|
+
readonly originMeta: any | undefined;
|
|
5742
5919
|
readonly piiMaskRules: any | undefined;
|
|
5743
5920
|
readonly piiSanitizationEnabled: boolean;
|
|
5744
5921
|
readonly updatedAt: Date;
|
|
@@ -5752,11 +5929,34 @@ declare class Chat extends DvinaModel {
|
|
|
5752
5929
|
/** Query the messages relation for this Chat. Call .fetch() or .watch() to execute. */
|
|
5753
5930
|
messages(variables?: Omit<Chat_MessagesQueryVariables, 'id'>): Chat_MessagesQuery;
|
|
5754
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
|
+
}
|
|
5755
5954
|
declare class ChatMessage extends DvinaModel {
|
|
5756
5955
|
readonly actions: any;
|
|
5757
5956
|
readonly chatId: string;
|
|
5758
5957
|
readonly from: ChatMessageFromEnum;
|
|
5759
5958
|
readonly id: string;
|
|
5959
|
+
readonly originMeta: any | undefined;
|
|
5760
5960
|
readonly sentAt: Date;
|
|
5761
5961
|
constructor(request: DvinaRequest, data: ChatMessageFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
5762
5962
|
/** Query the artifacts relation for this ChatMessage. Call .fetch() or .watch() to execute. */
|
|
@@ -5957,6 +6157,14 @@ declare class Folder extends DvinaModel {
|
|
|
5957
6157
|
readonly updatedAt: Date;
|
|
5958
6158
|
constructor(request: DvinaRequest, data: FolderFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
5959
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
|
+
}
|
|
5960
6168
|
declare class IndexContentObject extends DvinaModel {
|
|
5961
6169
|
readonly content: string;
|
|
5962
6170
|
readonly metadata: any;
|
|
@@ -6248,6 +6456,7 @@ declare class StreamMessageOutput extends DvinaModel {
|
|
|
6248
6456
|
readonly chatId: string;
|
|
6249
6457
|
readonly from: ChatMessageFromEnum;
|
|
6250
6458
|
readonly id: string;
|
|
6459
|
+
readonly originMeta: any | undefined;
|
|
6251
6460
|
readonly sentAt: Date;
|
|
6252
6461
|
readonly contents: StreamMessageContentOutput[];
|
|
6253
6462
|
constructor(request: DvinaRequest, data: StreamMessageOutputFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
@@ -6368,6 +6577,45 @@ declare class UsageWindowsStatusType extends DvinaModel {
|
|
|
6368
6577
|
readonly week: WindowDetailType;
|
|
6369
6578
|
constructor(request: DvinaRequest, data: UsageWindowsStatusTypeFragment, syncEngine?: SyncEngine, baseUrl?: string);
|
|
6370
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
|
+
}
|
|
6371
6619
|
declare class WindowDetailType extends DvinaModel {
|
|
6372
6620
|
readonly cost: number;
|
|
6373
6621
|
readonly isExceeded: boolean;
|
|
@@ -6634,6 +6882,9 @@ declare class CancelWorkspaceDeletionMutation extends Request {
|
|
|
6634
6882
|
declare class ConnectIntegrationMutation extends Request {
|
|
6635
6883
|
fetch(variables: ConnectIntegrationMutationVariables, options?: FetchOptions): Promise<CreateIntegrationOutput>;
|
|
6636
6884
|
}
|
|
6885
|
+
declare class ContinueImportedChatMutation extends Request {
|
|
6886
|
+
fetch(variables: ContinueImportedChatMutationVariables): Promise<string>;
|
|
6887
|
+
}
|
|
6637
6888
|
declare class ContinueInterpretationMutation extends Request {
|
|
6638
6889
|
fetch(variables: ContinueInterpretationMutationVariables): Promise<boolean>;
|
|
6639
6890
|
}
|
|
@@ -6667,6 +6918,12 @@ declare class CreateReportMutation extends Request {
|
|
|
6667
6918
|
declare class CreateTableMutation extends Request {
|
|
6668
6919
|
fetch(variables: CreateTableMutationVariables, options?: FetchOptions): Promise<Table>;
|
|
6669
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
|
+
}
|
|
6670
6927
|
declare class DeleteAgentMutation extends Request {
|
|
6671
6928
|
fetch(variables: DeleteAgentMutationVariables, options?: FetchOptions): Promise<Agent>;
|
|
6672
6929
|
}
|
|
@@ -6700,18 +6957,30 @@ declare class DeleteReportMutation extends Request {
|
|
|
6700
6957
|
declare class DeleteTableMutation extends Request {
|
|
6701
6958
|
fetch(variables: DeleteTableMutationVariables, options?: FetchOptions): Promise<Table>;
|
|
6702
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
|
+
}
|
|
6703
6966
|
declare class DisconnectIntegrationMutation extends Request {
|
|
6704
6967
|
fetch(variables: DisconnectIntegrationMutationVariables): Promise<void>;
|
|
6705
6968
|
}
|
|
6706
6969
|
declare class DismissPulseEventMutation extends Request {
|
|
6707
6970
|
fetch(variables: DismissPulseEventMutationVariables, options?: FetchOptions): Promise<PulseEvent>;
|
|
6708
6971
|
}
|
|
6972
|
+
declare class ExecuteChatImportMutation extends Request {
|
|
6973
|
+
fetch(variables: ExecuteChatImportMutationVariables, options?: FetchOptions): Promise<ChatImportExecuteOutput>;
|
|
6974
|
+
}
|
|
6709
6975
|
declare class GenerateUploadUriMutation extends Request {
|
|
6710
6976
|
fetch(variables: GenerateUploadUriMutationVariables, options?: FetchOptions): Promise<FileModel>;
|
|
6711
6977
|
}
|
|
6712
6978
|
declare class MarkPulseEventSeenMutation extends Request {
|
|
6713
6979
|
fetch(variables: MarkPulseEventSeenMutationVariables, options?: FetchOptions): Promise<PulseEvent>;
|
|
6714
6980
|
}
|
|
6981
|
+
declare class PreviewChatImportMutation extends Request {
|
|
6982
|
+
fetch(variables: PreviewChatImportMutationVariables, options?: FetchOptions): Promise<ChatImportPreviewOutput>;
|
|
6983
|
+
}
|
|
6715
6984
|
declare class ReanalyzeDocumentMutation extends Request {
|
|
6716
6985
|
fetch(variables: ReanalyzeDocumentMutationVariables, options?: FetchOptions): Promise<Document>;
|
|
6717
6986
|
}
|
|
@@ -6778,6 +7047,12 @@ declare class UpdateReportMutation extends Request {
|
|
|
6778
7047
|
declare class UpdateTableMutation extends Request {
|
|
6779
7048
|
fetch(variables: UpdateTableMutationVariables, options?: FetchOptions): Promise<Table>;
|
|
6780
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
|
+
}
|
|
6781
7056
|
declare class AgentQuery<TIncluded = {}> extends Request {
|
|
6782
7057
|
private _variables;
|
|
6783
7058
|
private _includes;
|
|
@@ -7677,6 +7952,32 @@ declare class TablesQuery<TIncluded = {}> extends Request {
|
|
|
7677
7952
|
toRelations: Relation[];
|
|
7678
7953
|
}>;
|
|
7679
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
|
+
}
|
|
7680
7981
|
declare class WorkspaceDeletionScheduleQuery<TIncluded = {}> extends Request {
|
|
7681
7982
|
private _variables;
|
|
7682
7983
|
private _includes;
|
|
@@ -7723,6 +8024,8 @@ declare class DvinaSdk extends Request {
|
|
|
7723
8024
|
cancelWorkspaceDeletion(): Promise<boolean>;
|
|
7724
8025
|
/** Mutation: connectIntegration */
|
|
7725
8026
|
connectIntegration(variables: ConnectIntegrationMutationVariables): Promise<CreateIntegrationOutput>;
|
|
8027
|
+
/** Mutation: continueImportedChat (scalar) */
|
|
8028
|
+
continueImportedChat(variables: ContinueImportedChatMutationVariables): Promise<string>;
|
|
7726
8029
|
/** Mutation: continueInterpretation (scalar) */
|
|
7727
8030
|
continueInterpretation(variables: ContinueInterpretationMutationVariables): Promise<boolean>;
|
|
7728
8031
|
/** Mutation: createAgent */
|
|
@@ -7745,6 +8048,10 @@ declare class DvinaSdk extends Request {
|
|
|
7745
8048
|
createReport(variables: CreateReportMutationVariables): Promise<Report>;
|
|
7746
8049
|
/** Mutation: createTable */
|
|
7747
8050
|
createTable(variables: CreateTableMutationVariables): Promise<Table>;
|
|
8051
|
+
/** Mutation: createUserSkillFile */
|
|
8052
|
+
createUserSkillFile(variables: CreateUserSkillFileMutationVariables): Promise<UserSkillFileModel>;
|
|
8053
|
+
/** Mutation: createUserSkillFolder */
|
|
8054
|
+
createUserSkillFolder(variables: CreateUserSkillFolderMutationVariables): Promise<UserSkillFolderModel>;
|
|
7748
8055
|
/** Mutation: deleteAgent */
|
|
7749
8056
|
deleteAgent(variables: DeleteAgentMutationVariables): Promise<Agent>;
|
|
7750
8057
|
/** Mutation: deleteArtifact */
|
|
@@ -7767,14 +8074,22 @@ declare class DvinaSdk extends Request {
|
|
|
7767
8074
|
deleteReport(variables: DeleteReportMutationVariables): Promise<Report>;
|
|
7768
8075
|
/** Mutation: deleteTable */
|
|
7769
8076
|
deleteTable(variables: DeleteTableMutationVariables): Promise<Table>;
|
|
8077
|
+
/** Mutation: deleteUserSkillFile */
|
|
8078
|
+
deleteUserSkillFile(variables: DeleteUserSkillFileMutationVariables): Promise<UserSkillFileModel>;
|
|
8079
|
+
/** Mutation: deleteUserSkillFolder */
|
|
8080
|
+
deleteUserSkillFolder(variables: DeleteUserSkillFolderMutationVariables): Promise<UserSkillFolderModel>;
|
|
7770
8081
|
/** Mutation: disconnectIntegration (scalar) */
|
|
7771
8082
|
disconnectIntegration(variables: DisconnectIntegrationMutationVariables): Promise<void>;
|
|
7772
8083
|
/** Mutation: dismissPulseEvent */
|
|
7773
8084
|
dismissPulseEvent(variables: DismissPulseEventMutationVariables): Promise<PulseEvent>;
|
|
8085
|
+
/** Mutation: executeChatImport */
|
|
8086
|
+
executeChatImport(variables: ExecuteChatImportMutationVariables): Promise<ChatImportExecuteOutput>;
|
|
7774
8087
|
/** Mutation: generateUploadUri */
|
|
7775
8088
|
generateUploadUri(variables: GenerateUploadUriMutationVariables): Promise<FileModel>;
|
|
7776
8089
|
/** Mutation: markPulseEventSeen */
|
|
7777
8090
|
markPulseEventSeen(variables: MarkPulseEventSeenMutationVariables): Promise<PulseEvent>;
|
|
8091
|
+
/** Mutation: previewChatImport */
|
|
8092
|
+
previewChatImport(variables: PreviewChatImportMutationVariables): Promise<ChatImportPreviewOutput>;
|
|
7778
8093
|
/** Mutation: reanalyzeDocument */
|
|
7779
8094
|
reanalyzeDocument(variables: ReanalyzeDocumentMutationVariables): Promise<Document>;
|
|
7780
8095
|
/** Mutation: refineMindInstruction (scalar) */
|
|
@@ -7819,6 +8134,10 @@ declare class DvinaSdk extends Request {
|
|
|
7819
8134
|
updateReport(variables: UpdateReportMutationVariables): Promise<Report>;
|
|
7820
8135
|
/** Mutation: updateTable */
|
|
7821
8136
|
updateTable(variables: UpdateTableMutationVariables): Promise<Table>;
|
|
8137
|
+
/** Mutation: updateUserSkillFile */
|
|
8138
|
+
updateUserSkillFile(variables: UpdateUserSkillFileMutationVariables): Promise<UserSkillFileModel>;
|
|
8139
|
+
/** Mutation: updateUserSkillFolder */
|
|
8140
|
+
updateUserSkillFolder(variables: UpdateUserSkillFolderMutationVariables): Promise<UserSkillFolderModel>;
|
|
7822
8141
|
/** Query: agent — call .fetch() or .watch() to execute. */
|
|
7823
8142
|
agent(variables: AgentQueryVariables): AgentQuery;
|
|
7824
8143
|
/** Query: agents — call .fetch() or .watch() to execute. */
|
|
@@ -7935,6 +8254,14 @@ declare class DvinaSdk extends Request {
|
|
|
7935
8254
|
table(variables: TableQueryVariables): TableQuery;
|
|
7936
8255
|
/** Query: tables — call .fetch() or .watch() to execute. */
|
|
7937
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;
|
|
7938
8265
|
/** Query: workspaceDeletionSchedule — call .fetch() or .watch() to execute. */
|
|
7939
8266
|
workspaceDeletionSchedule(): WorkspaceDeletionScheduleQuery;
|
|
7940
8267
|
/** mcpAuthUpdates subscription */
|
|
@@ -8013,4 +8340,4 @@ declare const PRIMARY_KEY_CONFIG: Record<string, string | string[]>;
|
|
|
8013
8340
|
*/
|
|
8014
8341
|
declare const MUTATION_CACHE_RULES: Record<string, CacheRule>;
|
|
8015
8342
|
|
|
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 };
|
|
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 };
|