waldur-js-client 7.7.7-dev.0 → 7.7.7-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 +31 -1
- package/dist/sdk.gen.js +279 -0
- package/dist/types.gen.d.ts +383 -38
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -9841,6 +9841,136 @@ export const marketplaceOfferingReferralsRetrieve = (options) => {
|
|
|
9841
9841
|
...options
|
|
9842
9842
|
});
|
|
9843
9843
|
};
|
|
9844
|
+
/**
|
|
9845
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
9846
|
+
*/
|
|
9847
|
+
export const marketplaceOfferingTermsOfServiceList = (options) => {
|
|
9848
|
+
return (options?.client ?? _heyApiClient).get({
|
|
9849
|
+
security: [
|
|
9850
|
+
{
|
|
9851
|
+
name: 'Authorization',
|
|
9852
|
+
type: 'apiKey'
|
|
9853
|
+
},
|
|
9854
|
+
{
|
|
9855
|
+
scheme: 'bearer',
|
|
9856
|
+
type: 'http'
|
|
9857
|
+
}
|
|
9858
|
+
],
|
|
9859
|
+
url: '/api/marketplace-offering-terms-of-service/',
|
|
9860
|
+
...options
|
|
9861
|
+
});
|
|
9862
|
+
};
|
|
9863
|
+
/**
|
|
9864
|
+
* Get number of items in the collection matching the request parameters.
|
|
9865
|
+
*/
|
|
9866
|
+
export const marketplaceOfferingTermsOfServiceCount = (options) => {
|
|
9867
|
+
return (options?.client ?? _heyApiClient).head({
|
|
9868
|
+
security: [
|
|
9869
|
+
{
|
|
9870
|
+
name: 'Authorization',
|
|
9871
|
+
type: 'apiKey'
|
|
9872
|
+
},
|
|
9873
|
+
{
|
|
9874
|
+
scheme: 'bearer',
|
|
9875
|
+
type: 'http'
|
|
9876
|
+
}
|
|
9877
|
+
],
|
|
9878
|
+
url: '/api/marketplace-offering-terms-of-service/',
|
|
9879
|
+
...options
|
|
9880
|
+
});
|
|
9881
|
+
};
|
|
9882
|
+
export const marketplaceOfferingTermsOfServiceCreate = (options) => {
|
|
9883
|
+
return (options.client ?? _heyApiClient).post({
|
|
9884
|
+
security: [
|
|
9885
|
+
{
|
|
9886
|
+
name: 'Authorization',
|
|
9887
|
+
type: 'apiKey'
|
|
9888
|
+
},
|
|
9889
|
+
{
|
|
9890
|
+
scheme: 'bearer',
|
|
9891
|
+
type: 'http'
|
|
9892
|
+
}
|
|
9893
|
+
],
|
|
9894
|
+
url: '/api/marketplace-offering-terms-of-service/',
|
|
9895
|
+
...options,
|
|
9896
|
+
headers: {
|
|
9897
|
+
'Content-Type': 'application/json',
|
|
9898
|
+
...options.headers
|
|
9899
|
+
}
|
|
9900
|
+
});
|
|
9901
|
+
};
|
|
9902
|
+
export const marketplaceOfferingTermsOfServiceDestroy = (options) => {
|
|
9903
|
+
return (options.client ?? _heyApiClient).delete({
|
|
9904
|
+
security: [
|
|
9905
|
+
{
|
|
9906
|
+
name: 'Authorization',
|
|
9907
|
+
type: 'apiKey'
|
|
9908
|
+
},
|
|
9909
|
+
{
|
|
9910
|
+
scheme: 'bearer',
|
|
9911
|
+
type: 'http'
|
|
9912
|
+
}
|
|
9913
|
+
],
|
|
9914
|
+
url: '/api/marketplace-offering-terms-of-service/{uuid}/',
|
|
9915
|
+
...options
|
|
9916
|
+
});
|
|
9917
|
+
};
|
|
9918
|
+
export const marketplaceOfferingTermsOfServiceRetrieve = (options) => {
|
|
9919
|
+
return (options.client ?? _heyApiClient).get({
|
|
9920
|
+
security: [
|
|
9921
|
+
{
|
|
9922
|
+
name: 'Authorization',
|
|
9923
|
+
type: 'apiKey'
|
|
9924
|
+
},
|
|
9925
|
+
{
|
|
9926
|
+
scheme: 'bearer',
|
|
9927
|
+
type: 'http'
|
|
9928
|
+
}
|
|
9929
|
+
],
|
|
9930
|
+
url: '/api/marketplace-offering-terms-of-service/{uuid}/',
|
|
9931
|
+
...options
|
|
9932
|
+
});
|
|
9933
|
+
};
|
|
9934
|
+
export const marketplaceOfferingTermsOfServicePartialUpdate = (options) => {
|
|
9935
|
+
return (options.client ?? _heyApiClient).patch({
|
|
9936
|
+
security: [
|
|
9937
|
+
{
|
|
9938
|
+
name: 'Authorization',
|
|
9939
|
+
type: 'apiKey'
|
|
9940
|
+
},
|
|
9941
|
+
{
|
|
9942
|
+
scheme: 'bearer',
|
|
9943
|
+
type: 'http'
|
|
9944
|
+
}
|
|
9945
|
+
],
|
|
9946
|
+
url: '/api/marketplace-offering-terms-of-service/{uuid}/',
|
|
9947
|
+
...options,
|
|
9948
|
+
headers: {
|
|
9949
|
+
'Content-Type': 'application/json',
|
|
9950
|
+
...options.headers
|
|
9951
|
+
}
|
|
9952
|
+
});
|
|
9953
|
+
};
|
|
9954
|
+
export const marketplaceOfferingTermsOfServiceUpdate = (options) => {
|
|
9955
|
+
return (options.client ?? _heyApiClient).put({
|
|
9956
|
+
security: [
|
|
9957
|
+
{
|
|
9958
|
+
name: 'Authorization',
|
|
9959
|
+
type: 'apiKey'
|
|
9960
|
+
},
|
|
9961
|
+
{
|
|
9962
|
+
scheme: 'bearer',
|
|
9963
|
+
type: 'http'
|
|
9964
|
+
}
|
|
9965
|
+
],
|
|
9966
|
+
url: '/api/marketplace-offering-terms-of-service/{uuid}/',
|
|
9967
|
+
...options,
|
|
9968
|
+
headers: {
|
|
9969
|
+
'Content-Type': 'application/json',
|
|
9970
|
+
...options.headers
|
|
9971
|
+
}
|
|
9972
|
+
});
|
|
9973
|
+
};
|
|
9844
9974
|
/**
|
|
9845
9975
|
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
9846
9976
|
*/
|
|
@@ -15862,6 +15992,155 @@ export const marketplaceStatsTotalCostOfActiveResourcesPerOfferingCount = (optio
|
|
|
15862
15992
|
...options
|
|
15863
15993
|
});
|
|
15864
15994
|
};
|
|
15995
|
+
/**
|
|
15996
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
15997
|
+
*/
|
|
15998
|
+
export const marketplaceUserOfferingConsentsList = (options) => {
|
|
15999
|
+
return (options?.client ?? _heyApiClient).get({
|
|
16000
|
+
security: [
|
|
16001
|
+
{
|
|
16002
|
+
name: 'Authorization',
|
|
16003
|
+
type: 'apiKey'
|
|
16004
|
+
},
|
|
16005
|
+
{
|
|
16006
|
+
scheme: 'bearer',
|
|
16007
|
+
type: 'http'
|
|
16008
|
+
}
|
|
16009
|
+
],
|
|
16010
|
+
url: '/api/marketplace-user-offering-consents/',
|
|
16011
|
+
...options
|
|
16012
|
+
});
|
|
16013
|
+
};
|
|
16014
|
+
/**
|
|
16015
|
+
* Get number of items in the collection matching the request parameters.
|
|
16016
|
+
*/
|
|
16017
|
+
export const marketplaceUserOfferingConsentsCount = (options) => {
|
|
16018
|
+
return (options?.client ?? _heyApiClient).head({
|
|
16019
|
+
security: [
|
|
16020
|
+
{
|
|
16021
|
+
name: 'Authorization',
|
|
16022
|
+
type: 'apiKey'
|
|
16023
|
+
},
|
|
16024
|
+
{
|
|
16025
|
+
scheme: 'bearer',
|
|
16026
|
+
type: 'http'
|
|
16027
|
+
}
|
|
16028
|
+
],
|
|
16029
|
+
url: '/api/marketplace-user-offering-consents/',
|
|
16030
|
+
...options
|
|
16031
|
+
});
|
|
16032
|
+
};
|
|
16033
|
+
export const marketplaceUserOfferingConsentsCreate = (options) => {
|
|
16034
|
+
return (options.client ?? _heyApiClient).post({
|
|
16035
|
+
security: [
|
|
16036
|
+
{
|
|
16037
|
+
name: 'Authorization',
|
|
16038
|
+
type: 'apiKey'
|
|
16039
|
+
},
|
|
16040
|
+
{
|
|
16041
|
+
scheme: 'bearer',
|
|
16042
|
+
type: 'http'
|
|
16043
|
+
}
|
|
16044
|
+
],
|
|
16045
|
+
url: '/api/marketplace-user-offering-consents/',
|
|
16046
|
+
...options,
|
|
16047
|
+
headers: {
|
|
16048
|
+
'Content-Type': 'application/json',
|
|
16049
|
+
...options.headers
|
|
16050
|
+
}
|
|
16051
|
+
});
|
|
16052
|
+
};
|
|
16053
|
+
export const marketplaceUserOfferingConsentsDestroy = (options) => {
|
|
16054
|
+
return (options.client ?? _heyApiClient).delete({
|
|
16055
|
+
security: [
|
|
16056
|
+
{
|
|
16057
|
+
name: 'Authorization',
|
|
16058
|
+
type: 'apiKey'
|
|
16059
|
+
},
|
|
16060
|
+
{
|
|
16061
|
+
scheme: 'bearer',
|
|
16062
|
+
type: 'http'
|
|
16063
|
+
}
|
|
16064
|
+
],
|
|
16065
|
+
url: '/api/marketplace-user-offering-consents/{uuid}/',
|
|
16066
|
+
...options
|
|
16067
|
+
});
|
|
16068
|
+
};
|
|
16069
|
+
export const marketplaceUserOfferingConsentsRetrieve = (options) => {
|
|
16070
|
+
return (options.client ?? _heyApiClient).get({
|
|
16071
|
+
security: [
|
|
16072
|
+
{
|
|
16073
|
+
name: 'Authorization',
|
|
16074
|
+
type: 'apiKey'
|
|
16075
|
+
},
|
|
16076
|
+
{
|
|
16077
|
+
scheme: 'bearer',
|
|
16078
|
+
type: 'http'
|
|
16079
|
+
}
|
|
16080
|
+
],
|
|
16081
|
+
url: '/api/marketplace-user-offering-consents/{uuid}/',
|
|
16082
|
+
...options
|
|
16083
|
+
});
|
|
16084
|
+
};
|
|
16085
|
+
export const marketplaceUserOfferingConsentsPartialUpdate = (options) => {
|
|
16086
|
+
return (options.client ?? _heyApiClient).patch({
|
|
16087
|
+
security: [
|
|
16088
|
+
{
|
|
16089
|
+
name: 'Authorization',
|
|
16090
|
+
type: 'apiKey'
|
|
16091
|
+
},
|
|
16092
|
+
{
|
|
16093
|
+
scheme: 'bearer',
|
|
16094
|
+
type: 'http'
|
|
16095
|
+
}
|
|
16096
|
+
],
|
|
16097
|
+
url: '/api/marketplace-user-offering-consents/{uuid}/',
|
|
16098
|
+
...options,
|
|
16099
|
+
headers: {
|
|
16100
|
+
'Content-Type': 'application/json',
|
|
16101
|
+
...options.headers
|
|
16102
|
+
}
|
|
16103
|
+
});
|
|
16104
|
+
};
|
|
16105
|
+
export const marketplaceUserOfferingConsentsUpdate = (options) => {
|
|
16106
|
+
return (options.client ?? _heyApiClient).put({
|
|
16107
|
+
security: [
|
|
16108
|
+
{
|
|
16109
|
+
name: 'Authorization',
|
|
16110
|
+
type: 'apiKey'
|
|
16111
|
+
},
|
|
16112
|
+
{
|
|
16113
|
+
scheme: 'bearer',
|
|
16114
|
+
type: 'http'
|
|
16115
|
+
}
|
|
16116
|
+
],
|
|
16117
|
+
url: '/api/marketplace-user-offering-consents/{uuid}/',
|
|
16118
|
+
...options,
|
|
16119
|
+
headers: {
|
|
16120
|
+
'Content-Type': 'application/json',
|
|
16121
|
+
...options.headers
|
|
16122
|
+
}
|
|
16123
|
+
});
|
|
16124
|
+
};
|
|
16125
|
+
/**
|
|
16126
|
+
* Revoke consent to Terms of Service for an offering.
|
|
16127
|
+
*/
|
|
16128
|
+
export const marketplaceUserOfferingConsentsRevoke = (options) => {
|
|
16129
|
+
return (options.client ?? _heyApiClient).post({
|
|
16130
|
+
security: [
|
|
16131
|
+
{
|
|
16132
|
+
name: 'Authorization',
|
|
16133
|
+
type: 'apiKey'
|
|
16134
|
+
},
|
|
16135
|
+
{
|
|
16136
|
+
scheme: 'bearer',
|
|
16137
|
+
type: 'http'
|
|
16138
|
+
}
|
|
16139
|
+
],
|
|
16140
|
+
url: '/api/marketplace-user-offering-consents/{uuid}/revoke/',
|
|
16141
|
+
...options
|
|
16142
|
+
});
|
|
16143
|
+
};
|
|
15865
16144
|
/**
|
|
15866
16145
|
* Get media file
|
|
15867
16146
|
*/
|