@devhelm/sdk 1.0.0 → 1.2.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.
@@ -617,7 +617,7 @@ export interface paths {
617
617
  get?: never;
618
618
  put?: never;
619
619
  /** Resend invite */
620
- post: operations["resend"];
620
+ post: operations["resend_1"];
621
621
  delete?: never;
622
622
  options?: never;
623
623
  head?: never;
@@ -1520,7 +1520,7 @@ export interface paths {
1520
1520
  head?: never;
1521
1521
  /**
1522
1522
  * Update alert sensitivity for a subscription
1523
- * @description Controls which external incidents trigger alerts: ALL (any status change), INCIDENTS_ONLY (real vendor incidents, default), MAJOR_ONLY (only DOWN-level incidents).
1523
+ * @description Controls which external incidents trigger alerts and whether they page anyone: ALL (any status change, paged), INCIDENTS_ONLY (real vendor incidents, paged), MAJOR_ONLY (only DOWN-level incidents, paged), AWARENESS (real vendor incidents tracked silently — visible on the dashboard but no alert channels fire; default for new subscriptions).
1524
1524
  */
1525
1525
  patch: operations["updateAlertSensitivity"];
1526
1526
  trace?: never;
@@ -1536,7 +1536,7 @@ export interface paths {
1536
1536
  put?: never;
1537
1537
  /**
1538
1538
  * Subscribe to a service or a component of a service
1539
- * @description Idempotent — returns the existing subscription if an identical one exists. Omit the request body or set componentId to null for a whole-service subscription. Free tier: max 10 subscriptions. Paid tier: unlimited.
1539
+ * @description Idempotent — returns the existing subscription if an identical one exists. Omit the request body or set componentId to null for a whole-service subscription. When alertSensitivity is omitted, new subscriptions default to AWARENESS (silent tracking — the incident appears on the dashboard but no alert channels fire). PATCH /alert-sensitivity to opt in to paging. Free tier: max 10 subscriptions. Paid tier: unlimited.
1540
1540
  */
1541
1541
  post: operations["subscribe_1"];
1542
1542
  delete?: never;
@@ -2479,6 +2479,26 @@ export interface components {
2479
2479
  customHeaders?: {
2480
2480
  [key: string]: string | null;
2481
2481
  } | null;
2482
+ /** @description Telegram chat ID */
2483
+ chatId?: string | null;
2484
+ /** @description Pushover notification priority override */
2485
+ priority?: string | null;
2486
+ /** @description Mattermost channel override */
2487
+ channel?: string | null;
2488
+ /** @description Splunk On-Call routing key */
2489
+ routingKey?: string | null;
2490
+ /** @description Pushbullet target device identifier */
2491
+ deviceIden?: string | null;
2492
+ /** @description Linear team ID for issue creation */
2493
+ teamId?: string | null;
2494
+ /** @description incident.io incident visibility */
2495
+ visibility?: string | null;
2496
+ /** @description Rootly incident severity slug */
2497
+ severity?: string | null;
2498
+ /** @description Datadog site region */
2499
+ site?: string | null;
2500
+ /** @description Jira project key */
2501
+ projectKey?: string | null;
2482
2502
  };
2483
2503
  /** @description Alert channel with non-sensitive configuration metadata */
2484
2504
  AlertChannelDto: {
@@ -2489,11 +2509,8 @@ export interface components {
2489
2509
  id: string;
2490
2510
  /** @description Human-readable channel name */
2491
2511
  name: string;
2492
- /**
2493
- * @description Channel integration type (e.g. SLACK, PAGERDUTY, EMAIL)
2494
- * @enum {string}
2495
- */
2496
- channelType: "email" | "webhook" | "slack" | "pagerduty" | "opsgenie" | "teams" | "discord";
2512
+ /** @description Channel integration type (e.g. SLACK, PAGERDUTY, EMAIL) */
2513
+ channelType: string;
2497
2514
  displayConfig?: components["schemas"]["AlertChannelDisplayConfig"] | null;
2498
2515
  /**
2499
2516
  * Format: date-time
@@ -2507,11 +2524,8 @@ export interface components {
2507
2524
  updatedAt: string;
2508
2525
  /** @description SHA-256 hash of the channel config; use for change detection */
2509
2526
  configHash?: string | null;
2510
- /**
2511
- * @description Source that created/owns this channel: DASHBOARD, CLI, TERRAFORM, MCP, or API. Null on channels created before this attribution column existed.
2512
- * @enum {string|null}
2513
- */
2514
- managedBy?: "DASHBOARD" | "CLI" | "TERRAFORM" | "MCP" | "API" | null;
2527
+ /** @description Source that created/owns this channel: DASHBOARD, CLI, TERRAFORM, MCP, or API. Null on channels created before this attribution column existed. */
2528
+ managedBy?: string | null;
2515
2529
  /**
2516
2530
  * Format: date-time
2517
2531
  * @description Timestamp of the most recent delivery attempt
@@ -2543,16 +2557,10 @@ export interface components {
2543
2557
  channel: string;
2544
2558
  /** @description Alert channel type (e.g. slack, email, webhook) */
2545
2559
  channelType: string;
2546
- /**
2547
- * @description Current delivery status
2548
- * @enum {string}
2549
- */
2550
- status: "PENDING" | "DELIVERED" | "RETRY_PENDING" | "FAILED" | "CANCELLED";
2551
- /**
2552
- * @description Incident lifecycle event that triggered this delivery
2553
- * @enum {string}
2554
- */
2555
- eventType: "INCIDENT_CREATED" | "INCIDENT_RESOLVED" | "INCIDENT_REOPENED";
2560
+ /** @description Current delivery status */
2561
+ status: string;
2562
+ /** @description Incident lifecycle event that triggered this delivery */
2563
+ eventType: string;
2556
2564
  /**
2557
2565
  * Format: int32
2558
2566
  * @description 1-based escalation step this delivery belongs to
@@ -2670,11 +2678,8 @@ export interface components {
2670
2678
  type: string;
2671
2679
  /** @description Whether the assertion passed */
2672
2680
  passed: boolean;
2673
- /**
2674
- * @description Assertion severity
2675
- * @enum {string}
2676
- */
2677
- severity: "fail" | "warn";
2681
+ /** @description Assertion severity */
2682
+ severity: string;
2678
2683
  /** @description Human-readable result message */
2679
2684
  message?: string | null;
2680
2685
  /**
@@ -2689,18 +2694,12 @@ export interface components {
2689
2694
  actual?: string | null;
2690
2695
  };
2691
2696
  AssertionTestResultDto: {
2692
- /**
2693
- * @description Assertion type evaluated
2694
- * @enum {string}
2695
- */
2696
- assertionType: "status_code" | "response_time" | "body_contains" | "json_path" | "header_value" | "regex_body" | "dns_resolves" | "dns_response_time" | "dns_expected_ips" | "dns_expected_cname" | "dns_record_contains" | "dns_record_equals" | "dns_txt_contains" | "dns_min_answers" | "dns_max_answers" | "dns_response_time_warn" | "dns_ttl_low" | "dns_ttl_high" | "mcp_connects" | "mcp_response_time" | "mcp_has_capability" | "mcp_tool_available" | "mcp_min_tools" | "mcp_protocol_version" | "mcp_response_time_warn" | "mcp_tool_count_changed" | "ssl_expiry" | "response_size" | "redirect_count" | "redirect_target" | "response_time_warn" | "tcp_connects" | "tcp_response_time" | "tcp_response_time_warn" | "icmp_reachable" | "icmp_response_time" | "icmp_response_time_warn" | "icmp_packet_loss" | "heartbeat_received" | "heartbeat_max_interval" | "heartbeat_interval_drift" | "heartbeat_payload_contains";
2697
+ /** @description Assertion type evaluated */
2698
+ assertionType: string;
2697
2699
  /** @description Whether the assertion passed */
2698
2700
  passed: boolean;
2699
- /**
2700
- * @description Assertion severity: FAIL or WARN
2701
- * @enum {string}
2702
- */
2703
- severity: "fail" | "warn";
2701
+ /** @description Assertion severity: FAIL or WARN */
2702
+ severity: string;
2704
2703
  /** @description Human-readable result description */
2705
2704
  message: string;
2706
2705
  /** @description Expected value */
@@ -3095,7 +3094,7 @@ export interface components {
3095
3094
  CreateAlertChannelRequest: {
3096
3095
  /** @description Human-readable name for this alert channel */
3097
3096
  name: string;
3098
- config: components["schemas"]["DiscordChannelConfig"] | components["schemas"]["EmailChannelConfig"] | components["schemas"]["OpsGenieChannelConfig"] | components["schemas"]["PagerDutyChannelConfig"] | components["schemas"]["SlackChannelConfig"] | components["schemas"]["TeamsChannelConfig"] | components["schemas"]["WebhookChannelConfig"];
3097
+ config: components["schemas"]["DatadogChannelConfig"] | components["schemas"]["DiscordChannelConfig"] | components["schemas"]["EmailChannelConfig"] | components["schemas"]["GitLabChannelConfig"] | components["schemas"]["GoogleChatChannelConfig"] | components["schemas"]["IncidentIoChannelConfig"] | components["schemas"]["JiraChannelConfig"] | components["schemas"]["LinearChannelConfig"] | components["schemas"]["MattermostChannelConfig"] | components["schemas"]["OpsGenieChannelConfig"] | components["schemas"]["PagerDutyChannelConfig"] | components["schemas"]["PushbulletChannelConfig"] | components["schemas"]["PushoverChannelConfig"] | components["schemas"]["RootlyChannelConfig"] | components["schemas"]["SlackChannelConfig"] | components["schemas"]["SplunkOnCallChannelConfig"] | components["schemas"]["TeamsChannelConfig"] | components["schemas"]["TelegramChannelConfig"] | components["schemas"]["WebhookChannelConfig"] | components["schemas"]["ZapierChannelConfig"];
3099
3098
  /**
3100
3099
  * @description Source creating this channel: DASHBOARD, CLI, TERRAFORM, MCP, or API. Defaults to API when omitted.
3101
3100
  * @enum {string|null}
@@ -3474,6 +3473,16 @@ export interface components {
3474
3473
  monitors: components["schemas"]["MonitorsSummaryDto"];
3475
3474
  incidents: components["schemas"]["IncidentsSummaryDto"];
3476
3475
  };
3476
+ DatadogChannelConfig: {
3477
+ /** @enum {string} */
3478
+ channelType: "datadog";
3479
+ /** @description Datadog API key */
3480
+ apiKey: string;
3481
+ /** @description Datadog site region (e.g. datadoghq.com, datadoghq.eu, us3.datadoghq.com) */
3482
+ site?: string | null;
3483
+ /** @description Comma-separated tags to attach to events */
3484
+ tags?: string | null;
3485
+ };
3477
3486
  /** @description Incident that overlapped the day */
3478
3487
  DayIncident: {
3479
3488
  /**
@@ -3816,6 +3825,21 @@ export interface components {
3816
3825
  /** @description Whether this is the default environment for new monitors */
3817
3826
  isDefault: boolean;
3818
3827
  };
3828
+ /** @description One structured validation rejection */
3829
+ ErrorEntry: {
3830
+ /**
3831
+ * @description Stable machine-readable code; see ValidationErrorCode for the registry
3832
+ * @example MONITOR_HEARTBEAT_GRACE_EXCEEDS_INTERVAL
3833
+ */
3834
+ code: string;
3835
+ /**
3836
+ * @description JSON-pointer-like path to the offending field, or null for request-wide errors
3837
+ * @example config.gracePeriod
3838
+ */
3839
+ field?: string | null;
3840
+ /** @description Human-readable message; safe to surface to end users */
3841
+ message: string;
3842
+ };
3819
3843
  /**
3820
3844
  * @description Uniform error envelope returned for every non-2xx response
3821
3845
  * @example {
@@ -3854,6 +3878,8 @@ export interface components {
3854
3878
  * @example 5b6f7a8c-1234-4d5e-9f0a-1b2c3d4e5f6a
3855
3879
  */
3856
3880
  requestId?: string | null;
3881
+ /** @description Structured per-field rejections; populated for validation errors, null otherwise */
3882
+ errors?: (components["schemas"]["ErrorEntry"] | null)[] | null;
3857
3883
  };
3858
3884
  /** @description Escalation chain defining which channels to notify; null preserves current */
3859
3885
  EscalationChain: {
@@ -3891,6 +3917,14 @@ export interface components {
3891
3917
  /** @description Human-readable reason for the failure */
3892
3918
  reason: string;
3893
3919
  };
3920
+ GitLabChannelConfig: {
3921
+ /** @enum {string} */
3922
+ channelType: "gitlab";
3923
+ /** @description GitLab alert integration endpoint URL */
3924
+ endpointUrl: string;
3925
+ /** @description Authorization key from GitLab alert integration settings */
3926
+ authorizationKey: string;
3927
+ };
3894
3928
  /** @description Global status summary across all subscribed vendor services */
3895
3929
  GlobalStatusSummaryDto: {
3896
3930
  /**
@@ -3936,6 +3970,12 @@ export interface components {
3936
3970
  /** @description Services that are not fully operational */
3937
3971
  servicesWithIssues: components["schemas"]["ServiceCatalogDto"][];
3938
3972
  };
3973
+ GoogleChatChannelConfig: {
3974
+ /** @enum {string} */
3975
+ channelType: "google_chat";
3976
+ /** @description Google Chat space webhook URL */
3977
+ webhookUrl: string;
3978
+ };
3939
3979
  /** @description Component ordering within a single group */
3940
3980
  GroupComponentOrder: {
3941
3981
  /**
@@ -4169,21 +4209,12 @@ export interface components {
4169
4209
  * @description Organization this incident belongs to
4170
4210
  */
4171
4211
  organizationId: number;
4172
- /**
4173
- * @description Incident origin: MONITOR, SERVICE, or MANUAL
4174
- * @enum {string}
4175
- */
4176
- source: "AUTOMATIC" | "MANUAL" | "MONITORS" | "STATUS_DATA" | "RESOURCE_GROUP";
4177
- /**
4178
- * @description Current lifecycle status (OPEN, RESOLVED, etc.)
4179
- * @enum {string}
4180
- */
4181
- status: "WATCHING" | "TRIGGERED" | "CONFIRMED" | "RESOLVED";
4182
- /**
4183
- * @description Severity level: DOWN, DEGRADED, or MAINTENANCE
4184
- * @enum {string}
4185
- */
4186
- severity: "DOWN" | "DEGRADED" | "MAINTENANCE";
4212
+ /** @description Incident origin: MONITOR, SERVICE, or MANUAL */
4213
+ source: string;
4214
+ /** @description Current lifecycle status (OPEN, RESOLVED, etc.) */
4215
+ status: string;
4216
+ /** @description Severity level: DOWN, DEGRADED, or MAINTENANCE */
4217
+ severity: string;
4187
4218
  /** @description Short summary of the incident; null for auto-generated incidents */
4188
4219
  title?: string | null;
4189
4220
  /** @description Human-readable description of the trigger rule that fired */
@@ -4218,11 +4249,8 @@ export interface components {
4218
4249
  affectedComponents?: string[] | null;
4219
4250
  /** @description Short URL linking to the incident details */
4220
4251
  shortlink?: string | null;
4221
- /**
4222
- * @description How the incident was resolved (AUTO_RECOVERED, MANUAL, etc.)
4223
- * @enum {string|null}
4224
- */
4225
- resolutionReason?: "MANUAL" | "AUTO_RECOVERED" | "AUTO_RESOLVED" | null;
4252
+ /** @description How the incident was resolved (AUTO_RECOVERED, MANUAL, etc.) */
4253
+ resolutionReason?: string | null;
4226
4254
  /**
4227
4255
  * Format: date-time
4228
4256
  * @description Timestamp when the incident was detected or created
@@ -4347,6 +4375,16 @@ export interface components {
4347
4375
  */
4348
4376
  size: number;
4349
4377
  };
4378
+ IncidentIoChannelConfig: {
4379
+ /** @enum {string} */
4380
+ channelType: "incident_io";
4381
+ /** @description incident.io API key with 'Create incidents' permission */
4382
+ apiKey: string;
4383
+ /** @description Severity ID for created incidents (from List Severities API) */
4384
+ severityId?: string | null;
4385
+ /** @description Incident visibility: public or private (default: public) */
4386
+ visibility?: string | null;
4387
+ };
4350
4388
  /** @description Incident detection, confirmation, and recovery policy for a monitor */
4351
4389
  IncidentPolicyDto: {
4352
4390
  /**
@@ -4460,13 +4498,10 @@ export interface components {
4460
4498
  id: string;
4461
4499
  /** Format: uuid */
4462
4500
  incidentId: string;
4463
- /** @enum {string|null} */
4464
- oldStatus?: "WATCHING" | "TRIGGERED" | "CONFIRMED" | "RESOLVED" | null;
4465
- /** @enum {string|null} */
4466
- newStatus?: "WATCHING" | "TRIGGERED" | "CONFIRMED" | "RESOLVED" | null;
4501
+ oldStatus?: string | null;
4502
+ newStatus?: string | null;
4467
4503
  body?: string | null;
4468
- /** @enum {string|null} */
4469
- createdBy?: "SYSTEM" | "USER" | null;
4504
+ createdBy?: string | null;
4470
4505
  notifySubscribers: boolean;
4471
4506
  /** Format: date-time */
4472
4507
  createdAt: string;
@@ -4481,8 +4516,7 @@ export interface components {
4481
4516
  description: string;
4482
4517
  logoUrl: string;
4483
4518
  authType: string;
4484
- /** @enum {string} */
4485
- tierAvailability: "FREE" | "STARTER" | "PRO" | "TEAM" | "BUSINESS" | "ENTERPRISE";
4519
+ tierAvailability: string;
4486
4520
  lifecycle: string;
4487
4521
  setupGuideUrl: string;
4488
4522
  configSchema: components["schemas"]["IntegrationConfigSchemaDto"];
@@ -4507,11 +4541,8 @@ export interface components {
4507
4541
  inviteId: number;
4508
4542
  /** @description Email address the invite was sent to */
4509
4543
  email: string;
4510
- /**
4511
- * @description Role that will be assigned to the invitee on acceptance
4512
- * @enum {string}
4513
- */
4514
- roleOffered: "OWNER" | "ADMIN" | "MEMBER";
4544
+ /** @description Role that will be assigned to the invitee on acceptance */
4545
+ roleOffered: string;
4515
4546
  /**
4516
4547
  * Format: date-time
4517
4548
  * @description Timestamp when the invite expires
@@ -4528,6 +4559,20 @@ export interface components {
4528
4559
  */
4529
4560
  revokedAt?: string | null;
4530
4561
  };
4562
+ JiraChannelConfig: {
4563
+ /** @enum {string} */
4564
+ channelType: "jira";
4565
+ /** @description Atlassian instance domain (e.g. yourteam.atlassian.net) */
4566
+ domain: string;
4567
+ /** @description Atlassian account email for API authentication */
4568
+ email: string;
4569
+ /** @description Atlassian API token */
4570
+ apiToken: string;
4571
+ /** @description Jira project key where issues are created (e.g. OPS) */
4572
+ projectKey: string;
4573
+ /** @description Issue type name (e.g. Bug, Task, Incident) */
4574
+ issueType?: string | null;
4575
+ };
4531
4576
  JsonPathAssertion: {
4532
4577
  /** @enum {string} */
4533
4578
  type: "json_path";
@@ -4566,6 +4611,16 @@ export interface components {
4566
4611
  */
4567
4612
  lastUsedAt?: string | null;
4568
4613
  };
4614
+ LinearChannelConfig: {
4615
+ /** @enum {string} */
4616
+ channelType: "linear";
4617
+ /** @description Linear API key */
4618
+ apiKey: string;
4619
+ /** @description Team ID to create issues in */
4620
+ teamId: string;
4621
+ /** @description Label ID to attach to created issues */
4622
+ labelId?: string | null;
4623
+ };
4569
4624
  LinkedStatusPageIncidentDto: {
4570
4625
  /** Format: uuid */
4571
4626
  id: string;
@@ -4574,10 +4629,8 @@ export interface components {
4574
4629
  statusPageName: string;
4575
4630
  statusPageSlug: string;
4576
4631
  title: string;
4577
- /** @enum {string} */
4578
- status: "INVESTIGATING" | "IDENTIFIED" | "MONITORING" | "RESOLVED";
4579
- /** @enum {string} */
4580
- impact: "NONE" | "MINOR" | "MAJOR" | "CRITICAL";
4632
+ status: string;
4633
+ impact: string;
4581
4634
  scheduled: boolean;
4582
4635
  /** Format: date-time */
4583
4636
  publishedAt?: string | null;
@@ -4666,6 +4719,16 @@ export interface components {
4666
4719
  /** @description Values list for multi-value rules like monitor_type_in */
4667
4720
  values?: string[] | null;
4668
4721
  };
4722
+ MattermostChannelConfig: {
4723
+ /** @enum {string} */
4724
+ channelType: "mattermost";
4725
+ /** @description Mattermost incoming webhook URL */
4726
+ webhookUrl: string;
4727
+ /** @description Override channel (if webhook allows) */
4728
+ channel?: string | null;
4729
+ /** @description Custom bot icon URL */
4730
+ iconUrl?: string | null;
4731
+ };
4669
4732
  McpConnectsAssertion: {
4670
4733
  /** @enum {string} */
4671
4734
  type: "mcp_connects";
@@ -4776,16 +4839,10 @@ export interface components {
4776
4839
  email: string;
4777
4840
  /** @description Member display name; null if not set */
4778
4841
  name?: string | null;
4779
- /**
4780
- * @description Member role within this organization (OWNER, ADMIN, MEMBER)
4781
- * @enum {string}
4782
- */
4783
- orgRole: "OWNER" | "ADMIN" | "MEMBER";
4784
- /**
4785
- * @description Membership status (ACTIVE, PENDING, SUSPENDED)
4786
- * @enum {string}
4787
- */
4788
- status: "INVITED" | "ACTIVE" | "SUSPENDED" | "LEFT" | "REMOVED" | "DECLINED";
4842
+ /** @description Member role within this organization (OWNER, ADMIN, MEMBER) */
4843
+ orgRole: string;
4844
+ /** @description Membership status (ACTIVE, PENDING, SUSPENDED) */
4845
+ status: string;
4789
4846
  /**
4790
4847
  * Format: date-time
4791
4848
  * @description Timestamp when the member was added to the organization
@@ -4815,11 +4872,9 @@ export interface components {
4815
4872
  id: string;
4816
4873
  /** Format: uuid */
4817
4874
  monitorId: string;
4818
- /** @enum {string} */
4819
- assertionType: "status_code" | "response_time" | "body_contains" | "json_path" | "header_value" | "regex_body" | "dns_resolves" | "dns_response_time" | "dns_expected_ips" | "dns_expected_cname" | "dns_record_contains" | "dns_record_equals" | "dns_txt_contains" | "dns_min_answers" | "dns_max_answers" | "dns_response_time_warn" | "dns_ttl_low" | "dns_ttl_high" | "mcp_connects" | "mcp_response_time" | "mcp_has_capability" | "mcp_tool_available" | "mcp_min_tools" | "mcp_protocol_version" | "mcp_response_time_warn" | "mcp_tool_count_changed" | "ssl_expiry" | "response_size" | "redirect_count" | "redirect_target" | "response_time_warn" | "tcp_connects" | "tcp_response_time" | "tcp_response_time_warn" | "icmp_reachable" | "icmp_response_time" | "icmp_response_time_warn" | "icmp_packet_loss" | "heartbeat_received" | "heartbeat_max_interval" | "heartbeat_interval_drift" | "heartbeat_payload_contains";
4875
+ assertionType: string;
4820
4876
  config: components["schemas"]["BodyContainsAssertion"] | components["schemas"]["DnsExpectedCnameAssertion"] | components["schemas"]["DnsExpectedIpsAssertion"] | components["schemas"]["DnsMaxAnswersAssertion"] | components["schemas"]["DnsMinAnswersAssertion"] | components["schemas"]["DnsRecordContainsAssertion"] | components["schemas"]["DnsRecordEqualsAssertion"] | components["schemas"]["DnsResolvesAssertion"] | components["schemas"]["DnsResponseTimeAssertion"] | components["schemas"]["DnsResponseTimeWarnAssertion"] | components["schemas"]["DnsTtlHighAssertion"] | components["schemas"]["DnsTtlLowAssertion"] | components["schemas"]["DnsTxtContainsAssertion"] | components["schemas"]["HeaderValueAssertion"] | components["schemas"]["HeartbeatIntervalDriftAssertion"] | components["schemas"]["HeartbeatMaxIntervalAssertion"] | components["schemas"]["HeartbeatPayloadContainsAssertion"] | components["schemas"]["HeartbeatReceivedAssertion"] | components["schemas"]["IcmpPacketLossAssertion"] | components["schemas"]["IcmpReachableAssertion"] | components["schemas"]["IcmpResponseTimeAssertion"] | components["schemas"]["IcmpResponseTimeWarnAssertion"] | components["schemas"]["JsonPathAssertion"] | components["schemas"]["McpConnectsAssertion"] | components["schemas"]["McpHasCapabilityAssertion"] | components["schemas"]["McpMinToolsAssertion"] | components["schemas"]["McpProtocolVersionAssertion"] | components["schemas"]["McpResponseTimeAssertion"] | components["schemas"]["McpResponseTimeWarnAssertion"] | components["schemas"]["McpToolAvailableAssertion"] | components["schemas"]["McpToolCountChangedAssertion"] | components["schemas"]["RedirectCountAssertion"] | components["schemas"]["RedirectTargetAssertion"] | components["schemas"]["RegexBodyAssertion"] | components["schemas"]["ResponseSizeAssertion"] | components["schemas"]["ResponseTimeAssertion"] | components["schemas"]["ResponseTimeWarnAssertion"] | components["schemas"]["SslExpiryAssertion"] | components["schemas"]["StatusCodeAssertion"] | components["schemas"]["TcpConnectsAssertion"] | components["schemas"]["TcpResponseTimeAssertion"] | components["schemas"]["TcpResponseTimeWarnAssertion"];
4821
- /** @enum {string} */
4822
- severity: "fail" | "warn";
4877
+ severity: string;
4823
4878
  };
4824
4879
  /** @description New authentication configuration (full replacement) */
4825
4880
  MonitorAuthConfig: components["schemas"]["BearerAuthConfig"] | components["schemas"]["BasicAuthConfig"] | components["schemas"]["HeaderAuthConfig"] | components["schemas"]["ApiKeyAuthConfig"];
@@ -4828,8 +4883,7 @@ export interface components {
4828
4883
  id: string;
4829
4884
  /** Format: uuid */
4830
4885
  monitorId: string;
4831
- /** @enum {string} */
4832
- authType: "bearer" | "basic" | "header" | "api_key";
4886
+ authType: string;
4833
4887
  config: components["schemas"]["ApiKeyAuthConfig"] | components["schemas"]["BasicAuthConfig"] | components["schemas"]["BearerAuthConfig"] | components["schemas"]["HeaderAuthConfig"];
4834
4888
  };
4835
4889
  /** @description Full monitor representation */
@@ -4846,8 +4900,7 @@ export interface components {
4846
4900
  organizationId: number;
4847
4901
  /** @description Human-readable name for this monitor */
4848
4902
  name: string;
4849
- /** @enum {string} */
4850
- type: "HTTP" | "DNS" | "MCP_SERVER" | "TCP" | "ICMP" | "HEARTBEAT";
4903
+ type: string;
4851
4904
  config: components["schemas"]["DnsMonitorConfig"] | components["schemas"]["HeartbeatMonitorConfig"] | components["schemas"]["HttpMonitorConfig"] | components["schemas"]["IcmpMonitorConfig"] | components["schemas"]["McpServerMonitorConfig"] | components["schemas"]["TcpMonitorConfig"];
4852
4905
  /**
4853
4906
  * Format: int32
@@ -4858,11 +4911,8 @@ export interface components {
4858
4911
  enabled: boolean;
4859
4912
  /** @description Probe regions where checks are executed */
4860
4913
  regions: string[];
4861
- /**
4862
- * @description Source that created/owns this monitor: DASHBOARD, CLI, TERRAFORM, MCP, or API
4863
- * @enum {string}
4864
- */
4865
- managedBy: "DASHBOARD" | "CLI" | "TERRAFORM" | "MCP" | "API";
4914
+ /** @description Source that created/owns this monitor: DASHBOARD, CLI, TERRAFORM, MCP, or API */
4915
+ managedBy: string;
4866
4916
  /**
4867
4917
  * Format: date-time
4868
4918
  * @description Timestamp when the monitor was created
@@ -4884,11 +4934,8 @@ export interface components {
4884
4934
  incidentPolicy?: components["schemas"]["IncidentPolicyDto"] | null;
4885
4935
  /** @description Alert channel IDs linked to this monitor; populated on single-monitor responses */
4886
4936
  alertChannelIds?: string[] | null;
4887
- /**
4888
- * @description Current operational state — UP, DOWN, DEGRADED, PAUSED, or UNKNOWN if no probe data yet
4889
- * @enum {string|null}
4890
- */
4891
- currentStatus?: "up" | "degraded" | "down" | "paused" | "unknown" | null;
4937
+ /** @description Current operational state — UP, DOWN, DEGRADED, PAUSED, or UNKNOWN if no probe data yet */
4938
+ currentStatus?: string | null;
4892
4939
  };
4893
4940
  /** @description Monitors that reference this secret; null on create/update responses */
4894
4941
  MonitorReference: {
@@ -4990,11 +5037,8 @@ export interface components {
4990
5037
  * @description User ID who made the change; null for automated changes
4991
5038
  */
4992
5039
  changedById?: number | null;
4993
- /**
4994
- * @description Change source (DASHBOARD, CLI, API)
4995
- * @enum {string}
4996
- */
4997
- changedVia: "API" | "DASHBOARD" | "CLI" | "TERRAFORM";
5040
+ /** @description Change source (DASHBOARD, CLI, API) */
5041
+ changedVia: string;
4998
5042
  /** @description Human-readable description of what changed */
4999
5043
  changeSummary?: string | null;
5000
5044
  /**
@@ -5029,16 +5073,10 @@ export interface components {
5029
5073
  policyId: string;
5030
5074
  /** @description Human-readable name of the matched policy (null if policy has been deleted) */
5031
5075
  policyName?: string | null;
5032
- /**
5033
- * @description Current dispatch state
5034
- * @enum {string}
5035
- */
5036
- status: "PENDING" | "DISPATCHING" | "DELIVERED" | "ESCALATING" | "ACKNOWLEDGED" | "COMPLETED";
5037
- /**
5038
- * @description Why the dispatch reached COMPLETED: EXHAUSTED (all steps ran, no ack), RESOLVED (incident resolved), NO_STEPS (policy had no steps). Null for non-terminal states.
5039
- * @enum {string|null}
5040
- */
5041
- completionReason?: "EXHAUSTED" | "RESOLVED" | "NO_STEPS" | null;
5076
+ /** @description Current dispatch state */
5077
+ status: string;
5078
+ /** @description Why the dispatch reached COMPLETED: EXHAUSTED (all steps ran, no ack), RESOLVED (incident resolved), NO_STEPS (policy had no steps). Null for non-terminal states. */
5079
+ completionReason?: string | null;
5042
5080
  /**
5043
5081
  * Format: int32
5044
5082
  * @description 1-based index of the currently active escalation step
@@ -5298,6 +5336,26 @@ export interface components {
5298
5336
  /** @description Whether to notify subscribers (default: true) */
5299
5337
  notifySubscribers?: boolean | null;
5300
5338
  };
5339
+ PushbulletChannelConfig: {
5340
+ /** @enum {string} */
5341
+ channelType: "pushbullet";
5342
+ /** @description Pushbullet access token */
5343
+ accessToken: string;
5344
+ /** @description Target device identifier (broadcasts to all if empty) */
5345
+ deviceIden?: string | null;
5346
+ };
5347
+ PushoverChannelConfig: {
5348
+ /** @enum {string} */
5349
+ channelType: "pushover";
5350
+ /** @description Pushover user or group key */
5351
+ userKey: string;
5352
+ /** @description Pushover application API token */
5353
+ appToken: string;
5354
+ /** @description Notification priority override (-2 to 2) */
5355
+ priority?: string | null;
5356
+ /** @description Notification sound override */
5357
+ sound?: string | null;
5358
+ };
5301
5359
  /** @description Rate-limit quota for the current sliding window */
5302
5360
  RateLimitInfo: {
5303
5361
  /**
@@ -5445,11 +5503,8 @@ export interface components {
5445
5503
  * @description Default environment ID for member monitors
5446
5504
  */
5447
5505
  defaultEnvironmentId?: string | null;
5448
- /**
5449
- * @description Health threshold type: COUNT or PERCENTAGE
5450
- * @enum {string|null}
5451
- */
5452
- healthThresholdType?: "COUNT" | "PERCENTAGE" | null;
5506
+ /** @description Health threshold type: COUNT or PERCENTAGE */
5507
+ healthThresholdType?: string | null;
5453
5508
  /** @description Health threshold value */
5454
5509
  healthThresholdValue?: number | null;
5455
5510
  /** @description When true, member-level incidents skip notification dispatch; only group alerts fire */
@@ -5467,11 +5522,8 @@ export interface components {
5467
5522
  health: components["schemas"]["ResourceGroupHealthDto"];
5468
5523
  /** @description Member list with individual statuses; populated on detail GET only */
5469
5524
  members?: components["schemas"]["ResourceGroupMemberDto"][] | null;
5470
- /**
5471
- * @description Source that created/owns this group: DASHBOARD, CLI, TERRAFORM, MCP, or API. Null on groups created before this attribution column existed.
5472
- * @enum {string|null}
5473
- */
5474
- managedBy?: "DASHBOARD" | "CLI" | "TERRAFORM" | "MCP" | "API" | null;
5525
+ /** @description Source that created/owns this group: DASHBOARD, CLI, TERRAFORM, MCP, or API. Null on groups created before this attribution column existed. */
5526
+ managedBy?: string | null;
5475
5527
  /**
5476
5528
  * Format: date-time
5477
5529
  * @description Timestamp when the group was created
@@ -5485,11 +5537,8 @@ export interface components {
5485
5537
  };
5486
5538
  /** @description Aggregated health summary for a resource group */
5487
5539
  ResourceGroupHealthDto: {
5488
- /**
5489
- * @description Worst-of health status across all members
5490
- * @enum {string}
5491
- */
5492
- status: "operational" | "maintenance" | "degraded" | "down";
5540
+ /** @description Worst-of health status across all members */
5541
+ status: string;
5493
5542
  /**
5494
5543
  * Format: int32
5495
5544
  * @description Total number of members in the group
@@ -5505,11 +5554,8 @@ export interface components {
5505
5554
  * @description Number of members with an active incident or non-operational status
5506
5555
  */
5507
5556
  activeIncidents: number;
5508
- /**
5509
- * @description Computed group health status based on threshold: 'healthy', 'degraded', or 'down'. Null when no health threshold is configured.
5510
- * @enum {string|null}
5511
- */
5512
- thresholdStatus?: "healthy" | "degraded" | "down" | null;
5557
+ /** @description Computed group health status based on threshold: 'healthy', 'degraded', or 'down'. Null when no health threshold is configured. */
5558
+ thresholdStatus?: string | null;
5513
5559
  /**
5514
5560
  * Format: int32
5515
5561
  * @description Number of failing members at time of last evaluation
@@ -5549,11 +5595,8 @@ export interface components {
5549
5595
  * @description Subscription ID for the service (services only); used to link to the dependency detail page
5550
5596
  */
5551
5597
  subscriptionId?: string | null;
5552
- /**
5553
- * @description Computed health status for this member
5554
- * @enum {string}
5555
- */
5556
- status: "operational" | "maintenance" | "degraded" | "down";
5598
+ /** @description Computed health status for this member */
5599
+ status: string;
5557
5600
  /** @description Effective check frequency label showing the group default when the monitor inherits it; null for services or when no group default is configured */
5558
5601
  effectiveFrequency?: string | null;
5559
5602
  /**
@@ -5617,11 +5660,8 @@ export interface components {
5617
5660
  };
5618
5661
  /** @description Dashboard summary: current status, per-region latest results, and chart data */
5619
5662
  ResultSummaryDto: {
5620
- /**
5621
- * @description Derived current status across all regions
5622
- * @enum {string}
5623
- */
5624
- currentStatus: "up" | "degraded" | "down" | "paused" | "unknown";
5663
+ /** @description Derived current status across all regions */
5664
+ currentStatus: string;
5625
5665
  /** @description Latest check result per region */
5626
5666
  latestPerRegion: components["schemas"]["RegionStatusDto"][];
5627
5667
  /** @description Time-bucketed chart data for the requested window */
@@ -5654,6 +5694,14 @@ export interface components {
5654
5694
  */
5655
5695
  interval: number;
5656
5696
  };
5697
+ RootlyChannelConfig: {
5698
+ /** @enum {string} */
5699
+ channelType: "rootly";
5700
+ /** @description Rootly API token with incident creation permission */
5701
+ apiKey: string;
5702
+ /** @description Severity slug override (e.g. sev0, sev1) */
5703
+ severity?: string | null;
5704
+ };
5657
5705
  /** @description All rule evaluations that ran for this check */
5658
5706
  RuleEvaluationDto: {
5659
5707
  /**
@@ -5798,6 +5846,8 @@ export interface components {
5798
5846
  adapterType: string;
5799
5847
  /** Format: int32 */
5800
5848
  pollingIntervalSeconds: number;
5849
+ /** @description Service lifecycle state: ACTIVE, DEGRADED, DEPRECATED, or RETIRED */
5850
+ lifecycleStatus: string;
5801
5851
  enabled: boolean;
5802
5852
  published: boolean;
5803
5853
  overallStatus?: string | null;
@@ -5906,6 +5956,8 @@ export interface components {
5906
5956
  adapterType: string;
5907
5957
  /** Format: int32 */
5908
5958
  pollingIntervalSeconds: number;
5959
+ /** @description Service lifecycle state: ACTIVE, DEGRADED, DEPRECATED, or RETIRED */
5960
+ lifecycleStatus: string;
5909
5961
  enabled: boolean;
5910
5962
  /** Format: date-time */
5911
5963
  createdAt: string;
@@ -6080,7 +6132,7 @@ export interface components {
6080
6132
  * @description ID of the component to subscribe to. Omit or null for whole-service subscription.
6081
6133
  */
6082
6134
  componentId?: string | null;
6083
- /** @description Alert sensitivity level. Defaults to INCIDENTS_ONLY when not provided. */
6135
+ /** @description Alert sensitivity: ALL (any status change), INCIDENTS_ONLY (real vendor incidents, page on every one), MAJOR_ONLY (only DOWN-level incidents), AWARENESS (track silently — show on dashboard, never send alerts). Defaults to AWARENESS when not provided — silent tracking is the friendliest first-run choice; switch to one of the paging modes to opt in to alert-channel fan-out. */
6084
6136
  alertSensitivity?: string | null;
6085
6137
  };
6086
6138
  /** @description An org-level service subscription with current status information */
@@ -6113,11 +6165,8 @@ export interface components {
6113
6165
  */
6114
6166
  componentId?: string | null;
6115
6167
  component?: components["schemas"]["ServiceComponentDto"] | null;
6116
- /**
6117
- * @description Alert sensitivity: ALL (synthetic + real incidents), INCIDENTS_ONLY (real vendor incidents, default), MAJOR_ONLY (real + DOWN severity)
6118
- * @enum {string}
6119
- */
6120
- alertSensitivity: "ALL" | "INCIDENTS_ONLY" | "MAJOR_ONLY";
6168
+ /** @description Alert sensitivity: ALL (synthetic + real incidents, paged), INCIDENTS_ONLY (real vendor incidents, paged), MAJOR_ONLY (real + DOWN severity, paged), AWARENESS (real vendor incidents tracked silently — visible on dashboard, never paged; default for new subscriptions) */
6169
+ alertSensitivity: string;
6121
6170
  /**
6122
6171
  * Format: date-time
6123
6172
  * @description When the organization subscribed to this service
@@ -6335,6 +6384,14 @@ export interface components {
6335
6384
  /** @description Optional mention text included in notifications, e.g. @channel */
6336
6385
  mentionText?: string | null;
6337
6386
  };
6387
+ SplunkOnCallChannelConfig: {
6388
+ /** @enum {string} */
6389
+ channelType: "splunk_oncall";
6390
+ /** @description Splunk On-Call REST API key */
6391
+ apiKey: string;
6392
+ /** @description Routing key for alert routing */
6393
+ routingKey: string;
6394
+ };
6338
6395
  SslExpiryAssertion: {
6339
6396
  /** @enum {string} */
6340
6397
  type: "ssl_expiry";
@@ -6390,6 +6447,11 @@ export interface components {
6390
6447
  * @default false
6391
6448
  */
6392
6449
  hidePoweredBy: boolean;
6450
+ /**
6451
+ * @description Whether to show the 'Subscribe' button in the header (default: true)
6452
+ * @default true
6453
+ */
6454
+ showSubscribeButton: boolean;
6393
6455
  /** @description Custom CSS injected via <style> on the public page — grants full style control */
6394
6456
  customCss?: string | null;
6395
6457
  /** @description Custom HTML injected into <head> on the public page — grants full script control (analytics, pixels) */
@@ -6404,14 +6466,12 @@ export interface components {
6404
6466
  groupId?: string | null;
6405
6467
  name: string;
6406
6468
  description?: string | null;
6407
- /** @enum {string} */
6408
- type: "MONITOR" | "GROUP" | "STATIC";
6469
+ type: string;
6409
6470
  /** Format: uuid */
6410
6471
  monitorId?: string | null;
6411
6472
  /** Format: uuid */
6412
6473
  resourceGroupId?: string | null;
6413
- /** @enum {string} */
6414
- currentStatus: "OPERATIONAL" | "DEGRADED_PERFORMANCE" | "PARTIAL_OUTAGE" | "MAJOR_OUTAGE" | "UNDER_MAINTENANCE";
6474
+ currentStatus: string;
6415
6475
  showUptime: boolean;
6416
6476
  /** Format: int32 */
6417
6477
  displayOrder: number;
@@ -6447,10 +6507,8 @@ export interface components {
6447
6507
  /** Format: uuid */
6448
6508
  id: string;
6449
6509
  hostname: string;
6450
- /** @enum {string} */
6451
- status: "PENDING_VERIFICATION" | "VERIFICATION_FAILED" | "VERIFIED" | "SSL_PENDING" | "ACTIVE" | "FAILED" | "REMOVED";
6452
- /** @enum {string} */
6453
- verificationMethod: "CNAME" | "TXT";
6510
+ status: string;
6511
+ verificationMethod: string;
6454
6512
  verificationToken: string;
6455
6513
  verificationCnameTarget: string;
6456
6514
  /** Format: date-time */
@@ -6477,22 +6535,16 @@ export interface components {
6477
6535
  slug: string;
6478
6536
  description?: string | null;
6479
6537
  branding: components["schemas"]["StatusPageBranding"];
6480
- /** @enum {string} */
6481
- visibility: "PUBLIC" | "PASSWORD" | "IP_RESTRICTED";
6538
+ visibility: string;
6482
6539
  enabled: boolean;
6483
- /** @enum {string} */
6484
- incidentMode: "MANUAL" | "REVIEW" | "AUTOMATIC";
6540
+ incidentMode: string;
6485
6541
  /** Format: int32 */
6486
6542
  componentCount?: number | null;
6487
6543
  /** Format: int64 */
6488
6544
  subscriberCount?: number | null;
6489
- /** @enum {string|null} */
6490
- overallStatus?: "OPERATIONAL" | "DEGRADED_PERFORMANCE" | "PARTIAL_OUTAGE" | "MAJOR_OUTAGE" | "UNDER_MAINTENANCE" | null;
6491
- /**
6492
- * @description Source that created/owns this status page: DASHBOARD, CLI, TERRAFORM, MCP, or API. Null on pages created before this attribution column existed.
6493
- * @enum {string|null}
6494
- */
6495
- managedBy?: "DASHBOARD" | "CLI" | "TERRAFORM" | "MCP" | "API" | null;
6545
+ overallStatus?: string | null;
6546
+ /** @description Source that created/owns this status page: DASHBOARD, CLI, TERRAFORM, MCP, or API. Null on pages created before this attribution column existed. */
6547
+ managedBy?: string | null;
6496
6548
  /** Format: date-time */
6497
6549
  createdAt: string;
6498
6550
  /** Format: date-time */
@@ -6501,8 +6553,7 @@ export interface components {
6501
6553
  StatusPageIncidentComponentDto: {
6502
6554
  /** Format: uuid */
6503
6555
  statusPageComponentId: string;
6504
- /** @enum {string} */
6505
- componentStatus: "OPERATIONAL" | "DEGRADED_PERFORMANCE" | "PARTIAL_OUTAGE" | "MAJOR_OUTAGE" | "UNDER_MAINTENANCE";
6556
+ componentStatus: string;
6506
6557
  componentName: string;
6507
6558
  };
6508
6559
  StatusPageIncidentDto: {
@@ -6511,10 +6562,8 @@ export interface components {
6511
6562
  /** Format: uuid */
6512
6563
  statusPageId: string;
6513
6564
  title: string;
6514
- /** @enum {string} */
6515
- status: "INVESTIGATING" | "IDENTIFIED" | "MONITORING" | "RESOLVED";
6516
- /** @enum {string} */
6517
- impact: "NONE" | "MINOR" | "MAJOR" | "CRITICAL";
6565
+ status: string;
6566
+ impact: string;
6518
6567
  scheduled: boolean;
6519
6568
  /** Format: date-time */
6520
6569
  scheduledFor?: string | null;
@@ -6543,11 +6592,9 @@ export interface components {
6543
6592
  StatusPageIncidentUpdateDto: {
6544
6593
  /** Format: uuid */
6545
6594
  id: string;
6546
- /** @enum {string} */
6547
- status: "INVESTIGATING" | "IDENTIFIED" | "MONITORING" | "RESOLVED";
6595
+ status: string;
6548
6596
  body: string;
6549
- /** @enum {string|null} */
6550
- createdBy?: "USER" | "SYSTEM" | null;
6597
+ createdBy?: string | null;
6551
6598
  /** Format: int32 */
6552
6599
  createdByUserId?: number | null;
6553
6600
  notifySubscribers: boolean;
@@ -6983,9 +7030,17 @@ export interface components {
6983
7030
  /** @description Microsoft Teams incoming webhook URL */
6984
7031
  webhookUrl: string;
6985
7032
  };
7033
+ TelegramChannelConfig: {
7034
+ /** @enum {string} */
7035
+ channelType: "telegram";
7036
+ /** @description Telegram bot token from @BotFather */
7037
+ botToken: string;
7038
+ /** @description Chat, group, or channel ID to send alerts to */
7039
+ chatId: string;
7040
+ };
6986
7041
  /** @description Alert channel configuration to test without saving */
6987
7042
  TestAlertChannelRequest: {
6988
- config: components["schemas"]["DiscordChannelConfig"] | components["schemas"]["EmailChannelConfig"] | components["schemas"]["OpsGenieChannelConfig"] | components["schemas"]["PagerDutyChannelConfig"] | components["schemas"]["SlackChannelConfig"] | components["schemas"]["TeamsChannelConfig"] | components["schemas"]["WebhookChannelConfig"];
7043
+ config: components["schemas"]["DatadogChannelConfig"] | components["schemas"]["DiscordChannelConfig"] | components["schemas"]["EmailChannelConfig"] | components["schemas"]["GitLabChannelConfig"] | components["schemas"]["GoogleChatChannelConfig"] | components["schemas"]["IncidentIoChannelConfig"] | components["schemas"]["JiraChannelConfig"] | components["schemas"]["LinearChannelConfig"] | components["schemas"]["MattermostChannelConfig"] | components["schemas"]["OpsGenieChannelConfig"] | components["schemas"]["PagerDutyChannelConfig"] | components["schemas"]["PushbulletChannelConfig"] | components["schemas"]["PushoverChannelConfig"] | components["schemas"]["RootlyChannelConfig"] | components["schemas"]["SlackChannelConfig"] | components["schemas"]["SplunkOnCallChannelConfig"] | components["schemas"]["TeamsChannelConfig"] | components["schemas"]["TelegramChannelConfig"] | components["schemas"]["WebhookChannelConfig"] | components["schemas"]["ZapierChannelConfig"];
6989
7044
  };
6990
7045
  TestChannelResult: {
6991
7046
  success: boolean;
@@ -7145,7 +7200,7 @@ export interface components {
7145
7200
  UpdateAlertChannelRequest: {
7146
7201
  /** @description New channel name (full replacement, not partial update) */
7147
7202
  name: string;
7148
- config: components["schemas"]["DiscordChannelConfig"] | components["schemas"]["EmailChannelConfig"] | components["schemas"]["OpsGenieChannelConfig"] | components["schemas"]["PagerDutyChannelConfig"] | components["schemas"]["SlackChannelConfig"] | components["schemas"]["TeamsChannelConfig"] | components["schemas"]["WebhookChannelConfig"];
7203
+ config: components["schemas"]["DatadogChannelConfig"] | components["schemas"]["DiscordChannelConfig"] | components["schemas"]["EmailChannelConfig"] | components["schemas"]["GitLabChannelConfig"] | components["schemas"]["GoogleChatChannelConfig"] | components["schemas"]["IncidentIoChannelConfig"] | components["schemas"]["JiraChannelConfig"] | components["schemas"]["LinearChannelConfig"] | components["schemas"]["MattermostChannelConfig"] | components["schemas"]["OpsGenieChannelConfig"] | components["schemas"]["PagerDutyChannelConfig"] | components["schemas"]["PushbulletChannelConfig"] | components["schemas"]["PushoverChannelConfig"] | components["schemas"]["RootlyChannelConfig"] | components["schemas"]["SlackChannelConfig"] | components["schemas"]["SplunkOnCallChannelConfig"] | components["schemas"]["TeamsChannelConfig"] | components["schemas"]["TelegramChannelConfig"] | components["schemas"]["WebhookChannelConfig"] | components["schemas"]["ZapierChannelConfig"];
7149
7204
  /**
7150
7205
  * @description New attribution source: DASHBOARD, CLI, TERRAFORM, MCP, or API; null preserves current value.
7151
7206
  * @enum {string|null}
@@ -7154,7 +7209,7 @@ export interface components {
7154
7209
  };
7155
7210
  /** @description Request body for updating alert sensitivity on a service subscription */
7156
7211
  UpdateAlertSensitivityRequest: {
7157
- /** @description Alert sensitivity: ALL (any status change), INCIDENTS_ONLY (real vendor incidents, default), MAJOR_ONLY (only DOWN-level incidents) */
7212
+ /** @description Alert sensitivity: ALL (any status change), INCIDENTS_ONLY (real vendor incidents, page on every one), MAJOR_ONLY (only DOWN-level incidents), AWARENESS (track silently — show on dashboard, never send alerts; default for new subscriptions) */
7158
7213
  alertSensitivity: string;
7159
7214
  };
7160
7215
  UpdateApiKeyRequest: {
@@ -7618,6 +7673,12 @@ export interface components {
7618
7673
  */
7619
7674
  orgId: number;
7620
7675
  };
7676
+ ZapierChannelConfig: {
7677
+ /** @enum {string} */
7678
+ channelType: "zapier";
7679
+ /** @description Zapier/n8n/Make catch webhook URL */
7680
+ webhookUrl: string;
7681
+ };
7621
7682
  };
7622
7683
  responses: never;
7623
7684
  parameters: never;
@@ -7631,7 +7692,7 @@ export interface operations {
7631
7692
  parameters: {
7632
7693
  query: {
7633
7694
  /** @description Filter by channel integration type (e.g. SLACK, WEBHOOK, EMAIL) */
7634
- type?: "email" | "webhook" | "slack" | "pagerduty" | "opsgenie" | "teams" | "discord";
7695
+ type?: "email" | "webhook" | "slack" | "pagerduty" | "opsgenie" | "teams" | "discord" | "telegram" | "google_chat" | "pushover" | "mattermost" | "splunk_oncall" | "pushbullet" | "linear" | "incident_io" | "rootly" | "zapier" | "datadog" | "jira" | "gitlab";
7635
7696
  /** @description Filter by managed-by source (DASHBOARD, CLI, TERRAFORM, MCP, API) */
7636
7697
  managedBy?: "DASHBOARD" | "CLI" | "TERRAFORM" | "MCP" | "API";
7637
7698
  /** @description Case-insensitive contains-match on the channel name */
@@ -11802,7 +11863,7 @@ export interface operations {
11802
11863
  };
11803
11864
  };
11804
11865
  };
11805
- resend: {
11866
+ resend_1: {
11806
11867
  parameters: {
11807
11868
  query?: never;
11808
11869
  header?: never;