@robosystems/client 0.2.28 → 0.2.30

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.
@@ -625,6 +625,16 @@ export type BackupListResponse = {
625
625
  * Graph Id
626
626
  */
627
627
  graph_id: string;
628
+ /**
629
+ * Is Shared Repository
630
+ *
631
+ * Whether this is a shared repository (limits apply)
632
+ */
633
+ is_shared_repository?: boolean;
634
+ /**
635
+ * Download quota for shared repositories
636
+ */
637
+ download_quota?: DownloadQuota | null;
628
638
  };
629
639
  /**
630
640
  * BackupResponse
@@ -906,7 +916,7 @@ export type CheckoutStatusResponse = {
906
916
  /**
907
917
  * Status
908
918
  *
909
- * Checkout status: 'pending_payment', 'provisioning', 'completed', 'failed'
919
+ * Checkout status: 'pending_payment', 'provisioning', 'active', 'failed', 'canceled'
910
920
  */
911
921
  status: string;
912
922
  /**
@@ -935,159 +945,59 @@ export type CheckoutStatusResponse = {
935
945
  error?: string | null;
936
946
  };
937
947
  /**
938
- * ConnectionOptionsResponse
939
- *
940
- * Response with all available connection options.
941
- */
942
- export type ConnectionOptionsResponse = {
943
- /**
944
- * Providers
945
- *
946
- * Available connection providers
947
- */
948
- providers: Array<ConnectionProviderInfo>;
949
- /**
950
- * Total Providers
951
- *
952
- * Total number of providers
953
- */
954
- total_providers: number;
955
- };
956
- /**
957
- * ConnectionProviderInfo
958
- *
959
- * Information about a connection provider.
960
- */
961
- export type ConnectionProviderInfo = {
962
- /**
963
- * Provider
964
- *
965
- * Provider identifier
966
- */
967
- provider: 'sec' | 'quickbooks' | 'plaid';
968
- /**
969
- * Display Name
970
- *
971
- * Human-readable provider name
972
- */
973
- display_name: string;
974
- /**
975
- * Description
976
- *
977
- * Provider description
978
- */
979
- description: string;
980
- /**
981
- * Auth Type
982
- *
983
- * Authentication type
984
- */
985
- auth_type: 'none' | 'oauth' | 'link' | 'api_key';
986
- /**
987
- * Auth Flow
988
- *
989
- * Description of authentication flow
990
- */
991
- auth_flow?: string | null;
992
- /**
993
- * Required Config
994
- *
995
- * Required configuration fields
996
- */
997
- required_config: Array<string>;
998
- /**
999
- * Optional Config
1000
- *
1001
- * Optional configuration fields
1002
- */
1003
- optional_config?: Array<string>;
1004
- /**
1005
- * Features
1006
- *
1007
- * Supported features
1008
- */
1009
- features: Array<string>;
1010
- /**
1011
- * Sync Frequency
1012
- *
1013
- * Typical sync frequency
1014
- */
1015
- sync_frequency?: string | null;
1016
- /**
1017
- * Data Types
1018
- *
1019
- * Types of data available
1020
- */
1021
- data_types: Array<string>;
1022
- /**
1023
- * Setup Instructions
1024
- *
1025
- * Setup instructions
1026
- */
1027
- setup_instructions?: string | null;
1028
- /**
1029
- * Documentation Url
1030
- *
1031
- * Link to documentation
1032
- */
1033
- documentation_url?: string | null;
1034
- };
1035
- /**
1036
- * ConnectionResponse
948
+ * ContentLimits
1037
949
  *
1038
- * Connection response model.
950
+ * Graph content limits (nodes, relationships, rows).
1039
951
  */
1040
- export type ConnectionResponse = {
952
+ export type ContentLimits = {
1041
953
  /**
1042
- * Connection Id
954
+ * Max Nodes
1043
955
  *
1044
- * Unique connection identifier
956
+ * Maximum nodes allowed
1045
957
  */
1046
- connection_id: string;
958
+ max_nodes: number;
1047
959
  /**
1048
- * Provider
960
+ * Current Nodes
1049
961
  *
1050
- * Connection provider type
962
+ * Current node count
1051
963
  */
1052
- provider: 'sec' | 'quickbooks' | 'plaid';
964
+ current_nodes?: number | null;
1053
965
  /**
1054
- * Entity Id
966
+ * Max Relationships
1055
967
  *
1056
- * Entity identifier
968
+ * Maximum relationships allowed
1057
969
  */
1058
- entity_id: string;
970
+ max_relationships: number;
1059
971
  /**
1060
- * Status
972
+ * Current Relationships
1061
973
  *
1062
- * Connection status
974
+ * Current relationship count
1063
975
  */
1064
- status: string;
976
+ current_relationships?: number | null;
1065
977
  /**
1066
- * Created At
978
+ * Max Rows Per Copy
1067
979
  *
1068
- * Creation timestamp
980
+ * Maximum rows per copy/materialization operation
1069
981
  */
1070
- created_at: string;
982
+ max_rows_per_copy: number;
1071
983
  /**
1072
- * Updated At
984
+ * Max Single Table Rows
1073
985
  *
1074
- * Last update timestamp
986
+ * Maximum rows per staging table
1075
987
  */
1076
- updated_at?: string | null;
988
+ max_single_table_rows: number;
1077
989
  /**
1078
- * Last Sync
990
+ * Chunk Size Rows
1079
991
  *
1080
- * Last sync timestamp
992
+ * Rows per materialization chunk
1081
993
  */
1082
- last_sync?: string | null;
994
+ chunk_size_rows: number;
1083
995
  /**
1084
- * Metadata
996
+ * Approaching Limits
1085
997
  *
1086
- * Provider-specific metadata
998
+ * List of limits being approached (>80%)
1087
999
  */
1088
- metadata: {
1089
- [key: string]: unknown;
1090
- };
1000
+ approaching_limits?: Array<string>;
1091
1001
  };
1092
1002
  /**
1093
1003
  * CopyOperationLimits
@@ -1201,28 +1111,6 @@ export type CreateCheckoutRequest = {
1201
1111
  [key: string]: unknown;
1202
1112
  };
1203
1113
  };
1204
- /**
1205
- * CreateConnectionRequest
1206
- *
1207
- * Request to create a new connection.
1208
- */
1209
- export type CreateConnectionRequest = {
1210
- /**
1211
- * Provider
1212
- *
1213
- * Connection provider type
1214
- */
1215
- provider: 'sec' | 'quickbooks' | 'plaid';
1216
- /**
1217
- * Entity Id
1218
- *
1219
- * Entity identifier
1220
- */
1221
- entity_id: string;
1222
- sec_config?: SecConnectionConfig | null;
1223
- quickbooks_config?: QuickBooksConnectionConfig | null;
1224
- plaid_config?: PlaidConnectionConfig | null;
1225
- };
1226
1114
  /**
1227
1115
  * CreateGraphRequest
1228
1116
  *
@@ -1240,7 +1128,7 @@ export type CreateGraphRequest = {
1240
1128
  /**
1241
1129
  * Instance Tier
1242
1130
  *
1243
- * Instance tier: ladybug-standard, ladybug-large, ladybug-xlarge, neo4j-community-large, neo4j-enterprise-xlarge
1131
+ * Instance tier: ladybug-standard, ladybug-large, ladybug-xlarge
1244
1132
  */
1245
1133
  instance_tier?: string;
1246
1134
  /**
@@ -1338,37 +1226,6 @@ export type CreateSubgraphRequest = {
1338
1226
  */
1339
1227
  fork_parent?: boolean;
1340
1228
  };
1341
- /**
1342
- * CreateViewRequest
1343
- */
1344
- export type CreateViewRequest = {
1345
- /**
1346
- * Name
1347
- *
1348
- * Optional name for the view
1349
- */
1350
- name?: string | null;
1351
- /**
1352
- * Data source configuration
1353
- */
1354
- source: ViewSource;
1355
- /**
1356
- * View configuration
1357
- */
1358
- view_config?: ViewConfig;
1359
- /**
1360
- * Presentation Formats
1361
- *
1362
- * Presentation formats to generate
1363
- */
1364
- presentation_formats?: Array<string>;
1365
- /**
1366
- * Mapping Structure Id
1367
- *
1368
- * Optional mapping structure ID to aggregate Chart of Accounts elements into reporting taxonomy elements
1369
- */
1370
- mapping_structure_id?: string | null;
1371
- };
1372
1229
  /**
1373
1230
  * CreditLimits
1374
1231
  *
@@ -1387,18 +1244,6 @@ export type CreditLimits = {
1387
1244
  * Current credit balance
1388
1245
  */
1389
1246
  current_balance: number;
1390
- /**
1391
- * Storage Billing Enabled
1392
- *
1393
- * Whether storage billing is enabled
1394
- */
1395
- storage_billing_enabled: boolean;
1396
- /**
1397
- * Storage Rate Per Gb Per Day
1398
- *
1399
- * Storage billing rate per GB per day
1400
- */
1401
- storage_rate_per_gb_per_day: number;
1402
1247
  };
1403
1248
  /**
1404
1249
  * CreditSummary
@@ -1880,6 +1725,37 @@ export type DetailedTransactionsResponse = {
1880
1725
  [key: string]: string;
1881
1726
  };
1882
1727
  };
1728
+ /**
1729
+ * DownloadQuota
1730
+ *
1731
+ * Download quota information for shared repository backups.
1732
+ */
1733
+ export type DownloadQuota = {
1734
+ /**
1735
+ * Limit Per Day
1736
+ *
1737
+ * Maximum downloads allowed per day
1738
+ */
1739
+ limit_per_day: number;
1740
+ /**
1741
+ * Used Today
1742
+ *
1743
+ * Number of downloads used today
1744
+ */
1745
+ used_today: number;
1746
+ /**
1747
+ * Remaining
1748
+ *
1749
+ * Downloads remaining today
1750
+ */
1751
+ remaining: number;
1752
+ /**
1753
+ * Resets At
1754
+ *
1755
+ * When the daily limit resets (UTC)
1756
+ */
1757
+ resets_at: string;
1758
+ };
1883
1759
  /**
1884
1760
  * EmailVerificationRequest
1885
1761
  *
@@ -1993,66 +1869,6 @@ export type ErrorResponse = {
1993
1869
  */
1994
1870
  timestamp?: string | null;
1995
1871
  };
1996
- /**
1997
- * ExchangeTokenRequest
1998
- *
1999
- * Exchange temporary token for permanent credentials.
2000
- */
2001
- export type ExchangeTokenRequest = {
2002
- /**
2003
- * Connection Id
2004
- *
2005
- * Connection ID to update
2006
- */
2007
- connection_id: string;
2008
- /**
2009
- * Public Token
2010
- *
2011
- * Temporary token from embedded auth
2012
- */
2013
- public_token: string;
2014
- /**
2015
- * Metadata
2016
- *
2017
- * Provider-specific metadata
2018
- */
2019
- metadata?: {
2020
- [key: string]: unknown;
2021
- } | null;
2022
- };
2023
- /**
2024
- * FactDetail
2025
- */
2026
- export type FactDetail = {
2027
- /**
2028
- * Fact Id
2029
- */
2030
- fact_id: string;
2031
- /**
2032
- * Element Uri
2033
- */
2034
- element_uri: string;
2035
- /**
2036
- * Element Name
2037
- */
2038
- element_name: string;
2039
- /**
2040
- * Numeric Value
2041
- */
2042
- numeric_value: number;
2043
- /**
2044
- * Unit
2045
- */
2046
- unit: string;
2047
- /**
2048
- * Period Start
2049
- */
2050
- period_start: string;
2051
- /**
2052
- * Period End
2053
- */
2054
- period_end: string;
2055
- };
2056
1872
  /**
2057
1873
  * FileInfo
2058
1874
  */
@@ -2443,6 +2259,10 @@ export type GraphLimitsResponse = {
2443
2259
  * AI credit limits (if applicable)
2444
2260
  */
2445
2261
  credits?: CreditLimits | null;
2262
+ /**
2263
+ * Graph content limits (if applicable)
2264
+ */
2265
+ content?: ContentLimits | null;
2446
2266
  };
2447
2267
  /**
2448
2268
  * GraphMetadata
@@ -2580,6 +2400,12 @@ export type GraphSubscriptionResponse = {
2580
2400
  * Current plan name
2581
2401
  */
2582
2402
  plan_name: string;
2403
+ /**
2404
+ * Plan Display Name
2405
+ *
2406
+ * Human-readable plan name for UI display
2407
+ */
2408
+ plan_display_name: string;
2583
2409
  /**
2584
2410
  * Billing Interval
2585
2411
  *
@@ -2674,18 +2500,6 @@ export type GraphSubscriptionTier = {
2674
2500
  * Monthly AI credits per graph
2675
2501
  */
2676
2502
  monthly_credits_per_graph: number;
2677
- /**
2678
- * Storage Included Gb
2679
- *
2680
- * Storage included in GB
2681
- */
2682
- storage_included_gb: number;
2683
- /**
2684
- * Storage Overage Per Gb
2685
- *
2686
- * Overage cost per GB per month
2687
- */
2688
- storage_overage_per_gb: number;
2689
2503
  /**
2690
2504
  * Infrastructure
2691
2505
  *
@@ -2769,10 +2583,6 @@ export type GraphSubscriptions = {
2769
2583
  * Available infrastructure tiers
2770
2584
  */
2771
2585
  tiers: Array<GraphSubscriptionTier>;
2772
- /**
2773
- * Storage information
2774
- */
2775
- storage: StorageInfo;
2776
2586
  /**
2777
2587
  * Notes
2778
2588
  *
@@ -2890,12 +2700,6 @@ export type GraphTierInfo = {
2890
2700
  * Maximum subgraphs allowed
2891
2701
  */
2892
2702
  max_subgraphs: number | null;
2893
- /**
2894
- * Storage Limit Gb
2895
- *
2896
- * Storage limit in GB
2897
- */
2898
- storage_limit_gb: number;
2899
2703
  /**
2900
2704
  * Monthly Credits
2901
2705
  *
@@ -2960,12 +2764,6 @@ export type GraphTierInstance = {
2960
2764
  * Resource limits for a tier.
2961
2765
  */
2962
2766
  export type GraphTierLimits = {
2963
- /**
2964
- * Storage Gb
2965
- *
2966
- * Storage limit in GB
2967
- */
2968
- storage_gb: number;
2969
2767
  /**
2970
2768
  * Monthly Credits
2971
2769
  *
@@ -3291,45 +3089,6 @@ export type InvoicesResponse = {
3291
3089
  */
3292
3090
  has_more: boolean;
3293
3091
  };
3294
- /**
3295
- * LinkTokenRequest
3296
- *
3297
- * Request to create a link token for embedded authentication.
3298
- */
3299
- export type LinkTokenRequest = {
3300
- /**
3301
- * Entity Id
3302
- *
3303
- * Entity identifier
3304
- */
3305
- entity_id: string;
3306
- /**
3307
- * User Id
3308
- *
3309
- * User identifier
3310
- */
3311
- user_id: string;
3312
- /**
3313
- * Provider
3314
- *
3315
- * Provider type (defaults based on connection)
3316
- */
3317
- provider?: 'sec' | 'quickbooks' | 'plaid' | null;
3318
- /**
3319
- * Products
3320
- *
3321
- * Data products to request (provider-specific)
3322
- */
3323
- products?: Array<string> | null;
3324
- /**
3325
- * Options
3326
- *
3327
- * Provider-specific options
3328
- */
3329
- options?: {
3330
- [key: string]: unknown;
3331
- } | null;
3332
- };
3333
3092
  /**
3334
3093
  * ListSubgraphsResponse
3335
3094
  *
@@ -3497,6 +3256,12 @@ export type MaterializeRequest = {
3497
3256
  * Continue ingestion on row errors
3498
3257
  */
3499
3258
  ignore_errors?: boolean;
3259
+ /**
3260
+ * Dry Run
3261
+ *
3262
+ * Validate limits without executing materialization. Returns usage, limits, and warnings.
3263
+ */
3264
+ dry_run?: boolean;
3500
3265
  };
3501
3266
  /**
3502
3267
  * MaterializeResponse
@@ -3528,6 +3293,14 @@ export type MaterializeResponse = {
3528
3293
  * Human-readable status message
3529
3294
  */
3530
3295
  message: string;
3296
+ /**
3297
+ * Limit Check
3298
+ *
3299
+ * Limit check results (only present for dry_run requests)
3300
+ */
3301
+ limit_check?: {
3302
+ [key: string]: unknown;
3303
+ } | null;
3531
3304
  };
3532
3305
  /**
3533
3306
  * MaterializeStatusResponse
@@ -3583,153 +3356,64 @@ export type MaterializeStatusResponse = {
3583
3356
  message: string;
3584
3357
  };
3585
3358
  /**
3586
- * OAuthCallbackRequest
3359
+ * OfferingRepositoryPlan
3587
3360
  *
3588
- * OAuth callback parameters.
3361
+ * Information about a repository plan.
3589
3362
  */
3590
- export type OAuthCallbackRequest = {
3591
- /**
3592
- * Code
3593
- *
3594
- * Authorization code from OAuth provider
3595
- */
3596
- code: string;
3363
+ export type OfferingRepositoryPlan = {
3597
3364
  /**
3598
- * State
3365
+ * Plan
3599
3366
  *
3600
- * OAuth state for verification
3367
+ * Plan identifier
3601
3368
  */
3602
- state: string;
3369
+ plan: string;
3603
3370
  /**
3604
- * Realm Id
3371
+ * Name
3605
3372
  *
3606
- * QuickBooks-specific realm ID
3373
+ * Plan name
3607
3374
  */
3608
- realm_id?: string | null;
3375
+ name: string;
3609
3376
  /**
3610
- * Error
3377
+ * Monthly Price
3611
3378
  *
3612
- * OAuth error if authorization failed
3379
+ * Monthly price in USD
3613
3380
  */
3614
- error?: string | null;
3381
+ monthly_price: number;
3615
3382
  /**
3616
- * Error Description
3383
+ * Monthly Credits
3617
3384
  *
3618
- * OAuth error details
3385
+ * Monthly credit allocation
3619
3386
  */
3620
- error_description?: string | null;
3621
- };
3622
- /**
3623
- * OAuthInitRequest
3624
- *
3625
- * Request to initiate OAuth flow.
3626
- */
3627
- export type OAuthInitRequest = {
3387
+ monthly_credits: number;
3628
3388
  /**
3629
- * Connection Id
3389
+ * Access Level
3630
3390
  *
3631
- * Connection ID to link OAuth to
3391
+ * Access level
3632
3392
  */
3633
- connection_id: string;
3393
+ access_level: string;
3634
3394
  /**
3635
- * Redirect Uri
3395
+ * Features
3636
3396
  *
3637
- * Override default redirect URI
3397
+ * List of features
3638
3398
  */
3639
- redirect_uri?: string | null;
3399
+ features: Array<string>;
3640
3400
  /**
3641
- * Additional Params
3401
+ * Rate Limits
3642
3402
  *
3643
- * Provider-specific parameters
3403
+ * Rate limits for this plan
3644
3404
  */
3645
- additional_params?: {
3646
- [key: string]: string;
3405
+ rate_limits?: {
3406
+ [key: string]: number | null;
3647
3407
  } | null;
3648
3408
  };
3649
3409
  /**
3650
- * OAuthInitResponse
3410
+ * OperationCosts
3651
3411
  *
3652
- * Response with OAuth authorization URL.
3412
+ * Operation cost information.
3653
3413
  */
3654
- export type OAuthInitResponse = {
3414
+ export type OperationCosts = {
3655
3415
  /**
3656
- * Auth Url
3657
- *
3658
- * URL to redirect user for authorization
3659
- */
3660
- auth_url: string;
3661
- /**
3662
- * State
3663
- *
3664
- * OAuth state for security
3665
- */
3666
- state: string;
3667
- /**
3668
- * Expires At
3669
- *
3670
- * When this OAuth request expires
3671
- */
3672
- expires_at: string;
3673
- };
3674
- /**
3675
- * OfferingRepositoryPlan
3676
- *
3677
- * Information about a repository plan.
3678
- */
3679
- export type OfferingRepositoryPlan = {
3680
- /**
3681
- * Plan
3682
- *
3683
- * Plan identifier
3684
- */
3685
- plan: string;
3686
- /**
3687
- * Name
3688
- *
3689
- * Plan name
3690
- */
3691
- name: string;
3692
- /**
3693
- * Monthly Price
3694
- *
3695
- * Monthly price in USD
3696
- */
3697
- monthly_price: number;
3698
- /**
3699
- * Monthly Credits
3700
- *
3701
- * Monthly credit allocation
3702
- */
3703
- monthly_credits: number;
3704
- /**
3705
- * Access Level
3706
- *
3707
- * Access level
3708
- */
3709
- access_level: string;
3710
- /**
3711
- * Features
3712
- *
3713
- * List of features
3714
- */
3715
- features: Array<string>;
3716
- /**
3717
- * Rate Limits
3718
- *
3719
- * Rate limits for this plan
3720
- */
3721
- rate_limits?: {
3722
- [key: string]: number | null;
3723
- } | null;
3724
- };
3725
- /**
3726
- * OperationCosts
3727
- *
3728
- * Operation cost information.
3729
- */
3730
- export type OperationCosts = {
3731
- /**
3732
- * Description
3416
+ * Description
3733
3417
  *
3734
3418
  * Description of operation costs
3735
3419
  */
@@ -4194,47 +3878,6 @@ export type PerformanceInsights = {
4194
3878
  */
4195
3879
  performance_score: number;
4196
3880
  };
4197
- /**
4198
- * PlaidConnectionConfig
4199
- *
4200
- * Plaid-specific connection configuration.
4201
- */
4202
- export type PlaidConnectionConfig = {
4203
- /**
4204
- * Public Token
4205
- *
4206
- * Plaid public token for exchange
4207
- */
4208
- public_token?: string | null;
4209
- /**
4210
- * Access Token
4211
- *
4212
- * Plaid access token (set after exchange)
4213
- */
4214
- access_token?: string | null;
4215
- /**
4216
- * Item Id
4217
- *
4218
- * Plaid item ID
4219
- */
4220
- item_id?: string | null;
4221
- /**
4222
- * Institution
4223
- *
4224
- * Institution information
4225
- */
4226
- institution?: {
4227
- [key: string]: unknown;
4228
- } | null;
4229
- /**
4230
- * Accounts
4231
- *
4232
- * Connected accounts
4233
- */
4234
- accounts?: Array<{
4235
- [key: string]: unknown;
4236
- }> | null;
4237
- };
4238
3881
  /**
4239
3882
  * PortalSessionResponse
4240
3883
  *
@@ -4279,25 +3922,6 @@ export type QueryLimits = {
4279
3922
  */
4280
3923
  concurrent_queries: number;
4281
3924
  };
4282
- /**
4283
- * QuickBooksConnectionConfig
4284
- *
4285
- * QuickBooks-specific connection configuration.
4286
- */
4287
- export type QuickBooksConnectionConfig = {
4288
- /**
4289
- * Realm Id
4290
- *
4291
- * QuickBooks Realm ID
4292
- */
4293
- realm_id?: string | null;
4294
- /**
4295
- * Refresh Token
4296
- *
4297
- * OAuth refresh token
4298
- */
4299
- refresh_token?: string | null;
4300
- };
4301
3925
  /**
4302
3926
  * RateLimits
4303
3927
  *
@@ -4475,25 +4099,6 @@ export type ResetPasswordValidateResponse = {
4475
4099
  * Response modes for execution.
4476
4100
  */
4477
4101
  export type ResponseMode = 'auto' | 'sync' | 'async' | 'stream';
4478
- /**
4479
- * SECConnectionConfig
4480
- *
4481
- * SEC-specific connection configuration.
4482
- */
4483
- export type SecConnectionConfig = {
4484
- /**
4485
- * Cik
4486
- *
4487
- * 10-digit CIK number
4488
- */
4489
- cik: string;
4490
- /**
4491
- * Entity Name
4492
- *
4493
- * Entity name from SEC
4494
- */
4495
- entity_name?: string | null;
4496
- };
4497
4102
  /**
4498
4103
  * SSOCompleteRequest
4499
4104
  *
@@ -4582,114 +4187,6 @@ export type SsoTokenResponse = {
4582
4187
  */
4583
4188
  apps: Array<string>;
4584
4189
  };
4585
- /**
4586
- * SaveViewRequest
4587
- */
4588
- export type SaveViewRequest = {
4589
- /**
4590
- * Report Id
4591
- *
4592
- * Existing report ID to update (if provided, deletes existing facts/structures and creates new ones)
4593
- */
4594
- report_id?: string | null;
4595
- /**
4596
- * Report Type
4597
- *
4598
- * Type of report (e.g., 'Annual Report', 'Quarterly Report', '10-K')
4599
- */
4600
- report_type: string;
4601
- /**
4602
- * Period Start
4603
- *
4604
- * Period start date (YYYY-MM-DD)
4605
- */
4606
- period_start: string;
4607
- /**
4608
- * Period End
4609
- *
4610
- * Period end date (YYYY-MM-DD)
4611
- */
4612
- period_end: string;
4613
- /**
4614
- * Entity Id
4615
- *
4616
- * Entity identifier (defaults to primary entity)
4617
- */
4618
- entity_id?: string | null;
4619
- /**
4620
- * Include Presentation
4621
- *
4622
- * Create presentation structures
4623
- */
4624
- include_presentation?: boolean;
4625
- /**
4626
- * Include Calculation
4627
- *
4628
- * Create calculation structures
4629
- */
4630
- include_calculation?: boolean;
4631
- };
4632
- /**
4633
- * SaveViewResponse
4634
- */
4635
- export type SaveViewResponse = {
4636
- /**
4637
- * Report Id
4638
- *
4639
- * Unique report identifier (used as parquet export prefix)
4640
- */
4641
- report_id: string;
4642
- /**
4643
- * Report Type
4644
- */
4645
- report_type: string;
4646
- /**
4647
- * Entity Id
4648
- */
4649
- entity_id: string;
4650
- /**
4651
- * Entity Name
4652
- */
4653
- entity_name: string;
4654
- /**
4655
- * Period Start
4656
- */
4657
- period_start: string;
4658
- /**
4659
- * Period End
4660
- */
4661
- period_end: string;
4662
- /**
4663
- * Fact Count
4664
- */
4665
- fact_count: number;
4666
- /**
4667
- * Presentation Count
4668
- */
4669
- presentation_count: number;
4670
- /**
4671
- * Calculation Count
4672
- */
4673
- calculation_count: number;
4674
- /**
4675
- * Facts
4676
- */
4677
- facts: Array<FactDetail>;
4678
- /**
4679
- * Structures
4680
- */
4681
- structures: Array<StructureDetail>;
4682
- /**
4683
- * Created At
4684
- */
4685
- created_at: string;
4686
- /**
4687
- * Parquet Export Prefix
4688
- *
4689
- * Prefix for parquet file exports
4690
- */
4691
- parquet_export_prefix: string;
4692
- };
4693
4190
  /**
4694
4191
  * SchemaExportResponse
4695
4192
  *
@@ -4924,29 +4421,6 @@ export type ServiceOfferingsResponse = {
4924
4421
  */
4925
4422
  summary: ServiceOfferingSummary;
4926
4423
  };
4927
- /**
4928
- * StorageInfo
4929
- *
4930
- * Storage pricing information.
4931
- */
4932
- export type StorageInfo = {
4933
- /**
4934
- * Included Per Tier
4935
- *
4936
- * Storage included per tier in GB
4937
- */
4938
- included_per_tier: {
4939
- [key: string]: number;
4940
- };
4941
- /**
4942
- * Overage Pricing
4943
- *
4944
- * Overage pricing per GB per tier
4945
- */
4946
- overage_pricing: {
4947
- [key: string]: number;
4948
- };
4949
- };
4950
4424
  /**
4951
4425
  * StorageLimitResponse
4952
4426
  *
@@ -5058,27 +4532,6 @@ export type StorageSummary = {
5058
4532
  */
5059
4533
  measurement_count: number;
5060
4534
  };
5061
- /**
5062
- * StructureDetail
5063
- */
5064
- export type StructureDetail = {
5065
- /**
5066
- * Structure Id
5067
- */
5068
- structure_id: string;
5069
- /**
5070
- * Structure Type
5071
- */
5072
- structure_type: string;
5073
- /**
5074
- * Name
5075
- */
5076
- name: string;
5077
- /**
5078
- * Element Count
5079
- */
5080
- element_count: number;
5081
- };
5082
4535
  /**
5083
4536
  * SubgraphQuotaResponse
5084
4537
  *
@@ -5311,27 +4764,6 @@ export type SuccessResponse = {
5311
4764
  [key: string]: unknown;
5312
4765
  } | null;
5313
4766
  };
5314
- /**
5315
- * SyncConnectionRequest
5316
- *
5317
- * Request to sync a connection.
5318
- */
5319
- export type SyncConnectionRequest = {
5320
- /**
5321
- * Full Sync
5322
- *
5323
- * Perform full sync vs incremental
5324
- */
5325
- full_sync?: boolean;
5326
- /**
5327
- * Sync Options
5328
- *
5329
- * Provider-specific sync options
5330
- */
5331
- sync_options?: {
5332
- [key: string]: unknown;
5333
- } | null;
5334
- };
5335
4767
  /**
5336
4768
  * TableInfo
5337
4769
  */
@@ -5685,164 +5117,45 @@ export type ValidationError = {
5685
5117
  * Error Type
5686
5118
  */
5687
5119
  type: string;
5688
- };
5689
- /**
5690
- * ViewAxisConfig
5691
- */
5692
- export type ViewAxisConfig = {
5693
5120
  /**
5694
- * Type
5695
- *
5696
- * Axis type: 'element', 'period', 'dimension', 'entity'
5121
+ * Input
5697
5122
  */
5698
- type: string;
5123
+ input?: unknown;
5699
5124
  /**
5700
- * Dimension Axis
5701
- *
5702
- * Dimension axis name for dimension-type axes
5125
+ * Context
5703
5126
  */
5704
- dimension_axis?: string | null;
5127
+ ctx?: {
5128
+ [key: string]: unknown;
5129
+ };
5130
+ };
5131
+ export type RegisterUserData = {
5132
+ body: RegisterRequest;
5133
+ path?: never;
5134
+ query?: never;
5135
+ url: '/v1/auth/register';
5136
+ };
5137
+ export type RegisterUserErrors = {
5705
5138
  /**
5706
- * Include Null Dimension
5707
- *
5708
- * Include facts where this dimension is NULL (default: false)
5139
+ * Invalid request data or missing CAPTCHA token (production only)
5709
5140
  */
5710
- include_null_dimension?: boolean;
5141
+ 400: ErrorResponse;
5711
5142
  /**
5712
- * Selected Members
5713
- *
5714
- * Specific members to include (e.g., ['2024-12-31', '2023-12-31'])
5143
+ * Email already registered
5715
5144
  */
5716
- selected_members?: Array<string> | null;
5145
+ 409: ErrorResponse;
5717
5146
  /**
5718
- * Member Order
5719
- *
5720
- * Explicit ordering of members (overrides default sort)
5147
+ * Validation Error
5721
5148
  */
5722
- member_order?: Array<string> | null;
5149
+ 422: HttpValidationError;
5723
5150
  /**
5724
- * Member Labels
5725
- *
5726
- * Custom labels for members (e.g., {'2024-12-31': 'Current Year'})
5151
+ * Registration temporarily disabled
5727
5152
  */
5728
- member_labels?: {
5729
- [key: string]: string;
5730
- } | null;
5153
+ 503: ErrorResponse;
5154
+ };
5155
+ export type RegisterUserError = RegisterUserErrors[keyof RegisterUserErrors];
5156
+ export type RegisterUserResponses = {
5731
5157
  /**
5732
- * Element Order
5733
- *
5734
- * Element ordering for hierarchy display (e.g., ['us-gaap:Assets', 'us-gaap:Cash', ...])
5735
- */
5736
- element_order?: Array<string> | null;
5737
- /**
5738
- * Element Labels
5739
- *
5740
- * Custom labels for elements (e.g., {'us-gaap:Cash': 'Cash and Cash Equivalents'})
5741
- */
5742
- element_labels?: {
5743
- [key: string]: string;
5744
- } | null;
5745
- };
5746
- /**
5747
- * ViewConfig
5748
- */
5749
- export type ViewConfig = {
5750
- /**
5751
- * Rows
5752
- *
5753
- * Row axis configuration
5754
- */
5755
- rows?: Array<ViewAxisConfig>;
5756
- /**
5757
- * Columns
5758
- *
5759
- * Column axis configuration
5760
- */
5761
- columns?: Array<ViewAxisConfig>;
5762
- /**
5763
- * Values
5764
- *
5765
- * Field to use for values (default: numeric_value)
5766
- */
5767
- values?: string;
5768
- /**
5769
- * Aggregation Function
5770
- *
5771
- * Aggregation function: sum, average, count
5772
- */
5773
- aggregation_function?: string;
5774
- /**
5775
- * Fill Value
5776
- *
5777
- * Value to use for missing data
5778
- */
5779
- fill_value?: number;
5780
- };
5781
- /**
5782
- * ViewSource
5783
- */
5784
- export type ViewSource = {
5785
- /**
5786
- * Type of data source
5787
- */
5788
- type: ViewSourceType;
5789
- /**
5790
- * Period Start
5791
- *
5792
- * Start date for transaction aggregation (YYYY-MM-DD)
5793
- */
5794
- period_start?: string | null;
5795
- /**
5796
- * Period End
5797
- *
5798
- * End date for transaction aggregation (YYYY-MM-DD)
5799
- */
5800
- period_end?: string | null;
5801
- /**
5802
- * Fact Set Id
5803
- *
5804
- * FactSet ID for existing facts mode
5805
- */
5806
- fact_set_id?: string | null;
5807
- /**
5808
- * Entity Id
5809
- *
5810
- * Filter by entity (optional)
5811
- */
5812
- entity_id?: string | null;
5813
- };
5814
- /**
5815
- * ViewSourceType
5816
- */
5817
- export type ViewSourceType = 'transactions' | 'fact_set';
5818
- export type RegisterUserData = {
5819
- body: RegisterRequest;
5820
- path?: never;
5821
- query?: never;
5822
- url: '/v1/auth/register';
5823
- };
5824
- export type RegisterUserErrors = {
5825
- /**
5826
- * Invalid request data or missing CAPTCHA token (production only)
5827
- */
5828
- 400: ErrorResponse;
5829
- /**
5830
- * Email already registered
5831
- */
5832
- 409: ErrorResponse;
5833
- /**
5834
- * Validation Error
5835
- */
5836
- 422: HttpValidationError;
5837
- /**
5838
- * Registration temporarily disabled
5839
- */
5840
- 503: ErrorResponse;
5841
- };
5842
- export type RegisterUserError = RegisterUserErrors[keyof RegisterUserErrors];
5843
- export type RegisterUserResponses = {
5844
- /**
5845
- * Successful Response
5158
+ * Successful Response
5846
5159
  */
5847
5160
  201: AuthResponse;
5848
5161
  };
@@ -6400,640 +5713,242 @@ export type GetOrgData = {
6400
5713
  /**
6401
5714
  * Org Id
6402
5715
  */
6403
- org_id: string;
6404
- };
6405
- query?: never;
6406
- url: '/v1/orgs/{org_id}';
6407
- };
6408
- export type GetOrgErrors = {
6409
- /**
6410
- * Validation Error
6411
- */
6412
- 422: HttpValidationError;
6413
- };
6414
- export type GetOrgError = GetOrgErrors[keyof GetOrgErrors];
6415
- export type GetOrgResponses = {
6416
- /**
6417
- * Successful Response
6418
- */
6419
- 200: OrgDetailResponse;
6420
- };
6421
- export type GetOrgResponse = GetOrgResponses[keyof GetOrgResponses];
6422
- export type UpdateOrgData = {
6423
- body: UpdateOrgRequest;
6424
- path: {
6425
- /**
6426
- * Org Id
6427
- */
6428
- org_id: string;
6429
- };
6430
- query?: never;
6431
- url: '/v1/orgs/{org_id}';
6432
- };
6433
- export type UpdateOrgErrors = {
6434
- /**
6435
- * Validation Error
6436
- */
6437
- 422: HttpValidationError;
6438
- };
6439
- export type UpdateOrgError = UpdateOrgErrors[keyof UpdateOrgErrors];
6440
- export type UpdateOrgResponses = {
6441
- /**
6442
- * Successful Response
6443
- */
6444
- 200: OrgDetailResponse;
6445
- };
6446
- export type UpdateOrgResponse = UpdateOrgResponses[keyof UpdateOrgResponses];
6447
- export type ListOrgGraphsData = {
6448
- body?: never;
6449
- path: {
6450
- /**
6451
- * Org Id
6452
- */
6453
- org_id: string;
6454
- };
6455
- query?: never;
6456
- url: '/v1/orgs/{org_id}/graphs';
6457
- };
6458
- export type ListOrgGraphsErrors = {
6459
- /**
6460
- * Validation Error
6461
- */
6462
- 422: HttpValidationError;
6463
- };
6464
- export type ListOrgGraphsError = ListOrgGraphsErrors[keyof ListOrgGraphsErrors];
6465
- export type ListOrgGraphsResponses = {
6466
- /**
6467
- * Response Listorggraphs
6468
- *
6469
- * Successful Response
6470
- */
6471
- 200: Array<{
6472
- [key: string]: unknown;
6473
- }>;
6474
- };
6475
- export type ListOrgGraphsResponse = ListOrgGraphsResponses[keyof ListOrgGraphsResponses];
6476
- export type ListOrgMembersData = {
6477
- body?: never;
6478
- path: {
6479
- /**
6480
- * Org Id
6481
- */
6482
- org_id: string;
6483
- };
6484
- query?: never;
6485
- url: '/v1/orgs/{org_id}/members';
6486
- };
6487
- export type ListOrgMembersErrors = {
6488
- /**
6489
- * Validation Error
6490
- */
6491
- 422: HttpValidationError;
6492
- };
6493
- export type ListOrgMembersError = ListOrgMembersErrors[keyof ListOrgMembersErrors];
6494
- export type ListOrgMembersResponses = {
6495
- /**
6496
- * Successful Response
6497
- */
6498
- 200: OrgMemberListResponse;
6499
- };
6500
- export type ListOrgMembersResponse = ListOrgMembersResponses[keyof ListOrgMembersResponses];
6501
- export type InviteOrgMemberData = {
6502
- body: InviteMemberRequest;
6503
- path: {
6504
- /**
6505
- * Org Id
6506
- */
6507
- org_id: string;
6508
- };
6509
- query?: never;
6510
- url: '/v1/orgs/{org_id}/members';
6511
- };
6512
- export type InviteOrgMemberErrors = {
6513
- /**
6514
- * Validation Error
6515
- */
6516
- 422: HttpValidationError;
6517
- };
6518
- export type InviteOrgMemberError = InviteOrgMemberErrors[keyof InviteOrgMemberErrors];
6519
- export type InviteOrgMemberResponses = {
6520
- /**
6521
- * Successful Response
6522
- */
6523
- 201: OrgMemberResponse;
6524
- };
6525
- export type InviteOrgMemberResponse = InviteOrgMemberResponses[keyof InviteOrgMemberResponses];
6526
- export type RemoveOrgMemberData = {
6527
- body?: never;
6528
- path: {
6529
- /**
6530
- * Org Id
6531
- */
6532
- org_id: string;
6533
- /**
6534
- * User Id
6535
- */
6536
- user_id: string;
6537
- };
6538
- query?: never;
6539
- url: '/v1/orgs/{org_id}/members/{user_id}';
6540
- };
6541
- export type RemoveOrgMemberErrors = {
6542
- /**
6543
- * Validation Error
6544
- */
6545
- 422: HttpValidationError;
6546
- };
6547
- export type RemoveOrgMemberError = RemoveOrgMemberErrors[keyof RemoveOrgMemberErrors];
6548
- export type RemoveOrgMemberResponses = {
6549
- /**
6550
- * Successful Response
6551
- */
6552
- 204: void;
6553
- };
6554
- export type RemoveOrgMemberResponse = RemoveOrgMemberResponses[keyof RemoveOrgMemberResponses];
6555
- export type UpdateOrgMemberRoleData = {
6556
- body: UpdateMemberRoleRequest;
6557
- path: {
6558
- /**
6559
- * Org Id
6560
- */
6561
- org_id: string;
6562
- /**
6563
- * User Id
6564
- */
6565
- user_id: string;
6566
- };
6567
- query?: never;
6568
- url: '/v1/orgs/{org_id}/members/{user_id}';
6569
- };
6570
- export type UpdateOrgMemberRoleErrors = {
6571
- /**
6572
- * Validation Error
6573
- */
6574
- 422: HttpValidationError;
6575
- };
6576
- export type UpdateOrgMemberRoleError = UpdateOrgMemberRoleErrors[keyof UpdateOrgMemberRoleErrors];
6577
- export type UpdateOrgMemberRoleResponses = {
6578
- /**
6579
- * Successful Response
6580
- */
6581
- 200: OrgMemberResponse;
6582
- };
6583
- export type UpdateOrgMemberRoleResponse = UpdateOrgMemberRoleResponses[keyof UpdateOrgMemberRoleResponses];
6584
- export type GetOrgLimitsData = {
6585
- body?: never;
6586
- path: {
6587
- /**
6588
- * Org Id
6589
- */
6590
- org_id: string;
6591
- };
6592
- query?: never;
6593
- url: '/v1/orgs/{org_id}/limits';
6594
- };
6595
- export type GetOrgLimitsErrors = {
6596
- /**
6597
- * Validation Error
6598
- */
6599
- 422: HttpValidationError;
6600
- };
6601
- export type GetOrgLimitsError = GetOrgLimitsErrors[keyof GetOrgLimitsErrors];
6602
- export type GetOrgLimitsResponses = {
6603
- /**
6604
- * Successful Response
6605
- */
6606
- 200: OrgLimitsResponse;
6607
- };
6608
- export type GetOrgLimitsResponse = GetOrgLimitsResponses[keyof GetOrgLimitsResponses];
6609
- export type GetOrgUsageData = {
6610
- body?: never;
6611
- path: {
6612
- /**
6613
- * Org Id
6614
- */
6615
- org_id: string;
6616
- };
6617
- query?: {
6618
- /**
6619
- * Days
6620
- */
6621
- days?: number;
6622
- };
6623
- url: '/v1/orgs/{org_id}/usage';
6624
- };
6625
- export type GetOrgUsageErrors = {
6626
- /**
6627
- * Validation Error
6628
- */
6629
- 422: HttpValidationError;
6630
- };
6631
- export type GetOrgUsageError = GetOrgUsageErrors[keyof GetOrgUsageErrors];
6632
- export type GetOrgUsageResponses = {
6633
- /**
6634
- * Successful Response
6635
- */
6636
- 200: OrgUsageResponse;
6637
- };
6638
- export type GetOrgUsageResponse = GetOrgUsageResponses[keyof GetOrgUsageResponses];
6639
- export type ListConnectionsData = {
6640
- body?: never;
6641
- path: {
6642
- /**
6643
- * Graph Id
6644
- */
6645
- graph_id: string;
6646
- };
6647
- query?: {
6648
- /**
6649
- * Entity Id
6650
- *
6651
- * Filter by entity ID
6652
- */
6653
- entity_id?: string | null;
6654
- /**
6655
- * Provider
6656
- *
6657
- * Filter by provider type
6658
- */
6659
- provider?: 'sec' | 'quickbooks' | 'plaid' | null;
6660
- };
6661
- url: '/v1/graphs/{graph_id}/connections';
6662
- };
6663
- export type ListConnectionsErrors = {
6664
- /**
6665
- * Access denied to graph
6666
- */
6667
- 403: ErrorResponse;
6668
- /**
6669
- * Validation Error
6670
- */
6671
- 422: HttpValidationError;
6672
- /**
6673
- * Failed to list connections
6674
- */
6675
- 500: ErrorResponse;
6676
- };
6677
- export type ListConnectionsError = ListConnectionsErrors[keyof ListConnectionsErrors];
6678
- export type ListConnectionsResponses = {
6679
- /**
6680
- * Response Listconnections
6681
- *
6682
- * Connections retrieved successfully
6683
- */
6684
- 200: Array<ConnectionResponse>;
6685
- };
6686
- export type ListConnectionsResponse = ListConnectionsResponses[keyof ListConnectionsResponses];
6687
- export type CreateConnectionData = {
6688
- body: CreateConnectionRequest;
6689
- path: {
6690
- /**
6691
- * Graph Id
6692
- */
6693
- graph_id: string;
5716
+ org_id: string;
6694
5717
  };
6695
5718
  query?: never;
6696
- url: '/v1/graphs/{graph_id}/connections';
5719
+ url: '/v1/orgs/{org_id}';
6697
5720
  };
6698
- export type CreateConnectionErrors = {
6699
- /**
6700
- * Invalid connection configuration
6701
- */
6702
- 400: ErrorResponse;
6703
- /**
6704
- * Access denied - admin role required
6705
- */
6706
- 403: ErrorResponse;
6707
- /**
6708
- * Connection already exists
6709
- */
6710
- 409: ErrorResponse;
5721
+ export type GetOrgErrors = {
6711
5722
  /**
6712
5723
  * Validation Error
6713
5724
  */
6714
5725
  422: HttpValidationError;
6715
- /**
6716
- * Failed to create connection
6717
- */
6718
- 500: ErrorResponse;
6719
5726
  };
6720
- export type CreateConnectionError = CreateConnectionErrors[keyof CreateConnectionErrors];
6721
- export type CreateConnectionResponses = {
5727
+ export type GetOrgError = GetOrgErrors[keyof GetOrgErrors];
5728
+ export type GetOrgResponses = {
6722
5729
  /**
6723
- * Connection created successfully
5730
+ * Successful Response
6724
5731
  */
6725
- 201: ConnectionResponse;
5732
+ 200: OrgDetailResponse;
6726
5733
  };
6727
- export type CreateConnectionResponse = CreateConnectionResponses[keyof CreateConnectionResponses];
6728
- export type GetConnectionOptionsData = {
6729
- body?: never;
5734
+ export type GetOrgResponse = GetOrgResponses[keyof GetOrgResponses];
5735
+ export type UpdateOrgData = {
5736
+ body: UpdateOrgRequest;
6730
5737
  path: {
6731
5738
  /**
6732
- * Graph Id
5739
+ * Org Id
6733
5740
  */
6734
- graph_id: string;
5741
+ org_id: string;
6735
5742
  };
6736
5743
  query?: never;
6737
- url: '/v1/graphs/{graph_id}/connections/options';
5744
+ url: '/v1/orgs/{org_id}';
6738
5745
  };
6739
- export type GetConnectionOptionsErrors = {
6740
- /**
6741
- * Access denied to graph
6742
- */
6743
- 403: ErrorResponse;
5746
+ export type UpdateOrgErrors = {
6744
5747
  /**
6745
5748
  * Validation Error
6746
5749
  */
6747
5750
  422: HttpValidationError;
6748
- /**
6749
- * Failed to retrieve options
6750
- */
6751
- 500: ErrorResponse;
6752
5751
  };
6753
- export type GetConnectionOptionsError = GetConnectionOptionsErrors[keyof GetConnectionOptionsErrors];
6754
- export type GetConnectionOptionsResponses = {
5752
+ export type UpdateOrgError = UpdateOrgErrors[keyof UpdateOrgErrors];
5753
+ export type UpdateOrgResponses = {
6755
5754
  /**
6756
- * Connection options retrieved successfully
5755
+ * Successful Response
6757
5756
  */
6758
- 200: ConnectionOptionsResponse;
5757
+ 200: OrgDetailResponse;
6759
5758
  };
6760
- export type GetConnectionOptionsResponse = GetConnectionOptionsResponses[keyof GetConnectionOptionsResponses];
6761
- export type ExchangeLinkTokenData = {
6762
- body: ExchangeTokenRequest;
5759
+ export type UpdateOrgResponse = UpdateOrgResponses[keyof UpdateOrgResponses];
5760
+ export type ListOrgGraphsData = {
5761
+ body?: never;
6763
5762
  path: {
6764
5763
  /**
6765
- * Graph Id
5764
+ * Org Id
6766
5765
  */
6767
- graph_id: string;
5766
+ org_id: string;
6768
5767
  };
6769
5768
  query?: never;
6770
- url: '/v1/graphs/{graph_id}/connections/link/exchange';
5769
+ url: '/v1/orgs/{org_id}/graphs';
6771
5770
  };
6772
- export type ExchangeLinkTokenErrors = {
6773
- /**
6774
- * Invalid token or provider
6775
- */
6776
- 400: ErrorResponse;
6777
- /**
6778
- * Connection not found
6779
- */
6780
- 404: ErrorResponse;
5771
+ export type ListOrgGraphsErrors = {
6781
5772
  /**
6782
5773
  * Validation Error
6783
5774
  */
6784
5775
  422: HttpValidationError;
6785
- /**
6786
- * Token exchange failed
6787
- */
6788
- 500: ErrorResponse;
6789
5776
  };
6790
- export type ExchangeLinkTokenError = ExchangeLinkTokenErrors[keyof ExchangeLinkTokenErrors];
6791
- export type ExchangeLinkTokenResponses = {
5777
+ export type ListOrgGraphsError = ListOrgGraphsErrors[keyof ListOrgGraphsErrors];
5778
+ export type ListOrgGraphsResponses = {
6792
5779
  /**
6793
- * Token exchanged successfully
5780
+ * Response Listorggraphs
5781
+ *
5782
+ * Successful Response
6794
5783
  */
6795
- 200: unknown;
5784
+ 200: Array<{
5785
+ [key: string]: unknown;
5786
+ }>;
6796
5787
  };
6797
- export type CreateLinkTokenData = {
6798
- body: LinkTokenRequest;
5788
+ export type ListOrgGraphsResponse = ListOrgGraphsResponses[keyof ListOrgGraphsResponses];
5789
+ export type ListOrgMembersData = {
5790
+ body?: never;
6799
5791
  path: {
6800
5792
  /**
6801
- * Graph Id
5793
+ * Org Id
6802
5794
  */
6803
- graph_id: string;
5795
+ org_id: string;
6804
5796
  };
6805
5797
  query?: never;
6806
- url: '/v1/graphs/{graph_id}/connections/link/token';
5798
+ url: '/v1/orgs/{org_id}/members';
6807
5799
  };
6808
- export type CreateLinkTokenErrors = {
6809
- /**
6810
- * Invalid provider or request
6811
- */
6812
- 400: ErrorResponse;
6813
- /**
6814
- * Entity not found
6815
- */
6816
- 404: ErrorResponse;
5800
+ export type ListOrgMembersErrors = {
6817
5801
  /**
6818
5802
  * Validation Error
6819
5803
  */
6820
5804
  422: HttpValidationError;
6821
- /**
6822
- * Failed to create link token
6823
- */
6824
- 500: ErrorResponse;
6825
5805
  };
6826
- export type CreateLinkTokenError = CreateLinkTokenErrors[keyof CreateLinkTokenErrors];
6827
- export type CreateLinkTokenResponses = {
5806
+ export type ListOrgMembersError = ListOrgMembersErrors[keyof ListOrgMembersErrors];
5807
+ export type ListOrgMembersResponses = {
6828
5808
  /**
6829
- * Link token created successfully
5809
+ * Successful Response
6830
5810
  */
6831
- 200: unknown;
5811
+ 200: OrgMemberListResponse;
6832
5812
  };
6833
- export type InitOAuthData = {
6834
- body: OAuthInitRequest;
5813
+ export type ListOrgMembersResponse = ListOrgMembersResponses[keyof ListOrgMembersResponses];
5814
+ export type InviteOrgMemberData = {
5815
+ body: InviteMemberRequest;
6835
5816
  path: {
6836
5817
  /**
6837
- * Graph Id
5818
+ * Org Id
6838
5819
  */
6839
- graph_id: string;
5820
+ org_id: string;
6840
5821
  };
6841
5822
  query?: never;
6842
- url: '/v1/graphs/{graph_id}/connections/oauth/init';
5823
+ url: '/v1/orgs/{org_id}/members';
6843
5824
  };
6844
- export type InitOAuthErrors = {
5825
+ export type InviteOrgMemberErrors = {
6845
5826
  /**
6846
5827
  * Validation Error
6847
5828
  */
6848
5829
  422: HttpValidationError;
6849
5830
  };
6850
- export type InitOAuthError = InitOAuthErrors[keyof InitOAuthErrors];
6851
- export type InitOAuthResponses = {
5831
+ export type InviteOrgMemberError = InviteOrgMemberErrors[keyof InviteOrgMemberErrors];
5832
+ export type InviteOrgMemberResponses = {
6852
5833
  /**
6853
5834
  * Successful Response
6854
5835
  */
6855
- 200: OAuthInitResponse;
5836
+ 201: OrgMemberResponse;
6856
5837
  };
6857
- export type InitOAuthResponse = InitOAuthResponses[keyof InitOAuthResponses];
6858
- export type OauthCallbackData = {
6859
- body: OAuthCallbackRequest;
5838
+ export type InviteOrgMemberResponse = InviteOrgMemberResponses[keyof InviteOrgMemberResponses];
5839
+ export type RemoveOrgMemberData = {
5840
+ body?: never;
6860
5841
  path: {
6861
5842
  /**
6862
- * Provider
6863
- *
6864
- * OAuth provider name
5843
+ * Org Id
6865
5844
  */
6866
- provider: string;
5845
+ org_id: string;
6867
5846
  /**
6868
- * Graph Id
5847
+ * User Id
6869
5848
  */
6870
- graph_id: string;
5849
+ user_id: string;
6871
5850
  };
6872
5851
  query?: never;
6873
- url: '/v1/graphs/{graph_id}/connections/oauth/callback/{provider}';
5852
+ url: '/v1/orgs/{org_id}/members/{user_id}';
6874
5853
  };
6875
- export type OauthCallbackErrors = {
6876
- /**
6877
- * OAuth error or invalid state
6878
- */
6879
- 400: ErrorResponse;
6880
- /**
6881
- * State does not match user
6882
- */
6883
- 403: ErrorResponse;
6884
- /**
6885
- * Connection not found
6886
- */
6887
- 404: ErrorResponse;
5854
+ export type RemoveOrgMemberErrors = {
6888
5855
  /**
6889
5856
  * Validation Error
6890
5857
  */
6891
5858
  422: HttpValidationError;
6892
- /**
6893
- * OAuth callback processing failed
6894
- */
6895
- 500: ErrorResponse;
6896
5859
  };
6897
- export type OauthCallbackError = OauthCallbackErrors[keyof OauthCallbackErrors];
6898
- export type OauthCallbackResponses = {
5860
+ export type RemoveOrgMemberError = RemoveOrgMemberErrors[keyof RemoveOrgMemberErrors];
5861
+ export type RemoveOrgMemberResponses = {
6899
5862
  /**
6900
- * OAuth flow completed successfully
5863
+ * Successful Response
6901
5864
  */
6902
- 200: unknown;
5865
+ 204: void;
6903
5866
  };
6904
- export type DeleteConnectionData = {
6905
- body?: never;
5867
+ export type RemoveOrgMemberResponse = RemoveOrgMemberResponses[keyof RemoveOrgMemberResponses];
5868
+ export type UpdateOrgMemberRoleData = {
5869
+ body: UpdateMemberRoleRequest;
6906
5870
  path: {
6907
5871
  /**
6908
- * Graph Id
5872
+ * Org Id
6909
5873
  */
6910
- graph_id: string;
5874
+ org_id: string;
6911
5875
  /**
6912
- * Connection Id
6913
- *
6914
- * Connection identifier
5876
+ * User Id
6915
5877
  */
6916
- connection_id: string;
5878
+ user_id: string;
6917
5879
  };
6918
5880
  query?: never;
6919
- url: '/v1/graphs/{graph_id}/connections/{connection_id}';
5881
+ url: '/v1/orgs/{org_id}/members/{user_id}';
6920
5882
  };
6921
- export type DeleteConnectionErrors = {
6922
- /**
6923
- * Access denied - admin role required
6924
- */
6925
- 403: ErrorResponse;
6926
- /**
6927
- * Connection not found
6928
- */
6929
- 404: ErrorResponse;
5883
+ export type UpdateOrgMemberRoleErrors = {
6930
5884
  /**
6931
5885
  * Validation Error
6932
5886
  */
6933
5887
  422: HttpValidationError;
6934
- /**
6935
- * Failed to delete connection
6936
- */
6937
- 500: ErrorResponse;
6938
5888
  };
6939
- export type DeleteConnectionError = DeleteConnectionErrors[keyof DeleteConnectionErrors];
6940
- export type DeleteConnectionResponses = {
5889
+ export type UpdateOrgMemberRoleError = UpdateOrgMemberRoleErrors[keyof UpdateOrgMemberRoleErrors];
5890
+ export type UpdateOrgMemberRoleResponses = {
6941
5891
  /**
6942
- * Connection deleted successfully
5892
+ * Successful Response
6943
5893
  */
6944
- 200: SuccessResponse;
5894
+ 200: OrgMemberResponse;
6945
5895
  };
6946
- export type DeleteConnectionResponse = DeleteConnectionResponses[keyof DeleteConnectionResponses];
6947
- export type GetConnectionData = {
5896
+ export type UpdateOrgMemberRoleResponse = UpdateOrgMemberRoleResponses[keyof UpdateOrgMemberRoleResponses];
5897
+ export type GetOrgLimitsData = {
6948
5898
  body?: never;
6949
5899
  path: {
6950
5900
  /**
6951
- * Graph Id
6952
- */
6953
- graph_id: string;
6954
- /**
6955
- * Connection Id
6956
- *
6957
- * Unique connection identifier
5901
+ * Org Id
6958
5902
  */
6959
- connection_id: string;
5903
+ org_id: string;
6960
5904
  };
6961
5905
  query?: never;
6962
- url: '/v1/graphs/{graph_id}/connections/{connection_id}';
5906
+ url: '/v1/orgs/{org_id}/limits';
6963
5907
  };
6964
- export type GetConnectionErrors = {
6965
- /**
6966
- * Access denied to connection
6967
- */
6968
- 403: ErrorResponse;
6969
- /**
6970
- * Connection not found
6971
- */
6972
- 404: ErrorResponse;
5908
+ export type GetOrgLimitsErrors = {
6973
5909
  /**
6974
5910
  * Validation Error
6975
5911
  */
6976
5912
  422: HttpValidationError;
6977
- /**
6978
- * Failed to retrieve connection
6979
- */
6980
- 500: ErrorResponse;
6981
5913
  };
6982
- export type GetConnectionError = GetConnectionErrors[keyof GetConnectionErrors];
6983
- export type GetConnectionResponses = {
5914
+ export type GetOrgLimitsError = GetOrgLimitsErrors[keyof GetOrgLimitsErrors];
5915
+ export type GetOrgLimitsResponses = {
6984
5916
  /**
6985
- * Connection details retrieved successfully
5917
+ * Successful Response
6986
5918
  */
6987
- 200: ConnectionResponse;
5919
+ 200: OrgLimitsResponse;
6988
5920
  };
6989
- export type GetConnectionResponse = GetConnectionResponses[keyof GetConnectionResponses];
6990
- export type SyncConnectionData = {
6991
- body: SyncConnectionRequest;
5921
+ export type GetOrgLimitsResponse = GetOrgLimitsResponses[keyof GetOrgLimitsResponses];
5922
+ export type GetOrgUsageData = {
5923
+ body?: never;
6992
5924
  path: {
6993
5925
  /**
6994
- * Graph Id
5926
+ * Org Id
6995
5927
  */
6996
- graph_id: string;
5928
+ org_id: string;
5929
+ };
5930
+ query?: {
6997
5931
  /**
6998
- * Connection Id
6999
- *
7000
- * Connection identifier
5932
+ * Days
7001
5933
  */
7002
- connection_id: string;
5934
+ days?: number;
7003
5935
  };
7004
- query?: never;
7005
- url: '/v1/graphs/{graph_id}/connections/{connection_id}/sync';
5936
+ url: '/v1/orgs/{org_id}/usage';
7006
5937
  };
7007
- export type SyncConnectionErrors = {
7008
- /**
7009
- * Access denied - admin role required
7010
- */
7011
- 403: ErrorResponse;
7012
- /**
7013
- * Connection not found
7014
- */
7015
- 404: ErrorResponse;
5938
+ export type GetOrgUsageErrors = {
7016
5939
  /**
7017
5940
  * Validation Error
7018
5941
  */
7019
5942
  422: HttpValidationError;
7020
- /**
7021
- * Failed to start sync
7022
- */
7023
- 500: ErrorResponse;
7024
5943
  };
7025
- export type SyncConnectionError = SyncConnectionErrors[keyof SyncConnectionErrors];
7026
- export type SyncConnectionResponses = {
5944
+ export type GetOrgUsageError = GetOrgUsageErrors[keyof GetOrgUsageErrors];
5945
+ export type GetOrgUsageResponses = {
7027
5946
  /**
7028
- * Response Syncconnection
7029
- *
7030
- * Sync started successfully
5947
+ * Successful Response
7031
5948
  */
7032
- 200: {
7033
- [key: string]: unknown;
7034
- };
5949
+ 200: OrgUsageResponse;
7035
5950
  };
7036
- export type SyncConnectionResponse = SyncConnectionResponses[keyof SyncConnectionResponses];
5951
+ export type GetOrgUsageResponse = GetOrgUsageResponses[keyof GetOrgUsageResponses];
7037
5952
  export type ListAgentsData = {
7038
5953
  body?: never;
7039
5954
  path: {
@@ -8648,55 +7563,6 @@ export type QueryTablesResponses = {
8648
7563
  200: TableQueryResponse;
8649
7564
  };
8650
7565
  export type QueryTablesResponse = QueryTablesResponses[keyof QueryTablesResponses];
8651
- export type CreateViewData = {
8652
- body: CreateViewRequest;
8653
- path: {
8654
- /**
8655
- * Graph Id
8656
- */
8657
- graph_id: string;
8658
- };
8659
- query?: never;
8660
- url: '/v1/graphs/{graph_id}/views';
8661
- };
8662
- export type CreateViewErrors = {
8663
- /**
8664
- * Validation Error
8665
- */
8666
- 422: HttpValidationError;
8667
- };
8668
- export type CreateViewError = CreateViewErrors[keyof CreateViewErrors];
8669
- export type CreateViewResponses = {
8670
- /**
8671
- * Successful Response
8672
- */
8673
- 200: unknown;
8674
- };
8675
- export type SaveViewData = {
8676
- body: SaveViewRequest;
8677
- path: {
8678
- /**
8679
- * Graph Id
8680
- */
8681
- graph_id: string;
8682
- };
8683
- query?: never;
8684
- url: '/v1/graphs/{graph_id}/views/save';
8685
- };
8686
- export type SaveViewErrors = {
8687
- /**
8688
- * Validation Error
8689
- */
8690
- 422: HttpValidationError;
8691
- };
8692
- export type SaveViewError = SaveViewErrors[keyof SaveViewErrors];
8693
- export type SaveViewResponses = {
8694
- /**
8695
- * Successful Response
8696
- */
8697
- 200: SaveViewResponse;
8698
- };
8699
- export type SaveViewResponse2 = SaveViewResponses[keyof SaveViewResponses];
8700
7566
  export type GetMaterializationStatusData = {
8701
7567
  body?: never;
8702
7568
  path: {
@@ -8766,6 +7632,10 @@ export type MaterializeGraphErrors = {
8766
7632
  * Conflict - another materialization is already in progress for this graph
8767
7633
  */
8768
7634
  409: ErrorResponse;
7635
+ /**
7636
+ * Graph content limit exceeded - data too large for current tier
7637
+ */
7638
+ 413: ErrorResponse;
8769
7639
  /**
8770
7640
  * Validation Error
8771
7641
  */