graphlit-client 1.0.20250827001 → 1.0.20250830002
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.
|
@@ -198,6 +198,13 @@ export const GetAlert = gql `
|
|
|
198
198
|
id
|
|
199
199
|
}
|
|
200
200
|
}
|
|
201
|
+
googleImage {
|
|
202
|
+
model
|
|
203
|
+
count
|
|
204
|
+
seed {
|
|
205
|
+
id
|
|
206
|
+
}
|
|
207
|
+
}
|
|
201
208
|
}
|
|
202
209
|
summarySpecification {
|
|
203
210
|
id
|
|
@@ -348,6 +355,13 @@ export const QueryAlerts = gql `
|
|
|
348
355
|
id
|
|
349
356
|
}
|
|
350
357
|
}
|
|
358
|
+
googleImage {
|
|
359
|
+
model
|
|
360
|
+
count
|
|
361
|
+
seed {
|
|
362
|
+
id
|
|
363
|
+
}
|
|
364
|
+
}
|
|
351
365
|
}
|
|
352
366
|
summarySpecification {
|
|
353
367
|
id
|
|
@@ -6540,6 +6554,7 @@ export const GetFeed = gql `
|
|
|
6540
6554
|
includeAttachments
|
|
6541
6555
|
google {
|
|
6542
6556
|
type
|
|
6557
|
+
filter
|
|
6543
6558
|
includeSpam
|
|
6544
6559
|
excludeSentItems
|
|
6545
6560
|
includeDeletedItems
|
|
@@ -6552,6 +6567,7 @@ export const GetFeed = gql `
|
|
|
6552
6567
|
}
|
|
6553
6568
|
microsoft {
|
|
6554
6569
|
type
|
|
6570
|
+
filter
|
|
6555
6571
|
includeSpam
|
|
6556
6572
|
excludeSentItems
|
|
6557
6573
|
includeDeletedItems
|
|
@@ -6876,6 +6892,7 @@ export const QueryFeeds = gql `
|
|
|
6876
6892
|
includeAttachments
|
|
6877
6893
|
google {
|
|
6878
6894
|
type
|
|
6895
|
+
filter
|
|
6879
6896
|
includeSpam
|
|
6880
6897
|
excludeSentItems
|
|
6881
6898
|
includeDeletedItems
|
|
@@ -6888,6 +6905,7 @@ export const QueryFeeds = gql `
|
|
|
6888
6905
|
}
|
|
6889
6906
|
microsoft {
|
|
6890
6907
|
type
|
|
6908
|
+
filter
|
|
6891
6909
|
includeSpam
|
|
6892
6910
|
excludeSentItems
|
|
6893
6911
|
includeDeletedItems
|
|
@@ -2333,6 +2333,8 @@ export type ContentPublishingConnector = {
|
|
|
2333
2333
|
elevenLabs?: Maybe<ElevenLabsPublishingProperties>;
|
|
2334
2334
|
/** The content publishing format, i.e. MP3, Markdown. */
|
|
2335
2335
|
format: ContentPublishingFormats;
|
|
2336
|
+
/** The specific properties for Google Image publishing. */
|
|
2337
|
+
googleImage?: Maybe<GoogleImagePublishingProperties>;
|
|
2336
2338
|
/** The specific properties for OpenAI Image publishing. */
|
|
2337
2339
|
openAIImage?: Maybe<OpenAiImagePublishingProperties>;
|
|
2338
2340
|
/** The content publishing service type. */
|
|
@@ -2344,6 +2346,8 @@ export type ContentPublishingConnectorInput = {
|
|
|
2344
2346
|
elevenLabs?: InputMaybe<ElevenLabsPublishingPropertiesInput>;
|
|
2345
2347
|
/** The content publishing format, i.e. MP3, Markdown. */
|
|
2346
2348
|
format: ContentPublishingFormats;
|
|
2349
|
+
/** The specific properties for Google Image publishing. */
|
|
2350
|
+
googleImage?: InputMaybe<GoogleImagePublishingPropertiesInput>;
|
|
2347
2351
|
/** The specific properties for OpenAI Image publishing. */
|
|
2348
2352
|
openAIImage?: InputMaybe<OpenAiImagePublishingPropertiesInput>;
|
|
2349
2353
|
/** The content publishing service type. */
|
|
@@ -2355,6 +2359,8 @@ export type ContentPublishingConnectorUpdateInput = {
|
|
|
2355
2359
|
elevenLabs?: InputMaybe<ElevenLabsPublishingPropertiesInput>;
|
|
2356
2360
|
/** The content publishing format, i.e. MP3, Markdown. */
|
|
2357
2361
|
format?: InputMaybe<ContentPublishingFormats>;
|
|
2362
|
+
/** The specific properties for Google Image publishing. */
|
|
2363
|
+
googleImage?: InputMaybe<GoogleImagePublishingPropertiesInput>;
|
|
2358
2364
|
/** The specific properties for OpenAI Image publishing. */
|
|
2359
2365
|
openAIImage?: InputMaybe<OpenAiImagePublishingPropertiesInput>;
|
|
2360
2366
|
/** The content publishing service type. */
|
|
@@ -2380,6 +2386,8 @@ export declare enum ContentPublishingFormats {
|
|
|
2380
2386
|
export declare enum ContentPublishingServiceTypes {
|
|
2381
2387
|
/** ElevenLabs Audio publishing */
|
|
2382
2388
|
ElevenLabsAudio = "ELEVEN_LABS_AUDIO",
|
|
2389
|
+
/** Google Image publishing */
|
|
2390
|
+
GoogleImage = "GOOGLE_IMAGE",
|
|
2383
2391
|
/** OpenAI Image publishing */
|
|
2384
2392
|
OpenAiImage = "OPEN_AI_IMAGE",
|
|
2385
2393
|
/** Text publishing */
|
|
@@ -4986,6 +4994,8 @@ export type GoogleEmailFeedProperties = {
|
|
|
4986
4994
|
clientSecret?: Maybe<Scalars['String']['output']>;
|
|
4987
4995
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
|
4988
4996
|
excludeSentItems?: Maybe<Scalars['Boolean']['output']>;
|
|
4997
|
+
/** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
|
|
4998
|
+
filter?: Maybe<Scalars['String']['output']>;
|
|
4989
4999
|
/** Whether to only read past emails from Inbox. Default is False. */
|
|
4990
5000
|
inboxOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
4991
5001
|
/** Whether to include Deleted messages in email listing. Default is False. */
|
|
@@ -5009,6 +5019,8 @@ export type GoogleEmailFeedPropertiesInput = {
|
|
|
5009
5019
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
5010
5020
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
|
5011
5021
|
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5022
|
+
/** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
|
|
5023
|
+
filter?: InputMaybe<Scalars['String']['input']>;
|
|
5012
5024
|
/** Whether to only read past emails from Inbox. Default is False. */
|
|
5013
5025
|
inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5014
5026
|
/** Whether to include Deleted messages in email listing. Default is False. */
|
|
@@ -5032,6 +5044,8 @@ export type GoogleEmailFeedPropertiesUpdateInput = {
|
|
|
5032
5044
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
5033
5045
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
|
5034
5046
|
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5047
|
+
/** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
|
|
5048
|
+
filter?: InputMaybe<Scalars['String']['input']>;
|
|
5035
5049
|
/** Whether to only read past emails from Inbox. Default is False. */
|
|
5036
5050
|
inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5037
5051
|
/** Whether to include Deleted messages in email listing. Default is False. */
|
|
@@ -5071,6 +5085,32 @@ export type GoogleFeedPropertiesUpdateInput = {
|
|
|
5071
5085
|
/** Google Cloud storage container prefix. */
|
|
5072
5086
|
prefix?: InputMaybe<Scalars['String']['input']>;
|
|
5073
5087
|
};
|
|
5088
|
+
/** Google Image model type */
|
|
5089
|
+
export declare enum GoogleImageModels {
|
|
5090
|
+
/** Developer-specified model */
|
|
5091
|
+
Custom = "CUSTOM",
|
|
5092
|
+
/** Gemini 2.5 Flash Image Preview */
|
|
5093
|
+
Gemini_2_5FlashImagePreview = "GEMINI_2_5_FLASH_IMAGE_PREVIEW"
|
|
5094
|
+
}
|
|
5095
|
+
/** Represents the Google Image publishing properties. */
|
|
5096
|
+
export type GoogleImagePublishingProperties = {
|
|
5097
|
+
__typename?: 'GoogleImagePublishingProperties';
|
|
5098
|
+
/** The number of images to generate, optional. Defaults to 1. */
|
|
5099
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
5100
|
+
/** The Google Image model. */
|
|
5101
|
+
model?: Maybe<GoogleImageModels>;
|
|
5102
|
+
/** The seed image reference to use when generating image(s). */
|
|
5103
|
+
seed?: Maybe<EntityReference>;
|
|
5104
|
+
};
|
|
5105
|
+
/** Represents the Google Image publishing properties. */
|
|
5106
|
+
export type GoogleImagePublishingPropertiesInput = {
|
|
5107
|
+
/** The number of images to generate, optional. Defaults to 1. */
|
|
5108
|
+
count?: InputMaybe<Scalars['Int']['input']>;
|
|
5109
|
+
/** The Google Image model. */
|
|
5110
|
+
model?: InputMaybe<GoogleImageModels>;
|
|
5111
|
+
/** The seed image reference to use when generating image(s). */
|
|
5112
|
+
seed?: InputMaybe<EntityReferenceInput>;
|
|
5113
|
+
};
|
|
5074
5114
|
/** Represents Google model properties. */
|
|
5075
5115
|
export type GoogleModelProperties = {
|
|
5076
5116
|
__typename?: 'GoogleModelProperties';
|
|
@@ -8091,6 +8131,8 @@ export type MicrosoftEmailFeedProperties = {
|
|
|
8091
8131
|
clientSecret?: Maybe<Scalars['String']['output']>;
|
|
8092
8132
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
|
8093
8133
|
excludeSentItems?: Maybe<Scalars['Boolean']['output']>;
|
|
8134
|
+
/** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
|
|
8135
|
+
filter?: Maybe<Scalars['String']['output']>;
|
|
8094
8136
|
/** Whether to only read past emails from Inbox. Default is False. */
|
|
8095
8137
|
inboxOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
8096
8138
|
/** Whether to include Deleted messages in email listing. Default is False. */
|
|
@@ -8114,6 +8156,8 @@ export type MicrosoftEmailFeedPropertiesInput = {
|
|
|
8114
8156
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
8115
8157
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
|
8116
8158
|
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8159
|
+
/** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
|
|
8160
|
+
filter?: InputMaybe<Scalars['String']['input']>;
|
|
8117
8161
|
/** Whether to only read past emails from Inbox. Default is False. */
|
|
8118
8162
|
inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8119
8163
|
/** Whether to include Deleted messages in email listing. Default is False. */
|
|
@@ -8137,6 +8181,8 @@ export type MicrosoftEmailFeedPropertiesUpdateInput = {
|
|
|
8137
8181
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
8138
8182
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
|
8139
8183
|
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8184
|
+
/** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
|
|
8185
|
+
filter?: InputMaybe<Scalars['String']['input']>;
|
|
8140
8186
|
/** Whether to only read past emails from Inbox. Default is False. */
|
|
8141
8187
|
inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8142
8188
|
/** Whether to include Deleted messages in email listing. Default is False. */
|
|
@@ -15422,6 +15468,15 @@ export type GetAlertQuery = {
|
|
|
15422
15468
|
id: string;
|
|
15423
15469
|
} | null;
|
|
15424
15470
|
} | null;
|
|
15471
|
+
googleImage?: {
|
|
15472
|
+
__typename?: 'GoogleImagePublishingProperties';
|
|
15473
|
+
model?: GoogleImageModels | null;
|
|
15474
|
+
count?: number | null;
|
|
15475
|
+
seed?: {
|
|
15476
|
+
__typename?: 'EntityReference';
|
|
15477
|
+
id: string;
|
|
15478
|
+
} | null;
|
|
15479
|
+
} | null;
|
|
15425
15480
|
};
|
|
15426
15481
|
summarySpecification?: {
|
|
15427
15482
|
__typename?: 'EntityReference';
|
|
@@ -15615,6 +15670,15 @@ export type QueryAlertsQuery = {
|
|
|
15615
15670
|
id: string;
|
|
15616
15671
|
} | null;
|
|
15617
15672
|
} | null;
|
|
15673
|
+
googleImage?: {
|
|
15674
|
+
__typename?: 'GoogleImagePublishingProperties';
|
|
15675
|
+
model?: GoogleImageModels | null;
|
|
15676
|
+
count?: number | null;
|
|
15677
|
+
seed?: {
|
|
15678
|
+
__typename?: 'EntityReference';
|
|
15679
|
+
id: string;
|
|
15680
|
+
} | null;
|
|
15681
|
+
} | null;
|
|
15618
15682
|
};
|
|
15619
15683
|
summarySpecification?: {
|
|
15620
15684
|
__typename?: 'EntityReference';
|
|
@@ -22648,6 +22712,7 @@ export type GetFeedQuery = {
|
|
|
22648
22712
|
google?: {
|
|
22649
22713
|
__typename?: 'GoogleEmailFeedProperties';
|
|
22650
22714
|
type?: EmailListingTypes | null;
|
|
22715
|
+
filter?: string | null;
|
|
22651
22716
|
includeSpam?: boolean | null;
|
|
22652
22717
|
excludeSentItems?: boolean | null;
|
|
22653
22718
|
includeDeletedItems?: boolean | null;
|
|
@@ -22661,6 +22726,7 @@ export type GetFeedQuery = {
|
|
|
22661
22726
|
microsoft?: {
|
|
22662
22727
|
__typename?: 'MicrosoftEmailFeedProperties';
|
|
22663
22728
|
type?: EmailListingTypes | null;
|
|
22729
|
+
filter?: string | null;
|
|
22664
22730
|
includeSpam?: boolean | null;
|
|
22665
22731
|
excludeSentItems?: boolean | null;
|
|
22666
22732
|
includeDeletedItems?: boolean | null;
|
|
@@ -23052,6 +23118,7 @@ export type QueryFeedsQuery = {
|
|
|
23052
23118
|
google?: {
|
|
23053
23119
|
__typename?: 'GoogleEmailFeedProperties';
|
|
23054
23120
|
type?: EmailListingTypes | null;
|
|
23121
|
+
filter?: string | null;
|
|
23055
23122
|
includeSpam?: boolean | null;
|
|
23056
23123
|
excludeSentItems?: boolean | null;
|
|
23057
23124
|
includeDeletedItems?: boolean | null;
|
|
@@ -23065,6 +23132,7 @@ export type QueryFeedsQuery = {
|
|
|
23065
23132
|
microsoft?: {
|
|
23066
23133
|
__typename?: 'MicrosoftEmailFeedProperties';
|
|
23067
23134
|
type?: EmailListingTypes | null;
|
|
23135
|
+
filter?: string | null;
|
|
23068
23136
|
includeSpam?: boolean | null;
|
|
23069
23137
|
excludeSentItems?: boolean | null;
|
|
23070
23138
|
includeDeletedItems?: boolean | null;
|
|
@@ -436,6 +436,8 @@ export var ContentPublishingServiceTypes;
|
|
|
436
436
|
(function (ContentPublishingServiceTypes) {
|
|
437
437
|
/** ElevenLabs Audio publishing */
|
|
438
438
|
ContentPublishingServiceTypes["ElevenLabsAudio"] = "ELEVEN_LABS_AUDIO";
|
|
439
|
+
/** Google Image publishing */
|
|
440
|
+
ContentPublishingServiceTypes["GoogleImage"] = "GOOGLE_IMAGE";
|
|
439
441
|
/** OpenAI Image publishing */
|
|
440
442
|
ContentPublishingServiceTypes["OpenAiImage"] = "OPEN_AI_IMAGE";
|
|
441
443
|
/** Text publishing */
|
|
@@ -1026,6 +1028,14 @@ export var GoogleEmailAuthenticationTypes;
|
|
|
1026
1028
|
GoogleEmailAuthenticationTypes["Connector"] = "CONNECTOR";
|
|
1027
1029
|
GoogleEmailAuthenticationTypes["User"] = "USER";
|
|
1028
1030
|
})(GoogleEmailAuthenticationTypes || (GoogleEmailAuthenticationTypes = {}));
|
|
1031
|
+
/** Google Image model type */
|
|
1032
|
+
export var GoogleImageModels;
|
|
1033
|
+
(function (GoogleImageModels) {
|
|
1034
|
+
/** Developer-specified model */
|
|
1035
|
+
GoogleImageModels["Custom"] = "CUSTOM";
|
|
1036
|
+
/** Gemini 2.5 Flash Image Preview */
|
|
1037
|
+
GoogleImageModels["Gemini_2_5FlashImagePreview"] = "GEMINI_2_5_FLASH_IMAGE_PREVIEW";
|
|
1038
|
+
})(GoogleImageModels || (GoogleImageModels = {}));
|
|
1029
1039
|
/** Google model type */
|
|
1030
1040
|
export var GoogleModels;
|
|
1031
1041
|
(function (GoogleModels) {
|