@openmeter/sdk 1.0.0-beta-17e8fcd5cfec → 1.0.0-beta-68e509d89485

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.
@@ -5775,16 +5775,6 @@ export interface components {
5775
5775
  * @description Additional metadata for the resource.
5776
5776
  */
5777
5777
  metadata?: components['schemas']['Metadata'] | null;
5778
- /**
5779
- * Format: date-time
5780
- * @description The time until the invoice is in draft status.
5781
- *
5782
- * On draft invoice creation it is calculated from the workflow settings.
5783
- *
5784
- * If manual approval is required, the draftUntil time is set.
5785
- * @example 2023-01-01T01:01:01.001Z
5786
- */
5787
- draftUntil?: Date;
5788
5778
  /** @description The supplier of the lines included in the invoice. */
5789
5779
  supplier: components['schemas']['BillingPartyReplaceUpdate'];
5790
5780
  /** @description The customer the invoice is sent to. */
@@ -3484,10 +3484,6 @@ exports.updateInvoiceBody = zod_1.z
3484
3484
  .max(exports.updateInvoiceBodyDescriptionMax)
3485
3485
  .optional()
3486
3486
  .describe('Optional description of the resource. Maximum 1024 characters.'),
3487
- draftUntil: zod_1.z
3488
- .date()
3489
- .optional()
3490
- .describe('The time until the invoice is in draft status.\n\nOn draft invoice creation it is calculated from the workflow settings.\n\nIf manual approval is required, the draftUntil time is set.'),
3491
3487
  lines: zod_1.z
3492
3488
  .array(zod_1.z
3493
3489
  .discriminatedUnion('type', [
@@ -5733,7 +5733,6 @@ export declare const updateInvoiceBody: zod.ZodObject<{
5733
5733
  } | undefined;
5734
5734
  }>;
5735
5735
  description: zod.ZodOptional<zod.ZodString>;
5736
- draftUntil: zod.ZodOptional<zod.ZodDate>;
5737
5736
  lines: zod.ZodArray<zod.ZodDiscriminatedUnion<"type", [zod.ZodObject<{
5738
5737
  description: zod.ZodOptional<zod.ZodString>;
5739
5738
  featureKey: zod.ZodOptional<zod.ZodString>;
@@ -7229,7 +7228,6 @@ export declare const updateInvoiceBody: zod.ZodObject<{
7229
7228
  };
7230
7229
  description?: string | undefined;
7231
7230
  metadata?: Record<string, string> | null | undefined;
7232
- draftUntil?: Date | undefined;
7233
7231
  }, {
7234
7232
  customer: {
7235
7233
  name?: string | undefined;
@@ -7453,7 +7451,6 @@ export declare const updateInvoiceBody: zod.ZodObject<{
7453
7451
  };
7454
7452
  description?: string | undefined;
7455
7453
  metadata?: Record<string, string> | null | undefined;
7456
- draftUntil?: Date | undefined;
7457
7454
  }>;
7458
7455
  /**
7459
7456
  * Advance the invoice's state to the next status.