graphlit-client 1.0.20250627001 → 1.0.20250628001
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/client.d.ts
CHANGED
@@ -174,6 +174,7 @@ declare class Graphlit {
|
|
174
174
|
reviseText(prompt: string, text: string, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.ReviseTextMutation>;
|
175
175
|
reviseContent(prompt: string, content: Types.EntityReferenceInput, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.ReviseContentMutation>;
|
176
176
|
prompt(prompt?: string, mimeType?: string, data?: string, specification?: Types.EntityReferenceInput, messages?: Types.ConversationMessageInput[], correlationId?: string): Promise<Types.PromptMutation>;
|
177
|
+
retrieveView(prompt: string, id: string, retrievalStrategy?: Types.RetrievalStrategyInput, rerankingStrategy?: Types.RerankingStrategyInput, correlationId?: string): Promise<Types.RetrieveViewMutation>;
|
177
178
|
retrieveSources(prompt: string, filter?: Types.ContentFilter, augmentedFilter?: Types.ContentFilter, retrievalStrategy?: Types.RetrievalStrategyInput, rerankingStrategy?: Types.RerankingStrategyInput, correlationId?: string): Promise<Types.RetrieveSourcesMutation>;
|
178
179
|
formatConversation(prompt: string, id?: string, specification?: Types.EntityReferenceInput, tools?: Types.ToolDefinitionInput[], systemPrompt?: string, includeDetails?: boolean, correlationId?: string): Promise<Types.FormatConversationMutation>;
|
179
180
|
completeConversation(completion: string, id: string, completionTime?: Types.Scalars["TimeSpan"]["input"], ttft?: Types.Scalars["TimeSpan"]["input"], throughput?: Types.Scalars["Float"]["input"], correlationId?: string): Promise<Types.CompleteConversationMutation>;
|
@@ -193,6 +194,8 @@ declare class Graphlit {
|
|
193
194
|
querySharePointLibraries(properties: Types.SharePointLibrariesInput): Promise<Types.QuerySharePointLibrariesQuery>;
|
194
195
|
queryMicrosoftTeamsTeams(properties: Types.MicrosoftTeamsTeamsInput): Promise<Types.QueryMicrosoftTeamsTeamsQuery>;
|
195
196
|
queryMicrosoftTeamsChannels(properties: Types.MicrosoftTeamsChannelsInput, teamId: string): Promise<Types.QueryMicrosoftTeamsChannelsQuery>;
|
197
|
+
queryDiscordGuilds(properties: Types.DiscordGuildsInput): Promise<Types.QueryDiscordGuildsQuery>;
|
198
|
+
queryDiscordChannels(properties: Types.DiscordChannelsInput): Promise<Types.QueryDiscordChannelsQuery>;
|
196
199
|
querySlackChannels(properties: Types.SlackChannelsInput): Promise<Types.QuerySlackChannelsQuery>;
|
197
200
|
queryLinearProjects(properties: Types.LinearProjectsInput): Promise<Types.QueryLinearProjectsQuery>;
|
198
201
|
queryNotionDatabases(properties: Types.NotionDatabasesInput): Promise<Types.QueryNotionDatabasesQuery>;
|
package/dist/client.js
CHANGED
@@ -794,6 +794,15 @@ class Graphlit {
|
|
794
794
|
correlationId: correlationId,
|
795
795
|
});
|
796
796
|
}
|
797
|
+
async retrieveView(prompt, id, retrievalStrategy, rerankingStrategy, correlationId) {
|
798
|
+
return this.mutateAndCheckError(Documents.RetrieveView, {
|
799
|
+
prompt: prompt,
|
800
|
+
id: id,
|
801
|
+
retrievalStrategy: retrievalStrategy,
|
802
|
+
rerankingStrategy: rerankingStrategy,
|
803
|
+
correlationId: correlationId,
|
804
|
+
});
|
805
|
+
}
|
797
806
|
async retrieveSources(prompt, filter, augmentedFilter, retrievalStrategy, rerankingStrategy, correlationId) {
|
798
807
|
return this.mutateAndCheckError(Documents.RetrieveSources, {
|
799
808
|
prompt: prompt,
|
@@ -930,6 +939,12 @@ class Graphlit {
|
|
930
939
|
teamId: teamId,
|
931
940
|
});
|
932
941
|
}
|
942
|
+
async queryDiscordGuilds(properties) {
|
943
|
+
return this.queryAndCheckError(Documents.QueryDiscordGuilds, { properties: properties });
|
944
|
+
}
|
945
|
+
async queryDiscordChannels(properties) {
|
946
|
+
return this.queryAndCheckError(Documents.QueryDiscordChannels, { properties: properties });
|
947
|
+
}
|
933
948
|
async querySlackChannels(properties) {
|
934
949
|
return this.queryAndCheckError(Documents.QuerySlackChannels, { properties: properties });
|
935
950
|
}
|
@@ -79,6 +79,7 @@ export declare const PromptConversation: import("graphql").DocumentNode;
|
|
79
79
|
export declare const PublishConversation: import("graphql").DocumentNode;
|
80
80
|
export declare const QueryConversations: import("graphql").DocumentNode;
|
81
81
|
export declare const RetrieveSources: import("graphql").DocumentNode;
|
82
|
+
export declare const RetrieveView: import("graphql").DocumentNode;
|
82
83
|
export declare const ReviseContent: import("graphql").DocumentNode;
|
83
84
|
export declare const ReviseEncodedImage: import("graphql").DocumentNode;
|
84
85
|
export declare const ReviseImage: import("graphql").DocumentNode;
|
@@ -105,6 +106,8 @@ export declare const GetFeed: import("graphql").DocumentNode;
|
|
105
106
|
export declare const GetSharePointConsentUri: import("graphql").DocumentNode;
|
106
107
|
export declare const IsFeedDone: import("graphql").DocumentNode;
|
107
108
|
export declare const QueryBoxFolders: import("graphql").DocumentNode;
|
109
|
+
export declare const QueryDiscordChannels: import("graphql").DocumentNode;
|
110
|
+
export declare const QueryDiscordGuilds: import("graphql").DocumentNode;
|
108
111
|
export declare const QueryDropboxFolders: import("graphql").DocumentNode;
|
109
112
|
export declare const QueryFeeds: import("graphql").DocumentNode;
|
110
113
|
export declare const QueryGoogleCalendars: import("graphql").DocumentNode;
|
@@ -90,6 +90,10 @@ export const GetAlert = gql `
|
|
90
90
|
fileTypes
|
91
91
|
formats
|
92
92
|
fileExtensions
|
93
|
+
fileSizeRange {
|
94
|
+
from
|
95
|
+
to
|
96
|
+
}
|
93
97
|
similarContents {
|
94
98
|
id
|
95
99
|
}
|
@@ -232,6 +236,10 @@ export const QueryAlerts = gql `
|
|
232
236
|
fileTypes
|
233
237
|
formats
|
234
238
|
fileExtensions
|
239
|
+
fileSizeRange {
|
240
|
+
from
|
241
|
+
to
|
242
|
+
}
|
235
243
|
similarContents {
|
236
244
|
id
|
237
245
|
}
|
@@ -4441,6 +4449,10 @@ export const GetConversation = gql `
|
|
4441
4449
|
fileTypes
|
4442
4450
|
formats
|
4443
4451
|
fileExtensions
|
4452
|
+
fileSizeRange {
|
4453
|
+
from
|
4454
|
+
to
|
4455
|
+
}
|
4444
4456
|
similarContents {
|
4445
4457
|
id
|
4446
4458
|
}
|
@@ -4524,6 +4536,10 @@ export const GetConversation = gql `
|
|
4524
4536
|
fileTypes
|
4525
4537
|
formats
|
4526
4538
|
fileExtensions
|
4539
|
+
fileSizeRange {
|
4540
|
+
from
|
4541
|
+
to
|
4542
|
+
}
|
4527
4543
|
similarContents {
|
4528
4544
|
id
|
4529
4545
|
}
|
@@ -5354,6 +5370,10 @@ export const QueryConversations = gql `
|
|
5354
5370
|
fileTypes
|
5355
5371
|
formats
|
5356
5372
|
fileExtensions
|
5373
|
+
fileSizeRange {
|
5374
|
+
from
|
5375
|
+
to
|
5376
|
+
}
|
5357
5377
|
similarContents {
|
5358
5378
|
id
|
5359
5379
|
}
|
@@ -5437,6 +5457,10 @@ export const QueryConversations = gql `
|
|
5437
5457
|
fileTypes
|
5438
5458
|
formats
|
5439
5459
|
fileExtensions
|
5460
|
+
fileSizeRange {
|
5461
|
+
from
|
5462
|
+
to
|
5463
|
+
}
|
5440
5464
|
similarContents {
|
5441
5465
|
id
|
5442
5466
|
}
|
@@ -5535,6 +5559,31 @@ export const RetrieveSources = gql `
|
|
5535
5559
|
}
|
5536
5560
|
}
|
5537
5561
|
`;
|
5562
|
+
export const RetrieveView = gql `
|
5563
|
+
mutation RetrieveView($prompt: String!, $id: ID!, $retrievalStrategy: RetrievalStrategyInput, $rerankingStrategy: RerankingStrategyInput, $correlationId: String) {
|
5564
|
+
retrieveView(
|
5565
|
+
prompt: $prompt
|
5566
|
+
id: $id
|
5567
|
+
retrievalStrategy: $retrievalStrategy
|
5568
|
+
rerankingStrategy: $rerankingStrategy
|
5569
|
+
correlationId: $correlationId
|
5570
|
+
) {
|
5571
|
+
results {
|
5572
|
+
type
|
5573
|
+
content {
|
5574
|
+
id
|
5575
|
+
}
|
5576
|
+
text
|
5577
|
+
metadata
|
5578
|
+
relevance
|
5579
|
+
startTime
|
5580
|
+
endTime
|
5581
|
+
pageNumber
|
5582
|
+
frameNumber
|
5583
|
+
}
|
5584
|
+
}
|
5585
|
+
}
|
5586
|
+
`;
|
5538
5587
|
export const ReviseContent = gql `
|
5539
5588
|
mutation ReviseContent($prompt: String!, $content: EntityReferenceInput!, $id: ID, $specification: EntityReferenceInput, $correlationId: String) {
|
5540
5589
|
reviseContent(
|
@@ -6614,6 +6663,26 @@ export const QueryBoxFolders = gql `
|
|
6614
6663
|
}
|
6615
6664
|
}
|
6616
6665
|
`;
|
6666
|
+
export const QueryDiscordChannels = gql `
|
6667
|
+
query QueryDiscordChannels($properties: DiscordChannelsInput!) {
|
6668
|
+
discordChannels(properties: $properties) {
|
6669
|
+
results {
|
6670
|
+
channelName
|
6671
|
+
channelId
|
6672
|
+
}
|
6673
|
+
}
|
6674
|
+
}
|
6675
|
+
`;
|
6676
|
+
export const QueryDiscordGuilds = gql `
|
6677
|
+
query QueryDiscordGuilds($properties: DiscordGuildsInput!) {
|
6678
|
+
discordGuilds(properties: $properties) {
|
6679
|
+
results {
|
6680
|
+
guildName
|
6681
|
+
guildId
|
6682
|
+
}
|
6683
|
+
}
|
6684
|
+
}
|
6685
|
+
`;
|
6617
6686
|
export const QueryDropboxFolders = gql `
|
6618
6687
|
query QueryDropboxFolders($properties: DropboxFoldersInput!, $folderPath: String) {
|
6619
6688
|
dropboxFolders(properties: $properties, folderPath: $folderPath) {
|
@@ -9789,6 +9858,10 @@ export const CreateView = gql `
|
|
9789
9858
|
fileTypes
|
9790
9859
|
formats
|
9791
9860
|
fileExtensions
|
9861
|
+
fileSizeRange {
|
9862
|
+
from
|
9863
|
+
to
|
9864
|
+
}
|
9792
9865
|
similarContents {
|
9793
9866
|
id
|
9794
9867
|
}
|
@@ -9872,6 +9945,10 @@ export const CreateView = gql `
|
|
9872
9945
|
fileTypes
|
9873
9946
|
formats
|
9874
9947
|
fileExtensions
|
9948
|
+
fileSizeRange {
|
9949
|
+
from
|
9950
|
+
to
|
9951
|
+
}
|
9875
9952
|
similarContents {
|
9876
9953
|
id
|
9877
9954
|
}
|
@@ -9998,6 +10075,10 @@ export const GetView = gql `
|
|
9998
10075
|
fileTypes
|
9999
10076
|
formats
|
10000
10077
|
fileExtensions
|
10078
|
+
fileSizeRange {
|
10079
|
+
from
|
10080
|
+
to
|
10081
|
+
}
|
10001
10082
|
similarContents {
|
10002
10083
|
id
|
10003
10084
|
}
|
@@ -10081,6 +10162,10 @@ export const GetView = gql `
|
|
10081
10162
|
fileTypes
|
10082
10163
|
formats
|
10083
10164
|
fileExtensions
|
10165
|
+
fileSizeRange {
|
10166
|
+
from
|
10167
|
+
to
|
10168
|
+
}
|
10084
10169
|
similarContents {
|
10085
10170
|
id
|
10086
10171
|
}
|
@@ -10180,6 +10265,10 @@ export const QueryViews = gql `
|
|
10180
10265
|
fileTypes
|
10181
10266
|
formats
|
10182
10267
|
fileExtensions
|
10268
|
+
fileSizeRange {
|
10269
|
+
from
|
10270
|
+
to
|
10271
|
+
}
|
10183
10272
|
similarContents {
|
10184
10273
|
id
|
10185
10274
|
}
|
@@ -10263,6 +10352,10 @@ export const QueryViews = gql `
|
|
10263
10352
|
fileTypes
|
10264
10353
|
formats
|
10265
10354
|
fileExtensions
|
10355
|
+
fileSizeRange {
|
10356
|
+
from
|
10357
|
+
to
|
10358
|
+
}
|
10266
10359
|
similarContents {
|
10267
10360
|
id
|
10268
10361
|
}
|
@@ -10357,6 +10450,10 @@ export const UpdateView = gql `
|
|
10357
10450
|
fileTypes
|
10358
10451
|
formats
|
10359
10452
|
fileExtensions
|
10453
|
+
fileSizeRange {
|
10454
|
+
from
|
10455
|
+
to
|
10456
|
+
}
|
10360
10457
|
similarContents {
|
10361
10458
|
id
|
10362
10459
|
}
|
@@ -10440,6 +10537,10 @@ export const UpdateView = gql `
|
|
10440
10537
|
fileTypes
|
10441
10538
|
formats
|
10442
10539
|
fileExtensions
|
10540
|
+
fileSizeRange {
|
10541
|
+
from
|
10542
|
+
to
|
10543
|
+
}
|
10443
10544
|
similarContents {
|
10444
10545
|
id
|
10445
10546
|
}
|
@@ -10533,6 +10634,10 @@ export const UpsertView = gql `
|
|
10533
10634
|
fileTypes
|
10534
10635
|
formats
|
10535
10636
|
fileExtensions
|
10637
|
+
fileSizeRange {
|
10638
|
+
from
|
10639
|
+
to
|
10640
|
+
}
|
10536
10641
|
similarContents {
|
10537
10642
|
id
|
10538
10643
|
}
|
@@ -10616,6 +10721,10 @@ export const UpsertView = gql `
|
|
10616
10721
|
fileTypes
|
10617
10722
|
formats
|
10618
10723
|
fileExtensions
|
10724
|
+
fileSizeRange {
|
10725
|
+
from
|
10726
|
+
to
|
10727
|
+
}
|
10619
10728
|
similarContents {
|
10620
10729
|
id
|
10621
10730
|
}
|
@@ -1958,6 +1958,8 @@ export type ContentCriteria = {
|
|
1958
1958
|
feeds?: Maybe<Array<EntityReference>>;
|
1959
1959
|
/** Filter by file extensions. */
|
1960
1960
|
fileExtensions?: Maybe<Array<Scalars['String']['output']>>;
|
1961
|
+
/** Filter by file size range. */
|
1962
|
+
fileSizeRange?: Maybe<Int64Range>;
|
1961
1963
|
/** Filter by file types. */
|
1962
1964
|
fileTypes?: Maybe<Array<Maybe<FileTypes>>>;
|
1963
1965
|
/** Filter by file formats. */
|
@@ -1993,8 +1995,14 @@ export type ContentCriteriaInput = {
|
|
1993
1995
|
dateRange?: InputMaybe<DateRangeInput>;
|
1994
1996
|
/** Filter by feeds. */
|
1995
1997
|
feeds?: InputMaybe<Array<EntityReferenceInput>>;
|
1998
|
+
/** Filter by file extensions. */
|
1999
|
+
fileExtensions?: InputMaybe<Array<Scalars['String']['input']>>;
|
2000
|
+
/** Filter by file size range. */
|
2001
|
+
fileSizeRange?: InputMaybe<Int64RangeInput>;
|
1996
2002
|
/** Filter by file types. */
|
1997
2003
|
fileTypes?: InputMaybe<Array<FileTypes>>;
|
2004
|
+
/** Filter by file formats. */
|
2005
|
+
formats?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
1998
2006
|
/** Filter by original date recent timespan. For example, a timespan of one day will return content authored in the last 24 hours. */
|
1999
2007
|
inLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
2000
2008
|
/** Filter by observations. */
|
@@ -5557,6 +5565,14 @@ export type IngestionWorkflowStageInput = {
|
|
5557
5565
|
/** The observations to be assigned to ingested content. */
|
5558
5566
|
observations?: InputMaybe<Array<InputMaybe<ObservationReferenceInput>>>;
|
5559
5567
|
};
|
5568
|
+
/** Represents a range of long integer values. */
|
5569
|
+
export type Int64Range = {
|
5570
|
+
__typename?: 'Int64Range';
|
5571
|
+
/** Starting value of long integer range. */
|
5572
|
+
from?: Maybe<Scalars['Long']['output']>;
|
5573
|
+
/** Starting value of long integer range. */
|
5574
|
+
to?: Maybe<Scalars['Long']['output']>;
|
5575
|
+
};
|
5560
5576
|
/** Represents a filter by range of long integer values. */
|
5561
5577
|
export type Int64RangeFilter = {
|
5562
5578
|
/** Starting value of long integer range. */
|
@@ -5564,6 +5580,13 @@ export type Int64RangeFilter = {
|
|
5564
5580
|
/** Starting value of long integer range. */
|
5565
5581
|
to?: InputMaybe<Scalars['Long']['input']>;
|
5566
5582
|
};
|
5583
|
+
/** Represents a range of long integer values. */
|
5584
|
+
export type Int64RangeInput = {
|
5585
|
+
/** Starting value of long integer range. */
|
5586
|
+
from?: InputMaybe<Scalars['Long']['input']>;
|
5587
|
+
/** Starting value of long integer range. */
|
5588
|
+
to?: InputMaybe<Scalars['Long']['input']>;
|
5589
|
+
};
|
5567
5590
|
/** Represents an integer result. */
|
5568
5591
|
export type IntResult = {
|
5569
5592
|
__typename?: 'IntResult';
|
@@ -14926,6 +14949,11 @@ export type GetAlertQuery = {
|
|
14926
14949
|
from?: any | null;
|
14927
14950
|
to?: any | null;
|
14928
14951
|
} | null;
|
14952
|
+
fileSizeRange?: {
|
14953
|
+
__typename?: 'Int64Range';
|
14954
|
+
from?: any | null;
|
14955
|
+
to?: any | null;
|
14956
|
+
} | null;
|
14929
14957
|
similarContents?: Array<{
|
14930
14958
|
__typename?: 'EntityReference';
|
14931
14959
|
id: string;
|
@@ -15109,6 +15137,11 @@ export type QueryAlertsQuery = {
|
|
15109
15137
|
from?: any | null;
|
15110
15138
|
to?: any | null;
|
15111
15139
|
} | null;
|
15140
|
+
fileSizeRange?: {
|
15141
|
+
__typename?: 'Int64Range';
|
15142
|
+
from?: any | null;
|
15143
|
+
to?: any | null;
|
15144
|
+
} | null;
|
15112
15145
|
similarContents?: Array<{
|
15113
15146
|
__typename?: 'EntityReference';
|
15114
15147
|
id: string;
|
@@ -19890,6 +19923,11 @@ export type GetConversationQuery = {
|
|
19890
19923
|
from?: any | null;
|
19891
19924
|
to?: any | null;
|
19892
19925
|
} | null;
|
19926
|
+
fileSizeRange?: {
|
19927
|
+
__typename?: 'Int64Range';
|
19928
|
+
from?: any | null;
|
19929
|
+
to?: any | null;
|
19930
|
+
} | null;
|
19893
19931
|
similarContents?: Array<{
|
19894
19932
|
__typename?: 'EntityReference';
|
19895
19933
|
id: string;
|
@@ -19998,6 +20036,11 @@ export type GetConversationQuery = {
|
|
19998
20036
|
from?: any | null;
|
19999
20037
|
to?: any | null;
|
20000
20038
|
} | null;
|
20039
|
+
fileSizeRange?: {
|
20040
|
+
__typename?: 'Int64Range';
|
20041
|
+
from?: any | null;
|
20042
|
+
to?: any | null;
|
20043
|
+
} | null;
|
20001
20044
|
similarContents?: Array<{
|
20002
20045
|
__typename?: 'EntityReference';
|
20003
20046
|
id: string;
|
@@ -20913,6 +20956,11 @@ export type QueryConversationsQuery = {
|
|
20913
20956
|
from?: any | null;
|
20914
20957
|
to?: any | null;
|
20915
20958
|
} | null;
|
20959
|
+
fileSizeRange?: {
|
20960
|
+
__typename?: 'Int64Range';
|
20961
|
+
from?: any | null;
|
20962
|
+
to?: any | null;
|
20963
|
+
} | null;
|
20916
20964
|
similarContents?: Array<{
|
20917
20965
|
__typename?: 'EntityReference';
|
20918
20966
|
id: string;
|
@@ -21021,6 +21069,11 @@ export type QueryConversationsQuery = {
|
|
21021
21069
|
from?: any | null;
|
21022
21070
|
to?: any | null;
|
21023
21071
|
} | null;
|
21072
|
+
fileSizeRange?: {
|
21073
|
+
__typename?: 'Int64Range';
|
21074
|
+
from?: any | null;
|
21075
|
+
to?: any | null;
|
21076
|
+
} | null;
|
21024
21077
|
similarContents?: Array<{
|
21025
21078
|
__typename?: 'EntityReference';
|
21026
21079
|
id: string;
|
@@ -21143,6 +21196,34 @@ export type RetrieveSourcesMutation = {
|
|
21143
21196
|
} | null> | null;
|
21144
21197
|
} | null;
|
21145
21198
|
};
|
21199
|
+
export type RetrieveViewMutationVariables = Exact<{
|
21200
|
+
prompt: Scalars['String']['input'];
|
21201
|
+
id: Scalars['ID']['input'];
|
21202
|
+
retrievalStrategy?: InputMaybe<RetrievalStrategyInput>;
|
21203
|
+
rerankingStrategy?: InputMaybe<RerankingStrategyInput>;
|
21204
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
21205
|
+
}>;
|
21206
|
+
export type RetrieveViewMutation = {
|
21207
|
+
__typename?: 'Mutation';
|
21208
|
+
retrieveView?: {
|
21209
|
+
__typename?: 'ContentSourceResults';
|
21210
|
+
results?: Array<{
|
21211
|
+
__typename?: 'ContentSource';
|
21212
|
+
type?: ContentSourceTypes | null;
|
21213
|
+
text: string;
|
21214
|
+
metadata?: string | null;
|
21215
|
+
relevance: number;
|
21216
|
+
startTime?: any | null;
|
21217
|
+
endTime?: any | null;
|
21218
|
+
pageNumber?: number | null;
|
21219
|
+
frameNumber?: number | null;
|
21220
|
+
content: {
|
21221
|
+
__typename?: 'EntityReference';
|
21222
|
+
id: string;
|
21223
|
+
};
|
21224
|
+
} | null> | null;
|
21225
|
+
} | null;
|
21226
|
+
};
|
21146
21227
|
export type ReviseContentMutationVariables = Exact<{
|
21147
21228
|
prompt: Scalars['String']['input'];
|
21148
21229
|
content: EntityReferenceInput;
|
@@ -22375,6 +22456,34 @@ export type QueryBoxFoldersQuery = {
|
|
22375
22456
|
} | null> | null;
|
22376
22457
|
} | null;
|
22377
22458
|
};
|
22459
|
+
export type QueryDiscordChannelsQueryVariables = Exact<{
|
22460
|
+
properties: DiscordChannelsInput;
|
22461
|
+
}>;
|
22462
|
+
export type QueryDiscordChannelsQuery = {
|
22463
|
+
__typename?: 'Query';
|
22464
|
+
discordChannels?: {
|
22465
|
+
__typename?: 'DiscordChannelResults';
|
22466
|
+
results?: Array<{
|
22467
|
+
__typename?: 'DiscordChannelResult';
|
22468
|
+
channelName?: string | null;
|
22469
|
+
channelId?: string | null;
|
22470
|
+
} | null> | null;
|
22471
|
+
} | null;
|
22472
|
+
};
|
22473
|
+
export type QueryDiscordGuildsQueryVariables = Exact<{
|
22474
|
+
properties: DiscordGuildsInput;
|
22475
|
+
}>;
|
22476
|
+
export type QueryDiscordGuildsQuery = {
|
22477
|
+
__typename?: 'Query';
|
22478
|
+
discordGuilds?: {
|
22479
|
+
__typename?: 'DiscordGuildResults';
|
22480
|
+
results?: Array<{
|
22481
|
+
__typename?: 'DiscordGuildResult';
|
22482
|
+
guildName?: string | null;
|
22483
|
+
guildId?: string | null;
|
22484
|
+
} | null> | null;
|
22485
|
+
} | null;
|
22486
|
+
};
|
22378
22487
|
export type QueryDropboxFoldersQueryVariables = Exact<{
|
22379
22488
|
properties: DropboxFoldersInput;
|
22380
22489
|
folderPath?: InputMaybe<Scalars['String']['input']>;
|
@@ -26354,6 +26463,11 @@ export type CreateViewMutation = {
|
|
26354
26463
|
from?: any | null;
|
26355
26464
|
to?: any | null;
|
26356
26465
|
} | null;
|
26466
|
+
fileSizeRange?: {
|
26467
|
+
__typename?: 'Int64Range';
|
26468
|
+
from?: any | null;
|
26469
|
+
to?: any | null;
|
26470
|
+
} | null;
|
26357
26471
|
similarContents?: Array<{
|
26358
26472
|
__typename?: 'EntityReference';
|
26359
26473
|
id: string;
|
@@ -26462,6 +26576,11 @@ export type CreateViewMutation = {
|
|
26462
26576
|
from?: any | null;
|
26463
26577
|
to?: any | null;
|
26464
26578
|
} | null;
|
26579
|
+
fileSizeRange?: {
|
26580
|
+
__typename?: 'Int64Range';
|
26581
|
+
from?: any | null;
|
26582
|
+
to?: any | null;
|
26583
|
+
} | null;
|
26465
26584
|
similarContents?: Array<{
|
26466
26585
|
__typename?: 'EntityReference';
|
26467
26586
|
id: string;
|
@@ -26626,6 +26745,11 @@ export type GetViewQuery = {
|
|
26626
26745
|
from?: any | null;
|
26627
26746
|
to?: any | null;
|
26628
26747
|
} | null;
|
26748
|
+
fileSizeRange?: {
|
26749
|
+
__typename?: 'Int64Range';
|
26750
|
+
from?: any | null;
|
26751
|
+
to?: any | null;
|
26752
|
+
} | null;
|
26629
26753
|
similarContents?: Array<{
|
26630
26754
|
__typename?: 'EntityReference';
|
26631
26755
|
id: string;
|
@@ -26734,6 +26858,11 @@ export type GetViewQuery = {
|
|
26734
26858
|
from?: any | null;
|
26735
26859
|
to?: any | null;
|
26736
26860
|
} | null;
|
26861
|
+
fileSizeRange?: {
|
26862
|
+
__typename?: 'Int64Range';
|
26863
|
+
from?: any | null;
|
26864
|
+
to?: any | null;
|
26865
|
+
} | null;
|
26737
26866
|
similarContents?: Array<{
|
26738
26867
|
__typename?: 'EntityReference';
|
26739
26868
|
id: string;
|
@@ -26864,6 +26993,11 @@ export type QueryViewsQuery = {
|
|
26864
26993
|
from?: any | null;
|
26865
26994
|
to?: any | null;
|
26866
26995
|
} | null;
|
26996
|
+
fileSizeRange?: {
|
26997
|
+
__typename?: 'Int64Range';
|
26998
|
+
from?: any | null;
|
26999
|
+
to?: any | null;
|
27000
|
+
} | null;
|
26867
27001
|
similarContents?: Array<{
|
26868
27002
|
__typename?: 'EntityReference';
|
26869
27003
|
id: string;
|
@@ -26972,6 +27106,11 @@ export type QueryViewsQuery = {
|
|
26972
27106
|
from?: any | null;
|
26973
27107
|
to?: any | null;
|
26974
27108
|
} | null;
|
27109
|
+
fileSizeRange?: {
|
27110
|
+
__typename?: 'Int64Range';
|
27111
|
+
from?: any | null;
|
27112
|
+
to?: any | null;
|
27113
|
+
} | null;
|
26975
27114
|
similarContents?: Array<{
|
26976
27115
|
__typename?: 'EntityReference';
|
26977
27116
|
id: string;
|
@@ -27094,6 +27233,11 @@ export type UpdateViewMutation = {
|
|
27094
27233
|
from?: any | null;
|
27095
27234
|
to?: any | null;
|
27096
27235
|
} | null;
|
27236
|
+
fileSizeRange?: {
|
27237
|
+
__typename?: 'Int64Range';
|
27238
|
+
from?: any | null;
|
27239
|
+
to?: any | null;
|
27240
|
+
} | null;
|
27097
27241
|
similarContents?: Array<{
|
27098
27242
|
__typename?: 'EntityReference';
|
27099
27243
|
id: string;
|
@@ -27202,6 +27346,11 @@ export type UpdateViewMutation = {
|
|
27202
27346
|
from?: any | null;
|
27203
27347
|
to?: any | null;
|
27204
27348
|
} | null;
|
27349
|
+
fileSizeRange?: {
|
27350
|
+
__typename?: 'Int64Range';
|
27351
|
+
from?: any | null;
|
27352
|
+
to?: any | null;
|
27353
|
+
} | null;
|
27205
27354
|
similarContents?: Array<{
|
27206
27355
|
__typename?: 'EntityReference';
|
27207
27356
|
id: string;
|
@@ -27323,6 +27472,11 @@ export type UpsertViewMutation = {
|
|
27323
27472
|
from?: any | null;
|
27324
27473
|
to?: any | null;
|
27325
27474
|
} | null;
|
27475
|
+
fileSizeRange?: {
|
27476
|
+
__typename?: 'Int64Range';
|
27477
|
+
from?: any | null;
|
27478
|
+
to?: any | null;
|
27479
|
+
} | null;
|
27326
27480
|
similarContents?: Array<{
|
27327
27481
|
__typename?: 'EntityReference';
|
27328
27482
|
id: string;
|
@@ -27431,6 +27585,11 @@ export type UpsertViewMutation = {
|
|
27431
27585
|
from?: any | null;
|
27432
27586
|
to?: any | null;
|
27433
27587
|
} | null;
|
27588
|
+
fileSizeRange?: {
|
27589
|
+
__typename?: 'Int64Range';
|
27590
|
+
from?: any | null;
|
27591
|
+
to?: any | null;
|
27592
|
+
} | null;
|
27434
27593
|
similarContents?: Array<{
|
27435
27594
|
__typename?: 'EntityReference';
|
27436
27595
|
id: string;
|