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

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;
@@ -8886,6 +8898,8 @@ export type ProposalReview = {
8886
8898
  comment_project_supporting_documentation?: string | null;
8887
8899
  comment_resource_requests?: string | null;
8888
8900
  comment_team?: string | null;
8901
+ readonly created: string;
8902
+ readonly modified: string;
8889
8903
  };
8890
8904
  export type ProposalReviewRequest = {
8891
8905
  proposal: string;
@@ -12362,6 +12376,10 @@ export type CustomerRequestForm = {
12362
12376
  longitude?: number | null;
12363
12377
  bank_account?: string;
12364
12378
  country?: CountryEnum | BlankEnum;
12379
+ /**
12380
+ * Comma-separated list of notification email addresses
12381
+ */
12382
+ notification_emails?: string;
12365
12383
  };
12366
12384
  export type CustomerRequestMultipart = {
12367
12385
  /**
@@ -12393,6 +12411,10 @@ export type CustomerRequestMultipart = {
12393
12411
  longitude?: number | null;
12394
12412
  bank_account?: string;
12395
12413
  country?: CountryEnum | BlankEnum;
12414
+ /**
12415
+ * Comma-separated list of notification email addresses
12416
+ */
12417
+ notification_emails?: string;
12396
12418
  };
12397
12419
  export type PatchedCustomerRequestForm = {
12398
12420
  /**
@@ -12424,6 +12446,10 @@ export type PatchedCustomerRequestForm = {
12424
12446
  longitude?: number | null;
12425
12447
  bank_account?: string;
12426
12448
  country?: CountryEnum | BlankEnum;
12449
+ /**
12450
+ * Comma-separated list of notification email addresses
12451
+ */
12452
+ notification_emails?: string;
12427
12453
  };
12428
12454
  export type PatchedCustomerRequestMultipart = {
12429
12455
  /**
@@ -12455,6 +12481,10 @@ export type PatchedCustomerRequestMultipart = {
12455
12481
  longitude?: number | null;
12456
12482
  bank_account?: string;
12457
12483
  country?: CountryEnum | BlankEnum;
12484
+ /**
12485
+ * Comma-separated list of notification email addresses
12486
+ */
12487
+ notification_emails?: string;
12458
12488
  };
12459
12489
  export type ExternalLinkRequestForm = {
12460
12490
  name: string;
@@ -18050,7 +18080,7 @@ export type CustomersListData = {
18050
18080
  archived?: boolean;
18051
18081
  backend_id?: string;
18052
18082
  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'>;
18083
+ 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
18084
  name?: string;
18055
18085
  name_exact?: string;
18056
18086
  native_name?: string;
@@ -18328,7 +18358,7 @@ export type CustomersRetrieveData = {
18328
18358
  uuid: string;
18329
18359
  };
18330
18360
  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'>;
18361
+ 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
18362
  };
18333
18363
  url: '/api/customers/{uuid}/';
18334
18364
  };
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.4",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",