@opengeni/contracts 3.1.0-canary.1 → 3.1.0-canary.2
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-instruction-changes.d.ts +112 -0
- package/dist/agent-learning.d.ts +243 -0
- package/dist/atlassian.js +2 -2
- package/dist/{chunk-TEMFILR7.js → chunk-2AC63F4S.js} +30 -2
- package/dist/chunk-2AC63F4S.js.map +1 -0
- package/dist/{chunk-OSBYTE3O.js → chunk-OVFORMPW.js} +2 -2
- package/dist/{chunk-UR2GFYIE.js → chunk-QQUJ6NPW.js} +8437 -7942
- package/dist/chunk-QQUJ6NPW.js.map +1 -0
- package/dist/{chunk-WBYTNVIW.js → chunk-RKX3NQYS.js} +1 -1
- package/dist/company-brain.d.ts +19 -81
- package/dist/connect.js +2 -2
- package/dist/connection-authority.js +3 -3
- package/dist/external-identities.d.ts +36 -0
- package/dist/external-identities.js +7 -1
- package/dist/google-drive.js +2 -2
- package/dist/host-mcp-bindings.d.ts +34 -10
- package/dist/host-mcp-bindings.js +28 -6
- package/dist/host-mcp-bindings.js.map +1 -1
- package/dist/host-mcp-resolvers.d.ts +32 -0
- package/dist/host-mcp-resolvers.js +34 -0
- package/dist/host-mcp-resolvers.js.map +1 -0
- package/dist/index.d.ts +1125 -75
- package/dist/index.js +121 -35
- package/dist/knowledge-entries.d.ts +905 -0
- package/dist/mcp-endpoint.js +9 -0
- package/dist/mcp-endpoint.js.map +1 -0
- package/dist/personal-github.js +2 -2
- package/dist/plugin-discovery.js +1 -1
- package/dist/workspace-instruction-policies.d.ts +13 -0
- package/dist/workspace-state.d.ts +85 -416
- package/package.json +9 -1
- package/src/agent-instruction-changes.ts +98 -0
- package/src/agent-learning.ts +161 -0
- package/src/external-identities.ts +44 -0
- package/src/host-mcp-bindings.ts +41 -1
- package/src/host-mcp-resolvers.ts +50 -0
- package/src/index.ts +163 -11
- package/src/knowledge-entries.ts +343 -0
- package/src/workspace-instruction-policies.ts +1 -0
- package/src/workspace-state.ts +16 -126
- package/dist/chunk-TEMFILR7.js.map +0 -1
- package/dist/chunk-UR2GFYIE.js.map +0 -1
- /package/dist/{chunk-OSBYTE3O.js.map → chunk-OVFORMPW.js.map} +0 -0
- /package/dist/{chunk-WBYTNVIW.js.map → chunk-RKX3NQYS.js.map} +0 -0
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const AgentInstructionEditMode: z.ZodEnum<{
|
|
3
|
+
append: "append";
|
|
4
|
+
edit: "edit";
|
|
5
|
+
replace: "replace";
|
|
6
|
+
}>;
|
|
7
|
+
export type AgentInstructionEditMode = z.infer<typeof AgentInstructionEditMode>;
|
|
8
|
+
export declare const AgentInstructionSaveRequest: z.ZodObject<{
|
|
9
|
+
operationId: z.ZodUUID;
|
|
10
|
+
target: z.ZodObject<{
|
|
11
|
+
kind: z.ZodEnum<{
|
|
12
|
+
charter: "charter";
|
|
13
|
+
policy: "policy";
|
|
14
|
+
}>;
|
|
15
|
+
scope: z.ZodEnum<{
|
|
16
|
+
global: "global";
|
|
17
|
+
role: "role";
|
|
18
|
+
}>;
|
|
19
|
+
roleKey: z.ZodNullable<z.ZodString>;
|
|
20
|
+
}, z.core.$strip>;
|
|
21
|
+
editMode: z.ZodEnum<{
|
|
22
|
+
append: "append";
|
|
23
|
+
edit: "edit";
|
|
24
|
+
replace: "replace";
|
|
25
|
+
}>;
|
|
26
|
+
content: z.ZodOptional<z.ZodString>;
|
|
27
|
+
oldText: z.ZodOptional<z.ZodString>;
|
|
28
|
+
newText: z.ZodOptional<z.ZodString>;
|
|
29
|
+
expectedCurrentRevisionId: z.ZodNullable<z.ZodUUID>;
|
|
30
|
+
expectedActivationVersion: z.ZodNumber;
|
|
31
|
+
evidence: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
32
|
+
entryId: z.ZodUUID;
|
|
33
|
+
revisionId: z.ZodUUID;
|
|
34
|
+
location: z.ZodDefault<z.ZodObject<{
|
|
35
|
+
page: z.ZodOptional<z.ZodNumber>;
|
|
36
|
+
passage: z.ZodOptional<z.ZodString>;
|
|
37
|
+
messageIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
38
|
+
path: z.ZodOptional<z.ZodString>;
|
|
39
|
+
commit: z.ZodOptional<z.ZodString>;
|
|
40
|
+
lineStart: z.ZodOptional<z.ZodNumber>;
|
|
41
|
+
lineEnd: z.ZodOptional<z.ZodNumber>;
|
|
42
|
+
}, z.core.$strict>>;
|
|
43
|
+
quote: z.ZodOptional<z.ZodString>;
|
|
44
|
+
}, z.core.$strict>>>;
|
|
45
|
+
reason: z.ZodString;
|
|
46
|
+
}, z.core.$strict>;
|
|
47
|
+
export type AgentInstructionSaveRequest = z.input<typeof AgentInstructionSaveRequest>;
|
|
48
|
+
export declare const AgentInstructionReviewRequest: z.ZodObject<{
|
|
49
|
+
operationId: z.ZodUUID;
|
|
50
|
+
revisionId: z.ZodUUID;
|
|
51
|
+
decision: z.ZodEnum<{
|
|
52
|
+
approve: "approve";
|
|
53
|
+
reject: "reject";
|
|
54
|
+
}>;
|
|
55
|
+
reason: z.ZodString;
|
|
56
|
+
}, z.core.$strict>;
|
|
57
|
+
export type AgentInstructionReviewRequest = z.infer<typeof AgentInstructionReviewRequest>;
|
|
58
|
+
export declare const AgentInstructionReceipt: z.ZodObject<{
|
|
59
|
+
operationId: z.ZodUUID;
|
|
60
|
+
revisionId: z.ZodUUID;
|
|
61
|
+
outcome: z.ZodEnum<{
|
|
62
|
+
pending: "pending";
|
|
63
|
+
published: "published";
|
|
64
|
+
rejected: "rejected";
|
|
65
|
+
}>;
|
|
66
|
+
reviewBatchId: z.ZodNullable<z.ZodUUID>;
|
|
67
|
+
replayed: z.ZodBoolean;
|
|
68
|
+
}, z.core.$strip>;
|
|
69
|
+
export type AgentInstructionReceipt = z.infer<typeof AgentInstructionReceipt>;
|
|
70
|
+
export declare const AgentInstructionReviewItem: z.ZodObject<{
|
|
71
|
+
revisionId: z.ZodUUID;
|
|
72
|
+
content: z.ZodString;
|
|
73
|
+
target: z.ZodObject<{
|
|
74
|
+
kind: z.ZodEnum<{
|
|
75
|
+
charter: "charter";
|
|
76
|
+
policy: "policy";
|
|
77
|
+
}>;
|
|
78
|
+
scope: z.ZodEnum<{
|
|
79
|
+
global: "global";
|
|
80
|
+
role: "role";
|
|
81
|
+
}>;
|
|
82
|
+
roleKey: z.ZodNullable<z.ZodString>;
|
|
83
|
+
}, z.core.$strip>;
|
|
84
|
+
reviewBatchId: z.ZodNullable<z.ZodUUID>;
|
|
85
|
+
sessionId: z.ZodNullable<z.ZodUUID>;
|
|
86
|
+
reason: z.ZodString;
|
|
87
|
+
createdAt: z.ZodString;
|
|
88
|
+
}, z.core.$strip>;
|
|
89
|
+
export type AgentInstructionReviewItem = z.infer<typeof AgentInstructionReviewItem>;
|
|
90
|
+
export declare const AgentInstructionReviewListResponse: z.ZodObject<{
|
|
91
|
+
entries: z.ZodArray<z.ZodObject<{
|
|
92
|
+
revisionId: z.ZodUUID;
|
|
93
|
+
content: z.ZodString;
|
|
94
|
+
target: z.ZodObject<{
|
|
95
|
+
kind: z.ZodEnum<{
|
|
96
|
+
charter: "charter";
|
|
97
|
+
policy: "policy";
|
|
98
|
+
}>;
|
|
99
|
+
scope: z.ZodEnum<{
|
|
100
|
+
global: "global";
|
|
101
|
+
role: "role";
|
|
102
|
+
}>;
|
|
103
|
+
roleKey: z.ZodNullable<z.ZodString>;
|
|
104
|
+
}, z.core.$strip>;
|
|
105
|
+
reviewBatchId: z.ZodNullable<z.ZodUUID>;
|
|
106
|
+
sessionId: z.ZodNullable<z.ZodUUID>;
|
|
107
|
+
reason: z.ZodString;
|
|
108
|
+
createdAt: z.ZodString;
|
|
109
|
+
}, z.core.$strip>>;
|
|
110
|
+
nextCursor: z.ZodNullable<z.ZodString>;
|
|
111
|
+
}, z.core.$strip>;
|
|
112
|
+
export type AgentInstructionReviewListResponse = z.infer<typeof AgentInstructionReviewListResponse>;
|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
/** Review controls publication. It never grants content or external-action authority. */
|
|
3
|
+
export declare const AgentLearningMode: z.ZodEnum<{
|
|
4
|
+
automatic: "automatic";
|
|
5
|
+
off: "off";
|
|
6
|
+
review_first: "review_first";
|
|
7
|
+
}>;
|
|
8
|
+
export type AgentLearningMode = z.infer<typeof AgentLearningMode>;
|
|
9
|
+
export declare const AgentLearningCategory: z.ZodEnum<{
|
|
10
|
+
instructions: "instructions";
|
|
11
|
+
knowledge: "knowledge";
|
|
12
|
+
skills: "skills";
|
|
13
|
+
}>;
|
|
14
|
+
export type AgentLearningCategory = z.infer<typeof AgentLearningCategory>;
|
|
15
|
+
export declare const AgentLearningDefaults: z.ZodObject<{
|
|
16
|
+
knowledge: z.ZodEnum<{
|
|
17
|
+
automatic: "automatic";
|
|
18
|
+
off: "off";
|
|
19
|
+
review_first: "review_first";
|
|
20
|
+
}>;
|
|
21
|
+
instructions: z.ZodEnum<{
|
|
22
|
+
automatic: "automatic";
|
|
23
|
+
off: "off";
|
|
24
|
+
review_first: "review_first";
|
|
25
|
+
}>;
|
|
26
|
+
skills: z.ZodEnum<{
|
|
27
|
+
automatic: "automatic";
|
|
28
|
+
off: "off";
|
|
29
|
+
review_first: "review_first";
|
|
30
|
+
}>;
|
|
31
|
+
}, z.core.$strict>;
|
|
32
|
+
export type AgentLearningDefaults = z.infer<typeof AgentLearningDefaults>;
|
|
33
|
+
export declare const DEFAULT_AGENT_LEARNING: Readonly<AgentLearningDefaults>;
|
|
34
|
+
/** An absent category inherits. `inherit` is a reset request, not persisted policy. */
|
|
35
|
+
export declare const AgentLearningOverrides: z.ZodObject<{
|
|
36
|
+
knowledge: z.ZodOptional<z.ZodEnum<{
|
|
37
|
+
automatic: "automatic";
|
|
38
|
+
off: "off";
|
|
39
|
+
review_first: "review_first";
|
|
40
|
+
}>>;
|
|
41
|
+
instructions: z.ZodOptional<z.ZodEnum<{
|
|
42
|
+
automatic: "automatic";
|
|
43
|
+
off: "off";
|
|
44
|
+
review_first: "review_first";
|
|
45
|
+
}>>;
|
|
46
|
+
skills: z.ZodOptional<z.ZodEnum<{
|
|
47
|
+
automatic: "automatic";
|
|
48
|
+
off: "off";
|
|
49
|
+
review_first: "review_first";
|
|
50
|
+
}>>;
|
|
51
|
+
}, z.core.$strict>;
|
|
52
|
+
export type AgentLearningOverrides = z.infer<typeof AgentLearningOverrides>;
|
|
53
|
+
export declare const AgentLearningOverridePatch: z.ZodObject<{
|
|
54
|
+
knowledge: z.ZodOptional<z.ZodUnion<[z.ZodEnum<{
|
|
55
|
+
automatic: "automatic";
|
|
56
|
+
off: "off";
|
|
57
|
+
review_first: "review_first";
|
|
58
|
+
}>, z.ZodLiteral<"inherit">]>>;
|
|
59
|
+
instructions: z.ZodOptional<z.ZodUnion<[z.ZodEnum<{
|
|
60
|
+
automatic: "automatic";
|
|
61
|
+
off: "off";
|
|
62
|
+
review_first: "review_first";
|
|
63
|
+
}>, z.ZodLiteral<"inherit">]>>;
|
|
64
|
+
skills: z.ZodOptional<z.ZodUnion<[z.ZodEnum<{
|
|
65
|
+
automatic: "automatic";
|
|
66
|
+
off: "off";
|
|
67
|
+
review_first: "review_first";
|
|
68
|
+
}>, z.ZodLiteral<"inherit">]>>;
|
|
69
|
+
}, z.core.$strict>;
|
|
70
|
+
export type AgentLearningOverridePatch = z.infer<typeof AgentLearningOverridePatch>;
|
|
71
|
+
export declare const AgentLearningContext: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
72
|
+
kind: z.ZodLiteral<"chat">;
|
|
73
|
+
id: z.ZodUUID;
|
|
74
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
75
|
+
kind: z.ZodLiteral<"scheduled_task">;
|
|
76
|
+
id: z.ZodUUID;
|
|
77
|
+
}, z.core.$strict>], "kind">;
|
|
78
|
+
export type AgentLearningContext = z.infer<typeof AgentLearningContext>;
|
|
79
|
+
export declare const AgentLearningOwner: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
80
|
+
kind: z.ZodLiteral<"workspace">;
|
|
81
|
+
workspaceId: z.ZodUUID;
|
|
82
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
83
|
+
kind: z.ZodLiteral<"personal">;
|
|
84
|
+
subjectId: z.ZodString;
|
|
85
|
+
}, z.core.$strict>], "kind">;
|
|
86
|
+
export type AgentLearningOwner = z.infer<typeof AgentLearningOwner>;
|
|
87
|
+
export declare const AgentLearningSettings: z.ZodObject<{
|
|
88
|
+
owner: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
89
|
+
kind: z.ZodLiteral<"workspace">;
|
|
90
|
+
workspaceId: z.ZodUUID;
|
|
91
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
92
|
+
kind: z.ZodLiteral<"personal">;
|
|
93
|
+
subjectId: z.ZodString;
|
|
94
|
+
}, z.core.$strict>], "kind">;
|
|
95
|
+
version: z.ZodNumber;
|
|
96
|
+
defaults: z.ZodObject<{
|
|
97
|
+
knowledge: z.ZodEnum<{
|
|
98
|
+
automatic: "automatic";
|
|
99
|
+
off: "off";
|
|
100
|
+
review_first: "review_first";
|
|
101
|
+
}>;
|
|
102
|
+
instructions: z.ZodEnum<{
|
|
103
|
+
automatic: "automatic";
|
|
104
|
+
off: "off";
|
|
105
|
+
review_first: "review_first";
|
|
106
|
+
}>;
|
|
107
|
+
skills: z.ZodEnum<{
|
|
108
|
+
automatic: "automatic";
|
|
109
|
+
off: "off";
|
|
110
|
+
review_first: "review_first";
|
|
111
|
+
}>;
|
|
112
|
+
}, z.core.$strict>;
|
|
113
|
+
}, z.core.$strict>;
|
|
114
|
+
export type AgentLearningSettings = z.infer<typeof AgentLearningSettings>;
|
|
115
|
+
export declare const AgentLearningContextSettings: z.ZodObject<{
|
|
116
|
+
context: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
117
|
+
kind: z.ZodLiteral<"chat">;
|
|
118
|
+
id: z.ZodUUID;
|
|
119
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
120
|
+
kind: z.ZodLiteral<"scheduled_task">;
|
|
121
|
+
id: z.ZodUUID;
|
|
122
|
+
}, z.core.$strict>], "kind">;
|
|
123
|
+
version: z.ZodNumber;
|
|
124
|
+
overrides: z.ZodObject<{
|
|
125
|
+
knowledge: z.ZodOptional<z.ZodEnum<{
|
|
126
|
+
automatic: "automatic";
|
|
127
|
+
off: "off";
|
|
128
|
+
review_first: "review_first";
|
|
129
|
+
}>>;
|
|
130
|
+
instructions: z.ZodOptional<z.ZodEnum<{
|
|
131
|
+
automatic: "automatic";
|
|
132
|
+
off: "off";
|
|
133
|
+
review_first: "review_first";
|
|
134
|
+
}>>;
|
|
135
|
+
skills: z.ZodOptional<z.ZodEnum<{
|
|
136
|
+
automatic: "automatic";
|
|
137
|
+
off: "off";
|
|
138
|
+
review_first: "review_first";
|
|
139
|
+
}>>;
|
|
140
|
+
}, z.core.$strict>;
|
|
141
|
+
}, z.core.$strict>;
|
|
142
|
+
export type AgentLearningContextSettings = z.infer<typeof AgentLearningContextSettings>;
|
|
143
|
+
/** Versioned settings returned by both central and contextual editors. */
|
|
144
|
+
export declare const AgentLearningSettingsRecord: z.ZodObject<{
|
|
145
|
+
ownerKey: z.ZodString;
|
|
146
|
+
contextKey: z.ZodString;
|
|
147
|
+
version: z.ZodNumber;
|
|
148
|
+
settings: z.ZodObject<{
|
|
149
|
+
knowledge: z.ZodOptional<z.ZodEnum<{
|
|
150
|
+
automatic: "automatic";
|
|
151
|
+
off: "off";
|
|
152
|
+
review_first: "review_first";
|
|
153
|
+
}>>;
|
|
154
|
+
instructions: z.ZodOptional<z.ZodEnum<{
|
|
155
|
+
automatic: "automatic";
|
|
156
|
+
off: "off";
|
|
157
|
+
review_first: "review_first";
|
|
158
|
+
}>>;
|
|
159
|
+
skills: z.ZodOptional<z.ZodEnum<{
|
|
160
|
+
automatic: "automatic";
|
|
161
|
+
off: "off";
|
|
162
|
+
review_first: "review_first";
|
|
163
|
+
}>>;
|
|
164
|
+
}, z.core.$strict>;
|
|
165
|
+
}, z.core.$strip>;
|
|
166
|
+
export type AgentLearningSettingsRecord = z.infer<typeof AgentLearningSettingsRecord>;
|
|
167
|
+
export declare const AgentLearningOverrideRecord: z.ZodObject<{
|
|
168
|
+
contextKey: z.ZodString;
|
|
169
|
+
version: z.ZodNumber;
|
|
170
|
+
settings: z.ZodObject<{
|
|
171
|
+
knowledge: z.ZodOptional<z.ZodEnum<{
|
|
172
|
+
automatic: "automatic";
|
|
173
|
+
off: "off";
|
|
174
|
+
review_first: "review_first";
|
|
175
|
+
}>>;
|
|
176
|
+
instructions: z.ZodOptional<z.ZodEnum<{
|
|
177
|
+
automatic: "automatic";
|
|
178
|
+
off: "off";
|
|
179
|
+
review_first: "review_first";
|
|
180
|
+
}>>;
|
|
181
|
+
skills: z.ZodOptional<z.ZodEnum<{
|
|
182
|
+
automatic: "automatic";
|
|
183
|
+
off: "off";
|
|
184
|
+
review_first: "review_first";
|
|
185
|
+
}>>;
|
|
186
|
+
}, z.core.$strict>;
|
|
187
|
+
updatedAt: z.ZodString;
|
|
188
|
+
label: z.ZodString;
|
|
189
|
+
}, z.core.$strip>;
|
|
190
|
+
export type AgentLearningOverrideRecord = z.infer<typeof AgentLearningOverrideRecord>;
|
|
191
|
+
export type SaveAgentLearningSettingsRequest = {
|
|
192
|
+
scope: "workspace" | "personal";
|
|
193
|
+
source?: AgentLearningContext;
|
|
194
|
+
operationId: string;
|
|
195
|
+
expectedVersion: number;
|
|
196
|
+
settings: AgentLearningOverridePatch;
|
|
197
|
+
};
|
|
198
|
+
export declare const AgentLearningEffectiveCategory: z.ZodObject<{
|
|
199
|
+
mode: z.ZodEnum<{
|
|
200
|
+
automatic: "automatic";
|
|
201
|
+
off: "off";
|
|
202
|
+
review_first: "review_first";
|
|
203
|
+
}>;
|
|
204
|
+
inherited: z.ZodBoolean;
|
|
205
|
+
}, z.core.$strict>;
|
|
206
|
+
export declare const AgentLearningEffectivePolicy: z.ZodObject<{
|
|
207
|
+
knowledge: z.ZodObject<{
|
|
208
|
+
mode: z.ZodEnum<{
|
|
209
|
+
automatic: "automatic";
|
|
210
|
+
off: "off";
|
|
211
|
+
review_first: "review_first";
|
|
212
|
+
}>;
|
|
213
|
+
inherited: z.ZodBoolean;
|
|
214
|
+
}, z.core.$strict>;
|
|
215
|
+
instructions: z.ZodObject<{
|
|
216
|
+
mode: z.ZodEnum<{
|
|
217
|
+
automatic: "automatic";
|
|
218
|
+
off: "off";
|
|
219
|
+
review_first: "review_first";
|
|
220
|
+
}>;
|
|
221
|
+
inherited: z.ZodBoolean;
|
|
222
|
+
}, z.core.$strict>;
|
|
223
|
+
skills: z.ZodObject<{
|
|
224
|
+
mode: z.ZodEnum<{
|
|
225
|
+
automatic: "automatic";
|
|
226
|
+
off: "off";
|
|
227
|
+
review_first: "review_first";
|
|
228
|
+
}>;
|
|
229
|
+
inherited: z.ZodBoolean;
|
|
230
|
+
}, z.core.$strict>;
|
|
231
|
+
}, z.core.$strict>;
|
|
232
|
+
export type AgentLearningEffectivePolicy = z.infer<typeof AgentLearningEffectivePolicy>;
|
|
233
|
+
/** Apply only at an authorized settings boundary; this function confers no authority. */
|
|
234
|
+
export declare function patchAgentLearningOverrides(current: AgentLearningOverrides, patch: AgentLearningOverridePatch): AgentLearningOverrides;
|
|
235
|
+
/** Pure resolution over accepted settings. Runtime callers persist the resulting snapshot. */
|
|
236
|
+
export declare function resolveAgentLearningPolicy(defaults: AgentLearningDefaults, overrides: AgentLearningOverrides): AgentLearningEffectivePolicy;
|
|
237
|
+
/** Migration adapter preserves explicit opt-outs and existing instruction/Skill choices. */
|
|
238
|
+
export declare function agentLearningDefaultsFromLegacy(input: {
|
|
239
|
+
memoryEnabled?: boolean;
|
|
240
|
+
workspaceMode?: "off" | "suggest" | "automatic";
|
|
241
|
+
}): AgentLearningDefaults;
|
|
242
|
+
/** Existing instruction and Skill lifecycles retain their native mode vocabulary. */
|
|
243
|
+
export declare function agentLearningDestinationMode(mode: AgentLearningMode): "automatic" | "off" | "suggest";
|
package/dist/atlassian.js
CHANGED
|
@@ -17,11 +17,11 @@ import {
|
|
|
17
17
|
AtlassianSyncCadence,
|
|
18
18
|
SaveAtlassianSourcesRequest,
|
|
19
19
|
atlassianScopesAllowRead
|
|
20
|
-
} from "./chunk-
|
|
21
|
-
import "./chunk-WBYTNVIW.js";
|
|
20
|
+
} from "./chunk-QQUJ6NPW.js";
|
|
22
21
|
import "./chunk-YBW5JSA3.js";
|
|
23
22
|
import "./chunk-O5LEQHDM.js";
|
|
24
23
|
import "./chunk-GRG7PHWQ.js";
|
|
24
|
+
import "./chunk-RKX3NQYS.js";
|
|
25
25
|
import "./chunk-MRWYRAS5.js";
|
|
26
26
|
import "./chunk-3SIZGL3O.js";
|
|
27
27
|
import "./chunk-NVJMJWLL.js";
|
|
@@ -23,7 +23,32 @@ var ExternalIdentityReference = z.object({
|
|
|
23
23
|
}).strict();
|
|
24
24
|
var AddExternalWorkspaceMemberRequest = z.object({
|
|
25
25
|
identity: ExternalIdentityReference,
|
|
26
|
-
permissions: z.array(Permission).min(1).max(Permission.options.length)
|
|
26
|
+
permissions: z.array(Permission).min(1).max(Permission.options.length),
|
|
27
|
+
/** Opt-in durable operation identity; unkeyed legacy requests are not cancellable. */
|
|
28
|
+
operationId: z.string().uuid().optional()
|
|
29
|
+
}).strict();
|
|
30
|
+
var ExternalIdentityLookup = z.discriminatedUnion("found", [
|
|
31
|
+
z.object({ found: z.literal(false) }).strict(),
|
|
32
|
+
z.object({
|
|
33
|
+
found: z.literal(true),
|
|
34
|
+
subjectId: externalSubject,
|
|
35
|
+
organizationMembershipId: z.string().uuid(),
|
|
36
|
+
identityStatus: z.enum(["active", "disabled", "revoked"]),
|
|
37
|
+
identityAuthorizationRevision: z.number().int().positive().safe(),
|
|
38
|
+
membershipStatus: z.enum(["provisioning", "active", "suspended", "revoked"]),
|
|
39
|
+
membershipAuthorizationRevision: z.number().int().positive().safe()
|
|
40
|
+
}).strict()
|
|
41
|
+
]);
|
|
42
|
+
var CancelExternalWorkspaceMemberGrantRequest = z.object({
|
|
43
|
+
operationId: z.string().uuid(),
|
|
44
|
+
cancelGrantOperationId: z.string().uuid()
|
|
45
|
+
}).strict().refine((value) => value.operationId !== value.cancelGrantOperationId, {
|
|
46
|
+
message: "Revocation and grant must use different operation identities"
|
|
47
|
+
});
|
|
48
|
+
var CancelExternalWorkspaceMemberGrantResponse = z.object({
|
|
49
|
+
removed: z.boolean(),
|
|
50
|
+
replay: z.boolean(),
|
|
51
|
+
fencedGrantOperationId: z.string().uuid()
|
|
27
52
|
}).strict();
|
|
28
53
|
var UpdateExternalIdentityMembershipRequest = z.object({
|
|
29
54
|
kind: z.enum(["suspend", "reactivate", "offboard"]),
|
|
@@ -127,6 +152,9 @@ var ExternalLinkWorkSnapshot = z.object({
|
|
|
127
152
|
export {
|
|
128
153
|
ExternalIdentityReference,
|
|
129
154
|
AddExternalWorkspaceMemberRequest,
|
|
155
|
+
ExternalIdentityLookup,
|
|
156
|
+
CancelExternalWorkspaceMemberGrantRequest,
|
|
157
|
+
CancelExternalWorkspaceMemberGrantResponse,
|
|
130
158
|
UpdateExternalIdentityMembershipRequest,
|
|
131
159
|
ExternalActorSelection,
|
|
132
160
|
ExternalIdentity,
|
|
@@ -140,4 +168,4 @@ export {
|
|
|
140
168
|
ExternalIdentityLinkPreview,
|
|
141
169
|
ExternalLinkWorkSnapshot
|
|
142
170
|
};
|
|
143
|
-
//# sourceMappingURL=chunk-
|
|
171
|
+
//# sourceMappingURL=chunk-2AC63F4S.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/external-identities.ts"],"sourcesContent":["import { z } from \"zod\";\nimport { Permission } from \"./permissions\";\n\n// External identifiers are opaque, case-sensitive strings. In particular a\n// native-looking identifier is still host data, never a native subject claim.\n// Bound bytes, not just JS code units: these values share a PostgreSQL B-tree\n// index entry. Never normalize/truncate an identifier to make it fit, and reject\n// text that the driver would replace or PostgreSQL cannot represent.\nconst encoder = new TextEncoder();\nfunction opaqueText(maxBytes: number) {\n return z\n .string()\n .min(1)\n .max(maxBytes)\n .refine(\n (value) =>\n !value.includes(\"\\0\") &&\n !/[\\uD800-\\uDFFF]/u.test(value) &&\n encoder.encode(value).byteLength <= maxBytes,\n {\n message: `Identifier must be valid PostgreSQL Unicode text of at most ${maxBytes} UTF-8 bytes`,\n },\n );\n}\nconst externalId = opaqueText(1024);\nconst source = opaqueText(200);\nconst externalSubject = z\n .string()\n .regex(/^external_user:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$(?![\\s\\S])/);\nconst nativeSubject = z\n .string()\n .min(1)\n .max(1024)\n .regex(/^user:[^\\r\\n]+$(?![\\s\\S])/);\nexport const ExternalIdentityReference = z\n .object({\n externalId,\n source: source.default(\"default\"),\n })\n .strict();\nexport type ExternalIdentityReference = z.infer<typeof ExternalIdentityReference>;\n\nexport const AddExternalWorkspaceMemberRequest = z\n .object({\n identity: ExternalIdentityReference,\n permissions: z.array(Permission).min(1).max(Permission.options.length),\n /** Opt-in durable operation identity; unkeyed legacy requests are not cancellable. */\n operationId: z.string().uuid().optional(),\n })\n .strict();\nexport type AddExternalWorkspaceMemberRequest = z.infer<typeof AddExternalWorkspaceMemberRequest>;\n\n/** Content-free service lookup, including identities which can no longer act. */\nexport const ExternalIdentityLookup = z.discriminatedUnion(\"found\", [\n z.object({ found: z.literal(false) }).strict(),\n z\n .object({\n found: z.literal(true),\n subjectId: externalSubject,\n organizationMembershipId: z.string().uuid(),\n identityStatus: z.enum([\"active\", \"disabled\", \"revoked\"]),\n identityAuthorizationRevision: z.number().int().positive().safe(),\n membershipStatus: z.enum([\"provisioning\", \"active\", \"suspended\", \"revoked\"]),\n membershipAuthorizationRevision: z.number().int().positive().safe(),\n })\n .strict(),\n]);\nexport type ExternalIdentityLookup = z.infer<typeof ExternalIdentityLookup>;\n\n/** Terminal withdrawal of this external member's workspace access, also fencing\n * an exact earlier onboarding operation whether or not it has reached the API. */\nexport const CancelExternalWorkspaceMemberGrantRequest = z\n .object({\n operationId: z.string().uuid(),\n cancelGrantOperationId: z.string().uuid(),\n })\n .strict()\n .refine((value) => value.operationId !== value.cancelGrantOperationId, {\n message: \"Revocation and grant must use different operation identities\",\n });\nexport type CancelExternalWorkspaceMemberGrantRequest = z.infer<\n typeof CancelExternalWorkspaceMemberGrantRequest\n>;\nexport const CancelExternalWorkspaceMemberGrantResponse = z\n .object({\n removed: z.boolean(),\n replay: z.boolean(),\n fencedGrantOperationId: z.string().uuid(),\n })\n .strict();\nexport type CancelExternalWorkspaceMemberGrantResponse = z.infer<\n typeof CancelExternalWorkspaceMemberGrantResponse\n>;\n\n/** Uses the organization membership ID returned by lazy identity admission.\n * Reactivation restores admission only, not revoked work or workspace grants. */\nexport const UpdateExternalIdentityMembershipRequest = z\n .object({\n kind: z.enum([\"suspend\", \"reactivate\", \"offboard\"]),\n expectedAuthorizationRevision: z.number().int().positive().safe(),\n operationId: z.string().uuid(),\n reason: z.string().max(512).optional(),\n })\n .strict();\nexport type UpdateExternalIdentityMembershipRequest = z.infer<\n typeof UpdateExternalIdentityMembershipRequest\n>;\n\nexport const ExternalActorSelection = z.discriminatedUnion(\"mode\", [\n z.object({ mode: z.literal(\"external\"), identity: ExternalIdentityReference }).strict(),\n z\n .object({\n mode: z.literal(\"linked_native\"),\n identity: ExternalIdentityReference,\n linkId: z.string().uuid(),\n expectedLinkRevision: z.number().int().positive().safe(),\n })\n .strict(),\n]);\nexport type ExternalActorSelection = z.infer<typeof ExternalActorSelection>;\n\nexport const ExternalIdentity = z\n .object({\n id: z.string().uuid(),\n accountId: z.string().uuid(),\n source,\n externalId,\n subjectId: externalSubject,\n organizationMembershipId: z.string().uuid(),\n personalWorkspaceId: z.string().uuid(),\n status: z.enum([\"active\", \"disabled\", \"revoked\"]),\n authorizationRevision: z.number().int().positive().safe(),\n })\n .strict();\nexport type ExternalIdentity = z.infer<typeof ExternalIdentity>;\n\n// Audit attribution, not authentication. Only the canonical access resolver\n// may establish provenance; accepting this JSON from a browser proves nothing.\nexport const ExternalActorAttribution = z\n .object({\n accountId: z.string().uuid(),\n authenticatingApiKeyId: z.string().uuid(),\n externalIdentityId: z.string().uuid(),\n externalSubjectId: externalSubject,\n externalAuthorizationRevision: z.number().int().positive().safe(),\n effectiveSubjectId: z.string().min(1).max(1024),\n actingMode: z.enum([\"external\", \"linked_native\"]),\n linkId: z.string().uuid().optional(),\n linkRevision: z.number().int().positive().safe().optional(),\n })\n .strict()\n .superRefine((value, context) => {\n if (value.actingMode === \"external\") {\n if (\n value.effectiveSubjectId !== value.externalSubjectId ||\n value.linkId !== undefined ||\n value.linkRevision !== undefined\n ) {\n context.addIssue({\n code: \"custom\",\n message: \"External mode cannot delegate native identity\",\n });\n }\n } else if (\n !value.linkId ||\n !value.linkRevision ||\n !nativeSubject.safeParse(value.effectiveSubjectId).success\n ) {\n context.addIssue({\n code: \"custom\",\n message: \"Linked mode requires exact native delegation provenance\",\n });\n }\n });\nexport type ExternalActorAttribution = z.infer<typeof ExternalActorAttribution>;\n\n/** Server-signed/encrypted continuation data, never sufficient live authority. */\nexport const ExternalActorContinuation = z\n .object({\n identity: ExternalIdentityReference,\n actor: ExternalActorAttribution,\n })\n .strict();\nexport type ExternalActorContinuation = z.infer<typeof ExternalActorContinuation>;\n\nexport const ExternalIdentityLink = z\n .object({\n id: z.string().uuid(),\n accountId: z.string().uuid(),\n externalIdentityId: z.string().uuid(),\n externalIdentity: ExternalIdentityReference.optional(),\n nativeSubjectId: nativeSubject.nullable(),\n status: z.enum([\"pending\", \"active\", \"revoked\", \"expired\"]),\n revision: z.number().int().positive().safe(),\n permissions: z.array(Permission).max(Permission.options.length),\n expiresAt: z.string().datetime({ offset: true }).nullable(),\n })\n .strict()\n .refine(\n (value) => value.status !== \"active\" || value.nativeSubjectId !== null,\n \"An active link requires a confirmed native identity\",\n );\nexport type ExternalIdentityLink = z.infer<typeof ExternalIdentityLink>;\n\nexport const ExternalIdentityLinkPage = z\n .object({\n links: z.array(ExternalIdentityLink).max(50),\n nextCursor: z.string().uuid().nullable(),\n })\n .strict();\nexport type ExternalIdentityLinkPage = z.infer<typeof ExternalIdentityLinkPage>;\n\n/** A native confirmation may narrow this request, never broaden it. The\n * challenge is delivered once to the host and is not an authentication token. */\nexport const BeginExternalIdentityLinkRequest = z\n .object({\n permissions: z.array(Permission).min(1).max(Permission.options.length),\n expiresAt: z.string().datetime({ offset: true }).nullable().default(null),\n })\n .strict();\nexport type BeginExternalIdentityLinkRequest = z.input<typeof BeginExternalIdentityLinkRequest>;\nexport const ConfirmExternalIdentityLinkRequest = z\n .object({\n challenge: z.string().regex(/^[A-Za-z0-9_-]{43}$/),\n expectedRevision: z.number().int().positive().safe(),\n permissions: z.array(Permission).min(1).max(Permission.options.length),\n })\n .strict();\nexport type ConfirmExternalIdentityLinkRequest = z.infer<typeof ConfirmExternalIdentityLinkRequest>;\nexport const BeginExternalIdentityLinkResponse = z\n .object({\n link: ExternalIdentityLink,\n challenge: z.string().regex(/^[A-Za-z0-9_-]{43}$/),\n confirmBefore: z.string().datetime({ offset: true }),\n })\n .strict();\nexport type BeginExternalIdentityLinkResponse = z.infer<typeof BeginExternalIdentityLinkResponse>;\nexport const ExternalIdentityLinkPreview = z\n .object({\n link: ExternalIdentityLink,\n externalIdentity: ExternalIdentityReference,\n nativeSubjectId: nativeSubject,\n organizationId: z.string().uuid(),\n })\n .strict();\nexport type ExternalIdentityLinkPreview = z.infer<typeof ExternalIdentityLinkPreview>;\n\n/** Immutable accepted-work restriction, not a browser credential. Original key\n * identity remains audit-only; durable use validates the live link and members. */\nexport const ExternalLinkWorkSnapshot = z\n .object({\n identity: ExternalIdentityReference,\n actor: ExternalActorAttribution.refine((value) => value.actingMode === \"linked_native\"),\n permissions: z.array(Permission).max(Permission.options.length),\n })\n .strict();\nexport type ExternalLinkWorkSnapshot = z.infer<typeof ExternalLinkWorkSnapshot>;\n"],"mappings":"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","names":[]}
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
SessionTenancyVisibility,
|
|
5
5
|
UserResourceAuthorityGrant,
|
|
6
6
|
UserResourceDelegation
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-QQUJ6NPW.js";
|
|
8
8
|
|
|
9
9
|
// src/connection-authority.ts
|
|
10
10
|
import { z } from "zod";
|
|
@@ -345,4 +345,4 @@ export {
|
|
|
345
345
|
ConnectionUseAuditFact,
|
|
346
346
|
ConnectionUseAuthorizationResult
|
|
347
347
|
};
|
|
348
|
-
//# sourceMappingURL=chunk-
|
|
348
|
+
//# sourceMappingURL=chunk-OVFORMPW.js.map
|