waldur-js-client 7.9.8 → 7.9.9-dev.1
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 +21 -1
- package/dist/sdk.gen.js +171 -0
- package/dist/types.gen.d.ts +422 -8
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -14569,6 +14569,26 @@ export const marketplaceProviderOfferingsDeleteOrganizationGroups = (options) =>
|
|
|
14569
14569
|
...options
|
|
14570
14570
|
});
|
|
14571
14571
|
};
|
|
14572
|
+
/**
|
|
14573
|
+
* Delete tags for offering
|
|
14574
|
+
* Removes all tag associations from this offering.
|
|
14575
|
+
*/
|
|
14576
|
+
export const marketplaceProviderOfferingsDeleteTags = (options) => {
|
|
14577
|
+
return (options.client ?? _heyApiClient).post({
|
|
14578
|
+
security: [
|
|
14579
|
+
{
|
|
14580
|
+
name: 'Authorization',
|
|
14581
|
+
type: 'apiKey'
|
|
14582
|
+
},
|
|
14583
|
+
{
|
|
14584
|
+
scheme: 'bearer',
|
|
14585
|
+
type: 'http'
|
|
14586
|
+
}
|
|
14587
|
+
],
|
|
14588
|
+
url: '/api/marketplace-provider-offerings/{uuid}/delete_tags/',
|
|
14589
|
+
...options
|
|
14590
|
+
});
|
|
14591
|
+
};
|
|
14572
14592
|
/**
|
|
14573
14593
|
* Delete offering thumbnail
|
|
14574
14594
|
* Deletes the thumbnail image of an offering.
|
|
@@ -15493,6 +15513,30 @@ export const marketplaceProviderOfferingsUpdateSoftwareCatalogPartialUpdate = (o
|
|
|
15493
15513
|
}
|
|
15494
15514
|
});
|
|
15495
15515
|
};
|
|
15516
|
+
/**
|
|
15517
|
+
* Update tags for offering
|
|
15518
|
+
* Sets the list of tags for this offering.
|
|
15519
|
+
*/
|
|
15520
|
+
export const marketplaceProviderOfferingsUpdateTags = (options) => {
|
|
15521
|
+
return (options.client ?? _heyApiClient).post({
|
|
15522
|
+
security: [
|
|
15523
|
+
{
|
|
15524
|
+
name: 'Authorization',
|
|
15525
|
+
type: 'apiKey'
|
|
15526
|
+
},
|
|
15527
|
+
{
|
|
15528
|
+
scheme: 'bearer',
|
|
15529
|
+
type: 'http'
|
|
15530
|
+
}
|
|
15531
|
+
],
|
|
15532
|
+
url: '/api/marketplace-provider-offerings/{uuid}/update_tags/',
|
|
15533
|
+
...options,
|
|
15534
|
+
headers: {
|
|
15535
|
+
'Content-Type': 'application/json',
|
|
15536
|
+
...options.headers
|
|
15537
|
+
}
|
|
15538
|
+
});
|
|
15539
|
+
};
|
|
15496
15540
|
/**
|
|
15497
15541
|
* Update offering thumbnail
|
|
15498
15542
|
* Uploads or replaces the thumbnail image for an offering.
|
|
@@ -20921,6 +20965,133 @@ export const marketplaceStatsUserOrganizationCountCount = (options) => {
|
|
|
20921
20965
|
...options
|
|
20922
20966
|
});
|
|
20923
20967
|
};
|
|
20968
|
+
export const marketplaceTagsList = (options) => {
|
|
20969
|
+
return (options?.client ?? _heyApiClient).get({
|
|
20970
|
+
security: [
|
|
20971
|
+
{
|
|
20972
|
+
name: 'Authorization',
|
|
20973
|
+
type: 'apiKey'
|
|
20974
|
+
},
|
|
20975
|
+
{
|
|
20976
|
+
scheme: 'bearer',
|
|
20977
|
+
type: 'http'
|
|
20978
|
+
}
|
|
20979
|
+
],
|
|
20980
|
+
url: '/api/marketplace-tags/',
|
|
20981
|
+
...options
|
|
20982
|
+
});
|
|
20983
|
+
};
|
|
20984
|
+
/**
|
|
20985
|
+
* Get number of items in the collection matching the request parameters.
|
|
20986
|
+
*/
|
|
20987
|
+
export const marketplaceTagsCount = (options) => {
|
|
20988
|
+
return (options?.client ?? _heyApiClient).head({
|
|
20989
|
+
security: [
|
|
20990
|
+
{
|
|
20991
|
+
name: 'Authorization',
|
|
20992
|
+
type: 'apiKey'
|
|
20993
|
+
},
|
|
20994
|
+
{
|
|
20995
|
+
scheme: 'bearer',
|
|
20996
|
+
type: 'http'
|
|
20997
|
+
}
|
|
20998
|
+
],
|
|
20999
|
+
url: '/api/marketplace-tags/',
|
|
21000
|
+
...options
|
|
21001
|
+
});
|
|
21002
|
+
};
|
|
21003
|
+
export const marketplaceTagsCreate = (options) => {
|
|
21004
|
+
return (options.client ?? _heyApiClient).post({
|
|
21005
|
+
security: [
|
|
21006
|
+
{
|
|
21007
|
+
name: 'Authorization',
|
|
21008
|
+
type: 'apiKey'
|
|
21009
|
+
},
|
|
21010
|
+
{
|
|
21011
|
+
scheme: 'bearer',
|
|
21012
|
+
type: 'http'
|
|
21013
|
+
}
|
|
21014
|
+
],
|
|
21015
|
+
url: '/api/marketplace-tags/',
|
|
21016
|
+
...options,
|
|
21017
|
+
headers: {
|
|
21018
|
+
'Content-Type': 'application/json',
|
|
21019
|
+
...options.headers
|
|
21020
|
+
}
|
|
21021
|
+
});
|
|
21022
|
+
};
|
|
21023
|
+
export const marketplaceTagsDestroy = (options) => {
|
|
21024
|
+
return (options.client ?? _heyApiClient).delete({
|
|
21025
|
+
security: [
|
|
21026
|
+
{
|
|
21027
|
+
name: 'Authorization',
|
|
21028
|
+
type: 'apiKey'
|
|
21029
|
+
},
|
|
21030
|
+
{
|
|
21031
|
+
scheme: 'bearer',
|
|
21032
|
+
type: 'http'
|
|
21033
|
+
}
|
|
21034
|
+
],
|
|
21035
|
+
url: '/api/marketplace-tags/{uuid}/',
|
|
21036
|
+
...options
|
|
21037
|
+
});
|
|
21038
|
+
};
|
|
21039
|
+
export const marketplaceTagsRetrieve = (options) => {
|
|
21040
|
+
return (options.client ?? _heyApiClient).get({
|
|
21041
|
+
security: [
|
|
21042
|
+
{
|
|
21043
|
+
name: 'Authorization',
|
|
21044
|
+
type: 'apiKey'
|
|
21045
|
+
},
|
|
21046
|
+
{
|
|
21047
|
+
scheme: 'bearer',
|
|
21048
|
+
type: 'http'
|
|
21049
|
+
}
|
|
21050
|
+
],
|
|
21051
|
+
url: '/api/marketplace-tags/{uuid}/',
|
|
21052
|
+
...options
|
|
21053
|
+
});
|
|
21054
|
+
};
|
|
21055
|
+
export const marketplaceTagsPartialUpdate = (options) => {
|
|
21056
|
+
return (options.client ?? _heyApiClient).patch({
|
|
21057
|
+
security: [
|
|
21058
|
+
{
|
|
21059
|
+
name: 'Authorization',
|
|
21060
|
+
type: 'apiKey'
|
|
21061
|
+
},
|
|
21062
|
+
{
|
|
21063
|
+
scheme: 'bearer',
|
|
21064
|
+
type: 'http'
|
|
21065
|
+
}
|
|
21066
|
+
],
|
|
21067
|
+
url: '/api/marketplace-tags/{uuid}/',
|
|
21068
|
+
...options,
|
|
21069
|
+
headers: {
|
|
21070
|
+
'Content-Type': 'application/json',
|
|
21071
|
+
...options.headers
|
|
21072
|
+
}
|
|
21073
|
+
});
|
|
21074
|
+
};
|
|
21075
|
+
export const marketplaceTagsUpdate = (options) => {
|
|
21076
|
+
return (options.client ?? _heyApiClient).put({
|
|
21077
|
+
security: [
|
|
21078
|
+
{
|
|
21079
|
+
name: 'Authorization',
|
|
21080
|
+
type: 'apiKey'
|
|
21081
|
+
},
|
|
21082
|
+
{
|
|
21083
|
+
scheme: 'bearer',
|
|
21084
|
+
type: 'http'
|
|
21085
|
+
}
|
|
21086
|
+
],
|
|
21087
|
+
url: '/api/marketplace-tags/{uuid}/',
|
|
21088
|
+
...options,
|
|
21089
|
+
headers: {
|
|
21090
|
+
'Content-Type': 'application/json',
|
|
21091
|
+
...options.headers
|
|
21092
|
+
}
|
|
21093
|
+
});
|
|
21094
|
+
};
|
|
20924
21095
|
/**
|
|
20925
21096
|
* List user offering consents
|
|
20926
21097
|
* Returns a paginated list of Terms of Service consents for the current user. Staff and support users can see all consents.
|