@robosystems/client 0.3.13 → 0.3.15
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/artifacts/InvestorClient.d.ts +35 -20
- package/artifacts/InvestorClient.js +78 -71
- package/artifacts/InvestorClient.ts +164 -141
- package/artifacts/LedgerClient.d.ts +22 -1
- package/artifacts/LedgerClient.js +40 -0
- package/artifacts/LedgerClient.ts +67 -0
- package/artifacts/graphql/generated/graphql.d.ts +401 -6
- package/artifacts/graphql/generated/graphql.js +633 -4
- package/artifacts/graphql/generated/graphql.ts +1058 -41
- package/artifacts/graphql/queries/investor/portfolio_block.d.ts +10 -0
- package/artifacts/graphql/queries/investor/portfolio_block.js +60 -0
- package/artifacts/graphql/queries/investor/portfolio_block.ts +58 -0
- package/artifacts/graphql/queries/ledger/informationBlock.js +110 -0
- package/artifacts/graphql/queries/ledger/informationBlock.ts +110 -0
- package/artifacts/graphql/queries/ledger/reportPackage.d.ts +11 -0
- package/artifacts/graphql/queries/ledger/reportPackage.js +151 -0
- package/artifacts/graphql/queries/ledger/reportPackage.ts +149 -0
- package/index.ts +2 -2
- package/package.json +1 -1
- package/sdk/index.d.ts +2 -2
- package/sdk/index.js +8 -9
- package/sdk/index.ts +2 -2
- package/sdk/sdk.gen.d.ts +26 -34
- package/sdk/sdk.gen.js +51 -68
- package/sdk/sdk.gen.ts +47 -64
- package/sdk/types.gen.d.ts +409 -365
- package/sdk/types.gen.ts +411 -367
- package/sdk.gen.d.ts +26 -34
- package/sdk.gen.js +51 -68
- package/sdk.gen.ts +47 -64
- package/types.gen.d.ts +409 -365
- package/types.gen.ts +411 -367
- package/artifacts/graphql/queries/investor/portfolio.d.ts +0 -4
- package/artifacts/graphql/queries/investor/portfolio.js +0 -21
- package/artifacts/graphql/queries/investor/portfolio.ts +0 -19
package/types.gen.ts
CHANGED
|
@@ -1713,79 +1713,20 @@ export type CreateMappingAssociationOperation = {
|
|
|
1713
1713
|
};
|
|
1714
1714
|
|
|
1715
1715
|
/**
|
|
1716
|
-
*
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
/**
|
|
1724
|
-
* Description
|
|
1725
|
-
*/
|
|
1726
|
-
description?: string | null;
|
|
1727
|
-
/**
|
|
1728
|
-
* Strategy
|
|
1729
|
-
*/
|
|
1730
|
-
strategy?: string | null;
|
|
1731
|
-
/**
|
|
1732
|
-
* Inception Date
|
|
1733
|
-
*/
|
|
1734
|
-
inception_date?: string | null;
|
|
1735
|
-
/**
|
|
1736
|
-
* Base Currency
|
|
1737
|
-
*/
|
|
1738
|
-
base_currency?: string;
|
|
1739
|
-
};
|
|
1740
|
-
|
|
1741
|
-
/**
|
|
1742
|
-
* CreatePositionRequest
|
|
1716
|
+
* CreatePortfolioBlockRequest
|
|
1717
|
+
*
|
|
1718
|
+
* CQRS body for `POST /operations/create-portfolio-block`.
|
|
1719
|
+
*
|
|
1720
|
+
* Whole envelope validated before any DB write; the portfolio + initial
|
|
1721
|
+
* positions land in one transaction. Each `position` references an
|
|
1722
|
+
* existing `security_id` — the operation does not mint securities.
|
|
1743
1723
|
*/
|
|
1744
|
-
export type
|
|
1745
|
-
|
|
1746
|
-
* Portfolio Id
|
|
1747
|
-
*/
|
|
1748
|
-
portfolio_id: string;
|
|
1749
|
-
/**
|
|
1750
|
-
* Security Id
|
|
1751
|
-
*/
|
|
1752
|
-
security_id: string;
|
|
1753
|
-
/**
|
|
1754
|
-
* Quantity
|
|
1755
|
-
*/
|
|
1756
|
-
quantity: number;
|
|
1757
|
-
/**
|
|
1758
|
-
* Quantity Type
|
|
1759
|
-
*/
|
|
1760
|
-
quantity_type?: string;
|
|
1761
|
-
/**
|
|
1762
|
-
* Cost Basis
|
|
1763
|
-
*/
|
|
1764
|
-
cost_basis?: number;
|
|
1765
|
-
/**
|
|
1766
|
-
* Currency
|
|
1767
|
-
*/
|
|
1768
|
-
currency?: string;
|
|
1769
|
-
/**
|
|
1770
|
-
* Current Value
|
|
1771
|
-
*/
|
|
1772
|
-
current_value?: number | null;
|
|
1773
|
-
/**
|
|
1774
|
-
* Valuation Date
|
|
1775
|
-
*/
|
|
1776
|
-
valuation_date?: string | null;
|
|
1777
|
-
/**
|
|
1778
|
-
* Valuation Source
|
|
1779
|
-
*/
|
|
1780
|
-
valuation_source?: string | null;
|
|
1781
|
-
/**
|
|
1782
|
-
* Acquisition Date
|
|
1783
|
-
*/
|
|
1784
|
-
acquisition_date?: string | null;
|
|
1724
|
+
export type CreatePortfolioBlockRequest = {
|
|
1725
|
+
portfolio: PortfolioBlockPortfolioFields;
|
|
1785
1726
|
/**
|
|
1786
|
-
*
|
|
1727
|
+
* Positions
|
|
1787
1728
|
*/
|
|
1788
|
-
|
|
1729
|
+
positions?: Array<PortfolioBlockPositionAdd>;
|
|
1789
1730
|
};
|
|
1790
1731
|
|
|
1791
1732
|
/**
|
|
@@ -2630,31 +2571,26 @@ export type DeleteMappingAssociationOperation = {
|
|
|
2630
2571
|
};
|
|
2631
2572
|
|
|
2632
2573
|
/**
|
|
2633
|
-
*
|
|
2574
|
+
* DeletePortfolioBlockOperation
|
|
2634
2575
|
*
|
|
2635
|
-
* CQRS body for `POST /operations/delete-portfolio`.
|
|
2576
|
+
* CQRS body for `POST /operations/delete-portfolio-block`.
|
|
2577
|
+
*
|
|
2578
|
+
* Cascade-deletes the portfolio plus all of its positions. When the
|
|
2579
|
+
* portfolio still has active positions, the operation is rejected
|
|
2580
|
+
* unless `confirm_active_positions=true` is set — safety belt to
|
|
2581
|
+
* prevent accidental cascade.
|
|
2636
2582
|
*/
|
|
2637
|
-
export type
|
|
2583
|
+
export type DeletePortfolioBlockOperation = {
|
|
2638
2584
|
/**
|
|
2639
2585
|
* Portfolio Id
|
|
2640
2586
|
*
|
|
2641
2587
|
* Target portfolio ID.
|
|
2642
2588
|
*/
|
|
2643
2589
|
portfolio_id: string;
|
|
2644
|
-
};
|
|
2645
|
-
|
|
2646
|
-
/**
|
|
2647
|
-
* DeletePositionOperation
|
|
2648
|
-
*
|
|
2649
|
-
* CQRS body for `POST /operations/delete-position` (soft delete).
|
|
2650
|
-
*/
|
|
2651
|
-
export type DeletePositionOperation = {
|
|
2652
2590
|
/**
|
|
2653
|
-
*
|
|
2654
|
-
*
|
|
2655
|
-
* Target position ID.
|
|
2591
|
+
* Confirm Active Positions
|
|
2656
2592
|
*/
|
|
2657
|
-
|
|
2593
|
+
confirm_active_positions?: boolean;
|
|
2658
2594
|
};
|
|
2659
2595
|
|
|
2660
2596
|
/**
|
|
@@ -3414,6 +3350,25 @@ export type FileLayerStatus = {
|
|
|
3414
3350
|
size_bytes?: number | null;
|
|
3415
3351
|
};
|
|
3416
3352
|
|
|
3353
|
+
/**
|
|
3354
|
+
* FileReportRequest
|
|
3355
|
+
*
|
|
3356
|
+
* Transition a Report to ``filed`` — locks the package.
|
|
3357
|
+
*
|
|
3358
|
+
* Acceptable from ``draft`` or ``under_review``. ``filed_by`` and
|
|
3359
|
+
* ``filed_at`` are stamped from the auth context + server clock; the
|
|
3360
|
+
* request itself carries no fields today (kept as a model for OpenAPI
|
|
3361
|
+
* shape consistency and to avoid breaking changes if we add fields).
|
|
3362
|
+
*/
|
|
3363
|
+
export type FileReportRequest = {
|
|
3364
|
+
/**
|
|
3365
|
+
* Report Id
|
|
3366
|
+
*
|
|
3367
|
+
* The Report to file.
|
|
3368
|
+
*/
|
|
3369
|
+
report_id: string;
|
|
3370
|
+
};
|
|
3371
|
+
|
|
3417
3372
|
/**
|
|
3418
3373
|
* FileStatusUpdate
|
|
3419
3374
|
*/
|
|
@@ -5757,6 +5712,207 @@ export type PortalSessionResponse = {
|
|
|
5757
5712
|
portal_url: string;
|
|
5758
5713
|
};
|
|
5759
5714
|
|
|
5715
|
+
/**
|
|
5716
|
+
* PortfolioBlockPortfolioFields
|
|
5717
|
+
*
|
|
5718
|
+
* Fields settable on the portfolio core when creating a block.
|
|
5719
|
+
*/
|
|
5720
|
+
export type PortfolioBlockPortfolioFields = {
|
|
5721
|
+
/**
|
|
5722
|
+
* Name
|
|
5723
|
+
*/
|
|
5724
|
+
name: string;
|
|
5725
|
+
/**
|
|
5726
|
+
* Description
|
|
5727
|
+
*/
|
|
5728
|
+
description?: string | null;
|
|
5729
|
+
/**
|
|
5730
|
+
* Strategy
|
|
5731
|
+
*/
|
|
5732
|
+
strategy?: string | null;
|
|
5733
|
+
/**
|
|
5734
|
+
* Inception Date
|
|
5735
|
+
*/
|
|
5736
|
+
inception_date?: string | null;
|
|
5737
|
+
/**
|
|
5738
|
+
* Base Currency
|
|
5739
|
+
*/
|
|
5740
|
+
base_currency?: string;
|
|
5741
|
+
/**
|
|
5742
|
+
* Entity Id
|
|
5743
|
+
*/
|
|
5744
|
+
entity_id?: string | null;
|
|
5745
|
+
};
|
|
5746
|
+
|
|
5747
|
+
/**
|
|
5748
|
+
* PortfolioBlockPortfolioPatch
|
|
5749
|
+
*
|
|
5750
|
+
* Patchable portfolio fields on `update-portfolio-block`. Unset fields ignored.
|
|
5751
|
+
*/
|
|
5752
|
+
export type PortfolioBlockPortfolioPatch = {
|
|
5753
|
+
/**
|
|
5754
|
+
* Name
|
|
5755
|
+
*/
|
|
5756
|
+
name?: string | null;
|
|
5757
|
+
/**
|
|
5758
|
+
* Description
|
|
5759
|
+
*/
|
|
5760
|
+
description?: string | null;
|
|
5761
|
+
/**
|
|
5762
|
+
* Strategy
|
|
5763
|
+
*/
|
|
5764
|
+
strategy?: string | null;
|
|
5765
|
+
/**
|
|
5766
|
+
* Inception Date
|
|
5767
|
+
*/
|
|
5768
|
+
inception_date?: string | null;
|
|
5769
|
+
/**
|
|
5770
|
+
* Base Currency
|
|
5771
|
+
*/
|
|
5772
|
+
base_currency?: string | null;
|
|
5773
|
+
/**
|
|
5774
|
+
* Entity Id
|
|
5775
|
+
*/
|
|
5776
|
+
entity_id?: string | null;
|
|
5777
|
+
};
|
|
5778
|
+
|
|
5779
|
+
/**
|
|
5780
|
+
* PortfolioBlockPositionAdd
|
|
5781
|
+
*
|
|
5782
|
+
* A single new position to mint inside a portfolio-block create/update.
|
|
5783
|
+
*
|
|
5784
|
+
* References an existing security; this surface never creates securities
|
|
5785
|
+
* (Master Data CRUD owns that lifecycle).
|
|
5786
|
+
*/
|
|
5787
|
+
export type PortfolioBlockPositionAdd = {
|
|
5788
|
+
/**
|
|
5789
|
+
* Security Id
|
|
5790
|
+
*/
|
|
5791
|
+
security_id: string;
|
|
5792
|
+
/**
|
|
5793
|
+
* Quantity
|
|
5794
|
+
*/
|
|
5795
|
+
quantity: number;
|
|
5796
|
+
/**
|
|
5797
|
+
* Quantity Type
|
|
5798
|
+
*/
|
|
5799
|
+
quantity_type?: string;
|
|
5800
|
+
/**
|
|
5801
|
+
* Cost Basis
|
|
5802
|
+
*/
|
|
5803
|
+
cost_basis?: number;
|
|
5804
|
+
/**
|
|
5805
|
+
* Currency
|
|
5806
|
+
*/
|
|
5807
|
+
currency?: string;
|
|
5808
|
+
/**
|
|
5809
|
+
* Current Value
|
|
5810
|
+
*/
|
|
5811
|
+
current_value?: number | null;
|
|
5812
|
+
/**
|
|
5813
|
+
* Valuation Date
|
|
5814
|
+
*/
|
|
5815
|
+
valuation_date?: string | null;
|
|
5816
|
+
/**
|
|
5817
|
+
* Valuation Source
|
|
5818
|
+
*/
|
|
5819
|
+
valuation_source?: string | null;
|
|
5820
|
+
/**
|
|
5821
|
+
* Acquisition Date
|
|
5822
|
+
*/
|
|
5823
|
+
acquisition_date?: string | null;
|
|
5824
|
+
/**
|
|
5825
|
+
* Notes
|
|
5826
|
+
*/
|
|
5827
|
+
notes?: string | null;
|
|
5828
|
+
};
|
|
5829
|
+
|
|
5830
|
+
/**
|
|
5831
|
+
* PortfolioBlockPositionDispose
|
|
5832
|
+
*
|
|
5833
|
+
* Dispose-by-id for an existing position in `update-portfolio-block`.
|
|
5834
|
+
*
|
|
5835
|
+
* Soft-delete: status flips to `disposed` and `disposition_date` is
|
|
5836
|
+
* stamped. `disposition_reason`, when supplied, is recorded under
|
|
5837
|
+
* `metadata.disposition_reason`.
|
|
5838
|
+
*/
|
|
5839
|
+
export type PortfolioBlockPositionDispose = {
|
|
5840
|
+
/**
|
|
5841
|
+
* Id
|
|
5842
|
+
*/
|
|
5843
|
+
id: string;
|
|
5844
|
+
/**
|
|
5845
|
+
* Disposition Reason
|
|
5846
|
+
*/
|
|
5847
|
+
disposition_reason?: string | null;
|
|
5848
|
+
};
|
|
5849
|
+
|
|
5850
|
+
/**
|
|
5851
|
+
* PortfolioBlockPositionUpdate
|
|
5852
|
+
*
|
|
5853
|
+
* Patch-by-id for an existing position in `update-portfolio-block`.
|
|
5854
|
+
*
|
|
5855
|
+
* Unset fields are ignored; `id` is the only required field.
|
|
5856
|
+
*/
|
|
5857
|
+
export type PortfolioBlockPositionUpdate = {
|
|
5858
|
+
/**
|
|
5859
|
+
* Id
|
|
5860
|
+
*/
|
|
5861
|
+
id: string;
|
|
5862
|
+
/**
|
|
5863
|
+
* Quantity
|
|
5864
|
+
*/
|
|
5865
|
+
quantity?: number | null;
|
|
5866
|
+
/**
|
|
5867
|
+
* Quantity Type
|
|
5868
|
+
*/
|
|
5869
|
+
quantity_type?: string | null;
|
|
5870
|
+
/**
|
|
5871
|
+
* Cost Basis
|
|
5872
|
+
*/
|
|
5873
|
+
cost_basis?: number | null;
|
|
5874
|
+
/**
|
|
5875
|
+
* Current Value
|
|
5876
|
+
*/
|
|
5877
|
+
current_value?: number | null;
|
|
5878
|
+
/**
|
|
5879
|
+
* Valuation Date
|
|
5880
|
+
*/
|
|
5881
|
+
valuation_date?: string | null;
|
|
5882
|
+
/**
|
|
5883
|
+
* Valuation Source
|
|
5884
|
+
*/
|
|
5885
|
+
valuation_source?: string | null;
|
|
5886
|
+
/**
|
|
5887
|
+
* Acquisition Date
|
|
5888
|
+
*/
|
|
5889
|
+
acquisition_date?: string | null;
|
|
5890
|
+
/**
|
|
5891
|
+
* Notes
|
|
5892
|
+
*/
|
|
5893
|
+
notes?: string | null;
|
|
5894
|
+
};
|
|
5895
|
+
|
|
5896
|
+
/**
|
|
5897
|
+
* PortfolioBlockPositions
|
|
5898
|
+
*
|
|
5899
|
+
* Position deltas applied atomically inside `update-portfolio-block`.
|
|
5900
|
+
*/
|
|
5901
|
+
export type PortfolioBlockPositions = {
|
|
5902
|
+
/**
|
|
5903
|
+
* Add
|
|
5904
|
+
*/
|
|
5905
|
+
add?: Array<PortfolioBlockPositionAdd>;
|
|
5906
|
+
/**
|
|
5907
|
+
* Update
|
|
5908
|
+
*/
|
|
5909
|
+
update?: Array<PortfolioBlockPositionUpdate>;
|
|
5910
|
+
/**
|
|
5911
|
+
* Dispose
|
|
5912
|
+
*/
|
|
5913
|
+
dispose?: Array<PortfolioBlockPositionDispose>;
|
|
5914
|
+
};
|
|
5915
|
+
|
|
5760
5916
|
/**
|
|
5761
5917
|
* QueryLimits
|
|
5762
5918
|
*
|
|
@@ -7512,7 +7668,30 @@ export type TransactionTemplateLeg = {
|
|
|
7512
7668
|
};
|
|
7513
7669
|
|
|
7514
7670
|
/**
|
|
7515
|
-
*
|
|
7671
|
+
* TransitionFilingStatusRequest
|
|
7672
|
+
*
|
|
7673
|
+
* Generic filing-status transition — escape hatch for non-file moves.
|
|
7674
|
+
*
|
|
7675
|
+
* Used for ``draft → under_review`` (submit for review) and
|
|
7676
|
+
* ``filed → archived`` (supersede / retire). Filing the package goes
|
|
7677
|
+
* through :class:`FileReportRequest` so ``filed_at`` / ``filed_by``
|
|
7678
|
+
* audit fields land cleanly.
|
|
7679
|
+
*/
|
|
7680
|
+
export type TransitionFilingStatusRequest = {
|
|
7681
|
+
/**
|
|
7682
|
+
* Report Id
|
|
7683
|
+
*/
|
|
7684
|
+
report_id: string;
|
|
7685
|
+
/**
|
|
7686
|
+
* Target Status
|
|
7687
|
+
*
|
|
7688
|
+
* under_review | archived
|
|
7689
|
+
*/
|
|
7690
|
+
target_status: string;
|
|
7691
|
+
};
|
|
7692
|
+
|
|
7693
|
+
/**
|
|
7694
|
+
* UpcomingInvoice
|
|
7516
7695
|
*
|
|
7517
7696
|
* Upcoming invoice preview.
|
|
7518
7697
|
*/
|
|
@@ -7956,94 +8135,23 @@ export type UpdatePasswordRequest = {
|
|
|
7956
8135
|
};
|
|
7957
8136
|
|
|
7958
8137
|
/**
|
|
7959
|
-
*
|
|
8138
|
+
* UpdatePortfolioBlockOperation
|
|
7960
8139
|
*
|
|
7961
|
-
* CQRS body for `POST /operations/update-portfolio`.
|
|
8140
|
+
* CQRS body for `POST /operations/update-portfolio-block`.
|
|
7962
8141
|
*
|
|
7963
|
-
*
|
|
7964
|
-
*
|
|
8142
|
+
* Carries an optional patch to portfolio fields and three position
|
|
8143
|
+
* delta lists (`add` / `update` / `dispose`). All apply atomically
|
|
8144
|
+
* with the portfolio patch — partial failures roll back.
|
|
7965
8145
|
*/
|
|
7966
|
-
export type
|
|
7967
|
-
/**
|
|
7968
|
-
* Name
|
|
7969
|
-
*/
|
|
7970
|
-
name?: string | null;
|
|
7971
|
-
/**
|
|
7972
|
-
* Description
|
|
7973
|
-
*/
|
|
7974
|
-
description?: string | null;
|
|
7975
|
-
/**
|
|
7976
|
-
* Strategy
|
|
7977
|
-
*/
|
|
7978
|
-
strategy?: string | null;
|
|
7979
|
-
/**
|
|
7980
|
-
* Inception Date
|
|
7981
|
-
*/
|
|
7982
|
-
inception_date?: string | null;
|
|
7983
|
-
/**
|
|
7984
|
-
* Base Currency
|
|
7985
|
-
*/
|
|
7986
|
-
base_currency?: string | null;
|
|
8146
|
+
export type UpdatePortfolioBlockOperation = {
|
|
7987
8147
|
/**
|
|
7988
8148
|
* Portfolio Id
|
|
7989
8149
|
*
|
|
7990
8150
|
* Target portfolio ID.
|
|
7991
8151
|
*/
|
|
7992
8152
|
portfolio_id: string;
|
|
7993
|
-
|
|
7994
|
-
|
|
7995
|
-
/**
|
|
7996
|
-
* UpdatePositionOperation
|
|
7997
|
-
*
|
|
7998
|
-
* CQRS body for `POST /operations/update-position`.
|
|
7999
|
-
*/
|
|
8000
|
-
export type UpdatePositionOperation = {
|
|
8001
|
-
/**
|
|
8002
|
-
* Quantity
|
|
8003
|
-
*/
|
|
8004
|
-
quantity?: number | null;
|
|
8005
|
-
/**
|
|
8006
|
-
* Quantity Type
|
|
8007
|
-
*/
|
|
8008
|
-
quantity_type?: string | null;
|
|
8009
|
-
/**
|
|
8010
|
-
* Cost Basis
|
|
8011
|
-
*/
|
|
8012
|
-
cost_basis?: number | null;
|
|
8013
|
-
/**
|
|
8014
|
-
* Current Value
|
|
8015
|
-
*/
|
|
8016
|
-
current_value?: number | null;
|
|
8017
|
-
/**
|
|
8018
|
-
* Valuation Date
|
|
8019
|
-
*/
|
|
8020
|
-
valuation_date?: string | null;
|
|
8021
|
-
/**
|
|
8022
|
-
* Valuation Source
|
|
8023
|
-
*/
|
|
8024
|
-
valuation_source?: string | null;
|
|
8025
|
-
/**
|
|
8026
|
-
* Acquisition Date
|
|
8027
|
-
*/
|
|
8028
|
-
acquisition_date?: string | null;
|
|
8029
|
-
/**
|
|
8030
|
-
* Disposition Date
|
|
8031
|
-
*/
|
|
8032
|
-
disposition_date?: string | null;
|
|
8033
|
-
/**
|
|
8034
|
-
* Status
|
|
8035
|
-
*/
|
|
8036
|
-
status?: string | null;
|
|
8037
|
-
/**
|
|
8038
|
-
* Notes
|
|
8039
|
-
*/
|
|
8040
|
-
notes?: string | null;
|
|
8041
|
-
/**
|
|
8042
|
-
* Position Id
|
|
8043
|
-
*
|
|
8044
|
-
* Target position ID.
|
|
8045
|
-
*/
|
|
8046
|
-
position_id: string;
|
|
8153
|
+
portfolio?: PortfolioBlockPortfolioPatch;
|
|
8154
|
+
positions?: PortfolioBlockPositions;
|
|
8047
8155
|
};
|
|
8048
8156
|
|
|
8049
8157
|
/**
|
|
@@ -16337,8 +16445,8 @@ export type OpShareReportResponses = {
|
|
|
16337
16445
|
|
|
16338
16446
|
export type OpShareReportResponse = OpShareReportResponses[keyof OpShareReportResponses];
|
|
16339
16447
|
|
|
16340
|
-
export type
|
|
16341
|
-
body:
|
|
16448
|
+
export type OpFileReportData = {
|
|
16449
|
+
body: FileReportRequest;
|
|
16342
16450
|
headers?: {
|
|
16343
16451
|
/**
|
|
16344
16452
|
* Idempotency-Key
|
|
@@ -16352,10 +16460,10 @@ export type OpCreatePublishListData = {
|
|
|
16352
16460
|
graph_id: string;
|
|
16353
16461
|
};
|
|
16354
16462
|
query?: never;
|
|
16355
|
-
url: '/extensions/roboledger/{graph_id}/operations/
|
|
16463
|
+
url: '/extensions/roboledger/{graph_id}/operations/file-report';
|
|
16356
16464
|
};
|
|
16357
16465
|
|
|
16358
|
-
export type
|
|
16466
|
+
export type OpFileReportErrors = {
|
|
16359
16467
|
/**
|
|
16360
16468
|
* Invalid request
|
|
16361
16469
|
*/
|
|
@@ -16390,19 +16498,19 @@ export type OpCreatePublishListErrors = {
|
|
|
16390
16498
|
500: ErrorResponse;
|
|
16391
16499
|
};
|
|
16392
16500
|
|
|
16393
|
-
export type
|
|
16501
|
+
export type OpFileReportError = OpFileReportErrors[keyof OpFileReportErrors];
|
|
16394
16502
|
|
|
16395
|
-
export type
|
|
16503
|
+
export type OpFileReportResponses = {
|
|
16396
16504
|
/**
|
|
16397
16505
|
* Successful Response
|
|
16398
16506
|
*/
|
|
16399
16507
|
200: OperationEnvelope;
|
|
16400
16508
|
};
|
|
16401
16509
|
|
|
16402
|
-
export type
|
|
16510
|
+
export type OpFileReportResponse = OpFileReportResponses[keyof OpFileReportResponses];
|
|
16403
16511
|
|
|
16404
|
-
export type
|
|
16405
|
-
body:
|
|
16512
|
+
export type OpTransitionFilingStatusData = {
|
|
16513
|
+
body: TransitionFilingStatusRequest;
|
|
16406
16514
|
headers?: {
|
|
16407
16515
|
/**
|
|
16408
16516
|
* Idempotency-Key
|
|
@@ -16416,10 +16524,10 @@ export type OpUpdatePublishListData = {
|
|
|
16416
16524
|
graph_id: string;
|
|
16417
16525
|
};
|
|
16418
16526
|
query?: never;
|
|
16419
|
-
url: '/extensions/roboledger/{graph_id}/operations/
|
|
16527
|
+
url: '/extensions/roboledger/{graph_id}/operations/transition-filing-status';
|
|
16420
16528
|
};
|
|
16421
16529
|
|
|
16422
|
-
export type
|
|
16530
|
+
export type OpTransitionFilingStatusErrors = {
|
|
16423
16531
|
/**
|
|
16424
16532
|
* Invalid request
|
|
16425
16533
|
*/
|
|
@@ -16454,19 +16562,19 @@ export type OpUpdatePublishListErrors = {
|
|
|
16454
16562
|
500: ErrorResponse;
|
|
16455
16563
|
};
|
|
16456
16564
|
|
|
16457
|
-
export type
|
|
16565
|
+
export type OpTransitionFilingStatusError = OpTransitionFilingStatusErrors[keyof OpTransitionFilingStatusErrors];
|
|
16458
16566
|
|
|
16459
|
-
export type
|
|
16567
|
+
export type OpTransitionFilingStatusResponses = {
|
|
16460
16568
|
/**
|
|
16461
16569
|
* Successful Response
|
|
16462
16570
|
*/
|
|
16463
16571
|
200: OperationEnvelope;
|
|
16464
16572
|
};
|
|
16465
16573
|
|
|
16466
|
-
export type
|
|
16574
|
+
export type OpTransitionFilingStatusResponse = OpTransitionFilingStatusResponses[keyof OpTransitionFilingStatusResponses];
|
|
16467
16575
|
|
|
16468
|
-
export type
|
|
16469
|
-
body:
|
|
16576
|
+
export type OpCreatePublishListData = {
|
|
16577
|
+
body: CreatePublishListRequest;
|
|
16470
16578
|
headers?: {
|
|
16471
16579
|
/**
|
|
16472
16580
|
* Idempotency-Key
|
|
@@ -16480,10 +16588,10 @@ export type OpDeletePublishListData = {
|
|
|
16480
16588
|
graph_id: string;
|
|
16481
16589
|
};
|
|
16482
16590
|
query?: never;
|
|
16483
|
-
url: '/extensions/roboledger/{graph_id}/operations/
|
|
16591
|
+
url: '/extensions/roboledger/{graph_id}/operations/create-publish-list';
|
|
16484
16592
|
};
|
|
16485
16593
|
|
|
16486
|
-
export type
|
|
16594
|
+
export type OpCreatePublishListErrors = {
|
|
16487
16595
|
/**
|
|
16488
16596
|
* Invalid request
|
|
16489
16597
|
*/
|
|
@@ -16518,19 +16626,19 @@ export type OpDeletePublishListErrors = {
|
|
|
16518
16626
|
500: ErrorResponse;
|
|
16519
16627
|
};
|
|
16520
16628
|
|
|
16521
|
-
export type
|
|
16629
|
+
export type OpCreatePublishListError = OpCreatePublishListErrors[keyof OpCreatePublishListErrors];
|
|
16522
16630
|
|
|
16523
|
-
export type
|
|
16631
|
+
export type OpCreatePublishListResponses = {
|
|
16524
16632
|
/**
|
|
16525
16633
|
* Successful Response
|
|
16526
16634
|
*/
|
|
16527
16635
|
200: OperationEnvelope;
|
|
16528
16636
|
};
|
|
16529
16637
|
|
|
16530
|
-
export type
|
|
16638
|
+
export type OpCreatePublishListResponse = OpCreatePublishListResponses[keyof OpCreatePublishListResponses];
|
|
16531
16639
|
|
|
16532
|
-
export type
|
|
16533
|
-
body:
|
|
16640
|
+
export type OpUpdatePublishListData = {
|
|
16641
|
+
body: UpdatePublishListOperation;
|
|
16534
16642
|
headers?: {
|
|
16535
16643
|
/**
|
|
16536
16644
|
* Idempotency-Key
|
|
@@ -16544,10 +16652,10 @@ export type OpAddPublishListMembersData = {
|
|
|
16544
16652
|
graph_id: string;
|
|
16545
16653
|
};
|
|
16546
16654
|
query?: never;
|
|
16547
|
-
url: '/extensions/roboledger/{graph_id}/operations/
|
|
16655
|
+
url: '/extensions/roboledger/{graph_id}/operations/update-publish-list';
|
|
16548
16656
|
};
|
|
16549
16657
|
|
|
16550
|
-
export type
|
|
16658
|
+
export type OpUpdatePublishListErrors = {
|
|
16551
16659
|
/**
|
|
16552
16660
|
* Invalid request
|
|
16553
16661
|
*/
|
|
@@ -16582,19 +16690,19 @@ export type OpAddPublishListMembersErrors = {
|
|
|
16582
16690
|
500: ErrorResponse;
|
|
16583
16691
|
};
|
|
16584
16692
|
|
|
16585
|
-
export type
|
|
16693
|
+
export type OpUpdatePublishListError = OpUpdatePublishListErrors[keyof OpUpdatePublishListErrors];
|
|
16586
16694
|
|
|
16587
|
-
export type
|
|
16695
|
+
export type OpUpdatePublishListResponses = {
|
|
16588
16696
|
/**
|
|
16589
16697
|
* Successful Response
|
|
16590
16698
|
*/
|
|
16591
16699
|
200: OperationEnvelope;
|
|
16592
16700
|
};
|
|
16593
16701
|
|
|
16594
|
-
export type
|
|
16702
|
+
export type OpUpdatePublishListResponse = OpUpdatePublishListResponses[keyof OpUpdatePublishListResponses];
|
|
16595
16703
|
|
|
16596
|
-
export type
|
|
16597
|
-
body:
|
|
16704
|
+
export type OpDeletePublishListData = {
|
|
16705
|
+
body: DeletePublishListOperation;
|
|
16598
16706
|
headers?: {
|
|
16599
16707
|
/**
|
|
16600
16708
|
* Idempotency-Key
|
|
@@ -16608,10 +16716,10 @@ export type OpRemovePublishListMemberData = {
|
|
|
16608
16716
|
graph_id: string;
|
|
16609
16717
|
};
|
|
16610
16718
|
query?: never;
|
|
16611
|
-
url: '/extensions/roboledger/{graph_id}/operations/
|
|
16719
|
+
url: '/extensions/roboledger/{graph_id}/operations/delete-publish-list';
|
|
16612
16720
|
};
|
|
16613
16721
|
|
|
16614
|
-
export type
|
|
16722
|
+
export type OpDeletePublishListErrors = {
|
|
16615
16723
|
/**
|
|
16616
16724
|
* Invalid request
|
|
16617
16725
|
*/
|
|
@@ -16646,19 +16754,19 @@ export type OpRemovePublishListMemberErrors = {
|
|
|
16646
16754
|
500: ErrorResponse;
|
|
16647
16755
|
};
|
|
16648
16756
|
|
|
16649
|
-
export type
|
|
16757
|
+
export type OpDeletePublishListError = OpDeletePublishListErrors[keyof OpDeletePublishListErrors];
|
|
16650
16758
|
|
|
16651
|
-
export type
|
|
16759
|
+
export type OpDeletePublishListResponses = {
|
|
16652
16760
|
/**
|
|
16653
16761
|
* Successful Response
|
|
16654
16762
|
*/
|
|
16655
16763
|
200: OperationEnvelope;
|
|
16656
16764
|
};
|
|
16657
16765
|
|
|
16658
|
-
export type
|
|
16766
|
+
export type OpDeletePublishListResponse = OpDeletePublishListResponses[keyof OpDeletePublishListResponses];
|
|
16659
16767
|
|
|
16660
|
-
export type
|
|
16661
|
-
body:
|
|
16768
|
+
export type OpAddPublishListMembersData = {
|
|
16769
|
+
body: AddPublishListMembersOperation;
|
|
16662
16770
|
headers?: {
|
|
16663
16771
|
/**
|
|
16664
16772
|
* Idempotency-Key
|
|
@@ -16672,10 +16780,10 @@ export type OpLiveFinancialStatementData = {
|
|
|
16672
16780
|
graph_id: string;
|
|
16673
16781
|
};
|
|
16674
16782
|
query?: never;
|
|
16675
|
-
url: '/extensions/roboledger/{graph_id}/operations/
|
|
16783
|
+
url: '/extensions/roboledger/{graph_id}/operations/add-publish-list-members';
|
|
16676
16784
|
};
|
|
16677
16785
|
|
|
16678
|
-
export type
|
|
16786
|
+
export type OpAddPublishListMembersErrors = {
|
|
16679
16787
|
/**
|
|
16680
16788
|
* Invalid request
|
|
16681
16789
|
*/
|
|
@@ -16710,19 +16818,19 @@ export type OpLiveFinancialStatementErrors = {
|
|
|
16710
16818
|
500: ErrorResponse;
|
|
16711
16819
|
};
|
|
16712
16820
|
|
|
16713
|
-
export type
|
|
16821
|
+
export type OpAddPublishListMembersError = OpAddPublishListMembersErrors[keyof OpAddPublishListMembersErrors];
|
|
16714
16822
|
|
|
16715
|
-
export type
|
|
16823
|
+
export type OpAddPublishListMembersResponses = {
|
|
16716
16824
|
/**
|
|
16717
16825
|
* Successful Response
|
|
16718
16826
|
*/
|
|
16719
16827
|
200: OperationEnvelope;
|
|
16720
16828
|
};
|
|
16721
16829
|
|
|
16722
|
-
export type
|
|
16830
|
+
export type OpAddPublishListMembersResponse = OpAddPublishListMembersResponses[keyof OpAddPublishListMembersResponses];
|
|
16723
16831
|
|
|
16724
|
-
export type
|
|
16725
|
-
body:
|
|
16832
|
+
export type OpRemovePublishListMemberData = {
|
|
16833
|
+
body: RemovePublishListMemberOperation;
|
|
16726
16834
|
headers?: {
|
|
16727
16835
|
/**
|
|
16728
16836
|
* Idempotency-Key
|
|
@@ -16736,10 +16844,10 @@ export type OpBuildFactGridData = {
|
|
|
16736
16844
|
graph_id: string;
|
|
16737
16845
|
};
|
|
16738
16846
|
query?: never;
|
|
16739
|
-
url: '/extensions/roboledger/{graph_id}/operations/
|
|
16847
|
+
url: '/extensions/roboledger/{graph_id}/operations/remove-publish-list-member';
|
|
16740
16848
|
};
|
|
16741
16849
|
|
|
16742
|
-
export type
|
|
16850
|
+
export type OpRemovePublishListMemberErrors = {
|
|
16743
16851
|
/**
|
|
16744
16852
|
* Invalid request
|
|
16745
16853
|
*/
|
|
@@ -16774,19 +16882,19 @@ export type OpBuildFactGridErrors = {
|
|
|
16774
16882
|
500: ErrorResponse;
|
|
16775
16883
|
};
|
|
16776
16884
|
|
|
16777
|
-
export type
|
|
16885
|
+
export type OpRemovePublishListMemberError = OpRemovePublishListMemberErrors[keyof OpRemovePublishListMemberErrors];
|
|
16778
16886
|
|
|
16779
|
-
export type
|
|
16887
|
+
export type OpRemovePublishListMemberResponses = {
|
|
16780
16888
|
/**
|
|
16781
16889
|
* Successful Response
|
|
16782
16890
|
*/
|
|
16783
16891
|
200: OperationEnvelope;
|
|
16784
16892
|
};
|
|
16785
16893
|
|
|
16786
|
-
export type
|
|
16894
|
+
export type OpRemovePublishListMemberResponse = OpRemovePublishListMemberResponses[keyof OpRemovePublishListMemberResponses];
|
|
16787
16895
|
|
|
16788
|
-
export type
|
|
16789
|
-
body:
|
|
16896
|
+
export type OpLiveFinancialStatementData = {
|
|
16897
|
+
body: LiveFinancialStatementRequest;
|
|
16790
16898
|
headers?: {
|
|
16791
16899
|
/**
|
|
16792
16900
|
* Idempotency-Key
|
|
@@ -16800,10 +16908,10 @@ export type OpFinancialStatementAnalysisData = {
|
|
|
16800
16908
|
graph_id: string;
|
|
16801
16909
|
};
|
|
16802
16910
|
query?: never;
|
|
16803
|
-
url: '/extensions/roboledger/{graph_id}/operations/financial-statement
|
|
16911
|
+
url: '/extensions/roboledger/{graph_id}/operations/live-financial-statement';
|
|
16804
16912
|
};
|
|
16805
16913
|
|
|
16806
|
-
export type
|
|
16914
|
+
export type OpLiveFinancialStatementErrors = {
|
|
16807
16915
|
/**
|
|
16808
16916
|
* Invalid request
|
|
16809
16917
|
*/
|
|
@@ -16838,83 +16946,19 @@ export type OpFinancialStatementAnalysisErrors = {
|
|
|
16838
16946
|
500: ErrorResponse;
|
|
16839
16947
|
};
|
|
16840
16948
|
|
|
16841
|
-
export type
|
|
16842
|
-
|
|
16843
|
-
export type OpFinancialStatementAnalysisResponses = {
|
|
16844
|
-
/**
|
|
16845
|
-
* Successful Response
|
|
16846
|
-
*/
|
|
16847
|
-
200: OperationEnvelope;
|
|
16848
|
-
};
|
|
16849
|
-
|
|
16850
|
-
export type OpFinancialStatementAnalysisResponse = OpFinancialStatementAnalysisResponses[keyof OpFinancialStatementAnalysisResponses];
|
|
16851
|
-
|
|
16852
|
-
export type OpCreatePortfolioData = {
|
|
16853
|
-
body: CreatePortfolioRequest;
|
|
16854
|
-
headers?: {
|
|
16855
|
-
/**
|
|
16856
|
-
* Idempotency-Key
|
|
16857
|
-
*/
|
|
16858
|
-
'Idempotency-Key'?: string | null;
|
|
16859
|
-
};
|
|
16860
|
-
path: {
|
|
16861
|
-
/**
|
|
16862
|
-
* Graph Id
|
|
16863
|
-
*/
|
|
16864
|
-
graph_id: string;
|
|
16865
|
-
};
|
|
16866
|
-
query?: never;
|
|
16867
|
-
url: '/extensions/roboinvestor/{graph_id}/operations/create-portfolio';
|
|
16868
|
-
};
|
|
16869
|
-
|
|
16870
|
-
export type OpCreatePortfolioErrors = {
|
|
16871
|
-
/**
|
|
16872
|
-
* Invalid request payload
|
|
16873
|
-
*/
|
|
16874
|
-
400: OperationError;
|
|
16875
|
-
/**
|
|
16876
|
-
* Unauthorized — missing or invalid credentials
|
|
16877
|
-
*/
|
|
16878
|
-
401: unknown;
|
|
16879
|
-
/**
|
|
16880
|
-
* Forbidden — caller cannot access this graph
|
|
16881
|
-
*/
|
|
16882
|
-
403: unknown;
|
|
16883
|
-
/**
|
|
16884
|
-
* Resource not found (graph, ledger, report, etc.)
|
|
16885
|
-
*/
|
|
16886
|
-
404: OperationError;
|
|
16887
|
-
/**
|
|
16888
|
-
* Idempotency-Key reused with a different request body, or other operation-level conflict
|
|
16889
|
-
*/
|
|
16890
|
-
409: OperationError;
|
|
16891
|
-
/**
|
|
16892
|
-
* Validation Error
|
|
16893
|
-
*/
|
|
16894
|
-
422: HttpValidationError;
|
|
16895
|
-
/**
|
|
16896
|
-
* Rate limit exceeded
|
|
16897
|
-
*/
|
|
16898
|
-
429: unknown;
|
|
16899
|
-
/**
|
|
16900
|
-
* Internal error
|
|
16901
|
-
*/
|
|
16902
|
-
500: unknown;
|
|
16903
|
-
};
|
|
16904
|
-
|
|
16905
|
-
export type OpCreatePortfolioError = OpCreatePortfolioErrors[keyof OpCreatePortfolioErrors];
|
|
16949
|
+
export type OpLiveFinancialStatementError = OpLiveFinancialStatementErrors[keyof OpLiveFinancialStatementErrors];
|
|
16906
16950
|
|
|
16907
|
-
export type
|
|
16951
|
+
export type OpLiveFinancialStatementResponses = {
|
|
16908
16952
|
/**
|
|
16909
16953
|
* Successful Response
|
|
16910
16954
|
*/
|
|
16911
16955
|
200: OperationEnvelope;
|
|
16912
16956
|
};
|
|
16913
16957
|
|
|
16914
|
-
export type
|
|
16958
|
+
export type OpLiveFinancialStatementResponse = OpLiveFinancialStatementResponses[keyof OpLiveFinancialStatementResponses];
|
|
16915
16959
|
|
|
16916
|
-
export type
|
|
16917
|
-
body:
|
|
16960
|
+
export type OpBuildFactGridData = {
|
|
16961
|
+
body: CreateViewRequest;
|
|
16918
16962
|
headers?: {
|
|
16919
16963
|
/**
|
|
16920
16964
|
* Idempotency-Key
|
|
@@ -16928,30 +16972,30 @@ export type OpUpdatePortfolioData = {
|
|
|
16928
16972
|
graph_id: string;
|
|
16929
16973
|
};
|
|
16930
16974
|
query?: never;
|
|
16931
|
-
url: '/extensions/
|
|
16975
|
+
url: '/extensions/roboledger/{graph_id}/operations/build-fact-grid';
|
|
16932
16976
|
};
|
|
16933
16977
|
|
|
16934
|
-
export type
|
|
16978
|
+
export type OpBuildFactGridErrors = {
|
|
16935
16979
|
/**
|
|
16936
|
-
* Invalid request
|
|
16980
|
+
* Invalid request
|
|
16937
16981
|
*/
|
|
16938
|
-
400:
|
|
16982
|
+
400: ErrorResponse;
|
|
16939
16983
|
/**
|
|
16940
|
-
*
|
|
16984
|
+
* Authentication required
|
|
16941
16985
|
*/
|
|
16942
|
-
401:
|
|
16986
|
+
401: ErrorResponse;
|
|
16943
16987
|
/**
|
|
16944
|
-
*
|
|
16988
|
+
* Access denied
|
|
16945
16989
|
*/
|
|
16946
|
-
403:
|
|
16990
|
+
403: ErrorResponse;
|
|
16947
16991
|
/**
|
|
16948
|
-
* Resource not found
|
|
16992
|
+
* Resource not found
|
|
16949
16993
|
*/
|
|
16950
|
-
404:
|
|
16994
|
+
404: ErrorResponse;
|
|
16951
16995
|
/**
|
|
16952
|
-
* Idempotency-Key reused with
|
|
16996
|
+
* Idempotency-Key conflict — key reused with different body
|
|
16953
16997
|
*/
|
|
16954
|
-
409:
|
|
16998
|
+
409: ErrorResponse;
|
|
16955
16999
|
/**
|
|
16956
17000
|
* Validation Error
|
|
16957
17001
|
*/
|
|
@@ -16959,26 +17003,26 @@ export type OpUpdatePortfolioErrors = {
|
|
|
16959
17003
|
/**
|
|
16960
17004
|
* Rate limit exceeded
|
|
16961
17005
|
*/
|
|
16962
|
-
429:
|
|
17006
|
+
429: ErrorResponse;
|
|
16963
17007
|
/**
|
|
16964
|
-
* Internal error
|
|
17008
|
+
* Internal server error
|
|
16965
17009
|
*/
|
|
16966
|
-
500:
|
|
17010
|
+
500: ErrorResponse;
|
|
16967
17011
|
};
|
|
16968
17012
|
|
|
16969
|
-
export type
|
|
17013
|
+
export type OpBuildFactGridError = OpBuildFactGridErrors[keyof OpBuildFactGridErrors];
|
|
16970
17014
|
|
|
16971
|
-
export type
|
|
17015
|
+
export type OpBuildFactGridResponses = {
|
|
16972
17016
|
/**
|
|
16973
17017
|
* Successful Response
|
|
16974
17018
|
*/
|
|
16975
17019
|
200: OperationEnvelope;
|
|
16976
17020
|
};
|
|
16977
17021
|
|
|
16978
|
-
export type
|
|
17022
|
+
export type OpBuildFactGridResponse = OpBuildFactGridResponses[keyof OpBuildFactGridResponses];
|
|
16979
17023
|
|
|
16980
|
-
export type
|
|
16981
|
-
body:
|
|
17024
|
+
export type OpFinancialStatementAnalysisData = {
|
|
17025
|
+
body: FinancialStatementAnalysisRequest;
|
|
16982
17026
|
headers?: {
|
|
16983
17027
|
/**
|
|
16984
17028
|
* Idempotency-Key
|
|
@@ -16992,30 +17036,30 @@ export type OpDeletePortfolioData = {
|
|
|
16992
17036
|
graph_id: string;
|
|
16993
17037
|
};
|
|
16994
17038
|
query?: never;
|
|
16995
|
-
url: '/extensions/
|
|
17039
|
+
url: '/extensions/roboledger/{graph_id}/operations/financial-statement-analysis';
|
|
16996
17040
|
};
|
|
16997
17041
|
|
|
16998
|
-
export type
|
|
17042
|
+
export type OpFinancialStatementAnalysisErrors = {
|
|
16999
17043
|
/**
|
|
17000
|
-
* Invalid request
|
|
17044
|
+
* Invalid request
|
|
17001
17045
|
*/
|
|
17002
|
-
400:
|
|
17046
|
+
400: ErrorResponse;
|
|
17003
17047
|
/**
|
|
17004
|
-
*
|
|
17048
|
+
* Authentication required
|
|
17005
17049
|
*/
|
|
17006
|
-
401:
|
|
17050
|
+
401: ErrorResponse;
|
|
17007
17051
|
/**
|
|
17008
|
-
*
|
|
17052
|
+
* Access denied
|
|
17009
17053
|
*/
|
|
17010
|
-
403:
|
|
17054
|
+
403: ErrorResponse;
|
|
17011
17055
|
/**
|
|
17012
|
-
* Resource not found
|
|
17056
|
+
* Resource not found
|
|
17013
17057
|
*/
|
|
17014
|
-
404:
|
|
17058
|
+
404: ErrorResponse;
|
|
17015
17059
|
/**
|
|
17016
|
-
* Idempotency-Key reused with
|
|
17060
|
+
* Idempotency-Key conflict — key reused with different body
|
|
17017
17061
|
*/
|
|
17018
|
-
409:
|
|
17062
|
+
409: ErrorResponse;
|
|
17019
17063
|
/**
|
|
17020
17064
|
* Validation Error
|
|
17021
17065
|
*/
|
|
@@ -17023,26 +17067,26 @@ export type OpDeletePortfolioErrors = {
|
|
|
17023
17067
|
/**
|
|
17024
17068
|
* Rate limit exceeded
|
|
17025
17069
|
*/
|
|
17026
|
-
429:
|
|
17070
|
+
429: ErrorResponse;
|
|
17027
17071
|
/**
|
|
17028
|
-
* Internal error
|
|
17072
|
+
* Internal server error
|
|
17029
17073
|
*/
|
|
17030
|
-
500:
|
|
17074
|
+
500: ErrorResponse;
|
|
17031
17075
|
};
|
|
17032
17076
|
|
|
17033
|
-
export type
|
|
17077
|
+
export type OpFinancialStatementAnalysisError = OpFinancialStatementAnalysisErrors[keyof OpFinancialStatementAnalysisErrors];
|
|
17034
17078
|
|
|
17035
|
-
export type
|
|
17079
|
+
export type OpFinancialStatementAnalysisResponses = {
|
|
17036
17080
|
/**
|
|
17037
17081
|
* Successful Response
|
|
17038
17082
|
*/
|
|
17039
17083
|
200: OperationEnvelope;
|
|
17040
17084
|
};
|
|
17041
17085
|
|
|
17042
|
-
export type
|
|
17086
|
+
export type OpFinancialStatementAnalysisResponse = OpFinancialStatementAnalysisResponses[keyof OpFinancialStatementAnalysisResponses];
|
|
17043
17087
|
|
|
17044
|
-
export type
|
|
17045
|
-
body:
|
|
17088
|
+
export type OpCreatePortfolioBlockData = {
|
|
17089
|
+
body: CreatePortfolioBlockRequest;
|
|
17046
17090
|
headers?: {
|
|
17047
17091
|
/**
|
|
17048
17092
|
* Idempotency-Key
|
|
@@ -17056,10 +17100,10 @@ export type OpCreateSecurityData = {
|
|
|
17056
17100
|
graph_id: string;
|
|
17057
17101
|
};
|
|
17058
17102
|
query?: never;
|
|
17059
|
-
url: '/extensions/roboinvestor/{graph_id}/operations/create-
|
|
17103
|
+
url: '/extensions/roboinvestor/{graph_id}/operations/create-portfolio-block';
|
|
17060
17104
|
};
|
|
17061
17105
|
|
|
17062
|
-
export type
|
|
17106
|
+
export type OpCreatePortfolioBlockErrors = {
|
|
17063
17107
|
/**
|
|
17064
17108
|
* Invalid request payload
|
|
17065
17109
|
*/
|
|
@@ -17094,19 +17138,19 @@ export type OpCreateSecurityErrors = {
|
|
|
17094
17138
|
500: unknown;
|
|
17095
17139
|
};
|
|
17096
17140
|
|
|
17097
|
-
export type
|
|
17141
|
+
export type OpCreatePortfolioBlockError = OpCreatePortfolioBlockErrors[keyof OpCreatePortfolioBlockErrors];
|
|
17098
17142
|
|
|
17099
|
-
export type
|
|
17143
|
+
export type OpCreatePortfolioBlockResponses = {
|
|
17100
17144
|
/**
|
|
17101
17145
|
* Successful Response
|
|
17102
17146
|
*/
|
|
17103
17147
|
200: OperationEnvelope;
|
|
17104
17148
|
};
|
|
17105
17149
|
|
|
17106
|
-
export type
|
|
17150
|
+
export type OpCreatePortfolioBlockResponse = OpCreatePortfolioBlockResponses[keyof OpCreatePortfolioBlockResponses];
|
|
17107
17151
|
|
|
17108
|
-
export type
|
|
17109
|
-
body:
|
|
17152
|
+
export type OpUpdatePortfolioBlockData = {
|
|
17153
|
+
body: UpdatePortfolioBlockOperation;
|
|
17110
17154
|
headers?: {
|
|
17111
17155
|
/**
|
|
17112
17156
|
* Idempotency-Key
|
|
@@ -17120,10 +17164,10 @@ export type OpUpdateSecurityData = {
|
|
|
17120
17164
|
graph_id: string;
|
|
17121
17165
|
};
|
|
17122
17166
|
query?: never;
|
|
17123
|
-
url: '/extensions/roboinvestor/{graph_id}/operations/update-
|
|
17167
|
+
url: '/extensions/roboinvestor/{graph_id}/operations/update-portfolio-block';
|
|
17124
17168
|
};
|
|
17125
17169
|
|
|
17126
|
-
export type
|
|
17170
|
+
export type OpUpdatePortfolioBlockErrors = {
|
|
17127
17171
|
/**
|
|
17128
17172
|
* Invalid request payload
|
|
17129
17173
|
*/
|
|
@@ -17158,19 +17202,19 @@ export type OpUpdateSecurityErrors = {
|
|
|
17158
17202
|
500: unknown;
|
|
17159
17203
|
};
|
|
17160
17204
|
|
|
17161
|
-
export type
|
|
17205
|
+
export type OpUpdatePortfolioBlockError = OpUpdatePortfolioBlockErrors[keyof OpUpdatePortfolioBlockErrors];
|
|
17162
17206
|
|
|
17163
|
-
export type
|
|
17207
|
+
export type OpUpdatePortfolioBlockResponses = {
|
|
17164
17208
|
/**
|
|
17165
17209
|
* Successful Response
|
|
17166
17210
|
*/
|
|
17167
17211
|
200: OperationEnvelope;
|
|
17168
17212
|
};
|
|
17169
17213
|
|
|
17170
|
-
export type
|
|
17214
|
+
export type OpUpdatePortfolioBlockResponse = OpUpdatePortfolioBlockResponses[keyof OpUpdatePortfolioBlockResponses];
|
|
17171
17215
|
|
|
17172
|
-
export type
|
|
17173
|
-
body:
|
|
17216
|
+
export type OpDeletePortfolioBlockData = {
|
|
17217
|
+
body: DeletePortfolioBlockOperation;
|
|
17174
17218
|
headers?: {
|
|
17175
17219
|
/**
|
|
17176
17220
|
* Idempotency-Key
|
|
@@ -17184,10 +17228,10 @@ export type OpDeleteSecurityData = {
|
|
|
17184
17228
|
graph_id: string;
|
|
17185
17229
|
};
|
|
17186
17230
|
query?: never;
|
|
17187
|
-
url: '/extensions/roboinvestor/{graph_id}/operations/delete-
|
|
17231
|
+
url: '/extensions/roboinvestor/{graph_id}/operations/delete-portfolio-block';
|
|
17188
17232
|
};
|
|
17189
17233
|
|
|
17190
|
-
export type
|
|
17234
|
+
export type OpDeletePortfolioBlockErrors = {
|
|
17191
17235
|
/**
|
|
17192
17236
|
* Invalid request payload
|
|
17193
17237
|
*/
|
|
@@ -17222,19 +17266,19 @@ export type OpDeleteSecurityErrors = {
|
|
|
17222
17266
|
500: unknown;
|
|
17223
17267
|
};
|
|
17224
17268
|
|
|
17225
|
-
export type
|
|
17269
|
+
export type OpDeletePortfolioBlockError = OpDeletePortfolioBlockErrors[keyof OpDeletePortfolioBlockErrors];
|
|
17226
17270
|
|
|
17227
|
-
export type
|
|
17271
|
+
export type OpDeletePortfolioBlockResponses = {
|
|
17228
17272
|
/**
|
|
17229
17273
|
* Successful Response
|
|
17230
17274
|
*/
|
|
17231
17275
|
200: OperationEnvelope;
|
|
17232
17276
|
};
|
|
17233
17277
|
|
|
17234
|
-
export type
|
|
17278
|
+
export type OpDeletePortfolioBlockResponse = OpDeletePortfolioBlockResponses[keyof OpDeletePortfolioBlockResponses];
|
|
17235
17279
|
|
|
17236
|
-
export type
|
|
17237
|
-
body:
|
|
17280
|
+
export type OpCreateSecurityData = {
|
|
17281
|
+
body: CreateSecurityRequest;
|
|
17238
17282
|
headers?: {
|
|
17239
17283
|
/**
|
|
17240
17284
|
* Idempotency-Key
|
|
@@ -17248,10 +17292,10 @@ export type OpCreatePositionData = {
|
|
|
17248
17292
|
graph_id: string;
|
|
17249
17293
|
};
|
|
17250
17294
|
query?: never;
|
|
17251
|
-
url: '/extensions/roboinvestor/{graph_id}/operations/create-
|
|
17295
|
+
url: '/extensions/roboinvestor/{graph_id}/operations/create-security';
|
|
17252
17296
|
};
|
|
17253
17297
|
|
|
17254
|
-
export type
|
|
17298
|
+
export type OpCreateSecurityErrors = {
|
|
17255
17299
|
/**
|
|
17256
17300
|
* Invalid request payload
|
|
17257
17301
|
*/
|
|
@@ -17286,19 +17330,19 @@ export type OpCreatePositionErrors = {
|
|
|
17286
17330
|
500: unknown;
|
|
17287
17331
|
};
|
|
17288
17332
|
|
|
17289
|
-
export type
|
|
17333
|
+
export type OpCreateSecurityError = OpCreateSecurityErrors[keyof OpCreateSecurityErrors];
|
|
17290
17334
|
|
|
17291
|
-
export type
|
|
17335
|
+
export type OpCreateSecurityResponses = {
|
|
17292
17336
|
/**
|
|
17293
17337
|
* Successful Response
|
|
17294
17338
|
*/
|
|
17295
17339
|
200: OperationEnvelope;
|
|
17296
17340
|
};
|
|
17297
17341
|
|
|
17298
|
-
export type
|
|
17342
|
+
export type OpCreateSecurityResponse = OpCreateSecurityResponses[keyof OpCreateSecurityResponses];
|
|
17299
17343
|
|
|
17300
|
-
export type
|
|
17301
|
-
body:
|
|
17344
|
+
export type OpUpdateSecurityData = {
|
|
17345
|
+
body: UpdateSecurityOperation;
|
|
17302
17346
|
headers?: {
|
|
17303
17347
|
/**
|
|
17304
17348
|
* Idempotency-Key
|
|
@@ -17312,10 +17356,10 @@ export type OpUpdatePositionData = {
|
|
|
17312
17356
|
graph_id: string;
|
|
17313
17357
|
};
|
|
17314
17358
|
query?: never;
|
|
17315
|
-
url: '/extensions/roboinvestor/{graph_id}/operations/update-
|
|
17359
|
+
url: '/extensions/roboinvestor/{graph_id}/operations/update-security';
|
|
17316
17360
|
};
|
|
17317
17361
|
|
|
17318
|
-
export type
|
|
17362
|
+
export type OpUpdateSecurityErrors = {
|
|
17319
17363
|
/**
|
|
17320
17364
|
* Invalid request payload
|
|
17321
17365
|
*/
|
|
@@ -17350,19 +17394,19 @@ export type OpUpdatePositionErrors = {
|
|
|
17350
17394
|
500: unknown;
|
|
17351
17395
|
};
|
|
17352
17396
|
|
|
17353
|
-
export type
|
|
17397
|
+
export type OpUpdateSecurityError = OpUpdateSecurityErrors[keyof OpUpdateSecurityErrors];
|
|
17354
17398
|
|
|
17355
|
-
export type
|
|
17399
|
+
export type OpUpdateSecurityResponses = {
|
|
17356
17400
|
/**
|
|
17357
17401
|
* Successful Response
|
|
17358
17402
|
*/
|
|
17359
17403
|
200: OperationEnvelope;
|
|
17360
17404
|
};
|
|
17361
17405
|
|
|
17362
|
-
export type
|
|
17406
|
+
export type OpUpdateSecurityResponse = OpUpdateSecurityResponses[keyof OpUpdateSecurityResponses];
|
|
17363
17407
|
|
|
17364
|
-
export type
|
|
17365
|
-
body:
|
|
17408
|
+
export type OpDeleteSecurityData = {
|
|
17409
|
+
body: DeleteSecurityOperation;
|
|
17366
17410
|
headers?: {
|
|
17367
17411
|
/**
|
|
17368
17412
|
* Idempotency-Key
|
|
@@ -17376,10 +17420,10 @@ export type OpDeletePositionData = {
|
|
|
17376
17420
|
graph_id: string;
|
|
17377
17421
|
};
|
|
17378
17422
|
query?: never;
|
|
17379
|
-
url: '/extensions/roboinvestor/{graph_id}/operations/delete-
|
|
17423
|
+
url: '/extensions/roboinvestor/{graph_id}/operations/delete-security';
|
|
17380
17424
|
};
|
|
17381
17425
|
|
|
17382
|
-
export type
|
|
17426
|
+
export type OpDeleteSecurityErrors = {
|
|
17383
17427
|
/**
|
|
17384
17428
|
* Invalid request payload
|
|
17385
17429
|
*/
|
|
@@ -17414,13 +17458,13 @@ export type OpDeletePositionErrors = {
|
|
|
17414
17458
|
500: unknown;
|
|
17415
17459
|
};
|
|
17416
17460
|
|
|
17417
|
-
export type
|
|
17461
|
+
export type OpDeleteSecurityError = OpDeleteSecurityErrors[keyof OpDeleteSecurityErrors];
|
|
17418
17462
|
|
|
17419
|
-
export type
|
|
17463
|
+
export type OpDeleteSecurityResponses = {
|
|
17420
17464
|
/**
|
|
17421
17465
|
* Successful Response
|
|
17422
17466
|
*/
|
|
17423
17467
|
200: OperationEnvelope;
|
|
17424
17468
|
};
|
|
17425
17469
|
|
|
17426
|
-
export type
|
|
17470
|
+
export type OpDeleteSecurityResponse = OpDeleteSecurityResponses[keyof OpDeleteSecurityResponses];
|