@robosystems/client 0.3.42 → 0.5.0

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.
Files changed (60) hide show
  1. package/artifacts/InvestorClient.js +7 -7
  2. package/artifacts/InvestorClient.ts +13 -13
  3. package/artifacts/LedgerClient.d.ts +2 -2
  4. package/artifacts/LedgerClient.js +48 -48
  5. package/artifacts/LedgerClient.ts +91 -91
  6. package/artifacts/QueryClient.js +2 -2
  7. package/artifacts/QueryClient.ts +5 -5
  8. package/artifacts/graphql/generated/graphql.d.ts +2 -0
  9. package/artifacts/graphql/generated/graphql.ts +2 -0
  10. package/client/client.gen.js +109 -126
  11. package/client/client.gen.ts +129 -139
  12. package/client/types.gen.d.ts +7 -4
  13. package/client/types.gen.ts +10 -5
  14. package/client/utils.gen.d.ts +7 -3
  15. package/client/utils.gen.js +6 -6
  16. package/client/utils.gen.ts +11 -11
  17. package/core/bodySerializer.gen.d.ts +4 -4
  18. package/core/bodySerializer.gen.ts +6 -8
  19. package/core/params.gen.js +5 -5
  20. package/core/params.gen.ts +5 -5
  21. package/core/serverSentEvents.gen.d.ts +1 -1
  22. package/core/serverSentEvents.gen.js +4 -6
  23. package/core/serverSentEvents.gen.ts +4 -5
  24. package/core/types.gen.d.ts +1 -1
  25. package/core/types.gen.ts +1 -1
  26. package/core/utils.gen.js +1 -1
  27. package/core/utils.gen.ts +1 -1
  28. package/index.ts +2 -2
  29. package/package.json +2 -2
  30. package/sdk/client/client.gen.js +109 -126
  31. package/sdk/client/client.gen.ts +129 -139
  32. package/sdk/client/types.gen.d.ts +7 -4
  33. package/sdk/client/types.gen.ts +10 -5
  34. package/sdk/client/utils.gen.d.ts +7 -3
  35. package/sdk/client/utils.gen.js +6 -6
  36. package/sdk/client/utils.gen.ts +11 -11
  37. package/sdk/core/bodySerializer.gen.d.ts +4 -4
  38. package/sdk/core/bodySerializer.gen.ts +6 -8
  39. package/sdk/core/params.gen.js +5 -5
  40. package/sdk/core/params.gen.ts +5 -5
  41. package/sdk/core/serverSentEvents.gen.d.ts +1 -1
  42. package/sdk/core/serverSentEvents.gen.js +4 -6
  43. package/sdk/core/serverSentEvents.gen.ts +4 -5
  44. package/sdk/core/types.gen.d.ts +1 -1
  45. package/sdk/core/types.gen.ts +1 -1
  46. package/sdk/core/utils.gen.js +1 -1
  47. package/sdk/core/utils.gen.ts +1 -1
  48. package/sdk/index.d.ts +2 -2
  49. package/sdk/index.js +70 -65
  50. package/sdk/index.ts +2 -2
  51. package/sdk/sdk.gen.d.ts +145 -101
  52. package/sdk/sdk.gen.js +297 -208
  53. package/sdk/sdk.gen.ts +230 -141
  54. package/sdk/types.gen.d.ts +1300 -772
  55. package/sdk/types.gen.ts +1342 -783
  56. package/sdk.gen.d.ts +145 -101
  57. package/sdk.gen.js +297 -208
  58. package/sdk.gen.ts +230 -141
  59. package/types.gen.d.ts +1300 -772
  60. package/types.gen.ts +1342 -783
package/types.gen.ts CHANGED
@@ -761,25 +761,66 @@ export type CancelSubscriptionRequest = {
761
761
  };
762
762
 
763
763
  /**
764
- * ChangeReportingStyleOp
764
+ * ChangeReportingStyleRequest
765
765
  *
766
- * Body for the change-reporting-style operation.
766
+ * Switch a reporting entity's Reporting Style.
767
767
  *
768
- * Switches the graph to a different Reporting Style. The target Style
769
- * must be a library- or customer-authored Structure with
770
- * ``block_type='reporting_style'`` and a complete composition
771
- * (one Network per required statement type BS / IS / CF / SE). Filed
772
- * Reports are unaffected because each ``Report`` already pins its own
773
- * ``structure_id`` per FactSet at create-time; new reports use the new
774
- * Style. Idempotent on the same target id.
768
+ * The Reporting Style governs how the entity's statements are laid out
769
+ * (equity-form, close-target concept, per-statement Networks). It's
770
+ * validated against the tenant schema — the target must be a renderable
771
+ * Style with a complete compositionbefore the switch is applied.
775
772
  */
776
- export type ChangeReportingStyleOp = {
773
+ export type ChangeReportingStyleRequest = {
777
774
  /**
778
775
  * Reporting Style Id
779
776
  *
780
- * Structure id of the target Reporting Style (e.g., `025f5d48-12ce-5d65-b9eb-4f137a10ef06` for the library-seeded Default Style). Must resolve to a Structure with block_type='reporting_style' that has a complete composition in the graph's tenant schema.
777
+ * Structure id of the target Reporting Style. Must exist in the tenant schema with a complete Network composition.
781
778
  */
782
779
  reporting_style_id: string;
780
+ /**
781
+ * Entity Id
782
+ *
783
+ * Target entity. Omit to target the graph's primary (earliest-created) entity — the single-entity default.
784
+ */
785
+ entity_id?: string | null;
786
+ };
787
+
788
+ /**
789
+ * ChangeReportingStyleResponse
790
+ *
791
+ * Result of a change-reporting-style operation.
792
+ */
793
+ export type ChangeReportingStyleResponse = {
794
+ /**
795
+ * Entity Id
796
+ *
797
+ * Entity whose Style was targeted.
798
+ */
799
+ entity_id: string;
800
+ /**
801
+ * Previous Reporting Style Id
802
+ *
803
+ * Style id before the change (null for legacy/unset).
804
+ */
805
+ previous_reporting_style_id?: string | null;
806
+ /**
807
+ * Reporting Style Id
808
+ *
809
+ * Active Style id after the call.
810
+ */
811
+ reporting_style_id: string;
812
+ /**
813
+ * Reporting Style Code
814
+ *
815
+ * 4-segment Style code (e.g. BSC-CORP-IS02-CF1), when stamped.
816
+ */
817
+ reporting_style_code?: string | null;
818
+ /**
819
+ * Changed
820
+ *
821
+ * False when the target equals the current Style (no-op).
822
+ */
823
+ changed: boolean;
783
824
  };
784
825
 
785
826
  /**
@@ -2148,7 +2189,7 @@ export type CreateSubgraphRequest = {
2148
2189
  */
2149
2190
  schema_extensions?: Array<string>;
2150
2191
  /**
2151
- * Type of subgraph (currently only 'static' is supported)
2192
+ * Type of subgraph: 'static' (parent's base + extensions), 'knowledge' (knowledge-only schema), or 'empty' (bare database, no schema).
2152
2193
  */
2153
2194
  subgraph_type?: SubgraphType;
2154
2195
  /**
@@ -2483,11 +2524,11 @@ export type CustomSchemaDefinition = {
2483
2524
  };
2484
2525
 
2485
2526
  /**
2486
- * CypherQueryRequest
2527
+ * CypherStatementRequest
2487
2528
  *
2488
2529
  * Request model for Cypher query execution.
2489
2530
  */
2490
- export type CypherQueryRequest = {
2531
+ export type CypherStatementRequest = {
2491
2532
  /**
2492
2533
  * Query
2493
2534
  *
@@ -2733,51 +2774,37 @@ export type DatabaseStorageEntry = {
2733
2774
  };
2734
2775
 
2735
2776
  /**
2736
- * DeleteFileResponse
2777
+ * DeleteDocumentOp
2778
+ *
2779
+ * Body for delete-document (corpus content-op).
2737
2780
  */
2738
- export type DeleteFileResponse = {
2781
+ export type DeleteDocumentOp = {
2739
2782
  /**
2740
- * Status
2783
+ * Document Id
2741
2784
  *
2742
- * Deletion status
2785
+ * Document id to delete
2743
2786
  */
2744
- status: string;
2787
+ document_id: string;
2788
+ };
2789
+
2790
+ /**
2791
+ * DeleteFileOp
2792
+ *
2793
+ * Body for delete-file (raw content-op).
2794
+ */
2795
+ export type DeleteFileOp = {
2745
2796
  /**
2746
2797
  * File Id
2747
2798
  *
2748
- * Deleted file ID
2799
+ * File id to delete
2749
2800
  */
2750
2801
  file_id: string;
2751
2802
  /**
2752
- * File Name
2753
- *
2754
- * Deleted file name
2755
- */
2756
- file_name: string;
2757
- /**
2758
- * Message
2759
- *
2760
- * Operation message
2761
- */
2762
- message: string;
2763
- /**
2764
- * Cascade Deleted
2765
- *
2766
- * Whether cascade deletion was performed
2767
- */
2768
- cascade_deleted?: boolean;
2769
- /**
2770
- * Tables Affected
2803
+ * Cascade
2771
2804
  *
2772
- * Tables from which file data was deleted (if cascade=true)
2805
+ * Also delete the file's rows from DuckDB tables and mark the graph stale
2773
2806
  */
2774
- tables_affected?: Array<string> | null;
2775
- /**
2776
- * Graph Marked Stale
2777
- *
2778
- * Whether graph was marked as stale
2779
- */
2780
- graph_marked_stale?: boolean;
2807
+ cascade?: boolean;
2781
2808
  };
2782
2809
 
2783
2810
  /**
@@ -3376,96 +3403,6 @@ export type DocumentSection = {
3376
3403
  folder?: string | null;
3377
3404
  };
3378
3405
 
3379
- /**
3380
- * DocumentUpdateRequest
3381
- *
3382
- * Update a document's metadata and/or content.
3383
- */
3384
- export type DocumentUpdateRequest = {
3385
- /**
3386
- * Title
3387
- */
3388
- title?: string | null;
3389
- /**
3390
- * Content
3391
- */
3392
- content?: string | null;
3393
- /**
3394
- * Tags
3395
- */
3396
- tags?: Array<string> | null;
3397
- /**
3398
- * Folder
3399
- */
3400
- folder?: string | null;
3401
- };
3402
-
3403
- /**
3404
- * DocumentUploadRequest
3405
- *
3406
- * Upload a markdown document for text indexing.
3407
- */
3408
- export type DocumentUploadRequest = {
3409
- /**
3410
- * Title
3411
- *
3412
- * Document title
3413
- */
3414
- title: string;
3415
- /**
3416
- * Content
3417
- *
3418
- * Markdown content
3419
- */
3420
- content: string;
3421
- /**
3422
- * Tags
3423
- *
3424
- * Optional tags for filtering
3425
- */
3426
- tags?: Array<string> | null;
3427
- /**
3428
- * Folder
3429
- *
3430
- * Optional folder/category
3431
- */
3432
- folder?: string | null;
3433
- /**
3434
- * External Id
3435
- *
3436
- * Optional external identifier for upsert (e.g., Google Drive file ID)
3437
- */
3438
- external_id?: string | null;
3439
- };
3440
-
3441
- /**
3442
- * DocumentUploadResponse
3443
- *
3444
- * Response from document upload.
3445
- */
3446
- export type DocumentUploadResponse = {
3447
- /**
3448
- * Id
3449
- */
3450
- id: string;
3451
- /**
3452
- * Document Id
3453
- */
3454
- document_id: string;
3455
- /**
3456
- * Sections Indexed
3457
- */
3458
- sections_indexed: number;
3459
- /**
3460
- * Total Content Length
3461
- */
3462
- total_content_length: number;
3463
- /**
3464
- * Section Ids
3465
- */
3466
- section_ids: Array<string>;
3467
- };
3468
-
3469
3406
  /**
3470
3407
  * DownloadQuota
3471
3408
  *
@@ -4432,24 +4369,6 @@ export type FileReportRequest = {
4432
4369
  report_id: string;
4433
4370
  };
4434
4371
 
4435
- /**
4436
- * FileStatusUpdate
4437
- */
4438
- export type FileStatusUpdate = {
4439
- /**
4440
- * Status
4441
- *
4442
- * File status: 'uploaded' (ready for ingest), 'disabled' (exclude from ingest), 'archived' (soft deleted)
4443
- */
4444
- status: string;
4445
- /**
4446
- * Ingest To Graph
4447
- *
4448
- * Auto-ingest to graph after DuckDB staging. Default=false (batch mode). Set to true for real-time incremental updates.
4449
- */
4450
- ingest_to_graph?: boolean;
4451
- };
4452
-
4453
4372
  /**
4454
4373
  * FileUploadRequest
4455
4374
  */
@@ -4474,36 +4393,6 @@ export type FileUploadRequest = {
4474
4393
  table_name?: string | null;
4475
4394
  };
4476
4395
 
4477
- /**
4478
- * FileUploadResponse
4479
- */
4480
- export type FileUploadResponse = {
4481
- /**
4482
- * Upload Url
4483
- *
4484
- * Presigned S3 upload URL
4485
- */
4486
- upload_url: string;
4487
- /**
4488
- * Expires In
4489
- *
4490
- * URL expiration time in seconds
4491
- */
4492
- expires_in: number;
4493
- /**
4494
- * File Id
4495
- *
4496
- * File tracking ID
4497
- */
4498
- file_id: string;
4499
- /**
4500
- * S3 Key
4501
- *
4502
- * S3 object key
4503
- */
4504
- s3_key: string;
4505
- };
4506
-
4507
4396
  /**
4508
4397
  * FinancialStatementAnalysisRequest
4509
4398
  *
@@ -4678,6 +4567,20 @@ export type FiscalPeriodSummary = {
4678
4567
  closed_at?: string | null;
4679
4568
  };
4680
4569
 
4570
+ /**
4571
+ * ForgetOp
4572
+ *
4573
+ * Body for the forget operation (delete a semantic memory by id).
4574
+ */
4575
+ export type ForgetOp = {
4576
+ /**
4577
+ * Memory Id
4578
+ *
4579
+ * Server-generated memory id to forget
4580
+ */
4581
+ memory_id: string;
4582
+ };
4583
+
4681
4584
  /**
4682
4585
  * ForgotPasswordRequest
4683
4586
  *
@@ -5553,6 +5456,53 @@ export type HealthStatus = {
5553
5456
  } | null;
5554
5457
  };
5555
5458
 
5459
+ /**
5460
+ * IndexDocumentOp
5461
+ *
5462
+ * Body for index-document (corpus content-op).
5463
+ *
5464
+ * Create a new document when ``document_id`` is absent; update the named
5465
+ * document (partial — only supplied fields) when present.
5466
+ */
5467
+ export type IndexDocumentOp = {
5468
+ /**
5469
+ * Document Id
5470
+ *
5471
+ * Present → update that document; absent → create a new one
5472
+ */
5473
+ document_id?: string | null;
5474
+ /**
5475
+ * Title
5476
+ *
5477
+ * Required when creating
5478
+ */
5479
+ title?: string | null;
5480
+ /**
5481
+ * Content
5482
+ *
5483
+ * Required when creating
5484
+ */
5485
+ content?: string | null;
5486
+ /**
5487
+ * Tags
5488
+ *
5489
+ * Optional labels
5490
+ */
5491
+ tags?: Array<string> | null;
5492
+ /**
5493
+ * Folder
5494
+ *
5495
+ * Optional folder
5496
+ */
5497
+ folder?: string | null;
5498
+ /**
5499
+ * External Id
5500
+ *
5501
+ * Upsert key (create): re-indexing the same id replaces
5502
+ */
5503
+ external_id?: string | null;
5504
+ };
5505
+
5556
5506
  /**
5557
5507
  * InformationBlockEnvelope
5558
5508
  *
@@ -5672,6 +5622,29 @@ export type InformationModelResponse = {
5672
5622
  member_arrangement?: string | null;
5673
5623
  };
5674
5624
 
5625
+ /**
5626
+ * IngestFileOp
5627
+ *
5628
+ * Body for ingest-file (raw→staging content flow).
5629
+ *
5630
+ * Marks an uploaded file ready and triggers DuckDB staging. Set
5631
+ * ``ingest_to_graph`` to auto-chain graph materialization after staging.
5632
+ */
5633
+ export type IngestFileOp = {
5634
+ /**
5635
+ * File Id
5636
+ *
5637
+ * Uploaded file id to ingest
5638
+ */
5639
+ file_id: string;
5640
+ /**
5641
+ * Ingest To Graph
5642
+ *
5643
+ * Auto-materialize into the graph after DuckDB staging
5644
+ */
5645
+ ingest_to_graph?: boolean;
5646
+ };
5647
+
5675
5648
  /**
5676
5649
  * InitialEntityData
5677
5650
  *
@@ -5750,7 +5723,7 @@ export type InitialEntityData = {
5750
5723
  /**
5751
5724
  * Reporting Style Id
5752
5725
  *
5753
- * Optional explicit Reporting Style Structure id to pin on the graph, overriding the entity_type-derived default. Leave blank to derive from entity_type. Change later via the change-reporting-style operation.
5726
+ * Optional explicit Reporting Style Structure id to pin on the entity, overriding the entity_type-derived default. Leave blank to derive from entity_type. Change later via the change-reporting-style operation.
5754
5727
  */
5755
5728
  reporting_style_id?: string | null;
5756
5729
  };
@@ -6354,6 +6327,12 @@ export type LedgerEntityResponse = {
6354
6327
  * Legal form (e.g. 'corporation', 'llc', 'lp').
6355
6328
  */
6356
6329
  entity_type?: string | null;
6330
+ /**
6331
+ * Reporting Style Id
6332
+ *
6333
+ * Active Reporting Style (Structure id) governing this entity's statement layout. Change it via the change-reporting-style operation.
6334
+ */
6335
+ reporting_style_id?: string | null;
6357
6336
  /**
6358
6337
  * Phone
6359
6338
  */
@@ -6759,38 +6738,140 @@ export type MaterializeOp = {
6759
6738
  };
6760
6739
 
6761
6740
  /**
6762
- * MetricMechanics
6763
- *
6764
- * Derivative mechanics for ``block_type='metric'``.
6765
- *
6766
- * A metric block composes its facts from one or more source blocks at
6767
- * read time — covenant tests, ratios, KPI trend computations. The typed
6768
- * arm ships today so the discriminated union covers all three
6769
- * construction modes (declarative / compositional / derivative); the
6770
- * derivation evaluator that actually computes facts from source-block
6771
- * FactSets is not yet implemented.
6741
+ * MemoryListResponse
6772
6742
  *
6773
- * ``source_block_ids`` is the ordered list of Structure ids this metric
6774
- * derives from; ``derivation_type`` names the kind of computation
6775
- * (``ratio``, ``trailing_twelve_month``, ``covenant_test``, …), and
6776
- * ``expression`` carries the agent-authored derivation string that the
6777
- * evaluator will consume at envelope build time.
6743
+ * Governance list of memories for a graph.
6778
6744
  */
6779
- export type MetricMechanics = {
6745
+ export type MemoryListResponse = {
6780
6746
  /**
6781
- * Kind
6747
+ * Total
6782
6748
  */
6783
- kind?: 'metric';
6749
+ total: number;
6784
6750
  /**
6785
- * Source Block Ids
6786
- *
6787
- * Ordered list of Structure ids this metric sources from. Must be non-empty at evaluation time; empty lists are accepted so library scaffolding can register metric templates before source linkage is wired.
6751
+ * Memories
6788
6752
  */
6789
- source_block_ids?: Array<string>;
6753
+ memories: Array<MemoryRecord>;
6790
6754
  /**
6791
- * Derivation Type
6792
- *
6793
- * Free-form label for the derivation kind — 'ratio', 'trailing_twelve_month', 'covenant_test', etc. The evaluator dispatches on this tag; the set may be locked with a CHECK constraint once the derivation catalog stabilizes.
6755
+ * Graph Id
6756
+ */
6757
+ graph_id: string;
6758
+ };
6759
+
6760
+ /**
6761
+ * MemoryRecallRequest
6762
+ *
6763
+ * Body for recall (ranked semantic search over memory).
6764
+ */
6765
+ export type MemoryRecallRequest = {
6766
+ /**
6767
+ * Query
6768
+ *
6769
+ * Recall query
6770
+ */
6771
+ query: string;
6772
+ /**
6773
+ * K
6774
+ *
6775
+ * Max results to return
6776
+ */
6777
+ k?: number;
6778
+ /**
6779
+ * Memory Type
6780
+ *
6781
+ * Filter by memory type
6782
+ */
6783
+ memory_type?: string | null;
6784
+ /**
6785
+ * Source
6786
+ *
6787
+ * Filter by source
6788
+ */
6789
+ source?: string | null;
6790
+ };
6791
+
6792
+ /**
6793
+ * MemoryRecord
6794
+ *
6795
+ * A stored memory (never includes the raw embedding vector).
6796
+ */
6797
+ export type MemoryRecord = {
6798
+ /**
6799
+ * Id
6800
+ */
6801
+ id: string;
6802
+ /**
6803
+ * Text
6804
+ */
6805
+ text: string;
6806
+ /**
6807
+ * Source
6808
+ */
6809
+ source?: string | null;
6810
+ /**
6811
+ * Memory Type
6812
+ */
6813
+ memory_type?: string | null;
6814
+ /**
6815
+ * Tags
6816
+ */
6817
+ tags?: Array<string> | null;
6818
+ /**
6819
+ * Source Ref
6820
+ */
6821
+ source_ref?: string | null;
6822
+ /**
6823
+ * Provenance
6824
+ */
6825
+ provenance?: {
6826
+ [key: string]: unknown;
6827
+ } | null;
6828
+ /**
6829
+ * Created By
6830
+ */
6831
+ created_by?: string | null;
6832
+ /**
6833
+ * Created At
6834
+ */
6835
+ created_at?: string | null;
6836
+ /**
6837
+ * Updated At
6838
+ */
6839
+ updated_at?: string | null;
6840
+ };
6841
+
6842
+ /**
6843
+ * MetricMechanics
6844
+ *
6845
+ * Derivative mechanics for ``block_type='metric'``.
6846
+ *
6847
+ * A metric block composes its facts from one or more source blocks at
6848
+ * read time — covenant tests, ratios, KPI trend computations. The typed
6849
+ * arm ships today so the discriminated union covers all three
6850
+ * construction modes (declarative / compositional / derivative); the
6851
+ * derivation evaluator that actually computes facts from source-block
6852
+ * FactSets is not yet implemented.
6853
+ *
6854
+ * ``source_block_ids`` is the ordered list of Structure ids this metric
6855
+ * derives from; ``derivation_type`` names the kind of computation
6856
+ * (``ratio``, ``trailing_twelve_month``, ``covenant_test``, …), and
6857
+ * ``expression`` carries the agent-authored derivation string that the
6858
+ * evaluator will consume at envelope build time.
6859
+ */
6860
+ export type MetricMechanics = {
6861
+ /**
6862
+ * Kind
6863
+ */
6864
+ kind?: 'metric';
6865
+ /**
6866
+ * Source Block Ids
6867
+ *
6868
+ * Ordered list of Structure ids this metric sources from. Must be non-empty at evaluation time; empty lists are accepted so library scaffolding can register metric templates before source linkage is wired.
6869
+ */
6870
+ source_block_ids?: Array<string>;
6871
+ /**
6872
+ * Derivation Type
6873
+ *
6874
+ * Free-form label for the derivation kind — 'ratio', 'trailing_twelve_month', 'covenant_test', etc. The evaluator dispatches on this tag; the set may be locked with a CHECK constraint once the derivation catalog stabilizes.
6794
6875
  */
6795
6876
  derivation_type?: string | null;
6796
6877
  /**
@@ -7120,6 +7201,52 @@ export type OperationEnvelopeAssociationResponse = {
7120
7201
  idempotentReplay?: boolean;
7121
7202
  };
7122
7203
 
7204
+ /**
7205
+ * OperationEnvelope[ChangeReportingStyleResponse]
7206
+ */
7207
+ export type OperationEnvelopeChangeReportingStyleResponse = {
7208
+ /**
7209
+ * Operation
7210
+ *
7211
+ * Kebab-case operation name
7212
+ */
7213
+ operation: string;
7214
+ /**
7215
+ * Operationid
7216
+ *
7217
+ * op_-prefixed ULID for audit and SSE correlation
7218
+ */
7219
+ operationId: string;
7220
+ /**
7221
+ * Status
7222
+ *
7223
+ * Operation lifecycle state
7224
+ */
7225
+ status: 'completed' | 'pending' | 'failed';
7226
+ /**
7227
+ * Command-specific result payload
7228
+ */
7229
+ result?: ChangeReportingStyleResponse | null;
7230
+ /**
7231
+ * At
7232
+ *
7233
+ * ISO-8601 UTC timestamp
7234
+ */
7235
+ at: string;
7236
+ /**
7237
+ * Createdby
7238
+ *
7239
+ * User ID that initiated the operation (null for legacy callers)
7240
+ */
7241
+ createdBy?: string | null;
7242
+ /**
7243
+ * Idempotentreplay
7244
+ *
7245
+ * True when this envelope came from the idempotency cache — the underlying command did not execute again. False on fresh executions.
7246
+ */
7247
+ idempotentReplay?: boolean;
7248
+ };
7249
+
7123
7250
  /**
7124
7251
  * OperationEnvelope[ClosePeriodResponse]
7125
7252
  */
@@ -9964,6 +10091,52 @@ export type RegisterRequest = {
9964
10091
  captcha_token?: string | null;
9965
10092
  };
9966
10093
 
10094
+ /**
10095
+ * RememberOp
10096
+ *
10097
+ * Body for the remember operation (write a semantic memory).
10098
+ */
10099
+ export type RememberOp = {
10100
+ /**
10101
+ * Text
10102
+ *
10103
+ * Memory content
10104
+ */
10105
+ text: string;
10106
+ /**
10107
+ * Source
10108
+ *
10109
+ * Origin of the memory
10110
+ */
10111
+ source?: string;
10112
+ /**
10113
+ * Memory Type
10114
+ *
10115
+ * Freeform classifier
10116
+ */
10117
+ memory_type?: string;
10118
+ /**
10119
+ * Tags
10120
+ *
10121
+ * Optional labels
10122
+ */
10123
+ tags?: Array<string> | null;
10124
+ /**
10125
+ * Source Ref
10126
+ *
10127
+ * Optional external reference/URI
10128
+ */
10129
+ source_ref?: string | null;
10130
+ /**
10131
+ * Provenance
10132
+ *
10133
+ * Opaque provenance metadata
10134
+ */
10135
+ provenance?: {
10136
+ [key: string]: unknown;
10137
+ } | null;
10138
+ };
10139
+
9967
10140
  /**
9968
10141
  * RemovePublishListMemberOperation
9969
10142
  *
@@ -11070,7 +11243,7 @@ export type SearchRequest = {
11070
11243
  /**
11071
11244
  * Source Type
11072
11245
  *
11073
- * Filter by source type (xbrl_textblock, narrative_section, ixbrl_disclosure, uploaded_doc, memory)
11246
+ * Filter by source type (xbrl_textblock, narrative_section, ixbrl_disclosure, uploaded_doc, connection_doc)
11074
11247
  */
11075
11248
  source_type?: string | null;
11076
11249
  /**
@@ -11478,6 +11651,54 @@ export type ShareResultItem = {
11478
11651
  fact_count?: number;
11479
11652
  };
11480
11653
 
11654
+ /**
11655
+ * SqlStatementRequest
11656
+ */
11657
+ export type SqlStatementRequest = {
11658
+ /**
11659
+ * Sql
11660
+ *
11661
+ * SQL query over the graph's columnar tables (DuckDB) — a relational lens on the same graph-centric data, often ahead of the materialized graph. Use ? placeholders or $param_name for dynamic values to prevent SQL injection.
11662
+ */
11663
+ sql: string;
11664
+ /**
11665
+ * Parameters
11666
+ *
11667
+ * Query parameters for safe value substitution. ALWAYS use parameters instead of string concatenation.
11668
+ */
11669
+ parameters?: Array<unknown> | null;
11670
+ };
11671
+
11672
+ /**
11673
+ * SqlStatementResponse
11674
+ */
11675
+ export type SqlStatementResponse = {
11676
+ /**
11677
+ * Columns
11678
+ *
11679
+ * Column names
11680
+ */
11681
+ columns: Array<string>;
11682
+ /**
11683
+ * Rows
11684
+ *
11685
+ * Query results
11686
+ */
11687
+ rows: Array<Array<unknown>>;
11688
+ /**
11689
+ * Row Count
11690
+ *
11691
+ * Number of rows returned
11692
+ */
11693
+ row_count: number;
11694
+ /**
11695
+ * Execution Time Ms
11696
+ *
11697
+ * Query execution time
11698
+ */
11699
+ execution_time_ms: number;
11700
+ };
11701
+
11481
11702
  /**
11482
11703
  * StatementMechanics
11483
11704
  *
@@ -11854,7 +12075,7 @@ export type SubgraphSummary = {
11854
12075
  *
11855
12076
  * Types of subgraphs.
11856
12077
  */
11857
- export type SubgraphType = 'static' | 'temporal' | 'versioned' | 'memory';
12078
+ export type SubgraphType = 'static' | 'knowledge' | 'empty';
11858
12079
 
11859
12080
  /**
11860
12081
  * SuccessResponse
@@ -11967,79 +12188,31 @@ export type TableListResponse = {
11967
12188
  };
11968
12189
 
11969
12190
  /**
11970
- * TableQueryRequest
12191
+ * TaxonomyBlockAssociation
12192
+ *
12193
+ * Association projection for the Taxonomy Block envelope.
11971
12194
  */
11972
- export type TableQueryRequest = {
12195
+ export type TaxonomyBlockAssociation = {
11973
12196
  /**
11974
- * Sql
11975
- *
11976
- * SQL query to execute on staging tables. Use ? placeholders or $param_name for dynamic values to prevent SQL injection.
12197
+ * Id
11977
12198
  */
11978
- sql: string;
12199
+ id: string;
11979
12200
  /**
11980
- * Parameters
11981
- *
11982
- * Query parameters for safe value substitution. ALWAYS use parameters instead of string concatenation.
12201
+ * Structure Id
11983
12202
  */
11984
- parameters?: Array<unknown> | null;
11985
- };
11986
-
11987
- /**
11988
- * TableQueryResponse
11989
- */
11990
- export type TableQueryResponse = {
12203
+ structure_id: string;
11991
12204
  /**
11992
- * Columns
11993
- *
11994
- * Column names
12205
+ * From Element Qname
11995
12206
  */
11996
- columns: Array<string>;
12207
+ from_element_qname: string;
11997
12208
  /**
11998
- * Rows
11999
- *
12000
- * Query results
12209
+ * To Element Qname
12001
12210
  */
12002
- rows: Array<Array<unknown>>;
12211
+ to_element_qname: string;
12003
12212
  /**
12004
- * Row Count
12005
- *
12006
- * Number of rows returned
12213
+ * Association Type
12007
12214
  */
12008
- row_count: number;
12009
- /**
12010
- * Execution Time Ms
12011
- *
12012
- * Query execution time
12013
- */
12014
- execution_time_ms: number;
12015
- };
12016
-
12017
- /**
12018
- * TaxonomyBlockAssociation
12019
- *
12020
- * Association projection for the Taxonomy Block envelope.
12021
- */
12022
- export type TaxonomyBlockAssociation = {
12023
- /**
12024
- * Id
12025
- */
12026
- id: string;
12027
- /**
12028
- * Structure Id
12029
- */
12030
- structure_id: string;
12031
- /**
12032
- * From Element Qname
12033
- */
12034
- from_element_qname: string;
12035
- /**
12036
- * To Element Qname
12037
- */
12038
- to_element_qname: string;
12039
- /**
12040
- * Association Type
12041
- */
12042
- association_type: string;
12215
+ association_type: string;
12043
12216
  /**
12044
12217
  * Order Value
12045
12218
  */
@@ -13210,6 +13383,55 @@ export type UpdateMemberRoleRequest = {
13210
13383
  role: OrgRole;
13211
13384
  };
13212
13385
 
13386
+ /**
13387
+ * UpdateMemoryOp
13388
+ *
13389
+ * Body for the update-memory operation (partial update of a stored memory).
13390
+ *
13391
+ * Only supplied fields are changed; the memory is re-embedded when ``text``
13392
+ * changes.
13393
+ */
13394
+ export type UpdateMemoryOp = {
13395
+ /**
13396
+ * Memory Id
13397
+ *
13398
+ * Server-generated memory id to update
13399
+ */
13400
+ memory_id: string;
13401
+ /**
13402
+ * Text
13403
+ *
13404
+ * New memory content
13405
+ */
13406
+ text?: string | null;
13407
+ /**
13408
+ * Memory Type
13409
+ *
13410
+ * Freeform classifier
13411
+ */
13412
+ memory_type?: string | null;
13413
+ /**
13414
+ * Tags
13415
+ *
13416
+ * Optional labels
13417
+ */
13418
+ tags?: Array<string> | null;
13419
+ /**
13420
+ * Source Ref
13421
+ *
13422
+ * Optional external reference/URI
13423
+ */
13424
+ source_ref?: string | null;
13425
+ /**
13426
+ * Provenance
13427
+ *
13428
+ * Opaque provenance metadata
13429
+ */
13430
+ provenance?: {
13431
+ [key: string]: unknown;
13432
+ } | null;
13433
+ };
13434
+
13213
13435
  /**
13214
13436
  * UpdateOrgRequest
13215
13437
  *
@@ -17006,8 +17228,8 @@ export type GetGraphUsageAnalyticsResponses = {
17006
17228
 
17007
17229
  export type GetGraphUsageAnalyticsResponse = GetGraphUsageAnalyticsResponses[keyof GetGraphUsageAnalyticsResponses];
17008
17230
 
17009
- export type ExecuteCypherQueryData = {
17010
- body: CypherQueryRequest;
17231
+ export type ExecuteCypherData = {
17232
+ body: CypherStatementRequest;
17011
17233
  path: {
17012
17234
  /**
17013
17235
  * Graph Id
@@ -17034,10 +17256,10 @@ export type ExecuteCypherQueryData = {
17034
17256
  */
17035
17257
  test_mode?: boolean;
17036
17258
  };
17037
- url: '/v1/graphs/{graph_id}/query';
17259
+ url: '/v1/graphs/{graph_id}/query/cypher';
17038
17260
  };
17039
17261
 
17040
- export type ExecuteCypherQueryErrors = {
17262
+ export type ExecuteCypherErrors = {
17041
17263
  /**
17042
17264
  * Invalid request
17043
17265
  */
@@ -17076,9 +17298,9 @@ export type ExecuteCypherQueryErrors = {
17076
17298
  503: unknown;
17077
17299
  };
17078
17300
 
17079
- export type ExecuteCypherQueryError = ExecuteCypherQueryErrors[keyof ExecuteCypherQueryErrors];
17301
+ export type ExecuteCypherError = ExecuteCypherErrors[keyof ExecuteCypherErrors];
17080
17302
 
17081
- export type ExecuteCypherQueryResponses = {
17303
+ export type ExecuteCypherResponses = {
17082
17304
  /**
17083
17305
  * Successful Response
17084
17306
  */
@@ -17089,8 +17311,11 @@ export type ExecuteCypherQueryResponses = {
17089
17311
  202: unknown;
17090
17312
  };
17091
17313
 
17092
- export type GetGraphSchemaData = {
17093
- body?: never;
17314
+ export type ExecuteSqlData = {
17315
+ /**
17316
+ * SQL statement request
17317
+ */
17318
+ body: SqlStatementRequest;
17094
17319
  path: {
17095
17320
  /**
17096
17321
  * Graph Id
@@ -17098,10 +17323,10 @@ export type GetGraphSchemaData = {
17098
17323
  graph_id: string;
17099
17324
  };
17100
17325
  query?: never;
17101
- url: '/v1/graphs/{graph_id}/schema';
17326
+ url: '/v1/graphs/{graph_id}/query/sql';
17102
17327
  };
17103
17328
 
17104
- export type GetGraphSchemaErrors = {
17329
+ export type ExecuteSqlErrors = {
17105
17330
  /**
17106
17331
  * Invalid request
17107
17332
  */
@@ -17118,6 +17343,10 @@ export type GetGraphSchemaErrors = {
17118
17343
  * Resource not found
17119
17344
  */
17120
17345
  404: ErrorResponse;
17346
+ /**
17347
+ * Query timeout
17348
+ */
17349
+ 408: unknown;
17121
17350
  /**
17122
17351
  * Validation Error
17123
17352
  */
@@ -17130,24 +17359,20 @@ export type GetGraphSchemaErrors = {
17130
17359
  * Internal server error
17131
17360
  */
17132
17361
  500: ErrorResponse;
17133
- /**
17134
- * Schema operation timed out
17135
- */
17136
- 504: unknown;
17137
17362
  };
17138
17363
 
17139
- export type GetGraphSchemaError = GetGraphSchemaErrors[keyof GetGraphSchemaErrors];
17364
+ export type ExecuteSqlError = ExecuteSqlErrors[keyof ExecuteSqlErrors];
17140
17365
 
17141
- export type GetGraphSchemaResponses = {
17366
+ export type ExecuteSqlResponses = {
17142
17367
  /**
17143
17368
  * Successful Response
17144
17369
  */
17145
- 200: SchemaInfoResponse;
17370
+ 200: SqlStatementResponse;
17146
17371
  };
17147
17372
 
17148
- export type GetGraphSchemaResponse = GetGraphSchemaResponses[keyof GetGraphSchemaResponses];
17373
+ export type ExecuteSqlResponse = ExecuteSqlResponses[keyof ExecuteSqlResponses];
17149
17374
 
17150
- export type ExportGraphSchemaData = {
17375
+ export type GetGraphSchemaData = {
17151
17376
  body?: never;
17152
17377
  path: {
17153
17378
  /**
@@ -17155,24 +17380,11 @@ export type ExportGraphSchemaData = {
17155
17380
  */
17156
17381
  graph_id: string;
17157
17382
  };
17158
- query?: {
17159
- /**
17160
- * Format
17161
- *
17162
- * Export format: json, yaml, or cypher
17163
- */
17164
- format?: string;
17165
- /**
17166
- * Include Data Stats
17167
- *
17168
- * Include statistics about actual data in the graph (node counts, relationship counts)
17169
- */
17170
- include_data_stats?: boolean;
17171
- };
17172
- url: '/v1/graphs/{graph_id}/schema/export';
17383
+ query?: never;
17384
+ url: '/v1/graphs/{graph_id}/schema';
17173
17385
  };
17174
17386
 
17175
- export type ExportGraphSchemaErrors = {
17387
+ export type GetGraphSchemaErrors = {
17176
17388
  /**
17177
17389
  * Invalid request
17178
17390
  */
@@ -17201,35 +17413,49 @@ export type ExportGraphSchemaErrors = {
17201
17413
  * Internal server error
17202
17414
  */
17203
17415
  500: ErrorResponse;
17416
+ /**
17417
+ * Schema operation timed out
17418
+ */
17419
+ 504: unknown;
17204
17420
  };
17205
17421
 
17206
- export type ExportGraphSchemaError = ExportGraphSchemaErrors[keyof ExportGraphSchemaErrors];
17422
+ export type GetGraphSchemaError = GetGraphSchemaErrors[keyof GetGraphSchemaErrors];
17207
17423
 
17208
- export type ExportGraphSchemaResponses = {
17424
+ export type GetGraphSchemaResponses = {
17209
17425
  /**
17210
17426
  * Successful Response
17211
17427
  */
17212
- 200: SchemaExportResponse;
17428
+ 200: SchemaInfoResponse;
17213
17429
  };
17214
17430
 
17215
- export type ExportGraphSchemaResponse = ExportGraphSchemaResponses[keyof ExportGraphSchemaResponses];
17431
+ export type GetGraphSchemaResponse = GetGraphSchemaResponses[keyof GetGraphSchemaResponses];
17216
17432
 
17217
- export type ValidateSchemaData = {
17218
- /**
17219
- * Schema definition to validate
17220
- */
17221
- body: SchemaValidationRequest;
17433
+ export type ExportGraphSchemaData = {
17434
+ body?: never;
17222
17435
  path: {
17223
17436
  /**
17224
17437
  * Graph Id
17225
17438
  */
17226
17439
  graph_id: string;
17227
17440
  };
17228
- query?: never;
17229
- url: '/v1/graphs/{graph_id}/schema/validate';
17441
+ query?: {
17442
+ /**
17443
+ * Format
17444
+ *
17445
+ * Export format: json, yaml, or cypher
17446
+ */
17447
+ format?: string;
17448
+ /**
17449
+ * Include Data Stats
17450
+ *
17451
+ * Include statistics about actual data in the graph (node counts, relationship counts)
17452
+ */
17453
+ include_data_stats?: boolean;
17454
+ };
17455
+ url: '/v1/graphs/{graph_id}/schema/export';
17230
17456
  };
17231
17457
 
17232
- export type ValidateSchemaErrors = {
17458
+ export type ExportGraphSchemaErrors = {
17233
17459
  /**
17234
17460
  * Invalid request
17235
17461
  */
@@ -17247,9 +17473,9 @@ export type ValidateSchemaErrors = {
17247
17473
  */
17248
17474
  404: ErrorResponse;
17249
17475
  /**
17250
- * Schema fails validation rules
17476
+ * Validation Error
17251
17477
  */
17252
- 422: unknown;
17478
+ 422: HttpValidationError;
17253
17479
  /**
17254
17480
  * Rate limit exceeded
17255
17481
  */
@@ -17258,22 +17484,18 @@ export type ValidateSchemaErrors = {
17258
17484
  * Internal server error
17259
17485
  */
17260
17486
  500: ErrorResponse;
17261
- /**
17262
- * Validation timed out
17263
- */
17264
- 504: unknown;
17265
17487
  };
17266
17488
 
17267
- export type ValidateSchemaError = ValidateSchemaErrors[keyof ValidateSchemaErrors];
17489
+ export type ExportGraphSchemaError = ExportGraphSchemaErrors[keyof ExportGraphSchemaErrors];
17268
17490
 
17269
- export type ValidateSchemaResponses = {
17491
+ export type ExportGraphSchemaResponses = {
17270
17492
  /**
17271
17493
  * Successful Response
17272
17494
  */
17273
- 200: SchemaValidationResponse;
17495
+ 200: SchemaExportResponse;
17274
17496
  };
17275
17497
 
17276
- export type ValidateSchemaResponse = ValidateSchemaResponses[keyof ValidateSchemaResponses];
17498
+ export type ExportGraphSchemaResponse = ExportGraphSchemaResponses[keyof ExportGraphSchemaResponses];
17277
17499
 
17278
17500
  export type GetCreditSummaryData = {
17279
17501
  body?: never;
@@ -18040,67 +18262,6 @@ export type ListTablesResponses = {
18040
18262
 
18041
18263
  export type ListTablesResponse = ListTablesResponses[keyof ListTablesResponses];
18042
18264
 
18043
- export type QueryTablesData = {
18044
- /**
18045
- * SQL query request
18046
- */
18047
- body: TableQueryRequest;
18048
- path: {
18049
- /**
18050
- * Graph Id
18051
- */
18052
- graph_id: string;
18053
- };
18054
- query?: never;
18055
- url: '/v1/graphs/{graph_id}/tables/query';
18056
- };
18057
-
18058
- export type QueryTablesErrors = {
18059
- /**
18060
- * Invalid request
18061
- */
18062
- 400: ErrorResponse;
18063
- /**
18064
- * Authentication required
18065
- */
18066
- 401: ErrorResponse;
18067
- /**
18068
- * Access denied
18069
- */
18070
- 403: ErrorResponse;
18071
- /**
18072
- * Resource not found
18073
- */
18074
- 404: ErrorResponse;
18075
- /**
18076
- * Query timeout
18077
- */
18078
- 408: unknown;
18079
- /**
18080
- * Validation Error
18081
- */
18082
- 422: HttpValidationError;
18083
- /**
18084
- * Rate limit exceeded
18085
- */
18086
- 429: ErrorResponse;
18087
- /**
18088
- * Internal server error
18089
- */
18090
- 500: ErrorResponse;
18091
- };
18092
-
18093
- export type QueryTablesError = QueryTablesErrors[keyof QueryTablesErrors];
18094
-
18095
- export type QueryTablesResponses = {
18096
- /**
18097
- * Successful Response
18098
- */
18099
- 200: TableQueryResponse;
18100
- };
18101
-
18102
- export type QueryTablesResponse = QueryTablesResponses[keyof QueryTablesResponses];
18103
-
18104
18265
  export type SearchDocumentsData = {
18105
18266
  body: SearchRequest;
18106
18267
  path: {
@@ -18280,19 +18441,23 @@ export type ListDocumentsResponses = {
18280
18441
 
18281
18442
  export type ListDocumentsResponse = ListDocumentsResponses[keyof ListDocumentsResponses];
18282
18443
 
18283
- export type UploadDocumentData = {
18284
- body: DocumentUploadRequest;
18444
+ export type GetDocumentData = {
18445
+ body?: never;
18285
18446
  path: {
18286
18447
  /**
18287
18448
  * Graph Id
18288
18449
  */
18289
18450
  graph_id: string;
18451
+ /**
18452
+ * Document Id
18453
+ */
18454
+ document_id: string;
18290
18455
  };
18291
18456
  query?: never;
18292
- url: '/v1/graphs/{graph_id}/documents';
18457
+ url: '/v1/graphs/{graph_id}/documents/{document_id}';
18293
18458
  };
18294
18459
 
18295
- export type UploadDocumentErrors = {
18460
+ export type GetDocumentErrors = {
18296
18461
  /**
18297
18462
  * Invalid request
18298
18463
  */
@@ -18323,34 +18488,51 @@ export type UploadDocumentErrors = {
18323
18488
  500: ErrorResponse;
18324
18489
  };
18325
18490
 
18326
- export type UploadDocumentError = UploadDocumentErrors[keyof UploadDocumentErrors];
18491
+ export type GetDocumentError = GetDocumentErrors[keyof GetDocumentErrors];
18327
18492
 
18328
- export type UploadDocumentResponses = {
18493
+ export type GetDocumentResponses = {
18329
18494
  /**
18330
18495
  * Successful Response
18331
18496
  */
18332
- 200: DocumentUploadResponse;
18497
+ 200: DocumentDetailResponse;
18333
18498
  };
18334
18499
 
18335
- export type UploadDocumentResponse = UploadDocumentResponses[keyof UploadDocumentResponses];
18500
+ export type GetDocumentResponse = GetDocumentResponses[keyof GetDocumentResponses];
18336
18501
 
18337
- export type DeleteDocumentData = {
18502
+ export type ListMemoriesData = {
18338
18503
  body?: never;
18339
18504
  path: {
18340
18505
  /**
18341
18506
  * Graph Id
18342
18507
  */
18343
18508
  graph_id: string;
18509
+ };
18510
+ query?: {
18344
18511
  /**
18345
- * Document Id
18512
+ * Memory Type
18513
+ *
18514
+ * Filter by memory type
18346
18515
  */
18347
- document_id: string;
18516
+ memory_type?: string | null;
18517
+ /**
18518
+ * Source
18519
+ *
18520
+ * Filter by source
18521
+ */
18522
+ source?: string | null;
18523
+ /**
18524
+ * Limit
18525
+ */
18526
+ limit?: number;
18527
+ /**
18528
+ * Offset
18529
+ */
18530
+ offset?: number;
18348
18531
  };
18349
- query?: never;
18350
- url: '/v1/graphs/{graph_id}/documents/{document_id}';
18532
+ url: '/v1/graphs/{graph_id}/memory';
18351
18533
  };
18352
18534
 
18353
- export type DeleteDocumentErrors = {
18535
+ export type ListMemoriesErrors = {
18354
18536
  /**
18355
18537
  * Invalid request
18356
18538
  */
@@ -18381,18 +18563,18 @@ export type DeleteDocumentErrors = {
18381
18563
  500: ErrorResponse;
18382
18564
  };
18383
18565
 
18384
- export type DeleteDocumentError = DeleteDocumentErrors[keyof DeleteDocumentErrors];
18566
+ export type ListMemoriesError = ListMemoriesErrors[keyof ListMemoriesErrors];
18385
18567
 
18386
- export type DeleteDocumentResponses = {
18568
+ export type ListMemoriesResponses = {
18387
18569
  /**
18388
18570
  * Successful Response
18389
18571
  */
18390
- 204: void;
18572
+ 200: MemoryListResponse;
18391
18573
  };
18392
18574
 
18393
- export type DeleteDocumentResponse = DeleteDocumentResponses[keyof DeleteDocumentResponses];
18575
+ export type ListMemoriesResponse = ListMemoriesResponses[keyof ListMemoriesResponses];
18394
18576
 
18395
- export type GetDocumentData = {
18577
+ export type GetMemoryData = {
18396
18578
  body?: never;
18397
18579
  path: {
18398
18580
  /**
@@ -18400,15 +18582,15 @@ export type GetDocumentData = {
18400
18582
  */
18401
18583
  graph_id: string;
18402
18584
  /**
18403
- * Document Id
18585
+ * Memory Id
18404
18586
  */
18405
- document_id: string;
18587
+ memory_id: string;
18406
18588
  };
18407
18589
  query?: never;
18408
- url: '/v1/graphs/{graph_id}/documents/{document_id}';
18590
+ url: '/v1/graphs/{graph_id}/memory/{memory_id}';
18409
18591
  };
18410
18592
 
18411
- export type GetDocumentErrors = {
18593
+ export type GetMemoryErrors = {
18412
18594
  /**
18413
18595
  * Invalid request
18414
18596
  */
@@ -18439,34 +18621,30 @@ export type GetDocumentErrors = {
18439
18621
  500: ErrorResponse;
18440
18622
  };
18441
18623
 
18442
- export type GetDocumentError = GetDocumentErrors[keyof GetDocumentErrors];
18624
+ export type GetMemoryError = GetMemoryErrors[keyof GetMemoryErrors];
18443
18625
 
18444
- export type GetDocumentResponses = {
18626
+ export type GetMemoryResponses = {
18445
18627
  /**
18446
18628
  * Successful Response
18447
18629
  */
18448
- 200: DocumentDetailResponse;
18630
+ 200: MemoryRecord;
18449
18631
  };
18450
18632
 
18451
- export type GetDocumentResponse = GetDocumentResponses[keyof GetDocumentResponses];
18633
+ export type GetMemoryResponse = GetMemoryResponses[keyof GetMemoryResponses];
18452
18634
 
18453
- export type UpdateDocumentData = {
18454
- body: DocumentUpdateRequest;
18635
+ export type RecallMemoryData = {
18636
+ body: MemoryRecallRequest;
18455
18637
  path: {
18456
18638
  /**
18457
18639
  * Graph Id
18458
18640
  */
18459
18641
  graph_id: string;
18460
- /**
18461
- * Document Id
18462
- */
18463
- document_id: string;
18464
18642
  };
18465
18643
  query?: never;
18466
- url: '/v1/graphs/{graph_id}/documents/{document_id}';
18644
+ url: '/v1/graphs/{graph_id}/memory/recall';
18467
18645
  };
18468
18646
 
18469
- export type UpdateDocumentErrors = {
18647
+ export type RecallMemoryErrors = {
18470
18648
  /**
18471
18649
  * Invalid request
18472
18650
  */
@@ -18495,20 +18673,24 @@ export type UpdateDocumentErrors = {
18495
18673
  * Internal server error
18496
18674
  */
18497
18675
  500: ErrorResponse;
18676
+ /**
18677
+ * Semantic memory not available
18678
+ */
18679
+ 503: unknown;
18498
18680
  };
18499
18681
 
18500
- export type UpdateDocumentError = UpdateDocumentErrors[keyof UpdateDocumentErrors];
18682
+ export type RecallMemoryError = RecallMemoryErrors[keyof RecallMemoryErrors];
18501
18683
 
18502
- export type UpdateDocumentResponses = {
18684
+ export type RecallMemoryResponses = {
18503
18685
  /**
18504
18686
  * Successful Response
18505
18687
  */
18506
- 200: DocumentUploadResponse;
18688
+ 200: SearchResponse;
18507
18689
  };
18508
18690
 
18509
- export type UpdateDocumentResponse = UpdateDocumentResponses[keyof UpdateDocumentResponses];
18691
+ export type RecallMemoryResponse = RecallMemoryResponses[keyof RecallMemoryResponses];
18510
18692
 
18511
- export type OpCreateSubgraphData = {
18693
+ export type CreateSubgraphData = {
18512
18694
  body: CreateSubgraphRequest;
18513
18695
  headers?: {
18514
18696
  /**
@@ -18526,7 +18708,7 @@ export type OpCreateSubgraphData = {
18526
18708
  url: '/v1/graphs/{graph_id}/operations/create-subgraph';
18527
18709
  };
18528
18710
 
18529
- export type OpCreateSubgraphErrors = {
18711
+ export type CreateSubgraphErrors = {
18530
18712
  /**
18531
18713
  * Invalid request
18532
18714
  */
@@ -18561,18 +18743,18 @@ export type OpCreateSubgraphErrors = {
18561
18743
  500: ErrorResponse;
18562
18744
  };
18563
18745
 
18564
- export type OpCreateSubgraphError = OpCreateSubgraphErrors[keyof OpCreateSubgraphErrors];
18746
+ export type CreateSubgraphError = CreateSubgraphErrors[keyof CreateSubgraphErrors];
18565
18747
 
18566
- export type OpCreateSubgraphResponses = {
18748
+ export type CreateSubgraphResponses = {
18567
18749
  /**
18568
18750
  * Successful Response
18569
18751
  */
18570
18752
  200: OperationEnvelope;
18571
18753
  };
18572
18754
 
18573
- export type OpCreateSubgraphResponse = OpCreateSubgraphResponses[keyof OpCreateSubgraphResponses];
18755
+ export type CreateSubgraphResponse = CreateSubgraphResponses[keyof CreateSubgraphResponses];
18574
18756
 
18575
- export type OpDeleteSubgraphData = {
18757
+ export type DeleteSubgraphData = {
18576
18758
  body: DeleteSubgraphOp;
18577
18759
  headers?: {
18578
18760
  /**
@@ -18590,7 +18772,7 @@ export type OpDeleteSubgraphData = {
18590
18772
  url: '/v1/graphs/{graph_id}/operations/delete-subgraph';
18591
18773
  };
18592
18774
 
18593
- export type OpDeleteSubgraphErrors = {
18775
+ export type DeleteSubgraphErrors = {
18594
18776
  /**
18595
18777
  * Invalid request
18596
18778
  */
@@ -18625,18 +18807,18 @@ export type OpDeleteSubgraphErrors = {
18625
18807
  500: ErrorResponse;
18626
18808
  };
18627
18809
 
18628
- export type OpDeleteSubgraphError = OpDeleteSubgraphErrors[keyof OpDeleteSubgraphErrors];
18810
+ export type DeleteSubgraphError = DeleteSubgraphErrors[keyof DeleteSubgraphErrors];
18629
18811
 
18630
- export type OpDeleteSubgraphResponses = {
18812
+ export type DeleteSubgraphResponses = {
18631
18813
  /**
18632
18814
  * Successful Response
18633
18815
  */
18634
18816
  200: OperationEnvelope;
18635
18817
  };
18636
18818
 
18637
- export type OpDeleteSubgraphResponse = OpDeleteSubgraphResponses[keyof OpDeleteSubgraphResponses];
18819
+ export type DeleteSubgraphResponse = DeleteSubgraphResponses[keyof DeleteSubgraphResponses];
18638
18820
 
18639
- export type OpDeleteGraphData = {
18821
+ export type DeleteGraphData = {
18640
18822
  body: DeleteGraphOp;
18641
18823
  headers?: {
18642
18824
  /**
@@ -18654,7 +18836,7 @@ export type OpDeleteGraphData = {
18654
18836
  url: '/v1/graphs/{graph_id}/operations/delete-graph';
18655
18837
  };
18656
18838
 
18657
- export type OpDeleteGraphErrors = {
18839
+ export type DeleteGraphErrors = {
18658
18840
  /**
18659
18841
  * Invalid request
18660
18842
  */
@@ -18689,18 +18871,18 @@ export type OpDeleteGraphErrors = {
18689
18871
  500: ErrorResponse;
18690
18872
  };
18691
18873
 
18692
- export type OpDeleteGraphError = OpDeleteGraphErrors[keyof OpDeleteGraphErrors];
18874
+ export type DeleteGraphError = DeleteGraphErrors[keyof DeleteGraphErrors];
18693
18875
 
18694
- export type OpDeleteGraphResponses = {
18876
+ export type DeleteGraphResponses = {
18695
18877
  /**
18696
18878
  * Successful Response
18697
18879
  */
18698
18880
  202: OperationEnvelope;
18699
18881
  };
18700
18882
 
18701
- export type OpDeleteGraphResponse = OpDeleteGraphResponses[keyof OpDeleteGraphResponses];
18883
+ export type DeleteGraphResponse = DeleteGraphResponses[keyof DeleteGraphResponses];
18702
18884
 
18703
- export type OpCreateBackupData = {
18885
+ export type CreateBackupData = {
18704
18886
  body: BackupCreateRequest;
18705
18887
  headers?: {
18706
18888
  /**
@@ -18718,7 +18900,7 @@ export type OpCreateBackupData = {
18718
18900
  url: '/v1/graphs/{graph_id}/operations/create-backup';
18719
18901
  };
18720
18902
 
18721
- export type OpCreateBackupErrors = {
18903
+ export type CreateBackupErrors = {
18722
18904
  /**
18723
18905
  * Invalid request
18724
18906
  */
@@ -18753,18 +18935,18 @@ export type OpCreateBackupErrors = {
18753
18935
  500: ErrorResponse;
18754
18936
  };
18755
18937
 
18756
- export type OpCreateBackupError = OpCreateBackupErrors[keyof OpCreateBackupErrors];
18938
+ export type CreateBackupError = CreateBackupErrors[keyof CreateBackupErrors];
18757
18939
 
18758
- export type OpCreateBackupResponses = {
18940
+ export type CreateBackupResponses = {
18759
18941
  /**
18760
18942
  * Successful Response
18761
18943
  */
18762
18944
  202: OperationEnvelope;
18763
18945
  };
18764
18946
 
18765
- export type OpCreateBackupResponse = OpCreateBackupResponses[keyof OpCreateBackupResponses];
18947
+ export type CreateBackupResponse = CreateBackupResponses[keyof CreateBackupResponses];
18766
18948
 
18767
- export type OpRestoreBackupData = {
18949
+ export type RestoreBackupData = {
18768
18950
  body: RestoreBackupOp;
18769
18951
  headers?: {
18770
18952
  /**
@@ -18782,7 +18964,7 @@ export type OpRestoreBackupData = {
18782
18964
  url: '/v1/graphs/{graph_id}/operations/restore-backup';
18783
18965
  };
18784
18966
 
18785
- export type OpRestoreBackupErrors = {
18967
+ export type RestoreBackupErrors = {
18786
18968
  /**
18787
18969
  * Invalid request
18788
18970
  */
@@ -18817,18 +18999,18 @@ export type OpRestoreBackupErrors = {
18817
18999
  500: ErrorResponse;
18818
19000
  };
18819
19001
 
18820
- export type OpRestoreBackupError = OpRestoreBackupErrors[keyof OpRestoreBackupErrors];
19002
+ export type RestoreBackupError = RestoreBackupErrors[keyof RestoreBackupErrors];
18821
19003
 
18822
- export type OpRestoreBackupResponses = {
19004
+ export type RestoreBackupResponses = {
18823
19005
  /**
18824
19006
  * Successful Response
18825
19007
  */
18826
19008
  202: OperationEnvelope;
18827
19009
  };
18828
19010
 
18829
- export type OpRestoreBackupResponse = OpRestoreBackupResponses[keyof OpRestoreBackupResponses];
19011
+ export type RestoreBackupResponse = RestoreBackupResponses[keyof RestoreBackupResponses];
18830
19012
 
18831
- export type OpChangeTierData = {
19013
+ export type ChangeTierData = {
18832
19014
  body: ChangeTierOp;
18833
19015
  headers?: {
18834
19016
  /**
@@ -18846,7 +19028,71 @@ export type OpChangeTierData = {
18846
19028
  url: '/v1/graphs/{graph_id}/operations/change-tier';
18847
19029
  };
18848
19030
 
18849
- export type OpChangeTierErrors = {
19031
+ export type ChangeTierErrors = {
19032
+ /**
19033
+ * Invalid request
19034
+ */
19035
+ 400: ErrorResponse;
19036
+ /**
19037
+ * Authentication required
19038
+ */
19039
+ 401: ErrorResponse;
19040
+ /**
19041
+ * Access denied
19042
+ */
19043
+ 403: ErrorResponse;
19044
+ /**
19045
+ * Resource not found
19046
+ */
19047
+ 404: ErrorResponse;
19048
+ /**
19049
+ * Idempotency-Key conflict — key reused with different body
19050
+ */
19051
+ 409: ErrorResponse;
19052
+ /**
19053
+ * Validation error
19054
+ */
19055
+ 422: ErrorResponse;
19056
+ /**
19057
+ * Rate limit exceeded
19058
+ */
19059
+ 429: ErrorResponse;
19060
+ /**
19061
+ * Internal server error
19062
+ */
19063
+ 500: ErrorResponse;
19064
+ };
19065
+
19066
+ export type ChangeTierError = ChangeTierErrors[keyof ChangeTierErrors];
19067
+
19068
+ export type ChangeTierResponses = {
19069
+ /**
19070
+ * Successful Response
19071
+ */
19072
+ 202: OperationEnvelope;
19073
+ };
19074
+
19075
+ export type ChangeTierResponse = ChangeTierResponses[keyof ChangeTierResponses];
19076
+
19077
+ export type MaterializeData = {
19078
+ body: MaterializeOp;
19079
+ headers?: {
19080
+ /**
19081
+ * Idempotency-Key
19082
+ */
19083
+ 'Idempotency-Key'?: string | null;
19084
+ };
19085
+ path: {
19086
+ /**
19087
+ * Graph Id
19088
+ */
19089
+ graph_id: string;
19090
+ };
19091
+ query?: never;
19092
+ url: '/v1/graphs/{graph_id}/operations/materialize';
19093
+ };
19094
+
19095
+ export type MaterializeErrors = {
18850
19096
  /**
18851
19097
  * Invalid request
18852
19098
  */
@@ -18881,19 +19127,19 @@ export type OpChangeTierErrors = {
18881
19127
  500: ErrorResponse;
18882
19128
  };
18883
19129
 
18884
- export type OpChangeTierError = OpChangeTierErrors[keyof OpChangeTierErrors];
19130
+ export type MaterializeError = MaterializeErrors[keyof MaterializeErrors];
18885
19131
 
18886
- export type OpChangeTierResponses = {
19132
+ export type MaterializeResponses = {
18887
19133
  /**
18888
19134
  * Successful Response
18889
19135
  */
18890
19136
  202: OperationEnvelope;
18891
19137
  };
18892
19138
 
18893
- export type OpChangeTierResponse = OpChangeTierResponses[keyof OpChangeTierResponses];
19139
+ export type MaterializeResponse = MaterializeResponses[keyof MaterializeResponses];
18894
19140
 
18895
- export type OpChangeReportingStyleData = {
18896
- body: ChangeReportingStyleOp;
19141
+ export type RememberData = {
19142
+ body: RememberOp;
18897
19143
  headers?: {
18898
19144
  /**
18899
19145
  * Idempotency-Key
@@ -18907,10 +19153,10 @@ export type OpChangeReportingStyleData = {
18907
19153
  graph_id: string;
18908
19154
  };
18909
19155
  query?: never;
18910
- url: '/v1/graphs/{graph_id}/operations/change-reporting-style';
19156
+ url: '/v1/graphs/{graph_id}/operations/remember';
18911
19157
  };
18912
19158
 
18913
- export type OpChangeReportingStyleErrors = {
19159
+ export type RememberErrors = {
18914
19160
  /**
18915
19161
  * Invalid request
18916
19162
  */
@@ -18945,19 +19191,19 @@ export type OpChangeReportingStyleErrors = {
18945
19191
  500: ErrorResponse;
18946
19192
  };
18947
19193
 
18948
- export type OpChangeReportingStyleError = OpChangeReportingStyleErrors[keyof OpChangeReportingStyleErrors];
19194
+ export type RememberError = RememberErrors[keyof RememberErrors];
18949
19195
 
18950
- export type OpChangeReportingStyleResponses = {
19196
+ export type RememberResponses = {
18951
19197
  /**
18952
19198
  * Successful Response
18953
19199
  */
18954
19200
  200: OperationEnvelope;
18955
19201
  };
18956
19202
 
18957
- export type OpChangeReportingStyleResponse = OpChangeReportingStyleResponses[keyof OpChangeReportingStyleResponses];
19203
+ export type RememberResponse = RememberResponses[keyof RememberResponses];
18958
19204
 
18959
- export type OpMaterializeData = {
18960
- body: MaterializeOp;
19205
+ export type ForgetData = {
19206
+ body: ForgetOp;
18961
19207
  headers?: {
18962
19208
  /**
18963
19209
  * Idempotency-Key
@@ -18971,10 +19217,10 @@ export type OpMaterializeData = {
18971
19217
  graph_id: string;
18972
19218
  };
18973
19219
  query?: never;
18974
- url: '/v1/graphs/{graph_id}/operations/materialize';
19220
+ url: '/v1/graphs/{graph_id}/operations/forget';
18975
19221
  };
18976
19222
 
18977
- export type OpMaterializeErrors = {
19223
+ export type ForgetErrors = {
18978
19224
  /**
18979
19225
  * Invalid request
18980
19226
  */
@@ -19009,43 +19255,100 @@ export type OpMaterializeErrors = {
19009
19255
  500: ErrorResponse;
19010
19256
  };
19011
19257
 
19012
- export type OpMaterializeError = OpMaterializeErrors[keyof OpMaterializeErrors];
19258
+ export type ForgetError = ForgetErrors[keyof ForgetErrors];
19013
19259
 
19014
- export type OpMaterializeResponses = {
19260
+ export type ForgetResponses = {
19015
19261
  /**
19016
19262
  * Successful Response
19017
19263
  */
19018
- 202: OperationEnvelope;
19264
+ 200: OperationEnvelope;
19019
19265
  };
19020
19266
 
19021
- export type OpMaterializeResponse = OpMaterializeResponses[keyof OpMaterializeResponses];
19267
+ export type ForgetResponse = ForgetResponses[keyof ForgetResponses];
19022
19268
 
19023
- export type ListFilesData = {
19024
- body?: never;
19269
+ export type UpdateMemoryData = {
19270
+ body: UpdateMemoryOp;
19271
+ headers?: {
19272
+ /**
19273
+ * Idempotency-Key
19274
+ */
19275
+ 'Idempotency-Key'?: string | null;
19276
+ };
19025
19277
  path: {
19026
19278
  /**
19027
19279
  * Graph Id
19028
19280
  */
19029
19281
  graph_id: string;
19030
19282
  };
19031
- query?: {
19283
+ query?: never;
19284
+ url: '/v1/graphs/{graph_id}/operations/update-memory';
19285
+ };
19286
+
19287
+ export type UpdateMemoryErrors = {
19288
+ /**
19289
+ * Invalid request
19290
+ */
19291
+ 400: ErrorResponse;
19292
+ /**
19293
+ * Authentication required
19294
+ */
19295
+ 401: ErrorResponse;
19296
+ /**
19297
+ * Access denied
19298
+ */
19299
+ 403: ErrorResponse;
19300
+ /**
19301
+ * Resource not found
19302
+ */
19303
+ 404: ErrorResponse;
19304
+ /**
19305
+ * Idempotency-Key conflict — key reused with different body
19306
+ */
19307
+ 409: ErrorResponse;
19308
+ /**
19309
+ * Validation error
19310
+ */
19311
+ 422: ErrorResponse;
19312
+ /**
19313
+ * Rate limit exceeded
19314
+ */
19315
+ 429: ErrorResponse;
19316
+ /**
19317
+ * Internal server error
19318
+ */
19319
+ 500: ErrorResponse;
19320
+ };
19321
+
19322
+ export type UpdateMemoryError = UpdateMemoryErrors[keyof UpdateMemoryErrors];
19323
+
19324
+ export type UpdateMemoryResponses = {
19325
+ /**
19326
+ * Successful Response
19327
+ */
19328
+ 200: OperationEnvelope;
19329
+ };
19330
+
19331
+ export type UpdateMemoryResponse = UpdateMemoryResponses[keyof UpdateMemoryResponses];
19332
+
19333
+ export type IndexDocumentData = {
19334
+ body: IndexDocumentOp;
19335
+ headers?: {
19032
19336
  /**
19033
- * Table Name
19034
- *
19035
- * Filter by table name (optional)
19337
+ * Idempotency-Key
19036
19338
  */
19037
- table_name?: string | null;
19339
+ 'Idempotency-Key'?: string | null;
19340
+ };
19341
+ path: {
19038
19342
  /**
19039
- * Status
19040
- *
19041
- * Filter by upload status (optional)
19343
+ * Graph Id
19042
19344
  */
19043
- status?: string | null;
19345
+ graph_id: string;
19044
19346
  };
19045
- url: '/v1/graphs/{graph_id}/files';
19347
+ query?: never;
19348
+ url: '/v1/graphs/{graph_id}/operations/index-document';
19046
19349
  };
19047
19350
 
19048
- export type ListFilesErrors = {
19351
+ export type IndexDocumentErrors = {
19049
19352
  /**
19050
19353
  * Invalid request
19051
19354
  */
@@ -19063,9 +19366,13 @@ export type ListFilesErrors = {
19063
19366
  */
19064
19367
  404: ErrorResponse;
19065
19368
  /**
19066
- * Validation Error
19369
+ * Idempotency-Key conflict — key reused with different body
19067
19370
  */
19068
- 422: HttpValidationError;
19371
+ 409: ErrorResponse;
19372
+ /**
19373
+ * Validation error
19374
+ */
19375
+ 422: ErrorResponse;
19069
19376
  /**
19070
19377
  * Rate limit exceeded
19071
19378
  */
@@ -19076,22 +19383,89 @@ export type ListFilesErrors = {
19076
19383
  500: ErrorResponse;
19077
19384
  };
19078
19385
 
19079
- export type ListFilesError = ListFilesErrors[keyof ListFilesErrors];
19386
+ export type IndexDocumentError = IndexDocumentErrors[keyof IndexDocumentErrors];
19080
19387
 
19081
- export type ListFilesResponses = {
19388
+ export type IndexDocumentResponses = {
19082
19389
  /**
19083
19390
  * Successful Response
19084
19391
  */
19085
- 200: ListTableFilesResponse;
19392
+ 200: OperationEnvelope;
19086
19393
  };
19087
19394
 
19088
- export type ListFilesResponse = ListFilesResponses[keyof ListFilesResponses];
19395
+ export type IndexDocumentResponse = IndexDocumentResponses[keyof IndexDocumentResponses];
19089
19396
 
19090
- export type CreateFileUploadData = {
19397
+ export type DeleteDocumentData = {
19398
+ body: DeleteDocumentOp;
19399
+ headers?: {
19400
+ /**
19401
+ * Idempotency-Key
19402
+ */
19403
+ 'Idempotency-Key'?: string | null;
19404
+ };
19405
+ path: {
19406
+ /**
19407
+ * Graph Id
19408
+ */
19409
+ graph_id: string;
19410
+ };
19411
+ query?: never;
19412
+ url: '/v1/graphs/{graph_id}/operations/delete-document';
19413
+ };
19414
+
19415
+ export type DeleteDocumentErrors = {
19091
19416
  /**
19092
- * Upload request with table_name
19417
+ * Invalid request
19093
19418
  */
19419
+ 400: ErrorResponse;
19420
+ /**
19421
+ * Authentication required
19422
+ */
19423
+ 401: ErrorResponse;
19424
+ /**
19425
+ * Access denied
19426
+ */
19427
+ 403: ErrorResponse;
19428
+ /**
19429
+ * Resource not found
19430
+ */
19431
+ 404: ErrorResponse;
19432
+ /**
19433
+ * Idempotency-Key conflict — key reused with different body
19434
+ */
19435
+ 409: ErrorResponse;
19436
+ /**
19437
+ * Validation error
19438
+ */
19439
+ 422: ErrorResponse;
19440
+ /**
19441
+ * Rate limit exceeded
19442
+ */
19443
+ 429: ErrorResponse;
19444
+ /**
19445
+ * Internal server error
19446
+ */
19447
+ 500: ErrorResponse;
19448
+ };
19449
+
19450
+ export type DeleteDocumentError = DeleteDocumentErrors[keyof DeleteDocumentErrors];
19451
+
19452
+ export type DeleteDocumentResponses = {
19453
+ /**
19454
+ * Successful Response
19455
+ */
19456
+ 200: OperationEnvelope;
19457
+ };
19458
+
19459
+ export type DeleteDocumentResponse = DeleteDocumentResponses[keyof DeleteDocumentResponses];
19460
+
19461
+ export type CreateFileUploadData = {
19094
19462
  body: FileUploadRequest;
19463
+ headers?: {
19464
+ /**
19465
+ * Idempotency-Key
19466
+ */
19467
+ 'Idempotency-Key'?: string | null;
19468
+ };
19095
19469
  path: {
19096
19470
  /**
19097
19471
  * Graph Id
@@ -19099,7 +19473,7 @@ export type CreateFileUploadData = {
19099
19473
  graph_id: string;
19100
19474
  };
19101
19475
  query?: never;
19102
- url: '/v1/graphs/{graph_id}/files';
19476
+ url: '/v1/graphs/{graph_id}/operations/create-file-upload';
19103
19477
  };
19104
19478
 
19105
19479
  export type CreateFileUploadErrors = {
@@ -19120,9 +19494,13 @@ export type CreateFileUploadErrors = {
19120
19494
  */
19121
19495
  404: ErrorResponse;
19122
19496
  /**
19123
- * Validation Error
19497
+ * Idempotency-Key conflict — key reused with different body
19124
19498
  */
19125
- 422: HttpValidationError;
19499
+ 409: ErrorResponse;
19500
+ /**
19501
+ * Validation error
19502
+ */
19503
+ 422: ErrorResponse;
19126
19504
  /**
19127
19505
  * Rate limit exceeded
19128
19506
  */
@@ -19139,34 +19517,91 @@ export type CreateFileUploadResponses = {
19139
19517
  /**
19140
19518
  * Successful Response
19141
19519
  */
19142
- 200: FileUploadResponse;
19520
+ 200: OperationEnvelope;
19143
19521
  };
19144
19522
 
19145
19523
  export type CreateFileUploadResponse = CreateFileUploadResponses[keyof CreateFileUploadResponses];
19146
19524
 
19147
- export type DeleteFileData = {
19148
- body?: never;
19525
+ export type IngestFileData = {
19526
+ body: IngestFileOp;
19527
+ headers?: {
19528
+ /**
19529
+ * Idempotency-Key
19530
+ */
19531
+ 'Idempotency-Key'?: string | null;
19532
+ };
19149
19533
  path: {
19150
19534
  /**
19151
19535
  * Graph Id
19152
19536
  */
19153
19537
  graph_id: string;
19538
+ };
19539
+ query?: never;
19540
+ url: '/v1/graphs/{graph_id}/operations/ingest-file';
19541
+ };
19542
+
19543
+ export type IngestFileErrors = {
19544
+ /**
19545
+ * Invalid request
19546
+ */
19547
+ 400: ErrorResponse;
19548
+ /**
19549
+ * Authentication required
19550
+ */
19551
+ 401: ErrorResponse;
19552
+ /**
19553
+ * Access denied
19554
+ */
19555
+ 403: ErrorResponse;
19556
+ /**
19557
+ * Resource not found
19558
+ */
19559
+ 404: ErrorResponse;
19560
+ /**
19561
+ * Idempotency-Key conflict — key reused with different body
19562
+ */
19563
+ 409: ErrorResponse;
19564
+ /**
19565
+ * Validation error
19566
+ */
19567
+ 422: ErrorResponse;
19568
+ /**
19569
+ * Rate limit exceeded
19570
+ */
19571
+ 429: ErrorResponse;
19572
+ /**
19573
+ * Internal server error
19574
+ */
19575
+ 500: ErrorResponse;
19576
+ };
19577
+
19578
+ export type IngestFileError = IngestFileErrors[keyof IngestFileErrors];
19579
+
19580
+ export type IngestFileResponses = {
19581
+ /**
19582
+ * Successful Response
19583
+ */
19584
+ 200: OperationEnvelope;
19585
+ };
19586
+
19587
+ export type IngestFileResponse = IngestFileResponses[keyof IngestFileResponses];
19588
+
19589
+ export type DeleteFileData = {
19590
+ body: DeleteFileOp;
19591
+ headers?: {
19154
19592
  /**
19155
- * File Id
19156
- *
19157
- * File ID
19593
+ * Idempotency-Key
19158
19594
  */
19159
- file_id: string;
19595
+ 'Idempotency-Key'?: string | null;
19160
19596
  };
19161
- query?: {
19597
+ path: {
19162
19598
  /**
19163
- * Cascade
19164
- *
19165
- * If true, delete from all layers including DuckDB and mark graph stale
19599
+ * Graph Id
19166
19600
  */
19167
- cascade?: boolean;
19601
+ graph_id: string;
19168
19602
  };
19169
- url: '/v1/graphs/{graph_id}/files/{file_id}';
19603
+ query?: never;
19604
+ url: '/v1/graphs/{graph_id}/operations/delete-file';
19170
19605
  };
19171
19606
 
19172
19607
  export type DeleteFileErrors = {
@@ -19187,9 +19622,13 @@ export type DeleteFileErrors = {
19187
19622
  */
19188
19623
  404: ErrorResponse;
19189
19624
  /**
19190
- * Validation Error
19625
+ * Idempotency-Key conflict — key reused with different body
19191
19626
  */
19192
- 422: HttpValidationError;
19627
+ 409: ErrorResponse;
19628
+ /**
19629
+ * Validation error
19630
+ */
19631
+ 422: ErrorResponse;
19193
19632
  /**
19194
19633
  * Rate limit exceeded
19195
19634
  */
@@ -19206,30 +19645,37 @@ export type DeleteFileResponses = {
19206
19645
  /**
19207
19646
  * Successful Response
19208
19647
  */
19209
- 200: DeleteFileResponse;
19648
+ 200: OperationEnvelope;
19210
19649
  };
19211
19650
 
19212
- export type DeleteFileResponse2 = DeleteFileResponses[keyof DeleteFileResponses];
19651
+ export type DeleteFileResponse = DeleteFileResponses[keyof DeleteFileResponses];
19213
19652
 
19214
- export type GetFileData = {
19653
+ export type ListFilesData = {
19215
19654
  body?: never;
19216
19655
  path: {
19217
19656
  /**
19218
19657
  * Graph Id
19219
19658
  */
19220
19659
  graph_id: string;
19660
+ };
19661
+ query?: {
19221
19662
  /**
19222
- * File Id
19663
+ * Table Name
19223
19664
  *
19224
- * File ID
19665
+ * Filter by table name (optional)
19225
19666
  */
19226
- file_id: string;
19667
+ table_name?: string | null;
19668
+ /**
19669
+ * Status
19670
+ *
19671
+ * Filter by upload status (optional)
19672
+ */
19673
+ status?: string | null;
19227
19674
  };
19228
- query?: never;
19229
- url: '/v1/graphs/{graph_id}/files/{file_id}';
19675
+ url: '/v1/graphs/{graph_id}/files';
19230
19676
  };
19231
19677
 
19232
- export type GetFileErrors = {
19678
+ export type ListFilesErrors = {
19233
19679
  /**
19234
19680
  * Invalid request
19235
19681
  */
@@ -19260,22 +19706,19 @@ export type GetFileErrors = {
19260
19706
  500: ErrorResponse;
19261
19707
  };
19262
19708
 
19263
- export type GetFileError = GetFileErrors[keyof GetFileErrors];
19709
+ export type ListFilesError = ListFilesErrors[keyof ListFilesErrors];
19264
19710
 
19265
- export type GetFileResponses = {
19711
+ export type ListFilesResponses = {
19266
19712
  /**
19267
19713
  * Successful Response
19268
19714
  */
19269
- 200: GetFileInfoResponse;
19715
+ 200: ListTableFilesResponse;
19270
19716
  };
19271
19717
 
19272
- export type GetFileResponse = GetFileResponses[keyof GetFileResponses];
19718
+ export type ListFilesResponse = ListFilesResponses[keyof ListFilesResponses];
19273
19719
 
19274
- export type UpdateFileData = {
19275
- /**
19276
- * Status update request
19277
- */
19278
- body: FileStatusUpdate;
19720
+ export type GetFileData = {
19721
+ body?: never;
19279
19722
  path: {
19280
19723
  /**
19281
19724
  * Graph Id
@@ -19292,7 +19735,7 @@ export type UpdateFileData = {
19292
19735
  url: '/v1/graphs/{graph_id}/files/{file_id}';
19293
19736
  };
19294
19737
 
19295
- export type UpdateFileErrors = {
19738
+ export type GetFileErrors = {
19296
19739
  /**
19297
19740
  * Invalid request
19298
19741
  */
@@ -19323,20 +19766,16 @@ export type UpdateFileErrors = {
19323
19766
  500: ErrorResponse;
19324
19767
  };
19325
19768
 
19326
- export type UpdateFileError = UpdateFileErrors[keyof UpdateFileErrors];
19769
+ export type GetFileError = GetFileErrors[keyof GetFileErrors];
19327
19770
 
19328
- export type UpdateFileResponses = {
19771
+ export type GetFileResponses = {
19329
19772
  /**
19330
- * Response Updatefile
19331
- *
19332
19773
  * Successful Response
19333
19774
  */
19334
- 200: {
19335
- [key: string]: unknown;
19336
- };
19775
+ 200: GetFileInfoResponse;
19337
19776
  };
19338
19777
 
19339
- export type UpdateFileResponse = UpdateFileResponses[keyof UpdateFileResponses];
19778
+ export type GetFileResponse = GetFileResponses[keyof GetFileResponses];
19340
19779
 
19341
19780
  export type GetGraphsData = {
19342
19781
  body?: never;
@@ -19628,6 +20067,62 @@ export type SelectGraphResponses = {
19628
20067
 
19629
20068
  export type SelectGraphResponse = SelectGraphResponses[keyof SelectGraphResponses];
19630
20069
 
20070
+ export type ValidateSchemaData = {
20071
+ /**
20072
+ * Schema definition to validate
20073
+ */
20074
+ body: SchemaValidationRequest;
20075
+ path?: never;
20076
+ query?: never;
20077
+ url: '/v1/graphs/schema/validate';
20078
+ };
20079
+
20080
+ export type ValidateSchemaErrors = {
20081
+ /**
20082
+ * Invalid request
20083
+ */
20084
+ 400: ErrorResponse;
20085
+ /**
20086
+ * Authentication required
20087
+ */
20088
+ 401: ErrorResponse;
20089
+ /**
20090
+ * Access denied
20091
+ */
20092
+ 403: ErrorResponse;
20093
+ /**
20094
+ * Resource not found
20095
+ */
20096
+ 404: ErrorResponse;
20097
+ /**
20098
+ * Schema fails validation rules
20099
+ */
20100
+ 422: unknown;
20101
+ /**
20102
+ * Rate limit exceeded
20103
+ */
20104
+ 429: ErrorResponse;
20105
+ /**
20106
+ * Internal server error
20107
+ */
20108
+ 500: ErrorResponse;
20109
+ /**
20110
+ * Validation timed out
20111
+ */
20112
+ 504: unknown;
20113
+ };
20114
+
20115
+ export type ValidateSchemaError = ValidateSchemaErrors[keyof ValidateSchemaErrors];
20116
+
20117
+ export type ValidateSchemaResponses = {
20118
+ /**
20119
+ * Successful Response
20120
+ */
20121
+ 200: SchemaValidationResponse;
20122
+ };
20123
+
20124
+ export type ValidateSchemaResponse = ValidateSchemaResponses[keyof ValidateSchemaResponses];
20125
+
19631
20126
  export type GetServiceOfferingsData = {
19632
20127
  body?: never;
19633
20128
  path?: never;
@@ -20442,7 +20937,7 @@ export type HandleHttpPostExtensionsGraphIdGraphqlPostResponses = {
20442
20937
  200: unknown;
20443
20938
  };
20444
20939
 
20445
- export type OpInitializeLedgerData = {
20940
+ export type InitializeLedgerData = {
20446
20941
  body: InitializeLedgerRequest;
20447
20942
  headers?: {
20448
20943
  /**
@@ -20460,7 +20955,7 @@ export type OpInitializeLedgerData = {
20460
20955
  url: '/extensions/roboledger/{graph_id}/operations/initialize';
20461
20956
  };
20462
20957
 
20463
- export type OpInitializeLedgerErrors = {
20958
+ export type InitializeLedgerErrors = {
20464
20959
  /**
20465
20960
  * Invalid request
20466
20961
  */
@@ -20495,18 +20990,18 @@ export type OpInitializeLedgerErrors = {
20495
20990
  500: ErrorResponse;
20496
20991
  };
20497
20992
 
20498
- export type OpInitializeLedgerError = OpInitializeLedgerErrors[keyof OpInitializeLedgerErrors];
20993
+ export type InitializeLedgerError = InitializeLedgerErrors[keyof InitializeLedgerErrors];
20499
20994
 
20500
- export type OpInitializeLedgerResponses = {
20995
+ export type InitializeLedgerResponses = {
20501
20996
  /**
20502
20997
  * Successful Response
20503
20998
  */
20504
20999
  200: OperationEnvelopeInitializeLedgerResponse;
20505
21000
  };
20506
21001
 
20507
- export type OpInitializeLedgerResponse = OpInitializeLedgerResponses[keyof OpInitializeLedgerResponses];
21002
+ export type InitializeLedgerResponse2 = InitializeLedgerResponses[keyof InitializeLedgerResponses];
20508
21003
 
20509
- export type OpUpdateEntityData = {
21004
+ export type UpdateEntityData = {
20510
21005
  body: UpdateEntityRequest;
20511
21006
  headers?: {
20512
21007
  /**
@@ -20524,7 +21019,7 @@ export type OpUpdateEntityData = {
20524
21019
  url: '/extensions/roboledger/{graph_id}/operations/update-entity';
20525
21020
  };
20526
21021
 
20527
- export type OpUpdateEntityErrors = {
21022
+ export type UpdateEntityErrors = {
20528
21023
  /**
20529
21024
  * Invalid request
20530
21025
  */
@@ -20559,18 +21054,82 @@ export type OpUpdateEntityErrors = {
20559
21054
  500: ErrorResponse;
20560
21055
  };
20561
21056
 
20562
- export type OpUpdateEntityError = OpUpdateEntityErrors[keyof OpUpdateEntityErrors];
21057
+ export type UpdateEntityError = UpdateEntityErrors[keyof UpdateEntityErrors];
20563
21058
 
20564
- export type OpUpdateEntityResponses = {
21059
+ export type UpdateEntityResponses = {
20565
21060
  /**
20566
21061
  * Successful Response
20567
21062
  */
20568
21063
  200: OperationEnvelopeLedgerEntityResponse;
20569
21064
  };
20570
21065
 
20571
- export type OpUpdateEntityResponse = OpUpdateEntityResponses[keyof OpUpdateEntityResponses];
21066
+ export type UpdateEntityResponse = UpdateEntityResponses[keyof UpdateEntityResponses];
21067
+
21068
+ export type ChangeReportingStyleData = {
21069
+ body: ChangeReportingStyleRequest;
21070
+ headers?: {
21071
+ /**
21072
+ * Idempotency-Key
21073
+ */
21074
+ 'Idempotency-Key'?: string | null;
21075
+ };
21076
+ path: {
21077
+ /**
21078
+ * Graph Id
21079
+ */
21080
+ graph_id: string;
21081
+ };
21082
+ query?: never;
21083
+ url: '/extensions/roboledger/{graph_id}/operations/change-reporting-style';
21084
+ };
21085
+
21086
+ export type ChangeReportingStyleErrors = {
21087
+ /**
21088
+ * Invalid request
21089
+ */
21090
+ 400: ErrorResponse;
21091
+ /**
21092
+ * Authentication required
21093
+ */
21094
+ 401: ErrorResponse;
21095
+ /**
21096
+ * Access denied
21097
+ */
21098
+ 403: ErrorResponse;
21099
+ /**
21100
+ * Resource not found
21101
+ */
21102
+ 404: ErrorResponse;
21103
+ /**
21104
+ * Idempotency-Key conflict — key reused with different body
21105
+ */
21106
+ 409: ErrorResponse;
21107
+ /**
21108
+ * Validation error
21109
+ */
21110
+ 422: ErrorResponse;
21111
+ /**
21112
+ * Rate limit exceeded
21113
+ */
21114
+ 429: ErrorResponse;
21115
+ /**
21116
+ * Internal server error
21117
+ */
21118
+ 500: ErrorResponse;
21119
+ };
21120
+
21121
+ export type ChangeReportingStyleError = ChangeReportingStyleErrors[keyof ChangeReportingStyleErrors];
21122
+
21123
+ export type ChangeReportingStyleResponses = {
21124
+ /**
21125
+ * Successful Response
21126
+ */
21127
+ 200: OperationEnvelopeChangeReportingStyleResponse;
21128
+ };
21129
+
21130
+ export type ChangeReportingStyleResponse2 = ChangeReportingStyleResponses[keyof ChangeReportingStyleResponses];
20572
21131
 
20573
- export type OpCreateTaxonomyBlockData = {
21132
+ export type CreateTaxonomyBlockData = {
20574
21133
  body: CreateTaxonomyBlockRequest;
20575
21134
  headers?: {
20576
21135
  /**
@@ -20588,7 +21147,7 @@ export type OpCreateTaxonomyBlockData = {
20588
21147
  url: '/extensions/roboledger/{graph_id}/operations/create-taxonomy-block';
20589
21148
  };
20590
21149
 
20591
- export type OpCreateTaxonomyBlockErrors = {
21150
+ export type CreateTaxonomyBlockErrors = {
20592
21151
  /**
20593
21152
  * Invalid request
20594
21153
  */
@@ -20623,18 +21182,18 @@ export type OpCreateTaxonomyBlockErrors = {
20623
21182
  500: ErrorResponse;
20624
21183
  };
20625
21184
 
20626
- export type OpCreateTaxonomyBlockError = OpCreateTaxonomyBlockErrors[keyof OpCreateTaxonomyBlockErrors];
21185
+ export type CreateTaxonomyBlockError = CreateTaxonomyBlockErrors[keyof CreateTaxonomyBlockErrors];
20627
21186
 
20628
- export type OpCreateTaxonomyBlockResponses = {
21187
+ export type CreateTaxonomyBlockResponses = {
20629
21188
  /**
20630
21189
  * Successful Response
20631
21190
  */
20632
21191
  200: OperationEnvelopeTaxonomyBlockEnvelope;
20633
21192
  };
20634
21193
 
20635
- export type OpCreateTaxonomyBlockResponse = OpCreateTaxonomyBlockResponses[keyof OpCreateTaxonomyBlockResponses];
21194
+ export type CreateTaxonomyBlockResponse = CreateTaxonomyBlockResponses[keyof CreateTaxonomyBlockResponses];
20636
21195
 
20637
- export type OpUpdateTaxonomyBlockData = {
21196
+ export type UpdateTaxonomyBlockData = {
20638
21197
  body: UpdateTaxonomyBlockRequest;
20639
21198
  headers?: {
20640
21199
  /**
@@ -20652,7 +21211,7 @@ export type OpUpdateTaxonomyBlockData = {
20652
21211
  url: '/extensions/roboledger/{graph_id}/operations/update-taxonomy-block';
20653
21212
  };
20654
21213
 
20655
- export type OpUpdateTaxonomyBlockErrors = {
21214
+ export type UpdateTaxonomyBlockErrors = {
20656
21215
  /**
20657
21216
  * Invalid request
20658
21217
  */
@@ -20687,18 +21246,18 @@ export type OpUpdateTaxonomyBlockErrors = {
20687
21246
  500: ErrorResponse;
20688
21247
  };
20689
21248
 
20690
- export type OpUpdateTaxonomyBlockError = OpUpdateTaxonomyBlockErrors[keyof OpUpdateTaxonomyBlockErrors];
21249
+ export type UpdateTaxonomyBlockError = UpdateTaxonomyBlockErrors[keyof UpdateTaxonomyBlockErrors];
20691
21250
 
20692
- export type OpUpdateTaxonomyBlockResponses = {
21251
+ export type UpdateTaxonomyBlockResponses = {
20693
21252
  /**
20694
21253
  * Successful Response
20695
21254
  */
20696
21255
  200: OperationEnvelopeTaxonomyBlockEnvelope;
20697
21256
  };
20698
21257
 
20699
- export type OpUpdateTaxonomyBlockResponse = OpUpdateTaxonomyBlockResponses[keyof OpUpdateTaxonomyBlockResponses];
21258
+ export type UpdateTaxonomyBlockResponse = UpdateTaxonomyBlockResponses[keyof UpdateTaxonomyBlockResponses];
20700
21259
 
20701
- export type OpDeleteTaxonomyBlockData = {
21260
+ export type DeleteTaxonomyBlockData = {
20702
21261
  body: DeleteTaxonomyBlockRequest;
20703
21262
  headers?: {
20704
21263
  /**
@@ -20716,7 +21275,7 @@ export type OpDeleteTaxonomyBlockData = {
20716
21275
  url: '/extensions/roboledger/{graph_id}/operations/delete-taxonomy-block';
20717
21276
  };
20718
21277
 
20719
- export type OpDeleteTaxonomyBlockErrors = {
21278
+ export type DeleteTaxonomyBlockErrors = {
20720
21279
  /**
20721
21280
  * Invalid request
20722
21281
  */
@@ -20751,18 +21310,18 @@ export type OpDeleteTaxonomyBlockErrors = {
20751
21310
  500: ErrorResponse;
20752
21311
  };
20753
21312
 
20754
- export type OpDeleteTaxonomyBlockError = OpDeleteTaxonomyBlockErrors[keyof OpDeleteTaxonomyBlockErrors];
21313
+ export type DeleteTaxonomyBlockError = DeleteTaxonomyBlockErrors[keyof DeleteTaxonomyBlockErrors];
20755
21314
 
20756
- export type OpDeleteTaxonomyBlockResponses = {
21315
+ export type DeleteTaxonomyBlockResponses = {
20757
21316
  /**
20758
21317
  * Successful Response
20759
21318
  */
20760
21319
  200: OperationEnvelopeDeleteTaxonomyBlockResponse;
20761
21320
  };
20762
21321
 
20763
- export type OpDeleteTaxonomyBlockResponse = OpDeleteTaxonomyBlockResponses[keyof OpDeleteTaxonomyBlockResponses];
21322
+ export type DeleteTaxonomyBlockResponse2 = DeleteTaxonomyBlockResponses[keyof DeleteTaxonomyBlockResponses];
20764
21323
 
20765
- export type OpLinkEntityTaxonomyData = {
21324
+ export type LinkEntityTaxonomyData = {
20766
21325
  body: LinkEntityTaxonomyRequest;
20767
21326
  headers?: {
20768
21327
  /**
@@ -20780,7 +21339,7 @@ export type OpLinkEntityTaxonomyData = {
20780
21339
  url: '/extensions/roboledger/{graph_id}/operations/link-entity-taxonomy';
20781
21340
  };
20782
21341
 
20783
- export type OpLinkEntityTaxonomyErrors = {
21342
+ export type LinkEntityTaxonomyErrors = {
20784
21343
  /**
20785
21344
  * Invalid request
20786
21345
  */
@@ -20815,18 +21374,18 @@ export type OpLinkEntityTaxonomyErrors = {
20815
21374
  500: ErrorResponse;
20816
21375
  };
20817
21376
 
20818
- export type OpLinkEntityTaxonomyError = OpLinkEntityTaxonomyErrors[keyof OpLinkEntityTaxonomyErrors];
21377
+ export type LinkEntityTaxonomyError = LinkEntityTaxonomyErrors[keyof LinkEntityTaxonomyErrors];
20819
21378
 
20820
- export type OpLinkEntityTaxonomyResponses = {
21379
+ export type LinkEntityTaxonomyResponses = {
20821
21380
  /**
20822
21381
  * Successful Response
20823
21382
  */
20824
21383
  200: OperationEnvelopeEntityTaxonomyResponse;
20825
21384
  };
20826
21385
 
20827
- export type OpLinkEntityTaxonomyResponse = OpLinkEntityTaxonomyResponses[keyof OpLinkEntityTaxonomyResponses];
21386
+ export type LinkEntityTaxonomyResponse = LinkEntityTaxonomyResponses[keyof LinkEntityTaxonomyResponses];
20828
21387
 
20829
- export type OpCreateMappingAssociationData = {
21388
+ export type CreateMappingAssociationData = {
20830
21389
  body: CreateMappingAssociationOperation;
20831
21390
  headers?: {
20832
21391
  /**
@@ -20844,7 +21403,7 @@ export type OpCreateMappingAssociationData = {
20844
21403
  url: '/extensions/roboledger/{graph_id}/operations/create-mapping-association';
20845
21404
  };
20846
21405
 
20847
- export type OpCreateMappingAssociationErrors = {
21406
+ export type CreateMappingAssociationErrors = {
20848
21407
  /**
20849
21408
  * Invalid request
20850
21409
  */
@@ -20879,18 +21438,18 @@ export type OpCreateMappingAssociationErrors = {
20879
21438
  500: ErrorResponse;
20880
21439
  };
20881
21440
 
20882
- export type OpCreateMappingAssociationError = OpCreateMappingAssociationErrors[keyof OpCreateMappingAssociationErrors];
21441
+ export type CreateMappingAssociationError = CreateMappingAssociationErrors[keyof CreateMappingAssociationErrors];
20883
21442
 
20884
- export type OpCreateMappingAssociationResponses = {
21443
+ export type CreateMappingAssociationResponses = {
20885
21444
  /**
20886
21445
  * Successful Response
20887
21446
  */
20888
21447
  200: OperationEnvelopeAssociationResponse;
20889
21448
  };
20890
21449
 
20891
- export type OpCreateMappingAssociationResponse = OpCreateMappingAssociationResponses[keyof OpCreateMappingAssociationResponses];
21450
+ export type CreateMappingAssociationResponse = CreateMappingAssociationResponses[keyof CreateMappingAssociationResponses];
20892
21451
 
20893
- export type OpDeleteMappingAssociationData = {
21452
+ export type DeleteMappingAssociationData = {
20894
21453
  body: DeleteMappingAssociationOperation;
20895
21454
  headers?: {
20896
21455
  /**
@@ -20908,7 +21467,7 @@ export type OpDeleteMappingAssociationData = {
20908
21467
  url: '/extensions/roboledger/{graph_id}/operations/delete-mapping-association';
20909
21468
  };
20910
21469
 
20911
- export type OpDeleteMappingAssociationErrors = {
21470
+ export type DeleteMappingAssociationErrors = {
20912
21471
  /**
20913
21472
  * Invalid request
20914
21473
  */
@@ -20943,18 +21502,18 @@ export type OpDeleteMappingAssociationErrors = {
20943
21502
  500: ErrorResponse;
20944
21503
  };
20945
21504
 
20946
- export type OpDeleteMappingAssociationError = OpDeleteMappingAssociationErrors[keyof OpDeleteMappingAssociationErrors];
21505
+ export type DeleteMappingAssociationError = DeleteMappingAssociationErrors[keyof DeleteMappingAssociationErrors];
20947
21506
 
20948
- export type OpDeleteMappingAssociationResponses = {
21507
+ export type DeleteMappingAssociationResponses = {
20949
21508
  /**
20950
21509
  * Successful Response
20951
21510
  */
20952
21511
  200: OperationEnvelopeDeleteResult;
20953
21512
  };
20954
21513
 
20955
- export type OpDeleteMappingAssociationResponse = OpDeleteMappingAssociationResponses[keyof OpDeleteMappingAssociationResponses];
21514
+ export type DeleteMappingAssociationResponse = DeleteMappingAssociationResponses[keyof DeleteMappingAssociationResponses];
20956
21515
 
20957
- export type OpAutoMapElementsData = {
21516
+ export type AutoMapElementsData = {
20958
21517
  body: AutoMapElementsOperation;
20959
21518
  headers?: {
20960
21519
  /**
@@ -20972,7 +21531,7 @@ export type OpAutoMapElementsData = {
20972
21531
  url: '/extensions/roboledger/{graph_id}/operations/auto-map-elements';
20973
21532
  };
20974
21533
 
20975
- export type OpAutoMapElementsErrors = {
21534
+ export type AutoMapElementsErrors = {
20976
21535
  /**
20977
21536
  * Invalid request
20978
21537
  */
@@ -21007,18 +21566,18 @@ export type OpAutoMapElementsErrors = {
21007
21566
  500: ErrorResponse;
21008
21567
  };
21009
21568
 
21010
- export type OpAutoMapElementsError = OpAutoMapElementsErrors[keyof OpAutoMapElementsErrors];
21569
+ export type AutoMapElementsError = AutoMapElementsErrors[keyof AutoMapElementsErrors];
21011
21570
 
21012
- export type OpAutoMapElementsResponses = {
21571
+ export type AutoMapElementsResponses = {
21013
21572
  /**
21014
21573
  * Successful Response
21015
21574
  */
21016
21575
  202: OperationEnvelope;
21017
21576
  };
21018
21577
 
21019
- export type OpAutoMapElementsResponse = OpAutoMapElementsResponses[keyof OpAutoMapElementsResponses];
21578
+ export type AutoMapElementsResponse = AutoMapElementsResponses[keyof AutoMapElementsResponses];
21020
21579
 
21021
- export type OpCreateInformationBlockData = {
21580
+ export type CreateInformationBlockData = {
21022
21581
  body: CreateInformationBlockRequest;
21023
21582
  headers?: {
21024
21583
  /**
@@ -21036,7 +21595,7 @@ export type OpCreateInformationBlockData = {
21036
21595
  url: '/extensions/roboledger/{graph_id}/operations/create-information-block';
21037
21596
  };
21038
21597
 
21039
- export type OpCreateInformationBlockErrors = {
21598
+ export type CreateInformationBlockErrors = {
21040
21599
  /**
21041
21600
  * Invalid request
21042
21601
  */
@@ -21071,18 +21630,18 @@ export type OpCreateInformationBlockErrors = {
21071
21630
  500: ErrorResponse;
21072
21631
  };
21073
21632
 
21074
- export type OpCreateInformationBlockError = OpCreateInformationBlockErrors[keyof OpCreateInformationBlockErrors];
21633
+ export type CreateInformationBlockError = CreateInformationBlockErrors[keyof CreateInformationBlockErrors];
21075
21634
 
21076
- export type OpCreateInformationBlockResponses = {
21635
+ export type CreateInformationBlockResponses = {
21077
21636
  /**
21078
21637
  * Successful Response
21079
21638
  */
21080
21639
  200: OperationEnvelopeInformationBlockEnvelope;
21081
21640
  };
21082
21641
 
21083
- export type OpCreateInformationBlockResponse = OpCreateInformationBlockResponses[keyof OpCreateInformationBlockResponses];
21642
+ export type CreateInformationBlockResponse = CreateInformationBlockResponses[keyof CreateInformationBlockResponses];
21084
21643
 
21085
- export type OpUpdateInformationBlockData = {
21644
+ export type UpdateInformationBlockData = {
21086
21645
  body: UpdateInformationBlockRequest;
21087
21646
  headers?: {
21088
21647
  /**
@@ -21100,7 +21659,7 @@ export type OpUpdateInformationBlockData = {
21100
21659
  url: '/extensions/roboledger/{graph_id}/operations/update-information-block';
21101
21660
  };
21102
21661
 
21103
- export type OpUpdateInformationBlockErrors = {
21662
+ export type UpdateInformationBlockErrors = {
21104
21663
  /**
21105
21664
  * Invalid request
21106
21665
  */
@@ -21135,18 +21694,18 @@ export type OpUpdateInformationBlockErrors = {
21135
21694
  500: ErrorResponse;
21136
21695
  };
21137
21696
 
21138
- export type OpUpdateInformationBlockError = OpUpdateInformationBlockErrors[keyof OpUpdateInformationBlockErrors];
21697
+ export type UpdateInformationBlockError = UpdateInformationBlockErrors[keyof UpdateInformationBlockErrors];
21139
21698
 
21140
- export type OpUpdateInformationBlockResponses = {
21699
+ export type UpdateInformationBlockResponses = {
21141
21700
  /**
21142
21701
  * Successful Response
21143
21702
  */
21144
21703
  200: OperationEnvelopeInformationBlockEnvelope;
21145
21704
  };
21146
21705
 
21147
- export type OpUpdateInformationBlockResponse = OpUpdateInformationBlockResponses[keyof OpUpdateInformationBlockResponses];
21706
+ export type UpdateInformationBlockResponse = UpdateInformationBlockResponses[keyof UpdateInformationBlockResponses];
21148
21707
 
21149
- export type OpDeleteInformationBlockData = {
21708
+ export type DeleteInformationBlockData = {
21150
21709
  body: DeleteInformationBlockRequest;
21151
21710
  headers?: {
21152
21711
  /**
@@ -21164,7 +21723,7 @@ export type OpDeleteInformationBlockData = {
21164
21723
  url: '/extensions/roboledger/{graph_id}/operations/delete-information-block';
21165
21724
  };
21166
21725
 
21167
- export type OpDeleteInformationBlockErrors = {
21726
+ export type DeleteInformationBlockErrors = {
21168
21727
  /**
21169
21728
  * Invalid request
21170
21729
  */
@@ -21199,18 +21758,18 @@ export type OpDeleteInformationBlockErrors = {
21199
21758
  500: ErrorResponse;
21200
21759
  };
21201
21760
 
21202
- export type OpDeleteInformationBlockError = OpDeleteInformationBlockErrors[keyof OpDeleteInformationBlockErrors];
21761
+ export type DeleteInformationBlockError = DeleteInformationBlockErrors[keyof DeleteInformationBlockErrors];
21203
21762
 
21204
- export type OpDeleteInformationBlockResponses = {
21763
+ export type DeleteInformationBlockResponses = {
21205
21764
  /**
21206
21765
  * Successful Response
21207
21766
  */
21208
21767
  200: OperationEnvelopeDeleteInformationBlockResponse;
21209
21768
  };
21210
21769
 
21211
- export type OpDeleteInformationBlockResponse = OpDeleteInformationBlockResponses[keyof OpDeleteInformationBlockResponses];
21770
+ export type DeleteInformationBlockResponse2 = DeleteInformationBlockResponses[keyof DeleteInformationBlockResponses];
21212
21771
 
21213
- export type OpEvaluateRulesData = {
21772
+ export type EvaluateRulesData = {
21214
21773
  body: EvaluateRulesRequest;
21215
21774
  headers?: {
21216
21775
  /**
@@ -21228,7 +21787,7 @@ export type OpEvaluateRulesData = {
21228
21787
  url: '/extensions/roboledger/{graph_id}/operations/evaluate-rules';
21229
21788
  };
21230
21789
 
21231
- export type OpEvaluateRulesErrors = {
21790
+ export type EvaluateRulesErrors = {
21232
21791
  /**
21233
21792
  * Invalid request
21234
21793
  */
@@ -21263,18 +21822,18 @@ export type OpEvaluateRulesErrors = {
21263
21822
  500: ErrorResponse;
21264
21823
  };
21265
21824
 
21266
- export type OpEvaluateRulesError = OpEvaluateRulesErrors[keyof OpEvaluateRulesErrors];
21825
+ export type EvaluateRulesError = EvaluateRulesErrors[keyof EvaluateRulesErrors];
21267
21826
 
21268
- export type OpEvaluateRulesResponses = {
21827
+ export type EvaluateRulesResponses = {
21269
21828
  /**
21270
21829
  * Successful Response
21271
21830
  */
21272
21831
  200: OperationEnvelopeEvaluateRulesResponse;
21273
21832
  };
21274
21833
 
21275
- export type OpEvaluateRulesResponse = OpEvaluateRulesResponses[keyof OpEvaluateRulesResponses];
21834
+ export type EvaluateRulesResponse2 = EvaluateRulesResponses[keyof EvaluateRulesResponses];
21276
21835
 
21277
- export type OpCreateAgentData = {
21836
+ export type CreateAgentData = {
21278
21837
  body: CreateAgentRequest;
21279
21838
  headers?: {
21280
21839
  /**
@@ -21292,7 +21851,7 @@ export type OpCreateAgentData = {
21292
21851
  url: '/extensions/roboledger/{graph_id}/operations/create-agent';
21293
21852
  };
21294
21853
 
21295
- export type OpCreateAgentErrors = {
21854
+ export type CreateAgentErrors = {
21296
21855
  /**
21297
21856
  * Invalid request
21298
21857
  */
@@ -21327,18 +21886,18 @@ export type OpCreateAgentErrors = {
21327
21886
  500: ErrorResponse;
21328
21887
  };
21329
21888
 
21330
- export type OpCreateAgentError = OpCreateAgentErrors[keyof OpCreateAgentErrors];
21889
+ export type CreateAgentError = CreateAgentErrors[keyof CreateAgentErrors];
21331
21890
 
21332
- export type OpCreateAgentResponses = {
21891
+ export type CreateAgentResponses = {
21333
21892
  /**
21334
21893
  * Successful Response
21335
21894
  */
21336
21895
  200: OperationEnvelopeLedgerAgentResponse;
21337
21896
  };
21338
21897
 
21339
- export type OpCreateAgentResponse = OpCreateAgentResponses[keyof OpCreateAgentResponses];
21898
+ export type CreateAgentResponse = CreateAgentResponses[keyof CreateAgentResponses];
21340
21899
 
21341
- export type OpUpdateAgentData = {
21900
+ export type UpdateAgentData = {
21342
21901
  body: UpdateAgentRequest;
21343
21902
  headers?: {
21344
21903
  /**
@@ -21356,7 +21915,7 @@ export type OpUpdateAgentData = {
21356
21915
  url: '/extensions/roboledger/{graph_id}/operations/update-agent';
21357
21916
  };
21358
21917
 
21359
- export type OpUpdateAgentErrors = {
21918
+ export type UpdateAgentErrors = {
21360
21919
  /**
21361
21920
  * Invalid request
21362
21921
  */
@@ -21391,18 +21950,18 @@ export type OpUpdateAgentErrors = {
21391
21950
  500: ErrorResponse;
21392
21951
  };
21393
21952
 
21394
- export type OpUpdateAgentError = OpUpdateAgentErrors[keyof OpUpdateAgentErrors];
21953
+ export type UpdateAgentError = UpdateAgentErrors[keyof UpdateAgentErrors];
21395
21954
 
21396
- export type OpUpdateAgentResponses = {
21955
+ export type UpdateAgentResponses = {
21397
21956
  /**
21398
21957
  * Successful Response
21399
21958
  */
21400
21959
  200: OperationEnvelopeLedgerAgentResponse;
21401
21960
  };
21402
21961
 
21403
- export type OpUpdateAgentResponse = OpUpdateAgentResponses[keyof OpUpdateAgentResponses];
21962
+ export type UpdateAgentResponse = UpdateAgentResponses[keyof UpdateAgentResponses];
21404
21963
 
21405
- export type OpCreateEventBlockData = {
21964
+ export type CreateEventBlockData = {
21406
21965
  body: CreateEventBlockRequest;
21407
21966
  headers?: {
21408
21967
  /**
@@ -21420,7 +21979,7 @@ export type OpCreateEventBlockData = {
21420
21979
  url: '/extensions/roboledger/{graph_id}/operations/create-event-block';
21421
21980
  };
21422
21981
 
21423
- export type OpCreateEventBlockErrors = {
21982
+ export type CreateEventBlockErrors = {
21424
21983
  /**
21425
21984
  * Invalid request
21426
21985
  */
@@ -21455,18 +22014,18 @@ export type OpCreateEventBlockErrors = {
21455
22014
  500: ErrorResponse;
21456
22015
  };
21457
22016
 
21458
- export type OpCreateEventBlockError = OpCreateEventBlockErrors[keyof OpCreateEventBlockErrors];
22017
+ export type CreateEventBlockError = CreateEventBlockErrors[keyof CreateEventBlockErrors];
21459
22018
 
21460
- export type OpCreateEventBlockResponses = {
22019
+ export type CreateEventBlockResponses = {
21461
22020
  /**
21462
22021
  * Successful Response
21463
22022
  */
21464
22023
  200: OperationEnvelopeEventBlockEnvelope;
21465
22024
  };
21466
22025
 
21467
- export type OpCreateEventBlockResponse = OpCreateEventBlockResponses[keyof OpCreateEventBlockResponses];
22026
+ export type CreateEventBlockResponse = CreateEventBlockResponses[keyof CreateEventBlockResponses];
21468
22027
 
21469
- export type OpUpdateEventBlockData = {
22028
+ export type UpdateEventBlockData = {
21470
22029
  body: UpdateEventBlockRequest;
21471
22030
  headers?: {
21472
22031
  /**
@@ -21484,7 +22043,7 @@ export type OpUpdateEventBlockData = {
21484
22043
  url: '/extensions/roboledger/{graph_id}/operations/update-event-block';
21485
22044
  };
21486
22045
 
21487
- export type OpUpdateEventBlockErrors = {
22046
+ export type UpdateEventBlockErrors = {
21488
22047
  /**
21489
22048
  * Invalid request
21490
22049
  */
@@ -21519,18 +22078,18 @@ export type OpUpdateEventBlockErrors = {
21519
22078
  500: ErrorResponse;
21520
22079
  };
21521
22080
 
21522
- export type OpUpdateEventBlockError = OpUpdateEventBlockErrors[keyof OpUpdateEventBlockErrors];
22081
+ export type UpdateEventBlockError = UpdateEventBlockErrors[keyof UpdateEventBlockErrors];
21523
22082
 
21524
- export type OpUpdateEventBlockResponses = {
22083
+ export type UpdateEventBlockResponses = {
21525
22084
  /**
21526
22085
  * Successful Response
21527
22086
  */
21528
22087
  200: OperationEnvelopeEventBlockEnvelope;
21529
22088
  };
21530
22089
 
21531
- export type OpUpdateEventBlockResponse = OpUpdateEventBlockResponses[keyof OpUpdateEventBlockResponses];
22090
+ export type UpdateEventBlockResponse = UpdateEventBlockResponses[keyof UpdateEventBlockResponses];
21532
22091
 
21533
- export type OpExecuteEventBlockData = {
22092
+ export type ExecuteEventBlockData = {
21534
22093
  body: ExecuteEventBlockRequest;
21535
22094
  headers?: {
21536
22095
  /**
@@ -21548,7 +22107,7 @@ export type OpExecuteEventBlockData = {
21548
22107
  url: '/extensions/roboledger/{graph_id}/operations/execute-event-block';
21549
22108
  };
21550
22109
 
21551
- export type OpExecuteEventBlockErrors = {
22110
+ export type ExecuteEventBlockErrors = {
21552
22111
  /**
21553
22112
  * Invalid request
21554
22113
  */
@@ -21583,18 +22142,18 @@ export type OpExecuteEventBlockErrors = {
21583
22142
  500: ErrorResponse;
21584
22143
  };
21585
22144
 
21586
- export type OpExecuteEventBlockError = OpExecuteEventBlockErrors[keyof OpExecuteEventBlockErrors];
22145
+ export type ExecuteEventBlockError = ExecuteEventBlockErrors[keyof ExecuteEventBlockErrors];
21587
22146
 
21588
- export type OpExecuteEventBlockResponses = {
22147
+ export type ExecuteEventBlockResponses = {
21589
22148
  /**
21590
22149
  * Successful Response
21591
22150
  */
21592
22151
  200: OperationEnvelopeExecuteEventBlockResponse;
21593
22152
  };
21594
22153
 
21595
- export type OpExecuteEventBlockResponse = OpExecuteEventBlockResponses[keyof OpExecuteEventBlockResponses];
22154
+ export type ExecuteEventBlockResponse2 = ExecuteEventBlockResponses[keyof ExecuteEventBlockResponses];
21596
22155
 
21597
- export type OpCreateEventHandlerData = {
22156
+ export type CreateEventHandlerData = {
21598
22157
  body: CreateEventHandlerRequest;
21599
22158
  headers?: {
21600
22159
  /**
@@ -21612,7 +22171,7 @@ export type OpCreateEventHandlerData = {
21612
22171
  url: '/extensions/roboledger/{graph_id}/operations/create-event-handler';
21613
22172
  };
21614
22173
 
21615
- export type OpCreateEventHandlerErrors = {
22174
+ export type CreateEventHandlerErrors = {
21616
22175
  /**
21617
22176
  * Invalid request
21618
22177
  */
@@ -21647,18 +22206,18 @@ export type OpCreateEventHandlerErrors = {
21647
22206
  500: ErrorResponse;
21648
22207
  };
21649
22208
 
21650
- export type OpCreateEventHandlerError = OpCreateEventHandlerErrors[keyof OpCreateEventHandlerErrors];
22209
+ export type CreateEventHandlerError = CreateEventHandlerErrors[keyof CreateEventHandlerErrors];
21651
22210
 
21652
- export type OpCreateEventHandlerResponses = {
22211
+ export type CreateEventHandlerResponses = {
21653
22212
  /**
21654
22213
  * Successful Response
21655
22214
  */
21656
22215
  200: OperationEnvelopeEventHandlerResponse;
21657
22216
  };
21658
22217
 
21659
- export type OpCreateEventHandlerResponse = OpCreateEventHandlerResponses[keyof OpCreateEventHandlerResponses];
22218
+ export type CreateEventHandlerResponse = CreateEventHandlerResponses[keyof CreateEventHandlerResponses];
21660
22219
 
21661
- export type OpUpdateEventHandlerData = {
22220
+ export type UpdateEventHandlerData = {
21662
22221
  body: UpdateEventHandlerRequest;
21663
22222
  headers?: {
21664
22223
  /**
@@ -21676,7 +22235,7 @@ export type OpUpdateEventHandlerData = {
21676
22235
  url: '/extensions/roboledger/{graph_id}/operations/update-event-handler';
21677
22236
  };
21678
22237
 
21679
- export type OpUpdateEventHandlerErrors = {
22238
+ export type UpdateEventHandlerErrors = {
21680
22239
  /**
21681
22240
  * Invalid request
21682
22241
  */
@@ -21711,18 +22270,18 @@ export type OpUpdateEventHandlerErrors = {
21711
22270
  500: ErrorResponse;
21712
22271
  };
21713
22272
 
21714
- export type OpUpdateEventHandlerError = OpUpdateEventHandlerErrors[keyof OpUpdateEventHandlerErrors];
22273
+ export type UpdateEventHandlerError = UpdateEventHandlerErrors[keyof UpdateEventHandlerErrors];
21715
22274
 
21716
- export type OpUpdateEventHandlerResponses = {
22275
+ export type UpdateEventHandlerResponses = {
21717
22276
  /**
21718
22277
  * Successful Response
21719
22278
  */
21720
22279
  200: OperationEnvelopeEventHandlerResponse;
21721
22280
  };
21722
22281
 
21723
- export type OpUpdateEventHandlerResponse = OpUpdateEventHandlerResponses[keyof OpUpdateEventHandlerResponses];
22282
+ export type UpdateEventHandlerResponse = UpdateEventHandlerResponses[keyof UpdateEventHandlerResponses];
21724
22283
 
21725
- export type OpPreviewEventBlockData = {
22284
+ export type PreviewEventBlockData = {
21726
22285
  body: CreateEventBlockRequest;
21727
22286
  headers?: {
21728
22287
  /**
@@ -21740,7 +22299,7 @@ export type OpPreviewEventBlockData = {
21740
22299
  url: '/extensions/roboledger/{graph_id}/operations/preview-event-block';
21741
22300
  };
21742
22301
 
21743
- export type OpPreviewEventBlockErrors = {
22302
+ export type PreviewEventBlockErrors = {
21744
22303
  /**
21745
22304
  * Invalid request
21746
22305
  */
@@ -21775,18 +22334,18 @@ export type OpPreviewEventBlockErrors = {
21775
22334
  500: ErrorResponse;
21776
22335
  };
21777
22336
 
21778
- export type OpPreviewEventBlockError = OpPreviewEventBlockErrors[keyof OpPreviewEventBlockErrors];
22337
+ export type PreviewEventBlockError = PreviewEventBlockErrors[keyof PreviewEventBlockErrors];
21779
22338
 
21780
- export type OpPreviewEventBlockResponses = {
22339
+ export type PreviewEventBlockResponses = {
21781
22340
  /**
21782
22341
  * Successful Response
21783
22342
  */
21784
22343
  200: OperationEnvelopePreviewEventBlockResponse;
21785
22344
  };
21786
22345
 
21787
- export type OpPreviewEventBlockResponse = OpPreviewEventBlockResponses[keyof OpPreviewEventBlockResponses];
22346
+ export type PreviewEventBlockResponse2 = PreviewEventBlockResponses[keyof PreviewEventBlockResponses];
21788
22347
 
21789
- export type OpUpdateJournalEntryData = {
22348
+ export type UpdateJournalEntryData = {
21790
22349
  body: UpdateJournalEntryRequest;
21791
22350
  headers?: {
21792
22351
  /**
@@ -21804,7 +22363,7 @@ export type OpUpdateJournalEntryData = {
21804
22363
  url: '/extensions/roboledger/{graph_id}/operations/update-journal-entry';
21805
22364
  };
21806
22365
 
21807
- export type OpUpdateJournalEntryErrors = {
22366
+ export type UpdateJournalEntryErrors = {
21808
22367
  /**
21809
22368
  * Invalid request
21810
22369
  */
@@ -21839,18 +22398,18 @@ export type OpUpdateJournalEntryErrors = {
21839
22398
  500: ErrorResponse;
21840
22399
  };
21841
22400
 
21842
- export type OpUpdateJournalEntryError = OpUpdateJournalEntryErrors[keyof OpUpdateJournalEntryErrors];
22401
+ export type UpdateJournalEntryError = UpdateJournalEntryErrors[keyof UpdateJournalEntryErrors];
21843
22402
 
21844
- export type OpUpdateJournalEntryResponses = {
22403
+ export type UpdateJournalEntryResponses = {
21845
22404
  /**
21846
22405
  * Successful Response
21847
22406
  */
21848
22407
  200: OperationEnvelopeJournalEntryResponse;
21849
22408
  };
21850
22409
 
21851
- export type OpUpdateJournalEntryResponse = OpUpdateJournalEntryResponses[keyof OpUpdateJournalEntryResponses];
22410
+ export type UpdateJournalEntryResponse = UpdateJournalEntryResponses[keyof UpdateJournalEntryResponses];
21852
22411
 
21853
- export type OpDeleteJournalEntryData = {
22412
+ export type DeleteJournalEntryData = {
21854
22413
  body: DeleteJournalEntryRequest;
21855
22414
  headers?: {
21856
22415
  /**
@@ -21868,7 +22427,7 @@ export type OpDeleteJournalEntryData = {
21868
22427
  url: '/extensions/roboledger/{graph_id}/operations/delete-journal-entry';
21869
22428
  };
21870
22429
 
21871
- export type OpDeleteJournalEntryErrors = {
22430
+ export type DeleteJournalEntryErrors = {
21872
22431
  /**
21873
22432
  * Invalid request
21874
22433
  */
@@ -21903,18 +22462,18 @@ export type OpDeleteJournalEntryErrors = {
21903
22462
  500: ErrorResponse;
21904
22463
  };
21905
22464
 
21906
- export type OpDeleteJournalEntryError = OpDeleteJournalEntryErrors[keyof OpDeleteJournalEntryErrors];
22465
+ export type DeleteJournalEntryError = DeleteJournalEntryErrors[keyof DeleteJournalEntryErrors];
21907
22466
 
21908
- export type OpDeleteJournalEntryResponses = {
22467
+ export type DeleteJournalEntryResponses = {
21909
22468
  /**
21910
22469
  * Successful Response
21911
22470
  */
21912
22471
  200: OperationEnvelopeDeleteResult;
21913
22472
  };
21914
22473
 
21915
- export type OpDeleteJournalEntryResponse = OpDeleteJournalEntryResponses[keyof OpDeleteJournalEntryResponses];
22474
+ export type DeleteJournalEntryResponse = DeleteJournalEntryResponses[keyof DeleteJournalEntryResponses];
21916
22475
 
21917
- export type OpPromoteObligationsData = {
22476
+ export type PromoteObligationsData = {
21918
22477
  body: PromoteObligationsRequest;
21919
22478
  headers?: {
21920
22479
  /**
@@ -21932,7 +22491,7 @@ export type OpPromoteObligationsData = {
21932
22491
  url: '/extensions/roboledger/{graph_id}/operations/promote-obligations';
21933
22492
  };
21934
22493
 
21935
- export type OpPromoteObligationsErrors = {
22494
+ export type PromoteObligationsErrors = {
21936
22495
  /**
21937
22496
  * Invalid request
21938
22497
  */
@@ -21967,18 +22526,18 @@ export type OpPromoteObligationsErrors = {
21967
22526
  500: ErrorResponse;
21968
22527
  };
21969
22528
 
21970
- export type OpPromoteObligationsError = OpPromoteObligationsErrors[keyof OpPromoteObligationsErrors];
22529
+ export type PromoteObligationsError = PromoteObligationsErrors[keyof PromoteObligationsErrors];
21971
22530
 
21972
- export type OpPromoteObligationsResponses = {
22531
+ export type PromoteObligationsResponses = {
21973
22532
  /**
21974
22533
  * Successful Response
21975
22534
  */
21976
22535
  200: OperationEnvelopePromoteObligationsResponse;
21977
22536
  };
21978
22537
 
21979
- export type OpPromoteObligationsResponse = OpPromoteObligationsResponses[keyof OpPromoteObligationsResponses];
22538
+ export type PromoteObligationsResponse2 = PromoteObligationsResponses[keyof PromoteObligationsResponses];
21980
22539
 
21981
- export type OpRebuildScheduleData = {
22540
+ export type RebuildScheduleData = {
21982
22541
  body: RebuildScheduleRequest;
21983
22542
  headers?: {
21984
22543
  /**
@@ -21996,7 +22555,7 @@ export type OpRebuildScheduleData = {
21996
22555
  url: '/extensions/roboledger/{graph_id}/operations/rebuild-schedule';
21997
22556
  };
21998
22557
 
21999
- export type OpRebuildScheduleErrors = {
22558
+ export type RebuildScheduleErrors = {
22000
22559
  /**
22001
22560
  * Invalid request
22002
22561
  */
@@ -22031,18 +22590,18 @@ export type OpRebuildScheduleErrors = {
22031
22590
  500: ErrorResponse;
22032
22591
  };
22033
22592
 
22034
- export type OpRebuildScheduleError = OpRebuildScheduleErrors[keyof OpRebuildScheduleErrors];
22593
+ export type RebuildScheduleError = RebuildScheduleErrors[keyof RebuildScheduleErrors];
22035
22594
 
22036
- export type OpRebuildScheduleResponses = {
22595
+ export type RebuildScheduleResponses = {
22037
22596
  /**
22038
22597
  * Successful Response
22039
22598
  */
22040
22599
  200: OperationEnvelopeScheduleCreatedResponse;
22041
22600
  };
22042
22601
 
22043
- export type OpRebuildScheduleResponse = OpRebuildScheduleResponses[keyof OpRebuildScheduleResponses];
22602
+ export type RebuildScheduleResponse = RebuildScheduleResponses[keyof RebuildScheduleResponses];
22044
22603
 
22045
- export type OpSetCloseTargetData = {
22604
+ export type SetCloseTargetData = {
22046
22605
  body: SetCloseTargetOperation;
22047
22606
  headers?: {
22048
22607
  /**
@@ -22060,7 +22619,7 @@ export type OpSetCloseTargetData = {
22060
22619
  url: '/extensions/roboledger/{graph_id}/operations/set-close-target';
22061
22620
  };
22062
22621
 
22063
- export type OpSetCloseTargetErrors = {
22622
+ export type SetCloseTargetErrors = {
22064
22623
  /**
22065
22624
  * Invalid request
22066
22625
  */
@@ -22095,18 +22654,18 @@ export type OpSetCloseTargetErrors = {
22095
22654
  500: ErrorResponse;
22096
22655
  };
22097
22656
 
22098
- export type OpSetCloseTargetError = OpSetCloseTargetErrors[keyof OpSetCloseTargetErrors];
22657
+ export type SetCloseTargetError = SetCloseTargetErrors[keyof SetCloseTargetErrors];
22099
22658
 
22100
- export type OpSetCloseTargetResponses = {
22659
+ export type SetCloseTargetResponses = {
22101
22660
  /**
22102
22661
  * Successful Response
22103
22662
  */
22104
22663
  200: OperationEnvelopeFiscalCalendarResponse;
22105
22664
  };
22106
22665
 
22107
- export type OpSetCloseTargetResponse = OpSetCloseTargetResponses[keyof OpSetCloseTargetResponses];
22666
+ export type SetCloseTargetResponse = SetCloseTargetResponses[keyof SetCloseTargetResponses];
22108
22667
 
22109
- export type OpClosePeriodData = {
22668
+ export type ClosePeriodData = {
22110
22669
  body: ClosePeriodOperation;
22111
22670
  headers?: {
22112
22671
  /**
@@ -22124,7 +22683,7 @@ export type OpClosePeriodData = {
22124
22683
  url: '/extensions/roboledger/{graph_id}/operations/close-period';
22125
22684
  };
22126
22685
 
22127
- export type OpClosePeriodErrors = {
22686
+ export type ClosePeriodErrors = {
22128
22687
  /**
22129
22688
  * Invalid request
22130
22689
  */
@@ -22159,18 +22718,18 @@ export type OpClosePeriodErrors = {
22159
22718
  500: ErrorResponse;
22160
22719
  };
22161
22720
 
22162
- export type OpClosePeriodError = OpClosePeriodErrors[keyof OpClosePeriodErrors];
22721
+ export type ClosePeriodError = ClosePeriodErrors[keyof ClosePeriodErrors];
22163
22722
 
22164
- export type OpClosePeriodResponses = {
22723
+ export type ClosePeriodResponses = {
22165
22724
  /**
22166
22725
  * Successful Response
22167
22726
  */
22168
22727
  200: OperationEnvelopeClosePeriodResponse;
22169
22728
  };
22170
22729
 
22171
- export type OpClosePeriodResponse = OpClosePeriodResponses[keyof OpClosePeriodResponses];
22730
+ export type ClosePeriodResponse2 = ClosePeriodResponses[keyof ClosePeriodResponses];
22172
22731
 
22173
- export type OpReopenPeriodData = {
22732
+ export type ReopenPeriodData = {
22174
22733
  body: ReopenPeriodOperation;
22175
22734
  headers?: {
22176
22735
  /**
@@ -22188,7 +22747,7 @@ export type OpReopenPeriodData = {
22188
22747
  url: '/extensions/roboledger/{graph_id}/operations/reopen-period';
22189
22748
  };
22190
22749
 
22191
- export type OpReopenPeriodErrors = {
22750
+ export type ReopenPeriodErrors = {
22192
22751
  /**
22193
22752
  * Invalid request
22194
22753
  */
@@ -22223,18 +22782,18 @@ export type OpReopenPeriodErrors = {
22223
22782
  500: ErrorResponse;
22224
22783
  };
22225
22784
 
22226
- export type OpReopenPeriodError = OpReopenPeriodErrors[keyof OpReopenPeriodErrors];
22785
+ export type ReopenPeriodError = ReopenPeriodErrors[keyof ReopenPeriodErrors];
22227
22786
 
22228
- export type OpReopenPeriodResponses = {
22787
+ export type ReopenPeriodResponses = {
22229
22788
  /**
22230
22789
  * Successful Response
22231
22790
  */
22232
22791
  200: OperationEnvelopeFiscalCalendarResponse;
22233
22792
  };
22234
22793
 
22235
- export type OpReopenPeriodResponse = OpReopenPeriodResponses[keyof OpReopenPeriodResponses];
22794
+ export type ReopenPeriodResponse = ReopenPeriodResponses[keyof ReopenPeriodResponses];
22236
22795
 
22237
- export type OpCreateReportData = {
22796
+ export type CreateReportData = {
22238
22797
  body: CreateReportRequest;
22239
22798
  headers?: {
22240
22799
  /**
@@ -22252,7 +22811,7 @@ export type OpCreateReportData = {
22252
22811
  url: '/extensions/roboledger/{graph_id}/operations/create-report';
22253
22812
  };
22254
22813
 
22255
- export type OpCreateReportErrors = {
22814
+ export type CreateReportErrors = {
22256
22815
  /**
22257
22816
  * Invalid request
22258
22817
  */
@@ -22287,18 +22846,18 @@ export type OpCreateReportErrors = {
22287
22846
  500: ErrorResponse;
22288
22847
  };
22289
22848
 
22290
- export type OpCreateReportError = OpCreateReportErrors[keyof OpCreateReportErrors];
22849
+ export type CreateReportError = CreateReportErrors[keyof CreateReportErrors];
22291
22850
 
22292
- export type OpCreateReportResponses = {
22851
+ export type CreateReportResponses = {
22293
22852
  /**
22294
22853
  * Successful Response
22295
22854
  */
22296
22855
  200: OperationEnvelopeReportResponse;
22297
22856
  };
22298
22857
 
22299
- export type OpCreateReportResponse = OpCreateReportResponses[keyof OpCreateReportResponses];
22858
+ export type CreateReportResponse = CreateReportResponses[keyof CreateReportResponses];
22300
22859
 
22301
- export type OpRegenerateReportData = {
22860
+ export type RegenerateReportData = {
22302
22861
  body: RegenerateReportOperation;
22303
22862
  headers?: {
22304
22863
  /**
@@ -22316,7 +22875,7 @@ export type OpRegenerateReportData = {
22316
22875
  url: '/extensions/roboledger/{graph_id}/operations/regenerate-report';
22317
22876
  };
22318
22877
 
22319
- export type OpRegenerateReportErrors = {
22878
+ export type RegenerateReportErrors = {
22320
22879
  /**
22321
22880
  * Invalid request
22322
22881
  */
@@ -22351,18 +22910,18 @@ export type OpRegenerateReportErrors = {
22351
22910
  500: ErrorResponse;
22352
22911
  };
22353
22912
 
22354
- export type OpRegenerateReportError = OpRegenerateReportErrors[keyof OpRegenerateReportErrors];
22913
+ export type RegenerateReportError = RegenerateReportErrors[keyof RegenerateReportErrors];
22355
22914
 
22356
- export type OpRegenerateReportResponses = {
22915
+ export type RegenerateReportResponses = {
22357
22916
  /**
22358
22917
  * Successful Response
22359
22918
  */
22360
22919
  200: OperationEnvelopeReportResponse;
22361
22920
  };
22362
22921
 
22363
- export type OpRegenerateReportResponse = OpRegenerateReportResponses[keyof OpRegenerateReportResponses];
22922
+ export type RegenerateReportResponse = RegenerateReportResponses[keyof RegenerateReportResponses];
22364
22923
 
22365
- export type OpDeleteReportData = {
22924
+ export type DeleteReportData = {
22366
22925
  body: DeleteReportOperation;
22367
22926
  headers?: {
22368
22927
  /**
@@ -22380,7 +22939,7 @@ export type OpDeleteReportData = {
22380
22939
  url: '/extensions/roboledger/{graph_id}/operations/delete-report';
22381
22940
  };
22382
22941
 
22383
- export type OpDeleteReportErrors = {
22942
+ export type DeleteReportErrors = {
22384
22943
  /**
22385
22944
  * Invalid request
22386
22945
  */
@@ -22415,18 +22974,18 @@ export type OpDeleteReportErrors = {
22415
22974
  500: ErrorResponse;
22416
22975
  };
22417
22976
 
22418
- export type OpDeleteReportError = OpDeleteReportErrors[keyof OpDeleteReportErrors];
22977
+ export type DeleteReportError = DeleteReportErrors[keyof DeleteReportErrors];
22419
22978
 
22420
- export type OpDeleteReportResponses = {
22979
+ export type DeleteReportResponses = {
22421
22980
  /**
22422
22981
  * Successful Response
22423
22982
  */
22424
22983
  200: OperationEnvelopeDeleteResult;
22425
22984
  };
22426
22985
 
22427
- export type OpDeleteReportResponse = OpDeleteReportResponses[keyof OpDeleteReportResponses];
22986
+ export type DeleteReportResponse = DeleteReportResponses[keyof DeleteReportResponses];
22428
22987
 
22429
- export type OpShareReportData = {
22988
+ export type ShareReportData = {
22430
22989
  body: ShareReportOperation;
22431
22990
  headers?: {
22432
22991
  /**
@@ -22444,7 +23003,7 @@ export type OpShareReportData = {
22444
23003
  url: '/extensions/roboledger/{graph_id}/operations/share-report';
22445
23004
  };
22446
23005
 
22447
- export type OpShareReportErrors = {
23006
+ export type ShareReportErrors = {
22448
23007
  /**
22449
23008
  * Invalid request
22450
23009
  */
@@ -22479,18 +23038,18 @@ export type OpShareReportErrors = {
22479
23038
  500: ErrorResponse;
22480
23039
  };
22481
23040
 
22482
- export type OpShareReportError = OpShareReportErrors[keyof OpShareReportErrors];
23041
+ export type ShareReportError = ShareReportErrors[keyof ShareReportErrors];
22483
23042
 
22484
- export type OpShareReportResponses = {
23043
+ export type ShareReportResponses = {
22485
23044
  /**
22486
23045
  * Successful Response
22487
23046
  */
22488
23047
  200: OperationEnvelopeShareReportResponse;
22489
23048
  };
22490
23049
 
22491
- export type OpShareReportResponse = OpShareReportResponses[keyof OpShareReportResponses];
23050
+ export type ShareReportResponse2 = ShareReportResponses[keyof ShareReportResponses];
22492
23051
 
22493
- export type OpFileReportData = {
23052
+ export type FileReportData = {
22494
23053
  body: FileReportRequest;
22495
23054
  headers?: {
22496
23055
  /**
@@ -22508,7 +23067,7 @@ export type OpFileReportData = {
22508
23067
  url: '/extensions/roboledger/{graph_id}/operations/file-report';
22509
23068
  };
22510
23069
 
22511
- export type OpFileReportErrors = {
23070
+ export type FileReportErrors = {
22512
23071
  /**
22513
23072
  * Invalid request
22514
23073
  */
@@ -22543,18 +23102,18 @@ export type OpFileReportErrors = {
22543
23102
  500: ErrorResponse;
22544
23103
  };
22545
23104
 
22546
- export type OpFileReportError = OpFileReportErrors[keyof OpFileReportErrors];
23105
+ export type FileReportError = FileReportErrors[keyof FileReportErrors];
22547
23106
 
22548
- export type OpFileReportResponses = {
23107
+ export type FileReportResponses = {
22549
23108
  /**
22550
23109
  * Successful Response
22551
23110
  */
22552
23111
  200: OperationEnvelopeReportResponse;
22553
23112
  };
22554
23113
 
22555
- export type OpFileReportResponse = OpFileReportResponses[keyof OpFileReportResponses];
23114
+ export type FileReportResponse = FileReportResponses[keyof FileReportResponses];
22556
23115
 
22557
- export type OpTransitionFilingStatusData = {
23116
+ export type TransitionFilingStatusData = {
22558
23117
  body: TransitionFilingStatusRequest;
22559
23118
  headers?: {
22560
23119
  /**
@@ -22572,7 +23131,7 @@ export type OpTransitionFilingStatusData = {
22572
23131
  url: '/extensions/roboledger/{graph_id}/operations/transition-filing-status';
22573
23132
  };
22574
23133
 
22575
- export type OpTransitionFilingStatusErrors = {
23134
+ export type TransitionFilingStatusErrors = {
22576
23135
  /**
22577
23136
  * Invalid request
22578
23137
  */
@@ -22607,18 +23166,18 @@ export type OpTransitionFilingStatusErrors = {
22607
23166
  500: ErrorResponse;
22608
23167
  };
22609
23168
 
22610
- export type OpTransitionFilingStatusError = OpTransitionFilingStatusErrors[keyof OpTransitionFilingStatusErrors];
23169
+ export type TransitionFilingStatusError = TransitionFilingStatusErrors[keyof TransitionFilingStatusErrors];
22611
23170
 
22612
- export type OpTransitionFilingStatusResponses = {
23171
+ export type TransitionFilingStatusResponses = {
22613
23172
  /**
22614
23173
  * Successful Response
22615
23174
  */
22616
23175
  200: OperationEnvelopeReportResponse;
22617
23176
  };
22618
23177
 
22619
- export type OpTransitionFilingStatusResponse = OpTransitionFilingStatusResponses[keyof OpTransitionFilingStatusResponses];
23178
+ export type TransitionFilingStatusResponse = TransitionFilingStatusResponses[keyof TransitionFilingStatusResponses];
22620
23179
 
22621
- export type OpCreatePublishListData = {
23180
+ export type CreatePublishListData = {
22622
23181
  body: CreatePublishListRequest;
22623
23182
  headers?: {
22624
23183
  /**
@@ -22636,7 +23195,7 @@ export type OpCreatePublishListData = {
22636
23195
  url: '/extensions/roboledger/{graph_id}/operations/create-publish-list';
22637
23196
  };
22638
23197
 
22639
- export type OpCreatePublishListErrors = {
23198
+ export type CreatePublishListErrors = {
22640
23199
  /**
22641
23200
  * Invalid request
22642
23201
  */
@@ -22671,18 +23230,18 @@ export type OpCreatePublishListErrors = {
22671
23230
  500: ErrorResponse;
22672
23231
  };
22673
23232
 
22674
- export type OpCreatePublishListError = OpCreatePublishListErrors[keyof OpCreatePublishListErrors];
23233
+ export type CreatePublishListError = CreatePublishListErrors[keyof CreatePublishListErrors];
22675
23234
 
22676
- export type OpCreatePublishListResponses = {
23235
+ export type CreatePublishListResponses = {
22677
23236
  /**
22678
23237
  * Successful Response
22679
23238
  */
22680
23239
  200: OperationEnvelopePublishListResponse;
22681
23240
  };
22682
23241
 
22683
- export type OpCreatePublishListResponse = OpCreatePublishListResponses[keyof OpCreatePublishListResponses];
23242
+ export type CreatePublishListResponse = CreatePublishListResponses[keyof CreatePublishListResponses];
22684
23243
 
22685
- export type OpUpdatePublishListData = {
23244
+ export type UpdatePublishListData = {
22686
23245
  body: UpdatePublishListOperation;
22687
23246
  headers?: {
22688
23247
  /**
@@ -22700,7 +23259,7 @@ export type OpUpdatePublishListData = {
22700
23259
  url: '/extensions/roboledger/{graph_id}/operations/update-publish-list';
22701
23260
  };
22702
23261
 
22703
- export type OpUpdatePublishListErrors = {
23262
+ export type UpdatePublishListErrors = {
22704
23263
  /**
22705
23264
  * Invalid request
22706
23265
  */
@@ -22735,18 +23294,18 @@ export type OpUpdatePublishListErrors = {
22735
23294
  500: ErrorResponse;
22736
23295
  };
22737
23296
 
22738
- export type OpUpdatePublishListError = OpUpdatePublishListErrors[keyof OpUpdatePublishListErrors];
23297
+ export type UpdatePublishListError = UpdatePublishListErrors[keyof UpdatePublishListErrors];
22739
23298
 
22740
- export type OpUpdatePublishListResponses = {
23299
+ export type UpdatePublishListResponses = {
22741
23300
  /**
22742
23301
  * Successful Response
22743
23302
  */
22744
23303
  200: OperationEnvelopePublishListResponse;
22745
23304
  };
22746
23305
 
22747
- export type OpUpdatePublishListResponse = OpUpdatePublishListResponses[keyof OpUpdatePublishListResponses];
23306
+ export type UpdatePublishListResponse = UpdatePublishListResponses[keyof UpdatePublishListResponses];
22748
23307
 
22749
- export type OpDeletePublishListData = {
23308
+ export type DeletePublishListData = {
22750
23309
  body: DeletePublishListOperation;
22751
23310
  headers?: {
22752
23311
  /**
@@ -22764,7 +23323,7 @@ export type OpDeletePublishListData = {
22764
23323
  url: '/extensions/roboledger/{graph_id}/operations/delete-publish-list';
22765
23324
  };
22766
23325
 
22767
- export type OpDeletePublishListErrors = {
23326
+ export type DeletePublishListErrors = {
22768
23327
  /**
22769
23328
  * Invalid request
22770
23329
  */
@@ -22799,18 +23358,18 @@ export type OpDeletePublishListErrors = {
22799
23358
  500: ErrorResponse;
22800
23359
  };
22801
23360
 
22802
- export type OpDeletePublishListError = OpDeletePublishListErrors[keyof OpDeletePublishListErrors];
23361
+ export type DeletePublishListError = DeletePublishListErrors[keyof DeletePublishListErrors];
22803
23362
 
22804
- export type OpDeletePublishListResponses = {
23363
+ export type DeletePublishListResponses = {
22805
23364
  /**
22806
23365
  * Successful Response
22807
23366
  */
22808
23367
  200: OperationEnvelopeDeleteResult;
22809
23368
  };
22810
23369
 
22811
- export type OpDeletePublishListResponse = OpDeletePublishListResponses[keyof OpDeletePublishListResponses];
23370
+ export type DeletePublishListResponse = DeletePublishListResponses[keyof DeletePublishListResponses];
22812
23371
 
22813
- export type OpAddPublishListMembersData = {
23372
+ export type AddPublishListMembersData = {
22814
23373
  body: AddPublishListMembersOperation;
22815
23374
  headers?: {
22816
23375
  /**
@@ -22828,7 +23387,7 @@ export type OpAddPublishListMembersData = {
22828
23387
  url: '/extensions/roboledger/{graph_id}/operations/add-publish-list-members';
22829
23388
  };
22830
23389
 
22831
- export type OpAddPublishListMembersErrors = {
23390
+ export type AddPublishListMembersErrors = {
22832
23391
  /**
22833
23392
  * Invalid request
22834
23393
  */
@@ -22863,18 +23422,18 @@ export type OpAddPublishListMembersErrors = {
22863
23422
  500: ErrorResponse;
22864
23423
  };
22865
23424
 
22866
- export type OpAddPublishListMembersError = OpAddPublishListMembersErrors[keyof OpAddPublishListMembersErrors];
23425
+ export type AddPublishListMembersError = AddPublishListMembersErrors[keyof AddPublishListMembersErrors];
22867
23426
 
22868
- export type OpAddPublishListMembersResponses = {
23427
+ export type AddPublishListMembersResponses = {
22869
23428
  /**
22870
23429
  * Successful Response
22871
23430
  */
22872
23431
  200: OperationEnvelopeListPublishListMemberResponse;
22873
23432
  };
22874
23433
 
22875
- export type OpAddPublishListMembersResponse = OpAddPublishListMembersResponses[keyof OpAddPublishListMembersResponses];
23434
+ export type AddPublishListMembersResponse = AddPublishListMembersResponses[keyof AddPublishListMembersResponses];
22876
23435
 
22877
- export type OpRemovePublishListMemberData = {
23436
+ export type RemovePublishListMemberData = {
22878
23437
  body: RemovePublishListMemberOperation;
22879
23438
  headers?: {
22880
23439
  /**
@@ -22892,7 +23451,7 @@ export type OpRemovePublishListMemberData = {
22892
23451
  url: '/extensions/roboledger/{graph_id}/operations/remove-publish-list-member';
22893
23452
  };
22894
23453
 
22895
- export type OpRemovePublishListMemberErrors = {
23454
+ export type RemovePublishListMemberErrors = {
22896
23455
  /**
22897
23456
  * Invalid request
22898
23457
  */
@@ -22927,18 +23486,18 @@ export type OpRemovePublishListMemberErrors = {
22927
23486
  500: ErrorResponse;
22928
23487
  };
22929
23488
 
22930
- export type OpRemovePublishListMemberError = OpRemovePublishListMemberErrors[keyof OpRemovePublishListMemberErrors];
23489
+ export type RemovePublishListMemberError = RemovePublishListMemberErrors[keyof RemovePublishListMemberErrors];
22931
23490
 
22932
- export type OpRemovePublishListMemberResponses = {
23491
+ export type RemovePublishListMemberResponses = {
22933
23492
  /**
22934
23493
  * Successful Response
22935
23494
  */
22936
23495
  200: OperationEnvelopeDeleteResult;
22937
23496
  };
22938
23497
 
22939
- export type OpRemovePublishListMemberResponse = OpRemovePublishListMemberResponses[keyof OpRemovePublishListMemberResponses];
23498
+ export type RemovePublishListMemberResponse = RemovePublishListMemberResponses[keyof RemovePublishListMemberResponses];
22940
23499
 
22941
- export type OpLiveFinancialStatementData = {
23500
+ export type LiveFinancialStatementData = {
22942
23501
  body: LiveFinancialStatementRequest;
22943
23502
  headers?: {
22944
23503
  /**
@@ -22956,7 +23515,7 @@ export type OpLiveFinancialStatementData = {
22956
23515
  url: '/extensions/roboledger/{graph_id}/operations/live-financial-statement';
22957
23516
  };
22958
23517
 
22959
- export type OpLiveFinancialStatementErrors = {
23518
+ export type LiveFinancialStatementErrors = {
22960
23519
  /**
22961
23520
  * Invalid request
22962
23521
  */
@@ -22991,18 +23550,18 @@ export type OpLiveFinancialStatementErrors = {
22991
23550
  500: ErrorResponse;
22992
23551
  };
22993
23552
 
22994
- export type OpLiveFinancialStatementError = OpLiveFinancialStatementErrors[keyof OpLiveFinancialStatementErrors];
23553
+ export type LiveFinancialStatementError = LiveFinancialStatementErrors[keyof LiveFinancialStatementErrors];
22995
23554
 
22996
- export type OpLiveFinancialStatementResponses = {
23555
+ export type LiveFinancialStatementResponses = {
22997
23556
  /**
22998
23557
  * Successful Response
22999
23558
  */
23000
23559
  200: OperationEnvelope;
23001
23560
  };
23002
23561
 
23003
- export type OpLiveFinancialStatementResponse = OpLiveFinancialStatementResponses[keyof OpLiveFinancialStatementResponses];
23562
+ export type LiveFinancialStatementResponse = LiveFinancialStatementResponses[keyof LiveFinancialStatementResponses];
23004
23563
 
23005
- export type OpBuildFactGridData = {
23564
+ export type BuildFactGridData = {
23006
23565
  body: CreateViewRequest;
23007
23566
  headers?: {
23008
23567
  /**
@@ -23020,7 +23579,7 @@ export type OpBuildFactGridData = {
23020
23579
  url: '/extensions/roboledger/{graph_id}/operations/build-fact-grid';
23021
23580
  };
23022
23581
 
23023
- export type OpBuildFactGridErrors = {
23582
+ export type BuildFactGridErrors = {
23024
23583
  /**
23025
23584
  * Invalid request
23026
23585
  */
@@ -23055,18 +23614,18 @@ export type OpBuildFactGridErrors = {
23055
23614
  500: ErrorResponse;
23056
23615
  };
23057
23616
 
23058
- export type OpBuildFactGridError = OpBuildFactGridErrors[keyof OpBuildFactGridErrors];
23617
+ export type BuildFactGridError = BuildFactGridErrors[keyof BuildFactGridErrors];
23059
23618
 
23060
- export type OpBuildFactGridResponses = {
23619
+ export type BuildFactGridResponses = {
23061
23620
  /**
23062
23621
  * Successful Response
23063
23622
  */
23064
23623
  200: OperationEnvelope;
23065
23624
  };
23066
23625
 
23067
- export type OpBuildFactGridResponse = OpBuildFactGridResponses[keyof OpBuildFactGridResponses];
23626
+ export type BuildFactGridResponse = BuildFactGridResponses[keyof BuildFactGridResponses];
23068
23627
 
23069
- export type OpFinancialStatementAnalysisData = {
23628
+ export type FinancialStatementAnalysisData = {
23070
23629
  body: FinancialStatementAnalysisRequest;
23071
23630
  headers?: {
23072
23631
  /**
@@ -23084,7 +23643,7 @@ export type OpFinancialStatementAnalysisData = {
23084
23643
  url: '/extensions/roboledger/{graph_id}/operations/financial-statement-analysis';
23085
23644
  };
23086
23645
 
23087
- export type OpFinancialStatementAnalysisErrors = {
23646
+ export type FinancialStatementAnalysisErrors = {
23088
23647
  /**
23089
23648
  * Invalid request
23090
23649
  */
@@ -23119,18 +23678,18 @@ export type OpFinancialStatementAnalysisErrors = {
23119
23678
  500: ErrorResponse;
23120
23679
  };
23121
23680
 
23122
- export type OpFinancialStatementAnalysisError = OpFinancialStatementAnalysisErrors[keyof OpFinancialStatementAnalysisErrors];
23681
+ export type FinancialStatementAnalysisError = FinancialStatementAnalysisErrors[keyof FinancialStatementAnalysisErrors];
23123
23682
 
23124
- export type OpFinancialStatementAnalysisResponses = {
23683
+ export type FinancialStatementAnalysisResponses = {
23125
23684
  /**
23126
23685
  * Successful Response
23127
23686
  */
23128
23687
  200: OperationEnvelope;
23129
23688
  };
23130
23689
 
23131
- export type OpFinancialStatementAnalysisResponse = OpFinancialStatementAnalysisResponses[keyof OpFinancialStatementAnalysisResponses];
23690
+ export type FinancialStatementAnalysisResponse = FinancialStatementAnalysisResponses[keyof FinancialStatementAnalysisResponses];
23132
23691
 
23133
- export type OpCreatePortfolioBlockData = {
23692
+ export type CreatePortfolioBlockData = {
23134
23693
  body: CreatePortfolioBlockRequest;
23135
23694
  headers?: {
23136
23695
  /**
@@ -23148,7 +23707,7 @@ export type OpCreatePortfolioBlockData = {
23148
23707
  url: '/extensions/roboinvestor/{graph_id}/operations/create-portfolio-block';
23149
23708
  };
23150
23709
 
23151
- export type OpCreatePortfolioBlockErrors = {
23710
+ export type CreatePortfolioBlockErrors = {
23152
23711
  /**
23153
23712
  * Invalid request
23154
23713
  */
@@ -23183,18 +23742,18 @@ export type OpCreatePortfolioBlockErrors = {
23183
23742
  500: ErrorResponse;
23184
23743
  };
23185
23744
 
23186
- export type OpCreatePortfolioBlockError = OpCreatePortfolioBlockErrors[keyof OpCreatePortfolioBlockErrors];
23745
+ export type CreatePortfolioBlockError = CreatePortfolioBlockErrors[keyof CreatePortfolioBlockErrors];
23187
23746
 
23188
- export type OpCreatePortfolioBlockResponses = {
23747
+ export type CreatePortfolioBlockResponses = {
23189
23748
  /**
23190
23749
  * Successful Response
23191
23750
  */
23192
23751
  200: OperationEnvelopePortfolioBlockEnvelope;
23193
23752
  };
23194
23753
 
23195
- export type OpCreatePortfolioBlockResponse = OpCreatePortfolioBlockResponses[keyof OpCreatePortfolioBlockResponses];
23754
+ export type CreatePortfolioBlockResponse = CreatePortfolioBlockResponses[keyof CreatePortfolioBlockResponses];
23196
23755
 
23197
- export type OpUpdatePortfolioBlockData = {
23756
+ export type UpdatePortfolioBlockData = {
23198
23757
  body: UpdatePortfolioBlockOperation;
23199
23758
  headers?: {
23200
23759
  /**
@@ -23212,7 +23771,7 @@ export type OpUpdatePortfolioBlockData = {
23212
23771
  url: '/extensions/roboinvestor/{graph_id}/operations/update-portfolio-block';
23213
23772
  };
23214
23773
 
23215
- export type OpUpdatePortfolioBlockErrors = {
23774
+ export type UpdatePortfolioBlockErrors = {
23216
23775
  /**
23217
23776
  * Invalid request
23218
23777
  */
@@ -23247,18 +23806,18 @@ export type OpUpdatePortfolioBlockErrors = {
23247
23806
  500: ErrorResponse;
23248
23807
  };
23249
23808
 
23250
- export type OpUpdatePortfolioBlockError = OpUpdatePortfolioBlockErrors[keyof OpUpdatePortfolioBlockErrors];
23809
+ export type UpdatePortfolioBlockError = UpdatePortfolioBlockErrors[keyof UpdatePortfolioBlockErrors];
23251
23810
 
23252
- export type OpUpdatePortfolioBlockResponses = {
23811
+ export type UpdatePortfolioBlockResponses = {
23253
23812
  /**
23254
23813
  * Successful Response
23255
23814
  */
23256
23815
  200: OperationEnvelopePortfolioBlockEnvelope;
23257
23816
  };
23258
23817
 
23259
- export type OpUpdatePortfolioBlockResponse = OpUpdatePortfolioBlockResponses[keyof OpUpdatePortfolioBlockResponses];
23818
+ export type UpdatePortfolioBlockResponse = UpdatePortfolioBlockResponses[keyof UpdatePortfolioBlockResponses];
23260
23819
 
23261
- export type OpDeletePortfolioBlockData = {
23820
+ export type DeletePortfolioBlockData = {
23262
23821
  body: DeletePortfolioBlockOperation;
23263
23822
  headers?: {
23264
23823
  /**
@@ -23276,7 +23835,7 @@ export type OpDeletePortfolioBlockData = {
23276
23835
  url: '/extensions/roboinvestor/{graph_id}/operations/delete-portfolio-block';
23277
23836
  };
23278
23837
 
23279
- export type OpDeletePortfolioBlockErrors = {
23838
+ export type DeletePortfolioBlockErrors = {
23280
23839
  /**
23281
23840
  * Invalid request
23282
23841
  */
@@ -23311,18 +23870,18 @@ export type OpDeletePortfolioBlockErrors = {
23311
23870
  500: ErrorResponse;
23312
23871
  };
23313
23872
 
23314
- export type OpDeletePortfolioBlockError = OpDeletePortfolioBlockErrors[keyof OpDeletePortfolioBlockErrors];
23873
+ export type DeletePortfolioBlockError = DeletePortfolioBlockErrors[keyof DeletePortfolioBlockErrors];
23315
23874
 
23316
- export type OpDeletePortfolioBlockResponses = {
23875
+ export type DeletePortfolioBlockResponses = {
23317
23876
  /**
23318
23877
  * Successful Response
23319
23878
  */
23320
23879
  200: OperationEnvelopeDeletePortfolioBlockResponse;
23321
23880
  };
23322
23881
 
23323
- export type OpDeletePortfolioBlockResponse = OpDeletePortfolioBlockResponses[keyof OpDeletePortfolioBlockResponses];
23882
+ export type DeletePortfolioBlockResponse2 = DeletePortfolioBlockResponses[keyof DeletePortfolioBlockResponses];
23324
23883
 
23325
- export type OpCreateSecurityData = {
23884
+ export type CreateSecurityData = {
23326
23885
  body: CreateSecurityRequest;
23327
23886
  headers?: {
23328
23887
  /**
@@ -23340,7 +23899,7 @@ export type OpCreateSecurityData = {
23340
23899
  url: '/extensions/roboinvestor/{graph_id}/operations/create-security';
23341
23900
  };
23342
23901
 
23343
- export type OpCreateSecurityErrors = {
23902
+ export type CreateSecurityErrors = {
23344
23903
  /**
23345
23904
  * Invalid request
23346
23905
  */
@@ -23375,18 +23934,18 @@ export type OpCreateSecurityErrors = {
23375
23934
  500: ErrorResponse;
23376
23935
  };
23377
23936
 
23378
- export type OpCreateSecurityError = OpCreateSecurityErrors[keyof OpCreateSecurityErrors];
23937
+ export type CreateSecurityError = CreateSecurityErrors[keyof CreateSecurityErrors];
23379
23938
 
23380
- export type OpCreateSecurityResponses = {
23939
+ export type CreateSecurityResponses = {
23381
23940
  /**
23382
23941
  * Successful Response
23383
23942
  */
23384
23943
  200: OperationEnvelopeSecurityResponse;
23385
23944
  };
23386
23945
 
23387
- export type OpCreateSecurityResponse = OpCreateSecurityResponses[keyof OpCreateSecurityResponses];
23946
+ export type CreateSecurityResponse = CreateSecurityResponses[keyof CreateSecurityResponses];
23388
23947
 
23389
- export type OpUpdateSecurityData = {
23948
+ export type UpdateSecurityData = {
23390
23949
  body: UpdateSecurityOperation;
23391
23950
  headers?: {
23392
23951
  /**
@@ -23404,7 +23963,7 @@ export type OpUpdateSecurityData = {
23404
23963
  url: '/extensions/roboinvestor/{graph_id}/operations/update-security';
23405
23964
  };
23406
23965
 
23407
- export type OpUpdateSecurityErrors = {
23966
+ export type UpdateSecurityErrors = {
23408
23967
  /**
23409
23968
  * Invalid request
23410
23969
  */
@@ -23439,18 +23998,18 @@ export type OpUpdateSecurityErrors = {
23439
23998
  500: ErrorResponse;
23440
23999
  };
23441
24000
 
23442
- export type OpUpdateSecurityError = OpUpdateSecurityErrors[keyof OpUpdateSecurityErrors];
24001
+ export type UpdateSecurityError = UpdateSecurityErrors[keyof UpdateSecurityErrors];
23443
24002
 
23444
- export type OpUpdateSecurityResponses = {
24003
+ export type UpdateSecurityResponses = {
23445
24004
  /**
23446
24005
  * Successful Response
23447
24006
  */
23448
24007
  200: OperationEnvelopeSecurityResponse;
23449
24008
  };
23450
24009
 
23451
- export type OpUpdateSecurityResponse = OpUpdateSecurityResponses[keyof OpUpdateSecurityResponses];
24010
+ export type UpdateSecurityResponse = UpdateSecurityResponses[keyof UpdateSecurityResponses];
23452
24011
 
23453
- export type OpDeleteSecurityData = {
24012
+ export type DeleteSecurityData = {
23454
24013
  body: DeleteSecurityOperation;
23455
24014
  headers?: {
23456
24015
  /**
@@ -23468,7 +24027,7 @@ export type OpDeleteSecurityData = {
23468
24027
  url: '/extensions/roboinvestor/{graph_id}/operations/delete-security';
23469
24028
  };
23470
24029
 
23471
- export type OpDeleteSecurityErrors = {
24030
+ export type DeleteSecurityErrors = {
23472
24031
  /**
23473
24032
  * Invalid request
23474
24033
  */
@@ -23503,13 +24062,13 @@ export type OpDeleteSecurityErrors = {
23503
24062
  500: ErrorResponse;
23504
24063
  };
23505
24064
 
23506
- export type OpDeleteSecurityError = OpDeleteSecurityErrors[keyof OpDeleteSecurityErrors];
24065
+ export type DeleteSecurityError = DeleteSecurityErrors[keyof DeleteSecurityErrors];
23507
24066
 
23508
- export type OpDeleteSecurityResponses = {
24067
+ export type DeleteSecurityResponses = {
23509
24068
  /**
23510
24069
  * Successful Response
23511
24070
  */
23512
24071
  200: OperationEnvelopeDeleteResult;
23513
24072
  };
23514
24073
 
23515
- export type OpDeleteSecurityResponse = OpDeleteSecurityResponses[keyof OpDeleteSecurityResponses];
24074
+ export type DeleteSecurityResponse = DeleteSecurityResponses[keyof DeleteSecurityResponses];