@grepr/cli 1.6.11-99d8fb8 → 1.6.12-2283e39

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.
@@ -3279,6 +3279,8 @@ export interface components {
3279
3279
  };
3280
3280
  /** @description Daily-usage table. */
3281
3281
  DailyTable: {
3282
+ /** @description True when the reporting period contains today. Same semantic as PeriodEntry.current — the last entry of days[] represents an incomplete day, so consumers should mark it as in-progress. */
3283
+ current?: boolean;
3282
3284
  /** @description The reporting period's days in ascending order. */
3283
3285
  days: string[];
3284
3286
  /** @description One usage series per metered dimension, in display order. Bricks absent from the configured displayed-brick list are skipped. */
@@ -6458,7 +6460,7 @@ export interface components {
6458
6460
  * @description Inclusive period end date — the last day in the period.
6459
6461
  */
6460
6462
  endDate: string;
6461
- /** @description Canonical period identifier used in the URL — "YYYY-MM" for annual periods, "YYYY-MM-DD" (the sub-period's start date) for monthly periods. */
6463
+ /** @description Canonical period identifier used in the URL — "YYYY-MM-DD" (the period's start date) for both monthly and annual plans. */
6462
6464
  id: string;
6463
6465
  /**
6464
6466
  * Format: date
@@ -10166,7 +10168,7 @@ export interface operations {
10166
10168
  getDailyTable: {
10167
10169
  parameters: {
10168
10170
  query?: {
10169
- /** @description Canonical period id: "YYYY-MM" for annual periods, "YYYY-MM-DD" (the sub-period start date) for monthly periods. Defaults to the period containing today when omitted. */
10171
+ /** @description Canonical period id ("YYYY-MM-DD", the period's start date) for both monthly and annual plans. Defaults to the period containing today when omitted. */
10170
10172
  period?: string;
10171
10173
  };
10172
10174
  header?: never;
@@ -10266,7 +10268,7 @@ export interface operations {
10266
10268
  getSummary: {
10267
10269
  parameters: {
10268
10270
  query?: {
10269
- /** @description Canonical period id: "YYYY-MM" for annual periods, "YYYY-MM-DD" (the sub-period start date) for monthly periods. Defaults to the period containing today when omitted. */
10271
+ /** @description Canonical period id ("YYYY-MM-DD", the period's start date) for both monthly and annual plans. Defaults to the period containing today when omitted. */
10270
10272
  period?: string;
10271
10273
  };
10272
10274
  header?: never;