@dvina/sdk 4.0.172 → 4.0.199
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-4M7HM6CW.cjs → _generated_documents-AR6ISLTA.cjs} +767 -543
- package/dist/{_generated_documents-4M7HM6CW.cjs.map → _generated_documents-AR6ISLTA.cjs.map} +1 -1
- package/dist/_generated_documents-XGXYPVHZ.js +4 -0
- package/dist/{_generated_documents-IQN37P3X.js.map → _generated_documents-XGXYPVHZ.js.map} +1 -1
- package/dist/adapters/angular/index.cjs +4 -4
- package/dist/adapters/angular/index.d.cts +1 -1
- package/dist/adapters/angular/index.d.ts +1 -1
- package/dist/adapters/angular/index.js +2 -2
- package/dist/{chunk-H6YNVP5R.js → chunk-NE4IXNQK.js} +124 -19
- package/dist/chunk-NE4IXNQK.js.map +1 -0
- package/dist/{chunk-GMBMIL5U.cjs → chunk-SLPANKVO.cjs} +179 -18
- package/dist/chunk-SLPANKVO.cjs.map +1 -0
- package/dist/{chunk-7Q2QYIF6.cjs → chunk-SMEJRZG2.cjs} +2101 -532
- package/dist/chunk-SMEJRZG2.cjs.map +1 -0
- package/dist/{chunk-KFKQQFBI.js → chunk-U3M3VJSQ.js} +1580 -51
- package/dist/chunk-U3M3VJSQ.js.map +1 -0
- package/dist/{client-DPQN--1s.d.cts → client-Bcq6vHcs.d.cts} +1061 -5
- package/dist/{client-CMLCF01U.d.ts → client-VdxyMRd6.d.ts} +1061 -5
- package/dist/index.cjs +585 -397
- package/dist/index.d.cts +374 -3
- package/dist/index.d.ts +374 -3
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/dist/_generated_documents-IQN37P3X.js +0 -4
- package/dist/chunk-7Q2QYIF6.cjs.map +0 -1
- package/dist/chunk-GMBMIL5U.cjs.map +0 -1
- package/dist/chunk-H6YNVP5R.js.map +0 -1
- package/dist/chunk-KFKQQFBI.js.map +0 -1
|
@@ -445,6 +445,7 @@ type ChatCreateInput = {
|
|
|
445
445
|
agents?: InputMaybe<AgentCreateNestedManyWithoutChatsInput>;
|
|
446
446
|
artifacts?: InputMaybe<ArtifactCreateNestedManyWithoutChatInput>;
|
|
447
447
|
closedAt?: InputMaybe<Scalars['DateTime']>;
|
|
448
|
+
desktopDevice?: InputMaybe<DesktopDeviceCreateNestedOneWithoutChatsInput>;
|
|
448
449
|
id?: InputMaybe<Scalars['String']>;
|
|
449
450
|
insight?: InputMaybe<InsightCreateNestedOneWithoutChatInput>;
|
|
450
451
|
messages?: InputMaybe<ChatMessageCreateNestedManyWithoutChatInput>;
|
|
@@ -452,6 +453,47 @@ type ChatCreateInput = {
|
|
|
452
453
|
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
453
454
|
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
454
455
|
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
456
|
+
project?: InputMaybe<ProjectCreateNestedOneWithoutChatsInput>;
|
|
457
|
+
};
|
|
458
|
+
type ChatCreateManyDesktopDeviceInput = {
|
|
459
|
+
closedAt?: InputMaybe<Scalars['DateTime']>;
|
|
460
|
+
id?: InputMaybe<Scalars['String']>;
|
|
461
|
+
insightId?: InputMaybe<Scalars['String']>;
|
|
462
|
+
name: Scalars['String'];
|
|
463
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
464
|
+
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
465
|
+
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
466
|
+
projectId?: InputMaybe<Scalars['String']>;
|
|
467
|
+
};
|
|
468
|
+
type ChatCreateManyDesktopDeviceInputEnvelope = {
|
|
469
|
+
data: Array<ChatCreateManyDesktopDeviceInput>;
|
|
470
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']>;
|
|
471
|
+
};
|
|
472
|
+
type ChatCreateManyProjectInput = {
|
|
473
|
+
closedAt?: InputMaybe<Scalars['DateTime']>;
|
|
474
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
475
|
+
id?: InputMaybe<Scalars['String']>;
|
|
476
|
+
insightId?: InputMaybe<Scalars['String']>;
|
|
477
|
+
name: Scalars['String'];
|
|
478
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
479
|
+
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
480
|
+
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
481
|
+
};
|
|
482
|
+
type ChatCreateManyProjectInputEnvelope = {
|
|
483
|
+
data: Array<ChatCreateManyProjectInput>;
|
|
484
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']>;
|
|
485
|
+
};
|
|
486
|
+
type ChatCreateNestedManyWithoutDesktopDeviceInput = {
|
|
487
|
+
connect?: InputMaybe<Array<ChatWhereUniqueInput>>;
|
|
488
|
+
connectOrCreate?: InputMaybe<Array<ChatCreateOrConnectWithoutDesktopDeviceInput>>;
|
|
489
|
+
create?: InputMaybe<Array<ChatCreateWithoutDesktopDeviceInput>>;
|
|
490
|
+
createMany?: InputMaybe<ChatCreateManyDesktopDeviceInputEnvelope>;
|
|
491
|
+
};
|
|
492
|
+
type ChatCreateNestedManyWithoutProjectInput = {
|
|
493
|
+
connect?: InputMaybe<Array<ChatWhereUniqueInput>>;
|
|
494
|
+
connectOrCreate?: InputMaybe<Array<ChatCreateOrConnectWithoutProjectInput>>;
|
|
495
|
+
create?: InputMaybe<Array<ChatCreateWithoutProjectInput>>;
|
|
496
|
+
createMany?: InputMaybe<ChatCreateManyProjectInputEnvelope>;
|
|
455
497
|
};
|
|
456
498
|
type ChatCreateNestedOneWithoutArtifactsInput = {
|
|
457
499
|
connect?: InputMaybe<ChatWhereUniqueInput>;
|
|
@@ -472,6 +514,10 @@ type ChatCreateOrConnectWithoutArtifactsInput = {
|
|
|
472
514
|
create: ChatCreateWithoutArtifactsInput;
|
|
473
515
|
where: ChatWhereUniqueInput;
|
|
474
516
|
};
|
|
517
|
+
type ChatCreateOrConnectWithoutDesktopDeviceInput = {
|
|
518
|
+
create: ChatCreateWithoutDesktopDeviceInput;
|
|
519
|
+
where: ChatWhereUniqueInput;
|
|
520
|
+
};
|
|
475
521
|
type ChatCreateOrConnectWithoutInsightInput = {
|
|
476
522
|
create: ChatCreateWithoutInsightInput;
|
|
477
523
|
where: ChatWhereUniqueInput;
|
|
@@ -480,9 +526,27 @@ type ChatCreateOrConnectWithoutMessagesInput = {
|
|
|
480
526
|
create: ChatCreateWithoutMessagesInput;
|
|
481
527
|
where: ChatWhereUniqueInput;
|
|
482
528
|
};
|
|
529
|
+
type ChatCreateOrConnectWithoutProjectInput = {
|
|
530
|
+
create: ChatCreateWithoutProjectInput;
|
|
531
|
+
where: ChatWhereUniqueInput;
|
|
532
|
+
};
|
|
483
533
|
type ChatCreateWithoutArtifactsInput = {
|
|
484
534
|
agents?: InputMaybe<AgentCreateNestedManyWithoutChatsInput>;
|
|
485
535
|
closedAt?: InputMaybe<Scalars['DateTime']>;
|
|
536
|
+
desktopDevice?: InputMaybe<DesktopDeviceCreateNestedOneWithoutChatsInput>;
|
|
537
|
+
id?: InputMaybe<Scalars['String']>;
|
|
538
|
+
insight?: InputMaybe<InsightCreateNestedOneWithoutChatInput>;
|
|
539
|
+
messages?: InputMaybe<ChatMessageCreateNestedManyWithoutChatInput>;
|
|
540
|
+
name: Scalars['String'];
|
|
541
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
542
|
+
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
543
|
+
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
544
|
+
project?: InputMaybe<ProjectCreateNestedOneWithoutChatsInput>;
|
|
545
|
+
};
|
|
546
|
+
type ChatCreateWithoutDesktopDeviceInput = {
|
|
547
|
+
agents?: InputMaybe<AgentCreateNestedManyWithoutChatsInput>;
|
|
548
|
+
artifacts?: InputMaybe<ArtifactCreateNestedManyWithoutChatInput>;
|
|
549
|
+
closedAt?: InputMaybe<Scalars['DateTime']>;
|
|
486
550
|
id?: InputMaybe<Scalars['String']>;
|
|
487
551
|
insight?: InputMaybe<InsightCreateNestedOneWithoutChatInput>;
|
|
488
552
|
messages?: InputMaybe<ChatMessageCreateNestedManyWithoutChatInput>;
|
|
@@ -490,24 +554,42 @@ type ChatCreateWithoutArtifactsInput = {
|
|
|
490
554
|
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
491
555
|
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
492
556
|
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
557
|
+
project?: InputMaybe<ProjectCreateNestedOneWithoutChatsInput>;
|
|
493
558
|
};
|
|
494
559
|
type ChatCreateWithoutInsightInput = {
|
|
495
560
|
agents?: InputMaybe<AgentCreateNestedManyWithoutChatsInput>;
|
|
496
561
|
artifacts?: InputMaybe<ArtifactCreateNestedManyWithoutChatInput>;
|
|
497
562
|
closedAt?: InputMaybe<Scalars['DateTime']>;
|
|
563
|
+
desktopDevice?: InputMaybe<DesktopDeviceCreateNestedOneWithoutChatsInput>;
|
|
498
564
|
id?: InputMaybe<Scalars['String']>;
|
|
499
565
|
messages?: InputMaybe<ChatMessageCreateNestedManyWithoutChatInput>;
|
|
500
566
|
name: Scalars['String'];
|
|
501
567
|
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
502
568
|
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
503
569
|
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
570
|
+
project?: InputMaybe<ProjectCreateNestedOneWithoutChatsInput>;
|
|
504
571
|
};
|
|
505
572
|
type ChatCreateWithoutMessagesInput = {
|
|
506
573
|
agents?: InputMaybe<AgentCreateNestedManyWithoutChatsInput>;
|
|
507
574
|
artifacts?: InputMaybe<ArtifactCreateNestedManyWithoutChatInput>;
|
|
508
575
|
closedAt?: InputMaybe<Scalars['DateTime']>;
|
|
576
|
+
desktopDevice?: InputMaybe<DesktopDeviceCreateNestedOneWithoutChatsInput>;
|
|
577
|
+
id?: InputMaybe<Scalars['String']>;
|
|
578
|
+
insight?: InputMaybe<InsightCreateNestedOneWithoutChatInput>;
|
|
579
|
+
name: Scalars['String'];
|
|
580
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
581
|
+
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
582
|
+
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
583
|
+
project?: InputMaybe<ProjectCreateNestedOneWithoutChatsInput>;
|
|
584
|
+
};
|
|
585
|
+
type ChatCreateWithoutProjectInput = {
|
|
586
|
+
agents?: InputMaybe<AgentCreateNestedManyWithoutChatsInput>;
|
|
587
|
+
artifacts?: InputMaybe<ArtifactCreateNestedManyWithoutChatInput>;
|
|
588
|
+
closedAt?: InputMaybe<Scalars['DateTime']>;
|
|
589
|
+
desktopDevice?: InputMaybe<DesktopDeviceCreateNestedOneWithoutChatsInput>;
|
|
509
590
|
id?: InputMaybe<Scalars['String']>;
|
|
510
591
|
insight?: InputMaybe<InsightCreateNestedOneWithoutChatInput>;
|
|
592
|
+
messages?: InputMaybe<ChatMessageCreateNestedManyWithoutChatInput>;
|
|
511
593
|
name: Scalars['String'];
|
|
512
594
|
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
513
595
|
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
@@ -755,9 +837,11 @@ type ChatOrderByRelationAggregateInput = {
|
|
|
755
837
|
_count?: InputMaybe<SortOrder>;
|
|
756
838
|
};
|
|
757
839
|
declare enum ChatOrderByRelevanceFieldEnum {
|
|
840
|
+
DeviceId = "deviceId",
|
|
758
841
|
Id = "id",
|
|
759
842
|
InsightId = "insightId",
|
|
760
843
|
Name = "name",
|
|
844
|
+
ProjectId = "projectId",
|
|
761
845
|
UserId = "userId",
|
|
762
846
|
WorkspaceId = "workspaceId"
|
|
763
847
|
}
|
|
@@ -772,6 +856,8 @@ type ChatOrderByWithRelationInput = {
|
|
|
772
856
|
artifacts?: InputMaybe<ArtifactOrderByRelationAggregateInput>;
|
|
773
857
|
closedAt?: InputMaybe<SortOrderInput>;
|
|
774
858
|
createdAt?: InputMaybe<SortOrder>;
|
|
859
|
+
desktopDevice?: InputMaybe<DesktopDeviceOrderByWithRelationInput>;
|
|
860
|
+
deviceId?: InputMaybe<SortOrderInput>;
|
|
775
861
|
id?: InputMaybe<SortOrder>;
|
|
776
862
|
insight?: InputMaybe<InsightOrderByWithRelationInput>;
|
|
777
863
|
insightId?: InputMaybe<SortOrderInput>;
|
|
@@ -780,12 +866,30 @@ type ChatOrderByWithRelationInput = {
|
|
|
780
866
|
originMeta?: InputMaybe<SortOrderInput>;
|
|
781
867
|
piiMaskRules?: InputMaybe<SortOrderInput>;
|
|
782
868
|
piiSanitizationEnabled?: InputMaybe<SortOrder>;
|
|
869
|
+
project?: InputMaybe<ProjectOrderByWithRelationInput>;
|
|
870
|
+
projectId?: InputMaybe<SortOrderInput>;
|
|
783
871
|
updatedAt?: InputMaybe<SortOrder>;
|
|
784
872
|
};
|
|
785
873
|
type ChatScalarRelationFilter = {
|
|
786
874
|
is?: InputMaybe<ChatWhereInput>;
|
|
787
875
|
isNot?: InputMaybe<ChatWhereInput>;
|
|
788
876
|
};
|
|
877
|
+
type ChatScalarWhereInput = {
|
|
878
|
+
AND?: InputMaybe<Array<ChatScalarWhereInput>>;
|
|
879
|
+
NOT?: InputMaybe<Array<ChatScalarWhereInput>>;
|
|
880
|
+
OR?: InputMaybe<Array<ChatScalarWhereInput>>;
|
|
881
|
+
closedAt?: InputMaybe<DateTimeFilter>;
|
|
882
|
+
createdAt?: InputMaybe<DateTimeFilter>;
|
|
883
|
+
deviceId?: InputMaybe<StringFilter>;
|
|
884
|
+
id?: InputMaybe<StringFilter>;
|
|
885
|
+
insightId?: InputMaybe<StringFilter>;
|
|
886
|
+
name?: InputMaybe<StringFilter>;
|
|
887
|
+
originMeta?: InputMaybe<JsonFilter>;
|
|
888
|
+
piiMaskRules?: InputMaybe<JsonFilter>;
|
|
889
|
+
piiSanitizationEnabled?: InputMaybe<BoolFilter>;
|
|
890
|
+
projectId?: InputMaybe<StringFilter>;
|
|
891
|
+
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
892
|
+
};
|
|
789
893
|
declare enum ChatSourceImportFidelityEnum {
|
|
790
894
|
Exact = "Exact",
|
|
791
895
|
Normalized = "Normalized"
|
|
@@ -807,6 +911,7 @@ type ChatUpdateInput = {
|
|
|
807
911
|
agents?: InputMaybe<AgentUpdateManyWithoutChatsNestedInput>;
|
|
808
912
|
artifacts?: InputMaybe<ArtifactUpdateManyWithoutChatNestedInput>;
|
|
809
913
|
closedAt?: InputMaybe<Scalars['DateTime']>;
|
|
914
|
+
desktopDevice?: InputMaybe<DesktopDeviceUpdateOneWithoutChatsNestedInput>;
|
|
810
915
|
id?: InputMaybe<Scalars['String']>;
|
|
811
916
|
insight?: InputMaybe<InsightUpdateOneWithoutChatNestedInput>;
|
|
812
917
|
messages?: InputMaybe<ChatMessageUpdateManyWithoutChatNestedInput>;
|
|
@@ -814,6 +919,49 @@ type ChatUpdateInput = {
|
|
|
814
919
|
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
815
920
|
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
816
921
|
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
922
|
+
project?: InputMaybe<ProjectUpdateOneWithoutChatsNestedInput>;
|
|
923
|
+
};
|
|
924
|
+
type ChatUpdateManyMutationInput = {
|
|
925
|
+
closedAt?: InputMaybe<Scalars['DateTime']>;
|
|
926
|
+
id?: InputMaybe<Scalars['String']>;
|
|
927
|
+
name?: InputMaybe<Scalars['String']>;
|
|
928
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
929
|
+
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
930
|
+
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
931
|
+
};
|
|
932
|
+
type ChatUpdateManyWithWhereWithoutDesktopDeviceInput = {
|
|
933
|
+
data: ChatUpdateManyMutationInput;
|
|
934
|
+
where: ChatScalarWhereInput;
|
|
935
|
+
};
|
|
936
|
+
type ChatUpdateManyWithWhereWithoutProjectInput = {
|
|
937
|
+
data: ChatUpdateManyMutationInput;
|
|
938
|
+
where: ChatScalarWhereInput;
|
|
939
|
+
};
|
|
940
|
+
type ChatUpdateManyWithoutDesktopDeviceNestedInput = {
|
|
941
|
+
connect?: InputMaybe<Array<ChatWhereUniqueInput>>;
|
|
942
|
+
connectOrCreate?: InputMaybe<Array<ChatCreateOrConnectWithoutDesktopDeviceInput>>;
|
|
943
|
+
create?: InputMaybe<Array<ChatCreateWithoutDesktopDeviceInput>>;
|
|
944
|
+
createMany?: InputMaybe<ChatCreateManyDesktopDeviceInputEnvelope>;
|
|
945
|
+
delete?: InputMaybe<Array<ChatWhereUniqueInput>>;
|
|
946
|
+
deleteMany?: InputMaybe<Array<ChatScalarWhereInput>>;
|
|
947
|
+
disconnect?: InputMaybe<Array<ChatWhereUniqueInput>>;
|
|
948
|
+
set?: InputMaybe<Array<ChatWhereUniqueInput>>;
|
|
949
|
+
update?: InputMaybe<Array<ChatUpdateWithWhereUniqueWithoutDesktopDeviceInput>>;
|
|
950
|
+
updateMany?: InputMaybe<Array<ChatUpdateManyWithWhereWithoutDesktopDeviceInput>>;
|
|
951
|
+
upsert?: InputMaybe<Array<ChatUpsertWithWhereUniqueWithoutDesktopDeviceInput>>;
|
|
952
|
+
};
|
|
953
|
+
type ChatUpdateManyWithoutProjectNestedInput = {
|
|
954
|
+
connect?: InputMaybe<Array<ChatWhereUniqueInput>>;
|
|
955
|
+
connectOrCreate?: InputMaybe<Array<ChatCreateOrConnectWithoutProjectInput>>;
|
|
956
|
+
create?: InputMaybe<Array<ChatCreateWithoutProjectInput>>;
|
|
957
|
+
createMany?: InputMaybe<ChatCreateManyProjectInputEnvelope>;
|
|
958
|
+
delete?: InputMaybe<Array<ChatWhereUniqueInput>>;
|
|
959
|
+
deleteMany?: InputMaybe<Array<ChatScalarWhereInput>>;
|
|
960
|
+
disconnect?: InputMaybe<Array<ChatWhereUniqueInput>>;
|
|
961
|
+
set?: InputMaybe<Array<ChatWhereUniqueInput>>;
|
|
962
|
+
update?: InputMaybe<Array<ChatUpdateWithWhereUniqueWithoutProjectInput>>;
|
|
963
|
+
updateMany?: InputMaybe<Array<ChatUpdateManyWithWhereWithoutProjectInput>>;
|
|
964
|
+
upsert?: InputMaybe<Array<ChatUpsertWithWhereUniqueWithoutProjectInput>>;
|
|
817
965
|
};
|
|
818
966
|
type ChatUpdateOneRequiredWithoutMessagesNestedInput = {
|
|
819
967
|
connect?: InputMaybe<ChatWhereUniqueInput>;
|
|
@@ -852,9 +1000,31 @@ type ChatUpdateToOneWithWhereWithoutMessagesInput = {
|
|
|
852
1000
|
data: ChatUpdateWithoutMessagesInput;
|
|
853
1001
|
where?: InputMaybe<ChatWhereInput>;
|
|
854
1002
|
};
|
|
1003
|
+
type ChatUpdateWithWhereUniqueWithoutDesktopDeviceInput = {
|
|
1004
|
+
data: ChatUpdateWithoutDesktopDeviceInput;
|
|
1005
|
+
where: ChatWhereUniqueInput;
|
|
1006
|
+
};
|
|
1007
|
+
type ChatUpdateWithWhereUniqueWithoutProjectInput = {
|
|
1008
|
+
data: ChatUpdateWithoutProjectInput;
|
|
1009
|
+
where: ChatWhereUniqueInput;
|
|
1010
|
+
};
|
|
855
1011
|
type ChatUpdateWithoutArtifactsInput = {
|
|
856
1012
|
agents?: InputMaybe<AgentUpdateManyWithoutChatsNestedInput>;
|
|
857
1013
|
closedAt?: InputMaybe<Scalars['DateTime']>;
|
|
1014
|
+
desktopDevice?: InputMaybe<DesktopDeviceUpdateOneWithoutChatsNestedInput>;
|
|
1015
|
+
id?: InputMaybe<Scalars['String']>;
|
|
1016
|
+
insight?: InputMaybe<InsightUpdateOneWithoutChatNestedInput>;
|
|
1017
|
+
messages?: InputMaybe<ChatMessageUpdateManyWithoutChatNestedInput>;
|
|
1018
|
+
name?: InputMaybe<Scalars['String']>;
|
|
1019
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
1020
|
+
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
1021
|
+
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1022
|
+
project?: InputMaybe<ProjectUpdateOneWithoutChatsNestedInput>;
|
|
1023
|
+
};
|
|
1024
|
+
type ChatUpdateWithoutDesktopDeviceInput = {
|
|
1025
|
+
agents?: InputMaybe<AgentUpdateManyWithoutChatsNestedInput>;
|
|
1026
|
+
artifacts?: InputMaybe<ArtifactUpdateManyWithoutChatNestedInput>;
|
|
1027
|
+
closedAt?: InputMaybe<Scalars['DateTime']>;
|
|
858
1028
|
id?: InputMaybe<Scalars['String']>;
|
|
859
1029
|
insight?: InputMaybe<InsightUpdateOneWithoutChatNestedInput>;
|
|
860
1030
|
messages?: InputMaybe<ChatMessageUpdateManyWithoutChatNestedInput>;
|
|
@@ -862,28 +1032,56 @@ type ChatUpdateWithoutArtifactsInput = {
|
|
|
862
1032
|
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
863
1033
|
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
864
1034
|
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1035
|
+
project?: InputMaybe<ProjectUpdateOneWithoutChatsNestedInput>;
|
|
865
1036
|
};
|
|
866
1037
|
type ChatUpdateWithoutInsightInput = {
|
|
867
1038
|
agents?: InputMaybe<AgentUpdateManyWithoutChatsNestedInput>;
|
|
868
1039
|
artifacts?: InputMaybe<ArtifactUpdateManyWithoutChatNestedInput>;
|
|
869
1040
|
closedAt?: InputMaybe<Scalars['DateTime']>;
|
|
1041
|
+
desktopDevice?: InputMaybe<DesktopDeviceUpdateOneWithoutChatsNestedInput>;
|
|
870
1042
|
id?: InputMaybe<Scalars['String']>;
|
|
871
1043
|
messages?: InputMaybe<ChatMessageUpdateManyWithoutChatNestedInput>;
|
|
872
1044
|
name?: InputMaybe<Scalars['String']>;
|
|
873
1045
|
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
874
1046
|
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
875
1047
|
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1048
|
+
project?: InputMaybe<ProjectUpdateOneWithoutChatsNestedInput>;
|
|
876
1049
|
};
|
|
877
1050
|
type ChatUpdateWithoutMessagesInput = {
|
|
878
1051
|
agents?: InputMaybe<AgentUpdateManyWithoutChatsNestedInput>;
|
|
879
1052
|
artifacts?: InputMaybe<ArtifactUpdateManyWithoutChatNestedInput>;
|
|
880
1053
|
closedAt?: InputMaybe<Scalars['DateTime']>;
|
|
1054
|
+
desktopDevice?: InputMaybe<DesktopDeviceUpdateOneWithoutChatsNestedInput>;
|
|
881
1055
|
id?: InputMaybe<Scalars['String']>;
|
|
882
1056
|
insight?: InputMaybe<InsightUpdateOneWithoutChatNestedInput>;
|
|
883
1057
|
name?: InputMaybe<Scalars['String']>;
|
|
884
1058
|
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
885
1059
|
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
886
1060
|
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1061
|
+
project?: InputMaybe<ProjectUpdateOneWithoutChatsNestedInput>;
|
|
1062
|
+
};
|
|
1063
|
+
type ChatUpdateWithoutProjectInput = {
|
|
1064
|
+
agents?: InputMaybe<AgentUpdateManyWithoutChatsNestedInput>;
|
|
1065
|
+
artifacts?: InputMaybe<ArtifactUpdateManyWithoutChatNestedInput>;
|
|
1066
|
+
closedAt?: InputMaybe<Scalars['DateTime']>;
|
|
1067
|
+
desktopDevice?: InputMaybe<DesktopDeviceUpdateOneWithoutChatsNestedInput>;
|
|
1068
|
+
id?: InputMaybe<Scalars['String']>;
|
|
1069
|
+
insight?: InputMaybe<InsightUpdateOneWithoutChatNestedInput>;
|
|
1070
|
+
messages?: InputMaybe<ChatMessageUpdateManyWithoutChatNestedInput>;
|
|
1071
|
+
name?: InputMaybe<Scalars['String']>;
|
|
1072
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
1073
|
+
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
1074
|
+
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
1075
|
+
};
|
|
1076
|
+
type ChatUpsertWithWhereUniqueWithoutDesktopDeviceInput = {
|
|
1077
|
+
create: ChatCreateWithoutDesktopDeviceInput;
|
|
1078
|
+
update: ChatUpdateWithoutDesktopDeviceInput;
|
|
1079
|
+
where: ChatWhereUniqueInput;
|
|
1080
|
+
};
|
|
1081
|
+
type ChatUpsertWithWhereUniqueWithoutProjectInput = {
|
|
1082
|
+
create: ChatCreateWithoutProjectInput;
|
|
1083
|
+
update: ChatUpdateWithoutProjectInput;
|
|
1084
|
+
where: ChatWhereUniqueInput;
|
|
887
1085
|
};
|
|
888
1086
|
type ChatUpsertWithoutArtifactsInput = {
|
|
889
1087
|
create: ChatCreateWithoutArtifactsInput;
|
|
@@ -908,6 +1106,8 @@ type ChatWhereInput = {
|
|
|
908
1106
|
artifacts?: InputMaybe<ArtifactListRelationFilter>;
|
|
909
1107
|
closedAt?: InputMaybe<DateTimeFilter>;
|
|
910
1108
|
createdAt?: InputMaybe<DateTimeFilter>;
|
|
1109
|
+
desktopDevice?: InputMaybe<DesktopDeviceScalarRelationFilter>;
|
|
1110
|
+
deviceId?: InputMaybe<StringFilter>;
|
|
911
1111
|
id?: InputMaybe<StringFilter>;
|
|
912
1112
|
insight?: InputMaybe<InsightScalarRelationFilter>;
|
|
913
1113
|
insightId?: InputMaybe<StringFilter>;
|
|
@@ -916,6 +1116,8 @@ type ChatWhereInput = {
|
|
|
916
1116
|
originMeta?: InputMaybe<JsonFilter>;
|
|
917
1117
|
piiMaskRules?: InputMaybe<JsonFilter>;
|
|
918
1118
|
piiSanitizationEnabled?: InputMaybe<BoolFilter>;
|
|
1119
|
+
project?: InputMaybe<ProjectScalarRelationFilter>;
|
|
1120
|
+
projectId?: InputMaybe<StringFilter>;
|
|
919
1121
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
920
1122
|
};
|
|
921
1123
|
type ChatWhereUniqueInput = {
|
|
@@ -926,6 +1128,8 @@ type ChatWhereUniqueInput = {
|
|
|
926
1128
|
artifacts?: InputMaybe<ArtifactListRelationFilter>;
|
|
927
1129
|
closedAt?: InputMaybe<DateTimeFilter>;
|
|
928
1130
|
createdAt?: InputMaybe<DateTimeFilter>;
|
|
1131
|
+
desktopDevice?: InputMaybe<DesktopDeviceScalarRelationFilter>;
|
|
1132
|
+
deviceId?: InputMaybe<StringFilter>;
|
|
929
1133
|
id?: InputMaybe<Scalars['String']>;
|
|
930
1134
|
insight?: InputMaybe<InsightScalarRelationFilter>;
|
|
931
1135
|
insightId?: InputMaybe<Scalars['String']>;
|
|
@@ -934,6 +1138,8 @@ type ChatWhereUniqueInput = {
|
|
|
934
1138
|
originMeta?: InputMaybe<JsonFilter>;
|
|
935
1139
|
piiMaskRules?: InputMaybe<JsonFilter>;
|
|
936
1140
|
piiSanitizationEnabled?: InputMaybe<BoolFilter>;
|
|
1141
|
+
project?: InputMaybe<ProjectScalarRelationFilter>;
|
|
1142
|
+
projectId?: InputMaybe<StringFilter>;
|
|
937
1143
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
938
1144
|
};
|
|
939
1145
|
type ContentBlockCreateManyChatMessageInput = {
|
|
@@ -1278,6 +1484,208 @@ type DateTimeFilter = {
|
|
|
1278
1484
|
not?: InputMaybe<DateTimeFilter>;
|
|
1279
1485
|
notIn?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1280
1486
|
};
|
|
1487
|
+
type DesktopDeviceCreateInput = {
|
|
1488
|
+
appVersion?: InputMaybe<Scalars['String']>;
|
|
1489
|
+
chats?: InputMaybe<ChatCreateNestedManyWithoutDesktopDeviceInput>;
|
|
1490
|
+
desktopBindings?: InputMaybe<ProjectDesktopBindingCreateNestedManyWithoutDeviceInput>;
|
|
1491
|
+
deviceLabel: Scalars['String'];
|
|
1492
|
+
deviceType?: InputMaybe<Scalars['String']>;
|
|
1493
|
+
fingerprint: Scalars['String'];
|
|
1494
|
+
id?: InputMaybe<Scalars['String']>;
|
|
1495
|
+
lastSeenAt?: InputMaybe<Scalars['DateTime']>;
|
|
1496
|
+
macAddress?: InputMaybe<Scalars['String']>;
|
|
1497
|
+
manufacturer?: InputMaybe<Scalars['String']>;
|
|
1498
|
+
modelName?: InputMaybe<Scalars['String']>;
|
|
1499
|
+
modelYear?: InputMaybe<Scalars['Int']>;
|
|
1500
|
+
platform?: InputMaybe<Scalars['String']>;
|
|
1501
|
+
};
|
|
1502
|
+
type DesktopDeviceCreateNestedOneWithoutChatsInput = {
|
|
1503
|
+
connect?: InputMaybe<DesktopDeviceWhereUniqueInput>;
|
|
1504
|
+
connectOrCreate?: InputMaybe<DesktopDeviceCreateOrConnectWithoutChatsInput>;
|
|
1505
|
+
create?: InputMaybe<DesktopDeviceCreateWithoutChatsInput>;
|
|
1506
|
+
};
|
|
1507
|
+
type DesktopDeviceCreateNestedOneWithoutDesktopBindingsInput = {
|
|
1508
|
+
connect?: InputMaybe<DesktopDeviceWhereUniqueInput>;
|
|
1509
|
+
connectOrCreate?: InputMaybe<DesktopDeviceCreateOrConnectWithoutDesktopBindingsInput>;
|
|
1510
|
+
create?: InputMaybe<DesktopDeviceCreateWithoutDesktopBindingsInput>;
|
|
1511
|
+
};
|
|
1512
|
+
type DesktopDeviceCreateOrConnectWithoutChatsInput = {
|
|
1513
|
+
create: DesktopDeviceCreateWithoutChatsInput;
|
|
1514
|
+
where: DesktopDeviceWhereUniqueInput;
|
|
1515
|
+
};
|
|
1516
|
+
type DesktopDeviceCreateOrConnectWithoutDesktopBindingsInput = {
|
|
1517
|
+
create: DesktopDeviceCreateWithoutDesktopBindingsInput;
|
|
1518
|
+
where: DesktopDeviceWhereUniqueInput;
|
|
1519
|
+
};
|
|
1520
|
+
type DesktopDeviceCreateWithoutChatsInput = {
|
|
1521
|
+
appVersion?: InputMaybe<Scalars['String']>;
|
|
1522
|
+
desktopBindings?: InputMaybe<ProjectDesktopBindingCreateNestedManyWithoutDeviceInput>;
|
|
1523
|
+
deviceLabel: Scalars['String'];
|
|
1524
|
+
deviceType?: InputMaybe<Scalars['String']>;
|
|
1525
|
+
fingerprint: Scalars['String'];
|
|
1526
|
+
id?: InputMaybe<Scalars['String']>;
|
|
1527
|
+
lastSeenAt?: InputMaybe<Scalars['DateTime']>;
|
|
1528
|
+
macAddress?: InputMaybe<Scalars['String']>;
|
|
1529
|
+
manufacturer?: InputMaybe<Scalars['String']>;
|
|
1530
|
+
modelName?: InputMaybe<Scalars['String']>;
|
|
1531
|
+
modelYear?: InputMaybe<Scalars['Int']>;
|
|
1532
|
+
platform?: InputMaybe<Scalars['String']>;
|
|
1533
|
+
};
|
|
1534
|
+
type DesktopDeviceCreateWithoutDesktopBindingsInput = {
|
|
1535
|
+
appVersion?: InputMaybe<Scalars['String']>;
|
|
1536
|
+
chats?: InputMaybe<ChatCreateNestedManyWithoutDesktopDeviceInput>;
|
|
1537
|
+
deviceLabel: Scalars['String'];
|
|
1538
|
+
deviceType?: InputMaybe<Scalars['String']>;
|
|
1539
|
+
fingerprint: Scalars['String'];
|
|
1540
|
+
id?: InputMaybe<Scalars['String']>;
|
|
1541
|
+
lastSeenAt?: InputMaybe<Scalars['DateTime']>;
|
|
1542
|
+
macAddress?: InputMaybe<Scalars['String']>;
|
|
1543
|
+
manufacturer?: InputMaybe<Scalars['String']>;
|
|
1544
|
+
modelName?: InputMaybe<Scalars['String']>;
|
|
1545
|
+
modelYear?: InputMaybe<Scalars['Int']>;
|
|
1546
|
+
platform?: InputMaybe<Scalars['String']>;
|
|
1547
|
+
};
|
|
1548
|
+
declare enum DesktopDeviceOrderByRelevanceFieldEnum {
|
|
1549
|
+
AppVersion = "appVersion",
|
|
1550
|
+
DeviceLabel = "deviceLabel",
|
|
1551
|
+
DeviceType = "deviceType",
|
|
1552
|
+
Fingerprint = "fingerprint",
|
|
1553
|
+
Id = "id",
|
|
1554
|
+
MacAddress = "macAddress",
|
|
1555
|
+
Manufacturer = "manufacturer",
|
|
1556
|
+
ModelName = "modelName",
|
|
1557
|
+
Platform = "platform",
|
|
1558
|
+
UserId = "userId",
|
|
1559
|
+
WorkspaceId = "workspaceId"
|
|
1560
|
+
}
|
|
1561
|
+
type DesktopDeviceOrderByRelevanceInput = {
|
|
1562
|
+
fields: Array<DesktopDeviceOrderByRelevanceFieldEnum>;
|
|
1563
|
+
search: Scalars['String'];
|
|
1564
|
+
sort: SortOrder;
|
|
1565
|
+
};
|
|
1566
|
+
type DesktopDeviceOrderByWithRelationInput = {
|
|
1567
|
+
_relevance?: InputMaybe<DesktopDeviceOrderByRelevanceInput>;
|
|
1568
|
+
appVersion?: InputMaybe<SortOrderInput>;
|
|
1569
|
+
chats?: InputMaybe<ChatOrderByRelationAggregateInput>;
|
|
1570
|
+
createdAt?: InputMaybe<SortOrder>;
|
|
1571
|
+
desktopBindings?: InputMaybe<ProjectDesktopBindingOrderByRelationAggregateInput>;
|
|
1572
|
+
deviceLabel?: InputMaybe<SortOrder>;
|
|
1573
|
+
deviceType?: InputMaybe<SortOrderInput>;
|
|
1574
|
+
id?: InputMaybe<SortOrder>;
|
|
1575
|
+
lastSeenAt?: InputMaybe<SortOrderInput>;
|
|
1576
|
+
macAddress?: InputMaybe<SortOrderInput>;
|
|
1577
|
+
manufacturer?: InputMaybe<SortOrderInput>;
|
|
1578
|
+
modelName?: InputMaybe<SortOrderInput>;
|
|
1579
|
+
modelYear?: InputMaybe<SortOrderInput>;
|
|
1580
|
+
platform?: InputMaybe<SortOrderInput>;
|
|
1581
|
+
updatedAt?: InputMaybe<SortOrder>;
|
|
1582
|
+
};
|
|
1583
|
+
type DesktopDeviceScalarRelationFilter = {
|
|
1584
|
+
is?: InputMaybe<DesktopDeviceWhereInput>;
|
|
1585
|
+
isNot?: InputMaybe<DesktopDeviceWhereInput>;
|
|
1586
|
+
};
|
|
1587
|
+
type DesktopDeviceUpdateOneRequiredWithoutDesktopBindingsNestedInput = {
|
|
1588
|
+
connect?: InputMaybe<DesktopDeviceWhereUniqueInput>;
|
|
1589
|
+
connectOrCreate?: InputMaybe<DesktopDeviceCreateOrConnectWithoutDesktopBindingsInput>;
|
|
1590
|
+
create?: InputMaybe<DesktopDeviceCreateWithoutDesktopBindingsInput>;
|
|
1591
|
+
update?: InputMaybe<DesktopDeviceUpdateToOneWithWhereWithoutDesktopBindingsInput>;
|
|
1592
|
+
upsert?: InputMaybe<DesktopDeviceUpsertWithoutDesktopBindingsInput>;
|
|
1593
|
+
};
|
|
1594
|
+
type DesktopDeviceUpdateOneWithoutChatsNestedInput = {
|
|
1595
|
+
connect?: InputMaybe<DesktopDeviceWhereUniqueInput>;
|
|
1596
|
+
connectOrCreate?: InputMaybe<DesktopDeviceCreateOrConnectWithoutChatsInput>;
|
|
1597
|
+
create?: InputMaybe<DesktopDeviceCreateWithoutChatsInput>;
|
|
1598
|
+
delete?: InputMaybe<DesktopDeviceWhereInput>;
|
|
1599
|
+
disconnect?: InputMaybe<DesktopDeviceWhereInput>;
|
|
1600
|
+
update?: InputMaybe<DesktopDeviceUpdateToOneWithWhereWithoutChatsInput>;
|
|
1601
|
+
upsert?: InputMaybe<DesktopDeviceUpsertWithoutChatsInput>;
|
|
1602
|
+
};
|
|
1603
|
+
type DesktopDeviceUpdateToOneWithWhereWithoutChatsInput = {
|
|
1604
|
+
data: DesktopDeviceUpdateWithoutChatsInput;
|
|
1605
|
+
where?: InputMaybe<DesktopDeviceWhereInput>;
|
|
1606
|
+
};
|
|
1607
|
+
type DesktopDeviceUpdateToOneWithWhereWithoutDesktopBindingsInput = {
|
|
1608
|
+
data: DesktopDeviceUpdateWithoutDesktopBindingsInput;
|
|
1609
|
+
where?: InputMaybe<DesktopDeviceWhereInput>;
|
|
1610
|
+
};
|
|
1611
|
+
type DesktopDeviceUpdateWithoutChatsInput = {
|
|
1612
|
+
appVersion?: InputMaybe<Scalars['String']>;
|
|
1613
|
+
desktopBindings?: InputMaybe<ProjectDesktopBindingUpdateManyWithoutDeviceNestedInput>;
|
|
1614
|
+
deviceLabel?: InputMaybe<Scalars['String']>;
|
|
1615
|
+
deviceType?: InputMaybe<Scalars['String']>;
|
|
1616
|
+
id?: InputMaybe<Scalars['String']>;
|
|
1617
|
+
lastSeenAt?: InputMaybe<Scalars['DateTime']>;
|
|
1618
|
+
macAddress?: InputMaybe<Scalars['String']>;
|
|
1619
|
+
manufacturer?: InputMaybe<Scalars['String']>;
|
|
1620
|
+
modelName?: InputMaybe<Scalars['String']>;
|
|
1621
|
+
modelYear?: InputMaybe<Scalars['Int']>;
|
|
1622
|
+
platform?: InputMaybe<Scalars['String']>;
|
|
1623
|
+
};
|
|
1624
|
+
type DesktopDeviceUpdateWithoutDesktopBindingsInput = {
|
|
1625
|
+
appVersion?: InputMaybe<Scalars['String']>;
|
|
1626
|
+
chats?: InputMaybe<ChatUpdateManyWithoutDesktopDeviceNestedInput>;
|
|
1627
|
+
deviceLabel?: InputMaybe<Scalars['String']>;
|
|
1628
|
+
deviceType?: InputMaybe<Scalars['String']>;
|
|
1629
|
+
id?: InputMaybe<Scalars['String']>;
|
|
1630
|
+
lastSeenAt?: InputMaybe<Scalars['DateTime']>;
|
|
1631
|
+
macAddress?: InputMaybe<Scalars['String']>;
|
|
1632
|
+
manufacturer?: InputMaybe<Scalars['String']>;
|
|
1633
|
+
modelName?: InputMaybe<Scalars['String']>;
|
|
1634
|
+
modelYear?: InputMaybe<Scalars['Int']>;
|
|
1635
|
+
platform?: InputMaybe<Scalars['String']>;
|
|
1636
|
+
};
|
|
1637
|
+
type DesktopDeviceUpsertWithoutChatsInput = {
|
|
1638
|
+
create: DesktopDeviceCreateWithoutChatsInput;
|
|
1639
|
+
update: DesktopDeviceUpdateWithoutChatsInput;
|
|
1640
|
+
where?: InputMaybe<DesktopDeviceWhereInput>;
|
|
1641
|
+
};
|
|
1642
|
+
type DesktopDeviceUpsertWithoutDesktopBindingsInput = {
|
|
1643
|
+
create: DesktopDeviceCreateWithoutDesktopBindingsInput;
|
|
1644
|
+
update: DesktopDeviceUpdateWithoutDesktopBindingsInput;
|
|
1645
|
+
where?: InputMaybe<DesktopDeviceWhereInput>;
|
|
1646
|
+
};
|
|
1647
|
+
type DesktopDeviceWhereInput = {
|
|
1648
|
+
AND?: InputMaybe<Array<DesktopDeviceWhereInput>>;
|
|
1649
|
+
NOT?: InputMaybe<Array<DesktopDeviceWhereInput>>;
|
|
1650
|
+
OR?: InputMaybe<Array<DesktopDeviceWhereInput>>;
|
|
1651
|
+
appVersion?: InputMaybe<StringFilter>;
|
|
1652
|
+
chats?: InputMaybe<ChatListRelationFilter>;
|
|
1653
|
+
createdAt?: InputMaybe<DateTimeFilter>;
|
|
1654
|
+
desktopBindings?: InputMaybe<ProjectDesktopBindingListRelationFilter>;
|
|
1655
|
+
deviceLabel?: InputMaybe<StringFilter>;
|
|
1656
|
+
deviceType?: InputMaybe<StringFilter>;
|
|
1657
|
+
id?: InputMaybe<StringFilter>;
|
|
1658
|
+
lastSeenAt?: InputMaybe<DateTimeFilter>;
|
|
1659
|
+
macAddress?: InputMaybe<StringFilter>;
|
|
1660
|
+
manufacturer?: InputMaybe<StringFilter>;
|
|
1661
|
+
modelName?: InputMaybe<StringFilter>;
|
|
1662
|
+
modelYear?: InputMaybe<IntFilter>;
|
|
1663
|
+
platform?: InputMaybe<StringFilter>;
|
|
1664
|
+
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
1665
|
+
};
|
|
1666
|
+
type DesktopDeviceWhereUniqueInput = {
|
|
1667
|
+
AND?: InputMaybe<Array<DesktopDeviceWhereInput>>;
|
|
1668
|
+
NOT?: InputMaybe<Array<DesktopDeviceWhereInput>>;
|
|
1669
|
+
OR?: InputMaybe<Array<DesktopDeviceWhereInput>>;
|
|
1670
|
+
appVersion?: InputMaybe<StringFilter>;
|
|
1671
|
+
chats?: InputMaybe<ChatListRelationFilter>;
|
|
1672
|
+
createdAt?: InputMaybe<DateTimeFilter>;
|
|
1673
|
+
desktopBindings?: InputMaybe<ProjectDesktopBindingListRelationFilter>;
|
|
1674
|
+
deviceLabel?: InputMaybe<StringFilter>;
|
|
1675
|
+
deviceType?: InputMaybe<StringFilter>;
|
|
1676
|
+
id?: InputMaybe<Scalars['String']>;
|
|
1677
|
+
lastSeenAt?: InputMaybe<DateTimeFilter>;
|
|
1678
|
+
macAddress?: InputMaybe<StringFilter>;
|
|
1679
|
+
manufacturer?: InputMaybe<StringFilter>;
|
|
1680
|
+
modelName?: InputMaybe<StringFilter>;
|
|
1681
|
+
modelYear?: InputMaybe<IntFilter>;
|
|
1682
|
+
platform?: InputMaybe<StringFilter>;
|
|
1683
|
+
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
1684
|
+
workspaceId_userId_fingerprint?: InputMaybe<DesktopDeviceWorkspaceIdUserIdFingerprintCompoundUniqueInput>;
|
|
1685
|
+
};
|
|
1686
|
+
type DesktopDeviceWorkspaceIdUserIdFingerprintCompoundUniqueInput = {
|
|
1687
|
+
fingerprint: Scalars['String'];
|
|
1688
|
+
};
|
|
1281
1689
|
declare enum DocumentCatalogOrderByRelevanceFieldEnum {
|
|
1282
1690
|
FormatKey = "formatKey",
|
|
1283
1691
|
Icon = "icon",
|
|
@@ -1461,6 +1869,18 @@ type EnumPresentationFilter = {
|
|
|
1461
1869
|
not?: InputMaybe<EnumPresentationFilter>;
|
|
1462
1870
|
notIn?: InputMaybe<Array<Presentation>>;
|
|
1463
1871
|
};
|
|
1872
|
+
type EnumProjectDesktopContextKindFilter = {
|
|
1873
|
+
equals?: InputMaybe<ProjectDesktopContextKind>;
|
|
1874
|
+
in?: InputMaybe<Array<ProjectDesktopContextKind>>;
|
|
1875
|
+
not?: InputMaybe<EnumProjectDesktopContextKindFilter>;
|
|
1876
|
+
notIn?: InputMaybe<Array<ProjectDesktopContextKind>>;
|
|
1877
|
+
};
|
|
1878
|
+
type EnumProjectSourceFilter = {
|
|
1879
|
+
equals?: InputMaybe<ProjectSource>;
|
|
1880
|
+
in?: InputMaybe<Array<ProjectSource>>;
|
|
1881
|
+
not?: InputMaybe<EnumProjectSourceFilter>;
|
|
1882
|
+
notIn?: InputMaybe<Array<ProjectSource>>;
|
|
1883
|
+
};
|
|
1464
1884
|
type EnumPulseEventKindFilter = {
|
|
1465
1885
|
equals?: InputMaybe<PulseEventKind>;
|
|
1466
1886
|
in?: InputMaybe<Array<PulseEventKind>>;
|
|
@@ -2252,12 +2672,37 @@ type LiveContextListRelationFilter = {
|
|
|
2252
2672
|
type LiveContextOrderByRelationAggregateInput = {
|
|
2253
2673
|
_count?: InputMaybe<SortOrder>;
|
|
2254
2674
|
};
|
|
2675
|
+
declare enum LiveContextOrderByRelevanceFieldEnum {
|
|
2676
|
+
Id = "id",
|
|
2677
|
+
SourceId = "sourceId",
|
|
2678
|
+
SuggestedPrompt = "suggestedPrompt",
|
|
2679
|
+
Summary = "summary",
|
|
2680
|
+
Title = "title",
|
|
2681
|
+
UserId = "userId",
|
|
2682
|
+
WorkspaceId = "workspaceId"
|
|
2683
|
+
}
|
|
2684
|
+
type LiveContextOrderByRelevanceInput = {
|
|
2685
|
+
fields: Array<LiveContextOrderByRelevanceFieldEnum>;
|
|
2686
|
+
search: Scalars['String'];
|
|
2687
|
+
sort: SortOrder;
|
|
2688
|
+
};
|
|
2689
|
+
type LiveContextOrderByWithRelationInput = {
|
|
2690
|
+
_relevance?: InputMaybe<LiveContextOrderByRelevanceInput>;
|
|
2691
|
+
createdAt?: InputMaybe<SortOrder>;
|
|
2692
|
+
id?: InputMaybe<SortOrder>;
|
|
2693
|
+
status?: InputMaybe<SortOrder>;
|
|
2694
|
+
suggestedPrompt?: InputMaybe<SortOrderInput>;
|
|
2695
|
+
summary?: InputMaybe<SortOrder>;
|
|
2696
|
+
title?: InputMaybe<SortOrder>;
|
|
2697
|
+
updatedAt?: InputMaybe<SortOrder>;
|
|
2698
|
+
};
|
|
2255
2699
|
declare enum LiveContextStatus {
|
|
2256
2700
|
Active = "active",
|
|
2257
2701
|
Dismissed = "dismissed",
|
|
2258
2702
|
Resolved = "resolved"
|
|
2259
2703
|
}
|
|
2260
2704
|
type LiveContextUpdateInput = {
|
|
2705
|
+
id?: InputMaybe<Scalars['String']>;
|
|
2261
2706
|
status?: InputMaybe<LiveContextStatus>;
|
|
2262
2707
|
};
|
|
2263
2708
|
type LiveContextWhereInput = {
|
|
@@ -2265,7 +2710,11 @@ type LiveContextWhereInput = {
|
|
|
2265
2710
|
NOT?: InputMaybe<Array<LiveContextWhereInput>>;
|
|
2266
2711
|
OR?: InputMaybe<Array<LiveContextWhereInput>>;
|
|
2267
2712
|
createdAt?: InputMaybe<DateTimeFilter>;
|
|
2713
|
+
id?: InputMaybe<StringFilter>;
|
|
2268
2714
|
status?: InputMaybe<EnumLiveContextStatusFilter>;
|
|
2715
|
+
suggestedPrompt?: InputMaybe<StringFilter>;
|
|
2716
|
+
summary?: InputMaybe<StringFilter>;
|
|
2717
|
+
title?: InputMaybe<StringFilter>;
|
|
2269
2718
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
2270
2719
|
};
|
|
2271
2720
|
type LiveContextWhereUniqueInput = {
|
|
@@ -2273,9 +2722,18 @@ type LiveContextWhereUniqueInput = {
|
|
|
2273
2722
|
NOT?: InputMaybe<Array<LiveContextWhereInput>>;
|
|
2274
2723
|
OR?: InputMaybe<Array<LiveContextWhereInput>>;
|
|
2275
2724
|
createdAt?: InputMaybe<DateTimeFilter>;
|
|
2725
|
+
id?: InputMaybe<Scalars['String']>;
|
|
2276
2726
|
status?: InputMaybe<EnumLiveContextStatusFilter>;
|
|
2727
|
+
suggestedPrompt?: InputMaybe<StringFilter>;
|
|
2728
|
+
summary?: InputMaybe<StringFilter>;
|
|
2729
|
+
title?: InputMaybe<StringFilter>;
|
|
2277
2730
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
2278
2731
|
};
|
|
2732
|
+
declare enum LocalSandboxDeviceConnectionState {
|
|
2733
|
+
Connected = "CONNECTED",
|
|
2734
|
+
Disconnected = "DISCONNECTED",
|
|
2735
|
+
Unavailable = "UNAVAILABLE"
|
|
2736
|
+
}
|
|
2279
2737
|
declare enum McpAuthPhase {
|
|
2280
2738
|
Cancelled = "Cancelled",
|
|
2281
2739
|
Completed = "Completed",
|
|
@@ -2373,6 +2831,329 @@ type ProgressSummaryEventOutput = {
|
|
|
2373
2831
|
targetToolCallId?: Maybe<Scalars['String']>;
|
|
2374
2832
|
type: Scalars['String'];
|
|
2375
2833
|
};
|
|
2834
|
+
type ProjectCreateInput = {
|
|
2835
|
+
chats?: InputMaybe<ChatCreateNestedManyWithoutProjectInput>;
|
|
2836
|
+
desktopBinding?: InputMaybe<ProjectDesktopBindingCreateNestedOneWithoutProjectInput>;
|
|
2837
|
+
iconDataUrl?: InputMaybe<Scalars['String']>;
|
|
2838
|
+
id?: InputMaybe<Scalars['String']>;
|
|
2839
|
+
name: Scalars['String'];
|
|
2840
|
+
source?: InputMaybe<ProjectSource>;
|
|
2841
|
+
};
|
|
2842
|
+
type ProjectCreateNestedOneWithoutChatsInput = {
|
|
2843
|
+
connect?: InputMaybe<ProjectWhereUniqueInput>;
|
|
2844
|
+
connectOrCreate?: InputMaybe<ProjectCreateOrConnectWithoutChatsInput>;
|
|
2845
|
+
create?: InputMaybe<ProjectCreateWithoutChatsInput>;
|
|
2846
|
+
};
|
|
2847
|
+
type ProjectCreateNestedOneWithoutDesktopBindingInput = {
|
|
2848
|
+
connect?: InputMaybe<ProjectWhereUniqueInput>;
|
|
2849
|
+
connectOrCreate?: InputMaybe<ProjectCreateOrConnectWithoutDesktopBindingInput>;
|
|
2850
|
+
create?: InputMaybe<ProjectCreateWithoutDesktopBindingInput>;
|
|
2851
|
+
};
|
|
2852
|
+
type ProjectCreateOrConnectWithoutChatsInput = {
|
|
2853
|
+
create: ProjectCreateWithoutChatsInput;
|
|
2854
|
+
where: ProjectWhereUniqueInput;
|
|
2855
|
+
};
|
|
2856
|
+
type ProjectCreateOrConnectWithoutDesktopBindingInput = {
|
|
2857
|
+
create: ProjectCreateWithoutDesktopBindingInput;
|
|
2858
|
+
where: ProjectWhereUniqueInput;
|
|
2859
|
+
};
|
|
2860
|
+
type ProjectCreateWithoutChatsInput = {
|
|
2861
|
+
desktopBinding?: InputMaybe<ProjectDesktopBindingCreateNestedOneWithoutProjectInput>;
|
|
2862
|
+
iconDataUrl?: InputMaybe<Scalars['String']>;
|
|
2863
|
+
id?: InputMaybe<Scalars['String']>;
|
|
2864
|
+
name: Scalars['String'];
|
|
2865
|
+
source?: InputMaybe<ProjectSource>;
|
|
2866
|
+
};
|
|
2867
|
+
type ProjectCreateWithoutDesktopBindingInput = {
|
|
2868
|
+
chats?: InputMaybe<ChatCreateNestedManyWithoutProjectInput>;
|
|
2869
|
+
iconDataUrl?: InputMaybe<Scalars['String']>;
|
|
2870
|
+
id?: InputMaybe<Scalars['String']>;
|
|
2871
|
+
name: Scalars['String'];
|
|
2872
|
+
source?: InputMaybe<ProjectSource>;
|
|
2873
|
+
};
|
|
2874
|
+
type ProjectDesktopBindingCreateManyDeviceInput = {
|
|
2875
|
+
kind: ProjectDesktopContextKind;
|
|
2876
|
+
projectId: Scalars['String'];
|
|
2877
|
+
rootPath: Scalars['String'];
|
|
2878
|
+
};
|
|
2879
|
+
type ProjectDesktopBindingCreateManyDeviceInputEnvelope = {
|
|
2880
|
+
data: Array<ProjectDesktopBindingCreateManyDeviceInput>;
|
|
2881
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']>;
|
|
2882
|
+
};
|
|
2883
|
+
type ProjectDesktopBindingCreateNestedManyWithoutDeviceInput = {
|
|
2884
|
+
connect?: InputMaybe<Array<ProjectDesktopBindingWhereUniqueInput>>;
|
|
2885
|
+
connectOrCreate?: InputMaybe<Array<ProjectDesktopBindingCreateOrConnectWithoutDeviceInput>>;
|
|
2886
|
+
create?: InputMaybe<Array<ProjectDesktopBindingCreateWithoutDeviceInput>>;
|
|
2887
|
+
createMany?: InputMaybe<ProjectDesktopBindingCreateManyDeviceInputEnvelope>;
|
|
2888
|
+
};
|
|
2889
|
+
type ProjectDesktopBindingCreateNestedOneWithoutProjectInput = {
|
|
2890
|
+
connect?: InputMaybe<ProjectDesktopBindingWhereUniqueInput>;
|
|
2891
|
+
connectOrCreate?: InputMaybe<ProjectDesktopBindingCreateOrConnectWithoutProjectInput>;
|
|
2892
|
+
create?: InputMaybe<ProjectDesktopBindingCreateWithoutProjectInput>;
|
|
2893
|
+
};
|
|
2894
|
+
type ProjectDesktopBindingCreateOrConnectWithoutDeviceInput = {
|
|
2895
|
+
create: ProjectDesktopBindingCreateWithoutDeviceInput;
|
|
2896
|
+
where: ProjectDesktopBindingWhereUniqueInput;
|
|
2897
|
+
};
|
|
2898
|
+
type ProjectDesktopBindingCreateOrConnectWithoutProjectInput = {
|
|
2899
|
+
create: ProjectDesktopBindingCreateWithoutProjectInput;
|
|
2900
|
+
where: ProjectDesktopBindingWhereUniqueInput;
|
|
2901
|
+
};
|
|
2902
|
+
type ProjectDesktopBindingCreateWithoutDeviceInput = {
|
|
2903
|
+
kind: ProjectDesktopContextKind;
|
|
2904
|
+
project: ProjectCreateNestedOneWithoutDesktopBindingInput;
|
|
2905
|
+
rootPath: Scalars['String'];
|
|
2906
|
+
};
|
|
2907
|
+
type ProjectDesktopBindingCreateWithoutProjectInput = {
|
|
2908
|
+
device: DesktopDeviceCreateNestedOneWithoutDesktopBindingsInput;
|
|
2909
|
+
kind: ProjectDesktopContextKind;
|
|
2910
|
+
rootPath: Scalars['String'];
|
|
2911
|
+
};
|
|
2912
|
+
type ProjectDesktopBindingListRelationFilter = {
|
|
2913
|
+
every?: InputMaybe<ProjectDesktopBindingWhereInput>;
|
|
2914
|
+
none?: InputMaybe<ProjectDesktopBindingWhereInput>;
|
|
2915
|
+
some?: InputMaybe<ProjectDesktopBindingWhereInput>;
|
|
2916
|
+
};
|
|
2917
|
+
type ProjectDesktopBindingOrderByRelationAggregateInput = {
|
|
2918
|
+
_count?: InputMaybe<SortOrder>;
|
|
2919
|
+
};
|
|
2920
|
+
declare enum ProjectDesktopBindingOrderByRelevanceFieldEnum {
|
|
2921
|
+
DeviceId = "deviceId",
|
|
2922
|
+
ProjectId = "projectId",
|
|
2923
|
+
RootPath = "rootPath"
|
|
2924
|
+
}
|
|
2925
|
+
type ProjectDesktopBindingOrderByRelevanceInput = {
|
|
2926
|
+
fields: Array<ProjectDesktopBindingOrderByRelevanceFieldEnum>;
|
|
2927
|
+
search: Scalars['String'];
|
|
2928
|
+
sort: SortOrder;
|
|
2929
|
+
};
|
|
2930
|
+
type ProjectDesktopBindingOrderByWithRelationInput = {
|
|
2931
|
+
_relevance?: InputMaybe<ProjectDesktopBindingOrderByRelevanceInput>;
|
|
2932
|
+
createdAt?: InputMaybe<SortOrder>;
|
|
2933
|
+
device?: InputMaybe<DesktopDeviceOrderByWithRelationInput>;
|
|
2934
|
+
deviceId?: InputMaybe<SortOrder>;
|
|
2935
|
+
kind?: InputMaybe<SortOrder>;
|
|
2936
|
+
project?: InputMaybe<ProjectOrderByWithRelationInput>;
|
|
2937
|
+
projectId?: InputMaybe<SortOrder>;
|
|
2938
|
+
rootPath?: InputMaybe<SortOrder>;
|
|
2939
|
+
updatedAt?: InputMaybe<SortOrder>;
|
|
2940
|
+
};
|
|
2941
|
+
type ProjectDesktopBindingScalarRelationFilter = {
|
|
2942
|
+
is?: InputMaybe<ProjectDesktopBindingWhereInput>;
|
|
2943
|
+
isNot?: InputMaybe<ProjectDesktopBindingWhereInput>;
|
|
2944
|
+
};
|
|
2945
|
+
type ProjectDesktopBindingScalarWhereInput = {
|
|
2946
|
+
AND?: InputMaybe<Array<ProjectDesktopBindingScalarWhereInput>>;
|
|
2947
|
+
NOT?: InputMaybe<Array<ProjectDesktopBindingScalarWhereInput>>;
|
|
2948
|
+
OR?: InputMaybe<Array<ProjectDesktopBindingScalarWhereInput>>;
|
|
2949
|
+
createdAt?: InputMaybe<DateTimeFilter>;
|
|
2950
|
+
deviceId?: InputMaybe<StringFilter>;
|
|
2951
|
+
kind?: InputMaybe<EnumProjectDesktopContextKindFilter>;
|
|
2952
|
+
projectId?: InputMaybe<StringFilter>;
|
|
2953
|
+
rootPath?: InputMaybe<StringFilter>;
|
|
2954
|
+
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
2955
|
+
};
|
|
2956
|
+
type ProjectDesktopBindingUpdateManyMutationInput = {
|
|
2957
|
+
kind?: InputMaybe<ProjectDesktopContextKind>;
|
|
2958
|
+
rootPath?: InputMaybe<Scalars['String']>;
|
|
2959
|
+
};
|
|
2960
|
+
type ProjectDesktopBindingUpdateManyWithWhereWithoutDeviceInput = {
|
|
2961
|
+
data: ProjectDesktopBindingUpdateManyMutationInput;
|
|
2962
|
+
where: ProjectDesktopBindingScalarWhereInput;
|
|
2963
|
+
};
|
|
2964
|
+
type ProjectDesktopBindingUpdateManyWithoutDeviceNestedInput = {
|
|
2965
|
+
connect?: InputMaybe<Array<ProjectDesktopBindingWhereUniqueInput>>;
|
|
2966
|
+
connectOrCreate?: InputMaybe<Array<ProjectDesktopBindingCreateOrConnectWithoutDeviceInput>>;
|
|
2967
|
+
create?: InputMaybe<Array<ProjectDesktopBindingCreateWithoutDeviceInput>>;
|
|
2968
|
+
createMany?: InputMaybe<ProjectDesktopBindingCreateManyDeviceInputEnvelope>;
|
|
2969
|
+
delete?: InputMaybe<Array<ProjectDesktopBindingWhereUniqueInput>>;
|
|
2970
|
+
deleteMany?: InputMaybe<Array<ProjectDesktopBindingScalarWhereInput>>;
|
|
2971
|
+
disconnect?: InputMaybe<Array<ProjectDesktopBindingWhereUniqueInput>>;
|
|
2972
|
+
set?: InputMaybe<Array<ProjectDesktopBindingWhereUniqueInput>>;
|
|
2973
|
+
update?: InputMaybe<Array<ProjectDesktopBindingUpdateWithWhereUniqueWithoutDeviceInput>>;
|
|
2974
|
+
updateMany?: InputMaybe<Array<ProjectDesktopBindingUpdateManyWithWhereWithoutDeviceInput>>;
|
|
2975
|
+
upsert?: InputMaybe<Array<ProjectDesktopBindingUpsertWithWhereUniqueWithoutDeviceInput>>;
|
|
2976
|
+
};
|
|
2977
|
+
type ProjectDesktopBindingUpdateOneWithoutProjectNestedInput = {
|
|
2978
|
+
connect?: InputMaybe<ProjectDesktopBindingWhereUniqueInput>;
|
|
2979
|
+
connectOrCreate?: InputMaybe<ProjectDesktopBindingCreateOrConnectWithoutProjectInput>;
|
|
2980
|
+
create?: InputMaybe<ProjectDesktopBindingCreateWithoutProjectInput>;
|
|
2981
|
+
delete?: InputMaybe<ProjectDesktopBindingWhereInput>;
|
|
2982
|
+
disconnect?: InputMaybe<ProjectDesktopBindingWhereInput>;
|
|
2983
|
+
update?: InputMaybe<ProjectDesktopBindingUpdateToOneWithWhereWithoutProjectInput>;
|
|
2984
|
+
upsert?: InputMaybe<ProjectDesktopBindingUpsertWithoutProjectInput>;
|
|
2985
|
+
};
|
|
2986
|
+
type ProjectDesktopBindingUpdateToOneWithWhereWithoutProjectInput = {
|
|
2987
|
+
data: ProjectDesktopBindingUpdateWithoutProjectInput;
|
|
2988
|
+
where?: InputMaybe<ProjectDesktopBindingWhereInput>;
|
|
2989
|
+
};
|
|
2990
|
+
type ProjectDesktopBindingUpdateWithWhereUniqueWithoutDeviceInput = {
|
|
2991
|
+
data: ProjectDesktopBindingUpdateWithoutDeviceInput;
|
|
2992
|
+
where: ProjectDesktopBindingWhereUniqueInput;
|
|
2993
|
+
};
|
|
2994
|
+
type ProjectDesktopBindingUpdateWithoutDeviceInput = {
|
|
2995
|
+
kind?: InputMaybe<ProjectDesktopContextKind>;
|
|
2996
|
+
project?: InputMaybe<ProjectUpdateOneRequiredWithoutDesktopBindingNestedInput>;
|
|
2997
|
+
rootPath?: InputMaybe<Scalars['String']>;
|
|
2998
|
+
};
|
|
2999
|
+
type ProjectDesktopBindingUpdateWithoutProjectInput = {
|
|
3000
|
+
device?: InputMaybe<DesktopDeviceUpdateOneRequiredWithoutDesktopBindingsNestedInput>;
|
|
3001
|
+
kind?: InputMaybe<ProjectDesktopContextKind>;
|
|
3002
|
+
rootPath?: InputMaybe<Scalars['String']>;
|
|
3003
|
+
};
|
|
3004
|
+
type ProjectDesktopBindingUpsertWithWhereUniqueWithoutDeviceInput = {
|
|
3005
|
+
create: ProjectDesktopBindingCreateWithoutDeviceInput;
|
|
3006
|
+
update: ProjectDesktopBindingUpdateWithoutDeviceInput;
|
|
3007
|
+
where: ProjectDesktopBindingWhereUniqueInput;
|
|
3008
|
+
};
|
|
3009
|
+
type ProjectDesktopBindingUpsertWithoutProjectInput = {
|
|
3010
|
+
create: ProjectDesktopBindingCreateWithoutProjectInput;
|
|
3011
|
+
update: ProjectDesktopBindingUpdateWithoutProjectInput;
|
|
3012
|
+
where?: InputMaybe<ProjectDesktopBindingWhereInput>;
|
|
3013
|
+
};
|
|
3014
|
+
type ProjectDesktopBindingWhereInput = {
|
|
3015
|
+
AND?: InputMaybe<Array<ProjectDesktopBindingWhereInput>>;
|
|
3016
|
+
NOT?: InputMaybe<Array<ProjectDesktopBindingWhereInput>>;
|
|
3017
|
+
OR?: InputMaybe<Array<ProjectDesktopBindingWhereInput>>;
|
|
3018
|
+
createdAt?: InputMaybe<DateTimeFilter>;
|
|
3019
|
+
device?: InputMaybe<DesktopDeviceScalarRelationFilter>;
|
|
3020
|
+
deviceId?: InputMaybe<StringFilter>;
|
|
3021
|
+
kind?: InputMaybe<EnumProjectDesktopContextKindFilter>;
|
|
3022
|
+
project?: InputMaybe<ProjectScalarRelationFilter>;
|
|
3023
|
+
projectId?: InputMaybe<StringFilter>;
|
|
3024
|
+
rootPath?: InputMaybe<StringFilter>;
|
|
3025
|
+
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
3026
|
+
};
|
|
3027
|
+
type ProjectDesktopBindingWhereUniqueInput = {
|
|
3028
|
+
AND?: InputMaybe<Array<ProjectDesktopBindingWhereInput>>;
|
|
3029
|
+
NOT?: InputMaybe<Array<ProjectDesktopBindingWhereInput>>;
|
|
3030
|
+
OR?: InputMaybe<Array<ProjectDesktopBindingWhereInput>>;
|
|
3031
|
+
createdAt?: InputMaybe<DateTimeFilter>;
|
|
3032
|
+
device?: InputMaybe<DesktopDeviceScalarRelationFilter>;
|
|
3033
|
+
deviceId?: InputMaybe<StringFilter>;
|
|
3034
|
+
kind?: InputMaybe<EnumProjectDesktopContextKindFilter>;
|
|
3035
|
+
project?: InputMaybe<ProjectScalarRelationFilter>;
|
|
3036
|
+
projectId?: InputMaybe<Scalars['String']>;
|
|
3037
|
+
rootPath?: InputMaybe<StringFilter>;
|
|
3038
|
+
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
3039
|
+
};
|
|
3040
|
+
declare enum ProjectDesktopContextKind {
|
|
3041
|
+
Code = "Code",
|
|
3042
|
+
Folder = "Folder"
|
|
3043
|
+
}
|
|
3044
|
+
declare enum ProjectOrderByRelevanceFieldEnum {
|
|
3045
|
+
IconDataUrl = "iconDataUrl",
|
|
3046
|
+
Id = "id",
|
|
3047
|
+
Name = "name",
|
|
3048
|
+
UserId = "userId",
|
|
3049
|
+
WorkspaceId = "workspaceId"
|
|
3050
|
+
}
|
|
3051
|
+
type ProjectOrderByRelevanceInput = {
|
|
3052
|
+
fields: Array<ProjectOrderByRelevanceFieldEnum>;
|
|
3053
|
+
search: Scalars['String'];
|
|
3054
|
+
sort: SortOrder;
|
|
3055
|
+
};
|
|
3056
|
+
type ProjectOrderByWithRelationInput = {
|
|
3057
|
+
_relevance?: InputMaybe<ProjectOrderByRelevanceInput>;
|
|
3058
|
+
chats?: InputMaybe<ChatOrderByRelationAggregateInput>;
|
|
3059
|
+
createdAt?: InputMaybe<SortOrder>;
|
|
3060
|
+
desktopBinding?: InputMaybe<ProjectDesktopBindingOrderByWithRelationInput>;
|
|
3061
|
+
iconDataUrl?: InputMaybe<SortOrderInput>;
|
|
3062
|
+
id?: InputMaybe<SortOrder>;
|
|
3063
|
+
name?: InputMaybe<SortOrder>;
|
|
3064
|
+
source?: InputMaybe<SortOrder>;
|
|
3065
|
+
updatedAt?: InputMaybe<SortOrder>;
|
|
3066
|
+
};
|
|
3067
|
+
type ProjectScalarRelationFilter = {
|
|
3068
|
+
is?: InputMaybe<ProjectWhereInput>;
|
|
3069
|
+
isNot?: InputMaybe<ProjectWhereInput>;
|
|
3070
|
+
};
|
|
3071
|
+
declare enum ProjectSource {
|
|
3072
|
+
Cloud = "cloud",
|
|
3073
|
+
Desktop = "desktop"
|
|
3074
|
+
}
|
|
3075
|
+
type ProjectUpdateInput = {
|
|
3076
|
+
chats?: InputMaybe<ChatUpdateManyWithoutProjectNestedInput>;
|
|
3077
|
+
desktopBinding?: InputMaybe<ProjectDesktopBindingUpdateOneWithoutProjectNestedInput>;
|
|
3078
|
+
iconDataUrl?: InputMaybe<Scalars['String']>;
|
|
3079
|
+
id?: InputMaybe<Scalars['String']>;
|
|
3080
|
+
name?: InputMaybe<Scalars['String']>;
|
|
3081
|
+
source?: InputMaybe<ProjectSource>;
|
|
3082
|
+
};
|
|
3083
|
+
type ProjectUpdateOneRequiredWithoutDesktopBindingNestedInput = {
|
|
3084
|
+
connect?: InputMaybe<ProjectWhereUniqueInput>;
|
|
3085
|
+
connectOrCreate?: InputMaybe<ProjectCreateOrConnectWithoutDesktopBindingInput>;
|
|
3086
|
+
create?: InputMaybe<ProjectCreateWithoutDesktopBindingInput>;
|
|
3087
|
+
update?: InputMaybe<ProjectUpdateToOneWithWhereWithoutDesktopBindingInput>;
|
|
3088
|
+
upsert?: InputMaybe<ProjectUpsertWithoutDesktopBindingInput>;
|
|
3089
|
+
};
|
|
3090
|
+
type ProjectUpdateOneWithoutChatsNestedInput = {
|
|
3091
|
+
connect?: InputMaybe<ProjectWhereUniqueInput>;
|
|
3092
|
+
connectOrCreate?: InputMaybe<ProjectCreateOrConnectWithoutChatsInput>;
|
|
3093
|
+
create?: InputMaybe<ProjectCreateWithoutChatsInput>;
|
|
3094
|
+
delete?: InputMaybe<ProjectWhereInput>;
|
|
3095
|
+
disconnect?: InputMaybe<ProjectWhereInput>;
|
|
3096
|
+
update?: InputMaybe<ProjectUpdateToOneWithWhereWithoutChatsInput>;
|
|
3097
|
+
upsert?: InputMaybe<ProjectUpsertWithoutChatsInput>;
|
|
3098
|
+
};
|
|
3099
|
+
type ProjectUpdateToOneWithWhereWithoutChatsInput = {
|
|
3100
|
+
data: ProjectUpdateWithoutChatsInput;
|
|
3101
|
+
where?: InputMaybe<ProjectWhereInput>;
|
|
3102
|
+
};
|
|
3103
|
+
type ProjectUpdateToOneWithWhereWithoutDesktopBindingInput = {
|
|
3104
|
+
data: ProjectUpdateWithoutDesktopBindingInput;
|
|
3105
|
+
where?: InputMaybe<ProjectWhereInput>;
|
|
3106
|
+
};
|
|
3107
|
+
type ProjectUpdateWithoutChatsInput = {
|
|
3108
|
+
desktopBinding?: InputMaybe<ProjectDesktopBindingUpdateOneWithoutProjectNestedInput>;
|
|
3109
|
+
iconDataUrl?: InputMaybe<Scalars['String']>;
|
|
3110
|
+
id?: InputMaybe<Scalars['String']>;
|
|
3111
|
+
name?: InputMaybe<Scalars['String']>;
|
|
3112
|
+
source?: InputMaybe<ProjectSource>;
|
|
3113
|
+
};
|
|
3114
|
+
type ProjectUpdateWithoutDesktopBindingInput = {
|
|
3115
|
+
chats?: InputMaybe<ChatUpdateManyWithoutProjectNestedInput>;
|
|
3116
|
+
iconDataUrl?: InputMaybe<Scalars['String']>;
|
|
3117
|
+
id?: InputMaybe<Scalars['String']>;
|
|
3118
|
+
name?: InputMaybe<Scalars['String']>;
|
|
3119
|
+
source?: InputMaybe<ProjectSource>;
|
|
3120
|
+
};
|
|
3121
|
+
type ProjectUpsertWithoutChatsInput = {
|
|
3122
|
+
create: ProjectCreateWithoutChatsInput;
|
|
3123
|
+
update: ProjectUpdateWithoutChatsInput;
|
|
3124
|
+
where?: InputMaybe<ProjectWhereInput>;
|
|
3125
|
+
};
|
|
3126
|
+
type ProjectUpsertWithoutDesktopBindingInput = {
|
|
3127
|
+
create: ProjectCreateWithoutDesktopBindingInput;
|
|
3128
|
+
update: ProjectUpdateWithoutDesktopBindingInput;
|
|
3129
|
+
where?: InputMaybe<ProjectWhereInput>;
|
|
3130
|
+
};
|
|
3131
|
+
type ProjectWhereInput = {
|
|
3132
|
+
AND?: InputMaybe<Array<ProjectWhereInput>>;
|
|
3133
|
+
NOT?: InputMaybe<Array<ProjectWhereInput>>;
|
|
3134
|
+
OR?: InputMaybe<Array<ProjectWhereInput>>;
|
|
3135
|
+
chats?: InputMaybe<ChatListRelationFilter>;
|
|
3136
|
+
createdAt?: InputMaybe<DateTimeFilter>;
|
|
3137
|
+
desktopBinding?: InputMaybe<ProjectDesktopBindingScalarRelationFilter>;
|
|
3138
|
+
iconDataUrl?: InputMaybe<StringFilter>;
|
|
3139
|
+
id?: InputMaybe<StringFilter>;
|
|
3140
|
+
name?: InputMaybe<StringFilter>;
|
|
3141
|
+
source?: InputMaybe<EnumProjectSourceFilter>;
|
|
3142
|
+
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
3143
|
+
};
|
|
3144
|
+
type ProjectWhereUniqueInput = {
|
|
3145
|
+
AND?: InputMaybe<Array<ProjectWhereInput>>;
|
|
3146
|
+
NOT?: InputMaybe<Array<ProjectWhereInput>>;
|
|
3147
|
+
OR?: InputMaybe<Array<ProjectWhereInput>>;
|
|
3148
|
+
chats?: InputMaybe<ChatListRelationFilter>;
|
|
3149
|
+
createdAt?: InputMaybe<DateTimeFilter>;
|
|
3150
|
+
desktopBinding?: InputMaybe<ProjectDesktopBindingScalarRelationFilter>;
|
|
3151
|
+
iconDataUrl?: InputMaybe<StringFilter>;
|
|
3152
|
+
id?: InputMaybe<Scalars['String']>;
|
|
3153
|
+
name?: InputMaybe<StringFilter>;
|
|
3154
|
+
source?: InputMaybe<EnumProjectSourceFilter>;
|
|
3155
|
+
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
3156
|
+
};
|
|
2376
3157
|
declare enum PulseEventKind {
|
|
2377
3158
|
Activity = "activity",
|
|
2378
3159
|
NeedsAction = "needs_action",
|
|
@@ -3039,6 +3820,12 @@ type StringFilter = {
|
|
|
3039
3820
|
search?: InputMaybe<Scalars['String']>;
|
|
3040
3821
|
startsWith?: InputMaybe<Scalars['String']>;
|
|
3041
3822
|
};
|
|
3823
|
+
type SyncProjectDesktopBindingInput = {
|
|
3824
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
3825
|
+
iconDataUrl?: InputMaybe<Scalars['String']>;
|
|
3826
|
+
kind?: InputMaybe<ProjectDesktopContextKind>;
|
|
3827
|
+
rootPath?: InputMaybe<Scalars['String']>;
|
|
3828
|
+
};
|
|
3042
3829
|
type TableCreateNestedOneWithoutFromRelationsInput = {
|
|
3043
3830
|
connect?: InputMaybe<TableWhereUniqueInput>;
|
|
3044
3831
|
connectOrCreate?: InputMaybe<TableCreateOrConnectWithoutFromRelationsInput>;
|
|
@@ -3440,17 +4227,28 @@ type ChatFragment = {
|
|
|
3440
4227
|
__typename: 'Chat';
|
|
3441
4228
|
closedAt?: string | null;
|
|
3442
4229
|
createdAt: string;
|
|
4230
|
+
deviceId?: string | null;
|
|
3443
4231
|
id: string;
|
|
3444
4232
|
insightId?: string | null;
|
|
3445
4233
|
name: string;
|
|
3446
4234
|
originMeta?: any | null;
|
|
3447
4235
|
piiMaskRules?: any | null;
|
|
3448
4236
|
piiSanitizationEnabled: boolean;
|
|
4237
|
+
projectId?: string | null;
|
|
4238
|
+
sourceProvider?: ChatSourceProviderEnum | null;
|
|
3449
4239
|
updatedAt: string;
|
|
4240
|
+
desktopDevice?: {
|
|
4241
|
+
__typename?: 'DesktopDevice';
|
|
4242
|
+
id: string;
|
|
4243
|
+
} | null;
|
|
3450
4244
|
insight?: {
|
|
3451
4245
|
__typename?: 'Insight';
|
|
3452
4246
|
id: string;
|
|
3453
4247
|
} | null;
|
|
4248
|
+
project?: {
|
|
4249
|
+
__typename?: 'Project';
|
|
4250
|
+
id: string;
|
|
4251
|
+
} | null;
|
|
3454
4252
|
};
|
|
3455
4253
|
type ChatConnectionFragment = {
|
|
3456
4254
|
__typename: 'ChatConnection';
|
|
@@ -3459,17 +4257,28 @@ type ChatConnectionFragment = {
|
|
|
3459
4257
|
__typename: 'Chat';
|
|
3460
4258
|
closedAt?: string | null;
|
|
3461
4259
|
createdAt: string;
|
|
4260
|
+
deviceId?: string | null;
|
|
3462
4261
|
id: string;
|
|
3463
4262
|
insightId?: string | null;
|
|
3464
4263
|
name: string;
|
|
3465
4264
|
originMeta?: any | null;
|
|
3466
4265
|
piiMaskRules?: any | null;
|
|
3467
4266
|
piiSanitizationEnabled: boolean;
|
|
4267
|
+
projectId?: string | null;
|
|
4268
|
+
sourceProvider?: ChatSourceProviderEnum | null;
|
|
3468
4269
|
updatedAt: string;
|
|
4270
|
+
desktopDevice?: {
|
|
4271
|
+
__typename?: 'DesktopDevice';
|
|
4272
|
+
id: string;
|
|
4273
|
+
} | null;
|
|
3469
4274
|
insight?: {
|
|
3470
4275
|
__typename?: 'Insight';
|
|
3471
4276
|
id: string;
|
|
3472
4277
|
} | null;
|
|
4278
|
+
project?: {
|
|
4279
|
+
__typename?: 'Project';
|
|
4280
|
+
id: string;
|
|
4281
|
+
} | null;
|
|
3473
4282
|
}> | null;
|
|
3474
4283
|
pageInfo: {
|
|
3475
4284
|
__typename?: 'PageInfo';
|
|
@@ -3734,6 +4543,34 @@ type DeepAnalysisUsageFragment = {
|
|
|
3734
4543
|
numberOfImages?: number | null;
|
|
3735
4544
|
tokenCost?: number | null;
|
|
3736
4545
|
};
|
|
4546
|
+
type DesktopDeviceFragment = {
|
|
4547
|
+
__typename: 'DesktopDevice';
|
|
4548
|
+
appVersion?: string | null;
|
|
4549
|
+
createdAt: string;
|
|
4550
|
+
deviceLabel: string;
|
|
4551
|
+
deviceType?: string | null;
|
|
4552
|
+
id: string;
|
|
4553
|
+
lastSeenAt?: string | null;
|
|
4554
|
+
macAddress?: string | null;
|
|
4555
|
+
manufacturer?: string | null;
|
|
4556
|
+
modelName?: string | null;
|
|
4557
|
+
modelYear?: number | null;
|
|
4558
|
+
platform?: string | null;
|
|
4559
|
+
updatedAt: string;
|
|
4560
|
+
};
|
|
4561
|
+
type DesktopDeviceModelFragment = {
|
|
4562
|
+
__typename: 'DesktopDeviceModel';
|
|
4563
|
+
appVersion?: string | null;
|
|
4564
|
+
deviceId: string;
|
|
4565
|
+
deviceLabel: string;
|
|
4566
|
+
deviceType?: string | null;
|
|
4567
|
+
lastSeenAt?: string | null;
|
|
4568
|
+
manufacturer?: string | null;
|
|
4569
|
+
modelName?: string | null;
|
|
4570
|
+
modelYear?: number | null;
|
|
4571
|
+
platform?: string | null;
|
|
4572
|
+
state: LocalSandboxDeviceConnectionState;
|
|
4573
|
+
};
|
|
3737
4574
|
type DevAccessTokenOutputFragment = {
|
|
3738
4575
|
__typename: 'DevAccessTokenOutput';
|
|
3739
4576
|
access_token: string;
|
|
@@ -4168,10 +5005,6 @@ type FeedItemGeneratedFragment = {
|
|
|
4168
5005
|
sourceRef?: string | null;
|
|
4169
5006
|
title: string;
|
|
4170
5007
|
updatedAt: string;
|
|
4171
|
-
liveContexts?: Array<{
|
|
4172
|
-
__typename?: 'LiveContext';
|
|
4173
|
-
id: string;
|
|
4174
|
-
}> | null;
|
|
4175
5008
|
};
|
|
4176
5009
|
type FeedLiveContextDataFragment = {
|
|
4177
5010
|
__typename: 'FeedLiveContextData';
|
|
@@ -4579,6 +5412,77 @@ type LiveContextFragment = {
|
|
|
4579
5412
|
id: string;
|
|
4580
5413
|
};
|
|
4581
5414
|
};
|
|
5415
|
+
type LiveContextConnectionFragment = {
|
|
5416
|
+
__typename: 'LiveContextConnection';
|
|
5417
|
+
totalCount: number;
|
|
5418
|
+
nodes?: Array<{
|
|
5419
|
+
__typename: 'LiveContext';
|
|
5420
|
+
createdAt: string;
|
|
5421
|
+
id: string;
|
|
5422
|
+
sourceId: string;
|
|
5423
|
+
status: LiveContextStatus;
|
|
5424
|
+
suggestedPrompt?: string | null;
|
|
5425
|
+
summary: string;
|
|
5426
|
+
title: string;
|
|
5427
|
+
updatedAt: string;
|
|
5428
|
+
items?: Array<{
|
|
5429
|
+
__typename?: 'FeedItemGenerated';
|
|
5430
|
+
id: string;
|
|
5431
|
+
}> | null;
|
|
5432
|
+
source: {
|
|
5433
|
+
__typename?: 'Candidate';
|
|
5434
|
+
id: string;
|
|
5435
|
+
};
|
|
5436
|
+
}> | null;
|
|
5437
|
+
pageInfo: {
|
|
5438
|
+
__typename?: 'PageInfo';
|
|
5439
|
+
endCursor?: string | null;
|
|
5440
|
+
hasNextPage: boolean;
|
|
5441
|
+
hasPreviousPage: boolean;
|
|
5442
|
+
startCursor?: string | null;
|
|
5443
|
+
};
|
|
5444
|
+
};
|
|
5445
|
+
type LocalRuntimeDeviceModelFragment = {
|
|
5446
|
+
__typename: 'LocalRuntimeDeviceModel';
|
|
5447
|
+
deviceId: string;
|
|
5448
|
+
deviceType?: string | null;
|
|
5449
|
+
isPreferred: boolean;
|
|
5450
|
+
isResolved: boolean;
|
|
5451
|
+
label: string;
|
|
5452
|
+
lastSeenAt?: string | null;
|
|
5453
|
+
manufacturer?: string | null;
|
|
5454
|
+
modelName?: string | null;
|
|
5455
|
+
modelYear?: number | null;
|
|
5456
|
+
platform?: string | null;
|
|
5457
|
+
state: LocalSandboxDeviceConnectionState;
|
|
5458
|
+
};
|
|
5459
|
+
type LocalRuntimeOverviewModelFragment = {
|
|
5460
|
+
__typename: 'LocalRuntimeOverviewModel';
|
|
5461
|
+
connectedDeviceCount: number;
|
|
5462
|
+
resolvedDeviceId?: string | null;
|
|
5463
|
+
resolvedDeviceLabel?: string | null;
|
|
5464
|
+
state: LocalSandboxDeviceConnectionState;
|
|
5465
|
+
devices: Array<{
|
|
5466
|
+
__typename: 'LocalRuntimeDeviceModel';
|
|
5467
|
+
deviceId: string;
|
|
5468
|
+
deviceType?: string | null;
|
|
5469
|
+
isPreferred: boolean;
|
|
5470
|
+
isResolved: boolean;
|
|
5471
|
+
label: string;
|
|
5472
|
+
lastSeenAt?: string | null;
|
|
5473
|
+
manufacturer?: string | null;
|
|
5474
|
+
modelName?: string | null;
|
|
5475
|
+
modelYear?: number | null;
|
|
5476
|
+
platform?: string | null;
|
|
5477
|
+
state: LocalSandboxDeviceConnectionState;
|
|
5478
|
+
}>;
|
|
5479
|
+
};
|
|
5480
|
+
type LocalSandboxDeviceStatusModelFragment = {
|
|
5481
|
+
__typename: 'LocalSandboxDeviceStatusModel';
|
|
5482
|
+
deviceId: string;
|
|
5483
|
+
lastSeenAt?: string | null;
|
|
5484
|
+
state: LocalSandboxDeviceConnectionState;
|
|
5485
|
+
};
|
|
4582
5486
|
type McpAuthUpdateModelFragment = {
|
|
4583
5487
|
__typename: 'McpAuthUpdateModel';
|
|
4584
5488
|
authorizationUrl?: string | null;
|
|
@@ -4717,6 +5621,52 @@ type ProgressSummaryEventOutputFragment = {
|
|
|
4717
5621
|
targetToolCallId?: string | null;
|
|
4718
5622
|
type: string;
|
|
4719
5623
|
};
|
|
5624
|
+
type ProjectFragment = {
|
|
5625
|
+
__typename: 'Project';
|
|
5626
|
+
createdAt: string;
|
|
5627
|
+
iconDataUrl?: string | null;
|
|
5628
|
+
id: string;
|
|
5629
|
+
name: string;
|
|
5630
|
+
source: ProjectSource;
|
|
5631
|
+
updatedAt: string;
|
|
5632
|
+
};
|
|
5633
|
+
type ProjectConnectionFragment = {
|
|
5634
|
+
__typename: 'ProjectConnection';
|
|
5635
|
+
totalCount: number;
|
|
5636
|
+
nodes?: Array<{
|
|
5637
|
+
__typename: 'Project';
|
|
5638
|
+
createdAt: string;
|
|
5639
|
+
iconDataUrl?: string | null;
|
|
5640
|
+
id: string;
|
|
5641
|
+
name: string;
|
|
5642
|
+
source: ProjectSource;
|
|
5643
|
+
updatedAt: string;
|
|
5644
|
+
}> | null;
|
|
5645
|
+
pageInfo: {
|
|
5646
|
+
__typename?: 'PageInfo';
|
|
5647
|
+
endCursor?: string | null;
|
|
5648
|
+
hasNextPage: boolean;
|
|
5649
|
+
hasPreviousPage: boolean;
|
|
5650
|
+
startCursor?: string | null;
|
|
5651
|
+
};
|
|
5652
|
+
};
|
|
5653
|
+
type ProjectDesktopBindingFragment = {
|
|
5654
|
+
__typename: 'ProjectDesktopBinding';
|
|
5655
|
+
createdAt: string;
|
|
5656
|
+
deviceId: string;
|
|
5657
|
+
kind: ProjectDesktopContextKind;
|
|
5658
|
+
projectId: string;
|
|
5659
|
+
rootPath: string;
|
|
5660
|
+
updatedAt: string;
|
|
5661
|
+
device: {
|
|
5662
|
+
__typename?: 'DesktopDevice';
|
|
5663
|
+
id: string;
|
|
5664
|
+
};
|
|
5665
|
+
project: {
|
|
5666
|
+
__typename?: 'Project';
|
|
5667
|
+
id: string;
|
|
5668
|
+
};
|
|
5669
|
+
};
|
|
4720
5670
|
type PulseAppSummaryModelFragment = {
|
|
4721
5671
|
__typename: 'PulseAppSummaryModel';
|
|
4722
5672
|
activeTriggerCount: number;
|
|
@@ -5411,6 +6361,9 @@ type CreateIntegrationMutationVariables = Exact<{
|
|
|
5411
6361
|
callbackUrl: Scalars['String'];
|
|
5412
6362
|
provider: Scalars['String'];
|
|
5413
6363
|
}>;
|
|
6364
|
+
type CreateProjectMutationVariables = Exact<{
|
|
6365
|
+
data: ProjectCreateInput;
|
|
6366
|
+
}>;
|
|
5414
6367
|
type CreateReportMutationVariables = Exact<{
|
|
5415
6368
|
data: ReportCreateInput;
|
|
5416
6369
|
}>;
|
|
@@ -5457,6 +6410,9 @@ type DeleteInsightsMutationVariables = Exact<{
|
|
|
5457
6410
|
type DeleteIntegrationMutationVariables = Exact<{
|
|
5458
6411
|
id: Scalars['String'];
|
|
5459
6412
|
}>;
|
|
6413
|
+
type DeleteProjectMutationVariables = Exact<{
|
|
6414
|
+
where: ProjectWhereUniqueInput;
|
|
6415
|
+
}>;
|
|
5460
6416
|
type DeleteReportMutationVariables = Exact<{
|
|
5461
6417
|
where: ReportWhereUniqueInput;
|
|
5462
6418
|
}>;
|
|
@@ -5499,6 +6455,10 @@ type RefreshDatabaseSchemaMutationVariables = Exact<{
|
|
|
5499
6455
|
type RefreshInsightMutationVariables = Exact<{
|
|
5500
6456
|
id: Scalars['ID'];
|
|
5501
6457
|
}>;
|
|
6458
|
+
type RegisterDesktopDeviceMutationVariables = Exact<{
|
|
6459
|
+
connectionId: Scalars['String'];
|
|
6460
|
+
data: DesktopDeviceCreateInput;
|
|
6461
|
+
}>;
|
|
5502
6462
|
type ReinterpretSourceMutationVariables = Exact<{
|
|
5503
6463
|
sourceId: Scalars['String'];
|
|
5504
6464
|
}>;
|
|
@@ -5539,6 +6499,10 @@ type SetDatabasePrimaryKeyMutationVariables = Exact<{
|
|
|
5539
6499
|
fields: Array<Scalars['String']> | Scalars['String'];
|
|
5540
6500
|
tableId: Scalars['String'];
|
|
5541
6501
|
}>;
|
|
6502
|
+
type SyncProjectDesktopBindingMutationVariables = Exact<{
|
|
6503
|
+
input: SyncProjectDesktopBindingInput;
|
|
6504
|
+
projectId: Scalars['ID'];
|
|
6505
|
+
}>;
|
|
5542
6506
|
type UpdateAgentMutationVariables = Exact<{
|
|
5543
6507
|
data: AgentUpdateInput;
|
|
5544
6508
|
where: AgentWhereUniqueInput;
|
|
@@ -5584,6 +6548,10 @@ type UpdateLiveContextMutationVariables = Exact<{
|
|
|
5584
6548
|
data: LiveContextUpdateInput;
|
|
5585
6549
|
where: LiveContextWhereUniqueInput;
|
|
5586
6550
|
}>;
|
|
6551
|
+
type UpdateProjectMutationVariables = Exact<{
|
|
6552
|
+
data: ProjectUpdateInput;
|
|
6553
|
+
where: ProjectWhereUniqueInput;
|
|
6554
|
+
}>;
|
|
5587
6555
|
type UpdatePulseTriggerMutationVariables = Exact<{
|
|
5588
6556
|
input: UpdatePulseTriggerInput;
|
|
5589
6557
|
}>;
|
|
@@ -5630,9 +6598,15 @@ type ArtifactQueryVariables = Exact<{
|
|
|
5630
6598
|
type Artifact_ChatQueryVariables = Exact<{
|
|
5631
6599
|
id: Scalars['ID'];
|
|
5632
6600
|
}>;
|
|
6601
|
+
type Artifact_Chat_DesktopDeviceQueryVariables = Exact<{
|
|
6602
|
+
id: Scalars['ID'];
|
|
6603
|
+
}>;
|
|
5633
6604
|
type Artifact_Chat_InsightQueryVariables = Exact<{
|
|
5634
6605
|
id: Scalars['ID'];
|
|
5635
6606
|
}>;
|
|
6607
|
+
type Artifact_Chat_ProjectQueryVariables = Exact<{
|
|
6608
|
+
id: Scalars['ID'];
|
|
6609
|
+
}>;
|
|
5636
6610
|
type Artifact_FileQueryVariables = Exact<{
|
|
5637
6611
|
id: Scalars['ID'];
|
|
5638
6612
|
}>;
|
|
@@ -5677,6 +6651,12 @@ type Chat_ArtifactsQueryVariables = Exact<{
|
|
|
5677
6651
|
last?: InputMaybe<Scalars['Int']>;
|
|
5678
6652
|
orderBy?: InputMaybe<Array<ArtifactOrderByWithRelationInput> | ArtifactOrderByWithRelationInput>;
|
|
5679
6653
|
}>;
|
|
6654
|
+
type Chat_DesktopDeviceQueryVariables = Exact<{
|
|
6655
|
+
id: Scalars['ID'];
|
|
6656
|
+
}>;
|
|
6657
|
+
type Chat_DesktopDevice_DesktopBindingsQueryVariables = Exact<{
|
|
6658
|
+
id: Scalars['ID'];
|
|
6659
|
+
}>;
|
|
5680
6660
|
type Chat_InsightQueryVariables = Exact<{
|
|
5681
6661
|
id: Scalars['ID'];
|
|
5682
6662
|
}>;
|
|
@@ -5695,6 +6675,12 @@ type Chat_MessagesQueryVariables = Exact<{
|
|
|
5695
6675
|
last?: InputMaybe<Scalars['Int']>;
|
|
5696
6676
|
orderBy?: InputMaybe<Array<ChatMessageOrderByWithRelationInput> | ChatMessageOrderByWithRelationInput>;
|
|
5697
6677
|
}>;
|
|
6678
|
+
type Chat_ProjectQueryVariables = Exact<{
|
|
6679
|
+
id: Scalars['ID'];
|
|
6680
|
+
}>;
|
|
6681
|
+
type Chat_Project_DesktopBindingQueryVariables = Exact<{
|
|
6682
|
+
id: Scalars['ID'];
|
|
6683
|
+
}>;
|
|
5698
6684
|
type ChatMessageQueryVariables = Exact<{
|
|
5699
6685
|
id: Scalars['ID'];
|
|
5700
6686
|
}>;
|
|
@@ -5710,9 +6696,15 @@ type ChatMessage_ArtifactsQueryVariables = Exact<{
|
|
|
5710
6696
|
type ChatMessage_ChatQueryVariables = Exact<{
|
|
5711
6697
|
id: Scalars['ID'];
|
|
5712
6698
|
}>;
|
|
6699
|
+
type ChatMessage_Chat_DesktopDeviceQueryVariables = Exact<{
|
|
6700
|
+
id: Scalars['ID'];
|
|
6701
|
+
}>;
|
|
5713
6702
|
type ChatMessage_Chat_InsightQueryVariables = Exact<{
|
|
5714
6703
|
id: Scalars['ID'];
|
|
5715
6704
|
}>;
|
|
6705
|
+
type ChatMessage_Chat_ProjectQueryVariables = Exact<{
|
|
6706
|
+
id: Scalars['ID'];
|
|
6707
|
+
}>;
|
|
5716
6708
|
type ChatMessage_ContentsQueryVariables = Exact<{
|
|
5717
6709
|
id: Scalars['ID'];
|
|
5718
6710
|
}>;
|
|
@@ -5779,6 +6771,9 @@ type DatabasesQueryVariables = Exact<{
|
|
|
5779
6771
|
last?: InputMaybe<Scalars['Int']>;
|
|
5780
6772
|
orderBy?: InputMaybe<Array<DatabaseOrderByWithRelationInput> | DatabaseOrderByWithRelationInput>;
|
|
5781
6773
|
}>;
|
|
6774
|
+
type DesktopDevicesQueryVariables = Exact<{
|
|
6775
|
+
[key: string]: never;
|
|
6776
|
+
}>;
|
|
5782
6777
|
type DocumentQueryVariables = Exact<{
|
|
5783
6778
|
id: Scalars['ID'];
|
|
5784
6779
|
}>;
|
|
@@ -5921,6 +6916,12 @@ type InsightQueryVariables = Exact<{
|
|
|
5921
6916
|
type Insight_ChatQueryVariables = Exact<{
|
|
5922
6917
|
id: Scalars['ID'];
|
|
5923
6918
|
}>;
|
|
6919
|
+
type Insight_Chat_DesktopDeviceQueryVariables = Exact<{
|
|
6920
|
+
id: Scalars['ID'];
|
|
6921
|
+
}>;
|
|
6922
|
+
type Insight_Chat_ProjectQueryVariables = Exact<{
|
|
6923
|
+
id: Scalars['ID'];
|
|
6924
|
+
}>;
|
|
5924
6925
|
type Insight_ReportMembersQueryVariables = Exact<{
|
|
5925
6926
|
id: Scalars['ID'];
|
|
5926
6927
|
}>;
|
|
@@ -5986,6 +6987,35 @@ type InterpretationsQueryVariables = Exact<{
|
|
|
5986
6987
|
last?: InputMaybe<Scalars['Int']>;
|
|
5987
6988
|
orderBy?: InputMaybe<Array<InterpretationOrderByWithRelationInput> | InterpretationOrderByWithRelationInput>;
|
|
5988
6989
|
}>;
|
|
6990
|
+
type LiveContextQueryVariables = Exact<{
|
|
6991
|
+
id: Scalars['ID'];
|
|
6992
|
+
}>;
|
|
6993
|
+
type LiveContext_ItemsQueryVariables = Exact<{
|
|
6994
|
+
id: Scalars['ID'];
|
|
6995
|
+
}>;
|
|
6996
|
+
type LiveContext_SourceQueryVariables = Exact<{
|
|
6997
|
+
id: Scalars['ID'];
|
|
6998
|
+
}>;
|
|
6999
|
+
type LiveContext_Source_EvidencesQueryVariables = Exact<{
|
|
7000
|
+
id: Scalars['ID'];
|
|
7001
|
+
}>;
|
|
7002
|
+
type LiveContextsQueryVariables = Exact<{
|
|
7003
|
+
after?: InputMaybe<Scalars['String']>;
|
|
7004
|
+
before?: InputMaybe<Scalars['String']>;
|
|
7005
|
+
filter?: InputMaybe<LiveContextWhereInput>;
|
|
7006
|
+
first?: InputMaybe<Scalars['Int']>;
|
|
7007
|
+
last?: InputMaybe<Scalars['Int']>;
|
|
7008
|
+
orderBy?: InputMaybe<Array<LiveContextOrderByWithRelationInput> | LiveContextOrderByWithRelationInput>;
|
|
7009
|
+
}>;
|
|
7010
|
+
type LocalRuntimeOverviewQueryVariables = Exact<{
|
|
7011
|
+
preferredDeviceId?: InputMaybe<Scalars['String']>;
|
|
7012
|
+
}>;
|
|
7013
|
+
type LocalRuntimeOverview_DevicesQueryVariables = Exact<{
|
|
7014
|
+
preferredDeviceId?: InputMaybe<Scalars['String']>;
|
|
7015
|
+
}>;
|
|
7016
|
+
type LocalSandboxDeviceStatusQueryVariables = Exact<{
|
|
7017
|
+
deviceId: Scalars['String'];
|
|
7018
|
+
}>;
|
|
5989
7019
|
type NotificationQueryVariables = Exact<{
|
|
5990
7020
|
id: Scalars['ID'];
|
|
5991
7021
|
}>;
|
|
@@ -6003,6 +7033,32 @@ type NotificationsByReferenceQueryVariables = Exact<{
|
|
|
6003
7033
|
type PrivacyStatsQueryVariables = Exact<{
|
|
6004
7034
|
[key: string]: never;
|
|
6005
7035
|
}>;
|
|
7036
|
+
type ProjectQueryVariables = Exact<{
|
|
7037
|
+
id: Scalars['ID'];
|
|
7038
|
+
}>;
|
|
7039
|
+
type Project_ChatsQueryVariables = Exact<{
|
|
7040
|
+
id: Scalars['ID'];
|
|
7041
|
+
after?: InputMaybe<Scalars['String']>;
|
|
7042
|
+
before?: InputMaybe<Scalars['String']>;
|
|
7043
|
+
filter?: InputMaybe<ChatWhereInput>;
|
|
7044
|
+
first?: InputMaybe<Scalars['Int']>;
|
|
7045
|
+
last?: InputMaybe<Scalars['Int']>;
|
|
7046
|
+
orderBy?: InputMaybe<Array<ChatOrderByWithRelationInput> | ChatOrderByWithRelationInput>;
|
|
7047
|
+
}>;
|
|
7048
|
+
type Project_DesktopBindingQueryVariables = Exact<{
|
|
7049
|
+
id: Scalars['ID'];
|
|
7050
|
+
}>;
|
|
7051
|
+
type Project_DesktopBinding_DeviceQueryVariables = Exact<{
|
|
7052
|
+
id: Scalars['ID'];
|
|
7053
|
+
}>;
|
|
7054
|
+
type ProjectsQueryVariables = Exact<{
|
|
7055
|
+
after?: InputMaybe<Scalars['String']>;
|
|
7056
|
+
before?: InputMaybe<Scalars['String']>;
|
|
7057
|
+
filter?: InputMaybe<ProjectWhereInput>;
|
|
7058
|
+
first?: InputMaybe<Scalars['Int']>;
|
|
7059
|
+
last?: InputMaybe<Scalars['Int']>;
|
|
7060
|
+
orderBy?: InputMaybe<Array<ProjectOrderByWithRelationInput> | ProjectOrderByWithRelationInput>;
|
|
7061
|
+
}>;
|
|
6006
7062
|
type PulseAppSummaryQueryVariables = Exact<{
|
|
6007
7063
|
integrationId: Scalars['String'];
|
|
6008
7064
|
}>;
|
|
@@ -6224,4 +7280,4 @@ interface DvinaClientResult {
|
|
|
6224
7280
|
*/
|
|
6225
7281
|
declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
|
|
6226
7282
|
|
|
6227
|
-
export { type Artifact_Message_ContentsQueryVariables as $, type AbortChatMutationVariables as A, type ChatMessage_ChatQueryVariables as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, type ChatMessage_ContentsQueryVariables as E, type FileFragment as F, ContentBlockType as G, type ContentBlockFragment as H, type InsightFragment as I, type ChatMessage_FeedbackQueryVariables as J, FeedbackType as K, type FeedbackFragment as L, type Chat_MessagesQueryVariables as M, type ChatMessageConnectionFragment as N, type Insight_ReportsQueryVariables as O, Presentation as P, type ReportConnectionFragment as Q, ReportMemberSize as R, type Insight_ThumbnailFileQueryVariables as S, type InsightQueryVariables as T, type ArtifactConnectionFragment as U, type AddInsightToReportMutationVariables as V, type AgentQueryVariables as W, type AgentsQueryVariables as X, type ArtifactQueryVariables as Y, type Artifact_Chat_InsightQueryVariables as Z, type Artifact_Message_ChatQueryVariables as _, ActionType as a, type CreateReportMutationVariables as a$, type Artifact_Message_FeedbackQueryVariables as a0, type ArtifactsQueryVariables as a1, type AudioEventOutputFragment as a2, type CancelOauthFlowMutationVariables as a3, type CancelWorkspaceDeletionMutationVariables as a4, type CandidateFragment as a5, type CandidateEvidenceFragment as a6, ChatSourceProviderEnum as a7, type ImportedChatSummaryOutputFragment as a8, type ChatImportExecuteOutputFragment as a9, TableStatus as aA, type TableFragment as aB, type Table_DatabaseQueryVariables as aC, type Table_DocumentQueryVariables as aD, type DocumentFragment as aE, type Document_ContentsQueryVariables as aF, type DocumentContentFragment as aG, type DocumentQueryVariables as aH, type Document_FileQueryVariables as aI, type Document_FormatQueryVariables as aJ, type DocumentFormatFragment as aK, type DocumentCatalogQueryVariables as aL, type DocumentCatalogFragment as aM, type DocumentCatalog_FormatQueryVariables as aN, type Document_TablesQueryVariables as aO, type Table_FromRelationsQueryVariables as aP, RelationType as aQ, type RelationFragment as aR, type TableQueryVariables as aS, type Table_ToRelationsQueryVariables as aT, type TableConnectionFragment as aU, type CreateDocumentMutationVariables as aV, type CreateFeedbackMutationVariables as aW, type CreateFolderMutationVariables as aX, type FolderFragment as aY, type CreateInsightMutationVariables as aZ, type CreateIntegrationMutationVariables as a_, ChatSourceImportFidelityEnum as aa, ChatSourceImportModeEnum as ab, type ChatImportPreviewOutputFragment as ac, type ChatMessage_Chat_InsightQueryVariables as ad, type ChatMessagesQueryVariables as ae, type ChatQueryVariables as af, type ChatTitleEventOutputFragment as ag, type Chat_Insight_ReportMembersQueryVariables as ah, type Chat_Insight_ThumbnailFileQueryVariables as ai, type ChatsQueryVariables as aj, type ConnectIntegrationMutationVariables as ak, type CreateIntegrationOutputFragment as al, type ConsumePulseEventsMutationVariables as am, type ContentMaskFragment as an, type ContinueImportedChatMutationVariables as ao, type ContinueInterpretationMutationVariables as ap, type CreateAgentMutationVariables as aq, type CreateChatMutationVariables as ar, type CreateDatabaseMutationVariables as as, type DatabaseFragment as at, type Database_EngineQueryVariables as au, type DatabaseEngineFragment as av, type DatabaseCatalogQueryVariables as aw, type DatabaseCatalogFragment as ax, type DatabaseCatalog_EngineQueryVariables as ay, type Database_TablesQueryVariables as az, type ActionFragment as b, type SetDatabasePrimaryKeyMutationVariables as b$, type CreateTableMutationVariables as b0, type CreateUserSkillFileMutationVariables as b1, type UserSkillFileModelFragment as b2, type CreateUserSkillFolderMutationVariables as b3, type UserSkillFolderModelFragment as b4, type CubeModelFragment as b5, type DatabaseCatalogConnectionFragment as b6, type DatabaseCatalogsQueryVariables as b7, type DatabaseConnectionFragment as b8, type DatabaseQueryVariables as b9, type Integration_ProviderQueryVariables as bA, type IntegrationProviderFragment as bB, type IntegrationCatalogQueryVariables as bC, type IntegrationCatalogFragment as bD, type IntegrationCatalog_ProviderQueryVariables as bE, type DocumentCatalogConnectionFragment as bF, type DocumentCatalogsQueryVariables as bG, type DocumentConnectionFragment as bH, type Document_Format_CatalogQueryVariables as bI, type DocumentsQueryVariables as bJ, type ChatStreamClient as bK, type ExecuteChatImportMutationVariables as bL, type GenerateUploadUriMutationVariables as bM, type FileModelFragment as bN, type PreviewChatImportMutationVariables as bO, type ReanalyzeDocumentMutationVariables as bP, type RefineAgentInstructionMutationVariables as bQ, type RefineSkillInstructionMutationVariables as bR, type RefreshDatabaseSchemaMutationVariables as bS, type RefreshInsightMutationVariables as bT, type ReinterpretSourceMutationVariables as bU, type ReinterpretSourcesOfuserMutationVariables as bV, type RelocateInsightMutationVariables as bW, type RemoveInsightFromReportMutationVariables as bX, type ResolvePulseEventMutationVariables as bY, type WorkspaceDeleteScheduleFragment as bZ, type SendMessageMutationVariables as b_, type DatabaseSchemaQueryVariables as ba, type Database_Engine_CatalogQueryVariables as bb, type DatabasesQueryVariables as bc, type DeepAnalysisUsageFragment as bd, type DeleteAgentMutationVariables as be, type DeleteArtifactMutationVariables as bf, type DeleteChatMutationVariables as bg, type DeleteDatabaseMutationVariables as bh, type DeleteDocumentMutationVariables as bi, type DeleteFolderMutationVariables as bj, type DeleteInsightMutationVariables as bk, type DeleteInsightsMutationVariables as bl, type DeleteIntegrationMutationVariables as bm, type DeleteReportMutationVariables as bn, type DeleteTableMutationVariables as bo, type DeleteUserSkillFileMutationVariables as bp, type DeleteUserSkillFolderMutationVariables as bq, type DevAccessTokenOutputFragment as br, type DisconnectIntegrationMutationVariables as bs, type DismissPulseEventMutationVariables as bt, PulseEventPriority as bu, PulseEventKind as bv, type PulseEventFragment as bw, type PulseEvent_IntegrationQueryVariables as bx, IntegrationStatus as by, type IntegrationFragment as bz, ChatMessageFromEnum as c, type GetUsageQueryVariables as c$, type UpdateAgentMutationVariables as c0, type UpdateArtifactNameMutationVariables as c1, type UpdateChatMutationVariables as c2, type UpdateDatabaseMutationVariables as c3, type UpdateDocumentMutationVariables as c4, type UpdateFolderMutationVariables as c5, type UpdateInsightMutationVariables as c6, type UpdateInsightInReportMutationVariables as c7, type UpdateInsightThumbnailMutationVariables as c8, type UpdateInterpMutationVariables as c9, type FeedSendMessageActionFragment as cA, type FeedItem_DataQueryVariables as cB, type FeedItemsQueryVariables as cC, type FeedConnectionFragment as cD, type FileQueryVariables as cE, type FileMetaQueryVariables as cF, type FileUrlsQueryVariables as cG, type ResolvedFileUrlFragment as cH, type FindFitTierQueryVariables as cI, EntitlementTier as cJ, type FolderQueryVariables as cK, type FoldersQueryVariables as cL, type FolderConnectionFragment as cM, type GetCapabilityQueryVariables as cN, type GetDevAccessTokenQueryVariables as cO, type GetLimitQueryVariables as cP, type GetRemainingQueryVariables as cQ, type GetTokenUsageByModelQueryVariables as cR, type ModelTokenUsageFragment as cS, type GetTokenUsageHistoryQueryVariables as cT, type GetTokenUsageStatusQueryVariables as cU, TokenUsageLimit as cV, ActiveWindowType as cW, type WindowDetailTypeFragment as cX, type UsageWindowsStatusTypeFragment as cY, type UsageStatusFragment as cZ, type GetTokenUsageStatus_WindowsQueryVariables as c_, InterpretationType as ca, AiResourceType as cb, type InterpretationFragment as cc, type UpdateLiveContextMutationVariables as cd, LiveContextStatus as ce, type LiveContextFragment as cf, type UpdatePulseTriggerMutationVariables as cg, type PulseTriggerSettingModelFragment as ch, type UpdateReportMutationVariables as ci, type UpdateTableMutationVariables as cj, type UpdateUserSkillFileMutationVariables as ck, type UpdateUserSkillFolderMutationVariables as cl, type ExportQueryVariables as cm, type ExportWithInsightIdQueryVariables as cn, type FeedItemQueryVariables as co, FeedItemKind as cp, type FeedDocumentDataFragment as cq, type FeedArtifactDataFragment as cr, type FeedDatabaseDataFragment as cs, type FeedInsightDataFragment as ct, type FeedIntegrationDataFragment as cu, type FeedLiveContextDataFragment as cv, type FeedPulseDataFragment as cw, type FeedItemFragment as cx, type FeedItem_ActionQueryVariables as cy, FeedActionType as cz, type ChatMessageFragment as d, type ReasoningEventOutputFragment as d$, type InsightsQueryVariables as d0, type IntegrationQueryVariables as d1, type IntegrationCatalogToolsQueryVariables as d2, type IntegrationCatalogsQueryVariables as d3, type IntegrationCatalogConnectionFragment as d4, type IntegrationsQueryVariables as d5, type IntegrationConnectionFragment as d6, type InterpretationsQueryVariables as d7, type InterpretationConnectionFragment as d8, type NotificationQueryVariables as d9, type McpAuthUpdatesSubscriptionVariables as dA, McpAuthPhase as dB, type McpAuthUpdateModelFragment as dC, type TokenUsageUpdatesSubscriptionVariables as dD, type EvidenceFragment as dE, type FailedSyncEventIngestionFragment as dF, type FeedItemGeneratedFragment as dG, type StreamMessageContentOutputFragment as dH, type StreamMessageOutputFragment as dI, type UsageMetaOutputFragment as dJ, type FinalContentEventOutputFragment as dK, type GetTokenUsageStatus_Windows_DayQueryVariables as dL, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as dM, type GetTokenUsageStatus_Windows_MonthQueryVariables as dN, type GetTokenUsageStatus_Windows_WeekQueryVariables as dO, type InferenceRequestAuditFragment as dP, type Integration_Provider_CatalogQueryVariables as dQ, type InvocationFragment as dR, type McpClientInformationFragment as dS, type McpCodeVerifierFragment as dT, type McpServerFragment as dU, type McpTokensFragment as dV, type McpToolFragment as dW, type MessageEndEventOutputFragment as dX, type MessageStartEventOutputFragment as dY, type ProgressSummaryEventOutputFragment as dZ, type PulseEvent_Integration_ProviderQueryVariables as d_, NotificationCategory as da, NotificationPriority as db, NotificationStatus as dc, type NotificationFragment as dd, type NotificationsQueryVariables as de, type NotificationConnectionFragment as df, type NotificationsByReferenceQueryVariables as dg, type PrivacyStatsQueryVariables as dh, type PrivacyStatsFragment as di, type PulseAppSummaryQueryVariables as dj, type PulseAppSummaryModelFragment as dk, type PulseEventQueryVariables as dl, type PulseEventsQueryVariables as dm, type PulseEventConnectionFragment as dn, type PulseTriggerSettingsQueryVariables as dp, type QueryQueryVariables as dq, type QueryWithInsightIdQueryVariables as dr, type QueryWithMessageIdQueryVariables as ds, type ReportsQueryVariables as dt, type TablesQueryVariables as du, type UserSkillFileQueryVariables as dv, type UserSkillFilesQueryVariables as dw, type UserSkillFolderQueryVariables as dx, type UserSkillFoldersQueryVariables as dy, type WorkspaceDeletionScheduleQueryVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, type ResetWorkspaceMutationVariables as e0, type ScheduleWorkspaceDeletionMutationVariables as e1, type TextBlockEventOutputFragment as e2, type TextDeltaEventOutputFragment as e3, type WidgetBlockStartEventOutputFragment as e4, type WidgetHtmlDeltaEventOutputFragment as e5, type WidgetBlockCompleteEventOutputFragment as e6, type WidgetBlockErrorEventOutputFragment as e7, type ToolStartEventOutputFragment as e8, type ToolInputDeltaEventOutputFragment as e9, DocumentCatalogOrderByRelevanceFieldEnum as eA, DocumentOrderByRelevanceFieldEnum as eB, type DvinaSdkBaseOptions as eC, type DvinaSdkCallbackOptions as eD, type DvinaSdkTokenOptions as eE, FeedItemOrderByRelevanceFieldEnum as eF, FeedbackOrderByRelevanceFieldEnum as eG, FileOrderByRelevanceFieldEnum as eH, FileUrlVariant as eI, FolderOrderByRelevanceFieldEnum as eJ, InsightOrderByRelevanceFieldEnum as eK, IntegrationCatalogOrderByRelevanceFieldEnum as eL, IntegrationOrderByRelevanceFieldEnum as eM, InterpretationOrderByRelevanceFieldEnum as eN, LimitType as eO, NotificationOrderByRelevanceFieldEnum as eP, NullsOrder as eQ, PulseEventOrderByRelevanceFieldEnum as eR, QueryMode as eS, ReportOrderByRelevanceFieldEnum as eT, SendMessageModel as eU, SortOrder as eV, TableOrderByRelevanceFieldEnum as eW, UsageHistoryGranularity as eX, createChatStreamClient as eY, createDvinaClient as eZ, type ToolResultArtifactOutputFragment as ea, type ToolResultEventOutputFragment as eb, type StreamEventSchemaAnchorFragment as ec, type SyncEventFragment as ed, type SyncEventCursorFragment as ee, type Table_Database_EngineQueryVariables as ef, type Table_Document_ContentsQueryVariables as eg, type Table_Document_FileQueryVariables as eh, type Table_Document_FormatQueryVariables as ei, type TokenUsageFragment as ej, type UserSkillFileFragment as ek, type UserSkillFolderFragment as el, type ActiveChatStreamClient as em, type ActiveChatStreamListener as en, type ActiveChatStreamListenerHandlers as eo, AgentOrderByRelevanceFieldEnum as ep, ArtifactOrderByRelevanceFieldEnum as eq, CapabilityType as er, ChatMessageOrderByRelevanceFieldEnum as es, ChatOrderByRelevanceFieldEnum as et, type ChatStreamClientOptions as eu, type ChatStreamEvent as ev, type ChatStreamListener as ew, type ChatStreamListenerHandlers as ex, DatabaseCatalogOrderByRelevanceFieldEnum as ey, DatabaseOrderByRelevanceFieldEnum as ez, ArtifactKind as f, type ArtifactFragment as g, type Artifact_ChatQueryVariables as h, type ChatFragment as i, type Chat_AgentsQueryVariables as j, type AgentFragment as k, type Agent_ChatsQueryVariables as l, type ChatConnectionFragment as m, type AgentConnectionFragment as n, type Chat_ArtifactsQueryVariables as o, type Chat_InsightQueryVariables as p, type Insight_ChatQueryVariables as q, type Insight_ReportMembersQueryVariables as r, type ReportMemberFragment as s, type ReportQueryVariables as t, type ReportFragment as u, type Report_InsightsQueryVariables as v, type InsightConnectionFragment as w, type Report_LayoutQueryVariables as x, type Artifact_FileQueryVariables as y, type Artifact_MessageQueryVariables as z };
|
|
7283
|
+
export { type Insight_ReportsQueryVariables as $, type AbortChatMutationVariables as A, type Report_LayoutQueryVariables as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, type Artifact_FileQueryVariables as E, type FileFragment as F, type Artifact_MessageQueryVariables as G, type ChatMessage_ChatQueryVariables as H, type InsightFragment as I, type ChatMessage_ContentsQueryVariables as J, ContentBlockType as K, type ContentBlockFragment as L, type ChatMessage_FeedbackQueryVariables as M, FeedbackType as N, type FeedbackFragment as O, Presentation as P, type Chat_MessagesQueryVariables as Q, ReportMemberSize as R, type ChatMessageConnectionFragment as S, type Chat_ProjectQueryVariables as T, type Project_ChatsQueryVariables as U, type Project_DesktopBindingQueryVariables as V, ProjectDesktopContextKind as W, type ProjectDesktopBindingFragment as X, type ProjectQueryVariables as Y, ProjectSource as Z, type ProjectFragment as _, ActionType as a, type DocumentFragment as a$, type ReportConnectionFragment as a0, type Insight_ThumbnailFileQueryVariables as a1, type InsightQueryVariables as a2, type ArtifactConnectionFragment as a3, type AddInsightToReportMutationVariables as a4, type AgentQueryVariables as a5, type AgentsQueryVariables as a6, type ArtifactQueryVariables as a7, type Artifact_Chat_DesktopDeviceQueryVariables as a8, type Artifact_Chat_InsightQueryVariables as a9, type ChatQueryVariables as aA, type ChatTitleEventOutputFragment as aB, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aC, type Chat_Insight_ReportMembersQueryVariables as aD, type Chat_Insight_ThumbnailFileQueryVariables as aE, type Chat_Project_DesktopBindingQueryVariables as aF, type ChatsQueryVariables as aG, type ConnectIntegrationMutationVariables as aH, type CreateIntegrationOutputFragment as aI, type ConsumePulseEventsMutationVariables as aJ, type ContentMaskFragment as aK, type ContinueImportedChatMutationVariables as aL, type ContinueInterpretationMutationVariables as aM, type CreateAgentMutationVariables as aN, type CreateChatMutationVariables as aO, type CreateDatabaseMutationVariables as aP, type DatabaseFragment as aQ, type Database_EngineQueryVariables as aR, type DatabaseEngineFragment as aS, type DatabaseCatalogQueryVariables as aT, type DatabaseCatalogFragment as aU, type DatabaseCatalog_EngineQueryVariables as aV, type Database_TablesQueryVariables as aW, TableStatus as aX, type TableFragment as aY, type Table_DatabaseQueryVariables as aZ, type Table_DocumentQueryVariables as a_, type Artifact_Chat_ProjectQueryVariables as aa, type Artifact_Message_ChatQueryVariables as ab, type Artifact_Message_ContentsQueryVariables as ac, type Artifact_Message_FeedbackQueryVariables as ad, type ArtifactsQueryVariables as ae, type AudioEventOutputFragment as af, type CancelOauthFlowMutationVariables as ag, type CancelWorkspaceDeletionMutationVariables as ah, type CandidateFragment as ai, type LiveContextQueryVariables as aj, LiveContextStatus as ak, type LiveContextFragment as al, type LiveContext_ItemsQueryVariables as am, FeedActionType as an, type FeedItemGeneratedFragment as ao, type LiveContext_SourceQueryVariables as ap, type CandidateEvidenceFragment as aq, type ImportedChatSummaryOutputFragment as ar, type ChatImportExecuteOutputFragment as as, ChatSourceImportFidelityEnum as at, ChatSourceImportModeEnum as au, type ChatImportPreviewOutputFragment as av, type ChatMessage_Chat_DesktopDeviceQueryVariables as aw, type ChatMessage_Chat_InsightQueryVariables as ax, type ChatMessage_Chat_ProjectQueryVariables as ay, type ChatMessagesQueryVariables as az, type ActionFragment as b, type IntegrationFragment as b$, type Document_ContentsQueryVariables as b0, type DocumentContentFragment as b1, type DocumentQueryVariables as b2, type Document_FileQueryVariables as b3, type Document_FormatQueryVariables as b4, type DocumentFormatFragment as b5, type DocumentCatalogQueryVariables as b6, type DocumentCatalogFragment as b7, type DocumentCatalog_FormatQueryVariables as b8, type Document_TablesQueryVariables as b9, type DatabasesQueryVariables as bA, type DeepAnalysisUsageFragment as bB, type DeleteAgentMutationVariables as bC, type DeleteArtifactMutationVariables as bD, type DeleteChatMutationVariables as bE, type DeleteDatabaseMutationVariables as bF, type DeleteDocumentMutationVariables as bG, type DeleteFolderMutationVariables as bH, type DeleteInsightMutationVariables as bI, type DeleteInsightsMutationVariables as bJ, type DeleteIntegrationMutationVariables as bK, type DeleteProjectMutationVariables as bL, type DeleteReportMutationVariables as bM, type DeleteTableMutationVariables as bN, type DeleteUserSkillFileMutationVariables as bO, type DeleteUserSkillFolderMutationVariables as bP, LocalSandboxDeviceConnectionState as bQ, type DesktopDeviceModelFragment as bR, type DesktopDevicesQueryVariables as bS, type DevAccessTokenOutputFragment as bT, type DisconnectIntegrationMutationVariables as bU, type DismissPulseEventMutationVariables as bV, PulseEventPriority as bW, PulseEventKind as bX, type PulseEventFragment as bY, type PulseEvent_IntegrationQueryVariables as bZ, IntegrationStatus as b_, type Table_FromRelationsQueryVariables as ba, RelationType as bb, type RelationFragment as bc, type TableQueryVariables as bd, type Table_ToRelationsQueryVariables as be, type TableConnectionFragment as bf, type CreateDocumentMutationVariables as bg, type CreateFeedbackMutationVariables as bh, type CreateFolderMutationVariables as bi, type FolderFragment as bj, type CreateInsightMutationVariables as bk, type CreateIntegrationMutationVariables as bl, type CreateProjectMutationVariables as bm, type CreateReportMutationVariables as bn, type CreateTableMutationVariables as bo, type CreateUserSkillFileMutationVariables as bp, type UserSkillFileModelFragment as bq, type CreateUserSkillFolderMutationVariables as br, type UserSkillFolderModelFragment as bs, type CubeModelFragment as bt, type DatabaseCatalogConnectionFragment as bu, type DatabaseCatalogsQueryVariables as bv, type DatabaseConnectionFragment as bw, type DatabaseQueryVariables as bx, type DatabaseSchemaQueryVariables as by, type Database_Engine_CatalogQueryVariables as bz, ChatMessageFromEnum as c, type FeedItem_ActionQueryVariables as c$, type Integration_ProviderQueryVariables as c0, type IntegrationProviderFragment as c1, type IntegrationCatalogQueryVariables as c2, type IntegrationCatalogFragment as c3, type IntegrationCatalog_ProviderQueryVariables as c4, type DocumentCatalogConnectionFragment as c5, type DocumentCatalogsQueryVariables as c6, type DocumentConnectionFragment as c7, type Document_Format_CatalogQueryVariables as c8, type DocumentsQueryVariables as c9, type UpdateInsightMutationVariables as cA, type UpdateInsightInReportMutationVariables as cB, type UpdateInsightThumbnailMutationVariables as cC, type UpdateInterpMutationVariables as cD, InterpretationType as cE, AiResourceType as cF, type InterpretationFragment as cG, type UpdateLiveContextMutationVariables as cH, type UpdateProjectMutationVariables as cI, type UpdatePulseTriggerMutationVariables as cJ, type PulseTriggerSettingModelFragment as cK, type UpdateReportMutationVariables as cL, type UpdateTableMutationVariables as cM, type UpdateUserSkillFileMutationVariables as cN, type UpdateUserSkillFolderMutationVariables as cO, type ExportQueryVariables as cP, type ExportWithInsightIdQueryVariables as cQ, type FeedItemQueryVariables as cR, FeedItemKind as cS, type FeedDocumentDataFragment as cT, type FeedArtifactDataFragment as cU, type FeedDatabaseDataFragment as cV, type FeedInsightDataFragment as cW, type FeedIntegrationDataFragment as cX, type FeedLiveContextDataFragment as cY, type FeedPulseDataFragment as cZ, type FeedItemFragment as c_, type ChatStreamClient as ca, type ExecuteChatImportMutationVariables as cb, type GenerateUploadUriMutationVariables as cc, type FileModelFragment as cd, type PreviewChatImportMutationVariables as ce, type ReanalyzeDocumentMutationVariables as cf, type RefineAgentInstructionMutationVariables as cg, type RefineSkillInstructionMutationVariables as ch, type RefreshDatabaseSchemaMutationVariables as ci, type RefreshInsightMutationVariables as cj, type RegisterDesktopDeviceMutationVariables as ck, type ReinterpretSourceMutationVariables as cl, type ReinterpretSourcesOfuserMutationVariables as cm, type RelocateInsightMutationVariables as cn, type RemoveInsightFromReportMutationVariables as co, type ResolvePulseEventMutationVariables as cp, type WorkspaceDeleteScheduleFragment as cq, type SendMessageMutationVariables as cr, type SetDatabasePrimaryKeyMutationVariables as cs, type SyncProjectDesktopBindingMutationVariables as ct, type UpdateAgentMutationVariables as cu, type UpdateArtifactNameMutationVariables as cv, type UpdateChatMutationVariables as cw, type UpdateDatabaseMutationVariables as cx, type UpdateDocumentMutationVariables as cy, type UpdateFolderMutationVariables as cz, type ChatMessageFragment as d, type PulseTriggerSettingsQueryVariables as d$, type FeedSendMessageActionFragment as d0, type FeedItem_DataQueryVariables as d1, type FeedItemsQueryVariables as d2, type FeedConnectionFragment as d3, type FileQueryVariables as d4, type FileMetaQueryVariables as d5, type FileUrlsQueryVariables as d6, type ResolvedFileUrlFragment as d7, type FindFitTierQueryVariables as d8, EntitlementTier as d9, type InterpretationsQueryVariables as dA, type InterpretationConnectionFragment as dB, type LiveContextsQueryVariables as dC, type LiveContextConnectionFragment as dD, type LocalRuntimeOverviewQueryVariables as dE, type LocalRuntimeDeviceModelFragment as dF, type LocalRuntimeOverviewModelFragment as dG, type LocalRuntimeOverview_DevicesQueryVariables as dH, type LocalSandboxDeviceStatusQueryVariables as dI, type LocalSandboxDeviceStatusModelFragment as dJ, type NotificationQueryVariables as dK, NotificationCategory as dL, NotificationPriority as dM, NotificationStatus as dN, type NotificationFragment as dO, type NotificationsQueryVariables as dP, type NotificationConnectionFragment as dQ, type NotificationsByReferenceQueryVariables as dR, type PrivacyStatsQueryVariables as dS, type PrivacyStatsFragment as dT, type ProjectsQueryVariables as dU, type ProjectConnectionFragment as dV, type PulseAppSummaryQueryVariables as dW, type PulseAppSummaryModelFragment as dX, type PulseEventQueryVariables as dY, type PulseEventsQueryVariables as dZ, type PulseEventConnectionFragment as d_, type FolderQueryVariables as da, type FoldersQueryVariables as db, type FolderConnectionFragment as dc, type GetCapabilityQueryVariables as dd, type GetDevAccessTokenQueryVariables as de, type GetLimitQueryVariables as df, type GetRemainingQueryVariables as dg, type GetTokenUsageByModelQueryVariables as dh, type ModelTokenUsageFragment as di, type GetTokenUsageHistoryQueryVariables as dj, type GetTokenUsageStatusQueryVariables as dk, TokenUsageLimit as dl, ActiveWindowType as dm, type WindowDetailTypeFragment as dn, type UsageWindowsStatusTypeFragment as dp, type UsageStatusFragment as dq, type GetTokenUsageStatus_WindowsQueryVariables as dr, type GetUsageQueryVariables as ds, type InsightsQueryVariables as dt, type IntegrationQueryVariables as du, type IntegrationCatalogToolsQueryVariables as dv, type IntegrationCatalogsQueryVariables as dw, type IntegrationCatalogConnectionFragment as dx, type IntegrationsQueryVariables as dy, type IntegrationConnectionFragment as dz, type ChatMessage_ArtifactsQueryVariables as e, type ActiveChatStreamClient as e$, type QueryQueryVariables as e0, type QueryWithInsightIdQueryVariables as e1, type QueryWithMessageIdQueryVariables as e2, type ReportsQueryVariables as e3, type TablesQueryVariables as e4, type UserSkillFileQueryVariables as e5, type UserSkillFilesQueryVariables as e6, type UserSkillFolderQueryVariables as e7, type UserSkillFoldersQueryVariables as e8, type WorkspaceDeletionScheduleQueryVariables as e9, type MessageStartEventOutputFragment as eA, type ProgressSummaryEventOutputFragment as eB, type Project_DesktopBinding_DeviceQueryVariables as eC, type PulseEvent_Integration_ProviderQueryVariables as eD, type ReasoningEventOutputFragment as eE, type ResetWorkspaceMutationVariables as eF, type ScheduleWorkspaceDeletionMutationVariables as eG, type TextBlockEventOutputFragment as eH, type TextDeltaEventOutputFragment as eI, type WidgetBlockStartEventOutputFragment as eJ, type WidgetHtmlDeltaEventOutputFragment as eK, type WidgetBlockCompleteEventOutputFragment as eL, type WidgetBlockErrorEventOutputFragment as eM, type ToolStartEventOutputFragment as eN, type ToolInputDeltaEventOutputFragment as eO, type ToolResultArtifactOutputFragment as eP, type ToolResultEventOutputFragment as eQ, type StreamEventSchemaAnchorFragment as eR, type SyncEventFragment as eS, type SyncEventCursorFragment as eT, type Table_Database_EngineQueryVariables as eU, type Table_Document_ContentsQueryVariables as eV, type Table_Document_FileQueryVariables as eW, type Table_Document_FormatQueryVariables as eX, type TokenUsageFragment as eY, type UserSkillFileFragment as eZ, type UserSkillFolderFragment as e_, type McpAuthUpdatesSubscriptionVariables as ea, McpAuthPhase as eb, type McpAuthUpdateModelFragment as ec, type TokenUsageUpdatesSubscriptionVariables as ed, type EvidenceFragment as ee, type FailedSyncEventIngestionFragment as ef, type StreamMessageContentOutputFragment as eg, type StreamMessageOutputFragment as eh, type UsageMetaOutputFragment as ei, type FinalContentEventOutputFragment as ej, type GetTokenUsageStatus_Windows_DayQueryVariables as ek, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as el, type GetTokenUsageStatus_Windows_MonthQueryVariables as em, type GetTokenUsageStatus_Windows_WeekQueryVariables as en, type InferenceRequestAuditFragment as eo, type Insight_Chat_DesktopDeviceQueryVariables as ep, type Insight_Chat_ProjectQueryVariables as eq, type Integration_Provider_CatalogQueryVariables as er, type InvocationFragment as es, type LiveContext_Source_EvidencesQueryVariables as et, type McpClientInformationFragment as eu, type McpCodeVerifierFragment as ev, type McpServerFragment as ew, type McpTokensFragment as ex, type McpToolFragment as ey, type MessageEndEventOutputFragment as ez, ArtifactKind as f, type ActiveChatStreamListener as f0, type ActiveChatStreamListenerHandlers as f1, AgentOrderByRelevanceFieldEnum as f2, ArtifactOrderByRelevanceFieldEnum as f3, CapabilityType as f4, ChatMessageOrderByRelevanceFieldEnum as f5, ChatOrderByRelevanceFieldEnum as f6, type ChatStreamClientOptions as f7, type ChatStreamEvent as f8, type ChatStreamListener as f9, ReportOrderByRelevanceFieldEnum as fA, SendMessageModel as fB, SortOrder as fC, TableOrderByRelevanceFieldEnum as fD, UsageHistoryGranularity as fE, createChatStreamClient as fF, createDvinaClient as fG, type ChatStreamListenerHandlers as fa, DatabaseCatalogOrderByRelevanceFieldEnum as fb, DatabaseOrderByRelevanceFieldEnum as fc, DesktopDeviceOrderByRelevanceFieldEnum as fd, DocumentCatalogOrderByRelevanceFieldEnum as fe, DocumentOrderByRelevanceFieldEnum as ff, type DvinaSdkBaseOptions as fg, type DvinaSdkCallbackOptions as fh, type DvinaSdkTokenOptions as fi, FeedItemOrderByRelevanceFieldEnum as fj, FeedbackOrderByRelevanceFieldEnum as fk, FileOrderByRelevanceFieldEnum as fl, FileUrlVariant as fm, FolderOrderByRelevanceFieldEnum as fn, InsightOrderByRelevanceFieldEnum as fo, IntegrationCatalogOrderByRelevanceFieldEnum as fp, IntegrationOrderByRelevanceFieldEnum as fq, InterpretationOrderByRelevanceFieldEnum as fr, LimitType as fs, LiveContextOrderByRelevanceFieldEnum as ft, NotificationOrderByRelevanceFieldEnum as fu, NullsOrder as fv, ProjectDesktopBindingOrderByRelevanceFieldEnum as fw, ProjectOrderByRelevanceFieldEnum as fx, PulseEventOrderByRelevanceFieldEnum as fy, QueryMode as fz, type ArtifactFragment as g, type Artifact_ChatQueryVariables as h, ChatSourceProviderEnum as i, type ChatFragment as j, type Chat_AgentsQueryVariables as k, type AgentFragment as l, type Agent_ChatsQueryVariables as m, type ChatConnectionFragment as n, type AgentConnectionFragment as o, type Chat_ArtifactsQueryVariables as p, type Chat_DesktopDeviceQueryVariables as q, type DesktopDeviceFragment as r, type Chat_InsightQueryVariables as s, type Insight_ChatQueryVariables as t, type Insight_ReportMembersQueryVariables as u, type ReportMemberFragment as v, type ReportQueryVariables as w, type ReportFragment as x, type Report_InsightsQueryVariables as y, type InsightConnectionFragment as z };
|