@dvina/sdk 4.0.175 → 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-IY3FWPNP.cjs → _generated_documents-AR6ISLTA.cjs} +746 -550
- package/dist/{_generated_documents-IY3FWPNP.cjs.map → _generated_documents-AR6ISLTA.cjs.map} +1 -1
- package/dist/_generated_documents-XGXYPVHZ.js +4 -0
- package/dist/{_generated_documents-Q6OTMWZ6.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-MF2FZGXV.js → chunk-NE4IXNQK.js} +107 -18
- package/dist/chunk-NE4IXNQK.js.map +1 -0
- package/dist/{chunk-K3X4BLL7.cjs → chunk-SLPANKVO.cjs} +155 -17
- package/dist/chunk-SLPANKVO.cjs.map +1 -0
- package/dist/{chunk-IHJ5KI6X.cjs → chunk-SMEJRZG2.cjs} +1764 -530
- package/dist/chunk-SMEJRZG2.cjs.map +1 -0
- package/dist/{chunk-4G7NIJ4M.js → chunk-U3M3VJSQ.js} +1214 -13
- package/dist/chunk-U3M3VJSQ.js.map +1 -0
- package/dist/{client-DE3e6SwA.d.cts → client-Bcq6vHcs.d.cts} +978 -1
- package/dist/{client-3CExTHwf.d.ts → client-VdxyMRd6.d.ts} +978 -1
- package/dist/index.cjs +561 -405
- package/dist/index.d.cts +300 -3
- package/dist/index.d.ts +300 -3
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/dist/_generated_documents-Q6OTMWZ6.js +0 -4
- package/dist/chunk-4G7NIJ4M.js.map +0 -1
- package/dist/chunk-IHJ5KI6X.cjs.map +0 -1
- package/dist/chunk-K3X4BLL7.cjs.map +0 -1
- package/dist/chunk-MF2FZGXV.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,28 +554,46 @@ 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>;
|
|
509
577
|
id?: InputMaybe<Scalars['String']>;
|
|
510
578
|
insight?: InputMaybe<InsightCreateNestedOneWithoutChatInput>;
|
|
511
579
|
name: Scalars['String'];
|
|
512
580
|
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
513
581
|
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
514
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>;
|
|
590
|
+
id?: InputMaybe<Scalars['String']>;
|
|
591
|
+
insight?: InputMaybe<InsightCreateNestedOneWithoutChatInput>;
|
|
592
|
+
messages?: InputMaybe<ChatMessageCreateNestedManyWithoutChatInput>;
|
|
593
|
+
name: Scalars['String'];
|
|
594
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
595
|
+
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
596
|
+
piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
515
597
|
};
|
|
516
598
|
type ChatImportExecuteInput = {
|
|
517
599
|
files: Array<ChatImportFileInput>;
|
|
@@ -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,18 @@ 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>;
|
|
858
1015
|
id?: InputMaybe<Scalars['String']>;
|
|
859
1016
|
insight?: InputMaybe<InsightUpdateOneWithoutChatNestedInput>;
|
|
860
1017
|
messages?: InputMaybe<ChatMessageUpdateManyWithoutChatNestedInput>;
|
|
@@ -862,28 +1019,69 @@ type ChatUpdateWithoutArtifactsInput = {
|
|
|
862
1019
|
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
863
1020
|
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
864
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']>;
|
|
1028
|
+
id?: InputMaybe<Scalars['String']>;
|
|
1029
|
+
insight?: InputMaybe<InsightUpdateOneWithoutChatNestedInput>;
|
|
1030
|
+
messages?: InputMaybe<ChatMessageUpdateManyWithoutChatNestedInput>;
|
|
1031
|
+
name?: InputMaybe<Scalars['String']>;
|
|
1032
|
+
originMeta?: InputMaybe<Scalars['JSON']>;
|
|
1033
|
+
piiMaskRules?: InputMaybe<Scalars['JSON']>;
|
|
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>>;
|
|
@@ -2309,6 +2729,11 @@ type LiveContextWhereUniqueInput = {
|
|
|
2309
2729
|
title?: InputMaybe<StringFilter>;
|
|
2310
2730
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
2311
2731
|
};
|
|
2732
|
+
declare enum LocalSandboxDeviceConnectionState {
|
|
2733
|
+
Connected = "CONNECTED",
|
|
2734
|
+
Disconnected = "DISCONNECTED",
|
|
2735
|
+
Unavailable = "UNAVAILABLE"
|
|
2736
|
+
}
|
|
2312
2737
|
declare enum McpAuthPhase {
|
|
2313
2738
|
Cancelled = "Cancelled",
|
|
2314
2739
|
Completed = "Completed",
|
|
@@ -2406,6 +2831,329 @@ type ProgressSummaryEventOutput = {
|
|
|
2406
2831
|
targetToolCallId?: Maybe<Scalars['String']>;
|
|
2407
2832
|
type: Scalars['String'];
|
|
2408
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
|
+
};
|
|
2409
3157
|
declare enum PulseEventKind {
|
|
2410
3158
|
Activity = "activity",
|
|
2411
3159
|
NeedsAction = "needs_action",
|
|
@@ -3072,6 +3820,12 @@ type StringFilter = {
|
|
|
3072
3820
|
search?: InputMaybe<Scalars['String']>;
|
|
3073
3821
|
startsWith?: InputMaybe<Scalars['String']>;
|
|
3074
3822
|
};
|
|
3823
|
+
type SyncProjectDesktopBindingInput = {
|
|
3824
|
+
deviceId?: InputMaybe<Scalars['String']>;
|
|
3825
|
+
iconDataUrl?: InputMaybe<Scalars['String']>;
|
|
3826
|
+
kind?: InputMaybe<ProjectDesktopContextKind>;
|
|
3827
|
+
rootPath?: InputMaybe<Scalars['String']>;
|
|
3828
|
+
};
|
|
3075
3829
|
type TableCreateNestedOneWithoutFromRelationsInput = {
|
|
3076
3830
|
connect?: InputMaybe<TableWhereUniqueInput>;
|
|
3077
3831
|
connectOrCreate?: InputMaybe<TableCreateOrConnectWithoutFromRelationsInput>;
|
|
@@ -3473,17 +4227,28 @@ type ChatFragment = {
|
|
|
3473
4227
|
__typename: 'Chat';
|
|
3474
4228
|
closedAt?: string | null;
|
|
3475
4229
|
createdAt: string;
|
|
4230
|
+
deviceId?: string | null;
|
|
3476
4231
|
id: string;
|
|
3477
4232
|
insightId?: string | null;
|
|
3478
4233
|
name: string;
|
|
3479
4234
|
originMeta?: any | null;
|
|
3480
4235
|
piiMaskRules?: any | null;
|
|
3481
4236
|
piiSanitizationEnabled: boolean;
|
|
4237
|
+
projectId?: string | null;
|
|
4238
|
+
sourceProvider?: ChatSourceProviderEnum | null;
|
|
3482
4239
|
updatedAt: string;
|
|
4240
|
+
desktopDevice?: {
|
|
4241
|
+
__typename?: 'DesktopDevice';
|
|
4242
|
+
id: string;
|
|
4243
|
+
} | null;
|
|
3483
4244
|
insight?: {
|
|
3484
4245
|
__typename?: 'Insight';
|
|
3485
4246
|
id: string;
|
|
3486
4247
|
} | null;
|
|
4248
|
+
project?: {
|
|
4249
|
+
__typename?: 'Project';
|
|
4250
|
+
id: string;
|
|
4251
|
+
} | null;
|
|
3487
4252
|
};
|
|
3488
4253
|
type ChatConnectionFragment = {
|
|
3489
4254
|
__typename: 'ChatConnection';
|
|
@@ -3492,17 +4257,28 @@ type ChatConnectionFragment = {
|
|
|
3492
4257
|
__typename: 'Chat';
|
|
3493
4258
|
closedAt?: string | null;
|
|
3494
4259
|
createdAt: string;
|
|
4260
|
+
deviceId?: string | null;
|
|
3495
4261
|
id: string;
|
|
3496
4262
|
insightId?: string | null;
|
|
3497
4263
|
name: string;
|
|
3498
4264
|
originMeta?: any | null;
|
|
3499
4265
|
piiMaskRules?: any | null;
|
|
3500
4266
|
piiSanitizationEnabled: boolean;
|
|
4267
|
+
projectId?: string | null;
|
|
4268
|
+
sourceProvider?: ChatSourceProviderEnum | null;
|
|
3501
4269
|
updatedAt: string;
|
|
4270
|
+
desktopDevice?: {
|
|
4271
|
+
__typename?: 'DesktopDevice';
|
|
4272
|
+
id: string;
|
|
4273
|
+
} | null;
|
|
3502
4274
|
insight?: {
|
|
3503
4275
|
__typename?: 'Insight';
|
|
3504
4276
|
id: string;
|
|
3505
4277
|
} | null;
|
|
4278
|
+
project?: {
|
|
4279
|
+
__typename?: 'Project';
|
|
4280
|
+
id: string;
|
|
4281
|
+
} | null;
|
|
3506
4282
|
}> | null;
|
|
3507
4283
|
pageInfo: {
|
|
3508
4284
|
__typename?: 'PageInfo';
|
|
@@ -3767,6 +4543,34 @@ type DeepAnalysisUsageFragment = {
|
|
|
3767
4543
|
numberOfImages?: number | null;
|
|
3768
4544
|
tokenCost?: number | null;
|
|
3769
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
|
+
};
|
|
3770
4574
|
type DevAccessTokenOutputFragment = {
|
|
3771
4575
|
__typename: 'DevAccessTokenOutput';
|
|
3772
4576
|
access_token: string;
|
|
@@ -4638,6 +5442,47 @@ type LiveContextConnectionFragment = {
|
|
|
4638
5442
|
startCursor?: string | null;
|
|
4639
5443
|
};
|
|
4640
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
|
+
};
|
|
4641
5486
|
type McpAuthUpdateModelFragment = {
|
|
4642
5487
|
__typename: 'McpAuthUpdateModel';
|
|
4643
5488
|
authorizationUrl?: string | null;
|
|
@@ -4776,6 +5621,52 @@ type ProgressSummaryEventOutputFragment = {
|
|
|
4776
5621
|
targetToolCallId?: string | null;
|
|
4777
5622
|
type: string;
|
|
4778
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
|
+
};
|
|
4779
5670
|
type PulseAppSummaryModelFragment = {
|
|
4780
5671
|
__typename: 'PulseAppSummaryModel';
|
|
4781
5672
|
activeTriggerCount: number;
|
|
@@ -5470,6 +6361,9 @@ type CreateIntegrationMutationVariables = Exact<{
|
|
|
5470
6361
|
callbackUrl: Scalars['String'];
|
|
5471
6362
|
provider: Scalars['String'];
|
|
5472
6363
|
}>;
|
|
6364
|
+
type CreateProjectMutationVariables = Exact<{
|
|
6365
|
+
data: ProjectCreateInput;
|
|
6366
|
+
}>;
|
|
5473
6367
|
type CreateReportMutationVariables = Exact<{
|
|
5474
6368
|
data: ReportCreateInput;
|
|
5475
6369
|
}>;
|
|
@@ -5516,6 +6410,9 @@ type DeleteInsightsMutationVariables = Exact<{
|
|
|
5516
6410
|
type DeleteIntegrationMutationVariables = Exact<{
|
|
5517
6411
|
id: Scalars['String'];
|
|
5518
6412
|
}>;
|
|
6413
|
+
type DeleteProjectMutationVariables = Exact<{
|
|
6414
|
+
where: ProjectWhereUniqueInput;
|
|
6415
|
+
}>;
|
|
5519
6416
|
type DeleteReportMutationVariables = Exact<{
|
|
5520
6417
|
where: ReportWhereUniqueInput;
|
|
5521
6418
|
}>;
|
|
@@ -5558,6 +6455,10 @@ type RefreshDatabaseSchemaMutationVariables = Exact<{
|
|
|
5558
6455
|
type RefreshInsightMutationVariables = Exact<{
|
|
5559
6456
|
id: Scalars['ID'];
|
|
5560
6457
|
}>;
|
|
6458
|
+
type RegisterDesktopDeviceMutationVariables = Exact<{
|
|
6459
|
+
connectionId: Scalars['String'];
|
|
6460
|
+
data: DesktopDeviceCreateInput;
|
|
6461
|
+
}>;
|
|
5561
6462
|
type ReinterpretSourceMutationVariables = Exact<{
|
|
5562
6463
|
sourceId: Scalars['String'];
|
|
5563
6464
|
}>;
|
|
@@ -5598,6 +6499,10 @@ type SetDatabasePrimaryKeyMutationVariables = Exact<{
|
|
|
5598
6499
|
fields: Array<Scalars['String']> | Scalars['String'];
|
|
5599
6500
|
tableId: Scalars['String'];
|
|
5600
6501
|
}>;
|
|
6502
|
+
type SyncProjectDesktopBindingMutationVariables = Exact<{
|
|
6503
|
+
input: SyncProjectDesktopBindingInput;
|
|
6504
|
+
projectId: Scalars['ID'];
|
|
6505
|
+
}>;
|
|
5601
6506
|
type UpdateAgentMutationVariables = Exact<{
|
|
5602
6507
|
data: AgentUpdateInput;
|
|
5603
6508
|
where: AgentWhereUniqueInput;
|
|
@@ -5643,6 +6548,10 @@ type UpdateLiveContextMutationVariables = Exact<{
|
|
|
5643
6548
|
data: LiveContextUpdateInput;
|
|
5644
6549
|
where: LiveContextWhereUniqueInput;
|
|
5645
6550
|
}>;
|
|
6551
|
+
type UpdateProjectMutationVariables = Exact<{
|
|
6552
|
+
data: ProjectUpdateInput;
|
|
6553
|
+
where: ProjectWhereUniqueInput;
|
|
6554
|
+
}>;
|
|
5646
6555
|
type UpdatePulseTriggerMutationVariables = Exact<{
|
|
5647
6556
|
input: UpdatePulseTriggerInput;
|
|
5648
6557
|
}>;
|
|
@@ -5689,9 +6598,15 @@ type ArtifactQueryVariables = Exact<{
|
|
|
5689
6598
|
type Artifact_ChatQueryVariables = Exact<{
|
|
5690
6599
|
id: Scalars['ID'];
|
|
5691
6600
|
}>;
|
|
6601
|
+
type Artifact_Chat_DesktopDeviceQueryVariables = Exact<{
|
|
6602
|
+
id: Scalars['ID'];
|
|
6603
|
+
}>;
|
|
5692
6604
|
type Artifact_Chat_InsightQueryVariables = Exact<{
|
|
5693
6605
|
id: Scalars['ID'];
|
|
5694
6606
|
}>;
|
|
6607
|
+
type Artifact_Chat_ProjectQueryVariables = Exact<{
|
|
6608
|
+
id: Scalars['ID'];
|
|
6609
|
+
}>;
|
|
5695
6610
|
type Artifact_FileQueryVariables = Exact<{
|
|
5696
6611
|
id: Scalars['ID'];
|
|
5697
6612
|
}>;
|
|
@@ -5736,6 +6651,12 @@ type Chat_ArtifactsQueryVariables = Exact<{
|
|
|
5736
6651
|
last?: InputMaybe<Scalars['Int']>;
|
|
5737
6652
|
orderBy?: InputMaybe<Array<ArtifactOrderByWithRelationInput> | ArtifactOrderByWithRelationInput>;
|
|
5738
6653
|
}>;
|
|
6654
|
+
type Chat_DesktopDeviceQueryVariables = Exact<{
|
|
6655
|
+
id: Scalars['ID'];
|
|
6656
|
+
}>;
|
|
6657
|
+
type Chat_DesktopDevice_DesktopBindingsQueryVariables = Exact<{
|
|
6658
|
+
id: Scalars['ID'];
|
|
6659
|
+
}>;
|
|
5739
6660
|
type Chat_InsightQueryVariables = Exact<{
|
|
5740
6661
|
id: Scalars['ID'];
|
|
5741
6662
|
}>;
|
|
@@ -5754,6 +6675,12 @@ type Chat_MessagesQueryVariables = Exact<{
|
|
|
5754
6675
|
last?: InputMaybe<Scalars['Int']>;
|
|
5755
6676
|
orderBy?: InputMaybe<Array<ChatMessageOrderByWithRelationInput> | ChatMessageOrderByWithRelationInput>;
|
|
5756
6677
|
}>;
|
|
6678
|
+
type Chat_ProjectQueryVariables = Exact<{
|
|
6679
|
+
id: Scalars['ID'];
|
|
6680
|
+
}>;
|
|
6681
|
+
type Chat_Project_DesktopBindingQueryVariables = Exact<{
|
|
6682
|
+
id: Scalars['ID'];
|
|
6683
|
+
}>;
|
|
5757
6684
|
type ChatMessageQueryVariables = Exact<{
|
|
5758
6685
|
id: Scalars['ID'];
|
|
5759
6686
|
}>;
|
|
@@ -5769,9 +6696,15 @@ type ChatMessage_ArtifactsQueryVariables = Exact<{
|
|
|
5769
6696
|
type ChatMessage_ChatQueryVariables = Exact<{
|
|
5770
6697
|
id: Scalars['ID'];
|
|
5771
6698
|
}>;
|
|
6699
|
+
type ChatMessage_Chat_DesktopDeviceQueryVariables = Exact<{
|
|
6700
|
+
id: Scalars['ID'];
|
|
6701
|
+
}>;
|
|
5772
6702
|
type ChatMessage_Chat_InsightQueryVariables = Exact<{
|
|
5773
6703
|
id: Scalars['ID'];
|
|
5774
6704
|
}>;
|
|
6705
|
+
type ChatMessage_Chat_ProjectQueryVariables = Exact<{
|
|
6706
|
+
id: Scalars['ID'];
|
|
6707
|
+
}>;
|
|
5775
6708
|
type ChatMessage_ContentsQueryVariables = Exact<{
|
|
5776
6709
|
id: Scalars['ID'];
|
|
5777
6710
|
}>;
|
|
@@ -5838,6 +6771,9 @@ type DatabasesQueryVariables = Exact<{
|
|
|
5838
6771
|
last?: InputMaybe<Scalars['Int']>;
|
|
5839
6772
|
orderBy?: InputMaybe<Array<DatabaseOrderByWithRelationInput> | DatabaseOrderByWithRelationInput>;
|
|
5840
6773
|
}>;
|
|
6774
|
+
type DesktopDevicesQueryVariables = Exact<{
|
|
6775
|
+
[key: string]: never;
|
|
6776
|
+
}>;
|
|
5841
6777
|
type DocumentQueryVariables = Exact<{
|
|
5842
6778
|
id: Scalars['ID'];
|
|
5843
6779
|
}>;
|
|
@@ -5980,6 +6916,12 @@ type InsightQueryVariables = Exact<{
|
|
|
5980
6916
|
type Insight_ChatQueryVariables = Exact<{
|
|
5981
6917
|
id: Scalars['ID'];
|
|
5982
6918
|
}>;
|
|
6919
|
+
type Insight_Chat_DesktopDeviceQueryVariables = Exact<{
|
|
6920
|
+
id: Scalars['ID'];
|
|
6921
|
+
}>;
|
|
6922
|
+
type Insight_Chat_ProjectQueryVariables = Exact<{
|
|
6923
|
+
id: Scalars['ID'];
|
|
6924
|
+
}>;
|
|
5983
6925
|
type Insight_ReportMembersQueryVariables = Exact<{
|
|
5984
6926
|
id: Scalars['ID'];
|
|
5985
6927
|
}>;
|
|
@@ -6065,6 +7007,15 @@ type LiveContextsQueryVariables = Exact<{
|
|
|
6065
7007
|
last?: InputMaybe<Scalars['Int']>;
|
|
6066
7008
|
orderBy?: InputMaybe<Array<LiveContextOrderByWithRelationInput> | LiveContextOrderByWithRelationInput>;
|
|
6067
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
|
+
}>;
|
|
6068
7019
|
type NotificationQueryVariables = Exact<{
|
|
6069
7020
|
id: Scalars['ID'];
|
|
6070
7021
|
}>;
|
|
@@ -6082,6 +7033,32 @@ type NotificationsByReferenceQueryVariables = Exact<{
|
|
|
6082
7033
|
type PrivacyStatsQueryVariables = Exact<{
|
|
6083
7034
|
[key: string]: never;
|
|
6084
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
|
+
}>;
|
|
6085
7062
|
type PulseAppSummaryQueryVariables = Exact<{
|
|
6086
7063
|
integrationId: Scalars['String'];
|
|
6087
7064
|
}>;
|
|
@@ -6303,4 +7280,4 @@ interface DvinaClientResult {
|
|
|
6303
7280
|
*/
|
|
6304
7281
|
declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
|
|
6305
7282
|
|
|
6306
|
-
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 TableConnectionFragment 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 LiveContextQueryVariables as a6, LiveContextStatus as a7, type LiveContextFragment as a8, type LiveContext_ItemsQueryVariables as a9, type DatabaseFragment as aA, type Database_EngineQueryVariables as aB, type DatabaseEngineFragment as aC, type DatabaseCatalogQueryVariables as aD, type DatabaseCatalogFragment as aE, type DatabaseCatalog_EngineQueryVariables as aF, type Database_TablesQueryVariables as aG, TableStatus as aH, type TableFragment as aI, type Table_DatabaseQueryVariables as aJ, type Table_DocumentQueryVariables as aK, type DocumentFragment as aL, type Document_ContentsQueryVariables as aM, type DocumentContentFragment as aN, type DocumentQueryVariables as aO, type Document_FileQueryVariables as aP, type Document_FormatQueryVariables as aQ, type DocumentFormatFragment as aR, type DocumentCatalogQueryVariables as aS, type DocumentCatalogFragment as aT, type DocumentCatalog_FormatQueryVariables as aU, type Document_TablesQueryVariables as aV, type Table_FromRelationsQueryVariables as aW, RelationType as aX, type RelationFragment as aY, type TableQueryVariables as aZ, type Table_ToRelationsQueryVariables as a_, FeedActionType as aa, type FeedItemGeneratedFragment as ab, type LiveContext_SourceQueryVariables as ac, type CandidateEvidenceFragment as ad, ChatSourceProviderEnum as ae, type ImportedChatSummaryOutputFragment as af, type ChatImportExecuteOutputFragment as ag, ChatSourceImportFidelityEnum as ah, ChatSourceImportModeEnum as ai, type ChatImportPreviewOutputFragment as aj, type ChatMessage_Chat_InsightQueryVariables as ak, type ChatMessagesQueryVariables as al, type ChatQueryVariables as am, type ChatTitleEventOutputFragment as an, type Chat_Insight_ReportMembersQueryVariables as ao, type Chat_Insight_ThumbnailFileQueryVariables as ap, type ChatsQueryVariables as aq, type ConnectIntegrationMutationVariables as ar, type CreateIntegrationOutputFragment as as, type ConsumePulseEventsMutationVariables as at, type ContentMaskFragment as au, type ContinueImportedChatMutationVariables as av, type ContinueInterpretationMutationVariables as aw, type CreateAgentMutationVariables as ax, type CreateChatMutationVariables as ay, type CreateDatabaseMutationVariables as az, type ActionFragment as b, type ReinterpretSourceMutationVariables as b$, type CreateDocumentMutationVariables as b0, type CreateFeedbackMutationVariables as b1, type CreateFolderMutationVariables as b2, type FolderFragment as b3, type CreateInsightMutationVariables as b4, type CreateIntegrationMutationVariables as b5, type CreateReportMutationVariables as b6, type CreateTableMutationVariables as b7, type CreateUserSkillFileMutationVariables as b8, type UserSkillFileModelFragment as b9, type DismissPulseEventMutationVariables as bA, PulseEventPriority as bB, PulseEventKind as bC, type PulseEventFragment as bD, type PulseEvent_IntegrationQueryVariables as bE, IntegrationStatus as bF, type IntegrationFragment as bG, type Integration_ProviderQueryVariables as bH, type IntegrationProviderFragment as bI, type IntegrationCatalogQueryVariables as bJ, type IntegrationCatalogFragment as bK, type IntegrationCatalog_ProviderQueryVariables as bL, type DocumentCatalogConnectionFragment as bM, type DocumentCatalogsQueryVariables as bN, type DocumentConnectionFragment as bO, type Document_Format_CatalogQueryVariables as bP, type DocumentsQueryVariables as bQ, type ChatStreamClient as bR, type ExecuteChatImportMutationVariables as bS, type GenerateUploadUriMutationVariables as bT, type FileModelFragment as bU, type PreviewChatImportMutationVariables as bV, type ReanalyzeDocumentMutationVariables as bW, type RefineAgentInstructionMutationVariables as bX, type RefineSkillInstructionMutationVariables as bY, type RefreshDatabaseSchemaMutationVariables as bZ, type RefreshInsightMutationVariables as b_, type CreateUserSkillFolderMutationVariables as ba, type UserSkillFolderModelFragment as bb, type CubeModelFragment as bc, type DatabaseCatalogConnectionFragment as bd, type DatabaseCatalogsQueryVariables as be, type DatabaseConnectionFragment as bf, type DatabaseQueryVariables as bg, type DatabaseSchemaQueryVariables as bh, type Database_Engine_CatalogQueryVariables as bi, type DatabasesQueryVariables as bj, type DeepAnalysisUsageFragment as bk, type DeleteAgentMutationVariables as bl, type DeleteArtifactMutationVariables as bm, type DeleteChatMutationVariables as bn, type DeleteDatabaseMutationVariables as bo, type DeleteDocumentMutationVariables as bp, type DeleteFolderMutationVariables as bq, type DeleteInsightMutationVariables as br, type DeleteInsightsMutationVariables as bs, type DeleteIntegrationMutationVariables as bt, type DeleteReportMutationVariables as bu, type DeleteTableMutationVariables as bv, type DeleteUserSkillFileMutationVariables as bw, type DeleteUserSkillFolderMutationVariables as bx, type DevAccessTokenOutputFragment as by, type DisconnectIntegrationMutationVariables as bz, ChatMessageFromEnum as c, type WindowDetailTypeFragment as c$, type ReinterpretSourcesOfuserMutationVariables as c0, type RelocateInsightMutationVariables as c1, type RemoveInsightFromReportMutationVariables as c2, type ResolvePulseEventMutationVariables as c3, type WorkspaceDeleteScheduleFragment as c4, type SendMessageMutationVariables as c5, type SetDatabasePrimaryKeyMutationVariables as c6, type UpdateAgentMutationVariables as c7, type UpdateArtifactNameMutationVariables as c8, type UpdateChatMutationVariables as c9, type FeedLiveContextDataFragment as cA, type FeedPulseDataFragment as cB, type FeedItemFragment as cC, type FeedItem_ActionQueryVariables as cD, type FeedSendMessageActionFragment as cE, type FeedItem_DataQueryVariables as cF, type FeedItemsQueryVariables as cG, type FeedConnectionFragment as cH, type FileQueryVariables as cI, type FileMetaQueryVariables as cJ, type FileUrlsQueryVariables as cK, type ResolvedFileUrlFragment as cL, type FindFitTierQueryVariables as cM, EntitlementTier as cN, type FolderQueryVariables as cO, type FoldersQueryVariables as cP, type FolderConnectionFragment as cQ, type GetCapabilityQueryVariables as cR, type GetDevAccessTokenQueryVariables as cS, type GetLimitQueryVariables as cT, type GetRemainingQueryVariables as cU, type GetTokenUsageByModelQueryVariables as cV, type ModelTokenUsageFragment as cW, type GetTokenUsageHistoryQueryVariables as cX, type GetTokenUsageStatusQueryVariables as cY, TokenUsageLimit as cZ, ActiveWindowType as c_, type UpdateDatabaseMutationVariables as ca, type UpdateDocumentMutationVariables as cb, type UpdateFolderMutationVariables as cc, type UpdateInsightMutationVariables as cd, type UpdateInsightInReportMutationVariables as ce, type UpdateInsightThumbnailMutationVariables as cf, type UpdateInterpMutationVariables as cg, InterpretationType as ch, AiResourceType as ci, type InterpretationFragment as cj, type UpdateLiveContextMutationVariables as ck, type UpdatePulseTriggerMutationVariables as cl, type PulseTriggerSettingModelFragment as cm, type UpdateReportMutationVariables as cn, type UpdateTableMutationVariables as co, type UpdateUserSkillFileMutationVariables as cp, type UpdateUserSkillFolderMutationVariables as cq, type ExportQueryVariables as cr, type ExportWithInsightIdQueryVariables as cs, type FeedItemQueryVariables as ct, FeedItemKind as cu, type FeedDocumentDataFragment as cv, type FeedArtifactDataFragment as cw, type FeedDatabaseDataFragment as cx, type FeedInsightDataFragment as cy, type FeedIntegrationDataFragment as cz, type ChatMessageFragment as d, type McpTokensFragment as d$, type UsageWindowsStatusTypeFragment as d0, type UsageStatusFragment as d1, type GetTokenUsageStatus_WindowsQueryVariables as d2, type GetUsageQueryVariables as d3, type InsightsQueryVariables as d4, type IntegrationQueryVariables as d5, type IntegrationCatalogToolsQueryVariables as d6, type IntegrationCatalogsQueryVariables as d7, type IntegrationCatalogConnectionFragment as d8, type IntegrationsQueryVariables as d9, type TablesQueryVariables as dA, type UserSkillFileQueryVariables as dB, type UserSkillFilesQueryVariables as dC, type UserSkillFolderQueryVariables as dD, type UserSkillFoldersQueryVariables as dE, type WorkspaceDeletionScheduleQueryVariables as dF, type McpAuthUpdatesSubscriptionVariables as dG, McpAuthPhase as dH, type McpAuthUpdateModelFragment as dI, type TokenUsageUpdatesSubscriptionVariables as dJ, type EvidenceFragment as dK, type FailedSyncEventIngestionFragment as dL, type StreamMessageContentOutputFragment as dM, type StreamMessageOutputFragment as dN, type UsageMetaOutputFragment as dO, type FinalContentEventOutputFragment as dP, type GetTokenUsageStatus_Windows_DayQueryVariables as dQ, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as dR, type GetTokenUsageStatus_Windows_MonthQueryVariables as dS, type GetTokenUsageStatus_Windows_WeekQueryVariables as dT, type InferenceRequestAuditFragment as dU, type Integration_Provider_CatalogQueryVariables as dV, type InvocationFragment as dW, type LiveContext_Source_EvidencesQueryVariables as dX, type McpClientInformationFragment as dY, type McpCodeVerifierFragment as dZ, type McpServerFragment as d_, type IntegrationConnectionFragment as da, type InterpretationsQueryVariables as db, type InterpretationConnectionFragment as dc, type LiveContextsQueryVariables as dd, type LiveContextConnectionFragment as de, type NotificationQueryVariables as df, NotificationCategory as dg, NotificationPriority as dh, NotificationStatus as di, type NotificationFragment as dj, type NotificationsQueryVariables as dk, type NotificationConnectionFragment as dl, type NotificationsByReferenceQueryVariables as dm, type PrivacyStatsQueryVariables as dn, type PrivacyStatsFragment as dp, type PulseAppSummaryQueryVariables as dq, type PulseAppSummaryModelFragment as dr, type PulseEventQueryVariables as ds, type PulseEventsQueryVariables as dt, type PulseEventConnectionFragment as du, type PulseTriggerSettingsQueryVariables as dv, type QueryQueryVariables as dw, type QueryWithInsightIdQueryVariables as dx, type QueryWithMessageIdQueryVariables as dy, type ReportsQueryVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, SendMessageModel as e$, type McpToolFragment as e0, type MessageEndEventOutputFragment as e1, type MessageStartEventOutputFragment as e2, type ProgressSummaryEventOutputFragment as e3, type PulseEvent_Integration_ProviderQueryVariables as e4, type ReasoningEventOutputFragment as e5, type ResetWorkspaceMutationVariables as e6, type ScheduleWorkspaceDeletionMutationVariables as e7, type TextBlockEventOutputFragment as e8, type TextDeltaEventOutputFragment as e9, type ChatStreamClientOptions as eA, type ChatStreamEvent as eB, type ChatStreamListener as eC, type ChatStreamListenerHandlers as eD, DatabaseCatalogOrderByRelevanceFieldEnum as eE, DatabaseOrderByRelevanceFieldEnum as eF, DocumentCatalogOrderByRelevanceFieldEnum as eG, DocumentOrderByRelevanceFieldEnum as eH, type DvinaSdkBaseOptions as eI, type DvinaSdkCallbackOptions as eJ, type DvinaSdkTokenOptions as eK, FeedItemOrderByRelevanceFieldEnum as eL, FeedbackOrderByRelevanceFieldEnum as eM, FileOrderByRelevanceFieldEnum as eN, FileUrlVariant as eO, FolderOrderByRelevanceFieldEnum as eP, InsightOrderByRelevanceFieldEnum as eQ, IntegrationCatalogOrderByRelevanceFieldEnum as eR, IntegrationOrderByRelevanceFieldEnum as eS, InterpretationOrderByRelevanceFieldEnum as eT, LimitType as eU, LiveContextOrderByRelevanceFieldEnum as eV, NotificationOrderByRelevanceFieldEnum as eW, NullsOrder as eX, PulseEventOrderByRelevanceFieldEnum as eY, QueryMode as eZ, ReportOrderByRelevanceFieldEnum as e_, type WidgetBlockStartEventOutputFragment as ea, type WidgetHtmlDeltaEventOutputFragment as eb, type WidgetBlockCompleteEventOutputFragment as ec, type WidgetBlockErrorEventOutputFragment as ed, type ToolStartEventOutputFragment as ee, type ToolInputDeltaEventOutputFragment as ef, type ToolResultArtifactOutputFragment as eg, type ToolResultEventOutputFragment as eh, type StreamEventSchemaAnchorFragment as ei, type SyncEventFragment as ej, type SyncEventCursorFragment as ek, type Table_Database_EngineQueryVariables as el, type Table_Document_ContentsQueryVariables as em, type Table_Document_FileQueryVariables as en, type Table_Document_FormatQueryVariables as eo, type TokenUsageFragment as ep, type UserSkillFileFragment as eq, type UserSkillFolderFragment as er, type ActiveChatStreamClient as es, type ActiveChatStreamListener as et, type ActiveChatStreamListenerHandlers as eu, AgentOrderByRelevanceFieldEnum as ev, ArtifactOrderByRelevanceFieldEnum as ew, CapabilityType as ex, ChatMessageOrderByRelevanceFieldEnum as ey, ChatOrderByRelevanceFieldEnum as ez, ArtifactKind as f, SortOrder as f0, TableOrderByRelevanceFieldEnum as f1, UsageHistoryGranularity as f2, createChatStreamClient as f3, createDvinaClient as f4, 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 };
|