@thecorporation/corp-tools 26.3.14 → 26.3.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +162 -16
- package/dist/index.js +216 -49
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ interface CorpConfig {
|
|
|
14
14
|
email: string;
|
|
15
15
|
};
|
|
16
16
|
active_entity_id: string;
|
|
17
|
+
active_entity_ids?: Record<string, string>;
|
|
17
18
|
[key: string]: unknown;
|
|
18
19
|
}
|
|
19
20
|
interface ToolCall {
|
|
@@ -112,6 +113,7 @@ type components = {
|
|
|
112
113
|
*/
|
|
113
114
|
AccountType: "asset" | "liability" | "equity" | "revenue" | "expense";
|
|
114
115
|
AddFounderRequest: {
|
|
116
|
+
address?: null | components["schemas"]["Address"];
|
|
115
117
|
email?: string | null;
|
|
116
118
|
is_incorporator?: boolean | null;
|
|
117
119
|
name: string;
|
|
@@ -474,12 +476,10 @@ type components = {
|
|
|
474
476
|
accounts: components["schemas"]["AccountResponse"][];
|
|
475
477
|
entity_id: components["schemas"]["EntityId"];
|
|
476
478
|
};
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
expires_at: string;
|
|
482
|
-
ws_token: string;
|
|
479
|
+
ClaimWorkItemRequest: {
|
|
480
|
+
claimed_by: string;
|
|
481
|
+
/** Format: int64 */
|
|
482
|
+
ttl_seconds?: number | null;
|
|
483
483
|
};
|
|
484
484
|
/** Format: uuid */
|
|
485
485
|
ClassificationId: string;
|
|
@@ -516,6 +516,10 @@ type components = {
|
|
|
516
516
|
phase?: string | null;
|
|
517
517
|
required_signers?: string[];
|
|
518
518
|
};
|
|
519
|
+
CompleteWorkItemRequest: {
|
|
520
|
+
completed_by: string;
|
|
521
|
+
result?: string | null;
|
|
522
|
+
};
|
|
519
523
|
/** Format: uuid */
|
|
520
524
|
ComplianceEscalationId: string;
|
|
521
525
|
ComplianceEscalationResponse: {
|
|
@@ -566,7 +570,9 @@ type components = {
|
|
|
566
570
|
contact_id: components["schemas"]["ContactId"];
|
|
567
571
|
email?: string | null;
|
|
568
572
|
entities: components["schemas"]["EntityId"][];
|
|
573
|
+
mailing_address?: string | null;
|
|
569
574
|
name: string;
|
|
575
|
+
notes?: string | null;
|
|
570
576
|
phone?: string | null;
|
|
571
577
|
};
|
|
572
578
|
ContactResponse: {
|
|
@@ -577,6 +583,7 @@ type components = {
|
|
|
577
583
|
created_at: string;
|
|
578
584
|
email?: string | null;
|
|
579
585
|
entity_id: components["schemas"]["EntityId"];
|
|
586
|
+
mailing_address?: string | null;
|
|
580
587
|
name: string;
|
|
581
588
|
notes?: string | null;
|
|
582
589
|
phone?: string | null;
|
|
@@ -613,7 +620,7 @@ type components = {
|
|
|
613
620
|
* @description Template type for generated contracts.
|
|
614
621
|
* @enum {string}
|
|
615
622
|
*/
|
|
616
|
-
ContractTemplateType: "consulting_agreement" | "employment_offer" | "contractor_agreement" | "nda" | "custom";
|
|
623
|
+
ContractTemplateType: "consulting_agreement" | "employment_offer" | "contractor_agreement" | "nda" | "safe_agreement" | "custom";
|
|
617
624
|
/** Format: uuid */
|
|
618
625
|
ControlLinkId: string;
|
|
619
626
|
ControlLinkResponse: {
|
|
@@ -682,6 +689,7 @@ type components = {
|
|
|
682
689
|
total_new_units: number;
|
|
683
690
|
};
|
|
684
691
|
ConvertEntityRequest: {
|
|
692
|
+
jurisdiction?: null | components["schemas"]["Jurisdiction"];
|
|
685
693
|
target_type: components["schemas"]["EntityType"];
|
|
686
694
|
};
|
|
687
695
|
CreateAccountRequest: {
|
|
@@ -735,7 +743,9 @@ type components = {
|
|
|
735
743
|
contact_type: components["schemas"]["ContactType"];
|
|
736
744
|
email?: string | null;
|
|
737
745
|
entity_id: components["schemas"]["EntityId"];
|
|
746
|
+
mailing_address?: string | null;
|
|
738
747
|
name: string;
|
|
748
|
+
notes?: string | null;
|
|
739
749
|
};
|
|
740
750
|
CreateControlLinkRequest: {
|
|
741
751
|
child_legal_entity_id: components["schemas"]["LegalEntityId"];
|
|
@@ -869,6 +879,24 @@ type components = {
|
|
|
869
879
|
entity_id: components["schemas"]["EntityId"];
|
|
870
880
|
lines: components["schemas"]["LedgerLineRequest"][];
|
|
871
881
|
};
|
|
882
|
+
CreateLegacyGrantRequest: {
|
|
883
|
+
entity_id: components["schemas"]["EntityId"];
|
|
884
|
+
grant_type: components["schemas"]["GrantType"];
|
|
885
|
+
recipient_name: string;
|
|
886
|
+
/** Format: int64 */
|
|
887
|
+
shares: number;
|
|
888
|
+
};
|
|
889
|
+
CreateLegacyShareTransferRequest: {
|
|
890
|
+
entity_id: components["schemas"]["EntityId"];
|
|
891
|
+
from_holder: string;
|
|
892
|
+
governing_doc_type?: null | components["schemas"]["GoverningDocType"];
|
|
893
|
+
share_class_id: components["schemas"]["ShareClassId"];
|
|
894
|
+
/** Format: int64 */
|
|
895
|
+
shares: number;
|
|
896
|
+
to_holder: string;
|
|
897
|
+
transfer_type: components["schemas"]["TransferType"];
|
|
898
|
+
transferee_rights?: null | components["schemas"]["TransfereeRights"];
|
|
899
|
+
};
|
|
872
900
|
CreateLegalEntityRequest: {
|
|
873
901
|
entity_id: components["schemas"]["EntityId"];
|
|
874
902
|
linked_entity_id?: null | components["schemas"]["EntityId"];
|
|
@@ -907,9 +935,17 @@ type components = {
|
|
|
907
935
|
pay_period_start: string;
|
|
908
936
|
};
|
|
909
937
|
CreatePendingFormationRequest: {
|
|
938
|
+
company_address?: null | components["schemas"]["Address"];
|
|
910
939
|
entity_type: components["schemas"]["EntityType"];
|
|
940
|
+
fiscal_year_end?: string | null;
|
|
941
|
+
formation_date?: string | null;
|
|
911
942
|
jurisdiction?: null | components["schemas"]["Jurisdiction"];
|
|
912
943
|
legal_name: string;
|
|
944
|
+
registered_agent_address?: string | null;
|
|
945
|
+
registered_agent_name?: string | null;
|
|
946
|
+
right_of_first_refusal?: boolean | null;
|
|
947
|
+
s_corp_election?: boolean | null;
|
|
948
|
+
transfer_restrictions?: boolean | null;
|
|
913
949
|
};
|
|
914
950
|
CreateProxyRequest: {
|
|
915
951
|
description?: string | null;
|
|
@@ -966,6 +1002,7 @@ type components = {
|
|
|
966
1002
|
transferee_rights: components["schemas"]["TransfereeRights"];
|
|
967
1003
|
};
|
|
968
1004
|
CreateValuationRequest: {
|
|
1005
|
+
dlom?: string | null;
|
|
969
1006
|
/** Format: date */
|
|
970
1007
|
effective_date: string;
|
|
971
1008
|
/** Format: int64 */
|
|
@@ -977,9 +1014,20 @@ type components = {
|
|
|
977
1014
|
hurdle_amount_cents?: number | null;
|
|
978
1015
|
methodology: components["schemas"]["ValuationMethodology"];
|
|
979
1016
|
provider_contact_id?: null | components["schemas"]["ContactId"];
|
|
1017
|
+
report_date?: string | null;
|
|
980
1018
|
report_document_id?: null | components["schemas"]["DocumentId"];
|
|
981
1019
|
valuation_type: components["schemas"]["ValuationType"];
|
|
982
1020
|
};
|
|
1021
|
+
CreateWorkItemRequest: {
|
|
1022
|
+
asap?: boolean;
|
|
1023
|
+
category: string;
|
|
1024
|
+
created_by?: string | null;
|
|
1025
|
+
/** Format: date */
|
|
1026
|
+
deadline?: string | null;
|
|
1027
|
+
description?: string | null;
|
|
1028
|
+
metadata?: unknown;
|
|
1029
|
+
title: string;
|
|
1030
|
+
};
|
|
983
1031
|
/**
|
|
984
1032
|
* @description A cron expression validated to have at least 5 whitespace-separated fields.
|
|
985
1033
|
*
|
|
@@ -1060,6 +1108,7 @@ type components = {
|
|
|
1060
1108
|
};
|
|
1061
1109
|
DigestTriggerResponse: {
|
|
1062
1110
|
digest_count: number;
|
|
1111
|
+
message: string;
|
|
1063
1112
|
triggered: boolean;
|
|
1064
1113
|
};
|
|
1065
1114
|
DilutionPreviewQuery: {
|
|
@@ -1175,14 +1224,14 @@ type components = {
|
|
|
1175
1224
|
* @description Type of legal document.
|
|
1176
1225
|
* @enum {string}
|
|
1177
1226
|
*/
|
|
1178
|
-
DocumentType: "articles_of_incorporation" | "articles_of_organization" | "bylaws" | "operating_agreement" | "ss4_application" | "meeting_notice" | "resolution" | "safe_agreement";
|
|
1227
|
+
DocumentType: "articles_of_incorporation" | "articles_of_organization" | "bylaws" | "incorporator_action" | "initial_board_consent" | "operating_agreement" | "initial_written_consent" | "ss4_application" | "meeting_notice" | "resolution" | "consulting_agreement" | "employment_offer_letter" | "contractor_services_agreement" | "mutual_nondisclosure_agreement" | "safe_agreement" | "four_oh_nine_a_valuation_report" | "stock_transfer_agreement" | "transfer_board_consent" | "financing_board_consent" | "equity_issuance_approval" | "subscription_agreement" | "investor_rights_agreement" | "restricted_stock_purchase_agreement" | "ip_assignment_agreement" | "contract";
|
|
1179
1228
|
/** Format: uuid */
|
|
1180
1229
|
EntityId: string;
|
|
1181
1230
|
/**
|
|
1182
1231
|
* @description The legal structure of a business entity.
|
|
1183
1232
|
* @enum {string}
|
|
1184
1233
|
*/
|
|
1185
|
-
EntityType: "
|
|
1234
|
+
EntityType: "c_corp" | "llc";
|
|
1186
1235
|
/** Format: uuid */
|
|
1187
1236
|
EquityRoundId: string;
|
|
1188
1237
|
/** @enum {string} */
|
|
@@ -1243,6 +1292,21 @@ type components = {
|
|
|
1243
1292
|
entity_id: components["schemas"]["EntityId"];
|
|
1244
1293
|
status: components["schemas"]["AgendaItemStatus"];
|
|
1245
1294
|
};
|
|
1295
|
+
FinalizePendingFormationRequest: {
|
|
1296
|
+
/** Format: int64 */
|
|
1297
|
+
authorized_shares?: number | null;
|
|
1298
|
+
company_address?: null | components["schemas"]["Address"];
|
|
1299
|
+
fiscal_year_end?: string | null;
|
|
1300
|
+
formation_date?: string | null;
|
|
1301
|
+
incorporator_address?: string | null;
|
|
1302
|
+
incorporator_name?: string | null;
|
|
1303
|
+
par_value?: string | null;
|
|
1304
|
+
registered_agent_address?: string | null;
|
|
1305
|
+
registered_agent_name?: string | null;
|
|
1306
|
+
right_of_first_refusal?: boolean | null;
|
|
1307
|
+
s_corp_election?: boolean | null;
|
|
1308
|
+
transfer_restrictions?: boolean | null;
|
|
1309
|
+
};
|
|
1246
1310
|
FinalizeWorkflowRequest: {
|
|
1247
1311
|
entity_id: components["schemas"]["EntityId"];
|
|
1248
1312
|
phase?: string | null;
|
|
@@ -1331,6 +1395,7 @@ type components = {
|
|
|
1331
1395
|
vesting?: null | components["schemas"]["VestingSchedule"];
|
|
1332
1396
|
};
|
|
1333
1397
|
FounderSummary: {
|
|
1398
|
+
address?: null | components["schemas"]["Address"];
|
|
1334
1399
|
email?: string | null;
|
|
1335
1400
|
name: string;
|
|
1336
1401
|
/** Format: double */
|
|
@@ -1596,6 +1661,11 @@ type components = {
|
|
|
1596
1661
|
* @enum {string}
|
|
1597
1662
|
*/
|
|
1598
1663
|
GoverningDocType: "bylaws" | "operating_agreement" | "shareholder_agreement" | "other";
|
|
1664
|
+
/**
|
|
1665
|
+
* @description The type of equity grant.
|
|
1666
|
+
* @enum {string}
|
|
1667
|
+
*/
|
|
1668
|
+
GrantType: "common_stock" | "preferred_stock" | "membership_unit" | "stock_option" | "iso" | "nso" | "rsa" | "svu";
|
|
1599
1669
|
/** Format: uuid */
|
|
1600
1670
|
HolderId: string;
|
|
1601
1671
|
HolderResponse: {
|
|
@@ -1973,7 +2043,7 @@ type components = {
|
|
|
1973
2043
|
* @description Officer title for a corporate officer.
|
|
1974
2044
|
* @enum {string}
|
|
1975
2045
|
*/
|
|
1976
|
-
OfficerTitle: "ceo" | "cfo" | "secretary" | "president" | "vp" | "other";
|
|
2046
|
+
OfficerTitle: "ceo" | "cfo" | "cto" | "coo" | "secretary" | "treasurer" | "president" | "vp" | "other";
|
|
1977
2047
|
/** Format: uuid */
|
|
1978
2048
|
PacketId: string;
|
|
1979
2049
|
PacketItem: {
|
|
@@ -2508,9 +2578,34 @@ type components = {
|
|
|
2508
2578
|
obligation_id: components["schemas"]["ObligationId"];
|
|
2509
2579
|
token: string;
|
|
2510
2580
|
};
|
|
2581
|
+
/** @description Contract details included in signing resolve response. */
|
|
2582
|
+
SigningContractDetails: {
|
|
2583
|
+
counterparty_name: string;
|
|
2584
|
+
effective_date: string;
|
|
2585
|
+
parameters: unknown;
|
|
2586
|
+
rendered_text?: string | null;
|
|
2587
|
+
template_label?: string | null;
|
|
2588
|
+
template_type: string;
|
|
2589
|
+
};
|
|
2511
2590
|
SigningLinkResponse: {
|
|
2512
2591
|
document_id: components["schemas"]["DocumentId"];
|
|
2513
2592
|
signing_url: string;
|
|
2593
|
+
token: string;
|
|
2594
|
+
};
|
|
2595
|
+
/** @description Response for the public resolve endpoint. */
|
|
2596
|
+
SigningResolveResponse: {
|
|
2597
|
+
contract?: null | components["schemas"]["SigningContractDetails"];
|
|
2598
|
+
document_id: components["schemas"]["DocumentId"];
|
|
2599
|
+
document_status: string;
|
|
2600
|
+
document_title: string;
|
|
2601
|
+
entity_id: components["schemas"]["EntityId"];
|
|
2602
|
+
/** @description Entity legal name for display. */
|
|
2603
|
+
entity_name?: string | null;
|
|
2604
|
+
/** @description Public PDF preview URL for the signing page. */
|
|
2605
|
+
pdf_url?: string | null;
|
|
2606
|
+
/** @description Plain-text preview fallback when a PDF is unavailable. */
|
|
2607
|
+
preview_text?: string | null;
|
|
2608
|
+
signatures: components["schemas"]["SignatureSummary"][];
|
|
2514
2609
|
};
|
|
2515
2610
|
/** Format: uuid */
|
|
2516
2611
|
SpendingLimitId: string;
|
|
@@ -2686,8 +2781,10 @@ type components = {
|
|
|
2686
2781
|
};
|
|
2687
2782
|
UpdateContactRequest: {
|
|
2688
2783
|
cap_table_access?: null | components["schemas"]["CapTableAccess"];
|
|
2784
|
+
category?: null | components["schemas"]["ContactCategory"];
|
|
2689
2785
|
email?: string | null;
|
|
2690
2786
|
entity_id: components["schemas"]["EntityId"];
|
|
2787
|
+
mailing_address?: string | null;
|
|
2691
2788
|
name?: string | null;
|
|
2692
2789
|
notes?: string | null;
|
|
2693
2790
|
phone?: string | null;
|
|
@@ -2696,8 +2793,13 @@ type components = {
|
|
|
2696
2793
|
adopted_by: string;
|
|
2697
2794
|
/** Format: int32 */
|
|
2698
2795
|
board_size?: number | null;
|
|
2796
|
+
company_address?: null | components["schemas"]["CompanyAddress"];
|
|
2797
|
+
directors?: components["schemas"]["DirectorInfo"][] | null;
|
|
2798
|
+
document_options?: null | components["schemas"]["DocumentOptions"];
|
|
2699
2799
|
/** Format: date */
|
|
2700
2800
|
effective_date: string;
|
|
2801
|
+
fiscal_year_end?: null | components["schemas"]["FiscalYearEnd"];
|
|
2802
|
+
founders?: components["schemas"]["FounderInfo"][] | null;
|
|
2701
2803
|
incomplete_profile?: boolean | null;
|
|
2702
2804
|
incorporator_address?: string | null;
|
|
2703
2805
|
incorporator_name?: string | null;
|
|
@@ -2707,10 +2809,12 @@ type components = {
|
|
|
2707
2809
|
legal_name: string;
|
|
2708
2810
|
/** Format: date */
|
|
2709
2811
|
next_mandatory_review: string;
|
|
2812
|
+
officers?: components["schemas"]["OfficerInfo"][] | null;
|
|
2710
2813
|
principal_name?: string | null;
|
|
2711
2814
|
principal_title?: string | null;
|
|
2712
2815
|
registered_agent_address?: string | null;
|
|
2713
2816
|
registered_agent_name?: string | null;
|
|
2817
|
+
stock_details?: null | components["schemas"]["StockDetails"];
|
|
2714
2818
|
};
|
|
2715
2819
|
UpdateNotificationPrefsRequest: {
|
|
2716
2820
|
email_enabled?: boolean | null;
|
|
@@ -2798,6 +2902,32 @@ type components = {
|
|
|
2798
2902
|
* @enum {string}
|
|
2799
2903
|
*/
|
|
2800
2904
|
VotingMethod: "per_capita" | "per_unit";
|
|
2905
|
+
/** Format: uuid */
|
|
2906
|
+
WorkItemId: string;
|
|
2907
|
+
WorkItemResponse: {
|
|
2908
|
+
asap: boolean;
|
|
2909
|
+
category: string;
|
|
2910
|
+
/** Format: int64 */
|
|
2911
|
+
claim_ttl_seconds?: number | null;
|
|
2912
|
+
claimed_at?: string | null;
|
|
2913
|
+
claimed_by?: string | null;
|
|
2914
|
+
completed_at?: string | null;
|
|
2915
|
+
completed_by?: string | null;
|
|
2916
|
+
created_at: string;
|
|
2917
|
+
created_by?: string | null;
|
|
2918
|
+
/** Format: date */
|
|
2919
|
+
deadline?: string | null;
|
|
2920
|
+
description: string;
|
|
2921
|
+
effective_status: components["schemas"]["WorkItemStatus"];
|
|
2922
|
+
entity_id: components["schemas"]["EntityId"];
|
|
2923
|
+
metadata: unknown;
|
|
2924
|
+
result?: string | null;
|
|
2925
|
+
status: components["schemas"]["WorkItemStatus"];
|
|
2926
|
+
title: string;
|
|
2927
|
+
work_item_id: components["schemas"]["WorkItemId"];
|
|
2928
|
+
};
|
|
2929
|
+
/** @enum {string} */
|
|
2930
|
+
WorkItemStatus: "open" | "claimed" | "completed" | "cancelled";
|
|
2801
2931
|
WorkerWorkspaceQuery: {
|
|
2802
2932
|
workspace_id: components["schemas"]["WorkspaceId"];
|
|
2803
2933
|
};
|
|
@@ -2963,13 +3093,14 @@ declare class CorpAPIClient {
|
|
|
2963
3093
|
getNotificationPrefs(contactId: string): Promise<ApiRecord>;
|
|
2964
3094
|
updateNotificationPrefs(contactId: string, prefs: ApiRecord): Promise<ApiRecord>;
|
|
2965
3095
|
getCapTable(entityId: string): Promise<ApiRecord>;
|
|
2966
|
-
/** Extract SAFE instruments from the cap table (no dedicated list endpoint). */
|
|
2967
3096
|
getSafeNotes(entityId: string): Promise<ApiRecord[]>;
|
|
3097
|
+
createSafeNote(data: ApiRecord): Promise<ApiRecord>;
|
|
2968
3098
|
/** Extract transfer-workflow info (no dedicated list endpoint for share transfers). */
|
|
2969
3099
|
getShareTransfers(entityId: string): Promise<ApiRecord[]>;
|
|
2970
3100
|
getValuations(entityId: string): Promise<ApiRecord[]>;
|
|
2971
3101
|
getCurrent409a(entityId: string): Promise<ApiRecord>;
|
|
2972
3102
|
createValuation(data: ApiRecord): Promise<ApiRecord>;
|
|
3103
|
+
createInstrument(data: ApiRecord): Promise<ApiRecord>;
|
|
2973
3104
|
submitValuationForApproval(valuationId: string, entityId: string): Promise<ApiRecord>;
|
|
2974
3105
|
approveValuation(valuationId: string, entityId: string, resolutionId?: string): Promise<ApiRecord>;
|
|
2975
3106
|
transferShares(data: ApiRecord): Promise<ApiRecord>;
|
|
@@ -3051,6 +3182,10 @@ declare class CorpAPIClient {
|
|
|
3051
3182
|
listApiKeys(): Promise<ApiRecord[]>;
|
|
3052
3183
|
assignObligation(obligationId: string, contactId: string): Promise<ApiRecord>;
|
|
3053
3184
|
getConfig(): Promise<ApiRecord>;
|
|
3185
|
+
submitFeedback(message: string, category?: string, email?: string): Promise<{
|
|
3186
|
+
feedback_id: string;
|
|
3187
|
+
submitted_at: string;
|
|
3188
|
+
}>;
|
|
3054
3189
|
createLink(externalId: string, provider: string): Promise<ApiRecord>;
|
|
3055
3190
|
}
|
|
3056
3191
|
|
|
@@ -3058,6 +3193,13 @@ interface ToolContext {
|
|
|
3058
3193
|
dataDir: string;
|
|
3059
3194
|
onEntityFormed?: (entityId: string) => void;
|
|
3060
3195
|
}
|
|
3196
|
+
type CapTableInstrument = {
|
|
3197
|
+
instrument_id: string;
|
|
3198
|
+
kind: string;
|
|
3199
|
+
symbol: string;
|
|
3200
|
+
status?: string;
|
|
3201
|
+
};
|
|
3202
|
+
declare function ensureSafeInstrument(client: CorpAPIClient, entityId: string): Promise<CapTableInstrument>;
|
|
3061
3203
|
declare const TOOL_DEFINITIONS: Record<string, unknown>[];
|
|
3062
3204
|
declare function isWriteTool(name: string, args?: Record<string, unknown>): boolean;
|
|
3063
3205
|
declare function executeTool(name: string, args: Record<string, unknown>, client: CorpAPIClient, ctx: ToolContext): Promise<string>;
|
|
@@ -3128,7 +3270,7 @@ declare const ContactType: readonly ["individual", "organization"];
|
|
|
3128
3270
|
type ContactType = (typeof ContactType)[number];
|
|
3129
3271
|
declare const ContractStatus: readonly ["draft", "active", "expired", "terminated"];
|
|
3130
3272
|
type ContractStatus = (typeof ContractStatus)[number];
|
|
3131
|
-
declare const ContractTemplateType: readonly ["consulting_agreement", "employment_offer", "contractor_agreement", "nda", "custom"];
|
|
3273
|
+
declare const ContractTemplateType: readonly ["consulting_agreement", "employment_offer", "contractor_agreement", "nda", "safe_agreement", "custom"];
|
|
3132
3274
|
type ContractTemplateType = (typeof ContractTemplateType)[number];
|
|
3133
3275
|
declare const ControlType: readonly ["voting", "board", "economic", "contractual"];
|
|
3134
3276
|
type ControlType = (typeof ControlType)[number];
|
|
@@ -3146,9 +3288,9 @@ declare const DocumentRequestStatus: readonly ["requested", "provided", "not_app
|
|
|
3146
3288
|
type DocumentRequestStatus = (typeof DocumentRequestStatus)[number];
|
|
3147
3289
|
declare const DocumentStatus: readonly ["draft", "signed", "amended", "filed"];
|
|
3148
3290
|
type DocumentStatus = (typeof DocumentStatus)[number];
|
|
3149
|
-
declare const DocumentType: readonly ["articles_of_incorporation", "articles_of_organization", "bylaws", "operating_agreement", "ss4_application", "meeting_notice", "resolution", "safe_agreement"];
|
|
3291
|
+
declare const DocumentType: readonly ["articles_of_incorporation", "articles_of_organization", "bylaws", "incorporator_action", "initial_board_consent", "operating_agreement", "initial_written_consent", "ss4_application", "meeting_notice", "resolution", "consulting_agreement", "employment_offer_letter", "contractor_services_agreement", "mutual_nondisclosure_agreement", "safe_agreement", "four_oh_nine_a_valuation_report", "stock_transfer_agreement", "transfer_board_consent", "financing_board_consent", "equity_issuance_approval", "subscription_agreement", "investor_rights_agreement", "restricted_stock_purchase_agreement", "ip_assignment_agreement", "contract"];
|
|
3150
3292
|
type DocumentType = (typeof DocumentType)[number];
|
|
3151
|
-
declare const EntityType: readonly ["
|
|
3293
|
+
declare const EntityType: readonly ["c_corp", "llc"];
|
|
3152
3294
|
type EntityType = (typeof EntityType)[number];
|
|
3153
3295
|
declare const EquityRoundStatus: readonly ["draft", "open", "board_approved", "accepted", "closed", "cancelled"];
|
|
3154
3296
|
type EquityRoundStatus = (typeof EquityRoundStatus)[number];
|
|
@@ -3170,6 +3312,8 @@ declare const GovernanceTriggerType: readonly ["external_signal", "policy_eviden
|
|
|
3170
3312
|
type GovernanceTriggerType = (typeof GovernanceTriggerType)[number];
|
|
3171
3313
|
declare const GoverningDocType: readonly ["bylaws", "operating_agreement", "shareholder_agreement", "other"];
|
|
3172
3314
|
type GoverningDocType = (typeof GoverningDocType)[number];
|
|
3315
|
+
declare const GrantType: readonly ["common_stock", "preferred_stock", "membership_unit", "stock_option", "iso", "nso", "rsa", "svu"];
|
|
3316
|
+
type GrantType = (typeof GrantType)[number];
|
|
3173
3317
|
declare const HolderType: readonly ["individual", "organization", "fund", "nonprofit", "trust", "other"];
|
|
3174
3318
|
type HolderType = (typeof HolderType)[number];
|
|
3175
3319
|
declare const HttpMethod: readonly ["GET", "POST", "PUT", "PATCH", "DELETE", "HEAD", "OPTIONS"];
|
|
@@ -3202,7 +3346,7 @@ declare const NetworkEgress: readonly ["restricted", "open"];
|
|
|
3202
3346
|
type NetworkEgress = (typeof NetworkEgress)[number];
|
|
3203
3347
|
declare const ObligationStatus: readonly ["required", "in_progress", "fulfilled", "waived", "expired"];
|
|
3204
3348
|
type ObligationStatus = (typeof ObligationStatus)[number];
|
|
3205
|
-
declare const OfficerTitle: readonly ["ceo", "cfo", "secretary", "president", "vp", "other"];
|
|
3349
|
+
declare const OfficerTitle: readonly ["ceo", "cfo", "cto", "coo", "secretary", "treasurer", "president", "vp", "other"];
|
|
3206
3350
|
type OfficerTitle = (typeof OfficerTitle)[number];
|
|
3207
3351
|
declare const PaymentMethod: readonly ["bank_transfer", "card", "check", "wire", "ach"];
|
|
3208
3352
|
type PaymentMethod = (typeof PaymentMethod)[number];
|
|
@@ -3256,7 +3400,9 @@ declare const VoteValue: readonly ["for", "against", "abstain", "recusal"];
|
|
|
3256
3400
|
type VoteValue = (typeof VoteValue)[number];
|
|
3257
3401
|
declare const VotingMethod: readonly ["per_capita", "per_unit"];
|
|
3258
3402
|
type VotingMethod = (typeof VotingMethod)[number];
|
|
3403
|
+
declare const WorkItemStatus: readonly ["open", "claimed", "completed", "cancelled"];
|
|
3404
|
+
type WorkItemStatus = (typeof WorkItemStatus)[number];
|
|
3259
3405
|
declare const WorkflowType: readonly ["transfer", "fundraising"];
|
|
3260
3406
|
type WorkflowType = (typeof WorkflowType)[number];
|
|
3261
3407
|
|
|
3262
|
-
export { type AcceptEquityRoundRequest, type AcceptRoundRequest, AccountType, type AddFounderRequest, type AddFounderResponse, type AddSecurityRequest, type AgendaItemResponse, AgendaItemStatus, AgendaItemType, type AgentResponse, AgentStatus, AntiDilutionMethod, type ApiRecord, type ApplyEquityRoundTermsRequest, type ApplyRoundTermsRequest, AssigneeType, type AttachResolutionDocumentRequest, AuthoritySource, AuthorityTier, BankAccountStatus, BankAccountType, type BoardApproveEquityRoundRequest, type BoardApproveRoundRequest, BodyStatus, BodyType, CapTableAccess, CapTableBasis, type CapTableHolderSummary, type CapTableInstrumentSummary, type CapTableResponse, type CastVoteRequest, ClassificationResult, type ComputeResolutionRequest, ContactCategory, type ContactProfileResponse, type ContactResponse, ContactStatus, ContactType, ContractStatus, ContractTemplateType, ControlType, type ConveneMeetingRequest, type ConvertEntityRequest, CorpAPIClient, type CorpConfig, type CreateAgentRequest, type CreateContactRequest, type CreateEquityRoundRequest, type CreateExecutionIntentRequest, type CreateFormationRequest, type CreatePendingFormationRequest, type CreateRoundRequest, Currency, DeadlineSeverity, DeadlineStatus, type DigestSummary, type DigestTriggerResponse, type DissolveEntityRequest, DistributionStatus, DistributionType, DocumentRequestStatus, type DocumentResponse, DocumentStatus, type DocumentSummary, DocumentType, EntityType, type EquityRoundResponse, EquityRoundStatus, EscalationStatus, type ExecuteRoundConversionRequest, type FinalizeAgendaItemRequest, type FormationGatesResponse, type FormationResponse, FormationState, FormationStatus, type FormationStatusResponse, type FormationWithCapTableResponse, GENERATED_TOOL_DEFINITIONS, GlAccountCode, GovernanceAuditEventType, type GovernanceBodyResponse, GovernanceMode, type GovernanceSeatResponse, GovernanceTriggerSource, GovernanceTriggerType, GoverningDocType, HolderType, HttpMethod, IncidentSeverity, IncidentStatus, InstrumentKind, InstrumentStatus, type IntentResponse, IntentStatus, InvestorType, type InvoiceResponse, InvoiceStatus, type IssueStagedRoundResponse, JournalEntryStatus, type LLMResponse, LegalEntityRole, type MeetingResponse, MeetingStatus, MeetingType, MemberRole, NetworkEgress, type ObligationResponse, ObligationStatus, type ObligationsSummaryResponse, OfficerTitle, PaymentMethod, PaymentStatus, PayrollStatus, type PendingFormationResponse, PositionStatus, type PreviewRoundConversionRequest, QuorumStatus, QuorumThreshold, READ_ONLY_TOOLS, ReceiptStatus, ReconciliationStatus, Recurrence, type ResolutionResponse, ResolutionType, RiskLevel, type RoundResponse, SYSTEM_PROMPT_BASE, type ScheduleMeetingRequest, Scope, SeatRole, SeatStatus, SessionExpiredError, Side, type StartStagedRoundRequest, TOOL_DEFINITIONS, TOOL_REGISTRY, TaxFilingStatus, type ToolCall, type ToolContext, TransactionPacketStatus, TransferStatus, TransferType, TransfereeRights, Transport, type UpdateAgentRequest, type UpdateContactRequest, ValuationMethodology, ValuationStatus, ValuationType, type VoteResponse, VoteValue, VotingMethod, WorkflowType, type WorkspaceContactSummary, type WorkspaceEntitySummary, type WorkspaceStatusResponse, type WrittenConsentRequest, type WrittenConsentResponse, describeToolCall, executeTool, formatConfigSection, isWriteTool, provisionWorkspace };
|
|
3408
|
+
export { type AcceptEquityRoundRequest, type AcceptRoundRequest, AccountType, type AddFounderRequest, type AddFounderResponse, type AddSecurityRequest, type AgendaItemResponse, AgendaItemStatus, AgendaItemType, type AgentResponse, AgentStatus, AntiDilutionMethod, type ApiRecord, type ApplyEquityRoundTermsRequest, type ApplyRoundTermsRequest, AssigneeType, type AttachResolutionDocumentRequest, AuthoritySource, AuthorityTier, BankAccountStatus, BankAccountType, type BoardApproveEquityRoundRequest, type BoardApproveRoundRequest, BodyStatus, BodyType, CapTableAccess, CapTableBasis, type CapTableHolderSummary, type CapTableInstrument, type CapTableInstrumentSummary, type CapTableResponse, type CastVoteRequest, ClassificationResult, type ComputeResolutionRequest, ContactCategory, type ContactProfileResponse, type ContactResponse, ContactStatus, ContactType, ContractStatus, ContractTemplateType, ControlType, type ConveneMeetingRequest, type ConvertEntityRequest, CorpAPIClient, type CorpConfig, type CreateAgentRequest, type CreateContactRequest, type CreateEquityRoundRequest, type CreateExecutionIntentRequest, type CreateFormationRequest, type CreatePendingFormationRequest, type CreateRoundRequest, Currency, DeadlineSeverity, DeadlineStatus, type DigestSummary, type DigestTriggerResponse, type DissolveEntityRequest, DistributionStatus, DistributionType, DocumentRequestStatus, type DocumentResponse, DocumentStatus, type DocumentSummary, DocumentType, EntityType, type EquityRoundResponse, EquityRoundStatus, EscalationStatus, type ExecuteRoundConversionRequest, type FinalizeAgendaItemRequest, type FormationGatesResponse, type FormationResponse, FormationState, FormationStatus, type FormationStatusResponse, type FormationWithCapTableResponse, GENERATED_TOOL_DEFINITIONS, GlAccountCode, GovernanceAuditEventType, type GovernanceBodyResponse, GovernanceMode, type GovernanceSeatResponse, GovernanceTriggerSource, GovernanceTriggerType, GoverningDocType, GrantType, HolderType, HttpMethod, IncidentSeverity, IncidentStatus, InstrumentKind, InstrumentStatus, type IntentResponse, IntentStatus, InvestorType, type InvoiceResponse, InvoiceStatus, type IssueStagedRoundResponse, JournalEntryStatus, type LLMResponse, LegalEntityRole, type MeetingResponse, MeetingStatus, MeetingType, MemberRole, NetworkEgress, type ObligationResponse, ObligationStatus, type ObligationsSummaryResponse, OfficerTitle, PaymentMethod, PaymentStatus, PayrollStatus, type PendingFormationResponse, PositionStatus, type PreviewRoundConversionRequest, QuorumStatus, QuorumThreshold, READ_ONLY_TOOLS, ReceiptStatus, ReconciliationStatus, Recurrence, type ResolutionResponse, ResolutionType, RiskLevel, type RoundResponse, SYSTEM_PROMPT_BASE, type ScheduleMeetingRequest, Scope, SeatRole, SeatStatus, SessionExpiredError, Side, type StartStagedRoundRequest, TOOL_DEFINITIONS, TOOL_REGISTRY, TaxFilingStatus, type ToolCall, type ToolContext, TransactionPacketStatus, TransferStatus, TransferType, TransfereeRights, Transport, type UpdateAgentRequest, type UpdateContactRequest, ValuationMethodology, ValuationStatus, ValuationType, type VoteResponse, VoteValue, VotingMethod, WorkItemStatus, WorkflowType, type WorkspaceContactSummary, type WorkspaceEntitySummary, type WorkspaceStatusResponse, type WrittenConsentRequest, type WrittenConsentResponse, describeToolCall, ensureSafeInstrument, executeTool, formatConfigSection, isWriteTool, provisionWorkspace };
|