waldur-js-client 1.0.4-dev.18 → 1.0.4-dev.19
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 +28 -28
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -3614,11 +3614,11 @@ export type Offering = {
|
|
|
3614
3614
|
readonly endpoints?: Array<NestedEndpoint>;
|
|
3615
3615
|
readonly roles?: Array<NestedRole>;
|
|
3616
3616
|
customer?: string | null;
|
|
3617
|
-
readonly customer_uuid?: string;
|
|
3618
|
-
readonly customer_name?: string;
|
|
3617
|
+
readonly customer_uuid?: string | null;
|
|
3618
|
+
readonly customer_name?: string | null;
|
|
3619
3619
|
readonly project?: string | null;
|
|
3620
|
-
readonly project_uuid?: string;
|
|
3621
|
-
readonly project_name?: string;
|
|
3620
|
+
readonly project_uuid?: string | null;
|
|
3621
|
+
readonly project_name?: string | null;
|
|
3622
3622
|
category?: string;
|
|
3623
3623
|
readonly category_uuid?: string;
|
|
3624
3624
|
readonly category_title?: string;
|
|
@@ -3666,9 +3666,9 @@ export type Offering = {
|
|
|
3666
3666
|
readonly total_customers?: number | null;
|
|
3667
3667
|
readonly total_cost?: number | null;
|
|
3668
3668
|
readonly total_cost_estimated?: number | null;
|
|
3669
|
-
readonly parent_description?: string;
|
|
3670
|
-
readonly parent_uuid?: string;
|
|
3671
|
-
readonly parent_name?: string;
|
|
3669
|
+
readonly parent_description?: string | null;
|
|
3670
|
+
readonly parent_uuid?: string | null;
|
|
3671
|
+
readonly parent_name?: string | null;
|
|
3672
3672
|
backend_metadata?: unknown;
|
|
3673
3673
|
googlecalendar?: GoogleCalendar;
|
|
3674
3674
|
};
|
|
@@ -3776,11 +3776,11 @@ export type OfferingCreate = {
|
|
|
3776
3776
|
readonly endpoints: Array<NestedEndpoint>;
|
|
3777
3777
|
readonly roles: Array<NestedRole>;
|
|
3778
3778
|
customer?: string | null;
|
|
3779
|
-
readonly customer_uuid: string;
|
|
3780
|
-
readonly customer_name: string;
|
|
3779
|
+
readonly customer_uuid: string | null;
|
|
3780
|
+
readonly customer_name: string | null;
|
|
3781
3781
|
readonly project: string | null;
|
|
3782
|
-
readonly project_uuid: string;
|
|
3783
|
-
readonly project_name: string;
|
|
3782
|
+
readonly project_uuid: string | null;
|
|
3783
|
+
readonly project_name: string | null;
|
|
3784
3784
|
category: string;
|
|
3785
3785
|
readonly category_uuid: string;
|
|
3786
3786
|
readonly category_title: string;
|
|
@@ -3830,9 +3830,9 @@ export type OfferingCreate = {
|
|
|
3830
3830
|
readonly total_customers: number | null;
|
|
3831
3831
|
readonly total_cost: number | null;
|
|
3832
3832
|
readonly total_cost_estimated: number | null;
|
|
3833
|
-
readonly parent_description: string;
|
|
3834
|
-
readonly parent_uuid: string;
|
|
3835
|
-
readonly parent_name: string;
|
|
3833
|
+
readonly parent_description: string | null;
|
|
3834
|
+
readonly parent_uuid: string | null;
|
|
3835
|
+
readonly parent_name: string | null;
|
|
3836
3836
|
backend_metadata?: unknown;
|
|
3837
3837
|
};
|
|
3838
3838
|
export type OfferingCreateRequest = {
|
|
@@ -6667,11 +6667,11 @@ export type ProviderOfferingDetails = {
|
|
|
6667
6667
|
readonly endpoints?: Array<NestedEndpoint>;
|
|
6668
6668
|
readonly roles?: Array<NestedRole>;
|
|
6669
6669
|
customer?: string | null;
|
|
6670
|
-
readonly customer_uuid?: string;
|
|
6671
|
-
readonly customer_name?: string;
|
|
6670
|
+
readonly customer_uuid?: string | null;
|
|
6671
|
+
readonly customer_name?: string | null;
|
|
6672
6672
|
readonly project?: string | null;
|
|
6673
|
-
readonly project_uuid?: string;
|
|
6674
|
-
readonly project_name?: string;
|
|
6673
|
+
readonly project_uuid?: string | null;
|
|
6674
|
+
readonly project_name?: string | null;
|
|
6675
6675
|
category?: string;
|
|
6676
6676
|
readonly category_uuid?: string;
|
|
6677
6677
|
readonly category_title?: string;
|
|
@@ -6721,9 +6721,9 @@ export type ProviderOfferingDetails = {
|
|
|
6721
6721
|
readonly total_customers?: number | null;
|
|
6722
6722
|
readonly total_cost?: number | null;
|
|
6723
6723
|
readonly total_cost_estimated?: number | null;
|
|
6724
|
-
readonly parent_description?: string;
|
|
6725
|
-
readonly parent_uuid?: string;
|
|
6726
|
-
readonly parent_name?: string;
|
|
6724
|
+
readonly parent_description?: string | null;
|
|
6725
|
+
readonly parent_uuid?: string | null;
|
|
6726
|
+
readonly parent_name?: string | null;
|
|
6727
6727
|
backend_metadata?: unknown;
|
|
6728
6728
|
readonly integration_status?: Array<IntegrationStatus> | null;
|
|
6729
6729
|
readonly google_calendar_is_public?: boolean | null;
|
|
@@ -6902,11 +6902,11 @@ export type PublicOfferingDetails = {
|
|
|
6902
6902
|
readonly endpoints?: Array<NestedEndpoint>;
|
|
6903
6903
|
readonly roles?: Array<NestedRole>;
|
|
6904
6904
|
customer?: string | null;
|
|
6905
|
-
readonly customer_uuid?: string;
|
|
6906
|
-
readonly customer_name?: string;
|
|
6905
|
+
readonly customer_uuid?: string | null;
|
|
6906
|
+
readonly customer_name?: string | null;
|
|
6907
6907
|
readonly project?: string | null;
|
|
6908
|
-
readonly project_uuid?: string;
|
|
6909
|
-
readonly project_name?: string;
|
|
6908
|
+
readonly project_uuid?: string | null;
|
|
6909
|
+
readonly project_name?: string | null;
|
|
6910
6910
|
category?: string;
|
|
6911
6911
|
readonly category_uuid?: string;
|
|
6912
6912
|
readonly category_title?: string;
|
|
@@ -6954,9 +6954,9 @@ export type PublicOfferingDetails = {
|
|
|
6954
6954
|
readonly total_customers?: number | null;
|
|
6955
6955
|
readonly total_cost?: number | null;
|
|
6956
6956
|
readonly total_cost_estimated?: number | null;
|
|
6957
|
-
readonly parent_description?: string;
|
|
6958
|
-
readonly parent_uuid?: string;
|
|
6959
|
-
readonly parent_name?: string;
|
|
6957
|
+
readonly parent_description?: string | null;
|
|
6958
|
+
readonly parent_uuid?: string | null;
|
|
6959
|
+
readonly parent_name?: string | null;
|
|
6960
6960
|
backend_metadata?: unknown;
|
|
6961
6961
|
readonly google_calendar_is_public?: boolean | null;
|
|
6962
6962
|
readonly google_calendar_link?: string | null;
|