waldur-js-client 8.0.7-dev.14 → 8.0.7-dev.15

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.
@@ -2384,8 +2384,8 @@ export type BookingResource = {
2384
2384
  /**
2385
2385
  * Effective project end date including grace period. After this date, resources will be terminated.
2386
2386
  */
2387
- readonly project_effective_end_date?: string;
2388
- readonly project_end_date_requested_by?: string;
2387
+ readonly project_effective_end_date?: string | null;
2388
+ readonly project_end_date_requested_by?: string | null;
2389
2389
  readonly customer_uuid?: string;
2390
2390
  readonly customer_name?: string;
2391
2391
  readonly offering_slug?: string;
@@ -17417,7 +17417,7 @@ export type Project = {
17417
17417
  /**
17418
17418
  * Effective end date including grace period. After this date, project resources will be terminated.
17419
17419
  */
17420
- readonly effective_end_date?: string;
17420
+ readonly effective_end_date?: string | null;
17421
17421
  /**
17422
17422
  * True if the project is past its end date but still within the grace period.
17423
17423
  */
@@ -20707,8 +20707,8 @@ export type Resource = {
20707
20707
  /**
20708
20708
  * Effective project end date including grace period. After this date, resources will be terminated.
20709
20709
  */
20710
- readonly project_effective_end_date?: string;
20711
- readonly project_end_date_requested_by?: string;
20710
+ readonly project_effective_end_date?: string | null;
20711
+ readonly project_end_date_requested_by?: string | null;
20712
20712
  readonly customer_uuid?: string;
20713
20713
  readonly customer_name?: string;
20714
20714
  readonly offering_slug?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.7-dev.14",
3
+ "version": "8.0.7-dev.15",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",