waldur-js-client 7.6.6-dev.6 → 7.6.6-dev.8
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 +54 -1
- package/dist/sdk.gen.js +642 -0
- package/dist/types.gen.d.ts +858 -53
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -1997,6 +1997,204 @@ export const azureVirtualmachinesUnlink = (options) => {
|
|
|
1997
1997
|
...options
|
|
1998
1998
|
});
|
|
1999
1999
|
};
|
|
2000
|
+
/**
|
|
2001
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
2002
|
+
*/
|
|
2003
|
+
export const backendResourceRequestsList = (options) => {
|
|
2004
|
+
return (options?.client ?? _heyApiClient).get({
|
|
2005
|
+
security: [
|
|
2006
|
+
{
|
|
2007
|
+
name: 'Authorization',
|
|
2008
|
+
type: 'apiKey'
|
|
2009
|
+
},
|
|
2010
|
+
{
|
|
2011
|
+
scheme: 'bearer',
|
|
2012
|
+
type: 'http'
|
|
2013
|
+
}
|
|
2014
|
+
],
|
|
2015
|
+
url: '/api/backend-resource-requests/',
|
|
2016
|
+
...options
|
|
2017
|
+
});
|
|
2018
|
+
};
|
|
2019
|
+
export const backendResourceRequestsCreate = (options) => {
|
|
2020
|
+
return (options.client ?? _heyApiClient).post({
|
|
2021
|
+
security: [
|
|
2022
|
+
{
|
|
2023
|
+
name: 'Authorization',
|
|
2024
|
+
type: 'apiKey'
|
|
2025
|
+
},
|
|
2026
|
+
{
|
|
2027
|
+
scheme: 'bearer',
|
|
2028
|
+
type: 'http'
|
|
2029
|
+
}
|
|
2030
|
+
],
|
|
2031
|
+
url: '/api/backend-resource-requests/',
|
|
2032
|
+
...options,
|
|
2033
|
+
headers: {
|
|
2034
|
+
'Content-Type': 'application/json',
|
|
2035
|
+
...options.headers
|
|
2036
|
+
}
|
|
2037
|
+
});
|
|
2038
|
+
};
|
|
2039
|
+
export const backendResourceRequestsRetrieve = (options) => {
|
|
2040
|
+
return (options.client ?? _heyApiClient).get({
|
|
2041
|
+
security: [
|
|
2042
|
+
{
|
|
2043
|
+
name: 'Authorization',
|
|
2044
|
+
type: 'apiKey'
|
|
2045
|
+
},
|
|
2046
|
+
{
|
|
2047
|
+
scheme: 'bearer',
|
|
2048
|
+
type: 'http'
|
|
2049
|
+
}
|
|
2050
|
+
],
|
|
2051
|
+
url: '/api/backend-resource-requests/{uuid}/',
|
|
2052
|
+
...options
|
|
2053
|
+
});
|
|
2054
|
+
};
|
|
2055
|
+
export const backendResourceRequestsSetDone = (options) => {
|
|
2056
|
+
return (options.client ?? _heyApiClient).post({
|
|
2057
|
+
security: [
|
|
2058
|
+
{
|
|
2059
|
+
name: 'Authorization',
|
|
2060
|
+
type: 'apiKey'
|
|
2061
|
+
},
|
|
2062
|
+
{
|
|
2063
|
+
scheme: 'bearer',
|
|
2064
|
+
type: 'http'
|
|
2065
|
+
}
|
|
2066
|
+
],
|
|
2067
|
+
url: '/api/backend-resource-requests/{uuid}/set_done/',
|
|
2068
|
+
...options
|
|
2069
|
+
});
|
|
2070
|
+
};
|
|
2071
|
+
export const backendResourceRequestsSetErred = (options) => {
|
|
2072
|
+
return (options.client ?? _heyApiClient).post({
|
|
2073
|
+
security: [
|
|
2074
|
+
{
|
|
2075
|
+
name: 'Authorization',
|
|
2076
|
+
type: 'apiKey'
|
|
2077
|
+
},
|
|
2078
|
+
{
|
|
2079
|
+
scheme: 'bearer',
|
|
2080
|
+
type: 'http'
|
|
2081
|
+
}
|
|
2082
|
+
],
|
|
2083
|
+
url: '/api/backend-resource-requests/{uuid}/set_erred/',
|
|
2084
|
+
...options,
|
|
2085
|
+
headers: {
|
|
2086
|
+
'Content-Type': 'application/json',
|
|
2087
|
+
...options.headers
|
|
2088
|
+
}
|
|
2089
|
+
});
|
|
2090
|
+
};
|
|
2091
|
+
export const backendResourceRequestsStartProcessing = (options) => {
|
|
2092
|
+
return (options.client ?? _heyApiClient).post({
|
|
2093
|
+
security: [
|
|
2094
|
+
{
|
|
2095
|
+
name: 'Authorization',
|
|
2096
|
+
type: 'apiKey'
|
|
2097
|
+
},
|
|
2098
|
+
{
|
|
2099
|
+
scheme: 'bearer',
|
|
2100
|
+
type: 'http'
|
|
2101
|
+
}
|
|
2102
|
+
],
|
|
2103
|
+
url: '/api/backend-resource-requests/{uuid}/start_processing/',
|
|
2104
|
+
...options
|
|
2105
|
+
});
|
|
2106
|
+
};
|
|
2107
|
+
/**
|
|
2108
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
2109
|
+
*/
|
|
2110
|
+
export const backendResourcesList = (options) => {
|
|
2111
|
+
return (options?.client ?? _heyApiClient).get({
|
|
2112
|
+
security: [
|
|
2113
|
+
{
|
|
2114
|
+
name: 'Authorization',
|
|
2115
|
+
type: 'apiKey'
|
|
2116
|
+
},
|
|
2117
|
+
{
|
|
2118
|
+
scheme: 'bearer',
|
|
2119
|
+
type: 'http'
|
|
2120
|
+
}
|
|
2121
|
+
],
|
|
2122
|
+
url: '/api/backend-resources/',
|
|
2123
|
+
...options
|
|
2124
|
+
});
|
|
2125
|
+
};
|
|
2126
|
+
export const backendResourcesCreate = (options) => {
|
|
2127
|
+
return (options.client ?? _heyApiClient).post({
|
|
2128
|
+
security: [
|
|
2129
|
+
{
|
|
2130
|
+
name: 'Authorization',
|
|
2131
|
+
type: 'apiKey'
|
|
2132
|
+
},
|
|
2133
|
+
{
|
|
2134
|
+
scheme: 'bearer',
|
|
2135
|
+
type: 'http'
|
|
2136
|
+
}
|
|
2137
|
+
],
|
|
2138
|
+
url: '/api/backend-resources/',
|
|
2139
|
+
...options,
|
|
2140
|
+
headers: {
|
|
2141
|
+
'Content-Type': 'application/json',
|
|
2142
|
+
...options.headers
|
|
2143
|
+
}
|
|
2144
|
+
});
|
|
2145
|
+
};
|
|
2146
|
+
export const backendResourcesDestroy = (options) => {
|
|
2147
|
+
return (options.client ?? _heyApiClient).delete({
|
|
2148
|
+
security: [
|
|
2149
|
+
{
|
|
2150
|
+
name: 'Authorization',
|
|
2151
|
+
type: 'apiKey'
|
|
2152
|
+
},
|
|
2153
|
+
{
|
|
2154
|
+
scheme: 'bearer',
|
|
2155
|
+
type: 'http'
|
|
2156
|
+
}
|
|
2157
|
+
],
|
|
2158
|
+
url: '/api/backend-resources/{uuid}/',
|
|
2159
|
+
...options
|
|
2160
|
+
});
|
|
2161
|
+
};
|
|
2162
|
+
export const backendResourcesRetrieve = (options) => {
|
|
2163
|
+
return (options.client ?? _heyApiClient).get({
|
|
2164
|
+
security: [
|
|
2165
|
+
{
|
|
2166
|
+
name: 'Authorization',
|
|
2167
|
+
type: 'apiKey'
|
|
2168
|
+
},
|
|
2169
|
+
{
|
|
2170
|
+
scheme: 'bearer',
|
|
2171
|
+
type: 'http'
|
|
2172
|
+
}
|
|
2173
|
+
],
|
|
2174
|
+
url: '/api/backend-resources/{uuid}/',
|
|
2175
|
+
...options
|
|
2176
|
+
});
|
|
2177
|
+
};
|
|
2178
|
+
export const backendResourcesImportResource = (options) => {
|
|
2179
|
+
return (options.client ?? _heyApiClient).post({
|
|
2180
|
+
security: [
|
|
2181
|
+
{
|
|
2182
|
+
name: 'Authorization',
|
|
2183
|
+
type: 'apiKey'
|
|
2184
|
+
},
|
|
2185
|
+
{
|
|
2186
|
+
scheme: 'bearer',
|
|
2187
|
+
type: 'http'
|
|
2188
|
+
}
|
|
2189
|
+
],
|
|
2190
|
+
url: '/api/backend-resources/{uuid}/import_resource/',
|
|
2191
|
+
...options,
|
|
2192
|
+
headers: {
|
|
2193
|
+
'Content-Type': 'application/json',
|
|
2194
|
+
...options.headers
|
|
2195
|
+
}
|
|
2196
|
+
});
|
|
2197
|
+
};
|
|
2000
2198
|
export const billingTotalCostRetrieve = (options) => {
|
|
2001
2199
|
return (options?.client ?? _heyApiClient).get({
|
|
2002
2200
|
security: [
|
|
@@ -6593,6 +6791,450 @@ export const marketplaceIntegrationStatusesRetrieve = (options) => {
|
|
|
6593
6791
|
...options
|
|
6594
6792
|
});
|
|
6595
6793
|
};
|
|
6794
|
+
/**
|
|
6795
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
6796
|
+
*/
|
|
6797
|
+
export const marketplaceMaintenanceAnnouncementOfferingsList = (options) => {
|
|
6798
|
+
return (options?.client ?? _heyApiClient).get({
|
|
6799
|
+
security: [
|
|
6800
|
+
{
|
|
6801
|
+
name: 'Authorization',
|
|
6802
|
+
type: 'apiKey'
|
|
6803
|
+
},
|
|
6804
|
+
{
|
|
6805
|
+
scheme: 'bearer',
|
|
6806
|
+
type: 'http'
|
|
6807
|
+
}
|
|
6808
|
+
],
|
|
6809
|
+
url: '/api/marketplace-maintenance-announcement-offerings/',
|
|
6810
|
+
...options
|
|
6811
|
+
});
|
|
6812
|
+
};
|
|
6813
|
+
export const marketplaceMaintenanceAnnouncementOfferingsCreate = (options) => {
|
|
6814
|
+
return (options.client ?? _heyApiClient).post({
|
|
6815
|
+
security: [
|
|
6816
|
+
{
|
|
6817
|
+
name: 'Authorization',
|
|
6818
|
+
type: 'apiKey'
|
|
6819
|
+
},
|
|
6820
|
+
{
|
|
6821
|
+
scheme: 'bearer',
|
|
6822
|
+
type: 'http'
|
|
6823
|
+
}
|
|
6824
|
+
],
|
|
6825
|
+
url: '/api/marketplace-maintenance-announcement-offerings/',
|
|
6826
|
+
...options,
|
|
6827
|
+
headers: {
|
|
6828
|
+
'Content-Type': 'application/json',
|
|
6829
|
+
...options.headers
|
|
6830
|
+
}
|
|
6831
|
+
});
|
|
6832
|
+
};
|
|
6833
|
+
export const marketplaceMaintenanceAnnouncementOfferingsDestroy = (options) => {
|
|
6834
|
+
return (options.client ?? _heyApiClient).delete({
|
|
6835
|
+
security: [
|
|
6836
|
+
{
|
|
6837
|
+
name: 'Authorization',
|
|
6838
|
+
type: 'apiKey'
|
|
6839
|
+
},
|
|
6840
|
+
{
|
|
6841
|
+
scheme: 'bearer',
|
|
6842
|
+
type: 'http'
|
|
6843
|
+
}
|
|
6844
|
+
],
|
|
6845
|
+
url: '/api/marketplace-maintenance-announcement-offerings/{uuid}/',
|
|
6846
|
+
...options
|
|
6847
|
+
});
|
|
6848
|
+
};
|
|
6849
|
+
export const marketplaceMaintenanceAnnouncementOfferingsRetrieve = (options) => {
|
|
6850
|
+
return (options.client ?? _heyApiClient).get({
|
|
6851
|
+
security: [
|
|
6852
|
+
{
|
|
6853
|
+
name: 'Authorization',
|
|
6854
|
+
type: 'apiKey'
|
|
6855
|
+
},
|
|
6856
|
+
{
|
|
6857
|
+
scheme: 'bearer',
|
|
6858
|
+
type: 'http'
|
|
6859
|
+
}
|
|
6860
|
+
],
|
|
6861
|
+
url: '/api/marketplace-maintenance-announcement-offerings/{uuid}/',
|
|
6862
|
+
...options
|
|
6863
|
+
});
|
|
6864
|
+
};
|
|
6865
|
+
export const marketplaceMaintenanceAnnouncementOfferingsPartialUpdate = (options) => {
|
|
6866
|
+
return (options.client ?? _heyApiClient).patch({
|
|
6867
|
+
security: [
|
|
6868
|
+
{
|
|
6869
|
+
name: 'Authorization',
|
|
6870
|
+
type: 'apiKey'
|
|
6871
|
+
},
|
|
6872
|
+
{
|
|
6873
|
+
scheme: 'bearer',
|
|
6874
|
+
type: 'http'
|
|
6875
|
+
}
|
|
6876
|
+
],
|
|
6877
|
+
url: '/api/marketplace-maintenance-announcement-offerings/{uuid}/',
|
|
6878
|
+
...options,
|
|
6879
|
+
headers: {
|
|
6880
|
+
'Content-Type': 'application/json',
|
|
6881
|
+
...options.headers
|
|
6882
|
+
}
|
|
6883
|
+
});
|
|
6884
|
+
};
|
|
6885
|
+
export const marketplaceMaintenanceAnnouncementOfferingsUpdate = (options) => {
|
|
6886
|
+
return (options.client ?? _heyApiClient).put({
|
|
6887
|
+
security: [
|
|
6888
|
+
{
|
|
6889
|
+
name: 'Authorization',
|
|
6890
|
+
type: 'apiKey'
|
|
6891
|
+
},
|
|
6892
|
+
{
|
|
6893
|
+
scheme: 'bearer',
|
|
6894
|
+
type: 'http'
|
|
6895
|
+
}
|
|
6896
|
+
],
|
|
6897
|
+
url: '/api/marketplace-maintenance-announcement-offerings/{uuid}/',
|
|
6898
|
+
...options,
|
|
6899
|
+
headers: {
|
|
6900
|
+
'Content-Type': 'application/json',
|
|
6901
|
+
...options.headers
|
|
6902
|
+
}
|
|
6903
|
+
});
|
|
6904
|
+
};
|
|
6905
|
+
/**
|
|
6906
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
6907
|
+
*/
|
|
6908
|
+
export const marketplaceMaintenanceAnnouncementTemplateOfferingsList = (options) => {
|
|
6909
|
+
return (options?.client ?? _heyApiClient).get({
|
|
6910
|
+
security: [
|
|
6911
|
+
{
|
|
6912
|
+
name: 'Authorization',
|
|
6913
|
+
type: 'apiKey'
|
|
6914
|
+
},
|
|
6915
|
+
{
|
|
6916
|
+
scheme: 'bearer',
|
|
6917
|
+
type: 'http'
|
|
6918
|
+
}
|
|
6919
|
+
],
|
|
6920
|
+
url: '/api/marketplace-maintenance-announcement-template-offerings/',
|
|
6921
|
+
...options
|
|
6922
|
+
});
|
|
6923
|
+
};
|
|
6924
|
+
export const marketplaceMaintenanceAnnouncementTemplateOfferingsCreate = (options) => {
|
|
6925
|
+
return (options.client ?? _heyApiClient).post({
|
|
6926
|
+
security: [
|
|
6927
|
+
{
|
|
6928
|
+
name: 'Authorization',
|
|
6929
|
+
type: 'apiKey'
|
|
6930
|
+
},
|
|
6931
|
+
{
|
|
6932
|
+
scheme: 'bearer',
|
|
6933
|
+
type: 'http'
|
|
6934
|
+
}
|
|
6935
|
+
],
|
|
6936
|
+
url: '/api/marketplace-maintenance-announcement-template-offerings/',
|
|
6937
|
+
...options,
|
|
6938
|
+
headers: {
|
|
6939
|
+
'Content-Type': 'application/json',
|
|
6940
|
+
...options.headers
|
|
6941
|
+
}
|
|
6942
|
+
});
|
|
6943
|
+
};
|
|
6944
|
+
export const marketplaceMaintenanceAnnouncementTemplateOfferingsDestroy = (options) => {
|
|
6945
|
+
return (options.client ?? _heyApiClient).delete({
|
|
6946
|
+
security: [
|
|
6947
|
+
{
|
|
6948
|
+
name: 'Authorization',
|
|
6949
|
+
type: 'apiKey'
|
|
6950
|
+
},
|
|
6951
|
+
{
|
|
6952
|
+
scheme: 'bearer',
|
|
6953
|
+
type: 'http'
|
|
6954
|
+
}
|
|
6955
|
+
],
|
|
6956
|
+
url: '/api/marketplace-maintenance-announcement-template-offerings/{uuid}/',
|
|
6957
|
+
...options
|
|
6958
|
+
});
|
|
6959
|
+
};
|
|
6960
|
+
export const marketplaceMaintenanceAnnouncementTemplateOfferingsRetrieve = (options) => {
|
|
6961
|
+
return (options.client ?? _heyApiClient).get({
|
|
6962
|
+
security: [
|
|
6963
|
+
{
|
|
6964
|
+
name: 'Authorization',
|
|
6965
|
+
type: 'apiKey'
|
|
6966
|
+
},
|
|
6967
|
+
{
|
|
6968
|
+
scheme: 'bearer',
|
|
6969
|
+
type: 'http'
|
|
6970
|
+
}
|
|
6971
|
+
],
|
|
6972
|
+
url: '/api/marketplace-maintenance-announcement-template-offerings/{uuid}/',
|
|
6973
|
+
...options
|
|
6974
|
+
});
|
|
6975
|
+
};
|
|
6976
|
+
export const marketplaceMaintenanceAnnouncementTemplateOfferingsPartialUpdate = (options) => {
|
|
6977
|
+
return (options.client ?? _heyApiClient).patch({
|
|
6978
|
+
security: [
|
|
6979
|
+
{
|
|
6980
|
+
name: 'Authorization',
|
|
6981
|
+
type: 'apiKey'
|
|
6982
|
+
},
|
|
6983
|
+
{
|
|
6984
|
+
scheme: 'bearer',
|
|
6985
|
+
type: 'http'
|
|
6986
|
+
}
|
|
6987
|
+
],
|
|
6988
|
+
url: '/api/marketplace-maintenance-announcement-template-offerings/{uuid}/',
|
|
6989
|
+
...options,
|
|
6990
|
+
headers: {
|
|
6991
|
+
'Content-Type': 'application/json',
|
|
6992
|
+
...options.headers
|
|
6993
|
+
}
|
|
6994
|
+
});
|
|
6995
|
+
};
|
|
6996
|
+
export const marketplaceMaintenanceAnnouncementTemplateOfferingsUpdate = (options) => {
|
|
6997
|
+
return (options.client ?? _heyApiClient).put({
|
|
6998
|
+
security: [
|
|
6999
|
+
{
|
|
7000
|
+
name: 'Authorization',
|
|
7001
|
+
type: 'apiKey'
|
|
7002
|
+
},
|
|
7003
|
+
{
|
|
7004
|
+
scheme: 'bearer',
|
|
7005
|
+
type: 'http'
|
|
7006
|
+
}
|
|
7007
|
+
],
|
|
7008
|
+
url: '/api/marketplace-maintenance-announcement-template-offerings/{uuid}/',
|
|
7009
|
+
...options,
|
|
7010
|
+
headers: {
|
|
7011
|
+
'Content-Type': 'application/json',
|
|
7012
|
+
...options.headers
|
|
7013
|
+
}
|
|
7014
|
+
});
|
|
7015
|
+
};
|
|
7016
|
+
/**
|
|
7017
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
7018
|
+
*/
|
|
7019
|
+
export const marketplaceMaintenanceAnnouncementsList = (options) => {
|
|
7020
|
+
return (options?.client ?? _heyApiClient).get({
|
|
7021
|
+
security: [
|
|
7022
|
+
{
|
|
7023
|
+
name: 'Authorization',
|
|
7024
|
+
type: 'apiKey'
|
|
7025
|
+
},
|
|
7026
|
+
{
|
|
7027
|
+
scheme: 'bearer',
|
|
7028
|
+
type: 'http'
|
|
7029
|
+
}
|
|
7030
|
+
],
|
|
7031
|
+
url: '/api/marketplace-maintenance-announcements/',
|
|
7032
|
+
...options
|
|
7033
|
+
});
|
|
7034
|
+
};
|
|
7035
|
+
export const marketplaceMaintenanceAnnouncementsCreate = (options) => {
|
|
7036
|
+
return (options.client ?? _heyApiClient).post({
|
|
7037
|
+
security: [
|
|
7038
|
+
{
|
|
7039
|
+
name: 'Authorization',
|
|
7040
|
+
type: 'apiKey'
|
|
7041
|
+
},
|
|
7042
|
+
{
|
|
7043
|
+
scheme: 'bearer',
|
|
7044
|
+
type: 'http'
|
|
7045
|
+
}
|
|
7046
|
+
],
|
|
7047
|
+
url: '/api/marketplace-maintenance-announcements/',
|
|
7048
|
+
...options,
|
|
7049
|
+
headers: {
|
|
7050
|
+
'Content-Type': 'application/json',
|
|
7051
|
+
...options.headers
|
|
7052
|
+
}
|
|
7053
|
+
});
|
|
7054
|
+
};
|
|
7055
|
+
/**
|
|
7056
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
7057
|
+
*/
|
|
7058
|
+
export const marketplaceMaintenanceAnnouncementsTemplateList = (options) => {
|
|
7059
|
+
return (options?.client ?? _heyApiClient).get({
|
|
7060
|
+
security: [
|
|
7061
|
+
{
|
|
7062
|
+
name: 'Authorization',
|
|
7063
|
+
type: 'apiKey'
|
|
7064
|
+
},
|
|
7065
|
+
{
|
|
7066
|
+
scheme: 'bearer',
|
|
7067
|
+
type: 'http'
|
|
7068
|
+
}
|
|
7069
|
+
],
|
|
7070
|
+
url: '/api/marketplace-maintenance-announcements-template/',
|
|
7071
|
+
...options
|
|
7072
|
+
});
|
|
7073
|
+
};
|
|
7074
|
+
export const marketplaceMaintenanceAnnouncementsTemplateCreate = (options) => {
|
|
7075
|
+
return (options.client ?? _heyApiClient).post({
|
|
7076
|
+
security: [
|
|
7077
|
+
{
|
|
7078
|
+
name: 'Authorization',
|
|
7079
|
+
type: 'apiKey'
|
|
7080
|
+
},
|
|
7081
|
+
{
|
|
7082
|
+
scheme: 'bearer',
|
|
7083
|
+
type: 'http'
|
|
7084
|
+
}
|
|
7085
|
+
],
|
|
7086
|
+
url: '/api/marketplace-maintenance-announcements-template/',
|
|
7087
|
+
...options,
|
|
7088
|
+
headers: {
|
|
7089
|
+
'Content-Type': 'application/json',
|
|
7090
|
+
...options.headers
|
|
7091
|
+
}
|
|
7092
|
+
});
|
|
7093
|
+
};
|
|
7094
|
+
export const marketplaceMaintenanceAnnouncementsTemplateDestroy = (options) => {
|
|
7095
|
+
return (options.client ?? _heyApiClient).delete({
|
|
7096
|
+
security: [
|
|
7097
|
+
{
|
|
7098
|
+
name: 'Authorization',
|
|
7099
|
+
type: 'apiKey'
|
|
7100
|
+
},
|
|
7101
|
+
{
|
|
7102
|
+
scheme: 'bearer',
|
|
7103
|
+
type: 'http'
|
|
7104
|
+
}
|
|
7105
|
+
],
|
|
7106
|
+
url: '/api/marketplace-maintenance-announcements-template/{uuid}/',
|
|
7107
|
+
...options
|
|
7108
|
+
});
|
|
7109
|
+
};
|
|
7110
|
+
export const marketplaceMaintenanceAnnouncementsTemplateRetrieve = (options) => {
|
|
7111
|
+
return (options.client ?? _heyApiClient).get({
|
|
7112
|
+
security: [
|
|
7113
|
+
{
|
|
7114
|
+
name: 'Authorization',
|
|
7115
|
+
type: 'apiKey'
|
|
7116
|
+
},
|
|
7117
|
+
{
|
|
7118
|
+
scheme: 'bearer',
|
|
7119
|
+
type: 'http'
|
|
7120
|
+
}
|
|
7121
|
+
],
|
|
7122
|
+
url: '/api/marketplace-maintenance-announcements-template/{uuid}/',
|
|
7123
|
+
...options
|
|
7124
|
+
});
|
|
7125
|
+
};
|
|
7126
|
+
export const marketplaceMaintenanceAnnouncementsTemplatePartialUpdate = (options) => {
|
|
7127
|
+
return (options.client ?? _heyApiClient).patch({
|
|
7128
|
+
security: [
|
|
7129
|
+
{
|
|
7130
|
+
name: 'Authorization',
|
|
7131
|
+
type: 'apiKey'
|
|
7132
|
+
},
|
|
7133
|
+
{
|
|
7134
|
+
scheme: 'bearer',
|
|
7135
|
+
type: 'http'
|
|
7136
|
+
}
|
|
7137
|
+
],
|
|
7138
|
+
url: '/api/marketplace-maintenance-announcements-template/{uuid}/',
|
|
7139
|
+
...options,
|
|
7140
|
+
headers: {
|
|
7141
|
+
'Content-Type': 'application/json',
|
|
7142
|
+
...options.headers
|
|
7143
|
+
}
|
|
7144
|
+
});
|
|
7145
|
+
};
|
|
7146
|
+
export const marketplaceMaintenanceAnnouncementsTemplateUpdate = (options) => {
|
|
7147
|
+
return (options.client ?? _heyApiClient).put({
|
|
7148
|
+
security: [
|
|
7149
|
+
{
|
|
7150
|
+
name: 'Authorization',
|
|
7151
|
+
type: 'apiKey'
|
|
7152
|
+
},
|
|
7153
|
+
{
|
|
7154
|
+
scheme: 'bearer',
|
|
7155
|
+
type: 'http'
|
|
7156
|
+
}
|
|
7157
|
+
],
|
|
7158
|
+
url: '/api/marketplace-maintenance-announcements-template/{uuid}/',
|
|
7159
|
+
...options,
|
|
7160
|
+
headers: {
|
|
7161
|
+
'Content-Type': 'application/json',
|
|
7162
|
+
...options.headers
|
|
7163
|
+
}
|
|
7164
|
+
});
|
|
7165
|
+
};
|
|
7166
|
+
export const marketplaceMaintenanceAnnouncementsDestroy = (options) => {
|
|
7167
|
+
return (options.client ?? _heyApiClient).delete({
|
|
7168
|
+
security: [
|
|
7169
|
+
{
|
|
7170
|
+
name: 'Authorization',
|
|
7171
|
+
type: 'apiKey'
|
|
7172
|
+
},
|
|
7173
|
+
{
|
|
7174
|
+
scheme: 'bearer',
|
|
7175
|
+
type: 'http'
|
|
7176
|
+
}
|
|
7177
|
+
],
|
|
7178
|
+
url: '/api/marketplace-maintenance-announcements/{uuid}/',
|
|
7179
|
+
...options
|
|
7180
|
+
});
|
|
7181
|
+
};
|
|
7182
|
+
export const marketplaceMaintenanceAnnouncementsRetrieve = (options) => {
|
|
7183
|
+
return (options.client ?? _heyApiClient).get({
|
|
7184
|
+
security: [
|
|
7185
|
+
{
|
|
7186
|
+
name: 'Authorization',
|
|
7187
|
+
type: 'apiKey'
|
|
7188
|
+
},
|
|
7189
|
+
{
|
|
7190
|
+
scheme: 'bearer',
|
|
7191
|
+
type: 'http'
|
|
7192
|
+
}
|
|
7193
|
+
],
|
|
7194
|
+
url: '/api/marketplace-maintenance-announcements/{uuid}/',
|
|
7195
|
+
...options
|
|
7196
|
+
});
|
|
7197
|
+
};
|
|
7198
|
+
export const marketplaceMaintenanceAnnouncementsPartialUpdate = (options) => {
|
|
7199
|
+
return (options.client ?? _heyApiClient).patch({
|
|
7200
|
+
security: [
|
|
7201
|
+
{
|
|
7202
|
+
name: 'Authorization',
|
|
7203
|
+
type: 'apiKey'
|
|
7204
|
+
},
|
|
7205
|
+
{
|
|
7206
|
+
scheme: 'bearer',
|
|
7207
|
+
type: 'http'
|
|
7208
|
+
}
|
|
7209
|
+
],
|
|
7210
|
+
url: '/api/marketplace-maintenance-announcements/{uuid}/',
|
|
7211
|
+
...options,
|
|
7212
|
+
headers: {
|
|
7213
|
+
'Content-Type': 'application/json',
|
|
7214
|
+
...options.headers
|
|
7215
|
+
}
|
|
7216
|
+
});
|
|
7217
|
+
};
|
|
7218
|
+
export const marketplaceMaintenanceAnnouncementsUpdate = (options) => {
|
|
7219
|
+
return (options.client ?? _heyApiClient).put({
|
|
7220
|
+
security: [
|
|
7221
|
+
{
|
|
7222
|
+
name: 'Authorization',
|
|
7223
|
+
type: 'apiKey'
|
|
7224
|
+
},
|
|
7225
|
+
{
|
|
7226
|
+
scheme: 'bearer',
|
|
7227
|
+
type: 'http'
|
|
7228
|
+
}
|
|
7229
|
+
],
|
|
7230
|
+
url: '/api/marketplace-maintenance-announcements/{uuid}/',
|
|
7231
|
+
...options,
|
|
7232
|
+
headers: {
|
|
7233
|
+
'Content-Type': 'application/json',
|
|
7234
|
+
...options.headers
|
|
7235
|
+
}
|
|
7236
|
+
});
|
|
7237
|
+
};
|
|
6596
7238
|
/**
|
|
6597
7239
|
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
6598
7240
|
*/
|