waldur-js-client 8.0.9-dev.14 → 8.0.9-dev.16
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 +15 -1
- package/dist/sdk.gen.js +178 -0
- package/dist/types.gen.d.ts +349 -1
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -21680,6 +21680,161 @@ export const marketplaceProjectEstimatedCostPoliciesActionsCount = (options) =>
|
|
|
21680
21680
|
...options
|
|
21681
21681
|
});
|
|
21682
21682
|
};
|
|
21683
|
+
export const marketplaceProjectOrderAutoApprovalsList = (options) => {
|
|
21684
|
+
return (options?.client ?? _heyApiClient).get({
|
|
21685
|
+
security: [
|
|
21686
|
+
{
|
|
21687
|
+
name: 'Authorization',
|
|
21688
|
+
type: 'apiKey'
|
|
21689
|
+
},
|
|
21690
|
+
{
|
|
21691
|
+
scheme: 'bearer',
|
|
21692
|
+
type: 'http'
|
|
21693
|
+
},
|
|
21694
|
+
{
|
|
21695
|
+
scheme: 'bearer',
|
|
21696
|
+
type: 'http'
|
|
21697
|
+
}
|
|
21698
|
+
],
|
|
21699
|
+
url: '/api/marketplace-project-order-auto-approvals/',
|
|
21700
|
+
...options
|
|
21701
|
+
});
|
|
21702
|
+
};
|
|
21703
|
+
/**
|
|
21704
|
+
* Get number of items in the collection matching the request parameters.
|
|
21705
|
+
*/
|
|
21706
|
+
export const marketplaceProjectOrderAutoApprovalsCount = (options) => {
|
|
21707
|
+
return (options?.client ?? _heyApiClient).head({
|
|
21708
|
+
security: [
|
|
21709
|
+
{
|
|
21710
|
+
name: 'Authorization',
|
|
21711
|
+
type: 'apiKey'
|
|
21712
|
+
},
|
|
21713
|
+
{
|
|
21714
|
+
scheme: 'bearer',
|
|
21715
|
+
type: 'http'
|
|
21716
|
+
},
|
|
21717
|
+
{
|
|
21718
|
+
scheme: 'bearer',
|
|
21719
|
+
type: 'http'
|
|
21720
|
+
}
|
|
21721
|
+
],
|
|
21722
|
+
url: '/api/marketplace-project-order-auto-approvals/',
|
|
21723
|
+
...options
|
|
21724
|
+
});
|
|
21725
|
+
};
|
|
21726
|
+
export const marketplaceProjectOrderAutoApprovalsCreate = (options) => {
|
|
21727
|
+
return (options.client ?? _heyApiClient).post({
|
|
21728
|
+
security: [
|
|
21729
|
+
{
|
|
21730
|
+
name: 'Authorization',
|
|
21731
|
+
type: 'apiKey'
|
|
21732
|
+
},
|
|
21733
|
+
{
|
|
21734
|
+
scheme: 'bearer',
|
|
21735
|
+
type: 'http'
|
|
21736
|
+
},
|
|
21737
|
+
{
|
|
21738
|
+
scheme: 'bearer',
|
|
21739
|
+
type: 'http'
|
|
21740
|
+
}
|
|
21741
|
+
],
|
|
21742
|
+
url: '/api/marketplace-project-order-auto-approvals/',
|
|
21743
|
+
...options,
|
|
21744
|
+
headers: {
|
|
21745
|
+
'Content-Type': 'application/json',
|
|
21746
|
+
...options.headers
|
|
21747
|
+
}
|
|
21748
|
+
});
|
|
21749
|
+
};
|
|
21750
|
+
export const marketplaceProjectOrderAutoApprovalsDestroy = (options) => {
|
|
21751
|
+
return (options.client ?? _heyApiClient).delete({
|
|
21752
|
+
security: [
|
|
21753
|
+
{
|
|
21754
|
+
name: 'Authorization',
|
|
21755
|
+
type: 'apiKey'
|
|
21756
|
+
},
|
|
21757
|
+
{
|
|
21758
|
+
scheme: 'bearer',
|
|
21759
|
+
type: 'http'
|
|
21760
|
+
},
|
|
21761
|
+
{
|
|
21762
|
+
scheme: 'bearer',
|
|
21763
|
+
type: 'http'
|
|
21764
|
+
}
|
|
21765
|
+
],
|
|
21766
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/',
|
|
21767
|
+
...options
|
|
21768
|
+
});
|
|
21769
|
+
};
|
|
21770
|
+
export const marketplaceProjectOrderAutoApprovalsRetrieve = (options) => {
|
|
21771
|
+
return (options.client ?? _heyApiClient).get({
|
|
21772
|
+
security: [
|
|
21773
|
+
{
|
|
21774
|
+
name: 'Authorization',
|
|
21775
|
+
type: 'apiKey'
|
|
21776
|
+
},
|
|
21777
|
+
{
|
|
21778
|
+
scheme: 'bearer',
|
|
21779
|
+
type: 'http'
|
|
21780
|
+
},
|
|
21781
|
+
{
|
|
21782
|
+
scheme: 'bearer',
|
|
21783
|
+
type: 'http'
|
|
21784
|
+
}
|
|
21785
|
+
],
|
|
21786
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/',
|
|
21787
|
+
...options
|
|
21788
|
+
});
|
|
21789
|
+
};
|
|
21790
|
+
export const marketplaceProjectOrderAutoApprovalsPartialUpdate = (options) => {
|
|
21791
|
+
return (options.client ?? _heyApiClient).patch({
|
|
21792
|
+
security: [
|
|
21793
|
+
{
|
|
21794
|
+
name: 'Authorization',
|
|
21795
|
+
type: 'apiKey'
|
|
21796
|
+
},
|
|
21797
|
+
{
|
|
21798
|
+
scheme: 'bearer',
|
|
21799
|
+
type: 'http'
|
|
21800
|
+
},
|
|
21801
|
+
{
|
|
21802
|
+
scheme: 'bearer',
|
|
21803
|
+
type: 'http'
|
|
21804
|
+
}
|
|
21805
|
+
],
|
|
21806
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/',
|
|
21807
|
+
...options,
|
|
21808
|
+
headers: {
|
|
21809
|
+
'Content-Type': 'application/json',
|
|
21810
|
+
...options.headers
|
|
21811
|
+
}
|
|
21812
|
+
});
|
|
21813
|
+
};
|
|
21814
|
+
export const marketplaceProjectOrderAutoApprovalsUpdate = (options) => {
|
|
21815
|
+
return (options.client ?? _heyApiClient).put({
|
|
21816
|
+
security: [
|
|
21817
|
+
{
|
|
21818
|
+
name: 'Authorization',
|
|
21819
|
+
type: 'apiKey'
|
|
21820
|
+
},
|
|
21821
|
+
{
|
|
21822
|
+
scheme: 'bearer',
|
|
21823
|
+
type: 'http'
|
|
21824
|
+
},
|
|
21825
|
+
{
|
|
21826
|
+
scheme: 'bearer',
|
|
21827
|
+
type: 'http'
|
|
21828
|
+
}
|
|
21829
|
+
],
|
|
21830
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/',
|
|
21831
|
+
...options,
|
|
21832
|
+
headers: {
|
|
21833
|
+
'Content-Type': 'application/json',
|
|
21834
|
+
...options.headers
|
|
21835
|
+
}
|
|
21836
|
+
});
|
|
21837
|
+
};
|
|
21683
21838
|
/**
|
|
21684
21839
|
* List service accounts
|
|
21685
21840
|
*/
|
|
@@ -28292,6 +28447,29 @@ export const marketplaceServiceProvidersOfferingsList = (options) => {
|
|
|
28292
28447
|
...options
|
|
28293
28448
|
});
|
|
28294
28449
|
};
|
|
28450
|
+
/**
|
|
28451
|
+
* List distinct offering types for a service provider
|
|
28452
|
+
*/
|
|
28453
|
+
export const marketplaceServiceProvidersOfferingsTypesList = (options) => {
|
|
28454
|
+
return (options.client ?? _heyApiClient).get({
|
|
28455
|
+
security: [
|
|
28456
|
+
{
|
|
28457
|
+
name: 'Authorization',
|
|
28458
|
+
type: 'apiKey'
|
|
28459
|
+
},
|
|
28460
|
+
{
|
|
28461
|
+
scheme: 'bearer',
|
|
28462
|
+
type: 'http'
|
|
28463
|
+
},
|
|
28464
|
+
{
|
|
28465
|
+
scheme: 'bearer',
|
|
28466
|
+
type: 'http'
|
|
28467
|
+
}
|
|
28468
|
+
],
|
|
28469
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/types/',
|
|
28470
|
+
...options
|
|
28471
|
+
});
|
|
28472
|
+
};
|
|
28295
28473
|
/**
|
|
28296
28474
|
* List project permissions of a service provider
|
|
28297
28475
|
* Returns a paginated list of project permissions for all projects that have consumed resources from the specified service provider.
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -15758,6 +15758,9 @@ export type OrderDetails = {
|
|
|
15758
15758
|
consumer_message_attachment?: string | null;
|
|
15759
15759
|
readonly consumer_rejection_comment?: string;
|
|
15760
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;
|
|
15761
15764
|
issue?: IssueReference | null;
|
|
15762
15765
|
};
|
|
15763
15766
|
export type OrderErrorDetailsRequest = {
|
|
@@ -17132,6 +17135,11 @@ export type PatchedProjectInfoRequest = {
|
|
|
17132
17135
|
*/
|
|
17133
17136
|
allowed_destinations?: string | null;
|
|
17134
17137
|
};
|
|
17138
|
+
export type PatchedProjectOrderAutoApprovalRequest = {
|
|
17139
|
+
project?: string;
|
|
17140
|
+
monthly_cost_limit?: string;
|
|
17141
|
+
enabled?: boolean;
|
|
17142
|
+
};
|
|
17135
17143
|
export type PatchedProjectRequest = {
|
|
17136
17144
|
name?: string;
|
|
17137
17145
|
/**
|
|
@@ -18136,6 +18144,7 @@ export type Permission = {
|
|
|
18136
18144
|
readonly customer_uuid?: string;
|
|
18137
18145
|
readonly customer_name?: string;
|
|
18138
18146
|
readonly resource_uuid?: string | null;
|
|
18147
|
+
readonly project_uuid?: string | null;
|
|
18139
18148
|
};
|
|
18140
18149
|
export type PermissionMetadataResponse = {
|
|
18141
18150
|
/**
|
|
@@ -18826,6 +18835,36 @@ export type ProjectMappingResponse = {
|
|
|
18826
18835
|
customer_uuid: string;
|
|
18827
18836
|
customer_name: string;
|
|
18828
18837
|
};
|
|
18838
|
+
export type ProjectOrderAutoApproval = {
|
|
18839
|
+
readonly uuid: string;
|
|
18840
|
+
readonly url: string;
|
|
18841
|
+
project: string;
|
|
18842
|
+
readonly project_name: string;
|
|
18843
|
+
readonly project_uuid: string;
|
|
18844
|
+
readonly customer_name: string;
|
|
18845
|
+
readonly customer_uuid: string;
|
|
18846
|
+
monthly_cost_limit: string;
|
|
18847
|
+
enabled?: boolean;
|
|
18848
|
+
readonly created: string;
|
|
18849
|
+
readonly modified: string;
|
|
18850
|
+
readonly created_by_uuid: string;
|
|
18851
|
+
/**
|
|
18852
|
+
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
18853
|
+
*/
|
|
18854
|
+
readonly created_by_username: string;
|
|
18855
|
+
readonly created_by_full_name: string;
|
|
18856
|
+
readonly modified_by_uuid: string;
|
|
18857
|
+
/**
|
|
18858
|
+
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
18859
|
+
*/
|
|
18860
|
+
readonly modified_by_username: string;
|
|
18861
|
+
readonly modified_by_full_name: string;
|
|
18862
|
+
};
|
|
18863
|
+
export type ProjectOrderAutoApprovalRequest = {
|
|
18864
|
+
project: string;
|
|
18865
|
+
monthly_cost_limit: string;
|
|
18866
|
+
enabled?: boolean;
|
|
18867
|
+
};
|
|
18829
18868
|
export type ProjectPermissionLog = {
|
|
18830
18869
|
readonly created?: string;
|
|
18831
18870
|
expiration_time?: string | null;
|
|
@@ -28967,7 +29006,7 @@ export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version'
|
|
|
28967
29006
|
export type UserChecklistCompletionOEnum = '-is_completed' | '-modified' | 'is_completed' | 'modified';
|
|
28968
29007
|
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';
|
|
28969
29008
|
export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'created' | 'modified' | 'username';
|
|
28970
|
-
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';
|
|
29009
|
+
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';
|
|
28971
29010
|
export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
|
|
28972
29011
|
export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
|
|
28973
29012
|
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';
|
|
@@ -47272,6 +47311,10 @@ export type MarketplaceOrdersListData = {
|
|
|
47272
47311
|
*
|
|
47273
47312
|
*/
|
|
47274
47313
|
type?: Array<RequestTypes>;
|
|
47314
|
+
/**
|
|
47315
|
+
* Auto-approved
|
|
47316
|
+
*/
|
|
47317
|
+
was_auto_approved?: boolean;
|
|
47275
47318
|
};
|
|
47276
47319
|
url: '/api/marketplace-orders/';
|
|
47277
47320
|
};
|
|
@@ -47387,6 +47430,10 @@ export type MarketplaceOrdersCountData = {
|
|
|
47387
47430
|
*
|
|
47388
47431
|
*/
|
|
47389
47432
|
type?: Array<RequestTypes>;
|
|
47433
|
+
/**
|
|
47434
|
+
* Auto-approved
|
|
47435
|
+
*/
|
|
47436
|
+
was_auto_approved?: boolean;
|
|
47390
47437
|
};
|
|
47391
47438
|
url: '/api/marketplace-orders/';
|
|
47392
47439
|
};
|
|
@@ -48272,6 +48319,125 @@ export type MarketplaceProjectEstimatedCostPoliciesActionsCountResponses = {
|
|
|
48272
48319
|
*/
|
|
48273
48320
|
200: unknown;
|
|
48274
48321
|
};
|
|
48322
|
+
export type MarketplaceProjectOrderAutoApprovalsListData = {
|
|
48323
|
+
body?: never;
|
|
48324
|
+
path?: never;
|
|
48325
|
+
query?: {
|
|
48326
|
+
/**
|
|
48327
|
+
* Customer UUID
|
|
48328
|
+
*/
|
|
48329
|
+
customer_uuid?: string;
|
|
48330
|
+
enabled?: boolean;
|
|
48331
|
+
/**
|
|
48332
|
+
* A page number within the paginated result set.
|
|
48333
|
+
*/
|
|
48334
|
+
page?: number;
|
|
48335
|
+
/**
|
|
48336
|
+
* Number of results to return per page.
|
|
48337
|
+
*/
|
|
48338
|
+
page_size?: number;
|
|
48339
|
+
/**
|
|
48340
|
+
* Project UUID
|
|
48341
|
+
*/
|
|
48342
|
+
project_uuid?: string;
|
|
48343
|
+
};
|
|
48344
|
+
url: '/api/marketplace-project-order-auto-approvals/';
|
|
48345
|
+
};
|
|
48346
|
+
export type MarketplaceProjectOrderAutoApprovalsListResponses = {
|
|
48347
|
+
200: Array<ProjectOrderAutoApproval>;
|
|
48348
|
+
};
|
|
48349
|
+
export type MarketplaceProjectOrderAutoApprovalsListResponse = MarketplaceProjectOrderAutoApprovalsListResponses[keyof MarketplaceProjectOrderAutoApprovalsListResponses];
|
|
48350
|
+
export type MarketplaceProjectOrderAutoApprovalsCountData = {
|
|
48351
|
+
body?: never;
|
|
48352
|
+
path?: never;
|
|
48353
|
+
query?: {
|
|
48354
|
+
/**
|
|
48355
|
+
* Customer UUID
|
|
48356
|
+
*/
|
|
48357
|
+
customer_uuid?: string;
|
|
48358
|
+
enabled?: boolean;
|
|
48359
|
+
/**
|
|
48360
|
+
* A page number within the paginated result set.
|
|
48361
|
+
*/
|
|
48362
|
+
page?: number;
|
|
48363
|
+
/**
|
|
48364
|
+
* Number of results to return per page.
|
|
48365
|
+
*/
|
|
48366
|
+
page_size?: number;
|
|
48367
|
+
/**
|
|
48368
|
+
* Project UUID
|
|
48369
|
+
*/
|
|
48370
|
+
project_uuid?: string;
|
|
48371
|
+
};
|
|
48372
|
+
url: '/api/marketplace-project-order-auto-approvals/';
|
|
48373
|
+
};
|
|
48374
|
+
export type MarketplaceProjectOrderAutoApprovalsCountResponses = {
|
|
48375
|
+
/**
|
|
48376
|
+
* No response body
|
|
48377
|
+
*/
|
|
48378
|
+
200: unknown;
|
|
48379
|
+
};
|
|
48380
|
+
export type MarketplaceProjectOrderAutoApprovalsCreateData = {
|
|
48381
|
+
body: ProjectOrderAutoApprovalRequest;
|
|
48382
|
+
path?: never;
|
|
48383
|
+
query?: never;
|
|
48384
|
+
url: '/api/marketplace-project-order-auto-approvals/';
|
|
48385
|
+
};
|
|
48386
|
+
export type MarketplaceProjectOrderAutoApprovalsCreateResponses = {
|
|
48387
|
+
201: ProjectOrderAutoApproval;
|
|
48388
|
+
};
|
|
48389
|
+
export type MarketplaceProjectOrderAutoApprovalsCreateResponse = MarketplaceProjectOrderAutoApprovalsCreateResponses[keyof MarketplaceProjectOrderAutoApprovalsCreateResponses];
|
|
48390
|
+
export type MarketplaceProjectOrderAutoApprovalsDestroyData = {
|
|
48391
|
+
body?: never;
|
|
48392
|
+
path: {
|
|
48393
|
+
uuid: string;
|
|
48394
|
+
};
|
|
48395
|
+
query?: never;
|
|
48396
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/';
|
|
48397
|
+
};
|
|
48398
|
+
export type MarketplaceProjectOrderAutoApprovalsDestroyResponses = {
|
|
48399
|
+
/**
|
|
48400
|
+
* No response body
|
|
48401
|
+
*/
|
|
48402
|
+
204: void;
|
|
48403
|
+
};
|
|
48404
|
+
export type MarketplaceProjectOrderAutoApprovalsDestroyResponse = MarketplaceProjectOrderAutoApprovalsDestroyResponses[keyof MarketplaceProjectOrderAutoApprovalsDestroyResponses];
|
|
48405
|
+
export type MarketplaceProjectOrderAutoApprovalsRetrieveData = {
|
|
48406
|
+
body?: never;
|
|
48407
|
+
path: {
|
|
48408
|
+
uuid: string;
|
|
48409
|
+
};
|
|
48410
|
+
query?: never;
|
|
48411
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/';
|
|
48412
|
+
};
|
|
48413
|
+
export type MarketplaceProjectOrderAutoApprovalsRetrieveResponses = {
|
|
48414
|
+
200: ProjectOrderAutoApproval;
|
|
48415
|
+
};
|
|
48416
|
+
export type MarketplaceProjectOrderAutoApprovalsRetrieveResponse = MarketplaceProjectOrderAutoApprovalsRetrieveResponses[keyof MarketplaceProjectOrderAutoApprovalsRetrieveResponses];
|
|
48417
|
+
export type MarketplaceProjectOrderAutoApprovalsPartialUpdateData = {
|
|
48418
|
+
body?: PatchedProjectOrderAutoApprovalRequest;
|
|
48419
|
+
path: {
|
|
48420
|
+
uuid: string;
|
|
48421
|
+
};
|
|
48422
|
+
query?: never;
|
|
48423
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/';
|
|
48424
|
+
};
|
|
48425
|
+
export type MarketplaceProjectOrderAutoApprovalsPartialUpdateResponses = {
|
|
48426
|
+
200: ProjectOrderAutoApproval;
|
|
48427
|
+
};
|
|
48428
|
+
export type MarketplaceProjectOrderAutoApprovalsPartialUpdateResponse = MarketplaceProjectOrderAutoApprovalsPartialUpdateResponses[keyof MarketplaceProjectOrderAutoApprovalsPartialUpdateResponses];
|
|
48429
|
+
export type MarketplaceProjectOrderAutoApprovalsUpdateData = {
|
|
48430
|
+
body: ProjectOrderAutoApprovalRequest;
|
|
48431
|
+
path: {
|
|
48432
|
+
uuid: string;
|
|
48433
|
+
};
|
|
48434
|
+
query?: never;
|
|
48435
|
+
url: '/api/marketplace-project-order-auto-approvals/{uuid}/';
|
|
48436
|
+
};
|
|
48437
|
+
export type MarketplaceProjectOrderAutoApprovalsUpdateResponses = {
|
|
48438
|
+
200: ProjectOrderAutoApproval;
|
|
48439
|
+
};
|
|
48440
|
+
export type MarketplaceProjectOrderAutoApprovalsUpdateResponse = MarketplaceProjectOrderAutoApprovalsUpdateResponses[keyof MarketplaceProjectOrderAutoApprovalsUpdateResponses];
|
|
48275
48441
|
export type MarketplaceProjectServiceAccountsListData = {
|
|
48276
48442
|
body?: never;
|
|
48277
48443
|
path?: never;
|
|
@@ -56493,6 +56659,188 @@ export type MarketplaceServiceProvidersOfferingsListResponses = {
|
|
|
56493
56659
|
200: Array<ProviderOffering>;
|
|
56494
56660
|
};
|
|
56495
56661
|
export type MarketplaceServiceProvidersOfferingsListResponse = MarketplaceServiceProvidersOfferingsListResponses[keyof MarketplaceServiceProvidersOfferingsListResponses];
|
|
56662
|
+
export type MarketplaceServiceProvidersOfferingsTypesListData = {
|
|
56663
|
+
body?: never;
|
|
56664
|
+
path: {
|
|
56665
|
+
service_provider_uuid: string;
|
|
56666
|
+
};
|
|
56667
|
+
query?: {
|
|
56668
|
+
/**
|
|
56669
|
+
* Accessible via calls
|
|
56670
|
+
*/
|
|
56671
|
+
accessible_via_calls?: boolean;
|
|
56672
|
+
/**
|
|
56673
|
+
* Allowed customer UUID
|
|
56674
|
+
*/
|
|
56675
|
+
allowed_customer_uuid?: string;
|
|
56676
|
+
/**
|
|
56677
|
+
* Offering attributes (JSON)
|
|
56678
|
+
*/
|
|
56679
|
+
attributes?: string;
|
|
56680
|
+
/**
|
|
56681
|
+
* Billable
|
|
56682
|
+
*/
|
|
56683
|
+
billable?: boolean;
|
|
56684
|
+
can_create_offering_user?: boolean;
|
|
56685
|
+
/**
|
|
56686
|
+
* Category group UUID
|
|
56687
|
+
*/
|
|
56688
|
+
category_group_uuid?: string;
|
|
56689
|
+
/**
|
|
56690
|
+
* Category UUID
|
|
56691
|
+
*/
|
|
56692
|
+
category_uuid?: string;
|
|
56693
|
+
/**
|
|
56694
|
+
* Created after
|
|
56695
|
+
*/
|
|
56696
|
+
created?: string;
|
|
56697
|
+
/**
|
|
56698
|
+
* Created before
|
|
56699
|
+
*/
|
|
56700
|
+
created_before?: string;
|
|
56701
|
+
/**
|
|
56702
|
+
* Customer URL
|
|
56703
|
+
*/
|
|
56704
|
+
customer?: string;
|
|
56705
|
+
/**
|
|
56706
|
+
* Customer UUID
|
|
56707
|
+
*/
|
|
56708
|
+
customer_uuid?: string;
|
|
56709
|
+
/**
|
|
56710
|
+
* Description contains
|
|
56711
|
+
*/
|
|
56712
|
+
description?: string;
|
|
56713
|
+
/**
|
|
56714
|
+
* Has Active Terms of Service
|
|
56715
|
+
*/
|
|
56716
|
+
has_active_terms_of_service?: boolean;
|
|
56717
|
+
/**
|
|
56718
|
+
* Has Terms of Service
|
|
56719
|
+
*/
|
|
56720
|
+
has_terms_of_service?: boolean;
|
|
56721
|
+
/**
|
|
56722
|
+
* Keyword
|
|
56723
|
+
*/
|
|
56724
|
+
keyword?: string;
|
|
56725
|
+
/**
|
|
56726
|
+
* Modified after
|
|
56727
|
+
*/
|
|
56728
|
+
modified?: string;
|
|
56729
|
+
/**
|
|
56730
|
+
* Modified before
|
|
56731
|
+
*/
|
|
56732
|
+
modified_before?: string;
|
|
56733
|
+
/**
|
|
56734
|
+
* Name
|
|
56735
|
+
*/
|
|
56736
|
+
name?: string;
|
|
56737
|
+
/**
|
|
56738
|
+
* Name (exact)
|
|
56739
|
+
*/
|
|
56740
|
+
name_exact?: string;
|
|
56741
|
+
/**
|
|
56742
|
+
* Ordering
|
|
56743
|
+
*
|
|
56744
|
+
*
|
|
56745
|
+
*/
|
|
56746
|
+
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
56747
|
+
/**
|
|
56748
|
+
* Offering group UUID
|
|
56749
|
+
*/
|
|
56750
|
+
offering_group_uuid?: string;
|
|
56751
|
+
/**
|
|
56752
|
+
* Organization group UUID
|
|
56753
|
+
*/
|
|
56754
|
+
organization_group_uuid?: string;
|
|
56755
|
+
/**
|
|
56756
|
+
* A page number within the paginated result set.
|
|
56757
|
+
*/
|
|
56758
|
+
page?: number;
|
|
56759
|
+
/**
|
|
56760
|
+
* Number of results to return per page.
|
|
56761
|
+
*/
|
|
56762
|
+
page_size?: number;
|
|
56763
|
+
/**
|
|
56764
|
+
* Parent offering UUID
|
|
56765
|
+
*/
|
|
56766
|
+
parent_uuid?: string;
|
|
56767
|
+
/**
|
|
56768
|
+
* Project UUID
|
|
56769
|
+
*/
|
|
56770
|
+
project_uuid?: string;
|
|
56771
|
+
/**
|
|
56772
|
+
* Search by offering name, slug or description
|
|
56773
|
+
*/
|
|
56774
|
+
query?: string;
|
|
56775
|
+
/**
|
|
56776
|
+
* Resource customer UUID
|
|
56777
|
+
*/
|
|
56778
|
+
resource_customer_uuid?: string;
|
|
56779
|
+
/**
|
|
56780
|
+
* Resource project UUID
|
|
56781
|
+
*/
|
|
56782
|
+
resource_project_uuid?: string;
|
|
56783
|
+
/**
|
|
56784
|
+
* Scope UUID
|
|
56785
|
+
*/
|
|
56786
|
+
scope_uuid?: string;
|
|
56787
|
+
/**
|
|
56788
|
+
* Service manager UUID
|
|
56789
|
+
*/
|
|
56790
|
+
service_manager_uuid?: string;
|
|
56791
|
+
/**
|
|
56792
|
+
* Shared
|
|
56793
|
+
*/
|
|
56794
|
+
shared?: boolean;
|
|
56795
|
+
/**
|
|
56796
|
+
* Slug
|
|
56797
|
+
*/
|
|
56798
|
+
slug?: string;
|
|
56799
|
+
/**
|
|
56800
|
+
* Offering state
|
|
56801
|
+
*
|
|
56802
|
+
*
|
|
56803
|
+
*/
|
|
56804
|
+
state?: Array<OfferingState>;
|
|
56805
|
+
/**
|
|
56806
|
+
* Tag UUID (OR logic)
|
|
56807
|
+
*/
|
|
56808
|
+
tag?: Array<string>;
|
|
56809
|
+
/**
|
|
56810
|
+
* Tag name (OR logic)
|
|
56811
|
+
*/
|
|
56812
|
+
tag_name?: Array<string>;
|
|
56813
|
+
/**
|
|
56814
|
+
* Tag names with AND logic (comma-separated)
|
|
56815
|
+
*/
|
|
56816
|
+
tag_names_and?: string;
|
|
56817
|
+
/**
|
|
56818
|
+
* Tag UUIDs with AND logic (comma-separated)
|
|
56819
|
+
*/
|
|
56820
|
+
tags_and?: string;
|
|
56821
|
+
/**
|
|
56822
|
+
* Offering type
|
|
56823
|
+
*/
|
|
56824
|
+
type?: Array<string>;
|
|
56825
|
+
/**
|
|
56826
|
+
* User Has Consent
|
|
56827
|
+
*/
|
|
56828
|
+
user_has_consent?: boolean;
|
|
56829
|
+
/**
|
|
56830
|
+
* User Has Offering User
|
|
56831
|
+
*/
|
|
56832
|
+
user_has_offering_user?: boolean;
|
|
56833
|
+
/**
|
|
56834
|
+
* Comma-separated offering UUIDs
|
|
56835
|
+
*/
|
|
56836
|
+
uuid_list?: string;
|
|
56837
|
+
};
|
|
56838
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/types/';
|
|
56839
|
+
};
|
|
56840
|
+
export type MarketplaceServiceProvidersOfferingsTypesListResponses = {
|
|
56841
|
+
200: Array<string>;
|
|
56842
|
+
};
|
|
56843
|
+
export type MarketplaceServiceProvidersOfferingsTypesListResponse = MarketplaceServiceProvidersOfferingsTypesListResponses[keyof MarketplaceServiceProvidersOfferingsTypesListResponses];
|
|
56496
56844
|
export type MarketplaceServiceProvidersProjectPermissionsListData = {
|
|
56497
56845
|
body?: never;
|
|
56498
56846
|
path: {
|