waldur-js-client 1.0.4-dev.84 → 1.0.4-dev.86

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.
@@ -1479,6 +1479,7 @@ export type ConstanceSettings = {
1479
1479
  SMAX_CREATION_SOURCE_NAME?: string;
1480
1480
  SMAX_REQUESTS_OFFERING?: string;
1481
1481
  SMAX_VERIFY_SSL?: boolean;
1482
+ ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
1482
1483
  PROPOSAL_REVIEW_DURATION?: number;
1483
1484
  USER_TABLE_COLUMNS?: string;
1484
1485
  AUTO_APPROVE_USER_TOS?: boolean;
@@ -1603,6 +1604,7 @@ export type ConstanceSettingsRequest = {
1603
1604
  SMAX_CREATION_SOURCE_NAME?: string;
1604
1605
  SMAX_REQUESTS_OFFERING?: string;
1605
1606
  SMAX_VERIFY_SSL?: boolean;
1607
+ ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
1606
1608
  PROPOSAL_REVIEW_DURATION?: number;
1607
1609
  USER_TABLE_COLUMNS?: string;
1608
1610
  AUTO_APPROVE_USER_TOS?: boolean;
@@ -1714,6 +1716,10 @@ export type Customer = {
1714
1716
  */
1715
1717
  readonly sponsor_number?: number | null;
1716
1718
  readonly country_name?: string;
1719
+ /**
1720
+ * Maximum number of service accounts allowed
1721
+ */
1722
+ readonly max_service_accounts?: number | null;
1717
1723
  name?: string;
1718
1724
  readonly slug?: string;
1719
1725
  native_name?: string;
@@ -6669,6 +6675,10 @@ export type Project = {
6669
6675
  is_industry?: boolean;
6670
6676
  image?: string | null;
6671
6677
  readonly resources_count?: number;
6678
+ /**
6679
+ * Maximum number of service accounts allowed
6680
+ */
6681
+ readonly max_service_accounts?: number | null;
6672
6682
  readonly project_credit?: number | null;
6673
6683
  readonly marketplace_resource_count?: {
6674
6684
  [key: string]: number;
@@ -12107,7 +12117,7 @@ export type CustomersListData = {
12107
12117
  archived?: boolean;
12108
12118
  backend_id?: string;
12109
12119
  contact_details?: string;
12110
- 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' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'name' | 'native_name' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
12120
+ 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' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
12111
12121
  name?: string;
12112
12122
  name_exact?: string;
12113
12123
  native_name?: string;
@@ -12209,7 +12219,7 @@ export type CustomersRetrieveData = {
12209
12219
  uuid: string;
12210
12220
  };
12211
12221
  query?: {
12212
- 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' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'name' | 'native_name' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
12222
+ 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' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
12213
12223
  };
12214
12224
  url: '/api/customers/{uuid}/';
12215
12225
  };
@@ -19544,7 +19554,7 @@ export type MarketplaceServiceProvidersProjectsListData = {
19544
19554
  customer_name?: string;
19545
19555
  customer_native_name?: string;
19546
19556
  description?: string;
19547
- field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'marketplace_resource_count' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
19557
+ field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
19548
19558
  /**
19549
19559
  * Modified after
19550
19560
  */
@@ -23583,7 +23593,7 @@ export type ProjectsListData = {
23583
23593
  customer_name?: string;
23584
23594
  customer_native_name?: string;
23585
23595
  description?: string;
23586
- field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'marketplace_resource_count' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
23596
+ field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
23587
23597
  /**
23588
23598
  * Modified after
23589
23599
  */
@@ -23655,7 +23665,7 @@ export type ProjectsRetrieveData = {
23655
23665
  uuid: string;
23656
23666
  };
23657
23667
  query?: {
23658
- field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'marketplace_resource_count' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
23668
+ field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
23659
23669
  };
23660
23670
  url: '/api/projects/{uuid}/';
23661
23671
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "1.0.4-dev.84",
3
+ "version": "1.0.4-dev.86",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",