@otto-code/protocol 0.8.14 → 0.8.16
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-profiles.d.ts +37 -19
- package/dist/agent-profiles.js +46 -23
- package/dist/agent-teams.d.ts +3 -3
- package/dist/agent-teams.js +5 -5
- package/dist/artifacts/types.js +2 -2
- package/dist/daemon-config.js +1 -1
- package/dist/default-personalities.js +1 -1
- package/dist/generated/validation/ws-outbound.aot.js +60353 -59899
- package/dist/git-hosting.js +1 -1
- package/dist/messages.d.ts +356 -0
- package/dist/messages.js +41 -23
- package/dist/personality-schemas.d.ts +4 -4
- package/dist/personality-schemas.js +6 -6
- package/dist/schedule/rpc-schemas.d.ts +8 -0
- package/dist/schedule/types.d.ts +5 -0
- package/dist/schedule/types.js +9 -3
- package/dist/validation/ws-outbound-schema-metadata.d.ts +75 -0
- package/package.json +1 -1
package/dist/git-hosting.js
CHANGED
|
@@ -8,7 +8,7 @@ export const GitHostingProviderIdSchema = z.enum(["github", "bitbucket-cloud"]);
|
|
|
8
8
|
// Wire form of the provider id. Deliberately an OPEN string, not the enum, so a
|
|
9
9
|
// newer peer that adds a third provider (e.g. "gitlab") never makes an older
|
|
10
10
|
// peer's validator drop the whole message. Consumers normalize to the known set
|
|
11
|
-
// with normalizeGitHostingProviderId (mirrors
|
|
11
|
+
// with normalizeGitHostingProviderId (mirrors normalizeProfileRoles) and
|
|
12
12
|
// degrade gracefully for unknown ids. Keep the enum for otto.json config and the
|
|
13
13
|
// GIT_HOSTING_PROVIDER_IDS known-set.
|
|
14
14
|
export const GitHostingProviderIdWireSchema = z.string();
|