@robosystems/client 0.2.1 → 0.2.3

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/types.gen.ts CHANGED
@@ -1005,6 +1005,11 @@ export type CreateGraphRequest = {
1005
1005
  * Optional initial entity to create in the graph. If provided, creates a entity-focused graph.
1006
1006
  */
1007
1007
  initial_entity?: InitialEntityData | null;
1008
+ /**
1009
+ * Create Entity
1010
+ * Whether to create the entity node and upload initial data. Only applies when initial_entity is provided. Set to False to create graph without populating entity data (useful for file-based ingestion workflows).
1011
+ */
1012
+ create_entity?: boolean;
1008
1013
  /**
1009
1014
  * Tags
1010
1015
  * Optional tags for organization
@@ -1226,12 +1231,12 @@ export type CustomSchemaDefinition = {
1226
1231
  export type CypherQueryRequest = {
1227
1232
  /**
1228
1233
  * Query
1229
- * The Cypher query to execute
1234
+ * The Cypher query to execute. Use parameters ($param_name) for all dynamic values to prevent injection attacks.
1230
1235
  */
1231
1236
  query: string;
1232
1237
  /**
1233
1238
  * Parameters
1234
- * Optional parameters for the Cypher query
1239
+ * Query parameters for safe value substitution. ALWAYS use parameters instead of string interpolation.
1235
1240
  */
1236
1241
  parameters?: {
1237
1242
  [key: string]: unknown;
@@ -1382,6 +1387,32 @@ export type DatabaseInfoResponse = {
1382
1387
  last_backup_date?: string | null;
1383
1388
  };
1384
1389
 
1390
+ /**
1391
+ * DeleteFileResponse
1392
+ */
1393
+ export type DeleteFileResponse = {
1394
+ /**
1395
+ * Status
1396
+ * Deletion status
1397
+ */
1398
+ status: string;
1399
+ /**
1400
+ * File Id
1401
+ * Deleted file ID
1402
+ */
1403
+ file_id: string;
1404
+ /**
1405
+ * File Name
1406
+ * Deleted file name
1407
+ */
1408
+ file_name: string;
1409
+ /**
1410
+ * Message
1411
+ * Operation message
1412
+ */
1413
+ message: string;
1414
+ };
1415
+
1385
1416
  /**
1386
1417
  * DeleteSubgraphRequest
1387
1418
  * Request model for deleting a subgraph.
@@ -1583,19 +1614,70 @@ export type ExchangeTokenRequest = {
1583
1614
  };
1584
1615
 
1585
1616
  /**
1586
- * FileUpdateRequest
1617
+ * FileInfo
1587
1618
  */
1588
- export type FileUpdateRequest = {
1619
+ export type FileInfo = {
1620
+ /**
1621
+ * File Id
1622
+ * Unique file identifier
1623
+ */
1624
+ file_id: string;
1625
+ /**
1626
+ * File Name
1627
+ * Original file name
1628
+ */
1629
+ file_name: string;
1630
+ /**
1631
+ * File Format
1632
+ * File format (parquet, csv, etc.)
1633
+ */
1634
+ file_format: string;
1589
1635
  /**
1590
- * File Size Bytes
1591
- * Actual uploaded file size in bytes
1636
+ * Size Bytes
1637
+ * File size in bytes
1592
1638
  */
1593
- file_size_bytes: number;
1639
+ size_bytes: number;
1594
1640
  /**
1595
1641
  * Row Count
1596
- * Number of rows in the file
1642
+ * Estimated row count
1597
1643
  */
1598
1644
  row_count?: number | null;
1645
+ /**
1646
+ * Upload Status
1647
+ * Current upload status
1648
+ */
1649
+ upload_status: string;
1650
+ /**
1651
+ * Upload Method
1652
+ * Upload method used
1653
+ */
1654
+ upload_method: string;
1655
+ /**
1656
+ * Created At
1657
+ * File creation timestamp
1658
+ */
1659
+ created_at?: string | null;
1660
+ /**
1661
+ * Uploaded At
1662
+ * File upload completion timestamp
1663
+ */
1664
+ uploaded_at?: string | null;
1665
+ /**
1666
+ * S3 Key
1667
+ * S3 object key
1668
+ */
1669
+ s3_key: string;
1670
+ };
1671
+
1672
+ /**
1673
+ * FileStatusUpdate
1674
+ */
1675
+ export type FileStatusUpdate = {
1676
+ /**
1677
+ * Status
1678
+ * File status: 'uploaded' (ready for ingest), 'disabled' (exclude from ingest), 'archived' (soft deleted)
1679
+ */
1680
+ status: string;
1599
1681
  };
1600
1682
 
1601
1683
  /**
@@ -1652,6 +1734,77 @@ export type ForgotPasswordRequest = {
1652
1734
  email: string;
1653
1735
  };
1654
1736
 
1737
+ /**
1738
+ * GetFileInfoResponse
1739
+ */
1740
+ export type GetFileInfoResponse = {
1741
+ /**
1742
+ * File Id
1743
+ * Unique file identifier
1744
+ */
1745
+ file_id: string;
1746
+ /**
1747
+ * Graph Id
1748
+ * Graph database identifier
1749
+ */
1750
+ graph_id: string;
1751
+ /**
1752
+ * Table Id
1753
+ * Table identifier
1754
+ */
1755
+ table_id: string;
1756
+ /**
1757
+ * Table Name
1758
+ * Table name
1759
+ */
1760
+ table_name?: string | null;
1761
+ /**
1762
+ * File Name
1763
+ * Original file name
1764
+ */
1765
+ file_name: string;
1766
+ /**
1767
+ * File Format
1768
+ * File format (parquet, csv, etc.)
1769
+ */
1770
+ file_format: string;
1771
+ /**
1772
+ * Size Bytes
1773
+ * File size in bytes
1774
+ */
1775
+ size_bytes: number;
1776
+ /**
1777
+ * Row Count
1778
+ * Estimated row count
1779
+ */
1780
+ row_count?: number | null;
1781
+ /**
1782
+ * Upload Status
1783
+ * Current upload status
1784
+ */
1785
+ upload_status: string;
1786
+ /**
1787
+ * Upload Method
1788
+ * Upload method used
1789
+ */
1790
+ upload_method: string;
1791
+ /**
1792
+ * Created At
1793
+ * File creation timestamp
1794
+ */
1795
+ created_at?: string | null;
1796
+ /**
1797
+ * Uploaded At
1798
+ * File upload completion timestamp
1799
+ */
1800
+ uploaded_at?: string | null;
1801
+ /**
1802
+ * S3 Key
1803
+ * S3 object key
1804
+ */
1805
+ s3_key: string;
1806
+ };
1807
+
1655
1808
  /**
1656
1809
  * GraphInfo
1657
1810
  * Graph information for user.
@@ -1976,6 +2129,37 @@ export type ListSubgraphsResponse = {
1976
2129
  subgraphs: Array<SubgraphSummary>;
1977
2130
  };
1978
2131
 
2132
+ /**
2133
+ * ListTableFilesResponse
2134
+ */
2135
+ export type ListTableFilesResponse = {
2136
+ /**
2137
+ * Graph Id
2138
+ * Graph database identifier
2139
+ */
2140
+ graph_id: string;
2141
+ /**
2142
+ * Table Name
2143
+ * Table name
2144
+ */
2145
+ table_name: string;
2146
+ /**
2147
+ * Files
2148
+ * List of files in the table
2149
+ */
2150
+ files: Array<FileInfo>;
2151
+ /**
2152
+ * Total Files
2153
+ * Total number of files
2154
+ */
2155
+ total_files: number;
2156
+ /**
2157
+ * Total Size Bytes
2158
+ * Total size of all files in bytes
2159
+ */
2160
+ total_size_bytes: number;
2161
+ };
2162
+
1979
2163
  /**
1980
2164
  * LoginRequest
1981
2165
  * Login request model.
@@ -2439,7 +2623,7 @@ export type SchemaExportResponse = {
2439
2623
  graph_id: string;
2440
2624
  /**
2441
2625
  * Schema Definition
2442
- * Exported schema definition
2626
+ * Exported schema definition (format depends on 'format' parameter)
2443
2627
  */
2444
2628
  schema_definition: {
2445
2629
  [key: string]: unknown;
@@ -2456,13 +2640,35 @@ export type SchemaExportResponse = {
2456
2640
  exported_at: string;
2457
2641
  /**
2458
2642
  * Data Stats
2459
- * Data statistics if requested
2643
+ * Data statistics if requested (only when include_data_stats=true)
2460
2644
  */
2461
2645
  data_stats?: {
2462
2646
  [key: string]: unknown;
2463
2647
  } | null;
2464
2648
  };
2465
2649
 
2650
+ /**
2651
+ * SchemaInfoResponse
2652
+ * Response model for runtime schema introspection.
2653
+ *
2654
+ * This model represents the actual current state of the graph database,
2655
+ * showing what node labels, relationship types, and properties exist right now.
2656
+ */
2657
+ export type SchemaInfoResponse = {
2658
+ /**
2659
+ * Graph Id
2660
+ * Graph database identifier
2661
+ */
2662
+ graph_id: string;
2663
+ /**
2664
+ * Schema
2665
+ * Runtime schema information showing actual database structure
2666
+ */
2667
+ schema: {
2668
+ [key: string]: unknown;
2669
+ };
2670
+ };
2671
+
2466
2672
  /**
2467
2673
  * SchemaValidationRequest
2468
2674
  * Request model for schema validation.
@@ -2504,24 +2710,24 @@ export type SchemaValidationResponse = {
2504
2710
  message: string;
2505
2711
  /**
2506
2712
  * Errors
2507
- * List of validation errors
2713
+ * List of validation errors (only present when valid=false)
2508
2714
  */
2509
2715
  errors?: Array<string> | null;
2510
2716
  /**
2511
2717
  * Warnings
2512
- * List of warnings
2718
+ * List of validation warnings (schema is still valid but has potential issues)
2513
2719
  */
2514
2720
  warnings?: Array<string> | null;
2515
2721
  /**
2516
2722
  * Stats
2517
- * Schema statistics (nodes, relationships, properties)
2723
+ * Schema statistics (only present when valid=true)
2518
2724
  */
2519
2725
  stats?: {
2520
2726
  [key: string]: number;
2521
2727
  } | null;
2522
2728
  /**
2523
2729
  * Compatibility
2524
- * Compatibility check results if requested
2730
+ * Compatibility check results (only when check_compatibility specified)
2525
2731
  */
2526
2732
  compatibility?: {
2527
2733
  [key: string]: unknown;
@@ -2996,9 +3202,14 @@ export type TableListResponse = {
2996
3202
  export type TableQueryRequest = {
2997
3203
  /**
2998
3204
  * Sql
2999
- * SQL query to execute on staging tables
3205
+ * SQL query to execute on staging tables. Use ? placeholders or $param_name for dynamic values to prevent SQL injection.
3000
3206
  */
3001
3207
  sql: string;
3208
+ /**
3209
+ * Parameters
3210
+ * Query parameters for safe value substitution. ALWAYS use parameters instead of string concatenation.
3211
+ */
3212
+ parameters?: Array<unknown> | null;
3002
3213
  };
3003
3214
 
3004
3215
  /**
@@ -3475,26 +3686,11 @@ export type LoginUserResponse = LoginUserResponses[keyof LoginUserResponses];
3475
3686
 
3476
3687
  export type LogoutUserData = {
3477
3688
  body?: never;
3478
- headers?: {
3479
- /**
3480
- * Authorization
3481
- */
3482
- authorization?: string | null;
3483
- };
3484
3689
  path?: never;
3485
3690
  query?: never;
3486
3691
  url: '/v1/auth/logout';
3487
3692
  };
3488
3693
 
3489
- export type LogoutUserErrors = {
3490
- /**
3491
- * Validation Error
3492
- */
3493
- 422: HttpValidationError;
3494
- };
3495
-
3496
- export type LogoutUserError = LogoutUserErrors[keyof LogoutUserErrors];
3497
-
3498
3694
  export type LogoutUserResponses = {
3499
3695
  /**
3500
3696
  * Response Logoutuser
@@ -3509,12 +3705,6 @@ export type LogoutUserResponse = LogoutUserResponses[keyof LogoutUserResponses];
3509
3705
 
3510
3706
  export type GetCurrentAuthUserData = {
3511
3707
  body?: never;
3512
- headers?: {
3513
- /**
3514
- * Authorization
3515
- */
3516
- authorization?: string | null;
3517
- };
3518
3708
  path?: never;
3519
3709
  query?: never;
3520
3710
  url: '/v1/auth/me';
@@ -3525,10 +3715,6 @@ export type GetCurrentAuthUserErrors = {
3525
3715
  * Not authenticated
3526
3716
  */
3527
3717
  401: ErrorResponse;
3528
- /**
3529
- * Validation Error
3530
- */
3531
- 422: HttpValidationError;
3532
3718
  };
3533
3719
 
3534
3720
  export type GetCurrentAuthUserError = GetCurrentAuthUserErrors[keyof GetCurrentAuthUserErrors];
@@ -3547,12 +3733,6 @@ export type GetCurrentAuthUserResponse = GetCurrentAuthUserResponses[keyof GetCu
3547
3733
 
3548
3734
  export type RefreshAuthSessionData = {
3549
3735
  body?: never;
3550
- headers?: {
3551
- /**
3552
- * Authorization
3553
- */
3554
- authorization?: string | null;
3555
- };
3556
3736
  path?: never;
3557
3737
  query?: never;
3558
3738
  url: '/v1/auth/refresh';
@@ -3563,10 +3743,6 @@ export type RefreshAuthSessionErrors = {
3563
3743
  * Not authenticated
3564
3744
  */
3565
3745
  401: ErrorResponse;
3566
- /**
3567
- * Validation Error
3568
- */
3569
- 422: HttpValidationError;
3570
3746
  };
3571
3747
 
3572
3748
  export type RefreshAuthSessionError = RefreshAuthSessionErrors[keyof RefreshAuthSessionErrors];
@@ -3582,12 +3758,6 @@ export type RefreshAuthSessionResponse = RefreshAuthSessionResponses[keyof Refre
3582
3758
 
3583
3759
  export type ResendVerificationEmailData = {
3584
3760
  body?: never;
3585
- headers?: {
3586
- /**
3587
- * Authorization
3588
- */
3589
- authorization?: string | null;
3590
- };
3591
3761
  path?: never;
3592
3762
  query?: never;
3593
3763
  url: '/v1/auth/email/resend';
@@ -3598,10 +3768,6 @@ export type ResendVerificationEmailErrors = {
3598
3768
  * Email already verified
3599
3769
  */
3600
3770
  400: ErrorResponse;
3601
- /**
3602
- * Validation Error
3603
- */
3604
- 422: HttpValidationError;
3605
3771
  /**
3606
3772
  * Rate limit exceeded
3607
3773
  */
@@ -3790,12 +3956,6 @@ export type ResetPasswordResponse = ResetPasswordResponses[keyof ResetPasswordRe
3790
3956
 
3791
3957
  export type GenerateSsoTokenData = {
3792
3958
  body?: never;
3793
- headers?: {
3794
- /**
3795
- * Authorization
3796
- */
3797
- authorization?: string | null;
3798
- };
3799
3959
  path?: never;
3800
3960
  query?: never;
3801
3961
  url: '/v1/auth/sso-token';
@@ -3917,32 +4077,11 @@ export type GetServiceStatusResponse = GetServiceStatusResponses[keyof GetServic
3917
4077
 
3918
4078
  export type GetCurrentUserData = {
3919
4079
  body?: never;
3920
- headers?: {
3921
- /**
3922
- * Authorization
3923
- */
3924
- authorization?: string | null;
3925
- };
3926
4080
  path?: never;
3927
- query?: {
3928
- /**
3929
- * Token
3930
- * JWT token for SSE authentication
3931
- */
3932
- token?: string | null;
3933
- };
4081
+ query?: never;
3934
4082
  url: '/v1/user';
3935
4083
  };
3936
4084
 
3937
- export type GetCurrentUserErrors = {
3938
- /**
3939
- * Validation Error
3940
- */
3941
- 422: HttpValidationError;
3942
- };
3943
-
3944
- export type GetCurrentUserError = GetCurrentUserErrors[keyof GetCurrentUserErrors];
3945
-
3946
4085
  export type GetCurrentUserResponses = {
3947
4086
  /**
3948
4087
  * Successful Response
@@ -3954,20 +4093,8 @@ export type GetCurrentUserResponse = GetCurrentUserResponses[keyof GetCurrentUse
3954
4093
 
3955
4094
  export type UpdateUserData = {
3956
4095
  body: UpdateUserRequest;
3957
- headers?: {
3958
- /**
3959
- * Authorization
3960
- */
3961
- authorization?: string | null;
3962
- };
3963
4096
  path?: never;
3964
- query?: {
3965
- /**
3966
- * Token
3967
- * JWT token for SSE authentication
3968
- */
3969
- token?: string | null;
3970
- };
4097
+ query?: never;
3971
4098
  url: '/v1/user';
3972
4099
  };
3973
4100
 
@@ -3991,28 +4118,12 @@ export type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
3991
4118
 
3992
4119
  export type GetAllCreditSummariesData = {
3993
4120
  body?: never;
3994
- headers?: {
3995
- /**
3996
- * Authorization
3997
- */
3998
- authorization?: string | null;
3999
- };
4000
4121
  path?: never;
4001
- query?: {
4002
- /**
4003
- * Token
4004
- * JWT token for SSE authentication
4005
- */
4006
- token?: string | null;
4007
- };
4122
+ query?: never;
4008
4123
  url: '/v1/user/credits';
4009
4124
  };
4010
4125
 
4011
4126
  export type GetAllCreditSummariesErrors = {
4012
- /**
4013
- * Validation Error
4014
- */
4015
- 422: HttpValidationError;
4016
4127
  /**
4017
4128
  * Failed to retrieve credit summaries
4018
4129
  */
@@ -4035,20 +4146,8 @@ export type GetAllCreditSummariesResponse = GetAllCreditSummariesResponses[keyof
4035
4146
 
4036
4147
  export type UpdateUserPasswordData = {
4037
4148
  body: UpdatePasswordRequest;
4038
- headers?: {
4039
- /**
4040
- * Authorization
4041
- */
4042
- authorization?: string | null;
4043
- };
4044
4149
  path?: never;
4045
- query?: {
4046
- /**
4047
- * Token
4048
- * JWT token for SSE authentication
4049
- */
4050
- token?: string | null;
4051
- };
4150
+ query?: never;
4052
4151
  url: '/v1/user/password';
4053
4152
  };
4054
4153
 
@@ -4084,32 +4183,11 @@ export type UpdateUserPasswordResponse = UpdateUserPasswordResponses[keyof Updat
4084
4183
 
4085
4184
  export type ListUserApiKeysData = {
4086
4185
  body?: never;
4087
- headers?: {
4088
- /**
4089
- * Authorization
4090
- */
4091
- authorization?: string | null;
4092
- };
4093
4186
  path?: never;
4094
- query?: {
4095
- /**
4096
- * Token
4097
- * JWT token for SSE authentication
4098
- */
4099
- token?: string | null;
4100
- };
4187
+ query?: never;
4101
4188
  url: '/v1/user/api-keys';
4102
4189
  };
4103
4190
 
4104
- export type ListUserApiKeysErrors = {
4105
- /**
4106
- * Validation Error
4107
- */
4108
- 422: HttpValidationError;
4109
- };
4110
-
4111
- export type ListUserApiKeysError = ListUserApiKeysErrors[keyof ListUserApiKeysErrors];
4112
-
4113
4191
  export type ListUserApiKeysResponses = {
4114
4192
  /**
4115
4193
  * Successful Response
@@ -4121,20 +4199,8 @@ export type ListUserApiKeysResponse = ListUserApiKeysResponses[keyof ListUserApi
4121
4199
 
4122
4200
  export type CreateUserApiKeyData = {
4123
4201
  body: CreateApiKeyRequest;
4124
- headers?: {
4125
- /**
4126
- * Authorization
4127
- */
4128
- authorization?: string | null;
4129
- };
4130
4202
  path?: never;
4131
- query?: {
4132
- /**
4133
- * Token
4134
- * JWT token for SSE authentication
4135
- */
4136
- token?: string | null;
4137
- };
4203
+ query?: never;
4138
4204
  url: '/v1/user/api-keys';
4139
4205
  };
4140
4206
 
@@ -4158,25 +4224,13 @@ export type CreateUserApiKeyResponse = CreateUserApiKeyResponses[keyof CreateUse
4158
4224
 
4159
4225
  export type RevokeUserApiKeyData = {
4160
4226
  body?: never;
4161
- headers?: {
4162
- /**
4163
- * Authorization
4164
- */
4165
- authorization?: string | null;
4166
- };
4167
4227
  path: {
4168
4228
  /**
4169
4229
  * Api Key Id
4170
4230
  */
4171
4231
  api_key_id: string;
4172
4232
  };
4173
- query?: {
4174
- /**
4175
- * Token
4176
- * JWT token for SSE authentication
4177
- */
4178
- token?: string | null;
4179
- };
4233
+ query?: never;
4180
4234
  url: '/v1/user/api-keys/{api_key_id}';
4181
4235
  };
4182
4236
 
@@ -4208,25 +4262,13 @@ export type RevokeUserApiKeyResponse = RevokeUserApiKeyResponses[keyof RevokeUse
4208
4262
 
4209
4263
  export type UpdateUserApiKeyData = {
4210
4264
  body: UpdateApiKeyRequest;
4211
- headers?: {
4212
- /**
4213
- * Authorization
4214
- */
4215
- authorization?: string | null;
4216
- };
4217
4265
  path: {
4218
4266
  /**
4219
4267
  * Api Key Id
4220
4268
  */
4221
4269
  api_key_id: string;
4222
4270
  };
4223
- query?: {
4224
- /**
4225
- * Token
4226
- * JWT token for SSE authentication
4227
- */
4228
- token?: string | null;
4229
- };
4271
+ query?: never;
4230
4272
  url: '/v1/user/api-keys/{api_key_id}';
4231
4273
  };
4232
4274
 
@@ -4250,20 +4292,8 @@ export type UpdateUserApiKeyResponse = UpdateUserApiKeyResponses[keyof UpdateUse
4250
4292
 
4251
4293
  export type GetUserLimitsData = {
4252
4294
  body?: never;
4253
- headers?: {
4254
- /**
4255
- * Authorization
4256
- */
4257
- authorization?: string | null;
4258
- };
4259
4295
  path?: never;
4260
- query?: {
4261
- /**
4262
- * Token
4263
- * JWT token for SSE authentication
4264
- */
4265
- token?: string | null;
4266
- };
4296
+ query?: never;
4267
4297
  url: '/v1/user/limits';
4268
4298
  };
4269
4299
 
@@ -4272,14 +4302,8 @@ export type GetUserLimitsErrors = {
4272
4302
  * User limits not found
4273
4303
  */
4274
4304
  404: unknown;
4275
- /**
4276
- * Validation Error
4277
- */
4278
- 422: HttpValidationError;
4279
4305
  };
4280
4306
 
4281
- export type GetUserLimitsError = GetUserLimitsErrors[keyof GetUserLimitsErrors];
4282
-
4283
4307
  export type GetUserLimitsResponses = {
4284
4308
  /**
4285
4309
  * User limits retrieved successfully
@@ -4291,32 +4315,11 @@ export type GetUserLimitsResponse = GetUserLimitsResponses[keyof GetUserLimitsRe
4291
4315
 
4292
4316
  export type GetUserUsageData = {
4293
4317
  body?: never;
4294
- headers?: {
4295
- /**
4296
- * Authorization
4297
- */
4298
- authorization?: string | null;
4299
- };
4300
4318
  path?: never;
4301
- query?: {
4302
- /**
4303
- * Token
4304
- * JWT token for SSE authentication
4305
- */
4306
- token?: string | null;
4307
- };
4319
+ query?: never;
4308
4320
  url: '/v1/user/limits/usage';
4309
4321
  };
4310
4322
 
4311
- export type GetUserUsageErrors = {
4312
- /**
4313
- * Validation Error
4314
- */
4315
- 422: HttpValidationError;
4316
- };
4317
-
4318
- export type GetUserUsageError = GetUserUsageErrors[keyof GetUserUsageErrors];
4319
-
4320
4323
  export type GetUserUsageResponses = {
4321
4324
  /**
4322
4325
  * User usage statistics retrieved successfully
@@ -4328,32 +4331,11 @@ export type GetUserUsageResponse = GetUserUsageResponses[keyof GetUserUsageRespo
4328
4331
 
4329
4332
  export type GetAllSharedRepositoryLimitsData = {
4330
4333
  body?: never;
4331
- headers?: {
4332
- /**
4333
- * Authorization
4334
- */
4335
- authorization?: string | null;
4336
- };
4337
4334
  path?: never;
4338
- query?: {
4339
- /**
4340
- * Token
4341
- * JWT token for SSE authentication
4342
- */
4343
- token?: string | null;
4344
- };
4335
+ query?: never;
4345
4336
  url: '/v1/user/limits/shared-repositories/summary';
4346
4337
  };
4347
4338
 
4348
- export type GetAllSharedRepositoryLimitsErrors = {
4349
- /**
4350
- * Validation Error
4351
- */
4352
- 422: HttpValidationError;
4353
- };
4354
-
4355
- export type GetAllSharedRepositoryLimitsError = GetAllSharedRepositoryLimitsErrors[keyof GetAllSharedRepositoryLimitsErrors];
4356
-
4357
4339
  export type GetAllSharedRepositoryLimitsResponses = {
4358
4340
  /**
4359
4341
  * Response Getallsharedrepositorylimits
@@ -4368,12 +4350,6 @@ export type GetAllSharedRepositoryLimitsResponse = GetAllSharedRepositoryLimitsR
4368
4350
 
4369
4351
  export type GetSharedRepositoryLimitsData = {
4370
4352
  body?: never;
4371
- headers?: {
4372
- /**
4373
- * Authorization
4374
- */
4375
- authorization?: string | null;
4376
- };
4377
4353
  path: {
4378
4354
  /**
4379
4355
  * Repository
@@ -4381,13 +4357,7 @@ export type GetSharedRepositoryLimitsData = {
4381
4357
  */
4382
4358
  repository: string;
4383
4359
  };
4384
- query?: {
4385
- /**
4386
- * Token
4387
- * JWT token for SSE authentication
4388
- */
4389
- token?: string | null;
4390
- };
4360
+ query?: never;
4391
4361
  url: '/v1/user/limits/shared-repositories/{repository}';
4392
4362
  };
4393
4363
 
@@ -4414,32 +4384,11 @@ export type GetSharedRepositoryLimitsResponse = GetSharedRepositoryLimitsRespons
4414
4384
 
4415
4385
  export type GetUserUsageOverviewData = {
4416
4386
  body?: never;
4417
- headers?: {
4418
- /**
4419
- * Authorization
4420
- */
4421
- authorization?: string | null;
4422
- };
4423
4387
  path?: never;
4424
- query?: {
4425
- /**
4426
- * Token
4427
- * JWT token for SSE authentication
4428
- */
4429
- token?: string | null;
4430
- };
4388
+ query?: never;
4431
4389
  url: '/v1/user/analytics/overview';
4432
4390
  };
4433
4391
 
4434
- export type GetUserUsageOverviewErrors = {
4435
- /**
4436
- * Validation Error
4437
- */
4438
- 422: HttpValidationError;
4439
- };
4440
-
4441
- export type GetUserUsageOverviewError = GetUserUsageOverviewErrors[keyof GetUserUsageOverviewErrors];
4442
-
4443
4392
  export type GetUserUsageOverviewResponses = {
4444
4393
  /**
4445
4394
  * Successful Response
@@ -4451,12 +4400,6 @@ export type GetUserUsageOverviewResponse = GetUserUsageOverviewResponses[keyof G
4451
4400
 
4452
4401
  export type GetDetailedUserAnalyticsData = {
4453
4402
  body?: never;
4454
- headers?: {
4455
- /**
4456
- * Authorization
4457
- */
4458
- authorization?: string | null;
4459
- };
4460
4403
  path?: never;
4461
4404
  query?: {
4462
4405
  /**
@@ -4469,11 +4412,6 @@ export type GetDetailedUserAnalyticsData = {
4469
4412
  * Include recent activity
4470
4413
  */
4471
4414
  include_recent_activity?: boolean;
4472
- /**
4473
- * Token
4474
- * JWT token for SSE authentication
4475
- */
4476
- token?: string | null;
4477
4415
  };
4478
4416
  url: '/v1/user/analytics/detailed';
4479
4417
  };
@@ -4498,12 +4436,6 @@ export type GetDetailedUserAnalyticsResponse = GetDetailedUserAnalyticsResponses
4498
4436
 
4499
4437
  export type GetUserSharedSubscriptionsData = {
4500
4438
  body?: never;
4501
- headers?: {
4502
- /**
4503
- * Authorization
4504
- */
4505
- authorization?: string | null;
4506
- };
4507
4439
  path?: never;
4508
4440
  query?: {
4509
4441
  /**
@@ -4511,11 +4443,6 @@ export type GetUserSharedSubscriptionsData = {
4511
4443
  * Only return active subscriptions
4512
4444
  */
4513
4445
  active_only?: boolean;
4514
- /**
4515
- * Token
4516
- * JWT token for SSE authentication
4517
- */
4518
- token?: string | null;
4519
4446
  };
4520
4447
  url: '/v1/user/subscriptions/shared-repositories';
4521
4448
  };
@@ -4548,20 +4475,8 @@ export type GetUserSharedSubscriptionsResponse = GetUserSharedSubscriptionsRespo
4548
4475
 
4549
4476
  export type SubscribeToSharedRepositoryData = {
4550
4477
  body: SubscriptionRequest;
4551
- headers?: {
4552
- /**
4553
- * Authorization
4554
- */
4555
- authorization?: string | null;
4556
- };
4557
4478
  path?: never;
4558
- query?: {
4559
- /**
4560
- * Token
4561
- * JWT token for SSE authentication
4562
- */
4563
- token?: string | null;
4564
- };
4479
+ query?: never;
4565
4480
  url: '/v1/user/subscriptions/shared-repositories/subscribe';
4566
4481
  };
4567
4482
 
@@ -4597,25 +4512,13 @@ export type SubscribeToSharedRepositoryResponse = SubscribeToSharedRepositoryRes
4597
4512
 
4598
4513
  export type UpgradeSharedRepositorySubscriptionData = {
4599
4514
  body: TierUpgradeRequest;
4600
- headers?: {
4601
- /**
4602
- * Authorization
4603
- */
4604
- authorization?: string | null;
4605
- };
4606
4515
  path: {
4607
4516
  /**
4608
4517
  * Subscription Id
4609
4518
  */
4610
4519
  subscription_id: string;
4611
4520
  };
4612
- query?: {
4613
- /**
4614
- * Token
4615
- * JWT token for SSE authentication
4616
- */
4617
- token?: string | null;
4618
- };
4521
+ query?: never;
4619
4522
  url: '/v1/user/subscriptions/shared-repositories/{subscription_id}/upgrade';
4620
4523
  };
4621
4524
 
@@ -4653,25 +4556,13 @@ export type UpgradeSharedRepositorySubscriptionResponses = {
4653
4556
 
4654
4557
  export type CancelSharedRepositorySubscriptionData = {
4655
4558
  body?: never;
4656
- headers?: {
4657
- /**
4658
- * Authorization
4659
- */
4660
- authorization?: string | null;
4661
- };
4662
4559
  path: {
4663
4560
  /**
4664
4561
  * Subscription Id
4665
4562
  */
4666
4563
  subscription_id: string;
4667
4564
  };
4668
- query?: {
4669
- /**
4670
- * Token
4671
- * JWT token for SSE authentication
4672
- */
4673
- token?: string | null;
4674
- };
4565
+ query?: never;
4675
4566
  url: '/v1/user/subscriptions/shared-repositories/{subscription_id}';
4676
4567
  };
4677
4568
 
@@ -4707,20 +4598,8 @@ export type CancelSharedRepositorySubscriptionResponse = CancelSharedRepositoryS
4707
4598
 
4708
4599
  export type GetSharedRepositoryCreditsData = {
4709
4600
  body?: never;
4710
- headers?: {
4711
- /**
4712
- * Authorization
4713
- */
4714
- authorization?: string | null;
4715
- };
4716
4601
  path?: never;
4717
- query?: {
4718
- /**
4719
- * Token
4720
- * JWT token for SSE authentication
4721
- */
4722
- token?: string | null;
4723
- };
4602
+ query?: never;
4724
4603
  url: '/v1/user/subscriptions/shared-repositories/credits';
4725
4604
  };
4726
4605
 
@@ -4729,18 +4608,12 @@ export type GetSharedRepositoryCreditsErrors = {
4729
4608
  * Authentication required
4730
4609
  */
4731
4610
  401: unknown;
4732
- /**
4733
- * Validation Error
4734
- */
4735
- 422: HttpValidationError;
4736
4611
  /**
4737
4612
  * Internal server error
4738
4613
  */
4739
4614
  500: unknown;
4740
4615
  };
4741
4616
 
4742
- export type GetSharedRepositoryCreditsError = GetSharedRepositoryCreditsErrors[keyof GetSharedRepositoryCreditsErrors];
4743
-
4744
4617
  export type GetSharedRepositoryCreditsResponses = {
4745
4618
  /**
4746
4619
  * Successfully retrieved credit balances
@@ -4752,25 +4625,13 @@ export type GetSharedRepositoryCreditsResponse = GetSharedRepositoryCreditsRespo
4752
4625
 
4753
4626
  export type GetRepositoryCreditsData = {
4754
4627
  body?: never;
4755
- headers?: {
4756
- /**
4757
- * Authorization
4758
- */
4759
- authorization?: string | null;
4760
- };
4761
4628
  path: {
4762
4629
  /**
4763
4630
  * Repository
4764
4631
  */
4765
4632
  repository: string;
4766
4633
  };
4767
- query?: {
4768
- /**
4769
- * Token
4770
- * JWT token for SSE authentication
4771
- */
4772
- token?: string | null;
4773
- };
4634
+ query?: never;
4774
4635
  url: '/v1/user/subscriptions/shared-repositories/credits/{repository}';
4775
4636
  };
4776
4637
 
@@ -4802,16 +4663,9 @@ export type GetRepositoryCreditsResponse = GetRepositoryCreditsResponses[keyof G
4802
4663
 
4803
4664
  export type ListConnectionsData = {
4804
4665
  body?: never;
4805
- headers?: {
4806
- /**
4807
- * Authorization
4808
- */
4809
- authorization?: string | null;
4810
- };
4811
4666
  path: {
4812
4667
  /**
4813
4668
  * Graph Id
4814
- * Graph database identifier
4815
4669
  */
4816
4670
  graph_id: string;
4817
4671
  };
@@ -4826,11 +4680,6 @@ export type ListConnectionsData = {
4826
4680
  * Filter by provider type
4827
4681
  */
4828
4682
  provider?: ('sec' | 'quickbooks' | 'plaid') | null;
4829
- /**
4830
- * Token
4831
- * JWT token for SSE authentication
4832
- */
4833
- token?: string | null;
4834
4683
  };
4835
4684
  url: '/v1/graphs/{graph_id}/connections';
4836
4685
  };
@@ -4864,26 +4713,13 @@ export type ListConnectionsResponse = ListConnectionsResponses[keyof ListConnect
4864
4713
 
4865
4714
  export type CreateConnectionData = {
4866
4715
  body: CreateConnectionRequest;
4867
- headers?: {
4868
- /**
4869
- * Authorization
4870
- */
4871
- authorization?: string | null;
4872
- };
4873
4716
  path: {
4874
4717
  /**
4875
4718
  * Graph Id
4876
- * Graph database identifier
4877
4719
  */
4878
4720
  graph_id: string;
4879
4721
  };
4880
- query?: {
4881
- /**
4882
- * Token
4883
- * JWT token for SSE authentication
4884
- */
4885
- token?: string | null;
4886
- };
4722
+ query?: never;
4887
4723
  url: '/v1/graphs/{graph_id}/connections';
4888
4724
  };
4889
4725
 
@@ -4923,26 +4759,13 @@ export type CreateConnectionResponse = CreateConnectionResponses[keyof CreateCon
4923
4759
 
4924
4760
  export type GetConnectionOptionsData = {
4925
4761
  body?: never;
4926
- headers?: {
4927
- /**
4928
- * Authorization
4929
- */
4930
- authorization?: string | null;
4931
- };
4932
4762
  path: {
4933
4763
  /**
4934
4764
  * Graph Id
4935
- * Graph database identifier
4936
4765
  */
4937
4766
  graph_id: string;
4938
4767
  };
4939
- query?: {
4940
- /**
4941
- * Token
4942
- * JWT token for SSE authentication
4943
- */
4944
- token?: string | null;
4945
- };
4768
+ query?: never;
4946
4769
  url: '/v1/graphs/{graph_id}/connections/options';
4947
4770
  };
4948
4771
 
@@ -4974,26 +4797,13 @@ export type GetConnectionOptionsResponse = GetConnectionOptionsResponses[keyof G
4974
4797
 
4975
4798
  export type ExchangeLinkTokenData = {
4976
4799
  body: ExchangeTokenRequest;
4977
- headers?: {
4978
- /**
4979
- * Authorization
4980
- */
4981
- authorization?: string | null;
4982
- };
4983
4800
  path: {
4984
4801
  /**
4985
4802
  * Graph Id
4986
- * Graph database identifier
4987
4803
  */
4988
4804
  graph_id: string;
4989
4805
  };
4990
- query?: {
4991
- /**
4992
- * Token
4993
- * JWT token for SSE authentication
4994
- */
4995
- token?: string | null;
4996
- };
4806
+ query?: never;
4997
4807
  url: '/v1/graphs/{graph_id}/connections/link/exchange';
4998
4808
  };
4999
4809
 
@@ -5027,26 +4837,13 @@ export type ExchangeLinkTokenResponses = {
5027
4837
 
5028
4838
  export type CreateLinkTokenData = {
5029
4839
  body: LinkTokenRequest;
5030
- headers?: {
5031
- /**
5032
- * Authorization
5033
- */
5034
- authorization?: string | null;
5035
- };
5036
4840
  path: {
5037
4841
  /**
5038
4842
  * Graph Id
5039
- * Graph database identifier
5040
4843
  */
5041
4844
  graph_id: string;
5042
4845
  };
5043
- query?: {
5044
- /**
5045
- * Token
5046
- * JWT token for SSE authentication
5047
- */
5048
- token?: string | null;
5049
- };
4846
+ query?: never;
5050
4847
  url: '/v1/graphs/{graph_id}/connections/link/token';
5051
4848
  };
5052
4849
 
@@ -5080,26 +4877,13 @@ export type CreateLinkTokenResponses = {
5080
4877
 
5081
4878
  export type InitOAuthData = {
5082
4879
  body: OAuthInitRequest;
5083
- headers?: {
5084
- /**
5085
- * Authorization
5086
- */
5087
- authorization?: string | null;
5088
- };
5089
4880
  path: {
5090
4881
  /**
5091
4882
  * Graph Id
5092
- * Graph database identifier
5093
4883
  */
5094
4884
  graph_id: string;
5095
4885
  };
5096
- query?: {
5097
- /**
5098
- * Token
5099
- * JWT token for SSE authentication
5100
- */
5101
- token?: string | null;
5102
- };
4886
+ query?: never;
5103
4887
  url: '/v1/graphs/{graph_id}/connections/oauth/init';
5104
4888
  };
5105
4889
 
@@ -5123,12 +4907,6 @@ export type InitOAuthResponse = InitOAuthResponses[keyof InitOAuthResponses];
5123
4907
 
5124
4908
  export type OauthCallbackData = {
5125
4909
  body: OAuthCallbackRequest;
5126
- headers?: {
5127
- /**
5128
- * Authorization
5129
- */
5130
- authorization?: string | null;
5131
- };
5132
4910
  path: {
5133
4911
  /**
5134
4912
  * Provider
@@ -5137,17 +4915,10 @@ export type OauthCallbackData = {
5137
4915
  provider: string;
5138
4916
  /**
5139
4917
  * Graph Id
5140
- * Graph database identifier
5141
4918
  */
5142
4919
  graph_id: string;
5143
4920
  };
5144
- query?: {
5145
- /**
5146
- * Token
5147
- * JWT token for SSE authentication
5148
- */
5149
- token?: string | null;
5150
- };
4921
+ query?: never;
5151
4922
  url: '/v1/graphs/{graph_id}/connections/oauth/callback/{provider}';
5152
4923
  };
5153
4924
 
@@ -5185,16 +4956,9 @@ export type OauthCallbackResponses = {
5185
4956
 
5186
4957
  export type DeleteConnectionData = {
5187
4958
  body?: never;
5188
- headers?: {
5189
- /**
5190
- * Authorization
5191
- */
5192
- authorization?: string | null;
5193
- };
5194
4959
  path: {
5195
4960
  /**
5196
4961
  * Graph Id
5197
- * Graph database identifier
5198
4962
  */
5199
4963
  graph_id: string;
5200
4964
  /**
@@ -5203,13 +4967,7 @@ export type DeleteConnectionData = {
5203
4967
  */
5204
4968
  connection_id: string;
5205
4969
  };
5206
- query?: {
5207
- /**
5208
- * Token
5209
- * JWT token for SSE authentication
5210
- */
5211
- token?: string | null;
5212
- };
4970
+ query?: never;
5213
4971
  url: '/v1/graphs/{graph_id}/connections/{connection_id}';
5214
4972
  };
5215
4973
 
@@ -5245,16 +5003,9 @@ export type DeleteConnectionResponse = DeleteConnectionResponses[keyof DeleteCon
5245
5003
 
5246
5004
  export type GetConnectionData = {
5247
5005
  body?: never;
5248
- headers?: {
5249
- /**
5250
- * Authorization
5251
- */
5252
- authorization?: string | null;
5253
- };
5254
5006
  path: {
5255
5007
  /**
5256
5008
  * Graph Id
5257
- * Graph database identifier
5258
5009
  */
5259
5010
  graph_id: string;
5260
5011
  /**
@@ -5263,13 +5014,7 @@ export type GetConnectionData = {
5263
5014
  */
5264
5015
  connection_id: string;
5265
5016
  };
5266
- query?: {
5267
- /**
5268
- * Token
5269
- * JWT token for SSE authentication
5270
- */
5271
- token?: string | null;
5272
- };
5017
+ query?: never;
5273
5018
  url: '/v1/graphs/{graph_id}/connections/{connection_id}';
5274
5019
  };
5275
5020
 
@@ -5305,16 +5050,9 @@ export type GetConnectionResponse = GetConnectionResponses[keyof GetConnectionRe
5305
5050
 
5306
5051
  export type SyncConnectionData = {
5307
5052
  body: SyncConnectionRequest;
5308
- headers?: {
5309
- /**
5310
- * Authorization
5311
- */
5312
- authorization?: string | null;
5313
- };
5314
5053
  path: {
5315
5054
  /**
5316
5055
  * Graph Id
5317
- * Graph database identifier
5318
5056
  */
5319
5057
  graph_id: string;
5320
5058
  /**
@@ -5323,13 +5061,7 @@ export type SyncConnectionData = {
5323
5061
  */
5324
5062
  connection_id: string;
5325
5063
  };
5326
- query?: {
5327
- /**
5328
- * Token
5329
- * JWT token for SSE authentication
5330
- */
5331
- token?: string | null;
5332
- };
5064
+ query?: never;
5333
5065
  url: '/v1/graphs/{graph_id}/connections/{connection_id}/sync';
5334
5066
  };
5335
5067
 
@@ -5368,25 +5100,13 @@ export type SyncConnectionResponse = SyncConnectionResponses[keyof SyncConnectio
5368
5100
 
5369
5101
  export type AutoSelectAgentData = {
5370
5102
  body: AgentRequest;
5371
- headers?: {
5372
- /**
5373
- * Authorization
5374
- */
5375
- authorization?: string | null;
5376
- };
5377
5103
  path: {
5378
5104
  /**
5379
5105
  * Graph Id
5380
5106
  */
5381
5107
  graph_id: string;
5382
5108
  };
5383
- query?: {
5384
- /**
5385
- * Token
5386
- * JWT token for SSE authentication
5387
- */
5388
- token?: string | null;
5389
- };
5109
+ query?: never;
5390
5110
  url: '/v1/graphs/{graph_id}/agent';
5391
5111
  };
5392
5112
 
@@ -5426,12 +5146,6 @@ export type AutoSelectAgentResponse = AutoSelectAgentResponses[keyof AutoSelectA
5426
5146
 
5427
5147
  export type ExecuteSpecificAgentData = {
5428
5148
  body: AgentRequest;
5429
- headers?: {
5430
- /**
5431
- * Authorization
5432
- */
5433
- authorization?: string | null;
5434
- };
5435
5149
  path: {
5436
5150
  /**
5437
5151
  * Agent Type
@@ -5442,13 +5156,7 @@ export type ExecuteSpecificAgentData = {
5442
5156
  */
5443
5157
  graph_id: string;
5444
5158
  };
5445
- query?: {
5446
- /**
5447
- * Token
5448
- * JWT token for SSE authentication
5449
- */
5450
- token?: string | null;
5451
- };
5159
+ query?: never;
5452
5160
  url: '/v1/graphs/{graph_id}/agent/{agent_type}';
5453
5161
  };
5454
5162
 
@@ -5492,25 +5200,13 @@ export type ExecuteSpecificAgentResponse = ExecuteSpecificAgentResponses[keyof E
5492
5200
 
5493
5201
  export type BatchProcessQueriesData = {
5494
5202
  body: BatchAgentRequest;
5495
- headers?: {
5496
- /**
5497
- * Authorization
5498
- */
5499
- authorization?: string | null;
5500
- };
5501
5203
  path: {
5502
5204
  /**
5503
5205
  * Graph Id
5504
5206
  */
5505
5207
  graph_id: string;
5506
5208
  };
5507
- query?: {
5508
- /**
5509
- * Token
5510
- * JWT token for SSE authentication
5511
- */
5512
- token?: string | null;
5513
- };
5209
+ query?: never;
5514
5210
  url: '/v1/graphs/{graph_id}/agent/batch';
5515
5211
  };
5516
5212
 
@@ -5546,16 +5242,9 @@ export type BatchProcessQueriesResponse = BatchProcessQueriesResponses[keyof Bat
5546
5242
 
5547
5243
  export type ListAgentsData = {
5548
5244
  body?: never;
5549
- headers?: {
5550
- /**
5551
- * Authorization
5552
- */
5553
- authorization?: string | null;
5554
- };
5555
5245
  path: {
5556
5246
  /**
5557
5247
  * Graph Id
5558
- * Graph database identifier
5559
5248
  */
5560
5249
  graph_id: string;
5561
5250
  };
@@ -5565,11 +5254,6 @@ export type ListAgentsData = {
5565
5254
  * Filter by capability (e.g., 'financial_analysis', 'rag_search')
5566
5255
  */
5567
5256
  capability?: string | null;
5568
- /**
5569
- * Token
5570
- * JWT token for SSE authentication
5571
- */
5572
- token?: string | null;
5573
5257
  };
5574
5258
  url: '/v1/graphs/{graph_id}/agent/list';
5575
5259
  };
@@ -5598,16 +5282,9 @@ export type ListAgentsResponse = ListAgentsResponses[keyof ListAgentsResponses];
5598
5282
 
5599
5283
  export type GetAgentMetadataData = {
5600
5284
  body?: never;
5601
- headers?: {
5602
- /**
5603
- * Authorization
5604
- */
5605
- authorization?: string | null;
5606
- };
5607
5285
  path: {
5608
5286
  /**
5609
5287
  * Graph Id
5610
- * Graph database identifier
5611
5288
  */
5612
5289
  graph_id: string;
5613
5290
  /**
@@ -5616,13 +5293,7 @@ export type GetAgentMetadataData = {
5616
5293
  */
5617
5294
  agent_type: string;
5618
5295
  };
5619
- query?: {
5620
- /**
5621
- * Token
5622
- * JWT token for SSE authentication
5623
- */
5624
- token?: string | null;
5625
- };
5296
+ query?: never;
5626
5297
  url: '/v1/graphs/{graph_id}/agent/{agent_type}/metadata';
5627
5298
  };
5628
5299
 
@@ -5650,26 +5321,13 @@ export type GetAgentMetadataResponse = GetAgentMetadataResponses[keyof GetAgentM
5650
5321
 
5651
5322
  export type RecommendAgentData = {
5652
5323
  body: AgentRecommendationRequest;
5653
- headers?: {
5654
- /**
5655
- * Authorization
5656
- */
5657
- authorization?: string | null;
5658
- };
5659
5324
  path: {
5660
5325
  /**
5661
5326
  * Graph Id
5662
- * Graph database identifier
5663
5327
  */
5664
5328
  graph_id: string;
5665
5329
  };
5666
- query?: {
5667
- /**
5668
- * Token
5669
- * JWT token for SSE authentication
5670
- */
5671
- token?: string | null;
5672
- };
5330
+ query?: never;
5673
5331
  url: '/v1/graphs/{graph_id}/agent/recommend';
5674
5332
  };
5675
5333
 
@@ -5697,26 +5355,13 @@ export type RecommendAgentResponse = RecommendAgentResponses[keyof RecommendAgen
5697
5355
 
5698
5356
  export type ListMcpToolsData = {
5699
5357
  body?: never;
5700
- headers?: {
5701
- /**
5702
- * Authorization
5703
- */
5704
- authorization?: string | null;
5705
- };
5706
5358
  path: {
5707
5359
  /**
5708
5360
  * Graph Id
5709
- * Graph database identifier
5710
5361
  */
5711
5362
  graph_id: string;
5712
5363
  };
5713
- query?: {
5714
- /**
5715
- * Token
5716
- * JWT token for SSE authentication
5717
- */
5718
- token?: string | null;
5719
- };
5364
+ query?: never;
5720
5365
  url: '/v1/graphs/{graph_id}/mcp/tools';
5721
5366
  };
5722
5367
 
@@ -5748,16 +5393,9 @@ export type ListMcpToolsResponse = ListMcpToolsResponses[keyof ListMcpToolsRespo
5748
5393
 
5749
5394
  export type CallMcpToolData = {
5750
5395
  body: McpToolCall;
5751
- headers?: {
5752
- /**
5753
- * Authorization
5754
- */
5755
- authorization?: string | null;
5756
- };
5757
5396
  path: {
5758
5397
  /**
5759
5398
  * Graph Id
5760
- * Graph database identifier
5761
5399
  */
5762
5400
  graph_id: string;
5763
5401
  };
@@ -5772,11 +5410,6 @@ export type CallMcpToolData = {
5772
5410
  * Enable test mode for debugging
5773
5411
  */
5774
5412
  test_mode?: boolean;
5775
- /**
5776
- * Token
5777
- * JWT token for SSE authentication
5778
- */
5779
- token?: string | null;
5780
5413
  };
5781
5414
  url: '/v1/graphs/{graph_id}/mcp/call-tool';
5782
5415
  };
@@ -5831,16 +5464,9 @@ export type CallMcpToolResponses = {
5831
5464
 
5832
5465
  export type ListBackupsData = {
5833
5466
  body?: never;
5834
- headers?: {
5835
- /**
5836
- * Authorization
5837
- */
5838
- authorization?: string | null;
5839
- };
5840
5467
  path: {
5841
5468
  /**
5842
5469
  * Graph Id
5843
- * Graph database identifier
5844
5470
  */
5845
5471
  graph_id: string;
5846
5472
  };
@@ -5855,11 +5481,6 @@ export type ListBackupsData = {
5855
5481
  * Number of backups to skip
5856
5482
  */
5857
5483
  offset?: number;
5858
- /**
5859
- * Token
5860
- * JWT token for SSE authentication
5861
- */
5862
- token?: string | null;
5863
5484
  };
5864
5485
  url: '/v1/graphs/{graph_id}/backups';
5865
5486
  };
@@ -5884,26 +5505,13 @@ export type ListBackupsResponse = ListBackupsResponses[keyof ListBackupsResponse
5884
5505
 
5885
5506
  export type CreateBackupData = {
5886
5507
  body: BackupCreateRequest;
5887
- headers?: {
5888
- /**
5889
- * Authorization
5890
- */
5891
- authorization?: string | null;
5892
- };
5893
5508
  path: {
5894
5509
  /**
5895
5510
  * Graph Id
5896
- * Graph database identifier
5897
5511
  */
5898
5512
  graph_id: string;
5899
5513
  };
5900
- query?: {
5901
- /**
5902
- * Token
5903
- * JWT token for SSE authentication
5904
- */
5905
- token?: string | null;
5906
- };
5514
+ query?: never;
5907
5515
  url: '/v1/graphs/{graph_id}/backups';
5908
5516
  };
5909
5517
 
@@ -5941,12 +5549,6 @@ export type CreateBackupResponses = {
5941
5549
 
5942
5550
  export type GetBackupDownloadUrlData = {
5943
5551
  body?: never;
5944
- headers?: {
5945
- /**
5946
- * Authorization
5947
- */
5948
- authorization?: string | null;
5949
- };
5950
5552
  path: {
5951
5553
  /**
5952
5554
  * Backup Id
@@ -5955,7 +5557,6 @@ export type GetBackupDownloadUrlData = {
5955
5557
  backup_id: string;
5956
5558
  /**
5957
5559
  * Graph Id
5958
- * Graph database identifier
5959
5560
  */
5960
5561
  graph_id: string;
5961
5562
  };
@@ -5965,11 +5566,6 @@ export type GetBackupDownloadUrlData = {
5965
5566
  * URL expiration time in seconds
5966
5567
  */
5967
5568
  expires_in?: number;
5968
- /**
5969
- * Token
5970
- * JWT token for SSE authentication
5971
- */
5972
- token?: string | null;
5973
5569
  };
5974
5570
  url: '/v1/graphs/{graph_id}/backups/{backup_id}/download';
5975
5571
  };
@@ -6009,12 +5605,6 @@ export type GetBackupDownloadUrlResponse = GetBackupDownloadUrlResponses[keyof G
6009
5605
 
6010
5606
  export type RestoreBackupData = {
6011
5607
  body: BackupRestoreRequest;
6012
- headers?: {
6013
- /**
6014
- * Authorization
6015
- */
6016
- authorization?: string | null;
6017
- };
6018
5608
  path: {
6019
5609
  /**
6020
5610
  * Backup Id
@@ -6023,17 +5613,10 @@ export type RestoreBackupData = {
6023
5613
  backup_id: string;
6024
5614
  /**
6025
5615
  * Graph Id
6026
- * Graph database identifier
6027
5616
  */
6028
5617
  graph_id: string;
6029
5618
  };
6030
- query?: {
6031
- /**
6032
- * Token
6033
- * JWT token for SSE authentication
6034
- */
6035
- token?: string | null;
6036
- };
5619
+ query?: never;
6037
5620
  url: '/v1/graphs/{graph_id}/backups/{backup_id}/restore';
6038
5621
  };
6039
5622
 
@@ -6071,26 +5654,13 @@ export type RestoreBackupResponses = {
6071
5654
 
6072
5655
  export type GetBackupStatsData = {
6073
5656
  body?: never;
6074
- headers?: {
6075
- /**
6076
- * Authorization
6077
- */
6078
- authorization?: string | null;
6079
- };
6080
5657
  path: {
6081
5658
  /**
6082
5659
  * Graph Id
6083
- * Graph database identifier
6084
5660
  */
6085
5661
  graph_id: string;
6086
5662
  };
6087
- query?: {
6088
- /**
6089
- * Token
6090
- * JWT token for SSE authentication
6091
- */
6092
- token?: string | null;
6093
- };
5663
+ query?: never;
6094
5664
  url: '/v1/graphs/{graph_id}/backups/stats';
6095
5665
  };
6096
5666
 
@@ -6114,26 +5684,13 @@ export type GetBackupStatsResponse = GetBackupStatsResponses[keyof GetBackupStat
6114
5684
 
6115
5685
  export type GetGraphMetricsData = {
6116
5686
  body?: never;
6117
- headers?: {
6118
- /**
6119
- * Authorization
6120
- */
6121
- authorization?: string | null;
6122
- };
6123
5687
  path: {
6124
5688
  /**
6125
5689
  * Graph Id
6126
- * The graph ID to get metrics for
6127
5690
  */
6128
5691
  graph_id: string;
6129
5692
  };
6130
- query?: {
6131
- /**
6132
- * Token
6133
- * JWT token for SSE authentication
6134
- */
6135
- token?: string | null;
6136
- };
5693
+ query?: never;
6137
5694
  url: '/v1/graphs/{graph_id}/analytics';
6138
5695
  };
6139
5696
 
@@ -6169,16 +5726,9 @@ export type GetGraphMetricsResponse = GetGraphMetricsResponses[keyof GetGraphMet
6169
5726
 
6170
5727
  export type GetGraphUsageStatsData = {
6171
5728
  body?: never;
6172
- headers?: {
6173
- /**
6174
- * Authorization
6175
- */
6176
- authorization?: string | null;
6177
- };
6178
5729
  path: {
6179
5730
  /**
6180
5731
  * Graph Id
6181
- * The graph ID to get usage stats for
6182
5732
  */
6183
5733
  graph_id: string;
6184
5734
  };
@@ -6188,11 +5738,6 @@ export type GetGraphUsageStatsData = {
6188
5738
  * Include detailed metrics (may be slower)
6189
5739
  */
6190
5740
  include_details?: boolean;
6191
- /**
6192
- * Token
6193
- * JWT token for SSE authentication
6194
- */
6195
- token?: string | null;
6196
5741
  };
6197
5742
  url: '/v1/graphs/{graph_id}/analytics/usage';
6198
5743
  };
@@ -6225,16 +5770,9 @@ export type GetGraphUsageStatsResponse = GetGraphUsageStatsResponses[keyof GetGr
6225
5770
 
6226
5771
  export type ExecuteCypherQueryData = {
6227
5772
  body: CypherQueryRequest;
6228
- headers?: {
6229
- /**
6230
- * Authorization
6231
- */
6232
- authorization?: string | null;
6233
- };
6234
5773
  path: {
6235
5774
  /**
6236
5775
  * Graph Id
6237
- * Graph database identifier
6238
5776
  */
6239
5777
  graph_id: string;
6240
5778
  };
@@ -6248,17 +5786,12 @@ export type ExecuteCypherQueryData = {
6248
5786
  * Chunk Size
6249
5787
  * Rows per chunk for streaming
6250
5788
  */
6251
- chunk_size?: number;
5789
+ chunk_size?: number | null;
6252
5790
  /**
6253
5791
  * Test Mode
6254
5792
  * Enable test mode for better debugging
6255
5793
  */
6256
5794
  test_mode?: boolean;
6257
- /**
6258
- * Token
6259
- * JWT token for SSE authentication
6260
- */
6261
- token?: string | null;
6262
5795
  };
6263
5796
  url: '/v1/graphs/{graph_id}/query';
6264
5797
  };
@@ -6309,26 +5842,13 @@ export type ExecuteCypherQueryResponses = {
6309
5842
 
6310
5843
  export type GetGraphSchemaData = {
6311
5844
  body?: never;
6312
- headers?: {
6313
- /**
6314
- * Authorization
6315
- */
6316
- authorization?: string | null;
6317
- };
6318
5845
  path: {
6319
5846
  /**
6320
5847
  * Graph Id
6321
- * The graph database to get schema for
6322
5848
  */
6323
5849
  graph_id: string;
6324
5850
  };
6325
- query?: {
6326
- /**
6327
- * Token
6328
- * JWT token for SSE authentication
6329
- */
6330
- token?: string | null;
6331
- };
5851
+ query?: never;
6332
5852
  url: '/v1/graphs/{graph_id}/schema';
6333
5853
  };
6334
5854
 
@@ -6345,34 +5865,28 @@ export type GetGraphSchemaErrors = {
6345
5865
  * Failed to retrieve schema
6346
5866
  */
6347
5867
  500: unknown;
5868
+ /**
5869
+ * Schema operation timed out
5870
+ */
5871
+ 504: unknown;
6348
5872
  };
6349
5873
 
6350
5874
  export type GetGraphSchemaError = GetGraphSchemaErrors[keyof GetGraphSchemaErrors];
6351
5875
 
6352
5876
  export type GetGraphSchemaResponses = {
6353
5877
  /**
6354
- * Response Getgraphschema
6355
5878
  * Schema information retrieved successfully
6356
5879
  */
6357
- 200: {
6358
- [key: string]: unknown;
6359
- };
5880
+ 200: SchemaInfoResponse;
6360
5881
  };
6361
5882
 
6362
5883
  export type GetGraphSchemaResponse = GetGraphSchemaResponses[keyof GetGraphSchemaResponses];
6363
5884
 
6364
5885
  export type ExportGraphSchemaData = {
6365
5886
  body?: never;
6366
- headers?: {
6367
- /**
6368
- * Authorization
6369
- */
6370
- authorization?: string | null;
6371
- };
6372
5887
  path: {
6373
5888
  /**
6374
5889
  * Graph Id
6375
- * The graph ID to export schema from
6376
5890
  */
6377
5891
  graph_id: string;
6378
5892
  };
@@ -6384,30 +5898,37 @@ export type ExportGraphSchemaData = {
6384
5898
  format?: string;
6385
5899
  /**
6386
5900
  * Include Data Stats
6387
- * Include statistics about actual data in the graph
5901
+ * Include statistics about actual data in the graph (node counts, relationship counts)
6388
5902
  */
6389
5903
  include_data_stats?: boolean;
6390
- /**
6391
- * Token
6392
- * JWT token for SSE authentication
6393
- */
6394
- token?: string | null;
6395
5904
  };
6396
5905
  url: '/v1/graphs/{graph_id}/schema/export';
6397
5906
  };
6398
5907
 
6399
5908
  export type ExportGraphSchemaErrors = {
5909
+ /**
5910
+ * Access denied to graph
5911
+ */
5912
+ 403: unknown;
5913
+ /**
5914
+ * Schema not found for graph
5915
+ */
5916
+ 404: unknown;
6400
5917
  /**
6401
5918
  * Validation Error
6402
5919
  */
6403
5920
  422: HttpValidationError;
5921
+ /**
5922
+ * Failed to export schema
5923
+ */
5924
+ 500: unknown;
6404
5925
  };
6405
5926
 
6406
5927
  export type ExportGraphSchemaError = ExportGraphSchemaErrors[keyof ExportGraphSchemaErrors];
6407
5928
 
6408
5929
  export type ExportGraphSchemaResponses = {
6409
5930
  /**
6410
- * Successful Response
5931
+ * Schema exported successfully
6411
5932
  */
6412
5933
  200: SchemaExportResponse;
6413
5934
  };
@@ -6419,26 +5940,13 @@ export type ValidateSchemaData = {
6419
5940
  * Schema definition to validate
6420
5941
  */
6421
5942
  body: SchemaValidationRequest;
6422
- headers?: {
6423
- /**
6424
- * Authorization
6425
- */
6426
- authorization?: string | null;
6427
- };
6428
5943
  path: {
6429
5944
  /**
6430
5945
  * Graph Id
6431
- * Graph database identifier
6432
5946
  */
6433
5947
  graph_id: string;
6434
5948
  };
6435
- query?: {
6436
- /**
6437
- * Token
6438
- * JWT token for SSE authentication
6439
- */
6440
- token?: string | null;
6441
- };
5949
+ query?: never;
6442
5950
  url: '/v1/graphs/{graph_id}/schema/validate';
6443
5951
  };
6444
5952
 
@@ -6474,26 +5982,13 @@ export type ValidateSchemaResponse = ValidateSchemaResponses[keyof ValidateSchem
6474
5982
 
6475
5983
  export type GetCurrentGraphBillData = {
6476
5984
  body?: never;
6477
- headers?: {
6478
- /**
6479
- * Authorization
6480
- */
6481
- authorization?: string | null;
6482
- };
6483
5985
  path: {
6484
5986
  /**
6485
5987
  * Graph Id
6486
- * Graph database identifier
6487
5988
  */
6488
5989
  graph_id: string;
6489
5990
  };
6490
- query?: {
6491
- /**
6492
- * Token
6493
- * JWT token for SSE authentication
6494
- */
6495
- token?: string | null;
6496
- };
5991
+ query?: never;
6497
5992
  url: '/v1/graphs/{graph_id}/billing/current';
6498
5993
  };
6499
5994
 
@@ -6532,16 +6027,9 @@ export type GetCurrentGraphBillResponse = GetCurrentGraphBillResponses[keyof Get
6532
6027
 
6533
6028
  export type GetGraphUsageDetailsData = {
6534
6029
  body?: never;
6535
- headers?: {
6536
- /**
6537
- * Authorization
6538
- */
6539
- authorization?: string | null;
6540
- };
6541
6030
  path: {
6542
6031
  /**
6543
6032
  * Graph Id
6544
- * Graph database identifier
6545
6033
  */
6546
6034
  graph_id: string;
6547
6035
  };
@@ -6556,11 +6044,6 @@ export type GetGraphUsageDetailsData = {
6556
6044
  * Month (defaults to current)
6557
6045
  */
6558
6046
  month?: number | null;
6559
- /**
6560
- * Token
6561
- * JWT token for SSE authentication
6562
- */
6563
- token?: string | null;
6564
6047
  };
6565
6048
  url: '/v1/graphs/{graph_id}/billing/usage';
6566
6049
  };
@@ -6604,16 +6087,9 @@ export type GetGraphUsageDetailsResponse = GetGraphUsageDetailsResponses[keyof G
6604
6087
 
6605
6088
  export type GetGraphBillingHistoryData = {
6606
6089
  body?: never;
6607
- headers?: {
6608
- /**
6609
- * Authorization
6610
- */
6611
- authorization?: string | null;
6612
- };
6613
6090
  path: {
6614
6091
  /**
6615
6092
  * Graph Id
6616
- * Graph database identifier
6617
6093
  */
6618
6094
  graph_id: string;
6619
6095
  };
@@ -6623,11 +6099,6 @@ export type GetGraphBillingHistoryData = {
6623
6099
  * Number of months to retrieve (1-24)
6624
6100
  */
6625
6101
  months?: number;
6626
- /**
6627
- * Token
6628
- * JWT token for SSE authentication
6629
- */
6630
- token?: string | null;
6631
6102
  };
6632
6103
  url: '/v1/graphs/{graph_id}/billing/history';
6633
6104
  };
@@ -6667,12 +6138,6 @@ export type GetGraphBillingHistoryResponse = GetGraphBillingHistoryResponses[key
6667
6138
 
6668
6139
  export type GetGraphMonthlyBillData = {
6669
6140
  body?: never;
6670
- headers?: {
6671
- /**
6672
- * Authorization
6673
- */
6674
- authorization?: string | null;
6675
- };
6676
6141
  path: {
6677
6142
  /**
6678
6143
  * Year
@@ -6686,17 +6151,10 @@ export type GetGraphMonthlyBillData = {
6686
6151
  month: number;
6687
6152
  /**
6688
6153
  * Graph Id
6689
- * Graph database identifier
6690
6154
  */
6691
6155
  graph_id: string;
6692
6156
  };
6693
- query?: {
6694
- /**
6695
- * Token
6696
- * JWT token for SSE authentication
6697
- */
6698
- token?: string | null;
6699
- };
6157
+ query?: never;
6700
6158
  url: '/v1/graphs/{graph_id}/billing/history/{year}/{month}';
6701
6159
  };
6702
6160
 
@@ -6739,12 +6197,6 @@ export type GetGraphMonthlyBillResponse = GetGraphMonthlyBillResponses[keyof Get
6739
6197
 
6740
6198
  export type GetCreditSummaryData = {
6741
6199
  body?: never;
6742
- headers?: {
6743
- /**
6744
- * Authorization
6745
- */
6746
- authorization?: string | null;
6747
- };
6748
6200
  path: {
6749
6201
  /**
6750
6202
  * Graph Id
@@ -6752,13 +6204,7 @@ export type GetCreditSummaryData = {
6752
6204
  */
6753
6205
  graph_id: string;
6754
6206
  };
6755
- query?: {
6756
- /**
6757
- * Token
6758
- * JWT token for SSE authentication
6759
- */
6760
- token?: string | null;
6761
- };
6207
+ query?: never;
6762
6208
  url: '/v1/graphs/{graph_id}/credits/summary';
6763
6209
  };
6764
6210
 
@@ -6794,16 +6240,9 @@ export type GetCreditSummaryResponse = GetCreditSummaryResponses[keyof GetCredit
6794
6240
 
6795
6241
  export type ListCreditTransactionsData = {
6796
6242
  body?: never;
6797
- headers?: {
6798
- /**
6799
- * Authorization
6800
- */
6801
- authorization?: string | null;
6802
- };
6803
6243
  path: {
6804
6244
  /**
6805
6245
  * Graph Id
6806
- * Graph database identifier
6807
6246
  */
6808
6247
  graph_id: string;
6809
6248
  };
@@ -6838,11 +6277,6 @@ export type ListCreditTransactionsData = {
6838
6277
  * Number of transactions to skip
6839
6278
  */
6840
6279
  offset?: number;
6841
- /**
6842
- * Token
6843
- * JWT token for SSE authentication
6844
- */
6845
- token?: string | null;
6846
6280
  };
6847
6281
  url: '/v1/graphs/{graph_id}/credits/transactions';
6848
6282
  };
@@ -6879,12 +6313,6 @@ export type ListCreditTransactionsResponse = ListCreditTransactionsResponses[key
6879
6313
 
6880
6314
  export type CheckCreditBalanceData = {
6881
6315
  body?: never;
6882
- headers?: {
6883
- /**
6884
- * Authorization
6885
- */
6886
- authorization?: string | null;
6887
- };
6888
6316
  path: {
6889
6317
  /**
6890
6318
  * Graph Id
@@ -6903,11 +6331,6 @@ export type CheckCreditBalanceData = {
6903
6331
  * Custom base cost (uses default if not provided)
6904
6332
  */
6905
6333
  base_cost?: number | string | null;
6906
- /**
6907
- * Token
6908
- * JWT token for SSE authentication
6909
- */
6910
- token?: string | null;
6911
6334
  };
6912
6335
  url: '/v1/graphs/{graph_id}/credits/balance/check';
6913
6336
  };
@@ -6947,12 +6370,6 @@ export type CheckCreditBalanceResponse = CheckCreditBalanceResponses[keyof Check
6947
6370
 
6948
6371
  export type GetStorageUsageData = {
6949
6372
  body?: never;
6950
- headers?: {
6951
- /**
6952
- * Authorization
6953
- */
6954
- authorization?: string | null;
6955
- };
6956
6373
  path: {
6957
6374
  /**
6958
6375
  * Graph Id
@@ -6966,11 +6383,6 @@ export type GetStorageUsageData = {
6966
6383
  * Number of days of history to return
6967
6384
  */
6968
6385
  days?: number;
6969
- /**
6970
- * Token
6971
- * JWT token for SSE authentication
6972
- */
6973
- token?: string | null;
6974
6386
  };
6975
6387
  url: '/v1/graphs/{graph_id}/credits/storage/usage';
6976
6388
  };
@@ -7006,12 +6418,6 @@ export type GetStorageUsageResponse = GetStorageUsageResponses[keyof GetStorageU
7006
6418
 
7007
6419
  export type CheckStorageLimitsData = {
7008
6420
  body?: never;
7009
- headers?: {
7010
- /**
7011
- * Authorization
7012
- */
7013
- authorization?: string | null;
7014
- };
7015
6421
  path: {
7016
6422
  /**
7017
6423
  * Graph Id
@@ -7019,13 +6425,7 @@ export type CheckStorageLimitsData = {
7019
6425
  */
7020
6426
  graph_id: string;
7021
6427
  };
7022
- query?: {
7023
- /**
7024
- * Token
7025
- * JWT token for SSE authentication
7026
- */
7027
- token?: string | null;
7028
- };
6428
+ query?: never;
7029
6429
  url: '/v1/graphs/{graph_id}/credits/storage/limits';
7030
6430
  };
7031
6431
 
@@ -7061,26 +6461,13 @@ export type CheckStorageLimitsResponse = CheckStorageLimitsResponses[keyof Check
7061
6461
 
7062
6462
  export type GetDatabaseHealthData = {
7063
6463
  body?: never;
7064
- headers?: {
7065
- /**
7066
- * Authorization
7067
- */
7068
- authorization?: string | null;
7069
- };
7070
6464
  path: {
7071
6465
  /**
7072
6466
  * Graph Id
7073
- * Graph database identifier
7074
6467
  */
7075
6468
  graph_id: string;
7076
6469
  };
7077
- query?: {
7078
- /**
7079
- * Token
7080
- * JWT token for SSE authentication
7081
- */
7082
- token?: string | null;
7083
- };
6470
+ query?: never;
7084
6471
  url: '/v1/graphs/{graph_id}/health';
7085
6472
  };
7086
6473
 
@@ -7116,26 +6503,13 @@ export type GetDatabaseHealthResponse = GetDatabaseHealthResponses[keyof GetData
7116
6503
 
7117
6504
  export type GetDatabaseInfoData = {
7118
6505
  body?: never;
7119
- headers?: {
7120
- /**
7121
- * Authorization
7122
- */
7123
- authorization?: string | null;
7124
- };
7125
6506
  path: {
7126
6507
  /**
7127
6508
  * Graph Id
7128
- * Graph database identifier
7129
6509
  */
7130
6510
  graph_id: string;
7131
6511
  };
7132
- query?: {
7133
- /**
7134
- * Token
7135
- * JWT token for SSE authentication
7136
- */
7137
- token?: string | null;
7138
- };
6512
+ query?: never;
7139
6513
  url: '/v1/graphs/{graph_id}/info';
7140
6514
  };
7141
6515
 
@@ -7171,26 +6545,13 @@ export type GetDatabaseInfoResponse = GetDatabaseInfoResponses[keyof GetDatabase
7171
6545
 
7172
6546
  export type GetGraphLimitsData = {
7173
6547
  body?: never;
7174
- headers?: {
7175
- /**
7176
- * Authorization
7177
- */
7178
- authorization?: string | null;
7179
- };
7180
6548
  path: {
7181
6549
  /**
7182
6550
  * Graph Id
7183
- * Graph database identifier (user graph or shared repository)
7184
6551
  */
7185
6552
  graph_id: string;
7186
6553
  };
7187
- query?: {
7188
- /**
7189
- * Token
7190
- * JWT token for SSE authentication
7191
- */
7192
- token?: string | null;
7193
- };
6554
+ query?: never;
7194
6555
  url: '/v1/graphs/{graph_id}/limits';
7195
6556
  };
7196
6557
 
@@ -7229,26 +6590,13 @@ export type GetGraphLimitsResponse = GetGraphLimitsResponses[keyof GetGraphLimit
7229
6590
 
7230
6591
  export type ListSubgraphsData = {
7231
6592
  body?: never;
7232
- headers?: {
7233
- /**
7234
- * Authorization
7235
- */
7236
- authorization?: string | null;
7237
- };
7238
6593
  path: {
7239
6594
  /**
7240
6595
  * Graph Id
7241
- * Parent graph ID (e.g., 'kg1a2b3c4d5')
7242
6596
  */
7243
6597
  graph_id: string;
7244
6598
  };
7245
- query?: {
7246
- /**
7247
- * Token
7248
- * JWT token for SSE authentication
7249
- */
7250
- token?: string | null;
7251
- };
6599
+ query?: never;
7252
6600
  url: '/v1/graphs/{graph_id}/subgraphs';
7253
6601
  };
7254
6602
 
@@ -7272,26 +6620,13 @@ export type ListSubgraphsResponse2 = ListSubgraphsResponses[keyof ListSubgraphsR
7272
6620
 
7273
6621
  export type CreateSubgraphData = {
7274
6622
  body: CreateSubgraphRequest;
7275
- headers?: {
7276
- /**
7277
- * Authorization
7278
- */
7279
- authorization?: string | null;
7280
- };
7281
6623
  path: {
7282
6624
  /**
7283
6625
  * Graph Id
7284
- * Parent graph ID (e.g., 'kg1a2b3c4d5')
7285
6626
  */
7286
6627
  graph_id: string;
7287
6628
  };
7288
- query?: {
7289
- /**
7290
- * Token
7291
- * JWT token for SSE authentication
7292
- */
7293
- token?: string | null;
7294
- };
6629
+ query?: never;
7295
6630
  url: '/v1/graphs/{graph_id}/subgraphs';
7296
6631
  };
7297
6632
 
@@ -7315,16 +6650,9 @@ export type CreateSubgraphResponse = CreateSubgraphResponses[keyof CreateSubgrap
7315
6650
 
7316
6651
  export type DeleteSubgraphData = {
7317
6652
  body: DeleteSubgraphRequest;
7318
- headers?: {
7319
- /**
7320
- * Authorization
7321
- */
7322
- authorization?: string | null;
7323
- };
7324
6653
  path: {
7325
6654
  /**
7326
6655
  * Graph Id
7327
- * Parent graph identifier
7328
6656
  */
7329
6657
  graph_id: string;
7330
6658
  /**
@@ -7333,13 +6661,7 @@ export type DeleteSubgraphData = {
7333
6661
  */
7334
6662
  subgraph_id: string;
7335
6663
  };
7336
- query?: {
7337
- /**
7338
- * Token
7339
- * JWT token for SSE authentication
7340
- */
7341
- token?: string | null;
7342
- };
6664
+ query?: never;
7343
6665
  url: '/v1/graphs/{graph_id}/subgraphs/{subgraph_id}';
7344
6666
  };
7345
6667
 
@@ -7387,16 +6709,9 @@ export type DeleteSubgraphResponse2 = DeleteSubgraphResponses[keyof DeleteSubgra
7387
6709
 
7388
6710
  export type GetSubgraphInfoData = {
7389
6711
  body?: never;
7390
- headers?: {
7391
- /**
7392
- * Authorization
7393
- */
7394
- authorization?: string | null;
7395
- };
7396
6712
  path: {
7397
6713
  /**
7398
6714
  * Graph Id
7399
- * Parent graph identifier
7400
6715
  */
7401
6716
  graph_id: string;
7402
6717
  /**
@@ -7405,13 +6720,7 @@ export type GetSubgraphInfoData = {
7405
6720
  */
7406
6721
  subgraph_id: string;
7407
6722
  };
7408
- query?: {
7409
- /**
7410
- * Token
7411
- * JWT token for SSE authentication
7412
- */
7413
- token?: string | null;
7414
- };
6723
+ query?: never;
7415
6724
  url: '/v1/graphs/{graph_id}/subgraphs/{subgraph_id}/info';
7416
6725
  };
7417
6726
 
@@ -7455,26 +6764,13 @@ export type GetSubgraphInfoResponse = GetSubgraphInfoResponses[keyof GetSubgraph
7455
6764
 
7456
6765
  export type GetSubgraphQuotaData = {
7457
6766
  body?: never;
7458
- headers?: {
7459
- /**
7460
- * Authorization
7461
- */
7462
- authorization?: string | null;
7463
- };
7464
6767
  path: {
7465
6768
  /**
7466
- * Graph Id
7467
- * Parent graph identifier
7468
- */
7469
- graph_id: string;
7470
- };
7471
- query?: {
7472
- /**
7473
- * Token
7474
- * JWT token for SSE authentication
6769
+ * Graph Id
7475
6770
  */
7476
- token?: string | null;
6771
+ graph_id: string;
7477
6772
  };
6773
+ query?: never;
7478
6774
  url: '/v1/graphs/{graph_id}/subgraphs/quota';
7479
6775
  };
7480
6776
 
@@ -7512,38 +6808,25 @@ export type GetSubgraphQuotaResponses = {
7512
6808
 
7513
6809
  export type GetSubgraphQuotaResponse = GetSubgraphQuotaResponses[keyof GetSubgraphQuotaResponses];
7514
6810
 
7515
- export type ListTablesV1GraphsGraphIdTablesGetData = {
6811
+ export type ListTablesData = {
7516
6812
  body?: never;
7517
- headers?: {
7518
- /**
7519
- * Authorization
7520
- */
7521
- authorization?: string | null;
7522
- };
7523
6813
  path: {
7524
6814
  /**
7525
6815
  * Graph Id
7526
- * Graph database identifier
7527
6816
  */
7528
6817
  graph_id: string;
7529
6818
  };
7530
- query?: {
7531
- /**
7532
- * Token
7533
- * JWT token for SSE authentication
7534
- */
7535
- token?: string | null;
7536
- };
6819
+ query?: never;
7537
6820
  url: '/v1/graphs/{graph_id}/tables';
7538
6821
  };
7539
6822
 
7540
- export type ListTablesV1GraphsGraphIdTablesGetErrors = {
6823
+ export type ListTablesErrors = {
7541
6824
  /**
7542
6825
  * Not authenticated
7543
6826
  */
7544
6827
  401: unknown;
7545
6828
  /**
7546
- * Access denied to graph
6829
+ * Access denied - insufficient permissions for this graph
7547
6830
  */
7548
6831
  403: ErrorResponse;
7549
6832
  /**
@@ -7554,31 +6837,28 @@ export type ListTablesV1GraphsGraphIdTablesGetErrors = {
7554
6837
  * Validation Error
7555
6838
  */
7556
6839
  422: HttpValidationError;
6840
+ /**
6841
+ * Internal server error
6842
+ */
6843
+ 500: unknown;
7557
6844
  };
7558
6845
 
7559
- export type ListTablesV1GraphsGraphIdTablesGetError = ListTablesV1GraphsGraphIdTablesGetErrors[keyof ListTablesV1GraphsGraphIdTablesGetErrors];
6846
+ export type ListTablesError = ListTablesErrors[keyof ListTablesErrors];
7560
6847
 
7561
- export type ListTablesV1GraphsGraphIdTablesGetResponses = {
6848
+ export type ListTablesResponses = {
7562
6849
  /**
7563
- * Tables retrieved successfully
6850
+ * Tables retrieved successfully with full metrics
7564
6851
  */
7565
6852
  200: TableListResponse;
7566
6853
  };
7567
6854
 
7568
- export type ListTablesV1GraphsGraphIdTablesGetResponse = ListTablesV1GraphsGraphIdTablesGetResponses[keyof ListTablesV1GraphsGraphIdTablesGetResponses];
6855
+ export type ListTablesResponse = ListTablesResponses[keyof ListTablesResponses];
7569
6856
 
7570
- export type ListTableFilesV1GraphsGraphIdTablesTableNameFilesGetData = {
6857
+ export type ListTableFilesData = {
7571
6858
  body?: never;
7572
- headers?: {
7573
- /**
7574
- * Authorization
7575
- */
7576
- authorization?: string | null;
7577
- };
7578
6859
  path: {
7579
6860
  /**
7580
6861
  * Graph Id
7581
- * Graph database identifier
7582
6862
  */
7583
6863
  graph_id: string;
7584
6864
  /**
@@ -7587,23 +6867,17 @@ export type ListTableFilesV1GraphsGraphIdTablesTableNameFilesGetData = {
7587
6867
  */
7588
6868
  table_name: string;
7589
6869
  };
7590
- query?: {
7591
- /**
7592
- * Token
7593
- * JWT token for SSE authentication
7594
- */
7595
- token?: string | null;
7596
- };
6870
+ query?: never;
7597
6871
  url: '/v1/graphs/{graph_id}/tables/{table_name}/files';
7598
6872
  };
7599
6873
 
7600
- export type ListTableFilesV1GraphsGraphIdTablesTableNameFilesGetErrors = {
6874
+ export type ListTableFilesErrors = {
7601
6875
  /**
7602
6876
  * Not authenticated
7603
6877
  */
7604
6878
  401: unknown;
7605
6879
  /**
7606
- * Access denied to graph
6880
+ * Access denied - insufficient permissions for this graph
7607
6881
  */
7608
6882
  403: ErrorResponse;
7609
6883
  /**
@@ -7614,37 +6888,31 @@ export type ListTableFilesV1GraphsGraphIdTablesTableNameFilesGetErrors = {
7614
6888
  * Validation Error
7615
6889
  */
7616
6890
  422: HttpValidationError;
6891
+ /**
6892
+ * Internal server error
6893
+ */
6894
+ 500: unknown;
7617
6895
  };
7618
6896
 
7619
- export type ListTableFilesV1GraphsGraphIdTablesTableNameFilesGetError = ListTableFilesV1GraphsGraphIdTablesTableNameFilesGetErrors[keyof ListTableFilesV1GraphsGraphIdTablesTableNameFilesGetErrors];
6897
+ export type ListTableFilesError = ListTableFilesErrors[keyof ListTableFilesErrors];
7620
6898
 
7621
- export type ListTableFilesV1GraphsGraphIdTablesTableNameFilesGetResponses = {
6899
+ export type ListTableFilesResponses = {
7622
6900
  /**
7623
- * Response List Table Files V1 Graphs Graph Id Tables Table Name Files Get
7624
- * Files retrieved successfully
6901
+ * Files retrieved successfully with full metadata
7625
6902
  */
7626
- 200: {
7627
- [key: string]: unknown;
7628
- };
6903
+ 200: ListTableFilesResponse;
7629
6904
  };
7630
6905
 
7631
- export type ListTableFilesV1GraphsGraphIdTablesTableNameFilesGetResponse = ListTableFilesV1GraphsGraphIdTablesTableNameFilesGetResponses[keyof ListTableFilesV1GraphsGraphIdTablesTableNameFilesGetResponses];
6906
+ export type ListTableFilesResponse2 = ListTableFilesResponses[keyof ListTableFilesResponses];
7632
6907
 
7633
- export type GetUploadUrlV1GraphsGraphIdTablesTableNameFilesPostData = {
6908
+ export type GetUploadUrlData = {
7634
6909
  /**
7635
6910
  * Upload request
7636
6911
  */
7637
6912
  body: FileUploadRequest;
7638
- headers?: {
7639
- /**
7640
- * Authorization
7641
- */
7642
- authorization?: string | null;
7643
- };
7644
6913
  path: {
7645
6914
  /**
7646
6915
  * Graph Id
7647
- * Graph database identifier
7648
6916
  */
7649
6917
  graph_id: string;
7650
6918
  /**
@@ -7653,19 +6921,13 @@ export type GetUploadUrlV1GraphsGraphIdTablesTableNameFilesPostData = {
7653
6921
  */
7654
6922
  table_name: string;
7655
6923
  };
7656
- query?: {
7657
- /**
7658
- * Token
7659
- * JWT token for SSE authentication
7660
- */
7661
- token?: string | null;
7662
- };
6924
+ query?: never;
7663
6925
  url: '/v1/graphs/{graph_id}/tables/{table_name}/files';
7664
6926
  };
7665
6927
 
7666
- export type GetUploadUrlV1GraphsGraphIdTablesTableNameFilesPostErrors = {
6928
+ export type GetUploadUrlErrors = {
7667
6929
  /**
7668
- * Invalid file format or name
6930
+ * Invalid file format, name, or extension mismatch
7669
6931
  */
7670
6932
  400: ErrorResponse;
7671
6933
  /**
@@ -7673,42 +6935,39 @@ export type GetUploadUrlV1GraphsGraphIdTablesTableNameFilesPostErrors = {
7673
6935
  */
7674
6936
  401: unknown;
7675
6937
  /**
7676
- * Access denied to graph
6938
+ * Access denied - shared repositories or insufficient permissions
7677
6939
  */
7678
6940
  403: ErrorResponse;
7679
6941
  /**
7680
- * Graph or table not found
6942
+ * Graph not found
7681
6943
  */
7682
6944
  404: ErrorResponse;
7683
6945
  /**
7684
6946
  * Validation Error
7685
6947
  */
7686
6948
  422: HttpValidationError;
6949
+ /**
6950
+ * Internal server error
6951
+ */
6952
+ 500: unknown;
7687
6953
  };
7688
6954
 
7689
- export type GetUploadUrlV1GraphsGraphIdTablesTableNameFilesPostError = GetUploadUrlV1GraphsGraphIdTablesTableNameFilesPostErrors[keyof GetUploadUrlV1GraphsGraphIdTablesTableNameFilesPostErrors];
6955
+ export type GetUploadUrlError = GetUploadUrlErrors[keyof GetUploadUrlErrors];
7690
6956
 
7691
- export type GetUploadUrlV1GraphsGraphIdTablesTableNameFilesPostResponses = {
6957
+ export type GetUploadUrlResponses = {
7692
6958
  /**
7693
6959
  * Upload URL generated successfully
7694
6960
  */
7695
6961
  200: FileUploadResponse;
7696
6962
  };
7697
6963
 
7698
- export type GetUploadUrlV1GraphsGraphIdTablesTableNameFilesPostResponse = GetUploadUrlV1GraphsGraphIdTablesTableNameFilesPostResponses[keyof GetUploadUrlV1GraphsGraphIdTablesTableNameFilesPostResponses];
6964
+ export type GetUploadUrlResponse = GetUploadUrlResponses[keyof GetUploadUrlResponses];
7699
6965
 
7700
- export type DeleteFileV1GraphsGraphIdTablesFilesFileIdDeleteData = {
6966
+ export type DeleteFileData = {
7701
6967
  body?: never;
7702
- headers?: {
7703
- /**
7704
- * Authorization
7705
- */
7706
- authorization?: string | null;
7707
- };
7708
6968
  path: {
7709
6969
  /**
7710
6970
  * Graph Id
7711
- * Graph database identifier
7712
6971
  */
7713
6972
  graph_id: string;
7714
6973
  /**
@@ -7717,61 +6976,49 @@ export type DeleteFileV1GraphsGraphIdTablesFilesFileIdDeleteData = {
7717
6976
  */
7718
6977
  file_id: string;
7719
6978
  };
7720
- query?: {
7721
- /**
7722
- * Token
7723
- * JWT token for SSE authentication
7724
- */
7725
- token?: string | null;
7726
- };
6979
+ query?: never;
7727
6980
  url: '/v1/graphs/{graph_id}/tables/files/{file_id}';
7728
6981
  };
7729
6982
 
7730
- export type DeleteFileV1GraphsGraphIdTablesFilesFileIdDeleteErrors = {
6983
+ export type DeleteFileErrors = {
7731
6984
  /**
7732
6985
  * Not authenticated
7733
6986
  */
7734
6987
  401: unknown;
7735
6988
  /**
7736
- * Access denied to graph
6989
+ * Access denied - shared repositories or insufficient permissions
7737
6990
  */
7738
6991
  403: ErrorResponse;
7739
6992
  /**
7740
- * File not found
6993
+ * File not found in graph
7741
6994
  */
7742
6995
  404: ErrorResponse;
7743
6996
  /**
7744
6997
  * Validation Error
7745
6998
  */
7746
6999
  422: HttpValidationError;
7000
+ /**
7001
+ * Internal server error
7002
+ */
7003
+ 500: unknown;
7747
7004
  };
7748
7005
 
7749
- export type DeleteFileV1GraphsGraphIdTablesFilesFileIdDeleteError = DeleteFileV1GraphsGraphIdTablesFilesFileIdDeleteErrors[keyof DeleteFileV1GraphsGraphIdTablesFilesFileIdDeleteErrors];
7006
+ export type DeleteFileError = DeleteFileErrors[keyof DeleteFileErrors];
7750
7007
 
7751
- export type DeleteFileV1GraphsGraphIdTablesFilesFileIdDeleteResponses = {
7008
+ export type DeleteFileResponses = {
7752
7009
  /**
7753
- * Response Delete File V1 Graphs Graph Id Tables Files File Id Delete
7754
7010
  * File deleted successfully
7755
7011
  */
7756
- 200: {
7757
- [key: string]: unknown;
7758
- };
7012
+ 200: DeleteFileResponse;
7759
7013
  };
7760
7014
 
7761
- export type DeleteFileV1GraphsGraphIdTablesFilesFileIdDeleteResponse = DeleteFileV1GraphsGraphIdTablesFilesFileIdDeleteResponses[keyof DeleteFileV1GraphsGraphIdTablesFilesFileIdDeleteResponses];
7015
+ export type DeleteFileResponse2 = DeleteFileResponses[keyof DeleteFileResponses];
7762
7016
 
7763
- export type GetFileInfoV1GraphsGraphIdTablesFilesFileIdGetData = {
7017
+ export type GetFileInfoData = {
7764
7018
  body?: never;
7765
- headers?: {
7766
- /**
7767
- * Authorization
7768
- */
7769
- authorization?: string | null;
7770
- };
7771
7019
  path: {
7772
7020
  /**
7773
7021
  * Graph Id
7774
- * Graph database identifier
7775
7022
  */
7776
7023
  graph_id: string;
7777
7024
  /**
@@ -7780,27 +7027,21 @@ export type GetFileInfoV1GraphsGraphIdTablesFilesFileIdGetData = {
7780
7027
  */
7781
7028
  file_id: string;
7782
7029
  };
7783
- query?: {
7784
- /**
7785
- * Token
7786
- * JWT token for SSE authentication
7787
- */
7788
- token?: string | null;
7789
- };
7030
+ query?: never;
7790
7031
  url: '/v1/graphs/{graph_id}/tables/files/{file_id}';
7791
7032
  };
7792
7033
 
7793
- export type GetFileInfoV1GraphsGraphIdTablesFilesFileIdGetErrors = {
7034
+ export type GetFileInfoErrors = {
7794
7035
  /**
7795
7036
  * Not authenticated
7796
7037
  */
7797
7038
  401: unknown;
7798
7039
  /**
7799
- * Access denied to graph
7040
+ * Access denied - insufficient permissions for this graph
7800
7041
  */
7801
7042
  403: ErrorResponse;
7802
7043
  /**
7803
- * File not found
7044
+ * File not found in graph
7804
7045
  */
7805
7046
  404: ErrorResponse;
7806
7047
  /**
@@ -7809,35 +7050,25 @@ export type GetFileInfoV1GraphsGraphIdTablesFilesFileIdGetErrors = {
7809
7050
  422: HttpValidationError;
7810
7051
  };
7811
7052
 
7812
- export type GetFileInfoV1GraphsGraphIdTablesFilesFileIdGetError = GetFileInfoV1GraphsGraphIdTablesFilesFileIdGetErrors[keyof GetFileInfoV1GraphsGraphIdTablesFilesFileIdGetErrors];
7053
+ export type GetFileInfoError = GetFileInfoErrors[keyof GetFileInfoErrors];
7813
7054
 
7814
- export type GetFileInfoV1GraphsGraphIdTablesFilesFileIdGetResponses = {
7055
+ export type GetFileInfoResponses = {
7815
7056
  /**
7816
- * Response Get File Info V1 Graphs Graph Id Tables Files File Id Get
7817
- * File info retrieved successfully
7057
+ * File information retrieved successfully
7818
7058
  */
7819
- 200: {
7820
- [key: string]: unknown;
7821
- };
7059
+ 200: GetFileInfoResponse;
7822
7060
  };
7823
7061
 
7824
- export type GetFileInfoV1GraphsGraphIdTablesFilesFileIdGetResponse = GetFileInfoV1GraphsGraphIdTablesFilesFileIdGetResponses[keyof GetFileInfoV1GraphsGraphIdTablesFilesFileIdGetResponses];
7062
+ export type GetFileInfoResponse2 = GetFileInfoResponses[keyof GetFileInfoResponses];
7825
7063
 
7826
- export type UpdateFileV1GraphsGraphIdTablesFilesFileIdPatchData = {
7064
+ export type UpdateFileStatusData = {
7827
7065
  /**
7828
- * File update details
7066
+ * Status update
7829
7067
  */
7830
- body: FileUpdateRequest;
7831
- headers?: {
7832
- /**
7833
- * Authorization
7834
- */
7835
- authorization?: string | null;
7836
- };
7068
+ body: FileStatusUpdate;
7837
7069
  path: {
7838
7070
  /**
7839
7071
  * Graph Id
7840
- * Graph database identifier
7841
7072
  */
7842
7073
  graph_id: string;
7843
7074
  /**
@@ -7846,19 +7077,13 @@ export type UpdateFileV1GraphsGraphIdTablesFilesFileIdPatchData = {
7846
7077
  */
7847
7078
  file_id: string;
7848
7079
  };
7849
- query?: {
7850
- /**
7851
- * Token
7852
- * JWT token for SSE authentication
7853
- */
7854
- token?: string | null;
7855
- };
7080
+ query?: never;
7856
7081
  url: '/v1/graphs/{graph_id}/tables/files/{file_id}';
7857
7082
  };
7858
7083
 
7859
- export type UpdateFileV1GraphsGraphIdTablesFilesFileIdPatchErrors = {
7084
+ export type UpdateFileStatusErrors = {
7860
7085
  /**
7861
- * Invalid file size
7086
+ * Invalid status, file too large, or empty file
7862
7087
  */
7863
7088
  400: ErrorResponse;
7864
7089
  /**
@@ -7866,126 +7091,112 @@ export type UpdateFileV1GraphsGraphIdTablesFilesFileIdPatchErrors = {
7866
7091
  */
7867
7092
  401: unknown;
7868
7093
  /**
7869
- * Access denied to graph
7094
+ * Access denied - shared repositories or insufficient permissions
7870
7095
  */
7871
7096
  403: ErrorResponse;
7872
7097
  /**
7873
- * Graph or file not found
7098
+ * Graph, file, or S3 object not found
7874
7099
  */
7875
7100
  404: ErrorResponse;
7101
+ /**
7102
+ * Storage limit exceeded for tier
7103
+ */
7104
+ 413: ErrorResponse;
7876
7105
  /**
7877
7106
  * Validation Error
7878
7107
  */
7879
7108
  422: HttpValidationError;
7109
+ /**
7110
+ * Internal server error
7111
+ */
7112
+ 500: unknown;
7880
7113
  };
7881
7114
 
7882
- export type UpdateFileV1GraphsGraphIdTablesFilesFileIdPatchError = UpdateFileV1GraphsGraphIdTablesFilesFileIdPatchErrors[keyof UpdateFileV1GraphsGraphIdTablesFilesFileIdPatchErrors];
7115
+ export type UpdateFileStatusError = UpdateFileStatusErrors[keyof UpdateFileStatusErrors];
7883
7116
 
7884
- export type UpdateFileV1GraphsGraphIdTablesFilesFileIdPatchResponses = {
7117
+ export type UpdateFileStatusResponses = {
7885
7118
  /**
7886
- * Response Update File V1 Graphs Graph Id Tables Files File Id Patch
7887
- * File updated successfully
7119
+ * Response Updatefilestatus
7120
+ * File status updated successfully
7888
7121
  */
7889
7122
  200: {
7890
7123
  [key: string]: unknown;
7891
7124
  };
7892
7125
  };
7893
7126
 
7894
- export type UpdateFileV1GraphsGraphIdTablesFilesFileIdPatchResponse = UpdateFileV1GraphsGraphIdTablesFilesFileIdPatchResponses[keyof UpdateFileV1GraphsGraphIdTablesFilesFileIdPatchResponses];
7127
+ export type UpdateFileStatusResponse = UpdateFileStatusResponses[keyof UpdateFileStatusResponses];
7895
7128
 
7896
- export type IngestTablesV1GraphsGraphIdTablesIngestPostData = {
7129
+ export type IngestTablesData = {
7897
7130
  /**
7898
7131
  * Ingestion request
7899
7132
  */
7900
7133
  body: BulkIngestRequest;
7901
- headers?: {
7902
- /**
7903
- * Authorization
7904
- */
7905
- authorization?: string | null;
7906
- };
7907
7134
  path: {
7908
7135
  /**
7909
7136
  * Graph Id
7910
- * Graph database identifier
7911
7137
  */
7912
7138
  graph_id: string;
7913
7139
  };
7914
- query?: {
7915
- /**
7916
- * Token
7917
- * JWT token for SSE authentication
7918
- */
7919
- token?: string | null;
7920
- };
7140
+ query?: never;
7921
7141
  url: '/v1/graphs/{graph_id}/tables/ingest';
7922
7142
  };
7923
7143
 
7924
- export type IngestTablesV1GraphsGraphIdTablesIngestPostErrors = {
7144
+ export type IngestTablesErrors = {
7925
7145
  /**
7926
7146
  * Not authenticated
7927
7147
  */
7928
7148
  401: unknown;
7929
7149
  /**
7930
- * Access denied to graph
7150
+ * Access denied - shared repositories or insufficient permissions
7931
7151
  */
7932
7152
  403: ErrorResponse;
7933
7153
  /**
7934
7154
  * Graph not found
7935
7155
  */
7936
7156
  404: ErrorResponse;
7157
+ /**
7158
+ * Conflict - another ingestion is already in progress for this graph
7159
+ */
7160
+ 409: ErrorResponse;
7937
7161
  /**
7938
7162
  * Validation Error
7939
7163
  */
7940
7164
  422: HttpValidationError;
7941
7165
  /**
7942
- * Ingestion failed
7166
+ * Ingestion failed - check per-table results for details
7943
7167
  */
7944
7168
  500: ErrorResponse;
7945
7169
  };
7946
7170
 
7947
- export type IngestTablesV1GraphsGraphIdTablesIngestPostError = IngestTablesV1GraphsGraphIdTablesIngestPostErrors[keyof IngestTablesV1GraphsGraphIdTablesIngestPostErrors];
7171
+ export type IngestTablesError = IngestTablesErrors[keyof IngestTablesErrors];
7948
7172
 
7949
- export type IngestTablesV1GraphsGraphIdTablesIngestPostResponses = {
7173
+ export type IngestTablesResponses = {
7950
7174
  /**
7951
- * Ingestion completed
7175
+ * Ingestion completed with detailed per-table results
7952
7176
  */
7953
7177
  200: BulkIngestResponse;
7954
7178
  };
7955
7179
 
7956
- export type IngestTablesV1GraphsGraphIdTablesIngestPostResponse = IngestTablesV1GraphsGraphIdTablesIngestPostResponses[keyof IngestTablesV1GraphsGraphIdTablesIngestPostResponses];
7180
+ export type IngestTablesResponse = IngestTablesResponses[keyof IngestTablesResponses];
7957
7181
 
7958
- export type QueryTablesV1GraphsGraphIdTablesQueryPostData = {
7182
+ export type QueryTablesData = {
7959
7183
  /**
7960
7184
  * SQL query request
7961
7185
  */
7962
7186
  body: TableQueryRequest;
7963
- headers?: {
7964
- /**
7965
- * Authorization
7966
- */
7967
- authorization?: string | null;
7968
- };
7969
7187
  path: {
7970
7188
  /**
7971
7189
  * Graph Id
7972
- * Graph database identifier
7973
7190
  */
7974
7191
  graph_id: string;
7975
7192
  };
7976
- query?: {
7977
- /**
7978
- * Token
7979
- * JWT token for SSE authentication
7980
- */
7981
- token?: string | null;
7982
- };
7193
+ query?: never;
7983
7194
  url: '/v1/graphs/{graph_id}/tables/query';
7984
7195
  };
7985
7196
 
7986
- export type QueryTablesV1GraphsGraphIdTablesQueryPostErrors = {
7197
+ export type QueryTablesErrors = {
7987
7198
  /**
7988
- * Invalid SQL query
7199
+ * Invalid SQL query syntax or execution error
7989
7200
  */
7990
7201
  400: ErrorResponse;
7991
7202
  /**
@@ -7993,61 +7204,55 @@ export type QueryTablesV1GraphsGraphIdTablesQueryPostErrors = {
7993
7204
  */
7994
7205
  401: unknown;
7995
7206
  /**
7996
- * Access denied to graph
7207
+ * Access denied - shared repositories or insufficient permissions
7997
7208
  */
7998
7209
  403: ErrorResponse;
7999
7210
  /**
8000
7211
  * Graph not found
8001
7212
  */
8002
7213
  404: ErrorResponse;
7214
+ /**
7215
+ * Query timeout exceeded
7216
+ */
7217
+ 408: unknown;
8003
7218
  /**
8004
7219
  * Validation Error
8005
7220
  */
8006
7221
  422: HttpValidationError;
7222
+ /**
7223
+ * Internal server error
7224
+ */
7225
+ 500: unknown;
8007
7226
  };
8008
7227
 
8009
- export type QueryTablesV1GraphsGraphIdTablesQueryPostError = QueryTablesV1GraphsGraphIdTablesQueryPostErrors[keyof QueryTablesV1GraphsGraphIdTablesQueryPostErrors];
7228
+ export type QueryTablesError = QueryTablesErrors[keyof QueryTablesErrors];
8010
7229
 
8011
- export type QueryTablesV1GraphsGraphIdTablesQueryPostResponses = {
7230
+ export type QueryTablesResponses = {
8012
7231
  /**
8013
7232
  * Query executed successfully
8014
7233
  */
8015
7234
  200: TableQueryResponse;
8016
7235
  };
8017
7236
 
8018
- export type QueryTablesV1GraphsGraphIdTablesQueryPostResponse = QueryTablesV1GraphsGraphIdTablesQueryPostResponses[keyof QueryTablesV1GraphsGraphIdTablesQueryPostResponses];
7237
+ export type QueryTablesResponse = QueryTablesResponses[keyof QueryTablesResponses];
8019
7238
 
8020
7239
  export type GetGraphsData = {
8021
7240
  body?: never;
8022
- headers?: {
8023
- /**
8024
- * Authorization
8025
- */
8026
- authorization?: string | null;
8027
- };
8028
7241
  path?: never;
8029
- query?: {
8030
- /**
8031
- * Token
8032
- * JWT token for SSE authentication
8033
- */
8034
- token?: string | null;
8035
- };
7242
+ query?: never;
8036
7243
  url: '/v1/graphs';
8037
7244
  };
8038
7245
 
8039
7246
  export type GetGraphsErrors = {
8040
7247
  /**
8041
- * Validation Error
7248
+ * Error retrieving graphs
8042
7249
  */
8043
- 422: HttpValidationError;
7250
+ 500: unknown;
8044
7251
  };
8045
7252
 
8046
- export type GetGraphsError = GetGraphsErrors[keyof GetGraphsErrors];
8047
-
8048
7253
  export type GetGraphsResponses = {
8049
7254
  /**
8050
- * Successful Response
7255
+ * Graphs retrieved successfully
8051
7256
  */
8052
7257
  200: UserGraphsResponse;
8053
7258
  };
@@ -8056,20 +7261,8 @@ export type GetGraphsResponse = GetGraphsResponses[keyof GetGraphsResponses];
8056
7261
 
8057
7262
  export type CreateGraphData = {
8058
7263
  body: CreateGraphRequest;
8059
- headers?: {
8060
- /**
8061
- * Authorization
8062
- */
8063
- authorization?: string | null;
8064
- };
8065
7264
  path?: never;
8066
- query?: {
8067
- /**
8068
- * Token
8069
- * JWT token for SSE authentication
8070
- */
8071
- token?: string | null;
8072
- };
7265
+ query?: never;
8073
7266
  url: '/v1/graphs';
8074
7267
  };
8075
7268
 
@@ -8096,9 +7289,16 @@ export type GetAvailableExtensionsData = {
8096
7289
  url: '/v1/graphs/extensions';
8097
7290
  };
8098
7291
 
7292
+ export type GetAvailableExtensionsErrors = {
7293
+ /**
7294
+ * Failed to retrieve extensions
7295
+ */
7296
+ 500: unknown;
7297
+ };
7298
+
8099
7299
  export type GetAvailableExtensionsResponses = {
8100
7300
  /**
8101
- * Successful Response
7301
+ * Extensions retrieved successfully
8102
7302
  */
8103
7303
  200: AvailableExtensionsResponse;
8104
7304
  };
@@ -8107,25 +7307,13 @@ export type GetAvailableExtensionsResponse = GetAvailableExtensionsResponses[key
8107
7307
 
8108
7308
  export type SelectGraphData = {
8109
7309
  body?: never;
8110
- headers?: {
8111
- /**
8112
- * Authorization
8113
- */
8114
- authorization?: string | null;
8115
- };
8116
7310
  path: {
8117
7311
  /**
8118
7312
  * Graph Id
8119
7313
  */
8120
7314
  graph_id: string;
8121
7315
  };
8122
- query?: {
8123
- /**
8124
- * Token
8125
- * JWT token for SSE authentication
8126
- */
8127
- token?: string | null;
8128
- };
7316
+ query?: never;
8129
7317
  url: '/v1/graphs/{graph_id}/select';
8130
7318
  };
8131
7319
 
@@ -8242,12 +7430,6 @@ export type StreamOperationEventsResponses = {
8242
7430
 
8243
7431
  export type GetOperationStatusData = {
8244
7432
  body?: never;
8245
- headers?: {
8246
- /**
8247
- * Authorization
8248
- */
8249
- authorization?: string | null;
8250
- };
8251
7433
  path: {
8252
7434
  /**
8253
7435
  * Operation Id
@@ -8255,13 +7437,7 @@ export type GetOperationStatusData = {
8255
7437
  */
8256
7438
  operation_id: string;
8257
7439
  };
8258
- query?: {
8259
- /**
8260
- * Token
8261
- * JWT token for SSE authentication
8262
- */
8263
- token?: string | null;
8264
- };
7440
+ query?: never;
8265
7441
  url: '/v1/operations/{operation_id}/status';
8266
7442
  };
8267
7443
 
@@ -8300,12 +7476,6 @@ export type GetOperationStatusResponse = GetOperationStatusResponses[keyof GetOp
8300
7476
 
8301
7477
  export type CancelOperationData = {
8302
7478
  body?: never;
8303
- headers?: {
8304
- /**
8305
- * Authorization
8306
- */
8307
- authorization?: string | null;
8308
- };
8309
7479
  path: {
8310
7480
  /**
8311
7481
  * Operation Id
@@ -8313,13 +7483,7 @@ export type CancelOperationData = {
8313
7483
  */
8314
7484
  operation_id: string;
8315
7485
  };
8316
- query?: {
8317
- /**
8318
- * Token
8319
- * JWT token for SSE authentication
8320
- */
8321
- token?: string | null;
8322
- };
7486
+ query?: never;
8323
7487
  url: '/v1/operations/{operation_id}';
8324
7488
  };
8325
7489