artemys 0.2.0 → 0.2.1
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/CHANGELOG.md +23 -0
- package/README.md +194 -146
- package/dist/cli/index.d.ts +1 -1
- package/dist/cli/index.d.ts.map +1 -1
- package/dist/cli/index.js +446 -379
- package/dist/cli/index.js.map +1 -1
- package/dist/coffeeshop/client.d.ts +158 -0
- package/dist/coffeeshop/client.d.ts.map +1 -0
- package/dist/coffeeshop/client.js +293 -0
- package/dist/coffeeshop/client.js.map +1 -0
- package/dist/coffeeshop/index.d.ts +2 -0
- package/dist/coffeeshop/index.d.ts.map +1 -0
- package/dist/coffeeshop/index.js +2 -0
- package/dist/coffeeshop/index.js.map +1 -0
- package/dist/discovery/agent-card.schema.d.ts +37 -109
- package/dist/discovery/agent-card.schema.d.ts.map +1 -1
- package/dist/discovery/discovery-query.schema.d.ts +6 -15
- package/dist/discovery/discovery-query.schema.d.ts.map +1 -1
- package/dist/discovery/index.d.ts +1 -1
- package/dist/discovery/index.d.ts.map +1 -1
- package/dist/discovery/index.js +1 -1
- package/dist/discovery/index.js.map +1 -1
- package/dist/discovery/intro-decision.schema.d.ts +9 -11
- package/dist/discovery/intro-decision.schema.d.ts.map +1 -1
- package/dist/discovery/intro-request.schema.d.ts +2 -14
- package/dist/discovery/intro-request.schema.d.ts.map +1 -1
- package/dist/discovery/session-bootstrap.schema.d.ts +86 -66
- package/dist/discovery/session-bootstrap.schema.d.ts.map +1 -1
- package/dist/discovery/session-bootstrap.schema.js +84 -8
- package/dist/discovery/session-bootstrap.schema.js.map +1 -1
- package/dist/mcp-server/index.d.ts +4 -0
- package/dist/mcp-server/index.d.ts.map +1 -0
- package/dist/mcp-server/index.js +4 -0
- package/dist/mcp-server/index.js.map +1 -0
- package/dist/mcp-server/persistence.d.ts +37 -0
- package/dist/mcp-server/persistence.d.ts.map +1 -0
- package/dist/mcp-server/persistence.js +309 -0
- package/dist/mcp-server/persistence.js.map +1 -0
- package/dist/mcp-server/resources.d.ts +20 -0
- package/dist/mcp-server/resources.d.ts.map +1 -0
- package/dist/mcp-server/resources.js +49 -0
- package/dist/mcp-server/resources.js.map +1 -0
- package/dist/mcp-server/server.d.ts +33 -0
- package/dist/mcp-server/server.d.ts.map +1 -0
- package/dist/mcp-server/server.js +220 -0
- package/dist/mcp-server/server.js.map +1 -0
- package/dist/mcp-server/state.d.ts +43 -0
- package/dist/mcp-server/state.d.ts.map +1 -0
- package/dist/mcp-server/state.js +111 -0
- package/dist/mcp-server/state.js.map +1 -0
- package/dist/mcp-server/tools/common.d.ts +225 -0
- package/dist/mcp-server/tools/common.d.ts.map +1 -0
- package/dist/mcp-server/tools/common.js +11 -0
- package/dist/mcp-server/tools/common.js.map +1 -0
- package/dist/mcp-server/tools/discovery.d.ts +3 -0
- package/dist/mcp-server/tools/discovery.d.ts.map +1 -0
- package/dist/mcp-server/tools/discovery.js +48 -0
- package/dist/mcp-server/tools/discovery.js.map +1 -0
- package/dist/mcp-server/tools/index.d.ts +4 -0
- package/dist/mcp-server/tools/index.d.ts.map +1 -0
- package/dist/mcp-server/tools/index.js +13 -0
- package/dist/mcp-server/tools/index.js.map +1 -0
- package/dist/mcp-server/tools/intro.d.ts +3 -0
- package/dist/mcp-server/tools/intro.d.ts.map +1 -0
- package/dist/mcp-server/tools/intro.js +53 -0
- package/dist/mcp-server/tools/intro.js.map +1 -0
- package/dist/mcp-server/tools/protocol.d.ts +3 -0
- package/dist/mcp-server/tools/protocol.d.ts.map +1 -0
- package/dist/mcp-server/tools/protocol.js +73 -0
- package/dist/mcp-server/tools/protocol.js.map +1 -0
- package/dist/mcp-server/tools/talent.d.ts +3 -0
- package/dist/mcp-server/tools/talent.d.ts.map +1 -0
- package/dist/mcp-server/tools/talent.js +226 -0
- package/dist/mcp-server/tools/talent.js.map +1 -0
- package/dist/openclaw/index.d.ts +2 -0
- package/dist/openclaw/index.d.ts.map +1 -0
- package/dist/openclaw/index.js +2 -0
- package/dist/openclaw/index.js.map +1 -0
- package/dist/openclaw/skill.d.ts +13 -0
- package/dist/openclaw/skill.d.ts.map +1 -0
- package/dist/openclaw/skill.js +18 -0
- package/dist/openclaw/skill.js.map +1 -0
- package/dist/protocol/consent.schema.d.ts +18 -48
- package/dist/protocol/consent.schema.d.ts.map +1 -1
- package/dist/protocol/consent.schema.js +1 -1
- package/dist/protocol/consent.schema.js.map +1 -1
- package/dist/protocol/dialogue.schema.d.ts +21 -177
- package/dist/protocol/dialogue.schema.d.ts.map +1 -1
- package/dist/protocol/envelope.schema.d.ts +46 -28
- package/dist/protocol/envelope.schema.d.ts.map +1 -1
- package/dist/protocol/errors.d.ts +8 -1
- package/dist/protocol/errors.d.ts.map +1 -1
- package/dist/protocol/handshake.schema.d.ts +130 -385
- package/dist/protocol/handshake.schema.d.ts.map +1 -1
- package/dist/protocol/handshake.schema.js +1 -0
- package/dist/protocol/handshake.schema.js.map +1 -1
- package/dist/protocol/identity.schema.d.ts +44 -94
- package/dist/protocol/identity.schema.d.ts.map +1 -1
- package/dist/protocol/index.d.ts +1 -0
- package/dist/protocol/index.d.ts.map +1 -1
- package/dist/protocol/index.js +1 -0
- package/dist/protocol/index.js.map +1 -1
- package/dist/protocol/message-types.d.ts +14 -1
- package/dist/protocol/message-types.d.ts.map +1 -1
- package/dist/protocol/message.schema.d.ts +100 -715
- package/dist/protocol/message.schema.d.ts.map +1 -1
- package/dist/protocol/resolution.schema.d.ts +22 -268
- package/dist/protocol/resolution.schema.d.ts.map +1 -1
- package/dist/protocol/resolution.schema.js +1 -1
- package/dist/protocol/resolution.schema.js.map +1 -1
- package/dist/protocol/state-machine.d.ts +10 -1
- package/dist/protocol/state-machine.d.ts.map +1 -1
- package/dist/protocol/talent.schema.d.ts +106 -0
- package/dist/protocol/talent.schema.d.ts.map +1 -0
- package/dist/protocol/talent.schema.js +47 -0
- package/dist/protocol/talent.schema.js.map +1 -0
- package/dist/protocol/transport.schema.d.ts +16 -18
- package/dist/protocol/transport.schema.d.ts.map +1 -1
- package/dist/transport/client.d.ts +32 -0
- package/dist/transport/client.d.ts.map +1 -0
- package/dist/transport/client.js +155 -0
- package/dist/transport/client.js.map +1 -0
- package/dist/transport/dedup.d.ts +9 -0
- package/dist/transport/dedup.d.ts.map +1 -0
- package/dist/transport/dedup.js +36 -0
- package/dist/transport/dedup.js.map +1 -0
- package/dist/transport/handler.d.ts +9 -0
- package/dist/transport/handler.d.ts.map +1 -0
- package/dist/transport/handler.js +105 -0
- package/dist/transport/handler.js.map +1 -0
- package/dist/transport/hmac.d.ts +3 -0
- package/dist/transport/hmac.d.ts.map +1 -0
- package/dist/transport/hmac.js +43 -0
- package/dist/transport/hmac.js.map +1 -0
- package/dist/transport/index.d.ts +6 -0
- package/dist/transport/index.d.ts.map +1 -0
- package/dist/transport/index.js +6 -0
- package/dist/transport/index.js.map +1 -0
- package/dist/transport/reference-runner.d.ts +37 -0
- package/dist/transport/reference-runner.d.ts.map +1 -0
- package/dist/transport/reference-runner.js +372 -0
- package/dist/transport/reference-runner.js.map +1 -0
- package/package.json +19 -31
- package/dist/agent/archiver.d.ts +0 -8
- package/dist/agent/archiver.d.ts.map +0 -1
- package/dist/agent/archiver.js +0 -48
- package/dist/agent/archiver.js.map +0 -1
- package/dist/agent/capabilities.d.ts +0 -23
- package/dist/agent/capabilities.d.ts.map +0 -1
- package/dist/agent/capabilities.js +0 -87
- package/dist/agent/capabilities.js.map +0 -1
- package/dist/agent/config.d.ts +0 -60
- package/dist/agent/config.d.ts.map +0 -1
- package/dist/agent/config.js +0 -84
- package/dist/agent/config.js.map +0 -1
- package/dist/agent/context-provider.d.ts +0 -12
- package/dist/agent/context-provider.d.ts.map +0 -1
- package/dist/agent/context-provider.js +0 -34
- package/dist/agent/context-provider.js.map +0 -1
- package/dist/agent/context.d.ts +0 -9
- package/dist/agent/context.d.ts.map +0 -1
- package/dist/agent/context.js +0 -80
- package/dist/agent/context.js.map +0 -1
- package/dist/agent/events.d.ts +0 -62
- package/dist/agent/events.d.ts.map +0 -1
- package/dist/agent/events.js +0 -21
- package/dist/agent/events.js.map +0 -1
- package/dist/agent/index.d.ts +0 -32
- package/dist/agent/index.d.ts.map +0 -1
- package/dist/agent/index.js +0 -28
- package/dist/agent/index.js.map +0 -1
- package/dist/agent/mcp.d.ts +0 -16
- package/dist/agent/mcp.d.ts.map +0 -1
- package/dist/agent/mcp.js +0 -69
- package/dist/agent/mcp.js.map +0 -1
- package/dist/agent/notifications/decision-parser.d.ts +0 -10
- package/dist/agent/notifications/decision-parser.d.ts.map +0 -1
- package/dist/agent/notifications/decision-parser.js +0 -21
- package/dist/agent/notifications/decision-parser.js.map +0 -1
- package/dist/agent/notifications/index.d.ts +0 -4
- package/dist/agent/notifications/index.d.ts.map +0 -1
- package/dist/agent/notifications/index.js +0 -3
- package/dist/agent/notifications/index.js.map +0 -1
- package/dist/agent/notifications/opportunity-templates.d.ts +0 -14
- package/dist/agent/notifications/opportunity-templates.d.ts.map +0 -1
- package/dist/agent/notifications/opportunity-templates.js +0 -21
- package/dist/agent/notifications/opportunity-templates.js.map +0 -1
- package/dist/agent/notifications/types.d.ts +0 -16
- package/dist/agent/notifications/types.d.ts.map +0 -1
- package/dist/agent/notifications/types.js +0 -2
- package/dist/agent/notifications/types.js.map +0 -1
- package/dist/agent/providers.d.ts +0 -9
- package/dist/agent/providers.d.ts.map +0 -1
- package/dist/agent/providers.js +0 -29
- package/dist/agent/providers.js.map +0 -1
- package/dist/agent/runtime.d.ts +0 -63
- package/dist/agent/runtime.d.ts.map +0 -1
- package/dist/agent/runtime.js +0 -395
- package/dist/agent/runtime.js.map +0 -1
- package/dist/agent/scanning/index.d.ts +0 -3
- package/dist/agent/scanning/index.d.ts.map +0 -1
- package/dist/agent/scanning/index.js +0 -3
- package/dist/agent/scanning/index.js.map +0 -1
- package/dist/agent/scanning/opportunity-scorer.d.ts +0 -24
- package/dist/agent/scanning/opportunity-scorer.d.ts.map +0 -1
- package/dist/agent/scanning/opportunity-scorer.js +0 -90
- package/dist/agent/scanning/opportunity-scorer.js.map +0 -1
- package/dist/agent/scanning/types.d.ts +0 -65
- package/dist/agent/scanning/types.d.ts.map +0 -1
- package/dist/agent/scanning/types.js +0 -32
- package/dist/agent/scanning/types.js.map +0 -1
- package/dist/agent/scheduler.d.ts +0 -38
- package/dist/agent/scheduler.d.ts.map +0 -1
- package/dist/agent/scheduler.js +0 -125
- package/dist/agent/scheduler.js.map +0 -1
- package/dist/agent/session.d.ts +0 -20
- package/dist/agent/session.d.ts.map +0 -1
- package/dist/agent/session.js +0 -88
- package/dist/agent/session.js.map +0 -1
- package/dist/agent/stores.d.ts +0 -48
- package/dist/agent/stores.d.ts.map +0 -1
- package/dist/agent/stores.js +0 -2
- package/dist/agent/stores.js.map +0 -1
- package/dist/agent/tools/browser/ats-patterns.d.ts +0 -20
- package/dist/agent/tools/browser/ats-patterns.d.ts.map +0 -1
- package/dist/agent/tools/browser/ats-patterns.js +0 -226
- package/dist/agent/tools/browser/ats-patterns.js.map +0 -1
- package/dist/agent/tools/browser/index.d.ts +0 -14
- package/dist/agent/tools/browser/index.d.ts.map +0 -1
- package/dist/agent/tools/browser/index.js +0 -126
- package/dist/agent/tools/browser/index.js.map +0 -1
- package/dist/agent/tools/browser/operator-runtime.d.ts +0 -35
- package/dist/agent/tools/browser/operator-runtime.d.ts.map +0 -1
- package/dist/agent/tools/browser/operator-runtime.js +0 -93
- package/dist/agent/tools/browser/operator-runtime.js.map +0 -1
- package/dist/agent/tools/browser/providers/chrome-mcp.d.ts +0 -3
- package/dist/agent/tools/browser/providers/chrome-mcp.d.ts.map +0 -1
- package/dist/agent/tools/browser/providers/chrome-mcp.js +0 -164
- package/dist/agent/tools/browser/providers/chrome-mcp.js.map +0 -1
- package/dist/agent/tools/browser/providers/playwright.d.ts +0 -7
- package/dist/agent/tools/browser/providers/playwright.d.ts.map +0 -1
- package/dist/agent/tools/browser/providers/playwright.js +0 -619
- package/dist/agent/tools/browser/providers/playwright.js.map +0 -1
- package/dist/agent/tools/browser/types.d.ts +0 -22
- package/dist/agent/tools/browser/types.d.ts.map +0 -1
- package/dist/agent/tools/browser/types.js +0 -15
- package/dist/agent/tools/browser/types.js.map +0 -1
- package/dist/agent/tools/cancel-task.d.ts +0 -4
- package/dist/agent/tools/cancel-task.d.ts.map +0 -1
- package/dist/agent/tools/cancel-task.js +0 -29
- package/dist/agent/tools/cancel-task.js.map +0 -1
- package/dist/agent/tools/career-advice.d.ts +0 -3
- package/dist/agent/tools/career-advice.d.ts.map +0 -1
- package/dist/agent/tools/career-advice.js +0 -49
- package/dist/agent/tools/career-advice.js.map +0 -1
- package/dist/agent/tools/index.d.ts +0 -15
- package/dist/agent/tools/index.d.ts.map +0 -1
- package/dist/agent/tools/index.js +0 -94
- package/dist/agent/tools/index.js.map +0 -1
- package/dist/agent/tools/job-search.d.ts +0 -3
- package/dist/agent/tools/job-search.d.ts.map +0 -1
- package/dist/agent/tools/job-search.js +0 -77
- package/dist/agent/tools/job-search.js.map +0 -1
- package/dist/agent/tools/list-tasks.d.ts +0 -4
- package/dist/agent/tools/list-tasks.d.ts.map +0 -1
- package/dist/agent/tools/list-tasks.js +0 -24
- package/dist/agent/tools/list-tasks.js.map +0 -1
- package/dist/agent/tools/market-data.d.ts +0 -8
- package/dist/agent/tools/market-data.d.ts.map +0 -1
- package/dist/agent/tools/market-data.js +0 -133
- package/dist/agent/tools/market-data.js.map +0 -1
- package/dist/agent/tools/memory-write.d.ts +0 -3
- package/dist/agent/tools/memory-write.d.ts.map +0 -1
- package/dist/agent/tools/memory-write.js +0 -48
- package/dist/agent/tools/memory-write.js.map +0 -1
- package/dist/agent/tools/resume.d.ts +0 -3
- package/dist/agent/tools/resume.d.ts.map +0 -1
- package/dist/agent/tools/resume.js +0 -70
- package/dist/agent/tools/resume.js.map +0 -1
- package/dist/agent/tools/schedule-task.d.ts +0 -4
- package/dist/agent/tools/schedule-task.d.ts.map +0 -1
- package/dist/agent/tools/schedule-task.js +0 -39
- package/dist/agent/tools/schedule-task.js.map +0 -1
- package/dist/agent/tools/shell.d.ts +0 -6
- package/dist/agent/tools/shell.d.ts.map +0 -1
- package/dist/agent/tools/shell.js +0 -66
- package/dist/agent/tools/shell.js.map +0 -1
- package/dist/agent/tools/web-search.d.ts +0 -6
- package/dist/agent/tools/web-search.d.ts.map +0 -1
- package/dist/agent/tools/web-search.js +0 -73
- package/dist/agent/tools/web-search.js.map +0 -1
- package/dist/agent/types.d.ts +0 -103
- package/dist/agent/types.d.ts.map +0 -1
- package/dist/agent/types.js +0 -11
- package/dist/agent/types.js.map +0 -1
- package/dist/channels/index.d.ts +0 -10
- package/dist/channels/index.d.ts.map +0 -1
- package/dist/channels/index.js +0 -15
- package/dist/channels/index.js.map +0 -1
- package/dist/channels/telegram.d.ts +0 -21
- package/dist/channels/telegram.d.ts.map +0 -1
- package/dist/channels/telegram.js +0 -255
- package/dist/channels/telegram.js.map +0 -1
- package/dist/channels/types.d.ts +0 -24
- package/dist/channels/types.d.ts.map +0 -1
- package/dist/channels/types.js +0 -2
- package/dist/channels/types.js.map +0 -1
- package/dist/cli/templates/HEARTBEAT.md +0 -6
- package/dist/cli/templates/MEMORY.md +0 -6
- package/dist/cli/templates/PREFERENCES.md +0 -40
- package/dist/cli/templates/PROFILE.md +0 -26
- package/dist/cli/templates/SOUL.md +0 -23
- package/dist/connectors/google-calendar.d.ts +0 -8
- package/dist/connectors/google-calendar.d.ts.map +0 -1
- package/dist/connectors/google-calendar.js +0 -23
- package/dist/connectors/google-calendar.js.map +0 -1
- package/dist/connectors/google-gmail.d.ts +0 -8
- package/dist/connectors/google-gmail.d.ts.map +0 -1
- package/dist/connectors/google-gmail.js +0 -30
- package/dist/connectors/google-gmail.js.map +0 -1
- package/dist/connectors/google-oauth.d.ts +0 -17
- package/dist/connectors/google-oauth.d.ts.map +0 -1
- package/dist/connectors/google-oauth.js +0 -52
- package/dist/connectors/google-oauth.js.map +0 -1
- package/dist/connectors/index.d.ts +0 -5
- package/dist/connectors/index.d.ts.map +0 -1
- package/dist/connectors/index.js +0 -5
- package/dist/connectors/index.js.map +0 -1
- package/dist/connectors/types.d.ts +0 -20
- package/dist/connectors/types.d.ts.map +0 -1
- package/dist/connectors/types.js +0 -5
- package/dist/connectors/types.js.map +0 -1
|
@@ -1,64 +1,74 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
export declare const IntentTypeSchema: z.ZodEnum<
|
|
2
|
+
export declare const IntentTypeSchema: z.ZodEnum<{
|
|
3
|
+
role_inquiry: "role_inquiry";
|
|
4
|
+
project_inquiry: "project_inquiry";
|
|
5
|
+
advisory_inquiry: "advisory_inquiry";
|
|
6
|
+
collaboration_inquiry: "collaboration_inquiry";
|
|
7
|
+
}>;
|
|
3
8
|
export type IntentType = z.infer<typeof IntentTypeSchema>;
|
|
4
9
|
/** Structured signal: domain + seniority + location minimum for a viable handshake. */
|
|
5
10
|
export declare const IntentSignalSchema: z.ZodObject<{
|
|
6
11
|
domain: z.ZodString;
|
|
7
|
-
seniority: z.ZodEnum<
|
|
8
|
-
|
|
12
|
+
seniority: z.ZodEnum<{
|
|
13
|
+
intern: "intern";
|
|
14
|
+
junior: "junior";
|
|
15
|
+
mid: "mid";
|
|
16
|
+
senior: "senior";
|
|
17
|
+
staff: "staff";
|
|
18
|
+
principal: "principal";
|
|
19
|
+
executive: "executive";
|
|
20
|
+
}>;
|
|
21
|
+
location_flexibility: z.ZodEnum<{
|
|
22
|
+
remote_only: "remote_only";
|
|
23
|
+
remote_ok: "remote_ok";
|
|
24
|
+
hybrid: "hybrid";
|
|
25
|
+
onsite_required: "onsite_required";
|
|
26
|
+
}>;
|
|
9
27
|
urgency: z.ZodOptional<z.ZodString>;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
seniority: "executive" | "junior" | "mid" | "senior" | "staff" | "principal" | "intern";
|
|
13
|
-
location_flexibility: "remote_only" | "remote_ok" | "hybrid" | "onsite_required";
|
|
14
|
-
urgency?: string | undefined;
|
|
15
|
-
}, {
|
|
16
|
-
domain: string;
|
|
17
|
-
seniority: "executive" | "junior" | "mid" | "senior" | "staff" | "principal" | "intern";
|
|
18
|
-
location_flexibility: "remote_only" | "remote_ok" | "hybrid" | "onsite_required";
|
|
19
|
-
urgency?: string | undefined;
|
|
20
|
-
}>;
|
|
28
|
+
application_intent: z.ZodOptional<z.ZodUnknown>;
|
|
29
|
+
}, z.core.$strip>;
|
|
21
30
|
export type IntentSignal = z.infer<typeof IntentSignalSchema>;
|
|
22
31
|
export declare const IntentSchema: z.ZodObject<{
|
|
23
|
-
type: z.ZodEnum<
|
|
32
|
+
type: z.ZodEnum<{
|
|
33
|
+
role_inquiry: "role_inquiry";
|
|
34
|
+
project_inquiry: "project_inquiry";
|
|
35
|
+
advisory_inquiry: "advisory_inquiry";
|
|
36
|
+
collaboration_inquiry: "collaboration_inquiry";
|
|
37
|
+
}>;
|
|
24
38
|
signal: z.ZodObject<{
|
|
25
39
|
domain: z.ZodString;
|
|
26
|
-
seniority: z.ZodEnum<
|
|
27
|
-
|
|
40
|
+
seniority: z.ZodEnum<{
|
|
41
|
+
intern: "intern";
|
|
42
|
+
junior: "junior";
|
|
43
|
+
mid: "mid";
|
|
44
|
+
senior: "senior";
|
|
45
|
+
staff: "staff";
|
|
46
|
+
principal: "principal";
|
|
47
|
+
executive: "executive";
|
|
48
|
+
}>;
|
|
49
|
+
location_flexibility: z.ZodEnum<{
|
|
50
|
+
remote_only: "remote_only";
|
|
51
|
+
remote_ok: "remote_ok";
|
|
52
|
+
hybrid: "hybrid";
|
|
53
|
+
onsite_required: "onsite_required";
|
|
54
|
+
}>;
|
|
28
55
|
urgency: z.ZodOptional<z.ZodString>;
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
location_flexibility: "remote_only" | "remote_ok" | "hybrid" | "onsite_required";
|
|
33
|
-
urgency?: string | undefined;
|
|
34
|
-
}, {
|
|
35
|
-
domain: string;
|
|
36
|
-
seniority: "executive" | "junior" | "mid" | "senior" | "staff" | "principal" | "intern";
|
|
37
|
-
location_flexibility: "remote_only" | "remote_ok" | "hybrid" | "onsite_required";
|
|
38
|
-
urgency?: string | undefined;
|
|
39
|
-
}>;
|
|
40
|
-
}, "strip", z.ZodTypeAny, {
|
|
41
|
-
type: "role_inquiry" | "project_inquiry" | "advisory_inquiry" | "collaboration_inquiry";
|
|
42
|
-
signal: {
|
|
43
|
-
domain: string;
|
|
44
|
-
seniority: "executive" | "junior" | "mid" | "senior" | "staff" | "principal" | "intern";
|
|
45
|
-
location_flexibility: "remote_only" | "remote_ok" | "hybrid" | "onsite_required";
|
|
46
|
-
urgency?: string | undefined;
|
|
47
|
-
};
|
|
48
|
-
}, {
|
|
49
|
-
type: "role_inquiry" | "project_inquiry" | "advisory_inquiry" | "collaboration_inquiry";
|
|
50
|
-
signal: {
|
|
51
|
-
domain: string;
|
|
52
|
-
seniority: "executive" | "junior" | "mid" | "senior" | "staff" | "principal" | "intern";
|
|
53
|
-
location_flexibility: "remote_only" | "remote_ok" | "hybrid" | "onsite_required";
|
|
54
|
-
urgency?: string | undefined;
|
|
55
|
-
};
|
|
56
|
-
}>;
|
|
56
|
+
application_intent: z.ZodOptional<z.ZodUnknown>;
|
|
57
|
+
}, z.core.$strip>;
|
|
58
|
+
}, z.core.$strip>;
|
|
57
59
|
export type Intent = z.infer<typeof IntentSchema>;
|
|
58
|
-
export declare const AvailabilitySchema: z.ZodEnum<
|
|
60
|
+
export declare const AvailabilitySchema: z.ZodEnum<{
|
|
61
|
+
active: "active";
|
|
62
|
+
passive: "passive";
|
|
63
|
+
not_looking: "not_looking";
|
|
64
|
+
}>;
|
|
59
65
|
export type Availability = z.infer<typeof AvailabilitySchema>;
|
|
60
66
|
/** interested: proceed | conditional: needs more info | decline: conversation ends */
|
|
61
|
-
export declare const InterestSignalSchema: z.ZodEnum<
|
|
67
|
+
export declare const InterestSignalSchema: z.ZodEnum<{
|
|
68
|
+
decline: "decline";
|
|
69
|
+
interested: "interested";
|
|
70
|
+
conditional: "conditional";
|
|
71
|
+
}>;
|
|
62
72
|
export type InterestSignal = z.infer<typeof InterestSignalSchema>;
|
|
63
73
|
/** Handshake initiation (Talent Agent -> Candidate Agent). */
|
|
64
74
|
export declare const HandshakeInitiateSchema: z.ZodObject<{
|
|
@@ -66,203 +76,70 @@ export declare const HandshakeInitiateSchema: z.ZodObject<{
|
|
|
66
76
|
message_id: z.ZodString;
|
|
67
77
|
conversation_id: z.ZodString;
|
|
68
78
|
sender_agent_id: z.ZodString;
|
|
69
|
-
} & {
|
|
70
79
|
type: z.ZodLiteral<"artemys.handshake.initiate">;
|
|
71
80
|
protocol_version: z.ZodLiteral<"0.1.0">;
|
|
72
81
|
agent: z.ZodObject<{
|
|
73
82
|
id: z.ZodString;
|
|
74
|
-
role: z.ZodEnum<
|
|
83
|
+
role: z.ZodEnum<{
|
|
84
|
+
sourcer: "sourcer";
|
|
85
|
+
candidate_representative: "candidate_representative";
|
|
86
|
+
}>;
|
|
75
87
|
representing: z.ZodObject<{
|
|
76
|
-
type: z.ZodEnum<
|
|
88
|
+
type: z.ZodEnum<{
|
|
89
|
+
employer: "employer";
|
|
90
|
+
individual: "individual";
|
|
91
|
+
}>;
|
|
77
92
|
name: z.ZodOptional<z.ZodString>;
|
|
78
93
|
identity: z.ZodOptional<z.ZodString>;
|
|
79
94
|
verified: z.ZodBoolean;
|
|
80
|
-
},
|
|
81
|
-
|
|
82
|
-
verified: boolean;
|
|
83
|
-
name?: string | undefined;
|
|
84
|
-
identity?: string | undefined;
|
|
85
|
-
}, {
|
|
86
|
-
type: "employer" | "individual";
|
|
87
|
-
verified: boolean;
|
|
88
|
-
name?: string | undefined;
|
|
89
|
-
identity?: string | undefined;
|
|
90
|
-
}>;
|
|
91
|
-
}, "strip", z.ZodTypeAny, {
|
|
92
|
-
id: string;
|
|
93
|
-
role: "sourcer" | "candidate_representative";
|
|
94
|
-
representing: {
|
|
95
|
-
type: "employer" | "individual";
|
|
96
|
-
verified: boolean;
|
|
97
|
-
name?: string | undefined;
|
|
98
|
-
identity?: string | undefined;
|
|
99
|
-
};
|
|
100
|
-
}, {
|
|
101
|
-
id: string;
|
|
102
|
-
role: "sourcer" | "candidate_representative";
|
|
103
|
-
representing: {
|
|
104
|
-
type: "employer" | "individual";
|
|
105
|
-
verified: boolean;
|
|
106
|
-
name?: string | undefined;
|
|
107
|
-
identity?: string | undefined;
|
|
108
|
-
};
|
|
109
|
-
}>;
|
|
95
|
+
}, z.core.$strip>;
|
|
96
|
+
}, z.core.$strip>;
|
|
110
97
|
intent: z.ZodObject<{
|
|
111
|
-
type: z.ZodEnum<
|
|
98
|
+
type: z.ZodEnum<{
|
|
99
|
+
role_inquiry: "role_inquiry";
|
|
100
|
+
project_inquiry: "project_inquiry";
|
|
101
|
+
advisory_inquiry: "advisory_inquiry";
|
|
102
|
+
collaboration_inquiry: "collaboration_inquiry";
|
|
103
|
+
}>;
|
|
112
104
|
signal: z.ZodObject<{
|
|
113
105
|
domain: z.ZodString;
|
|
114
|
-
seniority: z.ZodEnum<
|
|
115
|
-
|
|
106
|
+
seniority: z.ZodEnum<{
|
|
107
|
+
intern: "intern";
|
|
108
|
+
junior: "junior";
|
|
109
|
+
mid: "mid";
|
|
110
|
+
senior: "senior";
|
|
111
|
+
staff: "staff";
|
|
112
|
+
principal: "principal";
|
|
113
|
+
executive: "executive";
|
|
114
|
+
}>;
|
|
115
|
+
location_flexibility: z.ZodEnum<{
|
|
116
|
+
remote_only: "remote_only";
|
|
117
|
+
remote_ok: "remote_ok";
|
|
118
|
+
hybrid: "hybrid";
|
|
119
|
+
onsite_required: "onsite_required";
|
|
120
|
+
}>;
|
|
116
121
|
urgency: z.ZodOptional<z.ZodString>;
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
location_flexibility: "remote_only" | "remote_ok" | "hybrid" | "onsite_required";
|
|
121
|
-
urgency?: string | undefined;
|
|
122
|
-
}, {
|
|
123
|
-
domain: string;
|
|
124
|
-
seniority: "executive" | "junior" | "mid" | "senior" | "staff" | "principal" | "intern";
|
|
125
|
-
location_flexibility: "remote_only" | "remote_ok" | "hybrid" | "onsite_required";
|
|
126
|
-
urgency?: string | undefined;
|
|
127
|
-
}>;
|
|
128
|
-
}, "strip", z.ZodTypeAny, {
|
|
129
|
-
type: "role_inquiry" | "project_inquiry" | "advisory_inquiry" | "collaboration_inquiry";
|
|
130
|
-
signal: {
|
|
131
|
-
domain: string;
|
|
132
|
-
seniority: "executive" | "junior" | "mid" | "senior" | "staff" | "principal" | "intern";
|
|
133
|
-
location_flexibility: "remote_only" | "remote_ok" | "hybrid" | "onsite_required";
|
|
134
|
-
urgency?: string | undefined;
|
|
135
|
-
};
|
|
136
|
-
}, {
|
|
137
|
-
type: "role_inquiry" | "project_inquiry" | "advisory_inquiry" | "collaboration_inquiry";
|
|
138
|
-
signal: {
|
|
139
|
-
domain: string;
|
|
140
|
-
seniority: "executive" | "junior" | "mid" | "senior" | "staff" | "principal" | "intern";
|
|
141
|
-
location_flexibility: "remote_only" | "remote_ok" | "hybrid" | "onsite_required";
|
|
142
|
-
urgency?: string | undefined;
|
|
143
|
-
};
|
|
144
|
-
}>;
|
|
122
|
+
application_intent: z.ZodOptional<z.ZodUnknown>;
|
|
123
|
+
}, z.core.$strip>;
|
|
124
|
+
}, z.core.$strip>;
|
|
145
125
|
identity_verification: z.ZodOptional<z.ZodObject<{
|
|
146
126
|
method: z.ZodString;
|
|
147
127
|
proof: z.ZodString;
|
|
148
128
|
trust_score: z.ZodNumber;
|
|
149
129
|
score_source: z.ZodString;
|
|
150
130
|
verifications: z.ZodArray<z.ZodObject<{
|
|
151
|
-
type: z.ZodEnum<
|
|
131
|
+
type: z.ZodEnum<{
|
|
132
|
+
email: "email";
|
|
133
|
+
phone: "phone";
|
|
134
|
+
github: "github";
|
|
135
|
+
linkedin: "linkedin";
|
|
136
|
+
}>;
|
|
152
137
|
verified: z.ZodBoolean;
|
|
153
138
|
account_age_days: z.ZodOptional<z.ZodNumber>;
|
|
154
139
|
connections: z.ZodOptional<z.ZodNumber>;
|
|
155
|
-
},
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
account_age_days?: number | undefined;
|
|
159
|
-
connections?: number | undefined;
|
|
160
|
-
}, {
|
|
161
|
-
type: "email" | "phone" | "linkedin" | "github";
|
|
162
|
-
verified: boolean;
|
|
163
|
-
account_age_days?: number | undefined;
|
|
164
|
-
connections?: number | undefined;
|
|
165
|
-
}>, "many">;
|
|
166
|
-
}, "strip", z.ZodTypeAny, {
|
|
167
|
-
method: string;
|
|
168
|
-
proof: string;
|
|
169
|
-
trust_score: number;
|
|
170
|
-
score_source: string;
|
|
171
|
-
verifications: {
|
|
172
|
-
type: "email" | "phone" | "linkedin" | "github";
|
|
173
|
-
verified: boolean;
|
|
174
|
-
account_age_days?: number | undefined;
|
|
175
|
-
connections?: number | undefined;
|
|
176
|
-
}[];
|
|
177
|
-
}, {
|
|
178
|
-
method: string;
|
|
179
|
-
proof: string;
|
|
180
|
-
trust_score: number;
|
|
181
|
-
score_source: string;
|
|
182
|
-
verifications: {
|
|
183
|
-
type: "email" | "phone" | "linkedin" | "github";
|
|
184
|
-
verified: boolean;
|
|
185
|
-
account_age_days?: number | undefined;
|
|
186
|
-
connections?: number | undefined;
|
|
187
|
-
}[];
|
|
188
|
-
}>>;
|
|
189
|
-
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
190
|
-
type: "artemys.handshake.initiate";
|
|
191
|
-
conversation_id: string;
|
|
192
|
-
agent: {
|
|
193
|
-
id: string;
|
|
194
|
-
role: "sourcer" | "candidate_representative";
|
|
195
|
-
representing: {
|
|
196
|
-
type: "employer" | "individual";
|
|
197
|
-
verified: boolean;
|
|
198
|
-
name?: string | undefined;
|
|
199
|
-
identity?: string | undefined;
|
|
200
|
-
};
|
|
201
|
-
};
|
|
202
|
-
message_id: string;
|
|
203
|
-
protocol_version: "0.1.0";
|
|
204
|
-
timestamp: string;
|
|
205
|
-
sender_agent_id: string;
|
|
206
|
-
intent: {
|
|
207
|
-
type: "role_inquiry" | "project_inquiry" | "advisory_inquiry" | "collaboration_inquiry";
|
|
208
|
-
signal: {
|
|
209
|
-
domain: string;
|
|
210
|
-
seniority: "executive" | "junior" | "mid" | "senior" | "staff" | "principal" | "intern";
|
|
211
|
-
location_flexibility: "remote_only" | "remote_ok" | "hybrid" | "onsite_required";
|
|
212
|
-
urgency?: string | undefined;
|
|
213
|
-
};
|
|
214
|
-
};
|
|
215
|
-
identity_verification?: {
|
|
216
|
-
method: string;
|
|
217
|
-
proof: string;
|
|
218
|
-
trust_score: number;
|
|
219
|
-
score_source: string;
|
|
220
|
-
verifications: {
|
|
221
|
-
type: "email" | "phone" | "linkedin" | "github";
|
|
222
|
-
verified: boolean;
|
|
223
|
-
account_age_days?: number | undefined;
|
|
224
|
-
connections?: number | undefined;
|
|
225
|
-
}[];
|
|
226
|
-
} | undefined;
|
|
227
|
-
}, {
|
|
228
|
-
type: "artemys.handshake.initiate";
|
|
229
|
-
conversation_id: string;
|
|
230
|
-
agent: {
|
|
231
|
-
id: string;
|
|
232
|
-
role: "sourcer" | "candidate_representative";
|
|
233
|
-
representing: {
|
|
234
|
-
type: "employer" | "individual";
|
|
235
|
-
verified: boolean;
|
|
236
|
-
name?: string | undefined;
|
|
237
|
-
identity?: string | undefined;
|
|
238
|
-
};
|
|
239
|
-
};
|
|
240
|
-
message_id: string;
|
|
241
|
-
protocol_version: "0.1.0";
|
|
242
|
-
timestamp: string;
|
|
243
|
-
sender_agent_id: string;
|
|
244
|
-
intent: {
|
|
245
|
-
type: "role_inquiry" | "project_inquiry" | "advisory_inquiry" | "collaboration_inquiry";
|
|
246
|
-
signal: {
|
|
247
|
-
domain: string;
|
|
248
|
-
seniority: "executive" | "junior" | "mid" | "senior" | "staff" | "principal" | "intern";
|
|
249
|
-
location_flexibility: "remote_only" | "remote_ok" | "hybrid" | "onsite_required";
|
|
250
|
-
urgency?: string | undefined;
|
|
251
|
-
};
|
|
252
|
-
};
|
|
253
|
-
identity_verification?: {
|
|
254
|
-
method: string;
|
|
255
|
-
proof: string;
|
|
256
|
-
trust_score: number;
|
|
257
|
-
score_source: string;
|
|
258
|
-
verifications: {
|
|
259
|
-
type: "email" | "phone" | "linkedin" | "github";
|
|
260
|
-
verified: boolean;
|
|
261
|
-
account_age_days?: number | undefined;
|
|
262
|
-
connections?: number | undefined;
|
|
263
|
-
}[];
|
|
264
|
-
} | undefined;
|
|
265
|
-
}>;
|
|
140
|
+
}, z.core.$strip>>;
|
|
141
|
+
}, z.core.$strip>>;
|
|
142
|
+
}, z.core.$strip>;
|
|
266
143
|
export type HandshakeInitiate = z.infer<typeof HandshakeInitiateSchema>;
|
|
267
144
|
/** Handshake response (Candidate Agent -> Talent Agent). */
|
|
268
145
|
export declare const HandshakeRespondSchema: z.ZodObject<{
|
|
@@ -270,191 +147,59 @@ export declare const HandshakeRespondSchema: z.ZodObject<{
|
|
|
270
147
|
message_id: z.ZodString;
|
|
271
148
|
conversation_id: z.ZodString;
|
|
272
149
|
sender_agent_id: z.ZodString;
|
|
273
|
-
} & {
|
|
274
150
|
type: z.ZodLiteral<"artemys.handshake.respond">;
|
|
275
151
|
protocol_version: z.ZodLiteral<"0.1.0">;
|
|
276
152
|
agent: z.ZodObject<{
|
|
277
153
|
id: z.ZodString;
|
|
278
|
-
role: z.ZodEnum<
|
|
154
|
+
role: z.ZodEnum<{
|
|
155
|
+
sourcer: "sourcer";
|
|
156
|
+
candidate_representative: "candidate_representative";
|
|
157
|
+
}>;
|
|
279
158
|
representing: z.ZodObject<{
|
|
280
|
-
type: z.ZodEnum<
|
|
159
|
+
type: z.ZodEnum<{
|
|
160
|
+
employer: "employer";
|
|
161
|
+
individual: "individual";
|
|
162
|
+
}>;
|
|
281
163
|
name: z.ZodOptional<z.ZodString>;
|
|
282
164
|
identity: z.ZodOptional<z.ZodString>;
|
|
283
165
|
verified: z.ZodBoolean;
|
|
284
|
-
},
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
type: "employer" | "individual";
|
|
291
|
-
verified: boolean;
|
|
292
|
-
name?: string | undefined;
|
|
293
|
-
identity?: string | undefined;
|
|
294
|
-
}>;
|
|
295
|
-
}, "strip", z.ZodTypeAny, {
|
|
296
|
-
id: string;
|
|
297
|
-
role: "sourcer" | "candidate_representative";
|
|
298
|
-
representing: {
|
|
299
|
-
type: "employer" | "individual";
|
|
300
|
-
verified: boolean;
|
|
301
|
-
name?: string | undefined;
|
|
302
|
-
identity?: string | undefined;
|
|
303
|
-
};
|
|
304
|
-
}, {
|
|
305
|
-
id: string;
|
|
306
|
-
role: "sourcer" | "candidate_representative";
|
|
307
|
-
representing: {
|
|
308
|
-
type: "employer" | "individual";
|
|
309
|
-
verified: boolean;
|
|
310
|
-
name?: string | undefined;
|
|
311
|
-
identity?: string | undefined;
|
|
312
|
-
};
|
|
166
|
+
}, z.core.$strip>;
|
|
167
|
+
}, z.core.$strip>;
|
|
168
|
+
availability: z.ZodEnum<{
|
|
169
|
+
active: "active";
|
|
170
|
+
passive: "passive";
|
|
171
|
+
not_looking: "not_looking";
|
|
313
172
|
}>;
|
|
314
|
-
availability: z.ZodEnum<["active", "passive", "not_looking"]>;
|
|
315
173
|
consent_profile: z.ZodObject<{
|
|
316
|
-
shareable: z.ZodArray<z.ZodString
|
|
174
|
+
shareable: z.ZodArray<z.ZodString>;
|
|
317
175
|
has_gated_fields: z.ZodBoolean;
|
|
318
|
-
},
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
has_gated_fields: boolean;
|
|
176
|
+
}, z.core.$strip>;
|
|
177
|
+
interest_signal: z.ZodEnum<{
|
|
178
|
+
decline: "decline";
|
|
179
|
+
interested: "interested";
|
|
180
|
+
conditional: "conditional";
|
|
324
181
|
}>;
|
|
325
|
-
interest_signal: z.ZodEnum<["interested", "conditional", "decline"]>;
|
|
326
182
|
identity_verification: z.ZodOptional<z.ZodObject<{
|
|
327
183
|
method: z.ZodString;
|
|
328
184
|
proof: z.ZodString;
|
|
329
185
|
trust_score: z.ZodNumber;
|
|
330
186
|
score_source: z.ZodString;
|
|
331
187
|
verifications: z.ZodArray<z.ZodObject<{
|
|
332
|
-
type: z.ZodEnum<
|
|
188
|
+
type: z.ZodEnum<{
|
|
189
|
+
email: "email";
|
|
190
|
+
phone: "phone";
|
|
191
|
+
github: "github";
|
|
192
|
+
linkedin: "linkedin";
|
|
193
|
+
}>;
|
|
333
194
|
verified: z.ZodBoolean;
|
|
334
195
|
account_age_days: z.ZodOptional<z.ZodNumber>;
|
|
335
196
|
connections: z.ZodOptional<z.ZodNumber>;
|
|
336
|
-
},
|
|
337
|
-
|
|
338
|
-
verified: boolean;
|
|
339
|
-
account_age_days?: number | undefined;
|
|
340
|
-
connections?: number | undefined;
|
|
341
|
-
}, {
|
|
342
|
-
type: "email" | "phone" | "linkedin" | "github";
|
|
343
|
-
verified: boolean;
|
|
344
|
-
account_age_days?: number | undefined;
|
|
345
|
-
connections?: number | undefined;
|
|
346
|
-
}>, "many">;
|
|
347
|
-
}, "strip", z.ZodTypeAny, {
|
|
348
|
-
method: string;
|
|
349
|
-
proof: string;
|
|
350
|
-
trust_score: number;
|
|
351
|
-
score_source: string;
|
|
352
|
-
verifications: {
|
|
353
|
-
type: "email" | "phone" | "linkedin" | "github";
|
|
354
|
-
verified: boolean;
|
|
355
|
-
account_age_days?: number | undefined;
|
|
356
|
-
connections?: number | undefined;
|
|
357
|
-
}[];
|
|
358
|
-
}, {
|
|
359
|
-
method: string;
|
|
360
|
-
proof: string;
|
|
361
|
-
trust_score: number;
|
|
362
|
-
score_source: string;
|
|
363
|
-
verifications: {
|
|
364
|
-
type: "email" | "phone" | "linkedin" | "github";
|
|
365
|
-
verified: boolean;
|
|
366
|
-
account_age_days?: number | undefined;
|
|
367
|
-
connections?: number | undefined;
|
|
368
|
-
}[];
|
|
369
|
-
}>>;
|
|
197
|
+
}, z.core.$strip>>;
|
|
198
|
+
}, z.core.$strip>>;
|
|
370
199
|
dialogue_limits: z.ZodOptional<z.ZodObject<{
|
|
371
200
|
max_queries: z.ZodOptional<z.ZodNumber>;
|
|
372
201
|
min_interval_seconds: z.ZodOptional<z.ZodNumber>;
|
|
373
|
-
},
|
|
374
|
-
|
|
375
|
-
min_interval_seconds?: number | undefined;
|
|
376
|
-
}, {
|
|
377
|
-
max_queries?: number | undefined;
|
|
378
|
-
min_interval_seconds?: number | undefined;
|
|
379
|
-
}>>;
|
|
380
|
-
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
381
|
-
type: "artemys.handshake.respond";
|
|
382
|
-
conversation_id: string;
|
|
383
|
-
agent: {
|
|
384
|
-
id: string;
|
|
385
|
-
role: "sourcer" | "candidate_representative";
|
|
386
|
-
representing: {
|
|
387
|
-
type: "employer" | "individual";
|
|
388
|
-
verified: boolean;
|
|
389
|
-
name?: string | undefined;
|
|
390
|
-
identity?: string | undefined;
|
|
391
|
-
};
|
|
392
|
-
};
|
|
393
|
-
message_id: string;
|
|
394
|
-
protocol_version: "0.1.0";
|
|
395
|
-
timestamp: string;
|
|
396
|
-
sender_agent_id: string;
|
|
397
|
-
availability: "active" | "passive" | "not_looking";
|
|
398
|
-
consent_profile: {
|
|
399
|
-
shareable: string[];
|
|
400
|
-
has_gated_fields: boolean;
|
|
401
|
-
};
|
|
402
|
-
interest_signal: "decline" | "interested" | "conditional";
|
|
403
|
-
identity_verification?: {
|
|
404
|
-
method: string;
|
|
405
|
-
proof: string;
|
|
406
|
-
trust_score: number;
|
|
407
|
-
score_source: string;
|
|
408
|
-
verifications: {
|
|
409
|
-
type: "email" | "phone" | "linkedin" | "github";
|
|
410
|
-
verified: boolean;
|
|
411
|
-
account_age_days?: number | undefined;
|
|
412
|
-
connections?: number | undefined;
|
|
413
|
-
}[];
|
|
414
|
-
} | undefined;
|
|
415
|
-
dialogue_limits?: {
|
|
416
|
-
max_queries?: number | undefined;
|
|
417
|
-
min_interval_seconds?: number | undefined;
|
|
418
|
-
} | undefined;
|
|
419
|
-
}, {
|
|
420
|
-
type: "artemys.handshake.respond";
|
|
421
|
-
conversation_id: string;
|
|
422
|
-
agent: {
|
|
423
|
-
id: string;
|
|
424
|
-
role: "sourcer" | "candidate_representative";
|
|
425
|
-
representing: {
|
|
426
|
-
type: "employer" | "individual";
|
|
427
|
-
verified: boolean;
|
|
428
|
-
name?: string | undefined;
|
|
429
|
-
identity?: string | undefined;
|
|
430
|
-
};
|
|
431
|
-
};
|
|
432
|
-
message_id: string;
|
|
433
|
-
protocol_version: "0.1.0";
|
|
434
|
-
timestamp: string;
|
|
435
|
-
sender_agent_id: string;
|
|
436
|
-
availability: "active" | "passive" | "not_looking";
|
|
437
|
-
consent_profile: {
|
|
438
|
-
shareable: string[];
|
|
439
|
-
has_gated_fields: boolean;
|
|
440
|
-
};
|
|
441
|
-
interest_signal: "decline" | "interested" | "conditional";
|
|
442
|
-
identity_verification?: {
|
|
443
|
-
method: string;
|
|
444
|
-
proof: string;
|
|
445
|
-
trust_score: number;
|
|
446
|
-
score_source: string;
|
|
447
|
-
verifications: {
|
|
448
|
-
type: "email" | "phone" | "linkedin" | "github";
|
|
449
|
-
verified: boolean;
|
|
450
|
-
account_age_days?: number | undefined;
|
|
451
|
-
connections?: number | undefined;
|
|
452
|
-
}[];
|
|
453
|
-
} | undefined;
|
|
454
|
-
dialogue_limits?: {
|
|
455
|
-
max_queries?: number | undefined;
|
|
456
|
-
min_interval_seconds?: number | undefined;
|
|
457
|
-
} | undefined;
|
|
458
|
-
}>;
|
|
202
|
+
}, z.core.$strip>>;
|
|
203
|
+
}, z.core.$strip>;
|
|
459
204
|
export type HandshakeRespond = z.infer<typeof HandshakeRespondSchema>;
|
|
460
205
|
//# sourceMappingURL=handshake.schema.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"handshake.schema.d.ts","sourceRoot":"","sources":["../../src/protocol/handshake.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,gBAAgB,
|
|
1
|
+
{"version":3,"file":"handshake.schema.d.ts","sourceRoot":"","sources":["../../src/protocol/handshake.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,gBAAgB;;;;;EAK3B,CAAC;AACH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAE1D,uFAAuF;AACvF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;iBAM7B,CAAC;AACH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE9D,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAGvB,CAAC;AACH,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAElD,eAAO,MAAM,kBAAkB;;;;EAA+C,CAAC;AAC/E,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE9D,sFAAsF;AACtF,eAAO,MAAM,oBAAoB;;;;EAAmD,CAAC;AACrF,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAElE,8DAA8D;AAC9D,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAQnC,CAAC;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAExE,4DAA4D;AAC5D,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAclC,CAAC;AACF,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
|
|
@@ -14,6 +14,7 @@ export const IntentSignalSchema = z.object({
|
|
|
14
14
|
seniority: z.enum(["intern", "junior", "mid", "senior", "staff", "principal", "executive"]),
|
|
15
15
|
location_flexibility: z.enum(["remote_only", "remote_ok", "hybrid", "onsite_required"]),
|
|
16
16
|
urgency: z.string().min(1).max(256).optional(),
|
|
17
|
+
application_intent: z.unknown().optional(),
|
|
17
18
|
});
|
|
18
19
|
export const IntentSchema = z.object({
|
|
19
20
|
type: IntentTypeSchema,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"handshake.schema.js","sourceRoot":"","sources":["../../src/protocol/handshake.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACtE,OAAO,EAAE,mBAAmB,EAAE,0BAA0B,EAAE,MAAM,sBAAsB,CAAC;AACvF,OAAO,EAAE,4BAA4B,EAAE,MAAM,qBAAqB,CAAC;AAEnE,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,CAAC,IAAI,CAAC;IACrC,cAAc;IACd,iBAAiB;IACjB,kBAAkB;IAClB,uBAAuB;CACxB,CAAC,CAAC;AAGH,uFAAuF;AACvF,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;IAClC,SAAS,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE,OAAO,EAAE,WAAW,EAAE,WAAW,CAAC,CAAC;IAC3F,oBAAoB,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,aAAa,EAAE,WAAW,EAAE,QAAQ,EAAE,iBAAiB,CAAC,CAAC;IACvF,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"handshake.schema.js","sourceRoot":"","sources":["../../src/protocol/handshake.schema.ts"],"names":[],"mappings":"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"}
|