@robosystems/client 0.1.17 → 0.1.19

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.d.ts CHANGED
@@ -599,7 +599,17 @@ export type CopyResponse = {
599
599
  * Status
600
600
  * Operation status
601
601
  */
602
- status: 'completed' | 'failed' | 'partial';
602
+ status: 'completed' | 'failed' | 'partial' | 'accepted';
603
+ /**
604
+ * Operation Id
605
+ * Operation ID for SSE monitoring (for long-running operations)
606
+ */
607
+ operation_id?: string | null;
608
+ /**
609
+ * Sse Url
610
+ * SSE endpoint URL for monitoring operation progress
611
+ */
612
+ sse_url?: string | null;
603
613
  /**
604
614
  * Source Type
605
615
  * Type of source that was copied from
@@ -607,9 +617,9 @@ export type CopyResponse = {
607
617
  source_type: string;
608
618
  /**
609
619
  * Execution Time Ms
610
- * Total execution time in milliseconds
620
+ * Total execution time in milliseconds (for synchronous operations)
611
621
  */
612
- execution_time_ms: number;
622
+ execution_time_ms?: number | null;
613
623
  /**
614
624
  * Message
615
625
  * Human-readable status message
@@ -1930,6 +1940,9 @@ export type ResponseMode = 'auto' | 'sync' | 'async' | 'stream';
1930
1940
  /**
1931
1941
  * S3CopyRequest
1932
1942
  * Request model for S3 copy operations.
1943
+ *
1944
+ * Copies data from S3 buckets into graph database tables using user-provided
1945
+ * AWS credentials. Supports various file formats and bulk loading options.
1933
1946
  */
1934
1947
  export type S3CopyRequest = {
1935
1948
  /**
@@ -6125,17 +6138,45 @@ export type CopyDataToGraphData = {
6125
6138
  url: '/v1/{graph_id}/copy';
6126
6139
  };
6127
6140
  export type CopyDataToGraphErrors = {
6141
+ /**
6142
+ * Invalid request parameters
6143
+ */
6144
+ 400: unknown;
6145
+ /**
6146
+ * Access denied or shared repository
6147
+ */
6148
+ 403: unknown;
6149
+ /**
6150
+ * Operation timeout
6151
+ */
6152
+ 408: unknown;
6128
6153
  /**
6129
6154
  * Validation Error
6130
6155
  */
6131
6156
  422: HttpValidationError;
6157
+ /**
6158
+ * Rate limit exceeded
6159
+ */
6160
+ 429: unknown;
6161
+ /**
6162
+ * Internal error
6163
+ */
6164
+ 500: unknown;
6165
+ /**
6166
+ * Service unavailable
6167
+ */
6168
+ 503: unknown;
6132
6169
  };
6133
6170
  export type CopyDataToGraphError = CopyDataToGraphErrors[keyof CopyDataToGraphErrors];
6134
6171
  export type CopyDataToGraphResponses = {
6135
6172
  /**
6136
- * Successful Response
6173
+ * Copy operation accepted and started
6137
6174
  */
6138
6175
  200: CopyResponse;
6176
+ /**
6177
+ * Copy operation queued for execution
6178
+ */
6179
+ 202: unknown;
6139
6180
  };
6140
6181
  export type CopyDataToGraphResponse = CopyDataToGraphResponses[keyof CopyDataToGraphResponses];
6141
6182
  export type CreateGraphData = {
package/types.gen.ts CHANGED
@@ -620,7 +620,17 @@ export type CopyResponse = {
620
620
  * Status
621
621
  * Operation status
622
622
  */
623
- status: 'completed' | 'failed' | 'partial';
623
+ status: 'completed' | 'failed' | 'partial' | 'accepted';
624
+ /**
625
+ * Operation Id
626
+ * Operation ID for SSE monitoring (for long-running operations)
627
+ */
628
+ operation_id?: string | null;
629
+ /**
630
+ * Sse Url
631
+ * SSE endpoint URL for monitoring operation progress
632
+ */
633
+ sse_url?: string | null;
624
634
  /**
625
635
  * Source Type
626
636
  * Type of source that was copied from
@@ -628,9 +638,9 @@ export type CopyResponse = {
628
638
  source_type: string;
629
639
  /**
630
640
  * Execution Time Ms
631
- * Total execution time in milliseconds
641
+ * Total execution time in milliseconds (for synchronous operations)
632
642
  */
633
- execution_time_ms: number;
643
+ execution_time_ms?: number | null;
634
644
  /**
635
645
  * Message
636
646
  * Human-readable status message
@@ -1996,6 +2006,9 @@ export type ResponseMode = 'auto' | 'sync' | 'async' | 'stream';
1996
2006
  /**
1997
2007
  * S3CopyRequest
1998
2008
  * Request model for S3 copy operations.
2009
+ *
2010
+ * Copies data from S3 buckets into graph database tables using user-provided
2011
+ * AWS credentials. Supports various file formats and bulk loading options.
1999
2012
  */
2000
2013
  export type S3CopyRequest = {
2001
2014
  /**
@@ -6601,19 +6614,47 @@ export type CopyDataToGraphData = {
6601
6614
  };
6602
6615
 
6603
6616
  export type CopyDataToGraphErrors = {
6617
+ /**
6618
+ * Invalid request parameters
6619
+ */
6620
+ 400: unknown;
6621
+ /**
6622
+ * Access denied or shared repository
6623
+ */
6624
+ 403: unknown;
6625
+ /**
6626
+ * Operation timeout
6627
+ */
6628
+ 408: unknown;
6604
6629
  /**
6605
6630
  * Validation Error
6606
6631
  */
6607
6632
  422: HttpValidationError;
6633
+ /**
6634
+ * Rate limit exceeded
6635
+ */
6636
+ 429: unknown;
6637
+ /**
6638
+ * Internal error
6639
+ */
6640
+ 500: unknown;
6641
+ /**
6642
+ * Service unavailable
6643
+ */
6644
+ 503: unknown;
6608
6645
  };
6609
6646
 
6610
6647
  export type CopyDataToGraphError = CopyDataToGraphErrors[keyof CopyDataToGraphErrors];
6611
6648
 
6612
6649
  export type CopyDataToGraphResponses = {
6613
6650
  /**
6614
- * Successful Response
6651
+ * Copy operation accepted and started
6615
6652
  */
6616
6653
  200: CopyResponse;
6654
+ /**
6655
+ * Copy operation queued for execution
6656
+ */
6657
+ 202: unknown;
6617
6658
  };
6618
6659
 
6619
6660
  export type CopyDataToGraphResponse = CopyDataToGraphResponses[keyof CopyDataToGraphResponses];