graphlit-client 1.0.20251231002 → 1.0.20260101002
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.
|
@@ -710,6 +710,7 @@ export const GetConnector = gql `
|
|
|
710
710
|
clientId
|
|
711
711
|
clientSecret
|
|
712
712
|
refreshToken
|
|
713
|
+
redirectUri
|
|
713
714
|
metadata
|
|
714
715
|
}
|
|
715
716
|
arcade {
|
|
@@ -774,6 +775,7 @@ export const QueryConnectors = gql `
|
|
|
774
775
|
clientId
|
|
775
776
|
clientSecret
|
|
776
777
|
refreshToken
|
|
778
|
+
redirectUri
|
|
777
779
|
metadata
|
|
778
780
|
}
|
|
779
781
|
arcade {
|
|
@@ -8576,6 +8578,7 @@ export const QueryGoogleDriveFolders = gql `
|
|
|
8576
8578
|
results {
|
|
8577
8579
|
folderName
|
|
8578
8580
|
folderId
|
|
8581
|
+
folderPath
|
|
8579
8582
|
}
|
|
8580
8583
|
}
|
|
8581
8584
|
}
|
|
@@ -8643,6 +8646,7 @@ export const QueryOneDriveFolders = gql `
|
|
|
8643
8646
|
results {
|
|
8644
8647
|
folderName
|
|
8645
8648
|
folderId
|
|
8649
|
+
folderPath
|
|
8646
8650
|
}
|
|
8647
8651
|
}
|
|
8648
8652
|
}
|
|
@@ -8658,6 +8662,7 @@ export const QuerySharePointFolders = gql `
|
|
|
8658
8662
|
results {
|
|
8659
8663
|
folderName
|
|
8660
8664
|
folderId
|
|
8665
|
+
folderPath
|
|
8661
8666
|
}
|
|
8662
8667
|
}
|
|
8663
8668
|
}
|
|
@@ -15110,6 +15115,7 @@ export const GetUser = gql `
|
|
|
15110
15115
|
clientId
|
|
15111
15116
|
clientSecret
|
|
15112
15117
|
refreshToken
|
|
15118
|
+
redirectUri
|
|
15113
15119
|
metadata
|
|
15114
15120
|
}
|
|
15115
15121
|
arcade {
|
|
@@ -15181,6 +15187,7 @@ export const GetUserByIdentifier = gql `
|
|
|
15181
15187
|
clientId
|
|
15182
15188
|
clientSecret
|
|
15183
15189
|
refreshToken
|
|
15190
|
+
redirectUri
|
|
15184
15191
|
metadata
|
|
15185
15192
|
}
|
|
15186
15193
|
arcade {
|
|
@@ -15253,6 +15260,7 @@ export const QueryUsers = gql `
|
|
|
15253
15260
|
clientId
|
|
15254
15261
|
clientSecret
|
|
15255
15262
|
refreshToken
|
|
15263
|
+
redirectUri
|
|
15256
15264
|
metadata
|
|
15257
15265
|
}
|
|
15258
15266
|
arcade {
|
|
@@ -12510,6 +12510,8 @@ export type OAuthAuthenticationProperties = {
|
|
|
12510
12510
|
metadata?: Maybe<Scalars['String']['output']>;
|
|
12511
12511
|
/** OAuth provider. */
|
|
12512
12512
|
provider: OAuthProviders;
|
|
12513
|
+
/** OAuth redirect URI. */
|
|
12514
|
+
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
12513
12515
|
/** OAuth refresh token. */
|
|
12514
12516
|
refreshToken: Scalars['String']['output'];
|
|
12515
12517
|
};
|
|
@@ -12523,6 +12525,8 @@ export type OAuthAuthenticationPropertiesInput = {
|
|
|
12523
12525
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
12524
12526
|
/** OAuth provider. */
|
|
12525
12527
|
provider: OAuthProviders;
|
|
12528
|
+
/** OAuth redirect URI. */
|
|
12529
|
+
redirectUri?: InputMaybe<Scalars['String']['input']>;
|
|
12526
12530
|
/** OAuth refresh token. */
|
|
12527
12531
|
refreshToken: Scalars['String']['input'];
|
|
12528
12532
|
};
|
|
@@ -19573,6 +19577,7 @@ export type GetConnectorQuery = {
|
|
|
19573
19577
|
clientId: string;
|
|
19574
19578
|
clientSecret: string;
|
|
19575
19579
|
refreshToken: string;
|
|
19580
|
+
redirectUri?: string | null;
|
|
19576
19581
|
metadata?: string | null;
|
|
19577
19582
|
} | null;
|
|
19578
19583
|
arcade?: {
|
|
@@ -19653,6 +19658,7 @@ export type QueryConnectorsQuery = {
|
|
|
19653
19658
|
clientId: string;
|
|
19654
19659
|
clientSecret: string;
|
|
19655
19660
|
refreshToken: string;
|
|
19661
|
+
redirectUri?: string | null;
|
|
19656
19662
|
metadata?: string | null;
|
|
19657
19663
|
} | null;
|
|
19658
19664
|
arcade?: {
|
|
@@ -28543,6 +28549,7 @@ export type QueryGoogleDriveFoldersQuery = {
|
|
|
28543
28549
|
__typename?: 'GoogleDriveFolderResult';
|
|
28544
28550
|
folderName?: string | null;
|
|
28545
28551
|
folderId?: string | null;
|
|
28552
|
+
folderPath?: string | null;
|
|
28546
28553
|
} | null> | null;
|
|
28547
28554
|
} | null;
|
|
28548
28555
|
};
|
|
@@ -28640,6 +28647,7 @@ export type QueryOneDriveFoldersQuery = {
|
|
|
28640
28647
|
__typename?: 'OneDriveFolderResult';
|
|
28641
28648
|
folderName?: string | null;
|
|
28642
28649
|
folderId?: string | null;
|
|
28650
|
+
folderPath?: string | null;
|
|
28643
28651
|
} | null> | null;
|
|
28644
28652
|
} | null;
|
|
28645
28653
|
};
|
|
@@ -28657,6 +28665,7 @@ export type QuerySharePointFoldersQuery = {
|
|
|
28657
28665
|
__typename?: 'SharePointFolderResult';
|
|
28658
28666
|
folderName?: string | null;
|
|
28659
28667
|
folderId?: string | null;
|
|
28668
|
+
folderPath?: string | null;
|
|
28660
28669
|
} | null> | null;
|
|
28661
28670
|
} | null;
|
|
28662
28671
|
};
|
|
@@ -36439,6 +36448,7 @@ export type GetUserQuery = {
|
|
|
36439
36448
|
clientId: string;
|
|
36440
36449
|
clientSecret: string;
|
|
36441
36450
|
refreshToken: string;
|
|
36451
|
+
redirectUri?: string | null;
|
|
36442
36452
|
metadata?: string | null;
|
|
36443
36453
|
} | null;
|
|
36444
36454
|
arcade?: {
|
|
@@ -36525,6 +36535,7 @@ export type GetUserByIdentifierQuery = {
|
|
|
36525
36535
|
clientId: string;
|
|
36526
36536
|
clientSecret: string;
|
|
36527
36537
|
refreshToken: string;
|
|
36538
|
+
redirectUri?: string | null;
|
|
36528
36539
|
metadata?: string | null;
|
|
36529
36540
|
} | null;
|
|
36530
36541
|
arcade?: {
|
|
@@ -36614,6 +36625,7 @@ export type QueryUsersQuery = {
|
|
|
36614
36625
|
clientId: string;
|
|
36615
36626
|
clientSecret: string;
|
|
36616
36627
|
refreshToken: string;
|
|
36628
|
+
redirectUri?: string | null;
|
|
36617
36629
|
metadata?: string | null;
|
|
36618
36630
|
} | null;
|
|
36619
36631
|
arcade?: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphlit-client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.20260101002",
|
|
4
4
|
"description": "Graphlit API Client for TypeScript",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/client.js",
|
|
@@ -45,14 +45,14 @@
|
|
|
45
45
|
"license": "MIT",
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@apollo/client": "^3.13.8",
|
|
48
|
-
"@cerebras/cerebras_cloud_sdk": "^1.
|
|
49
|
-
"@google/genai": "^1.
|
|
50
|
-
"@graphql-codegen/cli": "^
|
|
51
|
-
"@graphql-codegen/typescript": "^
|
|
52
|
-
"@graphql-codegen/typescript-operations": "^
|
|
53
|
-
"graphql": "^16.
|
|
54
|
-
"jsonwebtoken": "^9.0.
|
|
55
|
-
"prettier": "^3.
|
|
48
|
+
"@cerebras/cerebras_cloud_sdk": "^1.64.1",
|
|
49
|
+
"@google/genai": "^1.34.0",
|
|
50
|
+
"@graphql-codegen/cli": "^6.1.0",
|
|
51
|
+
"@graphql-codegen/typescript": "^5.0.7",
|
|
52
|
+
"@graphql-codegen/typescript-operations": "^5.0.7",
|
|
53
|
+
"graphql": "^16.12.0",
|
|
54
|
+
"jsonwebtoken": "^9.0.3",
|
|
55
|
+
"prettier": "^3.7.4"
|
|
56
56
|
},
|
|
57
57
|
"peerDependenciesMeta": {
|
|
58
58
|
"openai": {
|
|
@@ -76,19 +76,22 @@
|
|
|
76
76
|
},
|
|
77
77
|
"optionalDependencies": {
|
|
78
78
|
"@anthropic-ai/sdk": "^0.53.0",
|
|
79
|
-
"@aws-sdk/client-bedrock-runtime": "^3.
|
|
80
|
-
"@mistralai/mistralai": "^1.
|
|
81
|
-
"cohere-ai": "^7.
|
|
79
|
+
"@aws-sdk/client-bedrock-runtime": "^3.958.0",
|
|
80
|
+
"@mistralai/mistralai": "^1.11.0",
|
|
81
|
+
"cohere-ai": "^7.20.0",
|
|
82
82
|
"groq-sdk": "^0.25.0",
|
|
83
83
|
"openai": "^5.3.0"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
|
-
"@graphql-codegen/typescript-document-nodes": "^
|
|
87
|
-
"@types/jsonwebtoken": "^9.0.
|
|
88
|
-
"@types/node": "^20.
|
|
89
|
-
"@vitest/coverage-v8": "^3.2.
|
|
86
|
+
"@graphql-codegen/typescript-document-nodes": "^5.0.7",
|
|
87
|
+
"@types/jsonwebtoken": "^9.0.10",
|
|
88
|
+
"@types/node": "^20.19.27",
|
|
89
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
90
90
|
"dotenv": "^16.5.0",
|
|
91
|
-
"typescript": "^5.
|
|
92
|
-
"vitest": "^3.2.
|
|
91
|
+
"typescript": "^5.9.3",
|
|
92
|
+
"vitest": "^3.2.4"
|
|
93
|
+
},
|
|
94
|
+
"overrides": {
|
|
95
|
+
"change-case-all": "^2.1.0"
|
|
93
96
|
}
|
|
94
97
|
}
|