@opengeni/contracts 1.0.1 → 2.2.0-canary.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.
- package/dist/agent-authored-durable-text.d.ts +64 -0
- package/dist/atlassian.d.ts +1 -0
- package/dist/atlassian.js +14 -13
- package/dist/{chunk-Y3MLSLB4.js → chunk-3SIZGL3O.js} +42 -30
- package/dist/chunk-3SIZGL3O.js.map +1 -0
- package/dist/{chunk-JBCIY7QD.js → chunk-7RMTKFJW.js} +45 -22
- package/dist/chunk-7RMTKFJW.js.map +1 -0
- package/dist/{chunk-NX5JNF4L.js → chunk-7ZZ3R27P.js} +9322 -5798
- package/dist/chunk-7ZZ3R27P.js.map +1 -0
- package/dist/{chunk-5UDNP7AO.js → chunk-MRWYRAS5.js} +56 -8
- package/dist/chunk-MRWYRAS5.js.map +1 -0
- package/dist/{chunk-LW7OH6CS.js → chunk-N6GRVXAJ.js} +6 -5
- package/dist/chunk-N6GRVXAJ.js.map +1 -0
- package/dist/{chunk-TZ6YEYN4.js → chunk-NVJMJWLL.js} +3 -1
- package/dist/chunk-NVJMJWLL.js.map +1 -0
- package/dist/chunk-PX3VCKAU.js +29 -0
- package/dist/chunk-PX3VCKAU.js.map +1 -0
- package/dist/{chunk-LSB7GRLG.js → chunk-TXTQIYCV.js} +15 -11
- package/dist/chunk-TXTQIYCV.js.map +1 -0
- package/dist/{chunk-CADSX6UN.js → chunk-Y3KNXVTD.js} +2 -2
- package/dist/chunk-YBW5JSA3.js +251 -0
- package/dist/chunk-YBW5JSA3.js.map +1 -0
- package/dist/company-brain-governed-writes.d.ts +475 -0
- package/dist/company-brain.d.ts +398 -0
- package/dist/company-profile.d.ts +268 -0
- package/dist/connection-authority.d.ts +501 -0
- package/dist/connection-authority.js +364 -0
- package/dist/connection-authority.js.map +1 -0
- package/dist/connector-attachments.d.ts +95 -0
- package/dist/connector-attachments.js +51 -0
- package/dist/connector-attachments.js.map +1 -0
- package/dist/editable-artifact-codec-registry.d.ts +16 -7
- package/dist/editable-artifact-codec-registry.js +18 -8
- package/dist/editable-artifact-committed-transaction.d.ts +2 -2
- package/dist/editable-artifact-committed-transaction.js +2 -2
- package/dist/editable-artifact-live.d.ts +11 -12
- package/dist/editable-artifact-live.js +111 -46
- package/dist/editable-artifact-live.js.map +1 -1
- package/dist/editable-artifact-serialized-commit.d.ts +2 -1
- package/dist/editable-artifact-serialized-commit.js +9 -8
- package/dist/editable-artifact-versions.d.ts +20 -5
- package/dist/editable-artifact-versions.js +23 -5
- package/dist/editable-artifacts.d.ts +2 -0
- package/dist/editable-artifacts.js +51 -39
- package/dist/google-drive.d.ts +1 -0
- package/dist/google-drive.js +14 -13
- package/dist/google-drive.js.map +1 -1
- package/dist/governed-learning-activation.d.ts +154 -0
- package/dist/governed-learning-evaluator.d.ts +152 -0
- package/dist/index.d.ts +12224 -1328
- package/dist/index.js +831 -115
- package/dist/interaction.d.ts +68 -0
- package/dist/knowledge.d.ts +119 -0
- package/dist/organization-membership-lifecycle.d.ts +516 -0
- package/dist/permissions.d.ts +52 -0
- package/dist/personal-github.d.ts +319 -0
- package/dist/personal-github.js +209 -0
- package/dist/personal-github.js.map +1 -0
- package/dist/preference-registry.d.ts +17 -0
- package/dist/remember.d.ts +331 -0
- package/dist/sandbox-file-artifacts.d.ts +56 -0
- package/dist/sandbox-snapshots.d.ts +21 -0
- package/dist/slack-bot-scopes.d.ts +34 -14
- package/dist/slack-bot-scopes.js +5 -1
- package/dist/spreadsheet-artifact-commands.d.ts +2 -3
- package/dist/spreadsheet-artifact-commands.js +4 -2
- package/dist/spreadsheet-artifact-query.js +3 -2
- package/dist/task-notes.d.ts +42 -1
- package/dist/tool-result-spill.d.ts +16 -0
- package/dist/workspace-instruction-policies.d.ts +81 -0
- package/dist/workspace-learning-administration.d.ts +289 -0
- package/package.json +13 -1
- package/src/agent-authored-durable-text.ts +105 -0
- package/src/company-brain-governed-writes.ts +356 -0
- package/src/company-brain.ts +201 -0
- package/src/company-profile.ts +122 -1
- package/src/connection-authority.ts +413 -0
- package/src/connector-attachments.ts +327 -0
- package/src/editable-artifact-codec-registry.ts +55 -17
- package/src/editable-artifact-committed-transaction.ts +44 -31
- package/src/editable-artifact-live.ts +123 -57
- package/src/editable-artifact-serialized-commit.ts +2 -1
- package/src/editable-artifact-versions.ts +26 -5
- package/src/editable-artifacts.ts +2 -0
- package/src/governed-learning-activation.ts +191 -0
- package/src/governed-learning-evaluator.ts +176 -0
- package/src/index.ts +3033 -392
- package/src/interaction.ts +55 -1
- package/src/knowledge.ts +118 -6
- package/src/organization-membership-lifecycle.ts +330 -0
- package/src/permissions.ts +55 -0
- package/src/personal-github.ts +267 -0
- package/src/preference-registry.ts +17 -0
- package/src/remember.ts +242 -0
- package/src/sandbox-file-artifacts.ts +65 -0
- package/src/sandbox-snapshots.ts +78 -0
- package/src/slack-bot-scopes.ts +81 -9
- package/src/spreadsheet-artifact-commands.ts +12 -13
- package/src/task-notes.ts +14 -1
- package/src/tool-result-spill.ts +35 -0
- package/src/workspace-instruction-policies.ts +30 -0
- package/src/workspace-learning-administration.ts +88 -0
- package/dist/chunk-5UDNP7AO.js.map +0 -1
- package/dist/chunk-BVGIYW7D.js +0 -11
- package/dist/chunk-BVGIYW7D.js.map +0 -1
- package/dist/chunk-JBCIY7QD.js.map +0 -1
- package/dist/chunk-LSB7GRLG.js.map +0 -1
- package/dist/chunk-LW7OH6CS.js.map +0 -1
- package/dist/chunk-NX5JNF4L.js.map +0 -1
- package/dist/chunk-TZ6YEYN4.js.map +0 -1
- package/dist/chunk-Y3MLSLB4.js.map +0 -1
- /package/dist/{chunk-CADSX6UN.js.map → chunk-Y3KNXVTD.js.map} +0 -0
|
@@ -37,12 +37,41 @@ export declare const CompanyProfileContent: z.ZodObject<{
|
|
|
37
37
|
}, z.core.$strip>>;
|
|
38
38
|
}, z.core.$strict>;
|
|
39
39
|
export type CompanyProfileContent = z.infer<typeof CompanyProfileContent>;
|
|
40
|
+
/**
|
|
41
|
+
* The same profile, bounded for an **agent** author. The human `account:admin`
|
|
42
|
+
* route keeps `CompanyProfileContent` and its wider limits; this is the shape
|
|
43
|
+
* the first-party `company_profile_propose` tool accepts, because the profile is
|
|
44
|
+
* the largest always-on prompt surface in the product and a model left to its
|
|
45
|
+
* own judgement fills every field to the ceiling.
|
|
46
|
+
*/
|
|
47
|
+
export declare const AgentAuthoredCompanyProfileContent: z.ZodObject<{
|
|
48
|
+
identity: z.ZodNullable<z.ZodString>;
|
|
49
|
+
mission: z.ZodNullable<z.ZodString>;
|
|
50
|
+
products: z.ZodArray<z.ZodObject<{
|
|
51
|
+
key: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
52
|
+
content: z.ZodString;
|
|
53
|
+
}, z.core.$strip>>;
|
|
54
|
+
customers: z.ZodArray<z.ZodObject<{
|
|
55
|
+
key: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
56
|
+
content: z.ZodString;
|
|
57
|
+
}, z.core.$strip>>;
|
|
58
|
+
goals: z.ZodArray<z.ZodObject<{
|
|
59
|
+
key: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
60
|
+
content: z.ZodString;
|
|
61
|
+
}, z.core.$strip>>;
|
|
62
|
+
constraints: z.ZodArray<z.ZodObject<{
|
|
63
|
+
key: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
64
|
+
content: z.ZodString;
|
|
65
|
+
}, z.core.$strip>>;
|
|
66
|
+
}, z.core.$strict>;
|
|
67
|
+
export type AgentAuthoredCompanyProfileContent = z.infer<typeof AgentAuthoredCompanyProfileContent>;
|
|
40
68
|
export declare const CompanyProfileRevisionIntent: z.ZodEnum<{
|
|
41
69
|
active: "active";
|
|
42
70
|
proposal: "proposal";
|
|
43
71
|
}>;
|
|
44
72
|
export type CompanyProfileRevisionIntent = z.infer<typeof CompanyProfileRevisionIntent>;
|
|
45
73
|
export declare const CompanyProfileProvenanceSource: z.ZodEnum<{
|
|
74
|
+
agent_admin: "agent_admin";
|
|
46
75
|
durable_learning: "durable_learning";
|
|
47
76
|
human: "human";
|
|
48
77
|
migration: "migration";
|
|
@@ -97,6 +126,7 @@ export declare const CompanyProfileRevision: z.ZodObject<{
|
|
|
97
126
|
}, z.core.$strict>;
|
|
98
127
|
provenance: z.ZodObject<{
|
|
99
128
|
source: z.ZodEnum<{
|
|
129
|
+
agent_admin: "agent_admin";
|
|
100
130
|
durable_learning: "durable_learning";
|
|
101
131
|
human: "human";
|
|
102
132
|
migration: "migration";
|
|
@@ -149,6 +179,7 @@ export declare const CompanyProfileSnapshotEntry: z.ZodObject<{
|
|
|
149
179
|
activatedAt: z.ZodString;
|
|
150
180
|
provenance: z.ZodObject<{
|
|
151
181
|
source: z.ZodEnum<{
|
|
182
|
+
agent_admin: "agent_admin";
|
|
152
183
|
durable_learning: "durable_learning";
|
|
153
184
|
human: "human";
|
|
154
185
|
migration: "migration";
|
|
@@ -173,6 +204,7 @@ export declare const CompanyProfileSnapshot: z.ZodObject<{
|
|
|
173
204
|
activatedAt: z.ZodString;
|
|
174
205
|
provenance: z.ZodObject<{
|
|
175
206
|
source: z.ZodEnum<{
|
|
207
|
+
agent_admin: "agent_admin";
|
|
176
208
|
durable_learning: "durable_learning";
|
|
177
209
|
human: "human";
|
|
178
210
|
migration: "migration";
|
|
@@ -202,6 +234,7 @@ export declare const ResolvedCompanyProfileSnapshot: z.ZodObject<{
|
|
|
202
234
|
activatedAt: z.ZodString;
|
|
203
235
|
provenance: z.ZodObject<{
|
|
204
236
|
source: z.ZodEnum<{
|
|
237
|
+
agent_admin: "agent_admin";
|
|
205
238
|
durable_learning: "durable_learning";
|
|
206
239
|
human: "human";
|
|
207
240
|
migration: "migration";
|
|
@@ -277,6 +310,7 @@ export declare const CompanyProfileListResponse: z.ZodObject<{
|
|
|
277
310
|
}, z.core.$strict>;
|
|
278
311
|
provenance: z.ZodObject<{
|
|
279
312
|
source: z.ZodEnum<{
|
|
313
|
+
agent_admin: "agent_admin";
|
|
280
314
|
durable_learning: "durable_learning";
|
|
281
315
|
human: "human";
|
|
282
316
|
migration: "migration";
|
|
@@ -319,6 +353,7 @@ export declare const CompanyProfileListResponse: z.ZodObject<{
|
|
|
319
353
|
}, z.core.$strict>;
|
|
320
354
|
provenance: z.ZodObject<{
|
|
321
355
|
source: z.ZodEnum<{
|
|
356
|
+
agent_admin: "agent_admin";
|
|
322
357
|
durable_learning: "durable_learning";
|
|
323
358
|
human: "human";
|
|
324
359
|
migration: "migration";
|
|
@@ -430,6 +465,7 @@ export declare const CompanyProfileMutationResponse: z.ZodObject<{
|
|
|
430
465
|
}, z.core.$strict>;
|
|
431
466
|
provenance: z.ZodObject<{
|
|
432
467
|
source: z.ZodEnum<{
|
|
468
|
+
agent_admin: "agent_admin";
|
|
433
469
|
durable_learning: "durable_learning";
|
|
434
470
|
human: "human";
|
|
435
471
|
migration: "migration";
|
|
@@ -473,6 +509,236 @@ export declare const CompanyProfileMutationResponse: z.ZodObject<{
|
|
|
473
509
|
}, z.core.$strip>>;
|
|
474
510
|
}, z.core.$strip>;
|
|
475
511
|
export type CompanyProfileMutationResponse = z.infer<typeof CompanyProfileMutationResponse>;
|
|
512
|
+
export declare const COMPANY_PROFILE_AGENT_APPROVE_OPTION: "activate";
|
|
513
|
+
export declare const COMPANY_PROFILE_AGENT_REJECT_OPTION: "skip";
|
|
514
|
+
export declare const CompanyProfileAgentAttempt: z.ZodObject<{
|
|
515
|
+
accountId: z.ZodString;
|
|
516
|
+
workspaceId: z.ZodString;
|
|
517
|
+
sessionId: z.ZodString;
|
|
518
|
+
turnId: z.ZodString;
|
|
519
|
+
attemptId: z.ZodString;
|
|
520
|
+
executionGeneration: z.ZodNumber;
|
|
521
|
+
agentSubjectId: z.ZodString;
|
|
522
|
+
}, z.core.$strict>;
|
|
523
|
+
export type CompanyProfileAgentAttempt = z.infer<typeof CompanyProfileAgentAttempt>;
|
|
524
|
+
export declare const CompanyProfileAgentProposalRequest: z.ZodObject<{
|
|
525
|
+
operationId: z.ZodString;
|
|
526
|
+
profile: z.ZodObject<{
|
|
527
|
+
identity: z.ZodNullable<z.ZodString>;
|
|
528
|
+
mission: z.ZodNullable<z.ZodString>;
|
|
529
|
+
products: z.ZodArray<z.ZodObject<{
|
|
530
|
+
key: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
531
|
+
content: z.ZodString;
|
|
532
|
+
}, z.core.$strip>>;
|
|
533
|
+
customers: z.ZodArray<z.ZodObject<{
|
|
534
|
+
key: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
535
|
+
content: z.ZodString;
|
|
536
|
+
}, z.core.$strip>>;
|
|
537
|
+
goals: z.ZodArray<z.ZodObject<{
|
|
538
|
+
key: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
539
|
+
content: z.ZodString;
|
|
540
|
+
}, z.core.$strip>>;
|
|
541
|
+
constraints: z.ZodArray<z.ZodObject<{
|
|
542
|
+
key: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
543
|
+
content: z.ZodString;
|
|
544
|
+
}, z.core.$strip>>;
|
|
545
|
+
}, z.core.$strict>;
|
|
546
|
+
reason: z.ZodString;
|
|
547
|
+
}, z.core.$strict>;
|
|
548
|
+
export type CompanyProfileAgentProposalRequest = z.infer<typeof CompanyProfileAgentProposalRequest>;
|
|
549
|
+
export declare const CompanyProfileAgentHumanInputPrompt: z.ZodObject<{
|
|
550
|
+
questions: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
551
|
+
id: z.ZodString;
|
|
552
|
+
kind: z.ZodEnum<{
|
|
553
|
+
multi_select: "multi_select";
|
|
554
|
+
single_select: "single_select";
|
|
555
|
+
text: "text";
|
|
556
|
+
}>;
|
|
557
|
+
prompt: z.ZodString;
|
|
558
|
+
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
559
|
+
helpText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
560
|
+
options: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
561
|
+
id: z.ZodString;
|
|
562
|
+
label: z.ZodString;
|
|
563
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
564
|
+
}, z.core.$strip>>>;
|
|
565
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
566
|
+
allowOther: z.ZodDefault<z.ZodBoolean>;
|
|
567
|
+
validation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
568
|
+
minSelections: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
569
|
+
maxSelections: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
570
|
+
}, z.core.$strip>>>;
|
|
571
|
+
}, z.core.$strip>>>;
|
|
572
|
+
allowSkip: z.ZodLiteral<false>;
|
|
573
|
+
}, z.core.$strip>;
|
|
574
|
+
export type CompanyProfileAgentHumanInputPrompt = z.infer<typeof CompanyProfileAgentHumanInputPrompt>;
|
|
575
|
+
export declare const CompanyProfileAgentProposalReceipt: z.ZodObject<{
|
|
576
|
+
status: z.ZodLiteral<"confirmation_required">;
|
|
577
|
+
operationId: z.ZodString;
|
|
578
|
+
proposalReceiptId: z.ZodString;
|
|
579
|
+
revision: z.ZodObject<{
|
|
580
|
+
id: z.ZodString;
|
|
581
|
+
revision: z.ZodNumber;
|
|
582
|
+
contentHash: z.ZodString;
|
|
583
|
+
operationId: z.ZodString;
|
|
584
|
+
accountId: z.ZodString;
|
|
585
|
+
intent: z.ZodEnum<{
|
|
586
|
+
active: "active";
|
|
587
|
+
proposal: "proposal";
|
|
588
|
+
}>;
|
|
589
|
+
profile: z.ZodObject<{
|
|
590
|
+
identity: z.ZodNullable<z.ZodString>;
|
|
591
|
+
mission: z.ZodNullable<z.ZodString>;
|
|
592
|
+
products: z.ZodArray<z.ZodObject<{
|
|
593
|
+
key: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
594
|
+
content: z.ZodString;
|
|
595
|
+
}, z.core.$strip>>;
|
|
596
|
+
customers: z.ZodArray<z.ZodObject<{
|
|
597
|
+
key: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
598
|
+
content: z.ZodString;
|
|
599
|
+
}, z.core.$strip>>;
|
|
600
|
+
goals: z.ZodArray<z.ZodObject<{
|
|
601
|
+
key: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
602
|
+
content: z.ZodString;
|
|
603
|
+
}, z.core.$strip>>;
|
|
604
|
+
constraints: z.ZodArray<z.ZodObject<{
|
|
605
|
+
key: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
606
|
+
content: z.ZodString;
|
|
607
|
+
}, z.core.$strip>>;
|
|
608
|
+
}, z.core.$strict>;
|
|
609
|
+
provenance: z.ZodObject<{
|
|
610
|
+
source: z.ZodEnum<{
|
|
611
|
+
agent_admin: "agent_admin";
|
|
612
|
+
durable_learning: "durable_learning";
|
|
613
|
+
human: "human";
|
|
614
|
+
migration: "migration";
|
|
615
|
+
}>;
|
|
616
|
+
sourceId: z.ZodNullable<z.ZodString>;
|
|
617
|
+
}, z.core.$strip>;
|
|
618
|
+
supersedesRevisionId: z.ZodNullable<z.ZodString>;
|
|
619
|
+
createdBySubjectId: z.ZodString;
|
|
620
|
+
createdAt: z.ZodString;
|
|
621
|
+
}, z.core.$strip>;
|
|
622
|
+
humanInput: z.ZodObject<{
|
|
623
|
+
questions: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
624
|
+
id: z.ZodString;
|
|
625
|
+
kind: z.ZodEnum<{
|
|
626
|
+
multi_select: "multi_select";
|
|
627
|
+
single_select: "single_select";
|
|
628
|
+
text: "text";
|
|
629
|
+
}>;
|
|
630
|
+
prompt: z.ZodString;
|
|
631
|
+
label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
632
|
+
helpText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
633
|
+
options: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
634
|
+
id: z.ZodString;
|
|
635
|
+
label: z.ZodString;
|
|
636
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
637
|
+
}, z.core.$strip>>>;
|
|
638
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
639
|
+
allowOther: z.ZodDefault<z.ZodBoolean>;
|
|
640
|
+
validation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
641
|
+
minSelections: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
642
|
+
maxSelections: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
643
|
+
}, z.core.$strip>>>;
|
|
644
|
+
}, z.core.$strip>>>;
|
|
645
|
+
allowSkip: z.ZodLiteral<false>;
|
|
646
|
+
}, z.core.$strip>;
|
|
647
|
+
confirmWith: z.ZodLiteral<"company_profile_confirm">;
|
|
648
|
+
replayed: z.ZodBoolean;
|
|
649
|
+
}, z.core.$strip>;
|
|
650
|
+
export type CompanyProfileAgentProposalReceipt = z.infer<typeof CompanyProfileAgentProposalReceipt>;
|
|
651
|
+
export declare const CompanyProfileAgentConfirmRequest: z.ZodObject<{
|
|
652
|
+
operationId: z.ZodString;
|
|
653
|
+
proposalReceiptId: z.ZodString;
|
|
654
|
+
humanInputRequestId: z.ZodString;
|
|
655
|
+
}, z.core.$strict>;
|
|
656
|
+
export type CompanyProfileAgentConfirmRequest = z.infer<typeof CompanyProfileAgentConfirmRequest>;
|
|
657
|
+
export declare const CompanyProfileAgentConfirmationReceipt: z.ZodObject<{
|
|
658
|
+
status: z.ZodLiteral<"activated">;
|
|
659
|
+
operationId: z.ZodString;
|
|
660
|
+
confirmationReceiptId: z.ZodString;
|
|
661
|
+
proposalReceiptId: z.ZodString;
|
|
662
|
+
humanInputRequestId: z.ZodString;
|
|
663
|
+
mutation: z.ZodObject<{
|
|
664
|
+
revision: z.ZodNullable<z.ZodObject<{
|
|
665
|
+
id: z.ZodString;
|
|
666
|
+
revision: z.ZodNumber;
|
|
667
|
+
contentHash: z.ZodString;
|
|
668
|
+
operationId: z.ZodString;
|
|
669
|
+
accountId: z.ZodString;
|
|
670
|
+
intent: z.ZodEnum<{
|
|
671
|
+
active: "active";
|
|
672
|
+
proposal: "proposal";
|
|
673
|
+
}>;
|
|
674
|
+
profile: z.ZodObject<{
|
|
675
|
+
identity: z.ZodNullable<z.ZodString>;
|
|
676
|
+
mission: z.ZodNullable<z.ZodString>;
|
|
677
|
+
products: z.ZodArray<z.ZodObject<{
|
|
678
|
+
key: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
679
|
+
content: z.ZodString;
|
|
680
|
+
}, z.core.$strip>>;
|
|
681
|
+
customers: z.ZodArray<z.ZodObject<{
|
|
682
|
+
key: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
683
|
+
content: z.ZodString;
|
|
684
|
+
}, z.core.$strip>>;
|
|
685
|
+
goals: z.ZodArray<z.ZodObject<{
|
|
686
|
+
key: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
687
|
+
content: z.ZodString;
|
|
688
|
+
}, z.core.$strip>>;
|
|
689
|
+
constraints: z.ZodArray<z.ZodObject<{
|
|
690
|
+
key: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
691
|
+
content: z.ZodString;
|
|
692
|
+
}, z.core.$strip>>;
|
|
693
|
+
}, z.core.$strict>;
|
|
694
|
+
provenance: z.ZodObject<{
|
|
695
|
+
source: z.ZodEnum<{
|
|
696
|
+
agent_admin: "agent_admin";
|
|
697
|
+
durable_learning: "durable_learning";
|
|
698
|
+
human: "human";
|
|
699
|
+
migration: "migration";
|
|
700
|
+
}>;
|
|
701
|
+
sourceId: z.ZodNullable<z.ZodString>;
|
|
702
|
+
}, z.core.$strip>;
|
|
703
|
+
supersedesRevisionId: z.ZodNullable<z.ZodString>;
|
|
704
|
+
createdBySubjectId: z.ZodString;
|
|
705
|
+
createdAt: z.ZodString;
|
|
706
|
+
}, z.core.$strip>>;
|
|
707
|
+
head: z.ZodNullable<z.ZodObject<{
|
|
708
|
+
accountId: z.ZodString;
|
|
709
|
+
revisionId: z.ZodString;
|
|
710
|
+
revision: z.ZodNumber;
|
|
711
|
+
contentHash: z.ZodString;
|
|
712
|
+
activationVersion: z.ZodNumber;
|
|
713
|
+
activatedAt: z.ZodString;
|
|
714
|
+
}, z.core.$strip>>;
|
|
715
|
+
event: z.ZodNullable<z.ZodObject<{
|
|
716
|
+
id: z.ZodString;
|
|
717
|
+
operationId: z.ZodString;
|
|
718
|
+
accountId: z.ZodString;
|
|
719
|
+
type: z.ZodEnum<{
|
|
720
|
+
activate: "activate";
|
|
721
|
+
rollback: "rollback";
|
|
722
|
+
}>;
|
|
723
|
+
activationVersion: z.ZodNumber;
|
|
724
|
+
oldRevision: z.ZodNullable<z.ZodObject<{
|
|
725
|
+
id: z.ZodString;
|
|
726
|
+
revision: z.ZodNumber;
|
|
727
|
+
contentHash: z.ZodString;
|
|
728
|
+
}, z.core.$strip>>;
|
|
729
|
+
newRevision: z.ZodNullable<z.ZodObject<{
|
|
730
|
+
id: z.ZodString;
|
|
731
|
+
revision: z.ZodNumber;
|
|
732
|
+
contentHash: z.ZodString;
|
|
733
|
+
}, z.core.$strip>>;
|
|
734
|
+
actorSubjectId: z.ZodString;
|
|
735
|
+
reason: z.ZodString;
|
|
736
|
+
createdAt: z.ZodString;
|
|
737
|
+
}, z.core.$strip>>;
|
|
738
|
+
}, z.core.$strip>;
|
|
739
|
+
replayed: z.ZodBoolean;
|
|
740
|
+
}, z.core.$strip>;
|
|
741
|
+
export type CompanyProfileAgentConfirmationReceipt = z.infer<typeof CompanyProfileAgentConfirmationReceipt>;
|
|
476
742
|
export declare const CompanyProfileDiffRequest: z.ZodObject<{
|
|
477
743
|
fromRevisionId: z.ZodString;
|
|
478
744
|
toRevisionId: z.ZodString;
|
|
@@ -511,6 +777,7 @@ export declare const CompanyProfileDiffResponse: z.ZodObject<{
|
|
|
511
777
|
}, z.core.$strict>;
|
|
512
778
|
provenance: z.ZodObject<{
|
|
513
779
|
source: z.ZodEnum<{
|
|
780
|
+
agent_admin: "agent_admin";
|
|
514
781
|
durable_learning: "durable_learning";
|
|
515
782
|
human: "human";
|
|
516
783
|
migration: "migration";
|
|
@@ -553,6 +820,7 @@ export declare const CompanyProfileDiffResponse: z.ZodObject<{
|
|
|
553
820
|
}, z.core.$strict>;
|
|
554
821
|
provenance: z.ZodObject<{
|
|
555
822
|
source: z.ZodEnum<{
|
|
823
|
+
agent_admin: "agent_admin";
|
|
556
824
|
durable_learning: "durable_learning";
|
|
557
825
|
human: "human";
|
|
558
826
|
migration: "migration";
|