@devhelm/sdk 0.2.0 → 0.3.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.
@@ -3162,8 +3162,8 @@ export interface components {
3162
3162
  * @description Position in the group list
3163
3163
  */
3164
3164
  displayOrder?: number | null;
3165
- /** @description Whether the group is collapsed by default (default: true) */
3166
- collapsed?: boolean | null;
3165
+ /** @description Initial expand/collapse state when a visitor first loads the page; renderer may auto-expand on active incidents (default: true) */
3166
+ defaultOpen?: boolean | null;
3167
3167
  };
3168
3168
  CreateStatusPageComponentRequest: {
3169
3169
  /** @description Component display name */
@@ -3201,7 +3201,7 @@ export interface components {
3201
3201
  excludeFromOverall?: boolean | null;
3202
3202
  /**
3203
3203
  * Format: date
3204
- * @description Date from which to start showing uptime data
3204
+ * @description Date from which to start showing uptime; defaults to component creation. Set earlier to backdate (e.g. launch day); clamped at the monitor's createdAt for MONITOR-type components
3205
3205
  */
3206
3206
  startDate?: string | null;
3207
3207
  };
@@ -6109,7 +6109,7 @@ export interface components {
6109
6109
  displayOrder: number;
6110
6110
  /** Format: int32 */
6111
6111
  pageOrder: number;
6112
- collapsed: boolean;
6112
+ defaultOpen: boolean;
6113
6113
  components?: components["schemas"]["StatusPageComponentDto"][] | null;
6114
6114
  /** Format: date-time */
6115
6115
  createdAt: string;
@@ -6973,8 +6973,8 @@ export interface components {
6973
6973
  * @description New position in the group list; null preserves current
6974
6974
  */
6975
6975
  displayOrder?: number | null;
6976
- /** @description Whether the group is collapsed by default; null preserves current */
6977
- collapsed?: boolean | null;
6976
+ /** @description Initial expand/collapse state on first page load; null preserves current. Renderer may auto-expand on active incidents */
6977
+ defaultOpen?: boolean | null;
6978
6978
  };
6979
6979
  UpdateStatusPageComponentRequest: {
6980
6980
  /** @description New component name; null preserves current */
@@ -6999,7 +6999,7 @@ export interface components {
6999
6999
  excludeFromOverall?: boolean | null;
7000
7000
  /**
7001
7001
  * Format: date
7002
- * @description Date from which to start showing uptime data; null preserves current
7002
+ * @description Date from which to start showing uptime; null preserves current. Bars never extend earlier than the underlying monitor's createdAt regardless of value
7003
7003
  */
7004
7004
  startDate?: string | null;
7005
7005
  };