waldur-js-client 7.8.2-dev.2 → 7.8.2-dev.3

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.
@@ -2106,6 +2106,10 @@ export type Customer = {
2106
2106
  longitude?: number | null;
2107
2107
  bank_account?: string;
2108
2108
  country?: CountryEnum | BlankEnum;
2109
+ /**
2110
+ * Comma-separated list of notification email addresses
2111
+ */
2112
+ notification_emails?: string;
2109
2113
  readonly payment_profiles?: Array<PaymentProfile>;
2110
2114
  readonly customer_credit?: number | null;
2111
2115
  readonly customer_unallocated_credit?: number | null;
@@ -2263,6 +2267,10 @@ export type CustomerRequest = {
2263
2267
  longitude?: number | null;
2264
2268
  bank_account?: string;
2265
2269
  country?: CountryEnum | BlankEnum;
2270
+ /**
2271
+ * Comma-separated list of notification email addresses
2272
+ */
2273
+ notification_emails?: string;
2266
2274
  };
2267
2275
  export type CustomerServiceAccount = {
2268
2276
  readonly url: string;
@@ -7427,6 +7435,10 @@ export type PatchedCustomerRequest = {
7427
7435
  longitude?: number | null;
7428
7436
  bank_account?: string;
7429
7437
  country?: CountryEnum | BlankEnum;
7438
+ /**
7439
+ * Comma-separated list of notification email addresses
7440
+ */
7441
+ notification_emails?: string;
7430
7442
  };
7431
7443
  export type PatchedCustomerServiceAccountRequest = {
7432
7444
  username?: string;
@@ -12362,6 +12374,10 @@ export type CustomerRequestForm = {
12362
12374
  longitude?: number | null;
12363
12375
  bank_account?: string;
12364
12376
  country?: CountryEnum | BlankEnum;
12377
+ /**
12378
+ * Comma-separated list of notification email addresses
12379
+ */
12380
+ notification_emails?: string;
12365
12381
  };
12366
12382
  export type CustomerRequestMultipart = {
12367
12383
  /**
@@ -12393,6 +12409,10 @@ export type CustomerRequestMultipart = {
12393
12409
  longitude?: number | null;
12394
12410
  bank_account?: string;
12395
12411
  country?: CountryEnum | BlankEnum;
12412
+ /**
12413
+ * Comma-separated list of notification email addresses
12414
+ */
12415
+ notification_emails?: string;
12396
12416
  };
12397
12417
  export type PatchedCustomerRequestForm = {
12398
12418
  /**
@@ -12424,6 +12444,10 @@ export type PatchedCustomerRequestForm = {
12424
12444
  longitude?: number | null;
12425
12445
  bank_account?: string;
12426
12446
  country?: CountryEnum | BlankEnum;
12447
+ /**
12448
+ * Comma-separated list of notification email addresses
12449
+ */
12450
+ notification_emails?: string;
12427
12451
  };
12428
12452
  export type PatchedCustomerRequestMultipart = {
12429
12453
  /**
@@ -12455,6 +12479,10 @@ export type PatchedCustomerRequestMultipart = {
12455
12479
  longitude?: number | null;
12456
12480
  bank_account?: string;
12457
12481
  country?: CountryEnum | BlankEnum;
12482
+ /**
12483
+ * Comma-separated list of notification email addresses
12484
+ */
12485
+ notification_emails?: string;
12458
12486
  };
12459
12487
  export type ExternalLinkRequestForm = {
12460
12488
  name: string;
@@ -18050,7 +18078,7 @@ export type CustomersListData = {
18050
18078
  archived?: boolean;
18051
18079
  backend_id?: string;
18052
18080
  contact_details?: string;
18053
- field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
18081
+ field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
18054
18082
  name?: string;
18055
18083
  name_exact?: string;
18056
18084
  native_name?: string;
@@ -18328,7 +18356,7 @@ export type CustomersRetrieveData = {
18328
18356
  uuid: string;
18329
18357
  };
18330
18358
  query?: {
18331
- field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
18359
+ field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
18332
18360
  };
18333
18361
  url: '/api/customers/{uuid}/';
18334
18362
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.8.2-dev.2",
3
+ "version": "7.8.2-dev.3",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",