waldur-js-client 8.0.9-dev.13 → 8.0.9-dev.15
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/sdk.gen.d.ts +20 -1
- package/dist/sdk.gen.js +206 -0
- package/dist/types.gen.d.ts +398 -2
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -5889,6 +5889,12 @@ export type CustomerBillingSummaryResponse = {
|
|
|
5889
5889
|
recent_consumption_records: Array<CustomerBillingSummaryConsumptionRecord>;
|
|
5890
5890
|
recent_billing_syncs: Array<CustomerBillingSummaryBillingSync>;
|
|
5891
5891
|
};
|
|
5892
|
+
export type CustomerCandidate = {
|
|
5893
|
+
readonly uuid: string;
|
|
5894
|
+
name: string;
|
|
5895
|
+
abbreviation?: string;
|
|
5896
|
+
readonly url: string | null;
|
|
5897
|
+
};
|
|
5892
5898
|
export type CustomerComponentUsagePolicy = {
|
|
5893
5899
|
readonly uuid: string;
|
|
5894
5900
|
readonly url: string;
|
|
@@ -7543,6 +7549,14 @@ export type FetchLicenseInfoResponse = {
|
|
|
7543
7549
|
[key: string]: unknown;
|
|
7544
7550
|
};
|
|
7545
7551
|
};
|
|
7552
|
+
export type FilterCheckResult = {
|
|
7553
|
+
name: string;
|
|
7554
|
+
configured: boolean;
|
|
7555
|
+
matched: boolean;
|
|
7556
|
+
user_value?: unknown;
|
|
7557
|
+
rule_value?: unknown;
|
|
7558
|
+
reason: string;
|
|
7559
|
+
};
|
|
7546
7560
|
export type FinancialReport = {
|
|
7547
7561
|
name: string;
|
|
7548
7562
|
readonly uuid: string;
|
|
@@ -15744,6 +15758,9 @@ export type OrderDetails = {
|
|
|
15744
15758
|
consumer_message_attachment?: string | null;
|
|
15745
15759
|
readonly consumer_rejection_comment?: string;
|
|
15746
15760
|
readonly provider_rejection_comment?: string;
|
|
15761
|
+
readonly auto_approved?: boolean;
|
|
15762
|
+
readonly auto_approved_by_rule_uuid?: string | null;
|
|
15763
|
+
readonly auto_approved_cost_limit_snapshot?: string | null;
|
|
15747
15764
|
issue?: IssueReference | null;
|
|
15748
15765
|
};
|
|
15749
15766
|
export type OrderErrorDetailsRequest = {
|
|
@@ -17118,6 +17135,11 @@ export type PatchedProjectInfoRequest = {
|
|
|
17118
17135
|
*/
|
|
17119
17136
|
allowed_destinations?: string | null;
|
|
17120
17137
|
};
|
|
17138
|
+
export type PatchedProjectOrderAutoApprovalRequest = {
|
|
17139
|
+
project?: string;
|
|
17140
|
+
monthly_cost_limit?: string;
|
|
17141
|
+
enabled?: boolean;
|
|
17142
|
+
};
|
|
17121
17143
|
export type PatchedProjectRequest = {
|
|
17122
17144
|
name?: string;
|
|
17123
17145
|
/**
|
|
@@ -18812,6 +18834,36 @@ export type ProjectMappingResponse = {
|
|
|
18812
18834
|
customer_uuid: string;
|
|
18813
18835
|
customer_name: string;
|
|
18814
18836
|
};
|
|
18837
|
+
export type ProjectOrderAutoApproval = {
|
|
18838
|
+
readonly uuid: string;
|
|
18839
|
+
readonly url: string;
|
|
18840
|
+
project: string;
|
|
18841
|
+
readonly project_name: string;
|
|
18842
|
+
readonly project_uuid: string;
|
|
18843
|
+
readonly customer_name: string;
|
|
18844
|
+
readonly customer_uuid: string;
|
|
18845
|
+
monthly_cost_limit: string;
|
|
18846
|
+
enabled?: boolean;
|
|
18847
|
+
readonly created: string;
|
|
18848
|
+
readonly modified: string;
|
|
18849
|
+
readonly created_by_uuid: string;
|
|
18850
|
+
/**
|
|
18851
|
+
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
18852
|
+
*/
|
|
18853
|
+
readonly created_by_username: string;
|
|
18854
|
+
readonly created_by_full_name: string;
|
|
18855
|
+
readonly modified_by_uuid: string;
|
|
18856
|
+
/**
|
|
18857
|
+
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
18858
|
+
*/
|
|
18859
|
+
readonly modified_by_username: string;
|
|
18860
|
+
readonly modified_by_full_name: string;
|
|
18861
|
+
};
|
|
18862
|
+
export type ProjectOrderAutoApprovalRequest = {
|
|
18863
|
+
project: string;
|
|
18864
|
+
monthly_cost_limit: string;
|
|
18865
|
+
enabled?: boolean;
|
|
18866
|
+
};
|
|
18815
18867
|
export type ProjectPermissionLog = {
|
|
18816
18868
|
readonly created?: string;
|
|
18817
18869
|
expiration_time?: string | null;
|
|
@@ -23638,6 +23690,28 @@ export type RuleRequest = {
|
|
|
23638
23690
|
[key: string]: unknown;
|
|
23639
23691
|
};
|
|
23640
23692
|
};
|
|
23693
|
+
export type RuleTestMatchRequestRequest = {
|
|
23694
|
+
/**
|
|
23695
|
+
* UUID of the user to evaluate this rule against.
|
|
23696
|
+
*/
|
|
23697
|
+
user_uuid: string;
|
|
23698
|
+
};
|
|
23699
|
+
export type RuleTestMatchResponse = {
|
|
23700
|
+
would_provision: boolean;
|
|
23701
|
+
block_reason: string;
|
|
23702
|
+
user_username: string;
|
|
23703
|
+
user_email: string;
|
|
23704
|
+
user_organization: string;
|
|
23705
|
+
user_registration_method: string;
|
|
23706
|
+
user_identity_source: string;
|
|
23707
|
+
user_affiliations: Array<string>;
|
|
23708
|
+
user_is_protected: boolean;
|
|
23709
|
+
filter_results: Array<FilterCheckResult>;
|
|
23710
|
+
customer_lookup_performed: boolean;
|
|
23711
|
+
customer_candidates: Array<CustomerCandidate>;
|
|
23712
|
+
customer_lookup_ambiguous: boolean;
|
|
23713
|
+
resolved_project_name: string | null;
|
|
23714
|
+
};
|
|
23641
23715
|
export type RuntimeStates = {
|
|
23642
23716
|
/**
|
|
23643
23717
|
* Value of the runtime state
|
|
@@ -25650,6 +25724,7 @@ export type User = {
|
|
|
25650
25724
|
* Indicates what identity provider was used.
|
|
25651
25725
|
*/
|
|
25652
25726
|
readonly identity_source?: string;
|
|
25727
|
+
readonly should_protect_user_details?: boolean;
|
|
25653
25728
|
readonly has_active_session?: boolean;
|
|
25654
25729
|
readonly has_usable_password?: boolean;
|
|
25655
25730
|
readonly ip_address?: string | null;
|
|
@@ -28930,14 +29005,14 @@ export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version'
|
|
|
28930
29005
|
export type UserChecklistCompletionOEnum = '-is_completed' | '-modified' | 'is_completed' | 'modified';
|
|
28931
29006
|
export type OfferingUserFieldEnum = 'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_profile_complete' | 'is_restricted' | 'missing_profile_attributes' | 'modified' | 'offering' | 'offering_has_active_tos' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_address' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_first_name' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_last_name' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_registry_code' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid';
|
|
28932
29007
|
export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'created' | 'modified' | 'username';
|
|
28933
|
-
export type OrderDetailsFieldEnum = 'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_rejection_comment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'error_updated_at' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'output_updated_at' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid';
|
|
29008
|
+
export type OrderDetailsFieldEnum = 'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'auto_approved' | 'auto_approved_by_rule_uuid' | 'auto_approved_cost_limit_snapshot' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_rejection_comment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'error_updated_at' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'output_updated_at' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid';
|
|
28934
29009
|
export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
|
|
28935
29010
|
export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
|
|
28936
29011
|
export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details';
|
|
28937
29012
|
export type ProviderOfferingDetailsOEnum = '-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type';
|
|
28938
29013
|
export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
|
|
28939
29014
|
export type ProjectFieldEnum = 'affiliation' | 'affiliation_code' | 'affiliation_name' | 'affiliation_uuid' | 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_grace_period_days' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'end_date_updated_at' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'science_domain_code' | 'science_domain_name' | 'science_domain_uuid' | 'science_sub_domain' | 'science_sub_domain_code' | 'science_sub_domain_name' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
|
|
28940
|
-
export type UserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
|
|
29015
|
+
export type UserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'should_protect_user_details' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
|
|
28941
29016
|
export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
|
|
28942
29017
|
export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
|
|
28943
29018
|
export type RobotAccountDetailsFieldEnum = 'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fingerprints' | 'keys' | 'modified' | 'offering_plugin_options' | 'project_name' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'resource' | 'resource_name' | 'resource_uuid' | 'responsible_user' | 'state' | 'type' | 'url' | 'user_keys' | 'username' | 'users' | 'uuid';
|
|
@@ -31459,6 +31534,18 @@ export type AutoprovisioningRulesUpdateResponses = {
|
|
|
31459
31534
|
200: Rule;
|
|
31460
31535
|
};
|
|
31461
31536
|
export type AutoprovisioningRulesUpdateResponse = AutoprovisioningRulesUpdateResponses[keyof AutoprovisioningRulesUpdateResponses];
|
|
31537
|
+
export type AutoprovisioningRulesTestMatchData = {
|
|
31538
|
+
body: RuleTestMatchRequestRequest;
|
|
31539
|
+
path: {
|
|
31540
|
+
uuid: string;
|
|
31541
|
+
};
|
|
31542
|
+
query?: never;
|
|
31543
|
+
url: '/api/autoprovisioning-rules/{uuid}/test-match/';
|
|
31544
|
+
};
|
|
31545
|
+
export type AutoprovisioningRulesTestMatchResponses = {
|
|
31546
|
+
200: RuleTestMatchResponse;
|
|
31547
|
+
};
|
|
31548
|
+
export type AutoprovisioningRulesTestMatchResponse = AutoprovisioningRulesTestMatchResponses[keyof AutoprovisioningRulesTestMatchResponses];
|
|
31462
31549
|
export type AwsImagesListData = {
|
|
31463
31550
|
body?: never;
|
|
31464
31551
|
path?: never;
|
|
@@ -47223,6 +47310,10 @@ export type MarketplaceOrdersListData = {
|
|
|
47223
47310
|
*
|
|
47224
47311
|
*/
|
|
47225
47312
|
type?: Array<RequestTypes>;
|
|
47313
|
+
/**
|
|
47314
|
+
* Auto-approved
|
|
47315
|
+
*/
|
|
47316
|
+
was_auto_approved?: boolean;
|
|
47226
47317
|
};
|
|
47227
47318
|
url: '/api/marketplace-orders/';
|
|
47228
47319
|
};
|
|
@@ -47338,6 +47429,10 @@ export type MarketplaceOrdersCountData = {
|
|
|
47338
47429
|
*
|
|
47339
47430
|
*/
|
|
47340
47431
|
type?: Array<RequestTypes>;
|
|
47432
|
+
/**
|
|
47433
|
+
* Auto-approved
|
|
47434
|
+
*/
|
|
47435
|
+
was_auto_approved?: boolean;
|
|
47341
47436
|
};
|
|
47342
47437
|
url: '/api/marketplace-orders/';
|
|
47343
47438
|
};
|
|
@@ -48223,6 +48318,125 @@ export type MarketplaceProjectEstimatedCostPoliciesActionsCountResponses = {
|
|
|
48223
48318
|
*/
|
|
48224
48319
|
200: unknown;
|
|
48225
48320
|
};
|
|
48321
|
+
export type MarketplaceProjectOrderAutoApprovalsListData = {
|
|
48322
|
+
body?: never;
|
|
48323
|
+
path?: never;
|
|
48324
|
+
query?: {
|
|
48325
|
+
/**
|
|
48326
|
+
* Customer UUID
|
|
48327
|
+
*/
|
|
48328
|
+
customer_uuid?: string;
|
|
48329
|
+
enabled?: boolean;
|
|
48330
|
+
/**
|
|
48331
|
+
* A page number within the paginated result set.
|
|
48332
|
+
*/
|
|
48333
|
+
page?: number;
|
|
48334
|
+
/**
|
|
48335
|
+
* Number of results to return per page.
|
|
48336
|
+
*/
|
|
48337
|
+
page_size?: number;
|
|
48338
|
+
/**
|
|
48339
|
+
* Project UUID
|
|
48340
|
+
*/
|
|
48341
|
+
project_uuid?: string;
|
|
48342
|
+
};
|
|
48343
|
+
url: '/api/marketplace-project-order-auto-approvals/';
|
|
48344
|
+
};
|
|
48345
|
+
export type MarketplaceProjectOrderAutoApprovalsListResponses = {
|
|
48346
|
+
200: Array<ProjectOrderAutoApproval>;
|
|
48347
|
+
};
|
|
48348
|
+
export type MarketplaceProjectOrderAutoApprovalsListResponse = MarketplaceProjectOrderAutoApprovalsListResponses[keyof MarketplaceProjectOrderAutoApprovalsListResponses];
|
|
48349
|
+
export type MarketplaceProjectOrderAutoApprovalsCountData = {
|
|
48350
|
+
body?: never;
|
|
48351
|
+
path?: never;
|
|
48352
|
+
query?: {
|
|
48353
|
+
/**
|
|
48354
|
+
* Customer UUID
|
|
48355
|
+
*/
|
|
48356
|
+
customer_uuid?: string;
|
|
48357
|
+
enabled?: boolean;
|
|
48358
|
+
/**
|
|
48359
|
+
* A page number within the paginated result set.
|
|
48360
|
+
*/
|
|
48361
|
+
page?: number;
|
|
48362
|
+
/**
|
|
48363
|
+
* Number of results to return per page.
|
|
48364
|
+
*/
|
|
48365
|
+
page_size?: number;
|
|
48366
|
+
/**
|
|
48367
|
+
* Project UUID
|
|
48368
|
+
*/
|
|
48369
|
+
project_uuid?: string;
|
|
48370
|
+
};
|
|
48371
|
+
url: '/api/marketplace-project-order-auto-approvals/';
|
|
48372
|
+
};
|
|
48373
|
+
export type MarketplaceProjectOrderAutoApprovalsCountResponses = {
|
|
48374
|
+
/**
|
|
48375
|
+
* No response body
|
|
48376
|
+
*/
|
|
48377
|
+
200: unknown;
|
|
48378
|
+
};
|
|
48379
|
+
export type MarketplaceProjectOrderAutoApprovalsCreateData = {
|
|
48380
|
+
body: ProjectOrderAutoApprovalRequest;
|
|
48381
|
+
path?: never;
|
|
48382
|
+
query?: never;
|
|
48383
|
+
url: '/api/marketplace-project-order-auto-approvals/';
|
|
48384
|
+
};
|
|
48385
|
+
export type MarketplaceProjectOrderAutoApprovalsCreateResponses = {
|
|
48386
|
+
201: ProjectOrderAutoApproval;
|
|
48387
|
+
};
|
|
48388
|
+
export type MarketplaceProjectOrderAutoApprovalsCreateResponse = MarketplaceProjectOrderAutoApprovalsCreateResponses[keyof MarketplaceProjectOrderAutoApprovalsCreateResponses];
|
|
48389
|
+
export type MarketplaceProjectOrderAutoApprovalsDestroyData = {
|
|
48390
|
+
body?: never;
|
|
48391
|
+
path: {
|
|
48392
|
+
uuid: string;
|
|
48393
|
+
};
|
|
48394
|
+
query?: never;
|
|
48395
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/';
|
|
48396
|
+
};
|
|
48397
|
+
export type MarketplaceProjectOrderAutoApprovalsDestroyResponses = {
|
|
48398
|
+
/**
|
|
48399
|
+
* No response body
|
|
48400
|
+
*/
|
|
48401
|
+
204: void;
|
|
48402
|
+
};
|
|
48403
|
+
export type MarketplaceProjectOrderAutoApprovalsDestroyResponse = MarketplaceProjectOrderAutoApprovalsDestroyResponses[keyof MarketplaceProjectOrderAutoApprovalsDestroyResponses];
|
|
48404
|
+
export type MarketplaceProjectOrderAutoApprovalsRetrieveData = {
|
|
48405
|
+
body?: never;
|
|
48406
|
+
path: {
|
|
48407
|
+
uuid: string;
|
|
48408
|
+
};
|
|
48409
|
+
query?: never;
|
|
48410
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/';
|
|
48411
|
+
};
|
|
48412
|
+
export type MarketplaceProjectOrderAutoApprovalsRetrieveResponses = {
|
|
48413
|
+
200: ProjectOrderAutoApproval;
|
|
48414
|
+
};
|
|
48415
|
+
export type MarketplaceProjectOrderAutoApprovalsRetrieveResponse = MarketplaceProjectOrderAutoApprovalsRetrieveResponses[keyof MarketplaceProjectOrderAutoApprovalsRetrieveResponses];
|
|
48416
|
+
export type MarketplaceProjectOrderAutoApprovalsPartialUpdateData = {
|
|
48417
|
+
body?: PatchedProjectOrderAutoApprovalRequest;
|
|
48418
|
+
path: {
|
|
48419
|
+
uuid: string;
|
|
48420
|
+
};
|
|
48421
|
+
query?: never;
|
|
48422
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/';
|
|
48423
|
+
};
|
|
48424
|
+
export type MarketplaceProjectOrderAutoApprovalsPartialUpdateResponses = {
|
|
48425
|
+
200: ProjectOrderAutoApproval;
|
|
48426
|
+
};
|
|
48427
|
+
export type MarketplaceProjectOrderAutoApprovalsPartialUpdateResponse = MarketplaceProjectOrderAutoApprovalsPartialUpdateResponses[keyof MarketplaceProjectOrderAutoApprovalsPartialUpdateResponses];
|
|
48428
|
+
export type MarketplaceProjectOrderAutoApprovalsUpdateData = {
|
|
48429
|
+
body: ProjectOrderAutoApprovalRequest;
|
|
48430
|
+
path: {
|
|
48431
|
+
uuid: string;
|
|
48432
|
+
};
|
|
48433
|
+
query?: never;
|
|
48434
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/';
|
|
48435
|
+
};
|
|
48436
|
+
export type MarketplaceProjectOrderAutoApprovalsUpdateResponses = {
|
|
48437
|
+
200: ProjectOrderAutoApproval;
|
|
48438
|
+
};
|
|
48439
|
+
export type MarketplaceProjectOrderAutoApprovalsUpdateResponse = MarketplaceProjectOrderAutoApprovalsUpdateResponses[keyof MarketplaceProjectOrderAutoApprovalsUpdateResponses];
|
|
48226
48440
|
export type MarketplaceProjectServiceAccountsListData = {
|
|
48227
48441
|
body?: never;
|
|
48228
48442
|
path?: never;
|
|
@@ -56444,6 +56658,188 @@ export type MarketplaceServiceProvidersOfferingsListResponses = {
|
|
|
56444
56658
|
200: Array<ProviderOffering>;
|
|
56445
56659
|
};
|
|
56446
56660
|
export type MarketplaceServiceProvidersOfferingsListResponse = MarketplaceServiceProvidersOfferingsListResponses[keyof MarketplaceServiceProvidersOfferingsListResponses];
|
|
56661
|
+
export type MarketplaceServiceProvidersOfferingsTypesListData = {
|
|
56662
|
+
body?: never;
|
|
56663
|
+
path: {
|
|
56664
|
+
service_provider_uuid: string;
|
|
56665
|
+
};
|
|
56666
|
+
query?: {
|
|
56667
|
+
/**
|
|
56668
|
+
* Accessible via calls
|
|
56669
|
+
*/
|
|
56670
|
+
accessible_via_calls?: boolean;
|
|
56671
|
+
/**
|
|
56672
|
+
* Allowed customer UUID
|
|
56673
|
+
*/
|
|
56674
|
+
allowed_customer_uuid?: string;
|
|
56675
|
+
/**
|
|
56676
|
+
* Offering attributes (JSON)
|
|
56677
|
+
*/
|
|
56678
|
+
attributes?: string;
|
|
56679
|
+
/**
|
|
56680
|
+
* Billable
|
|
56681
|
+
*/
|
|
56682
|
+
billable?: boolean;
|
|
56683
|
+
can_create_offering_user?: boolean;
|
|
56684
|
+
/**
|
|
56685
|
+
* Category group UUID
|
|
56686
|
+
*/
|
|
56687
|
+
category_group_uuid?: string;
|
|
56688
|
+
/**
|
|
56689
|
+
* Category UUID
|
|
56690
|
+
*/
|
|
56691
|
+
category_uuid?: string;
|
|
56692
|
+
/**
|
|
56693
|
+
* Created after
|
|
56694
|
+
*/
|
|
56695
|
+
created?: string;
|
|
56696
|
+
/**
|
|
56697
|
+
* Created before
|
|
56698
|
+
*/
|
|
56699
|
+
created_before?: string;
|
|
56700
|
+
/**
|
|
56701
|
+
* Customer URL
|
|
56702
|
+
*/
|
|
56703
|
+
customer?: string;
|
|
56704
|
+
/**
|
|
56705
|
+
* Customer UUID
|
|
56706
|
+
*/
|
|
56707
|
+
customer_uuid?: string;
|
|
56708
|
+
/**
|
|
56709
|
+
* Description contains
|
|
56710
|
+
*/
|
|
56711
|
+
description?: string;
|
|
56712
|
+
/**
|
|
56713
|
+
* Has Active Terms of Service
|
|
56714
|
+
*/
|
|
56715
|
+
has_active_terms_of_service?: boolean;
|
|
56716
|
+
/**
|
|
56717
|
+
* Has Terms of Service
|
|
56718
|
+
*/
|
|
56719
|
+
has_terms_of_service?: boolean;
|
|
56720
|
+
/**
|
|
56721
|
+
* Keyword
|
|
56722
|
+
*/
|
|
56723
|
+
keyword?: string;
|
|
56724
|
+
/**
|
|
56725
|
+
* Modified after
|
|
56726
|
+
*/
|
|
56727
|
+
modified?: string;
|
|
56728
|
+
/**
|
|
56729
|
+
* Modified before
|
|
56730
|
+
*/
|
|
56731
|
+
modified_before?: string;
|
|
56732
|
+
/**
|
|
56733
|
+
* Name
|
|
56734
|
+
*/
|
|
56735
|
+
name?: string;
|
|
56736
|
+
/**
|
|
56737
|
+
* Name (exact)
|
|
56738
|
+
*/
|
|
56739
|
+
name_exact?: string;
|
|
56740
|
+
/**
|
|
56741
|
+
* Ordering
|
|
56742
|
+
*
|
|
56743
|
+
*
|
|
56744
|
+
*/
|
|
56745
|
+
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
56746
|
+
/**
|
|
56747
|
+
* Offering group UUID
|
|
56748
|
+
*/
|
|
56749
|
+
offering_group_uuid?: string;
|
|
56750
|
+
/**
|
|
56751
|
+
* Organization group UUID
|
|
56752
|
+
*/
|
|
56753
|
+
organization_group_uuid?: string;
|
|
56754
|
+
/**
|
|
56755
|
+
* A page number within the paginated result set.
|
|
56756
|
+
*/
|
|
56757
|
+
page?: number;
|
|
56758
|
+
/**
|
|
56759
|
+
* Number of results to return per page.
|
|
56760
|
+
*/
|
|
56761
|
+
page_size?: number;
|
|
56762
|
+
/**
|
|
56763
|
+
* Parent offering UUID
|
|
56764
|
+
*/
|
|
56765
|
+
parent_uuid?: string;
|
|
56766
|
+
/**
|
|
56767
|
+
* Project UUID
|
|
56768
|
+
*/
|
|
56769
|
+
project_uuid?: string;
|
|
56770
|
+
/**
|
|
56771
|
+
* Search by offering name, slug or description
|
|
56772
|
+
*/
|
|
56773
|
+
query?: string;
|
|
56774
|
+
/**
|
|
56775
|
+
* Resource customer UUID
|
|
56776
|
+
*/
|
|
56777
|
+
resource_customer_uuid?: string;
|
|
56778
|
+
/**
|
|
56779
|
+
* Resource project UUID
|
|
56780
|
+
*/
|
|
56781
|
+
resource_project_uuid?: string;
|
|
56782
|
+
/**
|
|
56783
|
+
* Scope UUID
|
|
56784
|
+
*/
|
|
56785
|
+
scope_uuid?: string;
|
|
56786
|
+
/**
|
|
56787
|
+
* Service manager UUID
|
|
56788
|
+
*/
|
|
56789
|
+
service_manager_uuid?: string;
|
|
56790
|
+
/**
|
|
56791
|
+
* Shared
|
|
56792
|
+
*/
|
|
56793
|
+
shared?: boolean;
|
|
56794
|
+
/**
|
|
56795
|
+
* Slug
|
|
56796
|
+
*/
|
|
56797
|
+
slug?: string;
|
|
56798
|
+
/**
|
|
56799
|
+
* Offering state
|
|
56800
|
+
*
|
|
56801
|
+
*
|
|
56802
|
+
*/
|
|
56803
|
+
state?: Array<OfferingState>;
|
|
56804
|
+
/**
|
|
56805
|
+
* Tag UUID (OR logic)
|
|
56806
|
+
*/
|
|
56807
|
+
tag?: Array<string>;
|
|
56808
|
+
/**
|
|
56809
|
+
* Tag name (OR logic)
|
|
56810
|
+
*/
|
|
56811
|
+
tag_name?: Array<string>;
|
|
56812
|
+
/**
|
|
56813
|
+
* Tag names with AND logic (comma-separated)
|
|
56814
|
+
*/
|
|
56815
|
+
tag_names_and?: string;
|
|
56816
|
+
/**
|
|
56817
|
+
* Tag UUIDs with AND logic (comma-separated)
|
|
56818
|
+
*/
|
|
56819
|
+
tags_and?: string;
|
|
56820
|
+
/**
|
|
56821
|
+
* Offering type
|
|
56822
|
+
*/
|
|
56823
|
+
type?: Array<string>;
|
|
56824
|
+
/**
|
|
56825
|
+
* User Has Consent
|
|
56826
|
+
*/
|
|
56827
|
+
user_has_consent?: boolean;
|
|
56828
|
+
/**
|
|
56829
|
+
* User Has Offering User
|
|
56830
|
+
*/
|
|
56831
|
+
user_has_offering_user?: boolean;
|
|
56832
|
+
/**
|
|
56833
|
+
* Comma-separated offering UUIDs
|
|
56834
|
+
*/
|
|
56835
|
+
uuid_list?: string;
|
|
56836
|
+
};
|
|
56837
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/types/';
|
|
56838
|
+
};
|
|
56839
|
+
export type MarketplaceServiceProvidersOfferingsTypesListResponses = {
|
|
56840
|
+
200: Array<string>;
|
|
56841
|
+
};
|
|
56842
|
+
export type MarketplaceServiceProvidersOfferingsTypesListResponse = MarketplaceServiceProvidersOfferingsTypesListResponses[keyof MarketplaceServiceProvidersOfferingsTypesListResponses];
|
|
56447
56843
|
export type MarketplaceServiceProvidersProjectPermissionsListData = {
|
|
56448
56844
|
body?: never;
|
|
56449
56845
|
path: {
|