graphlit-client 1.0.20260226002 → 1.0.20260226003
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.
|
@@ -207,6 +207,7 @@ export const GetAlert = gql `
|
|
|
207
207
|
seed {
|
|
208
208
|
id
|
|
209
209
|
}
|
|
210
|
+
size
|
|
210
211
|
}
|
|
211
212
|
googleImage {
|
|
212
213
|
model
|
|
@@ -214,6 +215,7 @@ export const GetAlert = gql `
|
|
|
214
215
|
seed {
|
|
215
216
|
id
|
|
216
217
|
}
|
|
218
|
+
resolution
|
|
217
219
|
}
|
|
218
220
|
quiverImage {
|
|
219
221
|
model
|
|
@@ -408,6 +410,7 @@ export const QueryAlerts = gql `
|
|
|
408
410
|
seed {
|
|
409
411
|
id
|
|
410
412
|
}
|
|
413
|
+
size
|
|
411
414
|
}
|
|
412
415
|
googleImage {
|
|
413
416
|
model
|
|
@@ -415,6 +418,7 @@ export const QueryAlerts = gql `
|
|
|
415
418
|
seed {
|
|
416
419
|
id
|
|
417
420
|
}
|
|
421
|
+
resolution
|
|
418
422
|
}
|
|
419
423
|
quiverImage {
|
|
420
424
|
model
|
|
@@ -7681,6 +7681,8 @@ export type GoogleImagePublishingProperties = {
|
|
|
7681
7681
|
count?: Maybe<Scalars['Int']['output']>;
|
|
7682
7682
|
/** The Google Image model. */
|
|
7683
7683
|
model?: Maybe<GoogleImageModels>;
|
|
7684
|
+
/** The image resolution, optional. Defaults to 1K. */
|
|
7685
|
+
resolution?: Maybe<GoogleImageResolutionTypes>;
|
|
7684
7686
|
/** The seed image reference to use when generating image(s), optional. */
|
|
7685
7687
|
seed?: Maybe<EntityReference>;
|
|
7686
7688
|
};
|
|
@@ -7690,9 +7692,22 @@ export type GoogleImagePublishingPropertiesInput = {
|
|
|
7690
7692
|
count?: InputMaybe<Scalars['Int']['input']>;
|
|
7691
7693
|
/** The Google Image model. */
|
|
7692
7694
|
model?: InputMaybe<GoogleImageModels>;
|
|
7695
|
+
/** The image resolution, optional. Defaults to 1K. */
|
|
7696
|
+
resolution?: InputMaybe<GoogleImageResolutionTypes>;
|
|
7693
7697
|
/** The seed image reference to use when generating image(s), optional. */
|
|
7694
7698
|
seed?: InputMaybe<EntityReferenceInput>;
|
|
7695
7699
|
};
|
|
7700
|
+
/** Google image resolution type */
|
|
7701
|
+
export declare enum GoogleImageResolutionTypes {
|
|
7702
|
+
/** 1K resolution (1024x1024 for 1:1) */
|
|
7703
|
+
Resolution_1K = "RESOLUTION_1_K",
|
|
7704
|
+
/** 2K resolution (2048x2048 for 1:1) */
|
|
7705
|
+
Resolution_2K = "RESOLUTION_2_K",
|
|
7706
|
+
/** 4K resolution (4096x4096 for 1:1) */
|
|
7707
|
+
Resolution_4K = "RESOLUTION_4_K",
|
|
7708
|
+
/** 512px resolution (512x512 for 1:1) */
|
|
7709
|
+
Resolution_512 = "RESOLUTION_512"
|
|
7710
|
+
}
|
|
7696
7711
|
/** Represents Google model properties. */
|
|
7697
7712
|
export type GoogleModelProperties = {
|
|
7698
7713
|
__typename?: 'GoogleModelProperties';
|
|
@@ -15412,6 +15427,8 @@ export type OpenAiImagePublishingProperties = {
|
|
|
15412
15427
|
model?: Maybe<OpenAiImageModels>;
|
|
15413
15428
|
/** The seed image reference to use when generating image(s), optional. */
|
|
15414
15429
|
seed?: Maybe<EntityReference>;
|
|
15430
|
+
/** The image size, optional. Defaults to Square (1024x1024). */
|
|
15431
|
+
size?: Maybe<OpenAiImageSizeTypes>;
|
|
15415
15432
|
};
|
|
15416
15433
|
/** Represents the OpenAI Image publishing properties. */
|
|
15417
15434
|
export type OpenAiImagePublishingPropertiesInput = {
|
|
@@ -15421,7 +15438,20 @@ export type OpenAiImagePublishingPropertiesInput = {
|
|
|
15421
15438
|
model?: InputMaybe<OpenAiImageModels>;
|
|
15422
15439
|
/** The seed image reference to use when generating image(s), optional. */
|
|
15423
15440
|
seed?: InputMaybe<EntityReferenceInput>;
|
|
15441
|
+
/** The image size, optional. Defaults to Square (1024x1024). */
|
|
15442
|
+
size?: InputMaybe<OpenAiImageSizeTypes>;
|
|
15424
15443
|
};
|
|
15444
|
+
/** OpenAI image size type */
|
|
15445
|
+
export declare enum OpenAiImageSizeTypes {
|
|
15446
|
+
/** Auto (server-selected size) */
|
|
15447
|
+
Auto = "AUTO",
|
|
15448
|
+
/** Landscape (1536x1024) */
|
|
15449
|
+
Landscape = "LANDSCAPE",
|
|
15450
|
+
/** Portrait (1024x1536) */
|
|
15451
|
+
Portrait = "PORTRAIT",
|
|
15452
|
+
/** Square (1024x1024) */
|
|
15453
|
+
Square = "SQUARE"
|
|
15454
|
+
}
|
|
15425
15455
|
/** Represents OpenAI model properties. */
|
|
15426
15456
|
export type OpenAiModelProperties = {
|
|
15427
15457
|
__typename?: 'OpenAIModelProperties';
|
|
@@ -22146,6 +22176,7 @@ export type GetAlertQuery = {
|
|
|
22146
22176
|
__typename?: 'OpenAIImagePublishingProperties';
|
|
22147
22177
|
model?: OpenAiImageModels | null;
|
|
22148
22178
|
count?: number | null;
|
|
22179
|
+
size?: OpenAiImageSizeTypes | null;
|
|
22149
22180
|
seed?: {
|
|
22150
22181
|
__typename?: 'EntityReference';
|
|
22151
22182
|
id: string;
|
|
@@ -22155,6 +22186,7 @@ export type GetAlertQuery = {
|
|
|
22155
22186
|
__typename?: 'GoogleImagePublishingProperties';
|
|
22156
22187
|
model?: GoogleImageModels | null;
|
|
22157
22188
|
count?: number | null;
|
|
22189
|
+
resolution?: GoogleImageResolutionTypes | null;
|
|
22158
22190
|
seed?: {
|
|
22159
22191
|
__typename?: 'EntityReference';
|
|
22160
22192
|
id: string;
|
|
@@ -22401,6 +22433,7 @@ export type QueryAlertsQuery = {
|
|
|
22401
22433
|
__typename?: 'OpenAIImagePublishingProperties';
|
|
22402
22434
|
model?: OpenAiImageModels | null;
|
|
22403
22435
|
count?: number | null;
|
|
22436
|
+
size?: OpenAiImageSizeTypes | null;
|
|
22404
22437
|
seed?: {
|
|
22405
22438
|
__typename?: 'EntityReference';
|
|
22406
22439
|
id: string;
|
|
@@ -22410,6 +22443,7 @@ export type QueryAlertsQuery = {
|
|
|
22410
22443
|
__typename?: 'GoogleImagePublishingProperties';
|
|
22411
22444
|
model?: GoogleImageModels | null;
|
|
22412
22445
|
count?: number | null;
|
|
22446
|
+
resolution?: GoogleImageResolutionTypes | null;
|
|
22413
22447
|
seed?: {
|
|
22414
22448
|
__typename?: 'EntityReference';
|
|
22415
22449
|
id: string;
|
|
@@ -1503,6 +1503,18 @@ export var GoogleImageModels;
|
|
|
1503
1503
|
/** Gemini 3 Pro Image Preview */
|
|
1504
1504
|
GoogleImageModels["Gemini_3ProImagePreview"] = "GEMINI_3_PRO_IMAGE_PREVIEW";
|
|
1505
1505
|
})(GoogleImageModels || (GoogleImageModels = {}));
|
|
1506
|
+
/** Google image resolution type */
|
|
1507
|
+
export var GoogleImageResolutionTypes;
|
|
1508
|
+
(function (GoogleImageResolutionTypes) {
|
|
1509
|
+
/** 1K resolution (1024x1024 for 1:1) */
|
|
1510
|
+
GoogleImageResolutionTypes["Resolution_1K"] = "RESOLUTION_1_K";
|
|
1511
|
+
/** 2K resolution (2048x2048 for 1:1) */
|
|
1512
|
+
GoogleImageResolutionTypes["Resolution_2K"] = "RESOLUTION_2_K";
|
|
1513
|
+
/** 4K resolution (4096x4096 for 1:1) */
|
|
1514
|
+
GoogleImageResolutionTypes["Resolution_4K"] = "RESOLUTION_4_K";
|
|
1515
|
+
/** 512px resolution (512x512 for 1:1) */
|
|
1516
|
+
GoogleImageResolutionTypes["Resolution_512"] = "RESOLUTION_512";
|
|
1517
|
+
})(GoogleImageResolutionTypes || (GoogleImageResolutionTypes = {}));
|
|
1506
1518
|
/** Google model type */
|
|
1507
1519
|
export var GoogleModels;
|
|
1508
1520
|
(function (GoogleModels) {
|
|
@@ -2248,6 +2260,18 @@ export var OpenAiImageModels;
|
|
|
2248
2260
|
/** GPT Image-1 Mini */
|
|
2249
2261
|
OpenAiImageModels["GptImage_1Mini"] = "GPT_IMAGE_1_MINI";
|
|
2250
2262
|
})(OpenAiImageModels || (OpenAiImageModels = {}));
|
|
2263
|
+
/** OpenAI image size type */
|
|
2264
|
+
export var OpenAiImageSizeTypes;
|
|
2265
|
+
(function (OpenAiImageSizeTypes) {
|
|
2266
|
+
/** Auto (server-selected size) */
|
|
2267
|
+
OpenAiImageSizeTypes["Auto"] = "AUTO";
|
|
2268
|
+
/** Landscape (1536x1024) */
|
|
2269
|
+
OpenAiImageSizeTypes["Landscape"] = "LANDSCAPE";
|
|
2270
|
+
/** Portrait (1024x1536) */
|
|
2271
|
+
OpenAiImageSizeTypes["Portrait"] = "PORTRAIT";
|
|
2272
|
+
/** Square (1024x1024) */
|
|
2273
|
+
OpenAiImageSizeTypes["Square"] = "SQUARE";
|
|
2274
|
+
})(OpenAiImageSizeTypes || (OpenAiImageSizeTypes = {}));
|
|
2251
2275
|
/** OpenAI model type */
|
|
2252
2276
|
export var OpenAiModels;
|
|
2253
2277
|
(function (OpenAiModels) {
|