waldur-js-client 8.0.7-dev.14 → 8.0.7-dev.16
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.
- package/dist/types.gen.d.ts +6 -6
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -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;
|
|
@@ -2894,7 +2894,7 @@ export type CallReviewerPool = {
|
|
|
2894
2894
|
*/
|
|
2895
2895
|
expertise_match_score?: number | null;
|
|
2896
2896
|
readonly invited_by_name: string;
|
|
2897
|
-
readonly
|
|
2897
|
+
readonly invitation_link: string | null;
|
|
2898
2898
|
readonly invitation_expires_at: string | null;
|
|
2899
2899
|
readonly created: string;
|
|
2900
2900
|
/**
|
|
@@ -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;
|