waldur-js-client 1.0.4-dev.12 → 1.0.4-dev.13

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.
Files changed (2) hide show
  1. package/dist/types.gen.d.ts +10 -10
  2. package/package.json +1 -1
@@ -1714,9 +1714,9 @@ export type Customer = {
1714
1714
  readonly payment_profiles?: Array<PaymentProfile>;
1715
1715
  readonly customer_credit?: number | null;
1716
1716
  readonly is_service_provider?: boolean;
1717
- readonly service_provider?: string;
1718
- readonly service_provider_uuid?: string;
1719
- readonly call_managing_organization_uuid?: string;
1717
+ readonly service_provider?: string | null;
1718
+ readonly service_provider_uuid?: string | null;
1719
+ readonly call_managing_organization_uuid?: string | null;
1720
1720
  billing_price_estimate?: NestedPriceEstimate;
1721
1721
  };
1722
1722
  export type CustomerChecklistStat = {
@@ -4300,9 +4300,9 @@ export type OpenStackFloatingIp = {
4300
4300
  * An optional address that maps to floating IP's address
4301
4301
  */
4302
4302
  readonly external_address?: string | null;
4303
- readonly instance_uuid?: string;
4304
- readonly instance_name?: string;
4305
- readonly instance_url?: string;
4303
+ readonly instance_uuid?: string | null;
4304
+ readonly instance_name?: string | null;
4305
+ readonly instance_url?: string | null;
4306
4306
  readonly marketplace_offering_uuid?: string;
4307
4307
  readonly marketplace_offering_name?: string;
4308
4308
  readonly marketplace_offering_plugin_options?: {};
@@ -4538,7 +4538,7 @@ export type OpenStackNestedVolume = {
4538
4538
  readonly resource_type?: string;
4539
4539
  type?: string | null;
4540
4540
  readonly type_name?: string;
4541
- readonly marketplace_resource_uuid?: string;
4541
+ readonly marketplace_resource_uuid?: string | null;
4542
4542
  };
4543
4543
  export type OpenStackNestedVolumeRequest = {
4544
4544
  image_name?: string;
@@ -6707,8 +6707,8 @@ export type ProviderOfferingDetails = {
6707
6707
  readonly parent_uuid?: string;
6708
6708
  readonly parent_name?: string;
6709
6709
  backend_metadata?: unknown;
6710
- readonly integration_status?: Array<IntegrationStatus>;
6711
- readonly google_calendar_is_public?: boolean;
6710
+ readonly integration_status?: Array<IntegrationStatus> | null;
6711
+ readonly google_calendar_is_public?: boolean | null;
6712
6712
  readonly google_calendar_link?: string | null;
6713
6713
  };
6714
6714
  export type ProviderOfferingDetailsRequest = {
@@ -6940,7 +6940,7 @@ export type PublicOfferingDetails = {
6940
6940
  readonly parent_uuid?: string;
6941
6941
  readonly parent_name?: string;
6942
6942
  backend_metadata?: unknown;
6943
- readonly google_calendar_is_public?: boolean;
6943
+ readonly google_calendar_is_public?: boolean | null;
6944
6944
  readonly google_calendar_link?: string | null;
6945
6945
  readonly promotion_campaigns?: Array<NestedCampaign>;
6946
6946
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "1.0.4-dev.12",
3
+ "version": "1.0.4-dev.13",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",