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

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 +14 -12
  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 = {
@@ -2468,6 +2468,8 @@ export type Invoice = {
2468
2468
  * Reference number associated with the invoice.
2469
2469
  */
2470
2470
  reference_number?: string;
2471
+ readonly compensations?: number;
2472
+ readonly incurred_costs?: number;
2471
2473
  };
2472
2474
  export type InvoiceCost = {
2473
2475
  readonly price: number;
@@ -4300,9 +4302,9 @@ export type OpenStackFloatingIp = {
4300
4302
  * An optional address that maps to floating IP's address
4301
4303
  */
4302
4304
  readonly external_address?: string | null;
4303
- readonly instance_uuid?: string;
4304
- readonly instance_name?: string;
4305
- readonly instance_url?: string;
4305
+ readonly instance_uuid?: string | null;
4306
+ readonly instance_name?: string | null;
4307
+ readonly instance_url?: string | null;
4306
4308
  readonly marketplace_offering_uuid?: string;
4307
4309
  readonly marketplace_offering_name?: string;
4308
4310
  readonly marketplace_offering_plugin_options?: {};
@@ -4538,7 +4540,7 @@ export type OpenStackNestedVolume = {
4538
4540
  readonly resource_type?: string;
4539
4541
  type?: string | null;
4540
4542
  readonly type_name?: string;
4541
- readonly marketplace_resource_uuid?: string;
4543
+ readonly marketplace_resource_uuid?: string | null;
4542
4544
  };
4543
4545
  export type OpenStackNestedVolumeRequest = {
4544
4546
  image_name?: string;
@@ -6707,8 +6709,8 @@ export type ProviderOfferingDetails = {
6707
6709
  readonly parent_uuid?: string;
6708
6710
  readonly parent_name?: string;
6709
6711
  backend_metadata?: unknown;
6710
- readonly integration_status?: Array<IntegrationStatus>;
6711
- readonly google_calendar_is_public?: boolean;
6712
+ readonly integration_status?: Array<IntegrationStatus> | null;
6713
+ readonly google_calendar_is_public?: boolean | null;
6712
6714
  readonly google_calendar_link?: string | null;
6713
6715
  };
6714
6716
  export type ProviderOfferingDetailsRequest = {
@@ -6940,7 +6942,7 @@ export type PublicOfferingDetails = {
6940
6942
  readonly parent_uuid?: string;
6941
6943
  readonly parent_name?: string;
6942
6944
  backend_metadata?: unknown;
6943
- readonly google_calendar_is_public?: boolean;
6945
+ readonly google_calendar_is_public?: boolean | null;
6944
6946
  readonly google_calendar_link?: string | null;
6945
6947
  readonly promotion_campaigns?: Array<NestedCampaign>;
6946
6948
  };
@@ -13293,7 +13295,7 @@ export type InvoicesListData = {
13293
13295
  customer?: string;
13294
13296
  customer_uuid?: string;
13295
13297
  end_date?: string;
13296
- field?: Array<'backend_id' | 'customer' | 'customer_details' | 'due_date' | 'invoice_date' | 'issuer_details' | 'items' | 'month' | 'number' | 'payment_url' | 'price' | 'reference_number' | 'state' | 'tax' | 'total' | 'url' | 'uuid' | 'year'>;
13298
+ field?: Array<'backend_id' | 'compensations' | 'customer' | 'customer_details' | 'due_date' | 'incurred_costs' | 'invoice_date' | 'issuer_details' | 'items' | 'month' | 'number' | 'payment_url' | 'price' | 'reference_number' | 'state' | 'tax' | 'total' | 'url' | 'uuid' | 'year'>;
13297
13299
  /**
13298
13300
  * Max sum
13299
13301
  */
@@ -13333,7 +13335,7 @@ export type InvoicesRetrieveData = {
13333
13335
  uuid: string;
13334
13336
  };
13335
13337
  query?: {
13336
- field?: Array<'backend_id' | 'customer' | 'customer_details' | 'due_date' | 'invoice_date' | 'issuer_details' | 'items' | 'month' | 'number' | 'payment_url' | 'price' | 'reference_number' | 'state' | 'tax' | 'total' | 'url' | 'uuid' | 'year'>;
13338
+ field?: Array<'backend_id' | 'compensations' | 'customer' | 'customer_details' | 'due_date' | 'incurred_costs' | 'invoice_date' | 'issuer_details' | 'items' | 'month' | 'number' | 'payment_url' | 'price' | 'reference_number' | 'state' | 'tax' | 'total' | 'url' | 'uuid' | 'year'>;
13337
13339
  };
13338
13340
  url: '/api/invoices/{uuid}/';
13339
13341
  };
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.14",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",