@robosystems/client 0.2.4 → 0.2.6
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/package.json +1 -1
- package/sdk/sdk.gen.d.ts +141 -10
- package/sdk/sdk.gen.js +157 -10
- package/sdk/sdk.gen.ts +157 -10
- package/sdk/types.gen.d.ts +814 -19
- package/sdk/types.gen.ts +845 -19
- package/sdk.gen.d.ts +141 -10
- package/sdk.gen.js +157 -10
- package/sdk.gen.ts +157 -10
- package/types.gen.d.ts +814 -19
- package/types.gen.ts +845 -19
package/sdk/types.gen.d.ts
CHANGED
|
@@ -365,7 +365,7 @@ export type AgentResponse = {
|
|
|
365
365
|
} | null;
|
|
366
366
|
/**
|
|
367
367
|
* Confidence Score
|
|
368
|
-
* Confidence score of the response
|
|
368
|
+
* Confidence score of the response (0.0-1.0 scale)
|
|
369
369
|
*/
|
|
370
370
|
confidence_score?: number | null;
|
|
371
371
|
/**
|
|
@@ -455,6 +455,17 @@ export type AvailableExtensionsResponse = {
|
|
|
455
455
|
*/
|
|
456
456
|
extensions: Array<AvailableExtension>;
|
|
457
457
|
};
|
|
458
|
+
/**
|
|
459
|
+
* AvailableGraphTiersResponse
|
|
460
|
+
* Response containing available graph tiers.
|
|
461
|
+
*/
|
|
462
|
+
export type AvailableGraphTiersResponse = {
|
|
463
|
+
/**
|
|
464
|
+
* Tiers
|
|
465
|
+
* List of available tiers
|
|
466
|
+
*/
|
|
467
|
+
tiers: Array<GraphTierInfo>;
|
|
468
|
+
};
|
|
458
469
|
/**
|
|
459
470
|
* BackupCreateRequest
|
|
460
471
|
* Request model for creating a backup.
|
|
@@ -491,6 +502,58 @@ export type BackupCreateRequest = {
|
|
|
491
502
|
*/
|
|
492
503
|
schedule?: string | null;
|
|
493
504
|
};
|
|
505
|
+
/**
|
|
506
|
+
* BackupDownloadUrlResponse
|
|
507
|
+
* Response model for backup download URL generation.
|
|
508
|
+
*/
|
|
509
|
+
export type BackupDownloadUrlResponse = {
|
|
510
|
+
/**
|
|
511
|
+
* Download Url
|
|
512
|
+
* Pre-signed S3 URL for downloading the backup file
|
|
513
|
+
*/
|
|
514
|
+
download_url: string;
|
|
515
|
+
/**
|
|
516
|
+
* Expires In
|
|
517
|
+
* URL expiration time in seconds from now
|
|
518
|
+
*/
|
|
519
|
+
expires_in: number;
|
|
520
|
+
/**
|
|
521
|
+
* Expires At
|
|
522
|
+
* Unix timestamp when the URL expires
|
|
523
|
+
*/
|
|
524
|
+
expires_at: number;
|
|
525
|
+
/**
|
|
526
|
+
* Backup Id
|
|
527
|
+
* Backup identifier
|
|
528
|
+
*/
|
|
529
|
+
backup_id: string;
|
|
530
|
+
/**
|
|
531
|
+
* Graph Id
|
|
532
|
+
* Graph database identifier
|
|
533
|
+
*/
|
|
534
|
+
graph_id: string;
|
|
535
|
+
};
|
|
536
|
+
/**
|
|
537
|
+
* BackupLimits
|
|
538
|
+
* Backup operation limits.
|
|
539
|
+
*/
|
|
540
|
+
export type BackupLimits = {
|
|
541
|
+
/**
|
|
542
|
+
* Max Backup Size Gb
|
|
543
|
+
* Maximum backup size in GB
|
|
544
|
+
*/
|
|
545
|
+
max_backup_size_gb: number;
|
|
546
|
+
/**
|
|
547
|
+
* Backup Retention Days
|
|
548
|
+
* Backup retention period in days
|
|
549
|
+
*/
|
|
550
|
+
backup_retention_days: number;
|
|
551
|
+
/**
|
|
552
|
+
* Max Backups Per Day
|
|
553
|
+
* Maximum backups per day
|
|
554
|
+
*/
|
|
555
|
+
max_backups_per_day: number;
|
|
556
|
+
};
|
|
494
557
|
/**
|
|
495
558
|
* BackupListResponse
|
|
496
559
|
* Response model for backup list.
|
|
@@ -658,7 +721,7 @@ export type BackupStatsResponse = {
|
|
|
658
721
|
export type BatchAgentRequest = {
|
|
659
722
|
/**
|
|
660
723
|
* Queries
|
|
661
|
-
* List of queries to process
|
|
724
|
+
* List of queries to process (max 10)
|
|
662
725
|
*/
|
|
663
726
|
queries: Array<AgentRequest>;
|
|
664
727
|
/**
|
|
@@ -674,12 +737,12 @@ export type BatchAgentRequest = {
|
|
|
674
737
|
export type BatchAgentResponse = {
|
|
675
738
|
/**
|
|
676
739
|
* Results
|
|
677
|
-
* List of agent responses
|
|
740
|
+
* List of agent responses (includes successes and failures)
|
|
678
741
|
*/
|
|
679
742
|
results: Array<AgentResponse>;
|
|
680
743
|
/**
|
|
681
744
|
* Total Execution Time
|
|
682
|
-
* Total execution time
|
|
745
|
+
* Total execution time in seconds
|
|
683
746
|
*/
|
|
684
747
|
total_execution_time: number;
|
|
685
748
|
/**
|
|
@@ -904,6 +967,42 @@ export type ConnectionResponse = {
|
|
|
904
967
|
[key: string]: unknown;
|
|
905
968
|
};
|
|
906
969
|
};
|
|
970
|
+
/**
|
|
971
|
+
* CopyOperationLimits
|
|
972
|
+
* Copy/ingestion operation limits.
|
|
973
|
+
*/
|
|
974
|
+
export type CopyOperationLimits = {
|
|
975
|
+
/**
|
|
976
|
+
* Max File Size Gb
|
|
977
|
+
* Maximum file size in GB
|
|
978
|
+
*/
|
|
979
|
+
max_file_size_gb: number;
|
|
980
|
+
/**
|
|
981
|
+
* Timeout Seconds
|
|
982
|
+
* Operation timeout in seconds
|
|
983
|
+
*/
|
|
984
|
+
timeout_seconds: number;
|
|
985
|
+
/**
|
|
986
|
+
* Concurrent Operations
|
|
987
|
+
* Maximum concurrent operations
|
|
988
|
+
*/
|
|
989
|
+
concurrent_operations: number;
|
|
990
|
+
/**
|
|
991
|
+
* Max Files Per Operation
|
|
992
|
+
* Maximum files per operation
|
|
993
|
+
*/
|
|
994
|
+
max_files_per_operation: number;
|
|
995
|
+
/**
|
|
996
|
+
* Daily Copy Operations
|
|
997
|
+
* Daily operation limit
|
|
998
|
+
*/
|
|
999
|
+
daily_copy_operations: number;
|
|
1000
|
+
/**
|
|
1001
|
+
* Supported Formats
|
|
1002
|
+
* Supported file formats
|
|
1003
|
+
*/
|
|
1004
|
+
supported_formats: Array<string>;
|
|
1005
|
+
};
|
|
907
1006
|
/**
|
|
908
1007
|
* CreateAPIKeyRequest
|
|
909
1008
|
* Request model for creating a new API key.
|
|
@@ -962,6 +1061,10 @@ export type CreateConnectionRequest = {
|
|
|
962
1061
|
/**
|
|
963
1062
|
* CreateGraphRequest
|
|
964
1063
|
* Request model for creating a new graph.
|
|
1064
|
+
*
|
|
1065
|
+
* Use this to create either:
|
|
1066
|
+
* - **Entity graphs**: Standard graphs with entity schema and optional extensions
|
|
1067
|
+
* - **Custom graphs**: Generic graphs with fully custom schema definitions
|
|
965
1068
|
*/
|
|
966
1069
|
export type CreateGraphRequest = {
|
|
967
1070
|
/**
|
|
@@ -974,11 +1077,11 @@ export type CreateGraphRequest = {
|
|
|
974
1077
|
*/
|
|
975
1078
|
instance_tier?: string;
|
|
976
1079
|
/**
|
|
977
|
-
* Custom schema definition to apply
|
|
1080
|
+
* Custom schema definition to apply. If provided, creates a generic custom graph. If omitted, creates an entity graph using schema_extensions.
|
|
978
1081
|
*/
|
|
979
1082
|
custom_schema?: CustomSchemaDefinition | null;
|
|
980
1083
|
/**
|
|
981
|
-
* Optional initial entity to create in the graph. If provided,
|
|
1084
|
+
* Optional initial entity to create in the graph. If provided with entity graph, populates the first entity node.
|
|
982
1085
|
*/
|
|
983
1086
|
initial_entity?: InitialEntityData | null;
|
|
984
1087
|
/**
|
|
@@ -1029,6 +1132,32 @@ export type CreateSubgraphRequest = {
|
|
|
1029
1132
|
[key: string]: unknown;
|
|
1030
1133
|
} | null;
|
|
1031
1134
|
};
|
|
1135
|
+
/**
|
|
1136
|
+
* CreditLimits
|
|
1137
|
+
* AI credit limits (optional).
|
|
1138
|
+
*/
|
|
1139
|
+
export type CreditLimits = {
|
|
1140
|
+
/**
|
|
1141
|
+
* Monthly Ai Credits
|
|
1142
|
+
* Monthly AI credits allocation
|
|
1143
|
+
*/
|
|
1144
|
+
monthly_ai_credits: number;
|
|
1145
|
+
/**
|
|
1146
|
+
* Current Balance
|
|
1147
|
+
* Current credit balance
|
|
1148
|
+
*/
|
|
1149
|
+
current_balance: number;
|
|
1150
|
+
/**
|
|
1151
|
+
* Storage Billing Enabled
|
|
1152
|
+
* Whether storage billing is enabled
|
|
1153
|
+
*/
|
|
1154
|
+
storage_billing_enabled: boolean;
|
|
1155
|
+
/**
|
|
1156
|
+
* Storage Rate Per Gb Per Day
|
|
1157
|
+
* Storage billing rate per GB per day
|
|
1158
|
+
*/
|
|
1159
|
+
storage_rate_per_gb_per_day: number;
|
|
1160
|
+
};
|
|
1032
1161
|
/**
|
|
1033
1162
|
* CreditSummary
|
|
1034
1163
|
* Credit balance summary.
|
|
@@ -1149,7 +1278,11 @@ export type CreditsSummaryResponse = {
|
|
|
1149
1278
|
};
|
|
1150
1279
|
/**
|
|
1151
1280
|
* CustomSchemaDefinition
|
|
1152
|
-
* Custom schema definition for
|
|
1281
|
+
* Custom schema definition for generic graphs.
|
|
1282
|
+
*
|
|
1283
|
+
* This model allows you to define custom node types, relationship types, and properties
|
|
1284
|
+
* for graphs that don't fit the standard entity-based schema. Perfect for domain-specific
|
|
1285
|
+
* applications like inventory systems, org charts, project management, etc.
|
|
1153
1286
|
*/
|
|
1154
1287
|
export type CustomSchemaDefinition = {
|
|
1155
1288
|
/**
|
|
@@ -1169,7 +1302,7 @@ export type CustomSchemaDefinition = {
|
|
|
1169
1302
|
description?: string | null;
|
|
1170
1303
|
/**
|
|
1171
1304
|
* Extends
|
|
1172
|
-
* Base schema to extend (e.g., 'base')
|
|
1305
|
+
* Base schema to extend (e.g., 'base' for common utilities)
|
|
1173
1306
|
*/
|
|
1174
1307
|
extends?: string | null;
|
|
1175
1308
|
/**
|
|
@@ -1789,6 +1922,56 @@ export type GraphInfo = {
|
|
|
1789
1922
|
*/
|
|
1790
1923
|
createdAt: string;
|
|
1791
1924
|
};
|
|
1925
|
+
/**
|
|
1926
|
+
* GraphLimitsResponse
|
|
1927
|
+
* Response model for comprehensive graph operational limits.
|
|
1928
|
+
*/
|
|
1929
|
+
export type GraphLimitsResponse = {
|
|
1930
|
+
/**
|
|
1931
|
+
* Graph Id
|
|
1932
|
+
* Graph database identifier
|
|
1933
|
+
*/
|
|
1934
|
+
graph_id: string;
|
|
1935
|
+
/**
|
|
1936
|
+
* Subscription Tier
|
|
1937
|
+
* User's subscription tier
|
|
1938
|
+
*/
|
|
1939
|
+
subscription_tier: string;
|
|
1940
|
+
/**
|
|
1941
|
+
* Graph Tier
|
|
1942
|
+
* Graph's database tier
|
|
1943
|
+
*/
|
|
1944
|
+
graph_tier: string;
|
|
1945
|
+
/**
|
|
1946
|
+
* Is Shared Repository
|
|
1947
|
+
* Whether this is a shared repository
|
|
1948
|
+
*/
|
|
1949
|
+
is_shared_repository: boolean;
|
|
1950
|
+
/**
|
|
1951
|
+
* Storage limits and usage
|
|
1952
|
+
*/
|
|
1953
|
+
storage: StorageLimits;
|
|
1954
|
+
/**
|
|
1955
|
+
* Query operation limits
|
|
1956
|
+
*/
|
|
1957
|
+
queries: QueryLimits;
|
|
1958
|
+
/**
|
|
1959
|
+
* Copy/ingestion operation limits
|
|
1960
|
+
*/
|
|
1961
|
+
copy_operations: CopyOperationLimits;
|
|
1962
|
+
/**
|
|
1963
|
+
* Backup operation limits
|
|
1964
|
+
*/
|
|
1965
|
+
backups: BackupLimits;
|
|
1966
|
+
/**
|
|
1967
|
+
* API rate limits
|
|
1968
|
+
*/
|
|
1969
|
+
rate_limits: RateLimits;
|
|
1970
|
+
/**
|
|
1971
|
+
* AI credit limits (if applicable)
|
|
1972
|
+
*/
|
|
1973
|
+
credits?: CreditLimits | null;
|
|
1974
|
+
};
|
|
1792
1975
|
/**
|
|
1793
1976
|
* GraphMetadata
|
|
1794
1977
|
* Metadata for graph creation.
|
|
@@ -1879,6 +2062,293 @@ export type GraphMetricsResponse = {
|
|
|
1879
2062
|
[key: string]: unknown;
|
|
1880
2063
|
};
|
|
1881
2064
|
};
|
|
2065
|
+
/**
|
|
2066
|
+
* GraphSubscriptionTier
|
|
2067
|
+
* Information about a graph subscription tier.
|
|
2068
|
+
*/
|
|
2069
|
+
export type GraphSubscriptionTier = {
|
|
2070
|
+
/**
|
|
2071
|
+
* Name
|
|
2072
|
+
* Tier name
|
|
2073
|
+
*/
|
|
2074
|
+
name: string;
|
|
2075
|
+
/**
|
|
2076
|
+
* Display Name
|
|
2077
|
+
* Display name for UI
|
|
2078
|
+
*/
|
|
2079
|
+
display_name: string;
|
|
2080
|
+
/**
|
|
2081
|
+
* Description
|
|
2082
|
+
* Tier description
|
|
2083
|
+
*/
|
|
2084
|
+
description: string;
|
|
2085
|
+
/**
|
|
2086
|
+
* Monthly Price
|
|
2087
|
+
* Monthly price in USD
|
|
2088
|
+
*/
|
|
2089
|
+
monthly_price: number;
|
|
2090
|
+
/**
|
|
2091
|
+
* Monthly Credits
|
|
2092
|
+
* Monthly AI credits
|
|
2093
|
+
*/
|
|
2094
|
+
monthly_credits: number;
|
|
2095
|
+
/**
|
|
2096
|
+
* Storage Included Gb
|
|
2097
|
+
* Storage included in GB
|
|
2098
|
+
*/
|
|
2099
|
+
storage_included_gb: number;
|
|
2100
|
+
/**
|
|
2101
|
+
* Storage Overage Per Gb
|
|
2102
|
+
* Overage cost per GB per month
|
|
2103
|
+
*/
|
|
2104
|
+
storage_overage_per_gb: number;
|
|
2105
|
+
/**
|
|
2106
|
+
* Allowed Graph Tiers
|
|
2107
|
+
* Allowed graph tier identifiers
|
|
2108
|
+
*/
|
|
2109
|
+
allowed_graph_tiers: Array<string>;
|
|
2110
|
+
/**
|
|
2111
|
+
* Features
|
|
2112
|
+
* List of features
|
|
2113
|
+
*/
|
|
2114
|
+
features: Array<string>;
|
|
2115
|
+
/**
|
|
2116
|
+
* Backup Retention Days
|
|
2117
|
+
* Backup retention in days
|
|
2118
|
+
*/
|
|
2119
|
+
backup_retention_days: number;
|
|
2120
|
+
/**
|
|
2121
|
+
* Priority Support
|
|
2122
|
+
* Whether priority support is included
|
|
2123
|
+
*/
|
|
2124
|
+
priority_support: boolean;
|
|
2125
|
+
/**
|
|
2126
|
+
* Max Queries Per Hour
|
|
2127
|
+
* Maximum queries per hour
|
|
2128
|
+
*/
|
|
2129
|
+
max_queries_per_hour?: number | null;
|
|
2130
|
+
/**
|
|
2131
|
+
* Max Subgraphs
|
|
2132
|
+
* Maximum subgraphs
|
|
2133
|
+
*/
|
|
2134
|
+
max_subgraphs?: number | null;
|
|
2135
|
+
/**
|
|
2136
|
+
* Api Rate Multiplier
|
|
2137
|
+
* API rate multiplier
|
|
2138
|
+
*/
|
|
2139
|
+
api_rate_multiplier: number;
|
|
2140
|
+
/**
|
|
2141
|
+
* Backend
|
|
2142
|
+
* Database backend (kuzu or neo4j)
|
|
2143
|
+
*/
|
|
2144
|
+
backend: string;
|
|
2145
|
+
/**
|
|
2146
|
+
* Instance Type
|
|
2147
|
+
* Instance type
|
|
2148
|
+
*/
|
|
2149
|
+
instance_type?: string | null;
|
|
2150
|
+
};
|
|
2151
|
+
/**
|
|
2152
|
+
* GraphSubscriptions
|
|
2153
|
+
* Graph subscription offerings.
|
|
2154
|
+
*/
|
|
2155
|
+
export type GraphSubscriptions = {
|
|
2156
|
+
/**
|
|
2157
|
+
* Description
|
|
2158
|
+
* Description of graph subscriptions
|
|
2159
|
+
*/
|
|
2160
|
+
description: string;
|
|
2161
|
+
/**
|
|
2162
|
+
* Tiers
|
|
2163
|
+
* Available tiers
|
|
2164
|
+
*/
|
|
2165
|
+
tiers: Array<GraphSubscriptionTier>;
|
|
2166
|
+
/**
|
|
2167
|
+
* Storage information
|
|
2168
|
+
*/
|
|
2169
|
+
storage: StorageInfo;
|
|
2170
|
+
/**
|
|
2171
|
+
* Notes
|
|
2172
|
+
* Important notes
|
|
2173
|
+
*/
|
|
2174
|
+
notes: Array<string>;
|
|
2175
|
+
};
|
|
2176
|
+
/**
|
|
2177
|
+
* GraphTierBackup
|
|
2178
|
+
* Backup configuration for a tier.
|
|
2179
|
+
*/
|
|
2180
|
+
export type GraphTierBackup = {
|
|
2181
|
+
/**
|
|
2182
|
+
* Max Backup Size Gb
|
|
2183
|
+
* Maximum backup size in GB
|
|
2184
|
+
*/
|
|
2185
|
+
max_backup_size_gb: number;
|
|
2186
|
+
/**
|
|
2187
|
+
* Backup Retention Days
|
|
2188
|
+
* Backup retention period in days
|
|
2189
|
+
*/
|
|
2190
|
+
backup_retention_days: number;
|
|
2191
|
+
/**
|
|
2192
|
+
* Max Backups Per Day
|
|
2193
|
+
* Maximum backups per day
|
|
2194
|
+
*/
|
|
2195
|
+
max_backups_per_day: number;
|
|
2196
|
+
};
|
|
2197
|
+
/**
|
|
2198
|
+
* GraphTierCopyOperations
|
|
2199
|
+
* Copy operation limits for a tier.
|
|
2200
|
+
*/
|
|
2201
|
+
export type GraphTierCopyOperations = {
|
|
2202
|
+
/**
|
|
2203
|
+
* Max File Size Gb
|
|
2204
|
+
* Maximum file size in GB
|
|
2205
|
+
*/
|
|
2206
|
+
max_file_size_gb: number;
|
|
2207
|
+
/**
|
|
2208
|
+
* Timeout Seconds
|
|
2209
|
+
* Operation timeout in seconds
|
|
2210
|
+
*/
|
|
2211
|
+
timeout_seconds: number;
|
|
2212
|
+
/**
|
|
2213
|
+
* Concurrent Operations
|
|
2214
|
+
* Maximum concurrent operations
|
|
2215
|
+
*/
|
|
2216
|
+
concurrent_operations: number;
|
|
2217
|
+
/**
|
|
2218
|
+
* Max Files Per Operation
|
|
2219
|
+
* Maximum files per operation
|
|
2220
|
+
*/
|
|
2221
|
+
max_files_per_operation: number;
|
|
2222
|
+
/**
|
|
2223
|
+
* Daily Copy Operations
|
|
2224
|
+
* Daily operation limit
|
|
2225
|
+
*/
|
|
2226
|
+
daily_copy_operations: number;
|
|
2227
|
+
};
|
|
2228
|
+
/**
|
|
2229
|
+
* GraphTierInfo
|
|
2230
|
+
* Complete information about a graph database tier.
|
|
2231
|
+
*/
|
|
2232
|
+
export type GraphTierInfo = {
|
|
2233
|
+
/**
|
|
2234
|
+
* Tier
|
|
2235
|
+
* Tier identifier
|
|
2236
|
+
*/
|
|
2237
|
+
tier: string;
|
|
2238
|
+
/**
|
|
2239
|
+
* Name
|
|
2240
|
+
* Tier name
|
|
2241
|
+
*/
|
|
2242
|
+
name: string;
|
|
2243
|
+
/**
|
|
2244
|
+
* Display Name
|
|
2245
|
+
* Display name for UI
|
|
2246
|
+
*/
|
|
2247
|
+
display_name: string;
|
|
2248
|
+
/**
|
|
2249
|
+
* Description
|
|
2250
|
+
* Tier description
|
|
2251
|
+
*/
|
|
2252
|
+
description: string;
|
|
2253
|
+
/**
|
|
2254
|
+
* Backend
|
|
2255
|
+
* Database backend (kuzu or neo4j)
|
|
2256
|
+
*/
|
|
2257
|
+
backend: string;
|
|
2258
|
+
/**
|
|
2259
|
+
* Enabled
|
|
2260
|
+
* Whether tier is available
|
|
2261
|
+
*/
|
|
2262
|
+
enabled: boolean;
|
|
2263
|
+
/**
|
|
2264
|
+
* Max Subgraphs
|
|
2265
|
+
* Maximum subgraphs allowed
|
|
2266
|
+
*/
|
|
2267
|
+
max_subgraphs: number | null;
|
|
2268
|
+
/**
|
|
2269
|
+
* Storage Limit Gb
|
|
2270
|
+
* Storage limit in GB
|
|
2271
|
+
*/
|
|
2272
|
+
storage_limit_gb: number;
|
|
2273
|
+
/**
|
|
2274
|
+
* Monthly Credits
|
|
2275
|
+
* Monthly AI credits
|
|
2276
|
+
*/
|
|
2277
|
+
monthly_credits: number;
|
|
2278
|
+
/**
|
|
2279
|
+
* Api Rate Multiplier
|
|
2280
|
+
* API rate limit multiplier
|
|
2281
|
+
*/
|
|
2282
|
+
api_rate_multiplier: number;
|
|
2283
|
+
/**
|
|
2284
|
+
* Monthly Price
|
|
2285
|
+
* Monthly price in USD
|
|
2286
|
+
*/
|
|
2287
|
+
monthly_price?: number | null;
|
|
2288
|
+
/**
|
|
2289
|
+
* Features
|
|
2290
|
+
* List of tier features
|
|
2291
|
+
*/
|
|
2292
|
+
features: Array<string>;
|
|
2293
|
+
/**
|
|
2294
|
+
* Instance specifications
|
|
2295
|
+
*/
|
|
2296
|
+
instance: GraphTierInstance;
|
|
2297
|
+
/**
|
|
2298
|
+
* Resource limits
|
|
2299
|
+
*/
|
|
2300
|
+
limits: GraphTierLimits;
|
|
2301
|
+
};
|
|
2302
|
+
/**
|
|
2303
|
+
* GraphTierInstance
|
|
2304
|
+
* Instance specifications for a tier.
|
|
2305
|
+
*/
|
|
2306
|
+
export type GraphTierInstance = {
|
|
2307
|
+
/**
|
|
2308
|
+
* Type
|
|
2309
|
+
* Instance type identifier
|
|
2310
|
+
*/
|
|
2311
|
+
type: string;
|
|
2312
|
+
/**
|
|
2313
|
+
* Memory Mb
|
|
2314
|
+
* Memory in megabytes
|
|
2315
|
+
*/
|
|
2316
|
+
memory_mb: number;
|
|
2317
|
+
/**
|
|
2318
|
+
* Databases Per Instance
|
|
2319
|
+
* Databases per instance
|
|
2320
|
+
*/
|
|
2321
|
+
databases_per_instance: number;
|
|
2322
|
+
};
|
|
2323
|
+
/**
|
|
2324
|
+
* GraphTierLimits
|
|
2325
|
+
* Resource limits for a tier.
|
|
2326
|
+
*/
|
|
2327
|
+
export type GraphTierLimits = {
|
|
2328
|
+
/**
|
|
2329
|
+
* Storage Gb
|
|
2330
|
+
* Storage limit in GB
|
|
2331
|
+
*/
|
|
2332
|
+
storage_gb: number;
|
|
2333
|
+
/**
|
|
2334
|
+
* Monthly Credits
|
|
2335
|
+
* Monthly credit allocation
|
|
2336
|
+
*/
|
|
2337
|
+
monthly_credits: number;
|
|
2338
|
+
/**
|
|
2339
|
+
* Max Subgraphs
|
|
2340
|
+
* Maximum subgraphs (null for unlimited)
|
|
2341
|
+
*/
|
|
2342
|
+
max_subgraphs: number | null;
|
|
2343
|
+
/**
|
|
2344
|
+
* Copy operation limits
|
|
2345
|
+
*/
|
|
2346
|
+
copy_operations: GraphTierCopyOperations;
|
|
2347
|
+
/**
|
|
2348
|
+
* Backup configuration
|
|
2349
|
+
*/
|
|
2350
|
+
backup: GraphTierBackup;
|
|
2351
|
+
};
|
|
1882
2352
|
/**
|
|
1883
2353
|
* GraphUsageResponse
|
|
1884
2354
|
* Response model for graph usage statistics.
|
|
@@ -1950,7 +2420,10 @@ export type HealthStatus = {
|
|
|
1950
2420
|
};
|
|
1951
2421
|
/**
|
|
1952
2422
|
* InitialEntityData
|
|
1953
|
-
* Initial entity data for graph creation.
|
|
2423
|
+
* Initial entity data for entity-focused graph creation.
|
|
2424
|
+
*
|
|
2425
|
+
* When creating an entity graph with an initial entity node, this model defines
|
|
2426
|
+
* the entity's identifying information and metadata.
|
|
1954
2427
|
*/
|
|
1955
2428
|
export type InitialEntityData = {
|
|
1956
2429
|
/**
|
|
@@ -2225,6 +2698,84 @@ export type OAuthInitResponse = {
|
|
|
2225
2698
|
*/
|
|
2226
2699
|
expires_at: string;
|
|
2227
2700
|
};
|
|
2701
|
+
/**
|
|
2702
|
+
* OfferingRepositoryPlan
|
|
2703
|
+
* Information about a repository plan.
|
|
2704
|
+
*/
|
|
2705
|
+
export type OfferingRepositoryPlan = {
|
|
2706
|
+
/**
|
|
2707
|
+
* Plan
|
|
2708
|
+
* Plan identifier
|
|
2709
|
+
*/
|
|
2710
|
+
plan: string;
|
|
2711
|
+
/**
|
|
2712
|
+
* Name
|
|
2713
|
+
* Plan name
|
|
2714
|
+
*/
|
|
2715
|
+
name: string;
|
|
2716
|
+
/**
|
|
2717
|
+
* Monthly Price
|
|
2718
|
+
* Monthly price in USD
|
|
2719
|
+
*/
|
|
2720
|
+
monthly_price: number;
|
|
2721
|
+
/**
|
|
2722
|
+
* Monthly Credits
|
|
2723
|
+
* Monthly credit allocation
|
|
2724
|
+
*/
|
|
2725
|
+
monthly_credits: number;
|
|
2726
|
+
/**
|
|
2727
|
+
* Access Level
|
|
2728
|
+
* Access level
|
|
2729
|
+
*/
|
|
2730
|
+
access_level: string;
|
|
2731
|
+
/**
|
|
2732
|
+
* Features
|
|
2733
|
+
* List of features
|
|
2734
|
+
*/
|
|
2735
|
+
features: Array<string>;
|
|
2736
|
+
/**
|
|
2737
|
+
* Rate Limits
|
|
2738
|
+
* Rate limits for this plan
|
|
2739
|
+
*/
|
|
2740
|
+
rate_limits?: {
|
|
2741
|
+
[key: string]: number | null;
|
|
2742
|
+
} | null;
|
|
2743
|
+
};
|
|
2744
|
+
/**
|
|
2745
|
+
* OperationCosts
|
|
2746
|
+
* Operation cost information.
|
|
2747
|
+
*/
|
|
2748
|
+
export type OperationCosts = {
|
|
2749
|
+
/**
|
|
2750
|
+
* Description
|
|
2751
|
+
* Description of operation costs
|
|
2752
|
+
*/
|
|
2753
|
+
description: string;
|
|
2754
|
+
/**
|
|
2755
|
+
* Ai Operations
|
|
2756
|
+
* Base costs for AI operations
|
|
2757
|
+
*/
|
|
2758
|
+
ai_operations: {
|
|
2759
|
+
[key: string]: number;
|
|
2760
|
+
};
|
|
2761
|
+
/**
|
|
2762
|
+
* Token Pricing
|
|
2763
|
+
* Token pricing by model
|
|
2764
|
+
*/
|
|
2765
|
+
token_pricing: {
|
|
2766
|
+
[key: string]: TokenPricing;
|
|
2767
|
+
};
|
|
2768
|
+
/**
|
|
2769
|
+
* Included Operations
|
|
2770
|
+
* Operations that don't consume credits
|
|
2771
|
+
*/
|
|
2772
|
+
included_operations: Array<string>;
|
|
2773
|
+
/**
|
|
2774
|
+
* Notes
|
|
2775
|
+
* Important notes about costs
|
|
2776
|
+
*/
|
|
2777
|
+
notes: Array<string>;
|
|
2778
|
+
};
|
|
2228
2779
|
/**
|
|
2229
2780
|
* PasswordCheckRequest
|
|
2230
2781
|
* Password strength check request model.
|
|
@@ -2327,6 +2878,32 @@ export type PlaidConnectionConfig = {
|
|
|
2327
2878
|
[key: string]: unknown;
|
|
2328
2879
|
}> | null;
|
|
2329
2880
|
};
|
|
2881
|
+
/**
|
|
2882
|
+
* QueryLimits
|
|
2883
|
+
* Query operation limits.
|
|
2884
|
+
*/
|
|
2885
|
+
export type QueryLimits = {
|
|
2886
|
+
/**
|
|
2887
|
+
* Max Timeout Seconds
|
|
2888
|
+
* Maximum query timeout in seconds
|
|
2889
|
+
*/
|
|
2890
|
+
max_timeout_seconds: number;
|
|
2891
|
+
/**
|
|
2892
|
+
* Chunk Size
|
|
2893
|
+
* Maximum chunk size for result streaming
|
|
2894
|
+
*/
|
|
2895
|
+
chunk_size: number;
|
|
2896
|
+
/**
|
|
2897
|
+
* Max Rows Per Query
|
|
2898
|
+
* Maximum rows returned per query
|
|
2899
|
+
*/
|
|
2900
|
+
max_rows_per_query: number;
|
|
2901
|
+
/**
|
|
2902
|
+
* Concurrent Queries
|
|
2903
|
+
* Maximum concurrent queries allowed
|
|
2904
|
+
*/
|
|
2905
|
+
concurrent_queries: number;
|
|
2906
|
+
};
|
|
2330
2907
|
/**
|
|
2331
2908
|
* QuickBooksConnectionConfig
|
|
2332
2909
|
* QuickBooks-specific connection configuration.
|
|
@@ -2343,6 +2920,27 @@ export type QuickBooksConnectionConfig = {
|
|
|
2343
2920
|
*/
|
|
2344
2921
|
refresh_token?: string | null;
|
|
2345
2922
|
};
|
|
2923
|
+
/**
|
|
2924
|
+
* RateLimits
|
|
2925
|
+
* API rate limits.
|
|
2926
|
+
*/
|
|
2927
|
+
export type RateLimits = {
|
|
2928
|
+
/**
|
|
2929
|
+
* Requests Per Minute
|
|
2930
|
+
* Requests per minute limit
|
|
2931
|
+
*/
|
|
2932
|
+
requests_per_minute: number;
|
|
2933
|
+
/**
|
|
2934
|
+
* Requests Per Hour
|
|
2935
|
+
* Requests per hour limit
|
|
2936
|
+
*/
|
|
2937
|
+
requests_per_hour: number;
|
|
2938
|
+
/**
|
|
2939
|
+
* Burst Capacity
|
|
2940
|
+
* Burst capacity for short spikes
|
|
2941
|
+
*/
|
|
2942
|
+
burst_capacity: number;
|
|
2943
|
+
};
|
|
2346
2944
|
/**
|
|
2347
2945
|
* RegisterRequest
|
|
2348
2946
|
* Registration request model.
|
|
@@ -2394,11 +2992,68 @@ export type RepositoryCreditsResponse = {
|
|
|
2394
2992
|
*/
|
|
2395
2993
|
credits?: CreditSummary | null;
|
|
2396
2994
|
};
|
|
2995
|
+
/**
|
|
2996
|
+
* RepositoryInfo
|
|
2997
|
+
* Information about a shared repository.
|
|
2998
|
+
*/
|
|
2999
|
+
export type RepositoryInfo = {
|
|
3000
|
+
/**
|
|
3001
|
+
* Type
|
|
3002
|
+
* Repository type identifier
|
|
3003
|
+
*/
|
|
3004
|
+
type: string;
|
|
3005
|
+
/**
|
|
3006
|
+
* Name
|
|
3007
|
+
* Repository name
|
|
3008
|
+
*/
|
|
3009
|
+
name: string;
|
|
3010
|
+
/**
|
|
3011
|
+
* Description
|
|
3012
|
+
* Repository description
|
|
3013
|
+
*/
|
|
3014
|
+
description: string;
|
|
3015
|
+
/**
|
|
3016
|
+
* Enabled
|
|
3017
|
+
* Whether repository is enabled
|
|
3018
|
+
*/
|
|
3019
|
+
enabled: boolean;
|
|
3020
|
+
/**
|
|
3021
|
+
* Coming Soon
|
|
3022
|
+
* Whether repository is coming soon
|
|
3023
|
+
*/
|
|
3024
|
+
coming_soon: boolean;
|
|
3025
|
+
/**
|
|
3026
|
+
* Plans
|
|
3027
|
+
* Available plans
|
|
3028
|
+
*/
|
|
3029
|
+
plans: Array<OfferingRepositoryPlan>;
|
|
3030
|
+
};
|
|
2397
3031
|
/**
|
|
2398
3032
|
* RepositoryPlan
|
|
2399
3033
|
* Repository access plans for shared data.
|
|
2400
3034
|
*/
|
|
2401
3035
|
export type RepositoryPlan = 'starter' | 'advanced' | 'unlimited';
|
|
3036
|
+
/**
|
|
3037
|
+
* RepositorySubscriptions
|
|
3038
|
+
* Repository subscription offerings.
|
|
3039
|
+
*/
|
|
3040
|
+
export type RepositorySubscriptions = {
|
|
3041
|
+
/**
|
|
3042
|
+
* Description
|
|
3043
|
+
* Description of repository subscriptions
|
|
3044
|
+
*/
|
|
3045
|
+
description: string;
|
|
3046
|
+
/**
|
|
3047
|
+
* Repositories
|
|
3048
|
+
* Available repositories
|
|
3049
|
+
*/
|
|
3050
|
+
repositories: Array<RepositoryInfo>;
|
|
3051
|
+
/**
|
|
3052
|
+
* Notes
|
|
3053
|
+
* Important notes
|
|
3054
|
+
*/
|
|
3055
|
+
notes: Array<string>;
|
|
3056
|
+
};
|
|
2402
3057
|
/**
|
|
2403
3058
|
* RepositoryType
|
|
2404
3059
|
* Types of shared repositories.
|
|
@@ -2680,6 +3335,74 @@ export type SelectionCriteria = {
|
|
|
2680
3335
|
*/
|
|
2681
3336
|
excluded_agents?: Array<string>;
|
|
2682
3337
|
};
|
|
3338
|
+
/**
|
|
3339
|
+
* ServiceOfferingSummary
|
|
3340
|
+
* Summary of service offerings.
|
|
3341
|
+
*/
|
|
3342
|
+
export type ServiceOfferingSummary = {
|
|
3343
|
+
/**
|
|
3344
|
+
* Total Graph Tiers
|
|
3345
|
+
* Total number of graph tiers
|
|
3346
|
+
*/
|
|
3347
|
+
total_graph_tiers: number;
|
|
3348
|
+
/**
|
|
3349
|
+
* Total Repositories
|
|
3350
|
+
* Total number of repositories
|
|
3351
|
+
*/
|
|
3352
|
+
total_repositories: number;
|
|
3353
|
+
/**
|
|
3354
|
+
* Enabled Repositories
|
|
3355
|
+
* Number of enabled repositories
|
|
3356
|
+
*/
|
|
3357
|
+
enabled_repositories: number;
|
|
3358
|
+
/**
|
|
3359
|
+
* Coming Soon Repositories
|
|
3360
|
+
* Number of coming soon repositories
|
|
3361
|
+
*/
|
|
3362
|
+
coming_soon_repositories: number;
|
|
3363
|
+
};
|
|
3364
|
+
/**
|
|
3365
|
+
* ServiceOfferingsResponse
|
|
3366
|
+
* Complete service offerings response.
|
|
3367
|
+
*/
|
|
3368
|
+
export type ServiceOfferingsResponse = {
|
|
3369
|
+
/**
|
|
3370
|
+
* Graph subscription offerings
|
|
3371
|
+
*/
|
|
3372
|
+
graph_subscriptions: GraphSubscriptions;
|
|
3373
|
+
/**
|
|
3374
|
+
* Repository subscription offerings
|
|
3375
|
+
*/
|
|
3376
|
+
repository_subscriptions: RepositorySubscriptions;
|
|
3377
|
+
/**
|
|
3378
|
+
* Operation cost information
|
|
3379
|
+
*/
|
|
3380
|
+
operation_costs: OperationCosts;
|
|
3381
|
+
/**
|
|
3382
|
+
* Summary information
|
|
3383
|
+
*/
|
|
3384
|
+
summary: ServiceOfferingSummary;
|
|
3385
|
+
};
|
|
3386
|
+
/**
|
|
3387
|
+
* StorageInfo
|
|
3388
|
+
* Storage pricing information.
|
|
3389
|
+
*/
|
|
3390
|
+
export type StorageInfo = {
|
|
3391
|
+
/**
|
|
3392
|
+
* Included Per Tier
|
|
3393
|
+
* Storage included per tier in GB
|
|
3394
|
+
*/
|
|
3395
|
+
included_per_tier: {
|
|
3396
|
+
[key: string]: number;
|
|
3397
|
+
};
|
|
3398
|
+
/**
|
|
3399
|
+
* Overage Pricing
|
|
3400
|
+
* Overage pricing per GB per tier
|
|
3401
|
+
*/
|
|
3402
|
+
overage_pricing: {
|
|
3403
|
+
[key: string]: number;
|
|
3404
|
+
};
|
|
3405
|
+
};
|
|
2683
3406
|
/**
|
|
2684
3407
|
* StorageLimitResponse
|
|
2685
3408
|
* Storage limit information response.
|
|
@@ -2722,6 +3445,27 @@ export type StorageLimitResponse = {
|
|
|
2722
3445
|
*/
|
|
2723
3446
|
recommendations?: Array<string> | null;
|
|
2724
3447
|
};
|
|
3448
|
+
/**
|
|
3449
|
+
* StorageLimits
|
|
3450
|
+
* Storage limits information.
|
|
3451
|
+
*/
|
|
3452
|
+
export type StorageLimits = {
|
|
3453
|
+
/**
|
|
3454
|
+
* Current Usage Gb
|
|
3455
|
+
* Current storage usage in GB
|
|
3456
|
+
*/
|
|
3457
|
+
current_usage_gb?: number | null;
|
|
3458
|
+
/**
|
|
3459
|
+
* Max Storage Gb
|
|
3460
|
+
* Maximum storage limit in GB
|
|
3461
|
+
*/
|
|
3462
|
+
max_storage_gb: number;
|
|
3463
|
+
/**
|
|
3464
|
+
* Approaching Limit
|
|
3465
|
+
* Whether approaching storage limit (>80%)
|
|
3466
|
+
*/
|
|
3467
|
+
approaching_limit: boolean;
|
|
3468
|
+
};
|
|
2725
3469
|
/**
|
|
2726
3470
|
* SubgraphQuotaResponse
|
|
2727
3471
|
* Response model for subgraph quota information.
|
|
@@ -3148,6 +3892,22 @@ export type TierUpgradeRequest = {
|
|
|
3148
3892
|
*/
|
|
3149
3893
|
new_plan: RepositoryPlan;
|
|
3150
3894
|
};
|
|
3895
|
+
/**
|
|
3896
|
+
* TokenPricing
|
|
3897
|
+
* AI token pricing for a specific model.
|
|
3898
|
+
*/
|
|
3899
|
+
export type TokenPricing = {
|
|
3900
|
+
/**
|
|
3901
|
+
* Input Per 1K Tokens
|
|
3902
|
+
* Credits per 1K input tokens
|
|
3903
|
+
*/
|
|
3904
|
+
input_per_1k_tokens: number;
|
|
3905
|
+
/**
|
|
3906
|
+
* Output Per 1K Tokens
|
|
3907
|
+
* Credits per 1K output tokens
|
|
3908
|
+
*/
|
|
3909
|
+
output_per_1k_tokens: number;
|
|
3910
|
+
};
|
|
3151
3911
|
/**
|
|
3152
3912
|
* TransactionSummaryResponse
|
|
3153
3913
|
* Summary of transactions by operation type.
|
|
@@ -5218,12 +5978,9 @@ export type GetBackupDownloadUrlErrors = {
|
|
|
5218
5978
|
export type GetBackupDownloadUrlError = GetBackupDownloadUrlErrors[keyof GetBackupDownloadUrlErrors];
|
|
5219
5979
|
export type GetBackupDownloadUrlResponses = {
|
|
5220
5980
|
/**
|
|
5221
|
-
* Response Getbackupdownloadurl
|
|
5222
5981
|
* Download URL generated successfully
|
|
5223
5982
|
*/
|
|
5224
|
-
200:
|
|
5225
|
-
[key: string]: unknown;
|
|
5226
|
-
};
|
|
5983
|
+
200: BackupDownloadUrlResponse;
|
|
5227
5984
|
};
|
|
5228
5985
|
export type GetBackupDownloadUrlResponse = GetBackupDownloadUrlResponses[keyof GetBackupDownloadUrlResponses];
|
|
5229
5986
|
export type RestoreBackupData = {
|
|
@@ -5434,12 +6191,23 @@ export type ExecuteCypherQueryResponses = {
|
|
|
5434
6191
|
/**
|
|
5435
6192
|
* Query executed successfully
|
|
5436
6193
|
*/
|
|
5437
|
-
200:
|
|
6194
|
+
200: {
|
|
6195
|
+
success?: boolean;
|
|
6196
|
+
data?: Array<{
|
|
6197
|
+
[key: string]: unknown;
|
|
6198
|
+
}>;
|
|
6199
|
+
columns?: Array<string>;
|
|
6200
|
+
row_count?: number;
|
|
6201
|
+
execution_time_ms?: number;
|
|
6202
|
+
graph_id?: string;
|
|
6203
|
+
timestamp?: string;
|
|
6204
|
+
};
|
|
5438
6205
|
/**
|
|
5439
6206
|
* Query queued for execution
|
|
5440
6207
|
*/
|
|
5441
6208
|
202: unknown;
|
|
5442
6209
|
};
|
|
6210
|
+
export type ExecuteCypherQueryResponse = ExecuteCypherQueryResponses[keyof ExecuteCypherQueryResponses];
|
|
5443
6211
|
export type GetGraphSchemaData = {
|
|
5444
6212
|
body?: never;
|
|
5445
6213
|
path: {
|
|
@@ -6105,12 +6873,9 @@ export type GetGraphLimitsErrors = {
|
|
|
6105
6873
|
export type GetGraphLimitsError = GetGraphLimitsErrors[keyof GetGraphLimitsErrors];
|
|
6106
6874
|
export type GetGraphLimitsResponses = {
|
|
6107
6875
|
/**
|
|
6108
|
-
* Response Getgraphlimits
|
|
6109
6876
|
* Limits retrieved successfully
|
|
6110
6877
|
*/
|
|
6111
|
-
200:
|
|
6112
|
-
[key: string]: unknown;
|
|
6113
|
-
};
|
|
6878
|
+
200: GraphLimitsResponse;
|
|
6114
6879
|
};
|
|
6115
6880
|
export type GetGraphLimitsResponse = GetGraphLimitsResponses[keyof GetGraphLimitsResponses];
|
|
6116
6881
|
export type ListSubgraphsData = {
|
|
@@ -6753,6 +7518,35 @@ export type GetAvailableExtensionsResponses = {
|
|
|
6753
7518
|
200: AvailableExtensionsResponse;
|
|
6754
7519
|
};
|
|
6755
7520
|
export type GetAvailableExtensionsResponse = GetAvailableExtensionsResponses[keyof GetAvailableExtensionsResponses];
|
|
7521
|
+
export type GetAvailableGraphTiersData = {
|
|
7522
|
+
body?: never;
|
|
7523
|
+
path?: never;
|
|
7524
|
+
query?: {
|
|
7525
|
+
/**
|
|
7526
|
+
* Include Disabled
|
|
7527
|
+
*/
|
|
7528
|
+
include_disabled?: boolean;
|
|
7529
|
+
};
|
|
7530
|
+
url: '/v1/graphs/tiers';
|
|
7531
|
+
};
|
|
7532
|
+
export type GetAvailableGraphTiersErrors = {
|
|
7533
|
+
/**
|
|
7534
|
+
* Validation Error
|
|
7535
|
+
*/
|
|
7536
|
+
422: HttpValidationError;
|
|
7537
|
+
/**
|
|
7538
|
+
* Failed to retrieve tiers
|
|
7539
|
+
*/
|
|
7540
|
+
500: unknown;
|
|
7541
|
+
};
|
|
7542
|
+
export type GetAvailableGraphTiersError = GetAvailableGraphTiersErrors[keyof GetAvailableGraphTiersErrors];
|
|
7543
|
+
export type GetAvailableGraphTiersResponses = {
|
|
7544
|
+
/**
|
|
7545
|
+
* Tiers retrieved successfully
|
|
7546
|
+
*/
|
|
7547
|
+
200: AvailableGraphTiersResponse;
|
|
7548
|
+
};
|
|
7549
|
+
export type GetAvailableGraphTiersResponse = GetAvailableGraphTiersResponses[keyof GetAvailableGraphTiersResponses];
|
|
6756
7550
|
export type SelectGraphData = {
|
|
6757
7551
|
body?: never;
|
|
6758
7552
|
path: {
|
|
@@ -6807,8 +7601,9 @@ export type GetServiceOfferingsResponses = {
|
|
|
6807
7601
|
/**
|
|
6808
7602
|
* Complete service offerings retrieved successfully
|
|
6809
7603
|
*/
|
|
6810
|
-
200:
|
|
7604
|
+
200: ServiceOfferingsResponse;
|
|
6811
7605
|
};
|
|
7606
|
+
export type GetServiceOfferingsResponse = GetServiceOfferingsResponses[keyof GetServiceOfferingsResponses];
|
|
6812
7607
|
export type StreamOperationEventsData = {
|
|
6813
7608
|
body?: never;
|
|
6814
7609
|
headers?: {
|