@robosystems/client 0.1.21 → 0.1.22
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.
- package/extensions/CopyClient.d.ts +1 -0
- package/extensions/CopyClient.js +3 -0
- package/extensions/CopyClient.ts +5 -0
- package/extensions/OperationClient.d.ts +1 -0
- package/extensions/OperationClient.ts +2 -0
- package/extensions/QueryClient.d.ts +1 -0
- package/extensions/QueryClient.js +1 -0
- package/extensions/QueryClient.ts +3 -0
- package/extensions/SSEClient.d.ts +14 -0
- package/extensions/SSEClient.js +7 -1
- package/extensions/SSEClient.ts +22 -1
- package/extensions/config.d.ts +25 -0
- package/extensions/config.js +78 -0
- package/extensions/config.ts +84 -0
- package/extensions/hooks.js +16 -0
- package/extensions/hooks.ts +27 -1
- package/extensions/index.d.ts +2 -0
- package/extensions/index.js +14 -0
- package/extensions/index.ts +28 -1
- package/package.json +1 -1
- package/sdk/types.gen.d.ts +493 -59
- package/sdk/types.gen.ts +493 -59
- package/sdk-extensions/CopyClient.d.ts +1 -0
- package/sdk-extensions/CopyClient.js +3 -0
- package/sdk-extensions/CopyClient.ts +5 -0
- package/sdk-extensions/OperationClient.d.ts +1 -0
- package/sdk-extensions/OperationClient.ts +2 -0
- package/sdk-extensions/QueryClient.d.ts +1 -0
- package/sdk-extensions/QueryClient.js +1 -0
- package/sdk-extensions/QueryClient.ts +3 -0
- package/sdk-extensions/SSEClient.d.ts +14 -0
- package/sdk-extensions/SSEClient.js +7 -1
- package/sdk-extensions/SSEClient.ts +22 -1
- package/sdk-extensions/config.d.ts +25 -0
- package/sdk-extensions/config.js +78 -0
- package/sdk-extensions/config.ts +84 -0
- package/sdk-extensions/hooks.js +16 -0
- package/sdk-extensions/hooks.ts +27 -1
- package/sdk-extensions/index.d.ts +2 -0
- package/sdk-extensions/index.js +14 -0
- package/sdk-extensions/index.ts +28 -1
- package/types.gen.d.ts +493 -59
- package/types.gen.ts +493 -59
package/types.gen.d.ts
CHANGED
|
@@ -3788,7 +3788,13 @@ export type GetCurrentUserData = {
|
|
|
3788
3788
|
authorization?: string | null;
|
|
3789
3789
|
};
|
|
3790
3790
|
path?: never;
|
|
3791
|
-
query?:
|
|
3791
|
+
query?: {
|
|
3792
|
+
/**
|
|
3793
|
+
* Token
|
|
3794
|
+
* JWT token for SSE authentication
|
|
3795
|
+
*/
|
|
3796
|
+
token?: string | null;
|
|
3797
|
+
};
|
|
3792
3798
|
url: '/v1/user';
|
|
3793
3799
|
};
|
|
3794
3800
|
export type GetCurrentUserErrors = {
|
|
@@ -3814,7 +3820,13 @@ export type UpdateUserData = {
|
|
|
3814
3820
|
authorization?: string | null;
|
|
3815
3821
|
};
|
|
3816
3822
|
path?: never;
|
|
3817
|
-
query?:
|
|
3823
|
+
query?: {
|
|
3824
|
+
/**
|
|
3825
|
+
* Token
|
|
3826
|
+
* JWT token for SSE authentication
|
|
3827
|
+
*/
|
|
3828
|
+
token?: string | null;
|
|
3829
|
+
};
|
|
3818
3830
|
url: '/v1/user';
|
|
3819
3831
|
};
|
|
3820
3832
|
export type UpdateUserErrors = {
|
|
@@ -3840,7 +3852,13 @@ export type GetUserGraphsData = {
|
|
|
3840
3852
|
authorization?: string | null;
|
|
3841
3853
|
};
|
|
3842
3854
|
path?: never;
|
|
3843
|
-
query?:
|
|
3855
|
+
query?: {
|
|
3856
|
+
/**
|
|
3857
|
+
* Token
|
|
3858
|
+
* JWT token for SSE authentication
|
|
3859
|
+
*/
|
|
3860
|
+
token?: string | null;
|
|
3861
|
+
};
|
|
3844
3862
|
url: '/v1/user/graphs';
|
|
3845
3863
|
};
|
|
3846
3864
|
export type GetUserGraphsErrors = {
|
|
@@ -3871,7 +3889,13 @@ export type SelectUserGraphData = {
|
|
|
3871
3889
|
*/
|
|
3872
3890
|
graph_id: string;
|
|
3873
3891
|
};
|
|
3874
|
-
query?:
|
|
3892
|
+
query?: {
|
|
3893
|
+
/**
|
|
3894
|
+
* Token
|
|
3895
|
+
* JWT token for SSE authentication
|
|
3896
|
+
*/
|
|
3897
|
+
token?: string | null;
|
|
3898
|
+
};
|
|
3875
3899
|
url: '/v1/user/graphs/{graph_id}/select';
|
|
3876
3900
|
};
|
|
3877
3901
|
export type SelectUserGraphErrors = {
|
|
@@ -3909,7 +3933,13 @@ export type GetAllCreditSummariesData = {
|
|
|
3909
3933
|
authorization?: string | null;
|
|
3910
3934
|
};
|
|
3911
3935
|
path?: never;
|
|
3912
|
-
query?:
|
|
3936
|
+
query?: {
|
|
3937
|
+
/**
|
|
3938
|
+
* Token
|
|
3939
|
+
* JWT token for SSE authentication
|
|
3940
|
+
*/
|
|
3941
|
+
token?: string | null;
|
|
3942
|
+
};
|
|
3913
3943
|
url: '/v1/user/credits';
|
|
3914
3944
|
};
|
|
3915
3945
|
export type GetAllCreditSummariesErrors = {
|
|
@@ -3942,7 +3972,13 @@ export type UpdateUserPasswordData = {
|
|
|
3942
3972
|
authorization?: string | null;
|
|
3943
3973
|
};
|
|
3944
3974
|
path?: never;
|
|
3945
|
-
query?:
|
|
3975
|
+
query?: {
|
|
3976
|
+
/**
|
|
3977
|
+
* Token
|
|
3978
|
+
* JWT token for SSE authentication
|
|
3979
|
+
*/
|
|
3980
|
+
token?: string | null;
|
|
3981
|
+
};
|
|
3946
3982
|
url: '/v1/user/password';
|
|
3947
3983
|
};
|
|
3948
3984
|
export type UpdateUserPasswordErrors = {
|
|
@@ -3980,7 +4016,13 @@ export type ListUserApiKeysData = {
|
|
|
3980
4016
|
authorization?: string | null;
|
|
3981
4017
|
};
|
|
3982
4018
|
path?: never;
|
|
3983
|
-
query?:
|
|
4019
|
+
query?: {
|
|
4020
|
+
/**
|
|
4021
|
+
* Token
|
|
4022
|
+
* JWT token for SSE authentication
|
|
4023
|
+
*/
|
|
4024
|
+
token?: string | null;
|
|
4025
|
+
};
|
|
3984
4026
|
url: '/v1/user/api-keys';
|
|
3985
4027
|
};
|
|
3986
4028
|
export type ListUserApiKeysErrors = {
|
|
@@ -4006,7 +4048,13 @@ export type CreateUserApiKeyData = {
|
|
|
4006
4048
|
authorization?: string | null;
|
|
4007
4049
|
};
|
|
4008
4050
|
path?: never;
|
|
4009
|
-
query?:
|
|
4051
|
+
query?: {
|
|
4052
|
+
/**
|
|
4053
|
+
* Token
|
|
4054
|
+
* JWT token for SSE authentication
|
|
4055
|
+
*/
|
|
4056
|
+
token?: string | null;
|
|
4057
|
+
};
|
|
4010
4058
|
url: '/v1/user/api-keys';
|
|
4011
4059
|
};
|
|
4012
4060
|
export type CreateUserApiKeyErrors = {
|
|
@@ -4037,7 +4085,13 @@ export type RevokeUserApiKeyData = {
|
|
|
4037
4085
|
*/
|
|
4038
4086
|
api_key_id: string;
|
|
4039
4087
|
};
|
|
4040
|
-
query?:
|
|
4088
|
+
query?: {
|
|
4089
|
+
/**
|
|
4090
|
+
* Token
|
|
4091
|
+
* JWT token for SSE authentication
|
|
4092
|
+
*/
|
|
4093
|
+
token?: string | null;
|
|
4094
|
+
};
|
|
4041
4095
|
url: '/v1/user/api-keys/{api_key_id}';
|
|
4042
4096
|
};
|
|
4043
4097
|
export type RevokeUserApiKeyErrors = {
|
|
@@ -4076,7 +4130,13 @@ export type UpdateUserApiKeyData = {
|
|
|
4076
4130
|
*/
|
|
4077
4131
|
api_key_id: string;
|
|
4078
4132
|
};
|
|
4079
|
-
query?:
|
|
4133
|
+
query?: {
|
|
4134
|
+
/**
|
|
4135
|
+
* Token
|
|
4136
|
+
* JWT token for SSE authentication
|
|
4137
|
+
*/
|
|
4138
|
+
token?: string | null;
|
|
4139
|
+
};
|
|
4080
4140
|
url: '/v1/user/api-keys/{api_key_id}';
|
|
4081
4141
|
};
|
|
4082
4142
|
export type UpdateUserApiKeyErrors = {
|
|
@@ -4102,7 +4162,13 @@ export type GetUserLimitsData = {
|
|
|
4102
4162
|
authorization?: string | null;
|
|
4103
4163
|
};
|
|
4104
4164
|
path?: never;
|
|
4105
|
-
query?:
|
|
4165
|
+
query?: {
|
|
4166
|
+
/**
|
|
4167
|
+
* Token
|
|
4168
|
+
* JWT token for SSE authentication
|
|
4169
|
+
*/
|
|
4170
|
+
token?: string | null;
|
|
4171
|
+
};
|
|
4106
4172
|
url: '/v1/user/limits';
|
|
4107
4173
|
};
|
|
4108
4174
|
export type GetUserLimitsErrors = {
|
|
@@ -4132,7 +4198,13 @@ export type GetUserUsageData = {
|
|
|
4132
4198
|
authorization?: string | null;
|
|
4133
4199
|
};
|
|
4134
4200
|
path?: never;
|
|
4135
|
-
query?:
|
|
4201
|
+
query?: {
|
|
4202
|
+
/**
|
|
4203
|
+
* Token
|
|
4204
|
+
* JWT token for SSE authentication
|
|
4205
|
+
*/
|
|
4206
|
+
token?: string | null;
|
|
4207
|
+
};
|
|
4136
4208
|
url: '/v1/user/limits/usage';
|
|
4137
4209
|
};
|
|
4138
4210
|
export type GetUserUsageErrors = {
|
|
@@ -4158,7 +4230,13 @@ export type GetAllSharedRepositoryLimitsData = {
|
|
|
4158
4230
|
authorization?: string | null;
|
|
4159
4231
|
};
|
|
4160
4232
|
path?: never;
|
|
4161
|
-
query?:
|
|
4233
|
+
query?: {
|
|
4234
|
+
/**
|
|
4235
|
+
* Token
|
|
4236
|
+
* JWT token for SSE authentication
|
|
4237
|
+
*/
|
|
4238
|
+
token?: string | null;
|
|
4239
|
+
};
|
|
4162
4240
|
url: '/v1/user/limits/shared-repositories/summary';
|
|
4163
4241
|
};
|
|
4164
4242
|
export type GetAllSharedRepositoryLimitsErrors = {
|
|
@@ -4193,7 +4271,13 @@ export type GetSharedRepositoryLimitsData = {
|
|
|
4193
4271
|
*/
|
|
4194
4272
|
repository: string;
|
|
4195
4273
|
};
|
|
4196
|
-
query?:
|
|
4274
|
+
query?: {
|
|
4275
|
+
/**
|
|
4276
|
+
* Token
|
|
4277
|
+
* JWT token for SSE authentication
|
|
4278
|
+
*/
|
|
4279
|
+
token?: string | null;
|
|
4280
|
+
};
|
|
4197
4281
|
url: '/v1/user/limits/shared-repositories/{repository}';
|
|
4198
4282
|
};
|
|
4199
4283
|
export type GetSharedRepositoryLimitsErrors = {
|
|
@@ -4222,7 +4306,13 @@ export type GetUserUsageOverviewData = {
|
|
|
4222
4306
|
authorization?: string | null;
|
|
4223
4307
|
};
|
|
4224
4308
|
path?: never;
|
|
4225
|
-
query?:
|
|
4309
|
+
query?: {
|
|
4310
|
+
/**
|
|
4311
|
+
* Token
|
|
4312
|
+
* JWT token for SSE authentication
|
|
4313
|
+
*/
|
|
4314
|
+
token?: string | null;
|
|
4315
|
+
};
|
|
4226
4316
|
url: '/v1/user/analytics/overview';
|
|
4227
4317
|
};
|
|
4228
4318
|
export type GetUserUsageOverviewErrors = {
|
|
@@ -4259,6 +4349,11 @@ export type GetDetailedUserAnalyticsData = {
|
|
|
4259
4349
|
* Include recent activity
|
|
4260
4350
|
*/
|
|
4261
4351
|
include_recent_activity?: boolean;
|
|
4352
|
+
/**
|
|
4353
|
+
* Token
|
|
4354
|
+
* JWT token for SSE authentication
|
|
4355
|
+
*/
|
|
4356
|
+
token?: string | null;
|
|
4262
4357
|
};
|
|
4263
4358
|
url: '/v1/user/analytics/detailed';
|
|
4264
4359
|
};
|
|
@@ -4291,6 +4386,11 @@ export type GetUserSharedSubscriptionsData = {
|
|
|
4291
4386
|
* Only return active subscriptions
|
|
4292
4387
|
*/
|
|
4293
4388
|
active_only?: boolean;
|
|
4389
|
+
/**
|
|
4390
|
+
* Token
|
|
4391
|
+
* JWT token for SSE authentication
|
|
4392
|
+
*/
|
|
4393
|
+
token?: string | null;
|
|
4294
4394
|
};
|
|
4295
4395
|
url: '/v1/user/subscriptions/shared-repositories';
|
|
4296
4396
|
};
|
|
@@ -4325,7 +4425,13 @@ export type SubscribeToSharedRepositoryData = {
|
|
|
4325
4425
|
authorization?: string | null;
|
|
4326
4426
|
};
|
|
4327
4427
|
path?: never;
|
|
4328
|
-
query?:
|
|
4428
|
+
query?: {
|
|
4429
|
+
/**
|
|
4430
|
+
* Token
|
|
4431
|
+
* JWT token for SSE authentication
|
|
4432
|
+
*/
|
|
4433
|
+
token?: string | null;
|
|
4434
|
+
};
|
|
4329
4435
|
url: '/v1/user/subscriptions/shared-repositories/subscribe';
|
|
4330
4436
|
};
|
|
4331
4437
|
export type SubscribeToSharedRepositoryErrors = {
|
|
@@ -4368,7 +4474,13 @@ export type UpgradeSharedRepositorySubscriptionData = {
|
|
|
4368
4474
|
*/
|
|
4369
4475
|
subscription_id: string;
|
|
4370
4476
|
};
|
|
4371
|
-
query?:
|
|
4477
|
+
query?: {
|
|
4478
|
+
/**
|
|
4479
|
+
* Token
|
|
4480
|
+
* JWT token for SSE authentication
|
|
4481
|
+
*/
|
|
4482
|
+
token?: string | null;
|
|
4483
|
+
};
|
|
4372
4484
|
url: '/v1/user/subscriptions/shared-repositories/{subscription_id}/upgrade';
|
|
4373
4485
|
};
|
|
4374
4486
|
export type UpgradeSharedRepositorySubscriptionErrors = {
|
|
@@ -4414,7 +4526,13 @@ export type CancelSharedRepositorySubscriptionData = {
|
|
|
4414
4526
|
*/
|
|
4415
4527
|
subscription_id: string;
|
|
4416
4528
|
};
|
|
4417
|
-
query?:
|
|
4529
|
+
query?: {
|
|
4530
|
+
/**
|
|
4531
|
+
* Token
|
|
4532
|
+
* JWT token for SSE authentication
|
|
4533
|
+
*/
|
|
4534
|
+
token?: string | null;
|
|
4535
|
+
};
|
|
4418
4536
|
url: '/v1/user/subscriptions/shared-repositories/{subscription_id}';
|
|
4419
4537
|
};
|
|
4420
4538
|
export type CancelSharedRepositorySubscriptionErrors = {
|
|
@@ -4452,7 +4570,13 @@ export type GetSharedRepositoryCreditsData = {
|
|
|
4452
4570
|
authorization?: string | null;
|
|
4453
4571
|
};
|
|
4454
4572
|
path?: never;
|
|
4455
|
-
query?:
|
|
4573
|
+
query?: {
|
|
4574
|
+
/**
|
|
4575
|
+
* Token
|
|
4576
|
+
* JWT token for SSE authentication
|
|
4577
|
+
*/
|
|
4578
|
+
token?: string | null;
|
|
4579
|
+
};
|
|
4456
4580
|
url: '/v1/user/subscriptions/shared-repositories/credits';
|
|
4457
4581
|
};
|
|
4458
4582
|
export type GetSharedRepositoryCreditsErrors = {
|
|
@@ -4491,7 +4615,13 @@ export type GetRepositoryCreditsData = {
|
|
|
4491
4615
|
*/
|
|
4492
4616
|
repository: string;
|
|
4493
4617
|
};
|
|
4494
|
-
query?:
|
|
4618
|
+
query?: {
|
|
4619
|
+
/**
|
|
4620
|
+
* Token
|
|
4621
|
+
* JWT token for SSE authentication
|
|
4622
|
+
*/
|
|
4623
|
+
token?: string | null;
|
|
4624
|
+
};
|
|
4495
4625
|
url: '/v1/user/subscriptions/shared-repositories/credits/{repository}';
|
|
4496
4626
|
};
|
|
4497
4627
|
export type GetRepositoryCreditsErrors = {
|
|
@@ -4531,7 +4661,13 @@ export type GetConnectionOptionsData = {
|
|
|
4531
4661
|
*/
|
|
4532
4662
|
graph_id: string;
|
|
4533
4663
|
};
|
|
4534
|
-
query?:
|
|
4664
|
+
query?: {
|
|
4665
|
+
/**
|
|
4666
|
+
* Token
|
|
4667
|
+
* JWT token for SSE authentication
|
|
4668
|
+
*/
|
|
4669
|
+
token?: string | null;
|
|
4670
|
+
};
|
|
4535
4671
|
url: '/v1/{graph_id}/connections/options';
|
|
4536
4672
|
};
|
|
4537
4673
|
export type GetConnectionOptionsErrors = {
|
|
@@ -4576,7 +4712,13 @@ export type SyncConnectionData = {
|
|
|
4576
4712
|
*/
|
|
4577
4713
|
connection_id: string;
|
|
4578
4714
|
};
|
|
4579
|
-
query?:
|
|
4715
|
+
query?: {
|
|
4716
|
+
/**
|
|
4717
|
+
* Token
|
|
4718
|
+
* JWT token for SSE authentication
|
|
4719
|
+
*/
|
|
4720
|
+
token?: string | null;
|
|
4721
|
+
};
|
|
4580
4722
|
url: '/v1/{graph_id}/connections/{connection_id}/sync';
|
|
4581
4723
|
};
|
|
4582
4724
|
export type SyncConnectionErrors = {
|
|
@@ -4623,7 +4765,13 @@ export type CreateLinkTokenData = {
|
|
|
4623
4765
|
*/
|
|
4624
4766
|
graph_id: string;
|
|
4625
4767
|
};
|
|
4626
|
-
query?:
|
|
4768
|
+
query?: {
|
|
4769
|
+
/**
|
|
4770
|
+
* Token
|
|
4771
|
+
* JWT token for SSE authentication
|
|
4772
|
+
*/
|
|
4773
|
+
token?: string | null;
|
|
4774
|
+
};
|
|
4627
4775
|
url: '/v1/{graph_id}/connections/link/token';
|
|
4628
4776
|
};
|
|
4629
4777
|
export type CreateLinkTokenErrors = {
|
|
@@ -4666,7 +4814,13 @@ export type ExchangeLinkTokenData = {
|
|
|
4666
4814
|
*/
|
|
4667
4815
|
graph_id: string;
|
|
4668
4816
|
};
|
|
4669
|
-
query?:
|
|
4817
|
+
query?: {
|
|
4818
|
+
/**
|
|
4819
|
+
* Token
|
|
4820
|
+
* JWT token for SSE authentication
|
|
4821
|
+
*/
|
|
4822
|
+
token?: string | null;
|
|
4823
|
+
};
|
|
4670
4824
|
url: '/v1/{graph_id}/connections/link/exchange';
|
|
4671
4825
|
};
|
|
4672
4826
|
export type ExchangeLinkTokenErrors = {
|
|
@@ -4709,7 +4863,13 @@ export type InitOAuthData = {
|
|
|
4709
4863
|
*/
|
|
4710
4864
|
graph_id: string;
|
|
4711
4865
|
};
|
|
4712
|
-
query?:
|
|
4866
|
+
query?: {
|
|
4867
|
+
/**
|
|
4868
|
+
* Token
|
|
4869
|
+
* JWT token for SSE authentication
|
|
4870
|
+
*/
|
|
4871
|
+
token?: string | null;
|
|
4872
|
+
};
|
|
4713
4873
|
url: '/v1/{graph_id}/connections/oauth/init';
|
|
4714
4874
|
};
|
|
4715
4875
|
export type InitOAuthErrors = {
|
|
@@ -4746,7 +4906,13 @@ export type OauthCallbackData = {
|
|
|
4746
4906
|
*/
|
|
4747
4907
|
graph_id: string;
|
|
4748
4908
|
};
|
|
4749
|
-
query?:
|
|
4909
|
+
query?: {
|
|
4910
|
+
/**
|
|
4911
|
+
* Token
|
|
4912
|
+
* JWT token for SSE authentication
|
|
4913
|
+
*/
|
|
4914
|
+
token?: string | null;
|
|
4915
|
+
};
|
|
4750
4916
|
url: '/v1/{graph_id}/connections/oauth/callback/{provider}';
|
|
4751
4917
|
};
|
|
4752
4918
|
export type OauthCallbackErrors = {
|
|
@@ -4804,6 +4970,11 @@ export type ListConnectionsData = {
|
|
|
4804
4970
|
* Filter by provider type
|
|
4805
4971
|
*/
|
|
4806
4972
|
provider?: ('sec' | 'quickbooks' | 'plaid') | null;
|
|
4973
|
+
/**
|
|
4974
|
+
* Token
|
|
4975
|
+
* JWT token for SSE authentication
|
|
4976
|
+
*/
|
|
4977
|
+
token?: string | null;
|
|
4807
4978
|
};
|
|
4808
4979
|
url: '/v1/{graph_id}/connections';
|
|
4809
4980
|
};
|
|
@@ -4845,7 +5016,13 @@ export type CreateConnectionData = {
|
|
|
4845
5016
|
*/
|
|
4846
5017
|
graph_id: string;
|
|
4847
5018
|
};
|
|
4848
|
-
query?:
|
|
5019
|
+
query?: {
|
|
5020
|
+
/**
|
|
5021
|
+
* Token
|
|
5022
|
+
* JWT token for SSE authentication
|
|
5023
|
+
*/
|
|
5024
|
+
token?: string | null;
|
|
5025
|
+
};
|
|
4849
5026
|
url: '/v1/{graph_id}/connections';
|
|
4850
5027
|
};
|
|
4851
5028
|
export type CreateConnectionErrors = {
|
|
@@ -4898,7 +5075,13 @@ export type DeleteConnectionData = {
|
|
|
4898
5075
|
*/
|
|
4899
5076
|
connection_id: string;
|
|
4900
5077
|
};
|
|
4901
|
-
query?:
|
|
5078
|
+
query?: {
|
|
5079
|
+
/**
|
|
5080
|
+
* Token
|
|
5081
|
+
* JWT token for SSE authentication
|
|
5082
|
+
*/
|
|
5083
|
+
token?: string | null;
|
|
5084
|
+
};
|
|
4902
5085
|
url: '/v1/{graph_id}/connections/{connection_id}';
|
|
4903
5086
|
};
|
|
4904
5087
|
export type DeleteConnectionErrors = {
|
|
@@ -4947,7 +5130,13 @@ export type GetConnectionData = {
|
|
|
4947
5130
|
*/
|
|
4948
5131
|
connection_id: string;
|
|
4949
5132
|
};
|
|
4950
|
-
query?:
|
|
5133
|
+
query?: {
|
|
5134
|
+
/**
|
|
5135
|
+
* Token
|
|
5136
|
+
* JWT token for SSE authentication
|
|
5137
|
+
*/
|
|
5138
|
+
token?: string | null;
|
|
5139
|
+
};
|
|
4951
5140
|
url: '/v1/{graph_id}/connections/{connection_id}';
|
|
4952
5141
|
};
|
|
4953
5142
|
export type GetConnectionErrors = {
|
|
@@ -4990,7 +5179,13 @@ export type AutoSelectAgentData = {
|
|
|
4990
5179
|
*/
|
|
4991
5180
|
graph_id: string;
|
|
4992
5181
|
};
|
|
4993
|
-
query?:
|
|
5182
|
+
query?: {
|
|
5183
|
+
/**
|
|
5184
|
+
* Token
|
|
5185
|
+
* JWT token for SSE authentication
|
|
5186
|
+
*/
|
|
5187
|
+
token?: string | null;
|
|
5188
|
+
};
|
|
4994
5189
|
url: '/v1/{graph_id}/agent';
|
|
4995
5190
|
};
|
|
4996
5191
|
export type AutoSelectAgentErrors = {
|
|
@@ -5041,7 +5236,13 @@ export type ExecuteSpecificAgentData = {
|
|
|
5041
5236
|
*/
|
|
5042
5237
|
graph_id: string;
|
|
5043
5238
|
};
|
|
5044
|
-
query?:
|
|
5239
|
+
query?: {
|
|
5240
|
+
/**
|
|
5241
|
+
* Token
|
|
5242
|
+
* JWT token for SSE authentication
|
|
5243
|
+
*/
|
|
5244
|
+
token?: string | null;
|
|
5245
|
+
};
|
|
5045
5246
|
url: '/v1/{graph_id}/agent/{agent_type}';
|
|
5046
5247
|
};
|
|
5047
5248
|
export type ExecuteSpecificAgentErrors = {
|
|
@@ -5092,7 +5293,13 @@ export type BatchProcessQueriesData = {
|
|
|
5092
5293
|
*/
|
|
5093
5294
|
graph_id: string;
|
|
5094
5295
|
};
|
|
5095
|
-
query?:
|
|
5296
|
+
query?: {
|
|
5297
|
+
/**
|
|
5298
|
+
* Token
|
|
5299
|
+
* JWT token for SSE authentication
|
|
5300
|
+
*/
|
|
5301
|
+
token?: string | null;
|
|
5302
|
+
};
|
|
5096
5303
|
url: '/v1/{graph_id}/agent/batch';
|
|
5097
5304
|
};
|
|
5098
5305
|
export type BatchProcessQueriesErrors = {
|
|
@@ -5142,6 +5349,11 @@ export type ListAgentsData = {
|
|
|
5142
5349
|
* Filter by capability (e.g., 'financial_analysis', 'rag_search')
|
|
5143
5350
|
*/
|
|
5144
5351
|
capability?: string | null;
|
|
5352
|
+
/**
|
|
5353
|
+
* Token
|
|
5354
|
+
* JWT token for SSE authentication
|
|
5355
|
+
*/
|
|
5356
|
+
token?: string | null;
|
|
5145
5357
|
};
|
|
5146
5358
|
url: '/v1/{graph_id}/agent/list';
|
|
5147
5359
|
};
|
|
@@ -5183,7 +5395,13 @@ export type GetAgentMetadataData = {
|
|
|
5183
5395
|
*/
|
|
5184
5396
|
agent_type: string;
|
|
5185
5397
|
};
|
|
5186
|
-
query?:
|
|
5398
|
+
query?: {
|
|
5399
|
+
/**
|
|
5400
|
+
* Token
|
|
5401
|
+
* JWT token for SSE authentication
|
|
5402
|
+
*/
|
|
5403
|
+
token?: string | null;
|
|
5404
|
+
};
|
|
5187
5405
|
url: '/v1/{graph_id}/agent/{agent_type}/metadata';
|
|
5188
5406
|
};
|
|
5189
5407
|
export type GetAgentMetadataErrors = {
|
|
@@ -5219,7 +5437,13 @@ export type RecommendAgentData = {
|
|
|
5219
5437
|
*/
|
|
5220
5438
|
graph_id: string;
|
|
5221
5439
|
};
|
|
5222
|
-
query?:
|
|
5440
|
+
query?: {
|
|
5441
|
+
/**
|
|
5442
|
+
* Token
|
|
5443
|
+
* JWT token for SSE authentication
|
|
5444
|
+
*/
|
|
5445
|
+
token?: string | null;
|
|
5446
|
+
};
|
|
5223
5447
|
url: '/v1/{graph_id}/agent/recommend';
|
|
5224
5448
|
};
|
|
5225
5449
|
export type RecommendAgentErrors = {
|
|
@@ -5255,7 +5479,13 @@ export type ListMcpToolsData = {
|
|
|
5255
5479
|
*/
|
|
5256
5480
|
graph_id: string;
|
|
5257
5481
|
};
|
|
5258
|
-
query?:
|
|
5482
|
+
query?: {
|
|
5483
|
+
/**
|
|
5484
|
+
* Token
|
|
5485
|
+
* JWT token for SSE authentication
|
|
5486
|
+
*/
|
|
5487
|
+
token?: string | null;
|
|
5488
|
+
};
|
|
5259
5489
|
url: '/v1/{graph_id}/mcp/tools';
|
|
5260
5490
|
};
|
|
5261
5491
|
export type ListMcpToolsErrors = {
|
|
@@ -5306,6 +5536,11 @@ export type CallMcpToolData = {
|
|
|
5306
5536
|
* Enable test mode for debugging
|
|
5307
5537
|
*/
|
|
5308
5538
|
test_mode?: boolean;
|
|
5539
|
+
/**
|
|
5540
|
+
* Token
|
|
5541
|
+
* JWT token for SSE authentication
|
|
5542
|
+
*/
|
|
5543
|
+
token?: string | null;
|
|
5309
5544
|
};
|
|
5310
5545
|
url: '/v1/{graph_id}/mcp/call-tool';
|
|
5311
5546
|
};
|
|
@@ -5380,6 +5615,11 @@ export type ListBackupsData = {
|
|
|
5380
5615
|
* Number of backups to skip
|
|
5381
5616
|
*/
|
|
5382
5617
|
offset?: number;
|
|
5618
|
+
/**
|
|
5619
|
+
* Token
|
|
5620
|
+
* JWT token for SSE authentication
|
|
5621
|
+
*/
|
|
5622
|
+
token?: string | null;
|
|
5383
5623
|
};
|
|
5384
5624
|
url: '/v1/{graph_id}/backups';
|
|
5385
5625
|
};
|
|
@@ -5412,7 +5652,13 @@ export type CreateBackupData = {
|
|
|
5412
5652
|
*/
|
|
5413
5653
|
graph_id: string;
|
|
5414
5654
|
};
|
|
5415
|
-
query?:
|
|
5655
|
+
query?: {
|
|
5656
|
+
/**
|
|
5657
|
+
* Token
|
|
5658
|
+
* JWT token for SSE authentication
|
|
5659
|
+
*/
|
|
5660
|
+
token?: string | null;
|
|
5661
|
+
};
|
|
5416
5662
|
url: '/v1/{graph_id}/backups';
|
|
5417
5663
|
};
|
|
5418
5664
|
export type CreateBackupErrors = {
|
|
@@ -5464,7 +5710,13 @@ export type ExportBackupData = {
|
|
|
5464
5710
|
*/
|
|
5465
5711
|
graph_id: string;
|
|
5466
5712
|
};
|
|
5467
|
-
query?:
|
|
5713
|
+
query?: {
|
|
5714
|
+
/**
|
|
5715
|
+
* Token
|
|
5716
|
+
* JWT token for SSE authentication
|
|
5717
|
+
*/
|
|
5718
|
+
token?: string | null;
|
|
5719
|
+
};
|
|
5468
5720
|
url: '/v1/{graph_id}/backups/{backup_id}/export';
|
|
5469
5721
|
};
|
|
5470
5722
|
export type ExportBackupErrors = {
|
|
@@ -5514,6 +5766,11 @@ export type GetBackupDownloadUrlData = {
|
|
|
5514
5766
|
* URL expiration time in seconds
|
|
5515
5767
|
*/
|
|
5516
5768
|
expires_in?: number;
|
|
5769
|
+
/**
|
|
5770
|
+
* Token
|
|
5771
|
+
* JWT token for SSE authentication
|
|
5772
|
+
*/
|
|
5773
|
+
token?: string | null;
|
|
5517
5774
|
};
|
|
5518
5775
|
url: '/v1/{graph_id}/backups/{backup_id}/download';
|
|
5519
5776
|
};
|
|
@@ -5561,7 +5818,13 @@ export type RestoreBackupData = {
|
|
|
5561
5818
|
*/
|
|
5562
5819
|
graph_id: string;
|
|
5563
5820
|
};
|
|
5564
|
-
query?:
|
|
5821
|
+
query?: {
|
|
5822
|
+
/**
|
|
5823
|
+
* Token
|
|
5824
|
+
* JWT token for SSE authentication
|
|
5825
|
+
*/
|
|
5826
|
+
token?: string | null;
|
|
5827
|
+
};
|
|
5565
5828
|
url: '/v1/{graph_id}/backups/restore';
|
|
5566
5829
|
};
|
|
5567
5830
|
export type RestoreBackupErrors = {
|
|
@@ -5608,7 +5871,13 @@ export type GetBackupStatsData = {
|
|
|
5608
5871
|
*/
|
|
5609
5872
|
graph_id: string;
|
|
5610
5873
|
};
|
|
5611
|
-
query?:
|
|
5874
|
+
query?: {
|
|
5875
|
+
/**
|
|
5876
|
+
* Token
|
|
5877
|
+
* JWT token for SSE authentication
|
|
5878
|
+
*/
|
|
5879
|
+
token?: string | null;
|
|
5880
|
+
};
|
|
5612
5881
|
url: '/v1/{graph_id}/backups/stats';
|
|
5613
5882
|
};
|
|
5614
5883
|
export type GetBackupStatsErrors = {
|
|
@@ -5640,7 +5909,13 @@ export type GetGraphMetricsData = {
|
|
|
5640
5909
|
*/
|
|
5641
5910
|
graph_id: string;
|
|
5642
5911
|
};
|
|
5643
|
-
query?:
|
|
5912
|
+
query?: {
|
|
5913
|
+
/**
|
|
5914
|
+
* Token
|
|
5915
|
+
* JWT token for SSE authentication
|
|
5916
|
+
*/
|
|
5917
|
+
token?: string | null;
|
|
5918
|
+
};
|
|
5644
5919
|
url: '/v1/{graph_id}/analytics';
|
|
5645
5920
|
};
|
|
5646
5921
|
export type GetGraphMetricsErrors = {
|
|
@@ -5690,6 +5965,11 @@ export type GetGraphUsageStatsData = {
|
|
|
5690
5965
|
* Include detailed metrics (may be slower)
|
|
5691
5966
|
*/
|
|
5692
5967
|
include_details?: boolean;
|
|
5968
|
+
/**
|
|
5969
|
+
* Token
|
|
5970
|
+
* JWT token for SSE authentication
|
|
5971
|
+
*/
|
|
5972
|
+
token?: string | null;
|
|
5693
5973
|
};
|
|
5694
5974
|
url: '/v1/{graph_id}/analytics/usage';
|
|
5695
5975
|
};
|
|
@@ -5746,6 +6026,11 @@ export type ExecuteCypherQueryData = {
|
|
|
5746
6026
|
* Enable test mode for better debugging
|
|
5747
6027
|
*/
|
|
5748
6028
|
test_mode?: boolean;
|
|
6029
|
+
/**
|
|
6030
|
+
* Token
|
|
6031
|
+
* JWT token for SSE authentication
|
|
6032
|
+
*/
|
|
6033
|
+
token?: string | null;
|
|
5749
6034
|
};
|
|
5750
6035
|
url: '/v1/{graph_id}/query';
|
|
5751
6036
|
};
|
|
@@ -5805,7 +6090,13 @@ export type GetGraphSchemaInfoData = {
|
|
|
5805
6090
|
*/
|
|
5806
6091
|
graph_id: string;
|
|
5807
6092
|
};
|
|
5808
|
-
query?:
|
|
6093
|
+
query?: {
|
|
6094
|
+
/**
|
|
6095
|
+
* Token
|
|
6096
|
+
* JWT token for SSE authentication
|
|
6097
|
+
*/
|
|
6098
|
+
token?: string | null;
|
|
6099
|
+
};
|
|
5809
6100
|
url: '/v1/{graph_id}/schema/info';
|
|
5810
6101
|
};
|
|
5811
6102
|
export type GetGraphSchemaInfoErrors = {
|
|
@@ -5851,7 +6142,13 @@ export type ValidateSchemaData = {
|
|
|
5851
6142
|
*/
|
|
5852
6143
|
graph_id: string;
|
|
5853
6144
|
};
|
|
5854
|
-
query?:
|
|
6145
|
+
query?: {
|
|
6146
|
+
/**
|
|
6147
|
+
* Token
|
|
6148
|
+
* JWT token for SSE authentication
|
|
6149
|
+
*/
|
|
6150
|
+
token?: string | null;
|
|
6151
|
+
};
|
|
5855
6152
|
url: '/v1/{graph_id}/schema/validate';
|
|
5856
6153
|
};
|
|
5857
6154
|
export type ValidateSchemaErrors = {
|
|
@@ -5906,6 +6203,11 @@ export type ExportGraphSchemaData = {
|
|
|
5906
6203
|
* Include statistics about actual data in the graph
|
|
5907
6204
|
*/
|
|
5908
6205
|
include_data_stats?: boolean;
|
|
6206
|
+
/**
|
|
6207
|
+
* Token
|
|
6208
|
+
* JWT token for SSE authentication
|
|
6209
|
+
*/
|
|
6210
|
+
token?: string | null;
|
|
5909
6211
|
};
|
|
5910
6212
|
url: '/v1/{graph_id}/schema/export';
|
|
5911
6213
|
};
|
|
@@ -5938,7 +6240,13 @@ export type ListSchemaExtensionsData = {
|
|
|
5938
6240
|
*/
|
|
5939
6241
|
graph_id: string;
|
|
5940
6242
|
};
|
|
5941
|
-
query?:
|
|
6243
|
+
query?: {
|
|
6244
|
+
/**
|
|
6245
|
+
* Token
|
|
6246
|
+
* JWT token for SSE authentication
|
|
6247
|
+
*/
|
|
6248
|
+
token?: string | null;
|
|
6249
|
+
};
|
|
5942
6250
|
url: '/v1/{graph_id}/schema/extensions';
|
|
5943
6251
|
};
|
|
5944
6252
|
export type ListSchemaExtensionsErrors = {
|
|
@@ -5973,7 +6281,13 @@ export type GetCurrentGraphBillData = {
|
|
|
5973
6281
|
*/
|
|
5974
6282
|
graph_id: string;
|
|
5975
6283
|
};
|
|
5976
|
-
query?:
|
|
6284
|
+
query?: {
|
|
6285
|
+
/**
|
|
6286
|
+
* Token
|
|
6287
|
+
* JWT token for SSE authentication
|
|
6288
|
+
*/
|
|
6289
|
+
token?: string | null;
|
|
6290
|
+
};
|
|
5977
6291
|
url: '/v1/{graph_id}/billing/current';
|
|
5978
6292
|
};
|
|
5979
6293
|
export type GetCurrentGraphBillErrors = {
|
|
@@ -6031,6 +6345,11 @@ export type GetGraphUsageDetailsData = {
|
|
|
6031
6345
|
* Month (defaults to current)
|
|
6032
6346
|
*/
|
|
6033
6347
|
month?: number | null;
|
|
6348
|
+
/**
|
|
6349
|
+
* Token
|
|
6350
|
+
* JWT token for SSE authentication
|
|
6351
|
+
*/
|
|
6352
|
+
token?: string | null;
|
|
6034
6353
|
};
|
|
6035
6354
|
url: '/v1/{graph_id}/billing/usage';
|
|
6036
6355
|
};
|
|
@@ -6088,6 +6407,11 @@ export type GetGraphBillingHistoryData = {
|
|
|
6088
6407
|
* Number of months to retrieve (1-24)
|
|
6089
6408
|
*/
|
|
6090
6409
|
months?: number;
|
|
6410
|
+
/**
|
|
6411
|
+
* Token
|
|
6412
|
+
* JWT token for SSE authentication
|
|
6413
|
+
*/
|
|
6414
|
+
token?: string | null;
|
|
6091
6415
|
};
|
|
6092
6416
|
url: '/v1/{graph_id}/billing/history';
|
|
6093
6417
|
};
|
|
@@ -6145,7 +6469,13 @@ export type GetGraphMonthlyBillData = {
|
|
|
6145
6469
|
*/
|
|
6146
6470
|
graph_id: string;
|
|
6147
6471
|
};
|
|
6148
|
-
query?:
|
|
6472
|
+
query?: {
|
|
6473
|
+
/**
|
|
6474
|
+
* Token
|
|
6475
|
+
* JWT token for SSE authentication
|
|
6476
|
+
*/
|
|
6477
|
+
token?: string | null;
|
|
6478
|
+
};
|
|
6149
6479
|
url: '/v1/{graph_id}/billing/history/{year}/{month}';
|
|
6150
6480
|
};
|
|
6151
6481
|
export type GetGraphMonthlyBillErrors = {
|
|
@@ -6196,7 +6526,13 @@ export type GetCreditSummaryData = {
|
|
|
6196
6526
|
*/
|
|
6197
6527
|
graph_id: string;
|
|
6198
6528
|
};
|
|
6199
|
-
query?:
|
|
6529
|
+
query?: {
|
|
6530
|
+
/**
|
|
6531
|
+
* Token
|
|
6532
|
+
* JWT token for SSE authentication
|
|
6533
|
+
*/
|
|
6534
|
+
token?: string | null;
|
|
6535
|
+
};
|
|
6200
6536
|
url: '/v1/{graph_id}/credits/summary';
|
|
6201
6537
|
};
|
|
6202
6538
|
export type GetCreditSummaryErrors = {
|
|
@@ -6271,6 +6607,11 @@ export type ListCreditTransactionsData = {
|
|
|
6271
6607
|
* Number of transactions to skip
|
|
6272
6608
|
*/
|
|
6273
6609
|
offset?: number;
|
|
6610
|
+
/**
|
|
6611
|
+
* Token
|
|
6612
|
+
* JWT token for SSE authentication
|
|
6613
|
+
*/
|
|
6614
|
+
token?: string | null;
|
|
6274
6615
|
};
|
|
6275
6616
|
url: '/v1/{graph_id}/credits/transactions';
|
|
6276
6617
|
};
|
|
@@ -6326,6 +6667,11 @@ export type CheckCreditBalanceData = {
|
|
|
6326
6667
|
* Custom base cost (uses default if not provided)
|
|
6327
6668
|
*/
|
|
6328
6669
|
base_cost?: number | string | null;
|
|
6670
|
+
/**
|
|
6671
|
+
* Token
|
|
6672
|
+
* JWT token for SSE authentication
|
|
6673
|
+
*/
|
|
6674
|
+
token?: string | null;
|
|
6329
6675
|
};
|
|
6330
6676
|
url: '/v1/{graph_id}/credits/balance/check';
|
|
6331
6677
|
};
|
|
@@ -6379,6 +6725,11 @@ export type GetStorageUsageData = {
|
|
|
6379
6725
|
* Number of days of history to return
|
|
6380
6726
|
*/
|
|
6381
6727
|
days?: number;
|
|
6728
|
+
/**
|
|
6729
|
+
* Token
|
|
6730
|
+
* JWT token for SSE authentication
|
|
6731
|
+
*/
|
|
6732
|
+
token?: string | null;
|
|
6382
6733
|
};
|
|
6383
6734
|
url: '/v1/{graph_id}/credits/storage/usage';
|
|
6384
6735
|
};
|
|
@@ -6422,7 +6773,13 @@ export type CheckStorageLimitsData = {
|
|
|
6422
6773
|
*/
|
|
6423
6774
|
graph_id: string;
|
|
6424
6775
|
};
|
|
6425
|
-
query?:
|
|
6776
|
+
query?: {
|
|
6777
|
+
/**
|
|
6778
|
+
* Token
|
|
6779
|
+
* JWT token for SSE authentication
|
|
6780
|
+
*/
|
|
6781
|
+
token?: string | null;
|
|
6782
|
+
};
|
|
6426
6783
|
url: '/v1/{graph_id}/credits/storage/limits';
|
|
6427
6784
|
};
|
|
6428
6785
|
export type CheckStorageLimitsErrors = {
|
|
@@ -6466,7 +6823,13 @@ export type GetDatabaseHealthData = {
|
|
|
6466
6823
|
*/
|
|
6467
6824
|
graph_id: string;
|
|
6468
6825
|
};
|
|
6469
|
-
query?:
|
|
6826
|
+
query?: {
|
|
6827
|
+
/**
|
|
6828
|
+
* Token
|
|
6829
|
+
* JWT token for SSE authentication
|
|
6830
|
+
*/
|
|
6831
|
+
token?: string | null;
|
|
6832
|
+
};
|
|
6470
6833
|
url: '/v1/{graph_id}/health';
|
|
6471
6834
|
};
|
|
6472
6835
|
export type GetDatabaseHealthErrors = {
|
|
@@ -6510,7 +6873,13 @@ export type GetDatabaseInfoData = {
|
|
|
6510
6873
|
*/
|
|
6511
6874
|
graph_id: string;
|
|
6512
6875
|
};
|
|
6513
|
-
query?:
|
|
6876
|
+
query?: {
|
|
6877
|
+
/**
|
|
6878
|
+
* Token
|
|
6879
|
+
* JWT token for SSE authentication
|
|
6880
|
+
*/
|
|
6881
|
+
token?: string | null;
|
|
6882
|
+
};
|
|
6514
6883
|
url: '/v1/{graph_id}/info';
|
|
6515
6884
|
};
|
|
6516
6885
|
export type GetDatabaseInfoErrors = {
|
|
@@ -6554,7 +6923,13 @@ export type GetGraphLimitsData = {
|
|
|
6554
6923
|
*/
|
|
6555
6924
|
graph_id: string;
|
|
6556
6925
|
};
|
|
6557
|
-
query?:
|
|
6926
|
+
query?: {
|
|
6927
|
+
/**
|
|
6928
|
+
* Token
|
|
6929
|
+
* JWT token for SSE authentication
|
|
6930
|
+
*/
|
|
6931
|
+
token?: string | null;
|
|
6932
|
+
};
|
|
6558
6933
|
url: '/v1/{graph_id}/limits';
|
|
6559
6934
|
};
|
|
6560
6935
|
export type GetGraphLimitsErrors = {
|
|
@@ -6601,7 +6976,13 @@ export type ListSubgraphsData = {
|
|
|
6601
6976
|
*/
|
|
6602
6977
|
graph_id: string;
|
|
6603
6978
|
};
|
|
6604
|
-
query?:
|
|
6979
|
+
query?: {
|
|
6980
|
+
/**
|
|
6981
|
+
* Token
|
|
6982
|
+
* JWT token for SSE authentication
|
|
6983
|
+
*/
|
|
6984
|
+
token?: string | null;
|
|
6985
|
+
};
|
|
6605
6986
|
url: '/v1/{graph_id}/subgraphs';
|
|
6606
6987
|
};
|
|
6607
6988
|
export type ListSubgraphsErrors = {
|
|
@@ -6633,7 +7014,13 @@ export type CreateSubgraphData = {
|
|
|
6633
7014
|
*/
|
|
6634
7015
|
graph_id: string;
|
|
6635
7016
|
};
|
|
6636
|
-
query?:
|
|
7017
|
+
query?: {
|
|
7018
|
+
/**
|
|
7019
|
+
* Token
|
|
7020
|
+
* JWT token for SSE authentication
|
|
7021
|
+
*/
|
|
7022
|
+
token?: string | null;
|
|
7023
|
+
};
|
|
6637
7024
|
url: '/v1/{graph_id}/subgraphs';
|
|
6638
7025
|
};
|
|
6639
7026
|
export type CreateSubgraphErrors = {
|
|
@@ -6670,7 +7057,13 @@ export type DeleteSubgraphData = {
|
|
|
6670
7057
|
*/
|
|
6671
7058
|
subgraph_id: string;
|
|
6672
7059
|
};
|
|
6673
|
-
query?:
|
|
7060
|
+
query?: {
|
|
7061
|
+
/**
|
|
7062
|
+
* Token
|
|
7063
|
+
* JWT token for SSE authentication
|
|
7064
|
+
*/
|
|
7065
|
+
token?: string | null;
|
|
7066
|
+
};
|
|
6674
7067
|
url: '/v1/{graph_id}/subgraphs/{subgraph_id}';
|
|
6675
7068
|
};
|
|
6676
7069
|
export type DeleteSubgraphErrors = {
|
|
@@ -6731,7 +7124,13 @@ export type GetSubgraphInfoData = {
|
|
|
6731
7124
|
*/
|
|
6732
7125
|
subgraph_id: string;
|
|
6733
7126
|
};
|
|
6734
|
-
query?:
|
|
7127
|
+
query?: {
|
|
7128
|
+
/**
|
|
7129
|
+
* Token
|
|
7130
|
+
* JWT token for SSE authentication
|
|
7131
|
+
*/
|
|
7132
|
+
token?: string | null;
|
|
7133
|
+
};
|
|
6735
7134
|
url: '/v1/{graph_id}/subgraphs/{subgraph_id}/info';
|
|
6736
7135
|
};
|
|
6737
7136
|
export type GetSubgraphInfoErrors = {
|
|
@@ -6783,7 +7182,13 @@ export type GetSubgraphQuotaData = {
|
|
|
6783
7182
|
*/
|
|
6784
7183
|
graph_id: string;
|
|
6785
7184
|
};
|
|
6786
|
-
query?:
|
|
7185
|
+
query?: {
|
|
7186
|
+
/**
|
|
7187
|
+
* Token
|
|
7188
|
+
* JWT token for SSE authentication
|
|
7189
|
+
*/
|
|
7190
|
+
token?: string | null;
|
|
7191
|
+
};
|
|
6787
7192
|
url: '/v1/{graph_id}/subgraphs/quota';
|
|
6788
7193
|
};
|
|
6789
7194
|
export type GetSubgraphQuotaErrors = {
|
|
@@ -6834,7 +7239,13 @@ export type CopyDataToGraphData = {
|
|
|
6834
7239
|
*/
|
|
6835
7240
|
graph_id: string;
|
|
6836
7241
|
};
|
|
6837
|
-
query?:
|
|
7242
|
+
query?: {
|
|
7243
|
+
/**
|
|
7244
|
+
* Token
|
|
7245
|
+
* JWT token for SSE authentication
|
|
7246
|
+
*/
|
|
7247
|
+
token?: string | null;
|
|
7248
|
+
};
|
|
6838
7249
|
url: '/v1/{graph_id}/copy';
|
|
6839
7250
|
};
|
|
6840
7251
|
export type CopyDataToGraphErrors = {
|
|
@@ -6888,7 +7299,13 @@ export type CreateGraphData = {
|
|
|
6888
7299
|
authorization?: string | null;
|
|
6889
7300
|
};
|
|
6890
7301
|
path?: never;
|
|
6891
|
-
query?:
|
|
7302
|
+
query?: {
|
|
7303
|
+
/**
|
|
7304
|
+
* Token
|
|
7305
|
+
* JWT token for SSE authentication
|
|
7306
|
+
*/
|
|
7307
|
+
token?: string | null;
|
|
7308
|
+
};
|
|
6892
7309
|
url: '/v1/create/graph';
|
|
6893
7310
|
};
|
|
6894
7311
|
export type CreateGraphErrors = {
|
|
@@ -6957,6 +7374,11 @@ export type StreamOperationEventsData = {
|
|
|
6957
7374
|
* Start streaming from this sequence number (0 = from beginning)
|
|
6958
7375
|
*/
|
|
6959
7376
|
from_sequence?: number;
|
|
7377
|
+
/**
|
|
7378
|
+
* Token
|
|
7379
|
+
* JWT token for SSE authentication
|
|
7380
|
+
*/
|
|
7381
|
+
token?: string | null;
|
|
6960
7382
|
};
|
|
6961
7383
|
url: '/v1/operations/{operation_id}/stream';
|
|
6962
7384
|
};
|
|
@@ -7000,7 +7422,13 @@ export type GetOperationStatusData = {
|
|
|
7000
7422
|
*/
|
|
7001
7423
|
operation_id: string;
|
|
7002
7424
|
};
|
|
7003
|
-
query?:
|
|
7425
|
+
query?: {
|
|
7426
|
+
/**
|
|
7427
|
+
* Token
|
|
7428
|
+
* JWT token for SSE authentication
|
|
7429
|
+
*/
|
|
7430
|
+
token?: string | null;
|
|
7431
|
+
};
|
|
7004
7432
|
url: '/v1/operations/{operation_id}/status';
|
|
7005
7433
|
};
|
|
7006
7434
|
export type GetOperationStatusErrors = {
|
|
@@ -7047,7 +7475,13 @@ export type CancelOperationData = {
|
|
|
7047
7475
|
*/
|
|
7048
7476
|
operation_id: string;
|
|
7049
7477
|
};
|
|
7050
|
-
query?:
|
|
7478
|
+
query?: {
|
|
7479
|
+
/**
|
|
7480
|
+
* Token
|
|
7481
|
+
* JWT token for SSE authentication
|
|
7482
|
+
*/
|
|
7483
|
+
token?: string | null;
|
|
7484
|
+
};
|
|
7051
7485
|
url: '/v1/operations/{operation_id}';
|
|
7052
7486
|
};
|
|
7053
7487
|
export type CancelOperationErrors = {
|