@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/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
  */