waldur-js-client 1.0.4-dev.85 → 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.
- package/dist/types.gen.d.ts +13 -5
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1716,6 +1716,10 @@ export type Customer = {
|
|
|
1716
1716
|
*/
|
|
1717
1717
|
readonly sponsor_number?: number | null;
|
|
1718
1718
|
readonly country_name?: string;
|
|
1719
|
+
/**
|
|
1720
|
+
* Maximum number of service accounts allowed
|
|
1721
|
+
*/
|
|
1722
|
+
readonly max_service_accounts?: number | null;
|
|
1719
1723
|
name?: string;
|
|
1720
1724
|
readonly slug?: string;
|
|
1721
1725
|
native_name?: string;
|
|
@@ -6671,6 +6675,10 @@ export type Project = {
|
|
|
6671
6675
|
is_industry?: boolean;
|
|
6672
6676
|
image?: string | null;
|
|
6673
6677
|
readonly resources_count?: number;
|
|
6678
|
+
/**
|
|
6679
|
+
* Maximum number of service accounts allowed
|
|
6680
|
+
*/
|
|
6681
|
+
readonly max_service_accounts?: number | null;
|
|
6674
6682
|
readonly project_credit?: number | null;
|
|
6675
6683
|
readonly marketplace_resource_count?: {
|
|
6676
6684
|
[key: string]: number;
|
|
@@ -12109,7 +12117,7 @@ export type CustomersListData = {
|
|
|
12109
12117
|
archived?: boolean;
|
|
12110
12118
|
backend_id?: string;
|
|
12111
12119
|
contact_details?: string;
|
|
12112
|
-
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'>;
|
|
12113
12121
|
name?: string;
|
|
12114
12122
|
name_exact?: string;
|
|
12115
12123
|
native_name?: string;
|
|
@@ -12211,7 +12219,7 @@ export type CustomersRetrieveData = {
|
|
|
12211
12219
|
uuid: string;
|
|
12212
12220
|
};
|
|
12213
12221
|
query?: {
|
|
12214
|
-
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'>;
|
|
12215
12223
|
};
|
|
12216
12224
|
url: '/api/customers/{uuid}/';
|
|
12217
12225
|
};
|
|
@@ -19546,7 +19554,7 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
19546
19554
|
customer_name?: string;
|
|
19547
19555
|
customer_native_name?: string;
|
|
19548
19556
|
description?: string;
|
|
19549
|
-
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'>;
|
|
19550
19558
|
/**
|
|
19551
19559
|
* Modified after
|
|
19552
19560
|
*/
|
|
@@ -23585,7 +23593,7 @@ export type ProjectsListData = {
|
|
|
23585
23593
|
customer_name?: string;
|
|
23586
23594
|
customer_native_name?: string;
|
|
23587
23595
|
description?: string;
|
|
23588
|
-
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'>;
|
|
23589
23597
|
/**
|
|
23590
23598
|
* Modified after
|
|
23591
23599
|
*/
|
|
@@ -23657,7 +23665,7 @@ export type ProjectsRetrieveData = {
|
|
|
23657
23665
|
uuid: string;
|
|
23658
23666
|
};
|
|
23659
23667
|
query?: {
|
|
23660
|
-
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'>;
|
|
23661
23669
|
};
|
|
23662
23670
|
url: '/api/projects/{uuid}/';
|
|
23663
23671
|
};
|