@robosystems/client 0.2.28 → 0.2.29

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/sdk/types.gen.ts CHANGED
@@ -647,6 +647,16 @@ export type BackupListResponse = {
647
647
  * Graph Id
648
648
  */
649
649
  graph_id: string;
650
+ /**
651
+ * Is Shared Repository
652
+ *
653
+ * Whether this is a shared repository (limits apply)
654
+ */
655
+ is_shared_repository?: boolean;
656
+ /**
657
+ * Download quota for shared repositories
658
+ */
659
+ download_quota?: DownloadQuota | null;
650
660
  };
651
661
 
652
662
  /**
@@ -1123,6 +1133,62 @@ export type ConnectionResponse = {
1123
1133
  };
1124
1134
  };
1125
1135
 
1136
+ /**
1137
+ * ContentLimits
1138
+ *
1139
+ * Graph content limits (nodes, relationships, rows).
1140
+ */
1141
+ export type ContentLimits = {
1142
+ /**
1143
+ * Max Nodes
1144
+ *
1145
+ * Maximum nodes allowed
1146
+ */
1147
+ max_nodes: number;
1148
+ /**
1149
+ * Current Nodes
1150
+ *
1151
+ * Current node count
1152
+ */
1153
+ current_nodes?: number | null;
1154
+ /**
1155
+ * Max Relationships
1156
+ *
1157
+ * Maximum relationships allowed
1158
+ */
1159
+ max_relationships: number;
1160
+ /**
1161
+ * Current Relationships
1162
+ *
1163
+ * Current relationship count
1164
+ */
1165
+ current_relationships?: number | null;
1166
+ /**
1167
+ * Max Rows Per Copy
1168
+ *
1169
+ * Maximum rows per copy/materialization operation
1170
+ */
1171
+ max_rows_per_copy: number;
1172
+ /**
1173
+ * Max Single Table Rows
1174
+ *
1175
+ * Maximum rows per staging table
1176
+ */
1177
+ max_single_table_rows: number;
1178
+ /**
1179
+ * Chunk Size Rows
1180
+ *
1181
+ * Rows per materialization chunk
1182
+ */
1183
+ chunk_size_rows: number;
1184
+ /**
1185
+ * Approaching Limits
1186
+ *
1187
+ * List of limits being approached (>80%)
1188
+ */
1189
+ approaching_limits?: Array<string>;
1190
+ };
1191
+
1126
1192
  /**
1127
1193
  * CopyOperationLimits
1128
1194
  *
@@ -1279,7 +1345,7 @@ export type CreateGraphRequest = {
1279
1345
  /**
1280
1346
  * Instance Tier
1281
1347
  *
1282
- * Instance tier: ladybug-standard, ladybug-large, ladybug-xlarge, neo4j-community-large, neo4j-enterprise-xlarge
1348
+ * Instance tier: ladybug-standard, ladybug-large, ladybug-xlarge
1283
1349
  */
1284
1350
  instance_tier?: string;
1285
1351
  /**
@@ -1431,18 +1497,6 @@ export type CreditLimits = {
1431
1497
  * Current credit balance
1432
1498
  */
1433
1499
  current_balance: number;
1434
- /**
1435
- * Storage Billing Enabled
1436
- *
1437
- * Whether storage billing is enabled
1438
- */
1439
- storage_billing_enabled: boolean;
1440
- /**
1441
- * Storage Rate Per Gb Per Day
1442
- *
1443
- * Storage billing rate per GB per day
1444
- */
1445
- storage_rate_per_gb_per_day: number;
1446
1500
  };
1447
1501
 
1448
1502
  /**
@@ -1935,6 +1989,38 @@ export type DetailedTransactionsResponse = {
1935
1989
  };
1936
1990
  };
1937
1991
 
1992
+ /**
1993
+ * DownloadQuota
1994
+ *
1995
+ * Download quota information for shared repository backups.
1996
+ */
1997
+ export type DownloadQuota = {
1998
+ /**
1999
+ * Limit Per Day
2000
+ *
2001
+ * Maximum downloads allowed per day
2002
+ */
2003
+ limit_per_day: number;
2004
+ /**
2005
+ * Used Today
2006
+ *
2007
+ * Number of downloads used today
2008
+ */
2009
+ used_today: number;
2010
+ /**
2011
+ * Remaining
2012
+ *
2013
+ * Downloads remaining today
2014
+ */
2015
+ remaining: number;
2016
+ /**
2017
+ * Resets At
2018
+ *
2019
+ * When the daily limit resets (UTC)
2020
+ */
2021
+ resets_at: string;
2022
+ };
2023
+
1938
2024
  /**
1939
2025
  * EmailVerificationRequest
1940
2026
  *
@@ -2512,6 +2598,10 @@ export type GraphLimitsResponse = {
2512
2598
  * AI credit limits (if applicable)
2513
2599
  */
2514
2600
  credits?: CreditLimits | null;
2601
+ /**
2602
+ * Graph content limits (if applicable)
2603
+ */
2604
+ content?: ContentLimits | null;
2515
2605
  };
2516
2606
 
2517
2607
  /**
@@ -2748,17 +2838,11 @@ export type GraphSubscriptionTier = {
2748
2838
  */
2749
2839
  monthly_credits_per_graph: number;
2750
2840
  /**
2751
- * Storage Included Gb
2841
+ * Storage Included
2752
2842
  *
2753
- * Storage included in GB
2843
+ * Whether storage is included in the tier
2754
2844
  */
2755
- storage_included_gb: number;
2756
- /**
2757
- * Storage Overage Per Gb
2758
- *
2759
- * Overage cost per GB per month
2760
- */
2761
- storage_overage_per_gb: number;
2845
+ storage_included?: boolean;
2762
2846
  /**
2763
2847
  * Infrastructure
2764
2848
  *
@@ -3591,6 +3675,12 @@ export type MaterializeRequest = {
3591
3675
  * Continue ingestion on row errors
3592
3676
  */
3593
3677
  ignore_errors?: boolean;
3678
+ /**
3679
+ * Dry Run
3680
+ *
3681
+ * Validate limits without executing materialization. Returns usage, limits, and warnings.
3682
+ */
3683
+ dry_run?: boolean;
3594
3684
  };
3595
3685
 
3596
3686
  /**
@@ -3623,6 +3713,14 @@ export type MaterializeResponse = {
3623
3713
  * Human-readable status message
3624
3714
  */
3625
3715
  message: string;
3716
+ /**
3717
+ * Limit Check
3718
+ *
3719
+ * Limit check results (only present for dry_run requests)
3720
+ */
3721
+ limit_check?: {
3722
+ [key: string]: unknown;
3723
+ } | null;
3626
3724
  };
3627
3725
 
3628
3726
  /**
@@ -5069,25 +5167,15 @@ export type ServiceOfferingsResponse = {
5069
5167
  /**
5070
5168
  * StorageInfo
5071
5169
  *
5072
- * Storage pricing information.
5170
+ * Storage information.
5073
5171
  */
5074
5172
  export type StorageInfo = {
5075
5173
  /**
5076
- * Included Per Tier
5077
- *
5078
- * Storage included per tier in GB
5079
- */
5080
- included_per_tier: {
5081
- [key: string]: number;
5082
- };
5083
- /**
5084
- * Overage Pricing
5174
+ * Description
5085
5175
  *
5086
- * Overage pricing per GB per tier
5176
+ * Storage billing description
5087
5177
  */
5088
- overage_pricing: {
5089
- [key: string]: number;
5090
- };
5178
+ description?: string;
5091
5179
  };
5092
5180
 
5093
5181
  /**
@@ -5853,6 +5941,16 @@ export type ValidationError = {
5853
5941
  * Error Type
5854
5942
  */
5855
5943
  type: string;
5944
+ /**
5945
+ * Input
5946
+ */
5947
+ input?: unknown;
5948
+ /**
5949
+ * Context
5950
+ */
5951
+ ctx?: {
5952
+ [key: string]: unknown;
5953
+ };
5856
5954
  };
5857
5955
 
5858
5956
  /**
@@ -9343,6 +9441,10 @@ export type MaterializeGraphErrors = {
9343
9441
  * Conflict - another materialization is already in progress for this graph
9344
9442
  */
9345
9443
  409: ErrorResponse;
9444
+ /**
9445
+ * Graph content limit exceeded - data too large for current tier
9446
+ */
9447
+ 413: ErrorResponse;
9346
9448
  /**
9347
9449
  * Validation Error
9348
9450
  */
package/sdk.gen.d.ts CHANGED
@@ -1232,6 +1232,7 @@ export declare const getDatabaseInfo: <ThrowOnError extends boolean = false>(opt
1232
1232
  * - **Backup Limits**: Frequency, retention, size limits
1233
1233
  * - **Rate Limits**: Requests per minute/hour based on tier
1234
1234
  * - **Credit Limits**: AI operation credits (if applicable)
1235
+ * - **Content Limits**: Node, relationship, and row limits (if applicable)
1235
1236
  *
1236
1237
  * This unified endpoint provides all limits in one place for easier client integration.
1237
1238
  *
@@ -1632,6 +1633,10 @@ export declare const getMaterializationStatus: <ThrowOnError extends boolean = f
1632
1633
  * Full graph materialization can take minutes for large datasets. Consider running
1633
1634
  * during off-peak hours for production systems.
1634
1635
  *
1636
+ * **Dry Run:**
1637
+ * Set `dry_run=true` to validate limits without executing. Returns current usage, tier limits,
1638
+ * and any warnings or errors. No lock is acquired, no SSE operation is created.
1639
+ *
1635
1640
  * **Credits:**
1636
1641
  * Materialization is included - no credit consumption
1637
1642
  */
@@ -1981,11 +1986,9 @@ export declare const getAvailableExtensions: <ThrowOnError extends boolean = fal
1981
1986
  * - Availability status
1982
1987
  *
1983
1988
  * **Available Tiers:**
1984
- * - **ladybug-standard**: Multi-tenant entry-level tier
1989
+ * - **ladybug-standard**: Dedicated entry-level tier
1985
1990
  * - **ladybug-large**: Dedicated professional tier with subgraph support
1986
1991
  * - **ladybug-xlarge**: Enterprise tier with maximum resources
1987
- * - **neo4j-community-large**: Neo4j Community Edition (optional, if enabled)
1988
- * - **neo4j-enterprise-xlarge**: Neo4j Enterprise Edition (optional, if enabled)
1989
1992
  *
1990
1993
  * **Use Cases:**
1991
1994
  * - Display tier options in graph creation UI
package/sdk.gen.js CHANGED
@@ -1659,6 +1659,7 @@ exports.getDatabaseInfo = getDatabaseInfo;
1659
1659
  * - **Backup Limits**: Frequency, retention, size limits
1660
1660
  * - **Rate Limits**: Requests per minute/hour based on tier
1661
1661
  * - **Credit Limits**: AI operation credits (if applicable)
1662
+ * - **Content Limits**: Node, relationship, and row limits (if applicable)
1662
1663
  *
1663
1664
  * This unified endpoint provides all limits in one place for easier client integration.
1664
1665
  *
@@ -2157,6 +2158,10 @@ exports.getMaterializationStatus = getMaterializationStatus;
2157
2158
  * Full graph materialization can take minutes for large datasets. Consider running
2158
2159
  * during off-peak hours for production systems.
2159
2160
  *
2161
+ * **Dry Run:**
2162
+ * Set `dry_run=true` to validate limits without executing. Returns current usage, tier limits,
2163
+ * and any warnings or errors. No lock is acquired, no SSE operation is created.
2164
+ *
2160
2165
  * **Credits:**
2161
2166
  * Materialization is included - no credit consumption
2162
2167
  */
@@ -2567,11 +2572,9 @@ exports.getAvailableExtensions = getAvailableExtensions;
2567
2572
  * - Availability status
2568
2573
  *
2569
2574
  * **Available Tiers:**
2570
- * - **ladybug-standard**: Multi-tenant entry-level tier
2575
+ * - **ladybug-standard**: Dedicated entry-level tier
2571
2576
  * - **ladybug-large**: Dedicated professional tier with subgraph support
2572
2577
  * - **ladybug-xlarge**: Enterprise tier with maximum resources
2573
- * - **neo4j-community-large**: Neo4j Community Edition (optional, if enabled)
2574
- * - **neo4j-enterprise-xlarge**: Neo4j Enterprise Edition (optional, if enabled)
2575
2578
  *
2576
2579
  * **Use Cases:**
2577
2580
  * - Display tier options in graph creation UI
package/sdk.gen.ts CHANGED
@@ -1672,6 +1672,7 @@ export const getDatabaseInfo = <ThrowOnError extends boolean = false>(options: O
1672
1672
  * - **Backup Limits**: Frequency, retention, size limits
1673
1673
  * - **Rate Limits**: Requests per minute/hour based on tier
1674
1674
  * - **Credit Limits**: AI operation credits (if applicable)
1675
+ * - **Content Limits**: Node, relationship, and row limits (if applicable)
1675
1676
  *
1676
1677
  * This unified endpoint provides all limits in one place for easier client integration.
1677
1678
  *
@@ -2170,6 +2171,10 @@ export const getMaterializationStatus = <ThrowOnError extends boolean = false>(o
2170
2171
  * Full graph materialization can take minutes for large datasets. Consider running
2171
2172
  * during off-peak hours for production systems.
2172
2173
  *
2174
+ * **Dry Run:**
2175
+ * Set `dry_run=true` to validate limits without executing. Returns current usage, tier limits,
2176
+ * and any warnings or errors. No lock is acquired, no SSE operation is created.
2177
+ *
2173
2178
  * **Credits:**
2174
2179
  * Materialization is included - no credit consumption
2175
2180
  */
@@ -2580,11 +2585,9 @@ export const getAvailableExtensions = <ThrowOnError extends boolean = false>(opt
2580
2585
  * - Availability status
2581
2586
  *
2582
2587
  * **Available Tiers:**
2583
- * - **ladybug-standard**: Multi-tenant entry-level tier
2588
+ * - **ladybug-standard**: Dedicated entry-level tier
2584
2589
  * - **ladybug-large**: Dedicated professional tier with subgraph support
2585
2590
  * - **ladybug-xlarge**: Enterprise tier with maximum resources
2586
- * - **neo4j-community-large**: Neo4j Community Edition (optional, if enabled)
2587
- * - **neo4j-enterprise-xlarge**: Neo4j Enterprise Edition (optional, if enabled)
2588
2591
  *
2589
2592
  * **Use Cases:**
2590
2593
  * - Display tier options in graph creation UI
package/types.gen.d.ts CHANGED
@@ -625,6 +625,16 @@ export type BackupListResponse = {
625
625
  * Graph Id
626
626
  */
627
627
  graph_id: string;
628
+ /**
629
+ * Is Shared Repository
630
+ *
631
+ * Whether this is a shared repository (limits apply)
632
+ */
633
+ is_shared_repository?: boolean;
634
+ /**
635
+ * Download quota for shared repositories
636
+ */
637
+ download_quota?: DownloadQuota | null;
628
638
  };
629
639
  /**
630
640
  * BackupResponse
@@ -1089,6 +1099,61 @@ export type ConnectionResponse = {
1089
1099
  [key: string]: unknown;
1090
1100
  };
1091
1101
  };
1102
+ /**
1103
+ * ContentLimits
1104
+ *
1105
+ * Graph content limits (nodes, relationships, rows).
1106
+ */
1107
+ export type ContentLimits = {
1108
+ /**
1109
+ * Max Nodes
1110
+ *
1111
+ * Maximum nodes allowed
1112
+ */
1113
+ max_nodes: number;
1114
+ /**
1115
+ * Current Nodes
1116
+ *
1117
+ * Current node count
1118
+ */
1119
+ current_nodes?: number | null;
1120
+ /**
1121
+ * Max Relationships
1122
+ *
1123
+ * Maximum relationships allowed
1124
+ */
1125
+ max_relationships: number;
1126
+ /**
1127
+ * Current Relationships
1128
+ *
1129
+ * Current relationship count
1130
+ */
1131
+ current_relationships?: number | null;
1132
+ /**
1133
+ * Max Rows Per Copy
1134
+ *
1135
+ * Maximum rows per copy/materialization operation
1136
+ */
1137
+ max_rows_per_copy: number;
1138
+ /**
1139
+ * Max Single Table Rows
1140
+ *
1141
+ * Maximum rows per staging table
1142
+ */
1143
+ max_single_table_rows: number;
1144
+ /**
1145
+ * Chunk Size Rows
1146
+ *
1147
+ * Rows per materialization chunk
1148
+ */
1149
+ chunk_size_rows: number;
1150
+ /**
1151
+ * Approaching Limits
1152
+ *
1153
+ * List of limits being approached (>80%)
1154
+ */
1155
+ approaching_limits?: Array<string>;
1156
+ };
1092
1157
  /**
1093
1158
  * CopyOperationLimits
1094
1159
  *
@@ -1240,7 +1305,7 @@ export type CreateGraphRequest = {
1240
1305
  /**
1241
1306
  * Instance Tier
1242
1307
  *
1243
- * Instance tier: ladybug-standard, ladybug-large, ladybug-xlarge, neo4j-community-large, neo4j-enterprise-xlarge
1308
+ * Instance tier: ladybug-standard, ladybug-large, ladybug-xlarge
1244
1309
  */
1245
1310
  instance_tier?: string;
1246
1311
  /**
@@ -1387,18 +1452,6 @@ export type CreditLimits = {
1387
1452
  * Current credit balance
1388
1453
  */
1389
1454
  current_balance: number;
1390
- /**
1391
- * Storage Billing Enabled
1392
- *
1393
- * Whether storage billing is enabled
1394
- */
1395
- storage_billing_enabled: boolean;
1396
- /**
1397
- * Storage Rate Per Gb Per Day
1398
- *
1399
- * Storage billing rate per GB per day
1400
- */
1401
- storage_rate_per_gb_per_day: number;
1402
1455
  };
1403
1456
  /**
1404
1457
  * CreditSummary
@@ -1880,6 +1933,37 @@ export type DetailedTransactionsResponse = {
1880
1933
  [key: string]: string;
1881
1934
  };
1882
1935
  };
1936
+ /**
1937
+ * DownloadQuota
1938
+ *
1939
+ * Download quota information for shared repository backups.
1940
+ */
1941
+ export type DownloadQuota = {
1942
+ /**
1943
+ * Limit Per Day
1944
+ *
1945
+ * Maximum downloads allowed per day
1946
+ */
1947
+ limit_per_day: number;
1948
+ /**
1949
+ * Used Today
1950
+ *
1951
+ * Number of downloads used today
1952
+ */
1953
+ used_today: number;
1954
+ /**
1955
+ * Remaining
1956
+ *
1957
+ * Downloads remaining today
1958
+ */
1959
+ remaining: number;
1960
+ /**
1961
+ * Resets At
1962
+ *
1963
+ * When the daily limit resets (UTC)
1964
+ */
1965
+ resets_at: string;
1966
+ };
1883
1967
  /**
1884
1968
  * EmailVerificationRequest
1885
1969
  *
@@ -2443,6 +2527,10 @@ export type GraphLimitsResponse = {
2443
2527
  * AI credit limits (if applicable)
2444
2528
  */
2445
2529
  credits?: CreditLimits | null;
2530
+ /**
2531
+ * Graph content limits (if applicable)
2532
+ */
2533
+ content?: ContentLimits | null;
2446
2534
  };
2447
2535
  /**
2448
2536
  * GraphMetadata
@@ -2675,17 +2763,11 @@ export type GraphSubscriptionTier = {
2675
2763
  */
2676
2764
  monthly_credits_per_graph: number;
2677
2765
  /**
2678
- * Storage Included Gb
2766
+ * Storage Included
2679
2767
  *
2680
- * Storage included in GB
2768
+ * Whether storage is included in the tier
2681
2769
  */
2682
- storage_included_gb: number;
2683
- /**
2684
- * Storage Overage Per Gb
2685
- *
2686
- * Overage cost per GB per month
2687
- */
2688
- storage_overage_per_gb: number;
2770
+ storage_included?: boolean;
2689
2771
  /**
2690
2772
  * Infrastructure
2691
2773
  *
@@ -3497,6 +3579,12 @@ export type MaterializeRequest = {
3497
3579
  * Continue ingestion on row errors
3498
3580
  */
3499
3581
  ignore_errors?: boolean;
3582
+ /**
3583
+ * Dry Run
3584
+ *
3585
+ * Validate limits without executing materialization. Returns usage, limits, and warnings.
3586
+ */
3587
+ dry_run?: boolean;
3500
3588
  };
3501
3589
  /**
3502
3590
  * MaterializeResponse
@@ -3528,6 +3616,14 @@ export type MaterializeResponse = {
3528
3616
  * Human-readable status message
3529
3617
  */
3530
3618
  message: string;
3619
+ /**
3620
+ * Limit Check
3621
+ *
3622
+ * Limit check results (only present for dry_run requests)
3623
+ */
3624
+ limit_check?: {
3625
+ [key: string]: unknown;
3626
+ } | null;
3531
3627
  };
3532
3628
  /**
3533
3629
  * MaterializeStatusResponse
@@ -4927,25 +5023,15 @@ export type ServiceOfferingsResponse = {
4927
5023
  /**
4928
5024
  * StorageInfo
4929
5025
  *
4930
- * Storage pricing information.
5026
+ * Storage information.
4931
5027
  */
4932
5028
  export type StorageInfo = {
4933
5029
  /**
4934
- * Included Per Tier
4935
- *
4936
- * Storage included per tier in GB
4937
- */
4938
- included_per_tier: {
4939
- [key: string]: number;
4940
- };
4941
- /**
4942
- * Overage Pricing
5030
+ * Description
4943
5031
  *
4944
- * Overage pricing per GB per tier
5032
+ * Storage billing description
4945
5033
  */
4946
- overage_pricing: {
4947
- [key: string]: number;
4948
- };
5034
+ description?: string;
4949
5035
  };
4950
5036
  /**
4951
5037
  * StorageLimitResponse
@@ -5685,6 +5771,16 @@ export type ValidationError = {
5685
5771
  * Error Type
5686
5772
  */
5687
5773
  type: string;
5774
+ /**
5775
+ * Input
5776
+ */
5777
+ input?: unknown;
5778
+ /**
5779
+ * Context
5780
+ */
5781
+ ctx?: {
5782
+ [key: string]: unknown;
5783
+ };
5688
5784
  };
5689
5785
  /**
5690
5786
  * ViewAxisConfig
@@ -8766,6 +8862,10 @@ export type MaterializeGraphErrors = {
8766
8862
  * Conflict - another materialization is already in progress for this graph
8767
8863
  */
8768
8864
  409: ErrorResponse;
8865
+ /**
8866
+ * Graph content limit exceeded - data too large for current tier
8867
+ */
8868
+ 413: ErrorResponse;
8769
8869
  /**
8770
8870
  * Validation Error
8771
8871
  */