@vm0/cli 9.91.0 → 9.92.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.
@@ -49,7 +49,7 @@ if (DSN) {
49
49
  Sentry.init({
50
50
  dsn: DSN,
51
51
  environment: process.env.SENTRY_ENVIRONMENT ?? "production",
52
- release: "9.91.0",
52
+ release: "9.92.0",
53
53
  sendDefaultPii: false,
54
54
  tracesSampleRate: 0,
55
55
  shutdownTimeout: 500,
@@ -68,7 +68,7 @@ if (DSN) {
68
68
  }
69
69
  });
70
70
  Sentry.setContext("cli", {
71
- version: "9.91.0",
71
+ version: "9.92.0",
72
72
  command: process.argv.slice(2).join(" ")
73
73
  });
74
74
  Sentry.setContext("runtime", {
@@ -805,7 +805,6 @@ var logEntrySchema = z5.object({
805
805
  sessionId: z5.string().nullable(),
806
806
  agentId: z5.string().nullable(),
807
807
  displayName: z5.string().nullable(),
808
- orgSlug: z5.string().nullable(),
809
808
  framework: z5.string().nullable(),
810
809
  triggerSource: triggerSourceSchema.nullable(),
811
810
  triggerAgentName: z5.string().nullable(),
@@ -1076,7 +1075,7 @@ var createRunResponseSchema = z8.object({
1076
1075
  output: z8.string().optional(),
1077
1076
  error: z8.string().optional(),
1078
1077
  executionTimeMs: z8.number().optional(),
1079
- createdAt: z8.string()
1078
+ createdAt: z8.string().optional()
1080
1079
  });
1081
1080
  var getRunResponseSchema = z8.object({
1082
1081
  runId: z8.string(),
@@ -2769,7 +2768,8 @@ var unsavedRunSchema = z17.object({
2769
2768
  runId: z17.string(),
2770
2769
  status: z17.string(),
2771
2770
  prompt: z17.string(),
2772
- error: z17.string().nullable()
2771
+ error: z17.string().nullable(),
2772
+ createdAt: z17.string()
2773
2773
  });
2774
2774
  var chatThreadDetailSchema = z17.object({
2775
2775
  id: z17.string(),
@@ -2857,7 +2857,7 @@ var chatMessagesContract = c10.router({
2857
2857
  runId: z17.string(),
2858
2858
  threadId: z17.string(),
2859
2859
  status: runStatusSchema,
2860
- createdAt: z17.string()
2860
+ createdAt: z17.string().optional()
2861
2861
  }),
2862
2862
  400: apiErrorSchema,
2863
2863
  401: apiErrorSchema,
@@ -7547,6 +7547,371 @@ var slackFirewall = {
7547
7547
  ]
7548
7548
  };
7549
7549
 
7550
+ // ../../packages/core/src/firewalls/categories.ts
7551
+ var CATEGORY_REGISTRY = {};
7552
+ function registerCategories(type, data) {
7553
+ CATEGORY_REGISTRY[type] = data;
7554
+ }
7555
+
7556
+ // ../../packages/core/src/firewalls/slack.categories.ts
7557
+ var slackCategories = {
7558
+ // Admin (25)
7559
+ admin: "Admin",
7560
+ "admin.analytics:read": "Admin",
7561
+ "admin.app_activities:read": "Admin",
7562
+ "admin.apps:read": "Admin",
7563
+ "admin.apps:write": "Admin",
7564
+ "admin.barriers:read": "Admin",
7565
+ "admin.barriers:write": "Admin",
7566
+ "admin.conversations:manage_objects": "Admin",
7567
+ "admin.conversations:read": "Admin",
7568
+ "admin.conversations:write": "Admin",
7569
+ "admin.invites:read": "Admin",
7570
+ "admin.invites:write": "Admin",
7571
+ "admin.roles:read": "Admin",
7572
+ "admin.roles:write": "Admin",
7573
+ "admin.teams:read": "Admin",
7574
+ "admin.teams:write": "Admin",
7575
+ "admin.usergroups:read": "Admin",
7576
+ "admin.usergroups:write": "Admin",
7577
+ "admin.users:read": "Admin",
7578
+ "admin.users:write": "Admin",
7579
+ "admin.workflows:read": "Admin",
7580
+ "admin.workflows:write": "Admin",
7581
+ "channels:manage": "Admin",
7582
+ "conversations.connect:manage": "Admin",
7583
+ "team.billing:read": "Admin",
7584
+ // Read (34)
7585
+ "bookmarks:read": "Read",
7586
+ "calls:read": "Read",
7587
+ "canvases:read": "Read",
7588
+ "channels:history": "Read",
7589
+ "channels:read": "Read",
7590
+ "datastore:read": "Read",
7591
+ "dnd:read": "Read",
7592
+ "emoji:read": "Read",
7593
+ "files:read": "Read",
7594
+ "groups:history": "Read",
7595
+ "groups:read": "Read",
7596
+ "hosting:read": "Read",
7597
+ "identity:read": "Read",
7598
+ "im:history": "Read",
7599
+ "im:read": "Read",
7600
+ "lists:read": "Read",
7601
+ "mpim:history": "Read",
7602
+ "mpim:read": "Read",
7603
+ "pins:read": "Read",
7604
+ "reactions:read": "Read",
7605
+ "reminders:read": "Read",
7606
+ "remote_files:read": "Read",
7607
+ "search:read": "Read",
7608
+ "search:read.files": "Read",
7609
+ "search:read.im": "Read",
7610
+ "search:read.mpim": "Read",
7611
+ "search:read.private": "Read",
7612
+ "search:read.public": "Read",
7613
+ "search:read.users": "Read",
7614
+ "stars:read": "Read",
7615
+ "team.preferences:read": "Read",
7616
+ "team:read": "Read",
7617
+ "triggers:read": "Read",
7618
+ "usergroups:read": "Read",
7619
+ "users.profile:read": "Read",
7620
+ "users:read": "Read",
7621
+ "users:read.email": "Read",
7622
+ // Write (22)
7623
+ "bookmarks:write": "Write",
7624
+ "calls:write": "Write",
7625
+ "canvases:write": "Write",
7626
+ "channels:write": "Write",
7627
+ "channels:write.invites": "Write",
7628
+ "channels:write.topic": "Write",
7629
+ "datastore:write": "Write",
7630
+ "dnd:write": "Write",
7631
+ "files:write": "Write",
7632
+ "groups:write": "Write",
7633
+ "groups:write.invites": "Write",
7634
+ "groups:write.topic": "Write",
7635
+ "im:write.topic": "Write",
7636
+ "links:write": "Write",
7637
+ "lists:write": "Write",
7638
+ "pins:write": "Write",
7639
+ "reactions:write": "Write",
7640
+ "reminders:write": "Write",
7641
+ "remote_files:write": "Write",
7642
+ "stars:write": "Write",
7643
+ "triggers:write": "Write",
7644
+ "usergroups:write": "Write",
7645
+ "users.profile:write": "Write",
7646
+ "users:write": "Write",
7647
+ // Send (8)
7648
+ "assistant:write": "Send",
7649
+ "chat:write": "Send",
7650
+ "conversations.connect:write": "Send",
7651
+ "im:write": "Send",
7652
+ "mpim:write": "Send",
7653
+ "mpim:write.topic": "Send",
7654
+ "remote_files:share": "Send",
7655
+ // Misc (5)
7656
+ "channels:join": "Misc",
7657
+ client: "Misc",
7658
+ no_scopes_required: "Misc",
7659
+ openid: "Misc",
7660
+ "tokens.basic": "Misc"
7661
+ };
7662
+ var slackCategoryOrder = ["Read", "Write", "Send", "Admin", "Misc"];
7663
+ registerCategories("slack", {
7664
+ categories: slackCategories,
7665
+ displayOrder: slackCategoryOrder
7666
+ });
7667
+
7668
+ // ../../packages/core/src/firewalls/github.categories.ts
7669
+ var githubCategories = {
7670
+ // Admin (22)
7671
+ "administration:read": "Admin",
7672
+ "administration:write": "Admin",
7673
+ "organization_administration:read": "Admin",
7674
+ "organization_administration:write": "Admin",
7675
+ "organization_hooks:read": "Admin",
7676
+ "organization_hooks:write": "Admin",
7677
+ "organization_self_hosted_runners:read": "Admin",
7678
+ "organization_self_hosted_runners:write": "Admin",
7679
+ "organization_runner_custom_images:read": "Admin",
7680
+ "organization_runner_custom_images:write": "Admin",
7681
+ "repository_hooks:read": "Admin",
7682
+ "repository_hooks:write": "Admin",
7683
+ "organization_personal_access_tokens:read": "Admin",
7684
+ "organization_personal_access_tokens:write": "Admin",
7685
+ "organization_personal_access_token_requests:read": "Admin",
7686
+ "organization_personal_access_token_requests:write": "Admin",
7687
+ "organization_custom_org_roles:read": "Admin",
7688
+ "organization_custom_properties:admin": "Admin",
7689
+ "organization_custom_properties:read": "Admin",
7690
+ "organization_custom_properties:write": "Admin",
7691
+ "organization_network_configurations:read": "Admin",
7692
+ "organization_network_configurations:write": "Admin",
7693
+ // Read — all remaining :read permissions
7694
+ "actions:read": "Read",
7695
+ "actions_variables:read": "Read",
7696
+ "artifact_metadata:read": "Read",
7697
+ "attestations:read": "Read",
7698
+ "blocking:read": "Read",
7699
+ "checks:read": "Read",
7700
+ "codespaces_lifecycle_admin:read": "Read",
7701
+ "codespaces_metadata:read": "Read",
7702
+ "codespaces:read": "Read",
7703
+ "codespaces_user_secrets:read": "Read",
7704
+ "contents:read": "Read",
7705
+ "dependabot_secrets:read": "Read",
7706
+ "deployments:read": "Read",
7707
+ "emails:read": "Read",
7708
+ "enterprise_copilot_metrics:read": "Read",
7709
+ "enterprise_teams:read": "Read",
7710
+ "environments:read": "Read",
7711
+ "followers:read": "Read",
7712
+ "git_signing_ssh_public_keys:read": "Read",
7713
+ "gpg_keys:read": "Read",
7714
+ "interaction_limits:read": "Read",
7715
+ "issue_fields:read": "Read",
7716
+ "issues:read": "Read",
7717
+ "issue_types:read": "Read",
7718
+ "keys:read": "Read",
7719
+ "members:read": "Read",
7720
+ "metadata:read": "Read",
7721
+ "organization_actions_variables:read": "Read",
7722
+ "organization_api_insights:read": "Read",
7723
+ "organization_campaigns:read": "Read",
7724
+ "organization_codespaces:read": "Read",
7725
+ "organization_codespaces_secrets:read": "Read",
7726
+ "organization_copilot_agent_settings:read": "Read",
7727
+ "organization_copilot_metrics:read": "Read",
7728
+ "organization_copilot_seat_management:read": "Read",
7729
+ "organization_dependabot_secrets:read": "Read",
7730
+ "organization_events:read": "Read",
7731
+ "organization_private_registries:read": "Read",
7732
+ "organization_projects:read": "Read",
7733
+ "organization_secrets:read": "Read",
7734
+ "organization_user_blocking:read": "Read",
7735
+ "org_copilot_content_exclusion:read": "Read",
7736
+ "pages:read": "Read",
7737
+ "plan:read": "Read",
7738
+ "private_repository_invitations:read": "Read",
7739
+ "pull_requests:read": "Read",
7740
+ "repository_advisories:read": "Read",
7741
+ "secret_scanning_alerts:read": "Read",
7742
+ "secrets:read": "Read",
7743
+ "security_events:read": "Read",
7744
+ "starring:read": "Read",
7745
+ "statuses:read": "Read",
7746
+ "vulnerability_alerts:read": "Read",
7747
+ "watching:read": "Read",
7748
+ // Write — all remaining :write permissions
7749
+ "actions:write": "Write",
7750
+ "actions_variables:write": "Write",
7751
+ "artifact_metadata:write": "Write",
7752
+ "attestations:write": "Write",
7753
+ "blocking:write": "Write",
7754
+ "checks:write": "Write",
7755
+ "codespaces_lifecycle_admin:write": "Write",
7756
+ "codespaces_secrets:write": "Write",
7757
+ "codespaces_user_secrets:write": "Write",
7758
+ "codespaces:write": "Write",
7759
+ "contents:write": "Write",
7760
+ "dependabot_secrets:write": "Write",
7761
+ "deployments:write": "Write",
7762
+ "emails:write": "Write",
7763
+ "enterprise_teams:write": "Write",
7764
+ "environments:write": "Write",
7765
+ "followers:write": "Write",
7766
+ "gists:write": "Write",
7767
+ "git_signing_ssh_public_keys:write": "Write",
7768
+ "gpg_keys:write": "Write",
7769
+ "interaction_limits:write": "Write",
7770
+ "issue_fields:write": "Write",
7771
+ "issues:write": "Write",
7772
+ "issue_types:write": "Write",
7773
+ "keys:write": "Write",
7774
+ "members:write": "Write",
7775
+ "organization_actions_variables:write": "Write",
7776
+ "organization_campaigns:write": "Write",
7777
+ "organization_codespaces_secrets:write": "Write",
7778
+ "organization_codespaces_settings:write": "Write",
7779
+ "organization_codespaces:write": "Write",
7780
+ "organization_copilot_agent_settings:write": "Write",
7781
+ "organization_copilot_seat_management:write": "Write",
7782
+ "organization_dependabot_secrets:write": "Write",
7783
+ "organization_private_registries:write": "Write",
7784
+ "organization_projects:write": "Write",
7785
+ "organization_secrets:write": "Write",
7786
+ "organization_user_blocking:write": "Write",
7787
+ "org_copilot_content_exclusion:write": "Write",
7788
+ "pages:write": "Write",
7789
+ "profile:write": "Write",
7790
+ "pull_requests:write": "Write",
7791
+ "repository_advisories:write": "Write",
7792
+ "repository_custom_properties:write": "Write",
7793
+ "secret_scanning_alerts:write": "Write",
7794
+ "secrets:write": "Write",
7795
+ "security_events:write": "Write",
7796
+ "starring:write": "Write",
7797
+ "statuses:write": "Write",
7798
+ "vulnerability_alerts:write": "Write",
7799
+ "workflows:write": "Write"
7800
+ };
7801
+ var githubCategoryOrder = ["Read", "Write", "Admin"];
7802
+ registerCategories("github", {
7803
+ categories: githubCategories,
7804
+ displayOrder: githubCategoryOrder
7805
+ });
7806
+
7807
+ // ../../packages/core/src/firewalls/gmail.categories.ts
7808
+ var gmailCategories = {
7809
+ // Read (5)
7810
+ "gmail.readonly": "Read",
7811
+ "gmail.metadata": "Read",
7812
+ "gmail.addons.current.message.readonly": "Read",
7813
+ "gmail.addons.current.message.metadata": "Read",
7814
+ "gmail.addons.current.message.action": "Read",
7815
+ // Compose (6)
7816
+ gmail: "Compose",
7817
+ "gmail.modify": "Compose",
7818
+ "gmail.compose": "Compose",
7819
+ "gmail.send": "Compose",
7820
+ "gmail.insert": "Compose",
7821
+ "gmail.addons.current.action.compose": "Compose",
7822
+ // Admin (3)
7823
+ "gmail.settings.basic": "Admin",
7824
+ "gmail.settings.sharing": "Admin",
7825
+ "gmail.labels": "Admin"
7826
+ };
7827
+ var gmailCategoryOrder = ["Read", "Compose", "Admin"];
7828
+ registerCategories("gmail", {
7829
+ categories: gmailCategories,
7830
+ displayOrder: gmailCategoryOrder
7831
+ });
7832
+
7833
+ // ../../packages/core/src/firewalls/vercel.categories.ts
7834
+ var vercelCategories = {
7835
+ // Admin (14)
7836
+ "access-groups:read": "Admin",
7837
+ "access-groups:write": "Admin",
7838
+ "authentication:read": "Admin",
7839
+ "authentication:write": "Admin",
7840
+ "billing:read": "Admin",
7841
+ "billing:write": "Admin",
7842
+ "marketplace:read": "Admin",
7843
+ "marketplace:write": "Admin",
7844
+ "projectMembers:read": "Admin",
7845
+ "projectMembers:write": "Admin",
7846
+ "security:read": "Admin",
7847
+ "security:write": "Admin",
7848
+ "teams:read": "Admin",
7849
+ "teams:write": "Admin",
7850
+ "user:write": "Admin",
7851
+ // Deploy (4)
7852
+ "deployments:write": "Deploy",
7853
+ "checks:write": "Deploy",
7854
+ "checks-v2:write": "Deploy",
7855
+ "rolling-release:write": "Deploy",
7856
+ // Read — all non-admin :read permissions
7857
+ "aliases:read": "Read",
7858
+ "api-observability:read": "Read",
7859
+ "artifacts:read": "Read",
7860
+ "bulk-redirects:read": "Read",
7861
+ "certs:read": "Read",
7862
+ "checks:read": "Read",
7863
+ "checks-v2:read": "Read",
7864
+ "connect:read": "Read",
7865
+ "deployments:read": "Read",
7866
+ "dns:read": "Read",
7867
+ "domains:read": "Read",
7868
+ "domains-registrar:read": "Read",
7869
+ "drains:read": "Read",
7870
+ "edge-config:read": "Read",
7871
+ "environment:read": "Read",
7872
+ "feature-flags:read": "Read",
7873
+ "integrations:read": "Read",
7874
+ "logDrains:read": "Read",
7875
+ "logs:read": "Read",
7876
+ "microfrontends:read": "Read",
7877
+ "project-routes:read": "Read",
7878
+ "projects:read": "Read",
7879
+ "rolling-release:read": "Read",
7880
+ "sandboxes:read": "Read",
7881
+ "sandboxes-v2-beta:read": "Read",
7882
+ "user:read": "Read",
7883
+ "webhooks:read": "Read",
7884
+ // Write — all remaining :write not in Deploy or Admin
7885
+ "aliases:write": "Write",
7886
+ "api-observability:write": "Write",
7887
+ "artifacts:write": "Write",
7888
+ "bulk-redirects:write": "Write",
7889
+ "certs:write": "Write",
7890
+ "connect:write": "Write",
7891
+ "dns:write": "Write",
7892
+ "domains:write": "Write",
7893
+ "domains-registrar:write": "Write",
7894
+ "drains:write": "Write",
7895
+ "edge-cache:write": "Write",
7896
+ "edge-config:write": "Write",
7897
+ "environment:write": "Write",
7898
+ "feature-flags:write": "Write",
7899
+ "integrations:write": "Write",
7900
+ "logDrains:write": "Write",
7901
+ "microfrontends:write": "Write",
7902
+ "project-routes:write": "Write",
7903
+ "projects:write": "Write",
7904
+ "sandboxes:write": "Write",
7905
+ "sandboxes-v2-beta:write": "Write",
7906
+ "static-ips:write": "Write",
7907
+ "webhooks:write": "Write"
7908
+ };
7909
+ var vercelCategoryOrder = ["Read", "Deploy", "Write", "Admin"];
7910
+ registerCategories("vercel", {
7911
+ categories: vercelCategories,
7912
+ displayOrder: vercelCategoryOrder
7913
+ });
7914
+
7550
7915
  // ../../packages/core/src/firewalls/agentmail.generated.ts
7551
7916
  var agentmailFirewall = {
7552
7917
  name: "agentmail",
@@ -12912,6 +13277,26 @@ var heygenFirewall = {
12912
13277
  ]
12913
13278
  };
12914
13279
 
13280
+ // ../../packages/core/src/firewalls/htmlcsstoimage.generated.ts
13281
+ var htmlcsstoimageFirewall = {
13282
+ name: "htmlcsstoimage",
13283
+ description: "HTML/CSS to Image API",
13284
+ placeholders: {
13285
+ HCTI_API_KEY: "c0ffee5a-fe10-ca1c-0ffe-e5afe10ca1c0"
13286
+ },
13287
+ apis: [
13288
+ {
13289
+ base: "https://hcti.io",
13290
+ auth: {
13291
+ headers: {
13292
+ Authorization: "${{ basic(vars.HCTI_USER_ID, secrets.HCTI_API_KEY) }}"
13293
+ }
13294
+ },
13295
+ permissions: []
13296
+ }
13297
+ ]
13298
+ };
13299
+
12915
13300
  // ../../packages/core/src/firewalls/hubspot.generated.ts
12916
13301
  var hubspotFirewall = {
12917
13302
  name: "hubspot",
@@ -14820,6 +15205,26 @@ var stravaFirewall = {
14820
15205
  ]
14821
15206
  };
14822
15207
 
15208
+ // ../../packages/core/src/firewalls/streak.generated.ts
15209
+ var streakFirewall = {
15210
+ name: "streak",
15211
+ description: "Streak CRM API",
15212
+ placeholders: {
15213
+ STREAK_TOKEN: "Coffee5afe10ca1Coffee5afe10ca1Coffee5afe10"
15214
+ },
15215
+ apis: [
15216
+ {
15217
+ base: "https://api.streak.com",
15218
+ auth: {
15219
+ headers: {
15220
+ Authorization: "${{ basic(secrets.STREAK_TOKEN, ) }}"
15221
+ }
15222
+ },
15223
+ permissions: []
15224
+ }
15225
+ ]
15226
+ };
15227
+
14823
15228
  // ../../packages/core/src/firewalls/stripe.generated.ts
14824
15229
  var stripeFirewall = {
14825
15230
  name: "stripe",
@@ -15400,6 +15805,19 @@ var vercelFirewall = {
15400
15805
  "PUT /v1/installations/{integrationConfigurationId}/resources/{resourceId}/secrets"
15401
15806
  ]
15402
15807
  },
15808
+ {
15809
+ name: "microfrontends:read",
15810
+ rules: [
15811
+ "GET /v1/microfrontends/groups",
15812
+ "GET /v1/microfrontends/groups/{groupId}/projects",
15813
+ "GET /v1/microfrontends/projects/{projectIdOrName}/production-mfe-config",
15814
+ "GET /v1/microfrontends/{deploymentId}/config"
15815
+ ]
15816
+ },
15817
+ {
15818
+ name: "microfrontends:write",
15819
+ rules: ["POST /v1/microfrontends/group"]
15820
+ },
15403
15821
  {
15404
15822
  name: "project-routes:read",
15405
15823
  rules: [
@@ -15449,6 +15867,7 @@ var vercelFirewall = {
15449
15867
  "POST /v1/projects/{idOrName}/domains/{domain}/move",
15450
15868
  "DELETE /v1/projects/{idOrName}/env",
15451
15869
  "PATCH /v1/projects/{idOrName}/protection-bypass",
15870
+ "PATCH /v1/projects/{projectId}/microfrontends",
15452
15871
  "POST /v1/projects/{projectId}/pause",
15453
15872
  "POST /v1/projects/{projectId}/rollback/{deploymentId}",
15454
15873
  "POST /v1/projects/{projectId}/unpause",
@@ -15583,6 +16002,8 @@ var vercelFirewall = {
15583
16002
  "POST /v1/teams/{teamId}/members/teams/join",
15584
16003
  "PATCH /v1/teams/{teamId}/members/{uid}",
15585
16004
  "DELETE /v1/teams/{teamId}/members/{uid}",
16005
+ "PATCH /v1/teams/{teamId}/microfrontends/{groupId}",
16006
+ "DELETE /v1/teams/{teamId}/microfrontends/{groupId}",
15586
16007
  "POST /v1/teams/{teamId}/request",
15587
16008
  "PATCH /v2/teams/{teamId}",
15588
16009
  "POST /v2/teams/{teamId}/members"
@@ -16312,6 +16733,7 @@ var CONNECTOR_FIREWALLS = {
16312
16733
  "google-sheets": googleSheetsFirewall,
16313
16734
  granola: granolaFirewall,
16314
16735
  heygen: heygenFirewall,
16736
+ htmlcsstoimage: htmlcsstoimageFirewall,
16315
16737
  hubspot: hubspotFirewall,
16316
16738
  "hugging-face": huggingFaceFirewall,
16317
16739
  hume: humeFirewall,
@@ -16365,6 +16787,7 @@ var CONNECTOR_FIREWALLS = {
16365
16787
  slack: slackFirewall,
16366
16788
  spotify: spotifyFirewall,
16367
16789
  strava: stravaFirewall,
16790
+ streak: streakFirewall,
16368
16791
  stripe: stripeFirewall,
16369
16792
  supabase: supabaseFirewall,
16370
16793
  supadata: supadataFirewall,
@@ -17618,6 +18041,28 @@ var zeroRunContextContract = c25.router({
17618
18041
  summary: "Get run execution context snapshot for debugging"
17619
18042
  }
17620
18043
  });
18044
+ var zeroRunNetworkLogsContract = c25.router({
18045
+ getNetworkLogs: {
18046
+ method: "GET",
18047
+ path: "/api/zero/runs/:id/network",
18048
+ headers: authHeadersSchema,
18049
+ pathParams: z31.object({
18050
+ id: z31.string().min(1, "Run ID is required")
18051
+ }),
18052
+ query: z31.object({
18053
+ since: z31.coerce.number().optional(),
18054
+ limit: z31.coerce.number().min(1).max(500).default(500),
18055
+ order: z31.enum(["asc", "desc"]).default("asc")
18056
+ }),
18057
+ responses: {
18058
+ 200: networkLogsResponseSchema,
18059
+ 400: apiErrorSchema,
18060
+ 401: apiErrorSchema,
18061
+ 404: apiErrorSchema
18062
+ },
18063
+ summary: "Get network logs for a run"
18064
+ }
18065
+ });
17621
18066
 
17622
18067
  // ../../packages/core/src/contracts/zero-schedules.ts
17623
18068
  import { z as z32 } from "zod";
@@ -17626,7 +18071,6 @@ var scheduleResponseSchema = z32.object({
17626
18071
  id: z32.string().uuid(),
17627
18072
  agentId: z32.string().uuid(),
17628
18073
  displayName: z32.string().nullable(),
17629
- orgSlug: z32.string(),
17630
18074
  userId: z32.string(),
17631
18075
  name: z32.string(),
17632
18076
  triggerType: z32.enum(["cron", "once", "loop"]),
@@ -18782,6 +19226,11 @@ var FEATURE_SWITCHES = {
18782
19226
  enabledUserHashes: STAFF_USER_HASHES,
18783
19227
  enabledOrgIdHashes: STAFF_ORG_ID_HASHES
18784
19228
  },
19229
+ ["runNetwork" /* RunNetwork */]: {
19230
+ maintainer: "liangyou@vm0.ai",
19231
+ enabled: false,
19232
+ enabledOrgIdHashes: STAFF_ORG_ID_HASHES
19233
+ },
18785
19234
  ["activityLogList" /* ActivityLogList */]: {
18786
19235
  maintainer: "ethan@vm0.ai",
18787
19236
  enabled: false,
@@ -20893,4 +21342,4 @@ export {
20893
21342
  pollEvents,
20894
21343
  showNextSteps
20895
21344
  };
20896
- //# sourceMappingURL=chunk-KVC2MJ4I.js.map
21345
+ //# sourceMappingURL=chunk-7QKHF3FS.js.map