@robosystems/client 0.3.35 → 0.3.37

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
@@ -4299,6 +4299,14 @@ export type FactSetLite = {
4299
4299
  * Back-pointer to the ``reports`` table while ``report_id`` still lives on facts. Drops out once the retirement migration lands.
4300
4300
  */
4301
4301
  report_id?: string | null;
4302
+ /**
4303
+ * Provenance
4304
+ *
4305
+ * Typed ``FactProvenance`` descriptor (discriminated on ``origin``: pivot | schedule | derived | asserted) recording how this FactSet's facts were constructed. Surfaced as JSON, mirroring how mechanics is exposed. Null for pre-feature historical FactSets.
4306
+ */
4307
+ provenance?: {
4308
+ [key: string]: unknown;
4309
+ } | null;
4302
4310
  };
4303
4311
 
4304
4312
  /**
@@ -9906,47 +9914,6 @@ export type ReopenPeriodOperation = {
9906
9914
  period: string;
9907
9915
  };
9908
9916
 
9909
- /**
9910
- * ReportBundleDownloadResponse
9911
- *
9912
- * Presigned-URL response for a Report bundle download.
9913
- *
9914
- * Mirrors :class:`BackupDownloadUrlResponse` in shape — the frontend
9915
- * treats both the same way (fetch, follow URL, GET the artifact).
9916
- */
9917
- export type ReportBundleDownloadResponse = {
9918
- /**
9919
- * Download Url
9920
- *
9921
- * Presigned URL that streams the bundle directly from S3.
9922
- */
9923
- download_url: string;
9924
- /**
9925
- * Expires At
9926
- *
9927
- * UTC timestamp at which the presigned URL stops working.
9928
- */
9929
- expires_at: string;
9930
- /**
9931
- * Content Type
9932
- *
9933
- * MIME type of the artifact behind the URL.
9934
- */
9935
- content_type: string;
9936
- /**
9937
- * Format
9938
- *
9939
- * Serialization flavor delivered by this URL — matches the ``format`` query parameter.
9940
- */
9941
- format: string;
9942
- /**
9943
- * Generation Count
9944
- *
9945
- * Bundle generation number stamped on the Report.
9946
- */
9947
- generation_count: number;
9948
- };
9949
-
9950
9917
  /**
9951
9918
  * ReportResponse
9952
9919
  *
@@ -22614,13 +22581,13 @@ export type GetReportBundleDownloadUrlData = {
22614
22581
  /**
22615
22582
  * Format
22616
22583
  *
22617
- * Serialization flavor. ``jsonld`` returns the stored JSON-LD artifact. XBRL flavors arrive in Phase 1b.
22584
+ * Serialization flavor. ``jsonld`` returns a presigned URL to the stored JSON-LD bundle; ``xbrl-2.1`` streams a freshly-emitted XBRL zip directly. Other RDF / XBRL flavors slot in as their producers ship.
22618
22585
  */
22619
22586
  format?: string;
22620
22587
  /**
22621
22588
  * Expires In
22622
22589
  *
22623
- * Presigned URL lifetime in seconds (min 60, max 3600).
22590
+ * Presigned URL lifetime in seconds (min 60, max 3600). Ignored for XBRL flavors (streamed directly, no URL).
22624
22591
  */
22625
22592
  expires_in?: number;
22626
22593
  };
@@ -22638,9 +22605,49 @@ export type GetReportBundleDownloadUrlError = GetReportBundleDownloadUrlErrors[k
22638
22605
 
22639
22606
  export type GetReportBundleDownloadUrlResponses = {
22640
22607
  /**
22641
- * Successful Response
22608
+ * ReportBundleDownloadResponse
22609
+ *
22610
+ * Presigned-URL response for a Report bundle download.
22611
+ *
22612
+ * Mirrors :class:`BackupDownloadUrlResponse` in shape — the frontend
22613
+ * treats both the same way (fetch, follow URL, GET the artifact).
22614
+ *
22615
+ * Only returned for RDF-family flavors (JSON-LD) where the artifact
22616
+ * is stored in S3. XBRL flavors stream the binary content directly
22617
+ * in the response body (no JSON wrapper).
22642
22618
  */
22643
- 200: ReportBundleDownloadResponse;
22619
+ 200: {
22620
+ /**
22621
+ * Download Url
22622
+ *
22623
+ * Presigned URL that streams the bundle directly from S3.
22624
+ */
22625
+ download_url: string;
22626
+ /**
22627
+ * Expires At
22628
+ *
22629
+ * UTC timestamp at which the presigned URL stops working.
22630
+ */
22631
+ expires_at: string;
22632
+ /**
22633
+ * Content Type
22634
+ *
22635
+ * MIME type of the artifact behind the URL.
22636
+ */
22637
+ content_type: string;
22638
+ /**
22639
+ * Format
22640
+ *
22641
+ * Serialization flavor delivered by this URL — matches the ``format`` query parameter.
22642
+ */
22643
+ format: string;
22644
+ /**
22645
+ * Generation Count
22646
+ *
22647
+ * Bundle generation number stamped on the Report.
22648
+ */
22649
+ generation_count: number;
22650
+ };
22644
22651
  };
22645
22652
 
22646
22653
  export type GetReportBundleDownloadUrlResponse = GetReportBundleDownloadUrlResponses[keyof GetReportBundleDownloadUrlResponses];