waldur-js-client 7.8.2-dev.1 → 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.
Files changed (2) hide show
  1. package/dist/types.gen.d.ts +30 -23
  2. package/package.json +1 -1
@@ -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;
@@ -4885,9 +4893,6 @@ export type Offering = {
4885
4893
  readonly parent_name?: string | null;
4886
4894
  backend_metadata?: unknown;
4887
4895
  readonly has_compliance_requirements?: boolean;
4888
- /**
4889
- * Checklist that offering users must complete for compliance
4890
- */
4891
4896
  compliance_checklist?: string | null;
4892
4897
  readonly user_has_consent?: boolean;
4893
4898
  googlecalendar?: GoogleCalendar;
@@ -5062,9 +5067,6 @@ export type OfferingCreate = {
5062
5067
  readonly parent_name: string | null;
5063
5068
  backend_metadata?: unknown;
5064
5069
  readonly has_compliance_requirements: boolean;
5065
- /**
5066
- * Checklist that offering users must complete for compliance
5067
- */
5068
5070
  compliance_checklist?: string | null;
5069
5071
  };
5070
5072
  export type OfferingCreateRequest = {
@@ -5104,9 +5106,6 @@ export type OfferingCreateRequest = {
5104
5106
  backend_id?: string;
5105
5107
  image?: (Blob | File) | null;
5106
5108
  backend_metadata?: unknown;
5107
- /**
5108
- * Checklist that offering users must complete for compliance
5109
- */
5110
5109
  compliance_checklist?: string | null;
5111
5110
  limits?: {
5112
5111
  [key: string]: OfferingComponentLimitRequest;
@@ -7436,6 +7435,10 @@ export type PatchedCustomerRequest = {
7436
7435
  longitude?: number | null;
7437
7436
  bank_account?: string;
7438
7437
  country?: CountryEnum | BlankEnum;
7438
+ /**
7439
+ * Comma-separated list of notification email addresses
7440
+ */
7441
+ notification_emails?: string;
7439
7442
  };
7440
7443
  export type PatchedCustomerServiceAccountRequest = {
7441
7444
  username?: string;
@@ -9150,9 +9153,6 @@ export type ProviderOfferingDetails = {
9150
9153
  readonly parent_name?: string | null;
9151
9154
  backend_metadata?: unknown;
9152
9155
  readonly has_compliance_requirements?: boolean;
9153
- /**
9154
- * Checklist that offering users must complete for compliance
9155
- */
9156
9156
  compliance_checklist?: string | null;
9157
9157
  readonly integration_status?: Array<IntegrationStatus> | null;
9158
9158
  readonly google_calendar_is_public?: boolean | null;
@@ -9412,9 +9412,6 @@ export type PublicOfferingDetails = {
9412
9412
  readonly parent_name?: string | null;
9413
9413
  backend_metadata?: unknown;
9414
9414
  readonly has_compliance_requirements?: boolean;
9415
- /**
9416
- * Checklist that offering users must complete for compliance
9417
- */
9418
9415
  compliance_checklist?: string | null;
9419
9416
  readonly user_has_consent?: boolean;
9420
9417
  readonly google_calendar_is_public?: boolean | null;
@@ -12377,6 +12374,10 @@ export type CustomerRequestForm = {
12377
12374
  longitude?: number | null;
12378
12375
  bank_account?: string;
12379
12376
  country?: CountryEnum | BlankEnum;
12377
+ /**
12378
+ * Comma-separated list of notification email addresses
12379
+ */
12380
+ notification_emails?: string;
12380
12381
  };
12381
12382
  export type CustomerRequestMultipart = {
12382
12383
  /**
@@ -12408,6 +12409,10 @@ export type CustomerRequestMultipart = {
12408
12409
  longitude?: number | null;
12409
12410
  bank_account?: string;
12410
12411
  country?: CountryEnum | BlankEnum;
12412
+ /**
12413
+ * Comma-separated list of notification email addresses
12414
+ */
12415
+ notification_emails?: string;
12411
12416
  };
12412
12417
  export type PatchedCustomerRequestForm = {
12413
12418
  /**
@@ -12439,6 +12444,10 @@ export type PatchedCustomerRequestForm = {
12439
12444
  longitude?: number | null;
12440
12445
  bank_account?: string;
12441
12446
  country?: CountryEnum | BlankEnum;
12447
+ /**
12448
+ * Comma-separated list of notification email addresses
12449
+ */
12450
+ notification_emails?: string;
12442
12451
  };
12443
12452
  export type PatchedCustomerRequestMultipart = {
12444
12453
  /**
@@ -12470,6 +12479,10 @@ export type PatchedCustomerRequestMultipart = {
12470
12479
  longitude?: number | null;
12471
12480
  bank_account?: string;
12472
12481
  country?: CountryEnum | BlankEnum;
12482
+ /**
12483
+ * Comma-separated list of notification email addresses
12484
+ */
12485
+ notification_emails?: string;
12473
12486
  };
12474
12487
  export type ExternalLinkRequestForm = {
12475
12488
  name: string;
@@ -12648,9 +12661,6 @@ export type OfferingCreateRequestForm = {
12648
12661
  backend_id?: string;
12649
12662
  image?: (Blob | File) | null;
12650
12663
  backend_metadata?: unknown;
12651
- /**
12652
- * Checklist that offering users must complete for compliance
12653
- */
12654
12664
  compliance_checklist?: string | null;
12655
12665
  limits?: {
12656
12666
  [key: string]: OfferingComponentLimitRequest;
@@ -12693,9 +12703,6 @@ export type OfferingCreateRequestMultipart = {
12693
12703
  backend_id?: string;
12694
12704
  image?: (Blob | File) | null;
12695
12705
  backend_metadata?: unknown;
12696
- /**
12697
- * Checklist that offering users must complete for compliance
12698
- */
12699
12706
  compliance_checklist?: string | null;
12700
12707
  limits?: {
12701
12708
  [key: string]: OfferingComponentLimitRequest;
@@ -18071,7 +18078,7 @@ export type CustomersListData = {
18071
18078
  archived?: boolean;
18072
18079
  backend_id?: string;
18073
18080
  contact_details?: string;
18074
- 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'>;
18075
18082
  name?: string;
18076
18083
  name_exact?: string;
18077
18084
  native_name?: string;
@@ -18349,7 +18356,7 @@ export type CustomersRetrieveData = {
18349
18356
  uuid: string;
18350
18357
  };
18351
18358
  query?: {
18352
- 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'>;
18353
18360
  };
18354
18361
  url: '/api/customers/{uuid}/';
18355
18362
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.8.2-dev.1",
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",