graphlit-client 1.0.20250628004 → 1.0.20250630001

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.
@@ -180,6 +180,10 @@ export const GetAlert = gql `
180
180
  accessTokenKey
181
181
  accessTokenSecret
182
182
  }
183
+ mcp {
184
+ token
185
+ type
186
+ }
183
187
  }
184
188
  publishing {
185
189
  type
@@ -326,6 +330,10 @@ export const QueryAlerts = gql `
326
330
  accessTokenKey
327
331
  accessTokenSecret
328
332
  }
333
+ mcp {
334
+ token
335
+ type
336
+ }
329
337
  }
330
338
  publishing {
331
339
  type
@@ -640,6 +648,10 @@ export const GetConnector = gql `
640
648
  accessTokenKey
641
649
  accessTokenSecret
642
650
  }
651
+ mcp {
652
+ token
653
+ type
654
+ }
643
655
  }
644
656
  }
645
657
  }
@@ -697,6 +709,10 @@ export const QueryConnectors = gql `
697
709
  accessTokenKey
698
710
  accessTokenSecret
699
711
  }
712
+ mcp {
713
+ token
714
+ type
715
+ }
700
716
  }
701
717
  }
702
718
  }
@@ -9729,6 +9745,10 @@ export const GetUser = gql `
9729
9745
  accessTokenKey
9730
9746
  accessTokenSecret
9731
9747
  }
9748
+ mcp {
9749
+ token
9750
+ type
9751
+ }
9732
9752
  }
9733
9753
  }
9734
9754
  }
@@ -9793,6 +9813,10 @@ export const GetUserByIdentifier = gql `
9793
9813
  accessTokenKey
9794
9814
  accessTokenSecret
9795
9815
  }
9816
+ mcp {
9817
+ token
9818
+ type
9819
+ }
9796
9820
  }
9797
9821
  }
9798
9822
  }
@@ -9858,6 +9882,10 @@ export const QueryUsers = gql `
9858
9882
  accessTokenKey
9859
9883
  accessTokenSecret
9860
9884
  }
9885
+ mcp {
9886
+ token
9887
+ type
9888
+ }
9861
9889
  }
9862
9890
  }
9863
9891
  }
@@ -11067,6 +11095,10 @@ export const CreateWorkflow = gql `
11067
11095
  accessTokenKey
11068
11096
  accessTokenSecret
11069
11097
  }
11098
+ mcp {
11099
+ token
11100
+ type
11101
+ }
11070
11102
  }
11071
11103
  }
11072
11104
  }
@@ -11315,6 +11347,10 @@ export const GetWorkflow = gql `
11315
11347
  accessTokenKey
11316
11348
  accessTokenSecret
11317
11349
  }
11350
+ mcp {
11351
+ token
11352
+ type
11353
+ }
11318
11354
  }
11319
11355
  }
11320
11356
  }
@@ -11536,6 +11572,10 @@ export const QueryWorkflows = gql `
11536
11572
  accessTokenKey
11537
11573
  accessTokenSecret
11538
11574
  }
11575
+ mcp {
11576
+ token
11577
+ type
11578
+ }
11539
11579
  }
11540
11580
  }
11541
11581
  }
@@ -11752,6 +11792,10 @@ export const UpdateWorkflow = gql `
11752
11792
  accessTokenKey
11753
11793
  accessTokenSecret
11754
11794
  }
11795
+ mcp {
11796
+ token
11797
+ type
11798
+ }
11755
11799
  }
11756
11800
  }
11757
11801
  }
@@ -11967,6 +12011,10 @@ export const UpsertWorkflow = gql `
11967
12011
  accessTokenKey
11968
12012
  accessTokenSecret
11969
12013
  }
12014
+ mcp {
12015
+ token
12016
+ type
12017
+ }
11970
12018
  }
11971
12019
  }
11972
12020
  }
@@ -5661,6 +5661,8 @@ export type IntegrationConnector = {
5661
5661
  __typename?: 'IntegrationConnector';
5662
5662
  /** Email integration properties. */
5663
5663
  email?: Maybe<EmailIntegrationProperties>;
5664
+ /** MCP integration properties. */
5665
+ mcp?: Maybe<McpIntegrationProperties>;
5664
5666
  /** Slack integration properties. */
5665
5667
  slack?: Maybe<SlackIntegrationProperties>;
5666
5668
  /** Twitter integration properties. */
@@ -5674,6 +5676,8 @@ export type IntegrationConnector = {
5674
5676
  export type IntegrationConnectorInput = {
5675
5677
  /** Email integration properties. */
5676
5678
  email?: InputMaybe<EmailIntegrationPropertiesInput>;
5679
+ /** MCP integration properties. */
5680
+ mcp?: InputMaybe<McpIntegrationPropertiesInput>;
5677
5681
  /** Slack integration properties. */
5678
5682
  slack?: InputMaybe<SlackIntegrationPropertiesInput>;
5679
5683
  /** Twitter integration properties. */
@@ -5687,6 +5691,8 @@ export type IntegrationConnectorInput = {
5687
5691
  export type IntegrationConnectorUpdateInput = {
5688
5692
  /** Email integration properties. */
5689
5693
  email?: InputMaybe<EmailIntegrationPropertiesInput>;
5694
+ /** MCP integration properties. */
5695
+ mcp?: InputMaybe<McpIntegrationPropertiesInput>;
5690
5696
  /** Slack integration properties. */
5691
5697
  slack?: InputMaybe<SlackIntegrationPropertiesInput>;
5692
5698
  /** Twitter integration properties. */
@@ -5698,6 +5704,8 @@ export type IntegrationConnectorUpdateInput = {
5698
5704
  export declare enum IntegrationServiceTypes {
5699
5705
  /** Email */
5700
5706
  Email = "EMAIL",
5707
+ /** MCP */
5708
+ Mcp = "MCP",
5701
5709
  /** Slack */
5702
5710
  Slack = "SLACK",
5703
5711
  /** Twitter/X */
@@ -6209,6 +6217,30 @@ export type LookupContentsResults = {
6209
6217
  /** The content results. */
6210
6218
  results?: Maybe<Array<Maybe<Content>>>;
6211
6219
  };
6220
+ /** Represents MCP integration properties. */
6221
+ export type McpIntegrationProperties = {
6222
+ __typename?: 'MCPIntegrationProperties';
6223
+ /** MCP server authentication token. */
6224
+ token?: Maybe<Scalars['String']['output']>;
6225
+ /** MCP server type. */
6226
+ type: McpServerTypes;
6227
+ };
6228
+ /** Represents MCP integration properties. */
6229
+ export type McpIntegrationPropertiesInput = {
6230
+ /** MCP server authentication token. */
6231
+ token?: InputMaybe<Scalars['String']['input']>;
6232
+ /** MCP server type. */
6233
+ type: McpServerTypes;
6234
+ };
6235
+ /** MCP Server Types */
6236
+ export declare enum McpServerTypes {
6237
+ /** Local MCP server using NPX */
6238
+ LocalNpx = "LOCAL_NPX",
6239
+ /** Remote MCP server using Streamable HTTP */
6240
+ RemoteHttp = "REMOTE_HTTP",
6241
+ /** Remote MCP server using SSE */
6242
+ RemoteSse = "REMOTE_SSE"
6243
+ }
6212
6244
  /** Mail importance */
6213
6245
  export declare enum MailImportance {
6214
6246
  /** High importance */
@@ -15199,6 +15231,11 @@ export type GetAlertQuery = {
15199
15231
  accessTokenKey: string;
15200
15232
  accessTokenSecret: string;
15201
15233
  } | null;
15234
+ mcp?: {
15235
+ __typename?: 'MCPIntegrationProperties';
15236
+ token?: string | null;
15237
+ type: McpServerTypes;
15238
+ } | null;
15202
15239
  };
15203
15240
  publishing: {
15204
15241
  __typename?: 'ContentPublishingConnector';
@@ -15387,6 +15424,11 @@ export type QueryAlertsQuery = {
15387
15424
  accessTokenKey: string;
15388
15425
  accessTokenSecret: string;
15389
15426
  } | null;
15427
+ mcp?: {
15428
+ __typename?: 'MCPIntegrationProperties';
15429
+ token?: string | null;
15430
+ type: McpServerTypes;
15431
+ } | null;
15390
15432
  };
15391
15433
  publishing: {
15392
15434
  __typename?: 'ContentPublishingConnector';
@@ -15803,6 +15845,11 @@ export type GetConnectorQuery = {
15803
15845
  accessTokenKey: string;
15804
15846
  accessTokenSecret: string;
15805
15847
  } | null;
15848
+ mcp?: {
15849
+ __typename?: 'MCPIntegrationProperties';
15850
+ token?: string | null;
15851
+ type: McpServerTypes;
15852
+ } | null;
15806
15853
  } | null;
15807
15854
  } | null;
15808
15855
  };
@@ -15875,6 +15922,11 @@ export type QueryConnectorsQuery = {
15875
15922
  accessTokenKey: string;
15876
15923
  accessTokenSecret: string;
15877
15924
  } | null;
15925
+ mcp?: {
15926
+ __typename?: 'MCPIntegrationProperties';
15927
+ token?: string | null;
15928
+ type: McpServerTypes;
15929
+ } | null;
15878
15930
  } | null;
15879
15931
  }> | null;
15880
15932
  } | null;
@@ -26429,6 +26481,11 @@ export type GetUserQuery = {
26429
26481
  accessTokenKey: string;
26430
26482
  accessTokenSecret: string;
26431
26483
  } | null;
26484
+ mcp?: {
26485
+ __typename?: 'MCPIntegrationProperties';
26486
+ token?: string | null;
26487
+ type: McpServerTypes;
26488
+ } | null;
26432
26489
  } | null;
26433
26490
  } | null> | null;
26434
26491
  } | null;
@@ -26507,6 +26564,11 @@ export type GetUserByIdentifierQuery = {
26507
26564
  accessTokenKey: string;
26508
26565
  accessTokenSecret: string;
26509
26566
  } | null;
26567
+ mcp?: {
26568
+ __typename?: 'MCPIntegrationProperties';
26569
+ token?: string | null;
26570
+ type: McpServerTypes;
26571
+ } | null;
26510
26572
  } | null;
26511
26573
  } | null> | null;
26512
26574
  } | null;
@@ -26588,6 +26650,11 @@ export type QueryUsersQuery = {
26588
26650
  accessTokenKey: string;
26589
26651
  accessTokenSecret: string;
26590
26652
  } | null;
26653
+ mcp?: {
26654
+ __typename?: 'MCPIntegrationProperties';
26655
+ token?: string | null;
26656
+ type: McpServerTypes;
26657
+ } | null;
26591
26658
  } | null;
26592
26659
  } | null> | null;
26593
26660
  }> | null;
@@ -28156,6 +28223,11 @@ export type CreateWorkflowMutation = {
28156
28223
  accessTokenKey: string;
28157
28224
  accessTokenSecret: string;
28158
28225
  } | null;
28226
+ mcp?: {
28227
+ __typename?: 'MCPIntegrationProperties';
28228
+ token?: string | null;
28229
+ type: McpServerTypes;
28230
+ } | null;
28159
28231
  } | null;
28160
28232
  } | null> | null;
28161
28233
  } | null;
@@ -28470,6 +28542,11 @@ export type GetWorkflowQuery = {
28470
28542
  accessTokenKey: string;
28471
28543
  accessTokenSecret: string;
28472
28544
  } | null;
28545
+ mcp?: {
28546
+ __typename?: 'MCPIntegrationProperties';
28547
+ token?: string | null;
28548
+ type: McpServerTypes;
28549
+ } | null;
28473
28550
  } | null;
28474
28551
  } | null> | null;
28475
28552
  } | null;
@@ -28750,6 +28827,11 @@ export type QueryWorkflowsQuery = {
28750
28827
  accessTokenKey: string;
28751
28828
  accessTokenSecret: string;
28752
28829
  } | null;
28830
+ mcp?: {
28831
+ __typename?: 'MCPIntegrationProperties';
28832
+ token?: string | null;
28833
+ type: McpServerTypes;
28834
+ } | null;
28753
28835
  } | null;
28754
28836
  } | null> | null;
28755
28837
  }> | null;
@@ -29022,6 +29104,11 @@ export type UpdateWorkflowMutation = {
29022
29104
  accessTokenKey: string;
29023
29105
  accessTokenSecret: string;
29024
29106
  } | null;
29107
+ mcp?: {
29108
+ __typename?: 'MCPIntegrationProperties';
29109
+ token?: string | null;
29110
+ type: McpServerTypes;
29111
+ } | null;
29025
29112
  } | null;
29026
29113
  } | null> | null;
29027
29114
  } | null;
@@ -29293,6 +29380,11 @@ export type UpsertWorkflowMutation = {
29293
29380
  accessTokenKey: string;
29294
29381
  accessTokenSecret: string;
29295
29382
  } | null;
29383
+ mcp?: {
29384
+ __typename?: 'MCPIntegrationProperties';
29385
+ token?: string | null;
29386
+ type: McpServerTypes;
29387
+ } | null;
29296
29388
  } | null;
29297
29389
  } | null> | null;
29298
29390
  } | null;
@@ -1162,6 +1162,8 @@ export var IntegrationServiceTypes;
1162
1162
  (function (IntegrationServiceTypes) {
1163
1163
  /** Email */
1164
1164
  IntegrationServiceTypes["Email"] = "EMAIL";
1165
+ /** MCP */
1166
+ IntegrationServiceTypes["Mcp"] = "MCP";
1165
1167
  /** Slack */
1166
1168
  IntegrationServiceTypes["Slack"] = "SLACK";
1167
1169
  /** Twitter/X */
@@ -1279,6 +1281,16 @@ export var LinkTypes;
1279
1281
  /** YouTube link */
1280
1282
  LinkTypes["YouTube"] = "YOU_TUBE";
1281
1283
  })(LinkTypes || (LinkTypes = {}));
1284
+ /** MCP Server Types */
1285
+ export var McpServerTypes;
1286
+ (function (McpServerTypes) {
1287
+ /** Local MCP server using NPX */
1288
+ McpServerTypes["LocalNpx"] = "LOCAL_NPX";
1289
+ /** Remote MCP server using Streamable HTTP */
1290
+ McpServerTypes["RemoteHttp"] = "REMOTE_HTTP";
1291
+ /** Remote MCP server using SSE */
1292
+ McpServerTypes["RemoteSse"] = "REMOTE_SSE";
1293
+ })(McpServerTypes || (McpServerTypes = {}));
1282
1294
  /** Mail importance */
1283
1295
  export var MailImportance;
1284
1296
  (function (MailImportance) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250628004",
3
+ "version": "1.0.20250630001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",