waldur-js-client 8.0.9-dev.14 → 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 +15 -1
- package/dist/sdk.gen.js +178 -0
- package/dist/types.gen.d.ts +348 -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
|
/**
|
|
@@ -18826,6 +18834,36 @@ export type ProjectMappingResponse = {
|
|
|
18826
18834
|
customer_uuid: string;
|
|
18827
18835
|
customer_name: string;
|
|
18828
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
|
+
};
|
|
18829
18867
|
export type ProjectPermissionLog = {
|
|
18830
18868
|
readonly created?: string;
|
|
18831
18869
|
expiration_time?: string | null;
|
|
@@ -28967,7 +29005,7 @@ export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version'
|
|
|
28967
29005
|
export type UserChecklistCompletionOEnum = '-is_completed' | '-modified' | 'is_completed' | 'modified';
|
|
28968
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';
|
|
28969
29007
|
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';
|
|
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';
|
|
28971
29009
|
export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
|
|
28972
29010
|
export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
|
|
28973
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';
|
|
@@ -47272,6 +47310,10 @@ export type MarketplaceOrdersListData = {
|
|
|
47272
47310
|
*
|
|
47273
47311
|
*/
|
|
47274
47312
|
type?: Array<RequestTypes>;
|
|
47313
|
+
/**
|
|
47314
|
+
* Auto-approved
|
|
47315
|
+
*/
|
|
47316
|
+
was_auto_approved?: boolean;
|
|
47275
47317
|
};
|
|
47276
47318
|
url: '/api/marketplace-orders/';
|
|
47277
47319
|
};
|
|
@@ -47387,6 +47429,10 @@ export type MarketplaceOrdersCountData = {
|
|
|
47387
47429
|
*
|
|
47388
47430
|
*/
|
|
47389
47431
|
type?: Array<RequestTypes>;
|
|
47432
|
+
/**
|
|
47433
|
+
* Auto-approved
|
|
47434
|
+
*/
|
|
47435
|
+
was_auto_approved?: boolean;
|
|
47390
47436
|
};
|
|
47391
47437
|
url: '/api/marketplace-orders/';
|
|
47392
47438
|
};
|
|
@@ -48272,6 +48318,125 @@ export type MarketplaceProjectEstimatedCostPoliciesActionsCountResponses = {
|
|
|
48272
48318
|
*/
|
|
48273
48319
|
200: unknown;
|
|
48274
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];
|
|
48275
48440
|
export type MarketplaceProjectServiceAccountsListData = {
|
|
48276
48441
|
body?: never;
|
|
48277
48442
|
path?: never;
|
|
@@ -56493,6 +56658,188 @@ export type MarketplaceServiceProvidersOfferingsListResponses = {
|
|
|
56493
56658
|
200: Array<ProviderOffering>;
|
|
56494
56659
|
};
|
|
56495
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];
|
|
56496
56843
|
export type MarketplaceServiceProvidersProjectPermissionsListData = {
|
|
56497
56844
|
body?: never;
|
|
56498
56845
|
path: {
|