graphlit-client 1.0.20250414001 → 1.0.20250416001
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.
@@ -4156,16 +4156,20 @@ export type GoogleDriveFeedPropertiesInput = {
|
|
4156
4156
|
};
|
4157
4157
|
/** Represents Google Drive properties. */
|
4158
4158
|
export type GoogleDriveFeedPropertiesUpdateInput = {
|
4159
|
-
/** Google
|
4159
|
+
/** Google Drive authentication type, defaults to User. */
|
4160
|
+
authenticationType?: InputMaybe<GoogleDriveAuthenticationTypes>;
|
4161
|
+
/** Google client identifier, when using User authentication type. */
|
4160
4162
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
4161
|
-
/** Google client secret. */
|
4163
|
+
/** Google client secret, when using User authentication type. */
|
4162
4164
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
4163
4165
|
/** Google Drive file identifiers. Takes precedence over folder identifier. */
|
4164
4166
|
files?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
4165
4167
|
/** Google Drive folder identifier. */
|
4166
4168
|
folderId?: InputMaybe<Scalars['String']['input']>;
|
4167
|
-
/** Google refresh token. */
|
4169
|
+
/** Google refresh token, when using User authentication type. */
|
4168
4170
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
4171
|
+
/** Google service account JSON, when using ServiceAccount authentication type. */
|
4172
|
+
serviceAccountJson?: InputMaybe<Scalars['String']['input']>;
|
4169
4173
|
};
|
4170
4174
|
/** Represents Google Email feed properties. */
|
4171
4175
|
export type GoogleEmailFeedProperties = {
|
@@ -9275,10 +9279,18 @@ export declare enum OpenAiModels {
|
|
9275
9279
|
O1Preview_128K = "O1_PREVIEW_128K",
|
9276
9280
|
/** o1 Preview 128k (2024-09-12 version) */
|
9277
9281
|
O1Preview_128K_20240912 = "O1_PREVIEW_128K_20240912",
|
9282
|
+
/** o3 200k (Latest) */
|
9283
|
+
O3_200K = "O3_200K",
|
9284
|
+
/** o3 200k (2025-04-16 version) */
|
9285
|
+
O3_200K_20250416 = "O3_200K_20250416",
|
9278
9286
|
/** o3 Mini 200k (Latest) */
|
9279
9287
|
O3Mini_200K = "O3_MINI_200K",
|
9280
9288
|
/** o3 Mini 200k (2025-01-31 version) */
|
9281
|
-
O3Mini_200K_20250131 = "O3_MINI_200K_20250131"
|
9289
|
+
O3Mini_200K_20250131 = "O3_MINI_200K_20250131",
|
9290
|
+
/** o4 Mini 200k (Latest) */
|
9291
|
+
O4Mini_200K = "O4_MINI_200K",
|
9292
|
+
/** o4 Mini 200k (2025-04-16 version) */
|
9293
|
+
O4Mini_200K_20250416 = "O4_MINI_200K_20250416"
|
9282
9294
|
}
|
9283
9295
|
/** OpenAI reasoning effort levels */
|
9284
9296
|
export declare enum OpenAiReasoningEffortLevels {
|
@@ -1460,10 +1460,18 @@ var OpenAiModels;
|
|
1460
1460
|
OpenAiModels["O1Preview_128K"] = "O1_PREVIEW_128K";
|
1461
1461
|
/** o1 Preview 128k (2024-09-12 version) */
|
1462
1462
|
OpenAiModels["O1Preview_128K_20240912"] = "O1_PREVIEW_128K_20240912";
|
1463
|
+
/** o3 200k (Latest) */
|
1464
|
+
OpenAiModels["O3_200K"] = "O3_200K";
|
1465
|
+
/** o3 200k (2025-04-16 version) */
|
1466
|
+
OpenAiModels["O3_200K_20250416"] = "O3_200K_20250416";
|
1463
1467
|
/** o3 Mini 200k (Latest) */
|
1464
1468
|
OpenAiModels["O3Mini_200K"] = "O3_MINI_200K";
|
1465
1469
|
/** o3 Mini 200k (2025-01-31 version) */
|
1466
1470
|
OpenAiModels["O3Mini_200K_20250131"] = "O3_MINI_200K_20250131";
|
1471
|
+
/** o4 Mini 200k (Latest) */
|
1472
|
+
OpenAiModels["O4Mini_200K"] = "O4_MINI_200K";
|
1473
|
+
/** o4 Mini 200k (2025-04-16 version) */
|
1474
|
+
OpenAiModels["O4Mini_200K_20250416"] = "O4_MINI_200K_20250416";
|
1467
1475
|
})(OpenAiModels || (exports.OpenAiModels = OpenAiModels = {}));
|
1468
1476
|
/** OpenAI reasoning effort levels */
|
1469
1477
|
var OpenAiReasoningEffortLevels;
|