graphlit-client 1.0.20250928001 → 1.0.20250930002

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.
@@ -405,6 +405,10 @@ export declare enum AnthropicModels {
405
405
  Claude_4_1Opus = "CLAUDE_4_1_OPUS",
406
406
  /** Claude 4.1 Opus (08-05-2025 version) */
407
407
  Claude_4_1Opus_20250805 = "CLAUDE_4_1_OPUS_20250805",
408
+ /** Claude 4.5 Sonnet (Latest) */
409
+ Claude_4_5Sonnet = "CLAUDE_4_5_SONNET",
410
+ /** Claude 4.5 Sonnet (09-29-2025 version) */
411
+ Claude_4_5Sonnet_20250929 = "CLAUDE_4_5_SONNET_20250929",
408
412
  /** Claude 4 Opus (Latest) */
409
413
  Claude_4Opus = "CLAUDE_4_OPUS",
410
414
  /** Claude 4 Opus (05-14-2025 version) */
@@ -1161,10 +1165,14 @@ export type BoxFolderResults = {
1161
1165
  };
1162
1166
  /** Represents Box folders properties. */
1163
1167
  export type BoxFoldersInput = {
1168
+ /** Box authentication type. */
1169
+ authenticationType?: InputMaybe<BoxAuthenticationTypes>;
1164
1170
  /** Box client identifier. */
1165
1171
  clientId?: InputMaybe<Scalars['String']['input']>;
1166
1172
  /** Box client secret. */
1167
1173
  clientSecret?: InputMaybe<Scalars['String']['input']>;
1174
+ /** Box redirect URI. */
1175
+ redirectUri?: InputMaybe<Scalars['String']['input']>;
1168
1176
  /** Box refresh token. */
1169
1177
  refreshToken?: InputMaybe<Scalars['String']['input']>;
1170
1178
  };
@@ -3413,6 +3421,8 @@ export type DropboxFoldersInput = {
3413
3421
  appKey?: InputMaybe<Scalars['String']['input']>;
3414
3422
  /** Dropbox app secret. */
3415
3423
  appSecret?: InputMaybe<Scalars['String']['input']>;
3424
+ /** Dropbox authentication type. */
3425
+ authenticationType?: InputMaybe<DropboxAuthenticationTypes>;
3416
3426
  /** Dropbox refresh token. */
3417
3427
  refreshToken?: InputMaybe<Scalars['String']['input']>;
3418
3428
  };
@@ -4703,7 +4713,10 @@ export declare enum FileTypes {
4703
4713
  Document = "DOCUMENT",
4704
4714
  /** Drawing file */
4705
4715
  Drawing = "DRAWING",
4706
- /** Email file */
4716
+ /**
4717
+ * Email file
4718
+ * @deprecated Email files now use ContentTypes.Email instead. FileTypes.Email is maintained for backward compatibility with existing data only.
4719
+ */
4707
4720
  Email = "EMAIL",
4708
4721
  /** Geometry file */
4709
4722
  Geometry = "GEOMETRY",
@@ -43,6 +43,10 @@ export var AnthropicModels;
43
43
  AnthropicModels["Claude_4_1Opus"] = "CLAUDE_4_1_OPUS";
44
44
  /** Claude 4.1 Opus (08-05-2025 version) */
45
45
  AnthropicModels["Claude_4_1Opus_20250805"] = "CLAUDE_4_1_OPUS_20250805";
46
+ /** Claude 4.5 Sonnet (Latest) */
47
+ AnthropicModels["Claude_4_5Sonnet"] = "CLAUDE_4_5_SONNET";
48
+ /** Claude 4.5 Sonnet (09-29-2025 version) */
49
+ AnthropicModels["Claude_4_5Sonnet_20250929"] = "CLAUDE_4_5_SONNET_20250929";
46
50
  /** Claude 4 Opus (Latest) */
47
51
  AnthropicModels["Claude_4Opus"] = "CLAUDE_4_OPUS";
48
52
  /** Claude 4 Opus (05-14-2025 version) */
@@ -991,7 +995,10 @@ export var FileTypes;
991
995
  FileTypes["Document"] = "DOCUMENT";
992
996
  /** Drawing file */
993
997
  FileTypes["Drawing"] = "DRAWING";
994
- /** Email file */
998
+ /**
999
+ * Email file
1000
+ * @deprecated Email files now use ContentTypes.Email instead. FileTypes.Email is maintained for backward compatibility with existing data only.
1001
+ */
995
1002
  FileTypes["Email"] = "EMAIL";
996
1003
  /** Geometry file */
997
1004
  FileTypes["Geometry"] = "GEOMETRY";
@@ -74,6 +74,9 @@ const ANTHROPIC_MODEL_MAP = {
74
74
  // Claude 4.1 models
75
75
  [Types.AnthropicModels.Claude_4_1Opus]: "claude-opus-4-1",
76
76
  [Types.AnthropicModels.Claude_4_1Opus_20250805]: "claude-opus-4-1-20250805",
77
+ // Claude 4.5 models
78
+ [Types.AnthropicModels.Claude_4_5Sonnet]: "claude-sonnet-4-5",
79
+ [Types.AnthropicModels.Claude_4_5Sonnet_20250929]: "claude-sonnet-4-5-20250929",
77
80
  };
78
81
  // Google model mappings
79
82
  const GOOGLE_MODEL_MAP = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250928001",
3
+ "version": "1.0.20250930002",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",