@robosystems/client 0.2.5 → 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/types.gen.d.ts +521 -2
- package/sdk/types.gen.ts +539 -2
- package/types.gen.d.ts +521 -2
- package/types.gen.ts +539 -2
package/sdk/types.gen.ts
CHANGED
|
@@ -473,6 +473,18 @@ export type AvailableExtensionsResponse = {
|
|
|
473
473
|
extensions: Array<AvailableExtension>;
|
|
474
474
|
};
|
|
475
475
|
|
|
476
|
+
/**
|
|
477
|
+
* AvailableGraphTiersResponse
|
|
478
|
+
* Response containing available graph tiers.
|
|
479
|
+
*/
|
|
480
|
+
export type AvailableGraphTiersResponse = {
|
|
481
|
+
/**
|
|
482
|
+
* Tiers
|
|
483
|
+
* List of available tiers
|
|
484
|
+
*/
|
|
485
|
+
tiers: Array<GraphTierInfo>;
|
|
486
|
+
};
|
|
487
|
+
|
|
476
488
|
/**
|
|
477
489
|
* BackupCreateRequest
|
|
478
490
|
* Request model for creating a backup.
|
|
@@ -2116,6 +2128,300 @@ export type GraphMetricsResponse = {
|
|
|
2116
2128
|
};
|
|
2117
2129
|
};
|
|
2118
2130
|
|
|
2131
|
+
/**
|
|
2132
|
+
* GraphSubscriptionTier
|
|
2133
|
+
* Information about a graph subscription tier.
|
|
2134
|
+
*/
|
|
2135
|
+
export type GraphSubscriptionTier = {
|
|
2136
|
+
/**
|
|
2137
|
+
* Name
|
|
2138
|
+
* Tier name
|
|
2139
|
+
*/
|
|
2140
|
+
name: string;
|
|
2141
|
+
/**
|
|
2142
|
+
* Display Name
|
|
2143
|
+
* Display name for UI
|
|
2144
|
+
*/
|
|
2145
|
+
display_name: string;
|
|
2146
|
+
/**
|
|
2147
|
+
* Description
|
|
2148
|
+
* Tier description
|
|
2149
|
+
*/
|
|
2150
|
+
description: string;
|
|
2151
|
+
/**
|
|
2152
|
+
* Monthly Price
|
|
2153
|
+
* Monthly price in USD
|
|
2154
|
+
*/
|
|
2155
|
+
monthly_price: number;
|
|
2156
|
+
/**
|
|
2157
|
+
* Monthly Credits
|
|
2158
|
+
* Monthly AI credits
|
|
2159
|
+
*/
|
|
2160
|
+
monthly_credits: number;
|
|
2161
|
+
/**
|
|
2162
|
+
* Storage Included Gb
|
|
2163
|
+
* Storage included in GB
|
|
2164
|
+
*/
|
|
2165
|
+
storage_included_gb: number;
|
|
2166
|
+
/**
|
|
2167
|
+
* Storage Overage Per Gb
|
|
2168
|
+
* Overage cost per GB per month
|
|
2169
|
+
*/
|
|
2170
|
+
storage_overage_per_gb: number;
|
|
2171
|
+
/**
|
|
2172
|
+
* Allowed Graph Tiers
|
|
2173
|
+
* Allowed graph tier identifiers
|
|
2174
|
+
*/
|
|
2175
|
+
allowed_graph_tiers: Array<string>;
|
|
2176
|
+
/**
|
|
2177
|
+
* Features
|
|
2178
|
+
* List of features
|
|
2179
|
+
*/
|
|
2180
|
+
features: Array<string>;
|
|
2181
|
+
/**
|
|
2182
|
+
* Backup Retention Days
|
|
2183
|
+
* Backup retention in days
|
|
2184
|
+
*/
|
|
2185
|
+
backup_retention_days: number;
|
|
2186
|
+
/**
|
|
2187
|
+
* Priority Support
|
|
2188
|
+
* Whether priority support is included
|
|
2189
|
+
*/
|
|
2190
|
+
priority_support: boolean;
|
|
2191
|
+
/**
|
|
2192
|
+
* Max Queries Per Hour
|
|
2193
|
+
* Maximum queries per hour
|
|
2194
|
+
*/
|
|
2195
|
+
max_queries_per_hour?: number | null;
|
|
2196
|
+
/**
|
|
2197
|
+
* Max Subgraphs
|
|
2198
|
+
* Maximum subgraphs
|
|
2199
|
+
*/
|
|
2200
|
+
max_subgraphs?: number | null;
|
|
2201
|
+
/**
|
|
2202
|
+
* Api Rate Multiplier
|
|
2203
|
+
* API rate multiplier
|
|
2204
|
+
*/
|
|
2205
|
+
api_rate_multiplier: number;
|
|
2206
|
+
/**
|
|
2207
|
+
* Backend
|
|
2208
|
+
* Database backend (kuzu or neo4j)
|
|
2209
|
+
*/
|
|
2210
|
+
backend: string;
|
|
2211
|
+
/**
|
|
2212
|
+
* Instance Type
|
|
2213
|
+
* Instance type
|
|
2214
|
+
*/
|
|
2215
|
+
instance_type?: string | null;
|
|
2216
|
+
};
|
|
2217
|
+
|
|
2218
|
+
/**
|
|
2219
|
+
* GraphSubscriptions
|
|
2220
|
+
* Graph subscription offerings.
|
|
2221
|
+
*/
|
|
2222
|
+
export type GraphSubscriptions = {
|
|
2223
|
+
/**
|
|
2224
|
+
* Description
|
|
2225
|
+
* Description of graph subscriptions
|
|
2226
|
+
*/
|
|
2227
|
+
description: string;
|
|
2228
|
+
/**
|
|
2229
|
+
* Tiers
|
|
2230
|
+
* Available tiers
|
|
2231
|
+
*/
|
|
2232
|
+
tiers: Array<GraphSubscriptionTier>;
|
|
2233
|
+
/**
|
|
2234
|
+
* Storage information
|
|
2235
|
+
*/
|
|
2236
|
+
storage: StorageInfo;
|
|
2237
|
+
/**
|
|
2238
|
+
* Notes
|
|
2239
|
+
* Important notes
|
|
2240
|
+
*/
|
|
2241
|
+
notes: Array<string>;
|
|
2242
|
+
};
|
|
2243
|
+
|
|
2244
|
+
/**
|
|
2245
|
+
* GraphTierBackup
|
|
2246
|
+
* Backup configuration for a tier.
|
|
2247
|
+
*/
|
|
2248
|
+
export type GraphTierBackup = {
|
|
2249
|
+
/**
|
|
2250
|
+
* Max Backup Size Gb
|
|
2251
|
+
* Maximum backup size in GB
|
|
2252
|
+
*/
|
|
2253
|
+
max_backup_size_gb: number;
|
|
2254
|
+
/**
|
|
2255
|
+
* Backup Retention Days
|
|
2256
|
+
* Backup retention period in days
|
|
2257
|
+
*/
|
|
2258
|
+
backup_retention_days: number;
|
|
2259
|
+
/**
|
|
2260
|
+
* Max Backups Per Day
|
|
2261
|
+
* Maximum backups per day
|
|
2262
|
+
*/
|
|
2263
|
+
max_backups_per_day: number;
|
|
2264
|
+
};
|
|
2265
|
+
|
|
2266
|
+
/**
|
|
2267
|
+
* GraphTierCopyOperations
|
|
2268
|
+
* Copy operation limits for a tier.
|
|
2269
|
+
*/
|
|
2270
|
+
export type GraphTierCopyOperations = {
|
|
2271
|
+
/**
|
|
2272
|
+
* Max File Size Gb
|
|
2273
|
+
* Maximum file size in GB
|
|
2274
|
+
*/
|
|
2275
|
+
max_file_size_gb: number;
|
|
2276
|
+
/**
|
|
2277
|
+
* Timeout Seconds
|
|
2278
|
+
* Operation timeout in seconds
|
|
2279
|
+
*/
|
|
2280
|
+
timeout_seconds: number;
|
|
2281
|
+
/**
|
|
2282
|
+
* Concurrent Operations
|
|
2283
|
+
* Maximum concurrent operations
|
|
2284
|
+
*/
|
|
2285
|
+
concurrent_operations: number;
|
|
2286
|
+
/**
|
|
2287
|
+
* Max Files Per Operation
|
|
2288
|
+
* Maximum files per operation
|
|
2289
|
+
*/
|
|
2290
|
+
max_files_per_operation: number;
|
|
2291
|
+
/**
|
|
2292
|
+
* Daily Copy Operations
|
|
2293
|
+
* Daily operation limit
|
|
2294
|
+
*/
|
|
2295
|
+
daily_copy_operations: number;
|
|
2296
|
+
};
|
|
2297
|
+
|
|
2298
|
+
/**
|
|
2299
|
+
* GraphTierInfo
|
|
2300
|
+
* Complete information about a graph database tier.
|
|
2301
|
+
*/
|
|
2302
|
+
export type GraphTierInfo = {
|
|
2303
|
+
/**
|
|
2304
|
+
* Tier
|
|
2305
|
+
* Tier identifier
|
|
2306
|
+
*/
|
|
2307
|
+
tier: string;
|
|
2308
|
+
/**
|
|
2309
|
+
* Name
|
|
2310
|
+
* Tier name
|
|
2311
|
+
*/
|
|
2312
|
+
name: string;
|
|
2313
|
+
/**
|
|
2314
|
+
* Display Name
|
|
2315
|
+
* Display name for UI
|
|
2316
|
+
*/
|
|
2317
|
+
display_name: string;
|
|
2318
|
+
/**
|
|
2319
|
+
* Description
|
|
2320
|
+
* Tier description
|
|
2321
|
+
*/
|
|
2322
|
+
description: string;
|
|
2323
|
+
/**
|
|
2324
|
+
* Backend
|
|
2325
|
+
* Database backend (kuzu or neo4j)
|
|
2326
|
+
*/
|
|
2327
|
+
backend: string;
|
|
2328
|
+
/**
|
|
2329
|
+
* Enabled
|
|
2330
|
+
* Whether tier is available
|
|
2331
|
+
*/
|
|
2332
|
+
enabled: boolean;
|
|
2333
|
+
/**
|
|
2334
|
+
* Max Subgraphs
|
|
2335
|
+
* Maximum subgraphs allowed
|
|
2336
|
+
*/
|
|
2337
|
+
max_subgraphs: number | null;
|
|
2338
|
+
/**
|
|
2339
|
+
* Storage Limit Gb
|
|
2340
|
+
* Storage limit in GB
|
|
2341
|
+
*/
|
|
2342
|
+
storage_limit_gb: number;
|
|
2343
|
+
/**
|
|
2344
|
+
* Monthly Credits
|
|
2345
|
+
* Monthly AI credits
|
|
2346
|
+
*/
|
|
2347
|
+
monthly_credits: number;
|
|
2348
|
+
/**
|
|
2349
|
+
* Api Rate Multiplier
|
|
2350
|
+
* API rate limit multiplier
|
|
2351
|
+
*/
|
|
2352
|
+
api_rate_multiplier: number;
|
|
2353
|
+
/**
|
|
2354
|
+
* Monthly Price
|
|
2355
|
+
* Monthly price in USD
|
|
2356
|
+
*/
|
|
2357
|
+
monthly_price?: number | null;
|
|
2358
|
+
/**
|
|
2359
|
+
* Features
|
|
2360
|
+
* List of tier features
|
|
2361
|
+
*/
|
|
2362
|
+
features: Array<string>;
|
|
2363
|
+
/**
|
|
2364
|
+
* Instance specifications
|
|
2365
|
+
*/
|
|
2366
|
+
instance: GraphTierInstance;
|
|
2367
|
+
/**
|
|
2368
|
+
* Resource limits
|
|
2369
|
+
*/
|
|
2370
|
+
limits: GraphTierLimits;
|
|
2371
|
+
};
|
|
2372
|
+
|
|
2373
|
+
/**
|
|
2374
|
+
* GraphTierInstance
|
|
2375
|
+
* Instance specifications for a tier.
|
|
2376
|
+
*/
|
|
2377
|
+
export type GraphTierInstance = {
|
|
2378
|
+
/**
|
|
2379
|
+
* Type
|
|
2380
|
+
* Instance type identifier
|
|
2381
|
+
*/
|
|
2382
|
+
type: string;
|
|
2383
|
+
/**
|
|
2384
|
+
* Memory Mb
|
|
2385
|
+
* Memory in megabytes
|
|
2386
|
+
*/
|
|
2387
|
+
memory_mb: number;
|
|
2388
|
+
/**
|
|
2389
|
+
* Databases Per Instance
|
|
2390
|
+
* Databases per instance
|
|
2391
|
+
*/
|
|
2392
|
+
databases_per_instance: number;
|
|
2393
|
+
};
|
|
2394
|
+
|
|
2395
|
+
/**
|
|
2396
|
+
* GraphTierLimits
|
|
2397
|
+
* Resource limits for a tier.
|
|
2398
|
+
*/
|
|
2399
|
+
export type GraphTierLimits = {
|
|
2400
|
+
/**
|
|
2401
|
+
* Storage Gb
|
|
2402
|
+
* Storage limit in GB
|
|
2403
|
+
*/
|
|
2404
|
+
storage_gb: number;
|
|
2405
|
+
/**
|
|
2406
|
+
* Monthly Credits
|
|
2407
|
+
* Monthly credit allocation
|
|
2408
|
+
*/
|
|
2409
|
+
monthly_credits: number;
|
|
2410
|
+
/**
|
|
2411
|
+
* Max Subgraphs
|
|
2412
|
+
* Maximum subgraphs (null for unlimited)
|
|
2413
|
+
*/
|
|
2414
|
+
max_subgraphs: number | null;
|
|
2415
|
+
/**
|
|
2416
|
+
* Copy operation limits
|
|
2417
|
+
*/
|
|
2418
|
+
copy_operations: GraphTierCopyOperations;
|
|
2419
|
+
/**
|
|
2420
|
+
* Backup configuration
|
|
2421
|
+
*/
|
|
2422
|
+
backup: GraphTierBackup;
|
|
2423
|
+
};
|
|
2424
|
+
|
|
2119
2425
|
/**
|
|
2120
2426
|
* GraphUsageResponse
|
|
2121
2427
|
* Response model for graph usage statistics.
|
|
@@ -2478,6 +2784,86 @@ export type OAuthInitResponse = {
|
|
|
2478
2784
|
expires_at: string;
|
|
2479
2785
|
};
|
|
2480
2786
|
|
|
2787
|
+
/**
|
|
2788
|
+
* OfferingRepositoryPlan
|
|
2789
|
+
* Information about a repository plan.
|
|
2790
|
+
*/
|
|
2791
|
+
export type OfferingRepositoryPlan = {
|
|
2792
|
+
/**
|
|
2793
|
+
* Plan
|
|
2794
|
+
* Plan identifier
|
|
2795
|
+
*/
|
|
2796
|
+
plan: string;
|
|
2797
|
+
/**
|
|
2798
|
+
* Name
|
|
2799
|
+
* Plan name
|
|
2800
|
+
*/
|
|
2801
|
+
name: string;
|
|
2802
|
+
/**
|
|
2803
|
+
* Monthly Price
|
|
2804
|
+
* Monthly price in USD
|
|
2805
|
+
*/
|
|
2806
|
+
monthly_price: number;
|
|
2807
|
+
/**
|
|
2808
|
+
* Monthly Credits
|
|
2809
|
+
* Monthly credit allocation
|
|
2810
|
+
*/
|
|
2811
|
+
monthly_credits: number;
|
|
2812
|
+
/**
|
|
2813
|
+
* Access Level
|
|
2814
|
+
* Access level
|
|
2815
|
+
*/
|
|
2816
|
+
access_level: string;
|
|
2817
|
+
/**
|
|
2818
|
+
* Features
|
|
2819
|
+
* List of features
|
|
2820
|
+
*/
|
|
2821
|
+
features: Array<string>;
|
|
2822
|
+
/**
|
|
2823
|
+
* Rate Limits
|
|
2824
|
+
* Rate limits for this plan
|
|
2825
|
+
*/
|
|
2826
|
+
rate_limits?: {
|
|
2827
|
+
[key: string]: number | null;
|
|
2828
|
+
} | null;
|
|
2829
|
+
};
|
|
2830
|
+
|
|
2831
|
+
/**
|
|
2832
|
+
* OperationCosts
|
|
2833
|
+
* Operation cost information.
|
|
2834
|
+
*/
|
|
2835
|
+
export type OperationCosts = {
|
|
2836
|
+
/**
|
|
2837
|
+
* Description
|
|
2838
|
+
* Description of operation costs
|
|
2839
|
+
*/
|
|
2840
|
+
description: string;
|
|
2841
|
+
/**
|
|
2842
|
+
* Ai Operations
|
|
2843
|
+
* Base costs for AI operations
|
|
2844
|
+
*/
|
|
2845
|
+
ai_operations: {
|
|
2846
|
+
[key: string]: number;
|
|
2847
|
+
};
|
|
2848
|
+
/**
|
|
2849
|
+
* Token Pricing
|
|
2850
|
+
* Token pricing by model
|
|
2851
|
+
*/
|
|
2852
|
+
token_pricing: {
|
|
2853
|
+
[key: string]: TokenPricing;
|
|
2854
|
+
};
|
|
2855
|
+
/**
|
|
2856
|
+
* Included Operations
|
|
2857
|
+
* Operations that don't consume credits
|
|
2858
|
+
*/
|
|
2859
|
+
included_operations: Array<string>;
|
|
2860
|
+
/**
|
|
2861
|
+
* Notes
|
|
2862
|
+
* Important notes about costs
|
|
2863
|
+
*/
|
|
2864
|
+
notes: Array<string>;
|
|
2865
|
+
};
|
|
2866
|
+
|
|
2481
2867
|
/**
|
|
2482
2868
|
* PasswordCheckRequest
|
|
2483
2869
|
* Password strength check request model.
|
|
@@ -2703,12 +3089,71 @@ export type RepositoryCreditsResponse = {
|
|
|
2703
3089
|
credits?: CreditSummary | null;
|
|
2704
3090
|
};
|
|
2705
3091
|
|
|
3092
|
+
/**
|
|
3093
|
+
* RepositoryInfo
|
|
3094
|
+
* Information about a shared repository.
|
|
3095
|
+
*/
|
|
3096
|
+
export type RepositoryInfo = {
|
|
3097
|
+
/**
|
|
3098
|
+
* Type
|
|
3099
|
+
* Repository type identifier
|
|
3100
|
+
*/
|
|
3101
|
+
type: string;
|
|
3102
|
+
/**
|
|
3103
|
+
* Name
|
|
3104
|
+
* Repository name
|
|
3105
|
+
*/
|
|
3106
|
+
name: string;
|
|
3107
|
+
/**
|
|
3108
|
+
* Description
|
|
3109
|
+
* Repository description
|
|
3110
|
+
*/
|
|
3111
|
+
description: string;
|
|
3112
|
+
/**
|
|
3113
|
+
* Enabled
|
|
3114
|
+
* Whether repository is enabled
|
|
3115
|
+
*/
|
|
3116
|
+
enabled: boolean;
|
|
3117
|
+
/**
|
|
3118
|
+
* Coming Soon
|
|
3119
|
+
* Whether repository is coming soon
|
|
3120
|
+
*/
|
|
3121
|
+
coming_soon: boolean;
|
|
3122
|
+
/**
|
|
3123
|
+
* Plans
|
|
3124
|
+
* Available plans
|
|
3125
|
+
*/
|
|
3126
|
+
plans: Array<OfferingRepositoryPlan>;
|
|
3127
|
+
};
|
|
3128
|
+
|
|
2706
3129
|
/**
|
|
2707
3130
|
* RepositoryPlan
|
|
2708
3131
|
* Repository access plans for shared data.
|
|
2709
3132
|
*/
|
|
2710
3133
|
export type RepositoryPlan = 'starter' | 'advanced' | 'unlimited';
|
|
2711
3134
|
|
|
3135
|
+
/**
|
|
3136
|
+
* RepositorySubscriptions
|
|
3137
|
+
* Repository subscription offerings.
|
|
3138
|
+
*/
|
|
3139
|
+
export type RepositorySubscriptions = {
|
|
3140
|
+
/**
|
|
3141
|
+
* Description
|
|
3142
|
+
* Description of repository subscriptions
|
|
3143
|
+
*/
|
|
3144
|
+
description: string;
|
|
3145
|
+
/**
|
|
3146
|
+
* Repositories
|
|
3147
|
+
* Available repositories
|
|
3148
|
+
*/
|
|
3149
|
+
repositories: Array<RepositoryInfo>;
|
|
3150
|
+
/**
|
|
3151
|
+
* Notes
|
|
3152
|
+
* Important notes
|
|
3153
|
+
*/
|
|
3154
|
+
notes: Array<string>;
|
|
3155
|
+
};
|
|
3156
|
+
|
|
2712
3157
|
/**
|
|
2713
3158
|
* RepositoryType
|
|
2714
3159
|
* Types of shared repositories.
|
|
@@ -3004,6 +3449,77 @@ export type SelectionCriteria = {
|
|
|
3004
3449
|
excluded_agents?: Array<string>;
|
|
3005
3450
|
};
|
|
3006
3451
|
|
|
3452
|
+
/**
|
|
3453
|
+
* ServiceOfferingSummary
|
|
3454
|
+
* Summary of service offerings.
|
|
3455
|
+
*/
|
|
3456
|
+
export type ServiceOfferingSummary = {
|
|
3457
|
+
/**
|
|
3458
|
+
* Total Graph Tiers
|
|
3459
|
+
* Total number of graph tiers
|
|
3460
|
+
*/
|
|
3461
|
+
total_graph_tiers: number;
|
|
3462
|
+
/**
|
|
3463
|
+
* Total Repositories
|
|
3464
|
+
* Total number of repositories
|
|
3465
|
+
*/
|
|
3466
|
+
total_repositories: number;
|
|
3467
|
+
/**
|
|
3468
|
+
* Enabled Repositories
|
|
3469
|
+
* Number of enabled repositories
|
|
3470
|
+
*/
|
|
3471
|
+
enabled_repositories: number;
|
|
3472
|
+
/**
|
|
3473
|
+
* Coming Soon Repositories
|
|
3474
|
+
* Number of coming soon repositories
|
|
3475
|
+
*/
|
|
3476
|
+
coming_soon_repositories: number;
|
|
3477
|
+
};
|
|
3478
|
+
|
|
3479
|
+
/**
|
|
3480
|
+
* ServiceOfferingsResponse
|
|
3481
|
+
* Complete service offerings response.
|
|
3482
|
+
*/
|
|
3483
|
+
export type ServiceOfferingsResponse = {
|
|
3484
|
+
/**
|
|
3485
|
+
* Graph subscription offerings
|
|
3486
|
+
*/
|
|
3487
|
+
graph_subscriptions: GraphSubscriptions;
|
|
3488
|
+
/**
|
|
3489
|
+
* Repository subscription offerings
|
|
3490
|
+
*/
|
|
3491
|
+
repository_subscriptions: RepositorySubscriptions;
|
|
3492
|
+
/**
|
|
3493
|
+
* Operation cost information
|
|
3494
|
+
*/
|
|
3495
|
+
operation_costs: OperationCosts;
|
|
3496
|
+
/**
|
|
3497
|
+
* Summary information
|
|
3498
|
+
*/
|
|
3499
|
+
summary: ServiceOfferingSummary;
|
|
3500
|
+
};
|
|
3501
|
+
|
|
3502
|
+
/**
|
|
3503
|
+
* StorageInfo
|
|
3504
|
+
* Storage pricing information.
|
|
3505
|
+
*/
|
|
3506
|
+
export type StorageInfo = {
|
|
3507
|
+
/**
|
|
3508
|
+
* Included Per Tier
|
|
3509
|
+
* Storage included per tier in GB
|
|
3510
|
+
*/
|
|
3511
|
+
included_per_tier: {
|
|
3512
|
+
[key: string]: number;
|
|
3513
|
+
};
|
|
3514
|
+
/**
|
|
3515
|
+
* Overage Pricing
|
|
3516
|
+
* Overage pricing per GB per tier
|
|
3517
|
+
*/
|
|
3518
|
+
overage_pricing: {
|
|
3519
|
+
[key: string]: number;
|
|
3520
|
+
};
|
|
3521
|
+
};
|
|
3522
|
+
|
|
3007
3523
|
/**
|
|
3008
3524
|
* StorageLimitResponse
|
|
3009
3525
|
* Storage limit information response.
|
|
@@ -3510,6 +4026,23 @@ export type TierUpgradeRequest = {
|
|
|
3510
4026
|
new_plan: RepositoryPlan;
|
|
3511
4027
|
};
|
|
3512
4028
|
|
|
4029
|
+
/**
|
|
4030
|
+
* TokenPricing
|
|
4031
|
+
* AI token pricing for a specific model.
|
|
4032
|
+
*/
|
|
4033
|
+
export type TokenPricing = {
|
|
4034
|
+
/**
|
|
4035
|
+
* Input Per 1K Tokens
|
|
4036
|
+
* Credits per 1K input tokens
|
|
4037
|
+
*/
|
|
4038
|
+
input_per_1k_tokens: number;
|
|
4039
|
+
/**
|
|
4040
|
+
* Output Per 1K Tokens
|
|
4041
|
+
* Credits per 1K output tokens
|
|
4042
|
+
*/
|
|
4043
|
+
output_per_1k_tokens: number;
|
|
4044
|
+
};
|
|
4045
|
+
|
|
3513
4046
|
/**
|
|
3514
4047
|
* TransactionSummaryResponse
|
|
3515
4048
|
* Summary of transactions by operation type.
|
|
@@ -7601,9 +8134,11 @@ export type GetAvailableGraphTiersResponses = {
|
|
|
7601
8134
|
/**
|
|
7602
8135
|
* Tiers retrieved successfully
|
|
7603
8136
|
*/
|
|
7604
|
-
200:
|
|
8137
|
+
200: AvailableGraphTiersResponse;
|
|
7605
8138
|
};
|
|
7606
8139
|
|
|
8140
|
+
export type GetAvailableGraphTiersResponse = GetAvailableGraphTiersResponses[keyof GetAvailableGraphTiersResponses];
|
|
8141
|
+
|
|
7607
8142
|
export type SelectGraphData = {
|
|
7608
8143
|
body?: never;
|
|
7609
8144
|
path: {
|
|
@@ -7666,9 +8201,11 @@ export type GetServiceOfferingsResponses = {
|
|
|
7666
8201
|
/**
|
|
7667
8202
|
* Complete service offerings retrieved successfully
|
|
7668
8203
|
*/
|
|
7669
|
-
200:
|
|
8204
|
+
200: ServiceOfferingsResponse;
|
|
7670
8205
|
};
|
|
7671
8206
|
|
|
8207
|
+
export type GetServiceOfferingsResponse = GetServiceOfferingsResponses[keyof GetServiceOfferingsResponses];
|
|
8208
|
+
|
|
7672
8209
|
export type StreamOperationEventsData = {
|
|
7673
8210
|
body?: never;
|
|
7674
8211
|
headers?: {
|