waldur-js-client 7.8.3-dev.7 → 7.8.3-dev.9

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.js CHANGED
@@ -14210,6 +14210,29 @@ export const marketplaceResourcesPull = (options) => {
14210
14210
  ...options
14211
14211
  });
14212
14212
  };
14213
+ /**
14214
+ * Create a renewal order for a prepaid resource.
14215
+ */
14216
+ export const marketplaceResourcesRenew = (options) => {
14217
+ return (options.client ?? _heyApiClient).post({
14218
+ security: [
14219
+ {
14220
+ name: 'Authorization',
14221
+ type: 'apiKey'
14222
+ },
14223
+ {
14224
+ scheme: 'bearer',
14225
+ type: 'http'
14226
+ }
14227
+ ],
14228
+ url: '/api/marketplace-resources/{uuid}/renew/',
14229
+ ...options,
14230
+ headers: {
14231
+ 'Content-Type': 'application/json',
14232
+ ...options.headers
14233
+ }
14234
+ });
14235
+ };
14213
14236
  /**
14214
14237
  * Set end date of the resource by staff.
14215
14238
  */
@@ -16931,6 +16954,373 @@ export const notificationMessagesEnable = (options) => {
16931
16954
  ...options
16932
16955
  });
16933
16956
  };
16957
+ /**
16958
+ * Mixin to optimize HEAD requests for DRF views bypassing serializer processing
16959
+ */
16960
+ export const onboardingJustificationsList = (options) => {
16961
+ return (options?.client ?? _heyApiClient).get({
16962
+ security: [
16963
+ {
16964
+ name: 'Authorization',
16965
+ type: 'apiKey'
16966
+ },
16967
+ {
16968
+ scheme: 'bearer',
16969
+ type: 'http'
16970
+ }
16971
+ ],
16972
+ url: '/api/onboarding-justifications/',
16973
+ ...options
16974
+ });
16975
+ };
16976
+ /**
16977
+ * Get number of items in the collection matching the request parameters.
16978
+ */
16979
+ export const onboardingJustificationsCount = (options) => {
16980
+ return (options?.client ?? _heyApiClient).head({
16981
+ security: [
16982
+ {
16983
+ name: 'Authorization',
16984
+ type: 'apiKey'
16985
+ },
16986
+ {
16987
+ scheme: 'bearer',
16988
+ type: 'http'
16989
+ }
16990
+ ],
16991
+ url: '/api/onboarding-justifications/',
16992
+ ...options
16993
+ });
16994
+ };
16995
+ export const onboardingJustificationsCreate = (options) => {
16996
+ return (options.client ?? _heyApiClient).post({
16997
+ security: [
16998
+ {
16999
+ name: 'Authorization',
17000
+ type: 'apiKey'
17001
+ },
17002
+ {
17003
+ scheme: 'bearer',
17004
+ type: 'http'
17005
+ }
17006
+ ],
17007
+ url: '/api/onboarding-justifications/',
17008
+ ...options,
17009
+ headers: {
17010
+ 'Content-Type': 'application/json',
17011
+ ...options.headers
17012
+ }
17013
+ });
17014
+ };
17015
+ export const onboardingJustificationsDestroy = (options) => {
17016
+ return (options.client ?? _heyApiClient).delete({
17017
+ security: [
17018
+ {
17019
+ name: 'Authorization',
17020
+ type: 'apiKey'
17021
+ },
17022
+ {
17023
+ scheme: 'bearer',
17024
+ type: 'http'
17025
+ }
17026
+ ],
17027
+ url: '/api/onboarding-justifications/{uuid}/',
17028
+ ...options
17029
+ });
17030
+ };
17031
+ export const onboardingJustificationsRetrieve = (options) => {
17032
+ return (options.client ?? _heyApiClient).get({
17033
+ security: [
17034
+ {
17035
+ name: 'Authorization',
17036
+ type: 'apiKey'
17037
+ },
17038
+ {
17039
+ scheme: 'bearer',
17040
+ type: 'http'
17041
+ }
17042
+ ],
17043
+ url: '/api/onboarding-justifications/{uuid}/',
17044
+ ...options
17045
+ });
17046
+ };
17047
+ export const onboardingJustificationsPartialUpdate = (options) => {
17048
+ return (options.client ?? _heyApiClient).patch({
17049
+ security: [
17050
+ {
17051
+ name: 'Authorization',
17052
+ type: 'apiKey'
17053
+ },
17054
+ {
17055
+ scheme: 'bearer',
17056
+ type: 'http'
17057
+ }
17058
+ ],
17059
+ url: '/api/onboarding-justifications/{uuid}/',
17060
+ ...options,
17061
+ headers: {
17062
+ 'Content-Type': 'application/json',
17063
+ ...options.headers
17064
+ }
17065
+ });
17066
+ };
17067
+ export const onboardingJustificationsUpdate = (options) => {
17068
+ return (options.client ?? _heyApiClient).put({
17069
+ security: [
17070
+ {
17071
+ name: 'Authorization',
17072
+ type: 'apiKey'
17073
+ },
17074
+ {
17075
+ scheme: 'bearer',
17076
+ type: 'http'
17077
+ }
17078
+ ],
17079
+ url: '/api/onboarding-justifications/{uuid}/',
17080
+ ...options,
17081
+ headers: {
17082
+ 'Content-Type': 'application/json',
17083
+ ...options.headers
17084
+ }
17085
+ });
17086
+ };
17087
+ /**
17088
+ * Attach supporting document to justification.
17089
+ */
17090
+ export const onboardingJustificationsAttachDocument = (options) => {
17091
+ return (options.client ?? _heyApiClient).post({
17092
+ security: [
17093
+ {
17094
+ name: 'Authorization',
17095
+ type: 'apiKey'
17096
+ },
17097
+ {
17098
+ scheme: 'bearer',
17099
+ type: 'http'
17100
+ }
17101
+ ],
17102
+ url: '/api/onboarding-justifications/{uuid}/attach_document/',
17103
+ ...options,
17104
+ headers: {
17105
+ 'Content-Type': 'application/json',
17106
+ ...options.headers
17107
+ }
17108
+ });
17109
+ };
17110
+ /**
17111
+ * Create justification for failed verification.
17112
+ */
17113
+ export const onboardingJustificationsCreateJustification = (options) => {
17114
+ return (options.client ?? _heyApiClient).post({
17115
+ security: [
17116
+ {
17117
+ name: 'Authorization',
17118
+ type: 'apiKey'
17119
+ },
17120
+ {
17121
+ scheme: 'bearer',
17122
+ type: 'http'
17123
+ }
17124
+ ],
17125
+ url: '/api/onboarding-justifications/create_justification/',
17126
+ ...options,
17127
+ headers: {
17128
+ 'Content-Type': 'application/json',
17129
+ ...options.headers
17130
+ }
17131
+ });
17132
+ };
17133
+ /**
17134
+ * Mixin to optimize HEAD requests for DRF views bypassing serializer processing
17135
+ */
17136
+ export const onboardingVerificationsList = (options) => {
17137
+ return (options?.client ?? _heyApiClient).get({
17138
+ security: [
17139
+ {
17140
+ name: 'Authorization',
17141
+ type: 'apiKey'
17142
+ },
17143
+ {
17144
+ scheme: 'bearer',
17145
+ type: 'http'
17146
+ }
17147
+ ],
17148
+ url: '/api/onboarding-verifications/',
17149
+ ...options
17150
+ });
17151
+ };
17152
+ /**
17153
+ * Get number of items in the collection matching the request parameters.
17154
+ */
17155
+ export const onboardingVerificationsCount = (options) => {
17156
+ return (options?.client ?? _heyApiClient).head({
17157
+ security: [
17158
+ {
17159
+ name: 'Authorization',
17160
+ type: 'apiKey'
17161
+ },
17162
+ {
17163
+ scheme: 'bearer',
17164
+ type: 'http'
17165
+ }
17166
+ ],
17167
+ url: '/api/onboarding-verifications/',
17168
+ ...options
17169
+ });
17170
+ };
17171
+ export const onboardingVerificationsCreate = (options) => {
17172
+ return (options.client ?? _heyApiClient).post({
17173
+ security: [
17174
+ {
17175
+ name: 'Authorization',
17176
+ type: 'apiKey'
17177
+ },
17178
+ {
17179
+ scheme: 'bearer',
17180
+ type: 'http'
17181
+ }
17182
+ ],
17183
+ url: '/api/onboarding-verifications/',
17184
+ ...options,
17185
+ headers: {
17186
+ 'Content-Type': 'application/json',
17187
+ ...options.headers
17188
+ }
17189
+ });
17190
+ };
17191
+ export const onboardingVerificationsDestroy = (options) => {
17192
+ return (options.client ?? _heyApiClient).delete({
17193
+ security: [
17194
+ {
17195
+ name: 'Authorization',
17196
+ type: 'apiKey'
17197
+ },
17198
+ {
17199
+ scheme: 'bearer',
17200
+ type: 'http'
17201
+ }
17202
+ ],
17203
+ url: '/api/onboarding-verifications/{uuid}/',
17204
+ ...options
17205
+ });
17206
+ };
17207
+ export const onboardingVerificationsRetrieve = (options) => {
17208
+ return (options.client ?? _heyApiClient).get({
17209
+ security: [
17210
+ {
17211
+ name: 'Authorization',
17212
+ type: 'apiKey'
17213
+ },
17214
+ {
17215
+ scheme: 'bearer',
17216
+ type: 'http'
17217
+ }
17218
+ ],
17219
+ url: '/api/onboarding-verifications/{uuid}/',
17220
+ ...options
17221
+ });
17222
+ };
17223
+ export const onboardingVerificationsPartialUpdate = (options) => {
17224
+ return (options.client ?? _heyApiClient).patch({
17225
+ security: [
17226
+ {
17227
+ name: 'Authorization',
17228
+ type: 'apiKey'
17229
+ },
17230
+ {
17231
+ scheme: 'bearer',
17232
+ type: 'http'
17233
+ }
17234
+ ],
17235
+ url: '/api/onboarding-verifications/{uuid}/',
17236
+ ...options,
17237
+ headers: {
17238
+ 'Content-Type': 'application/json',
17239
+ ...options.headers
17240
+ }
17241
+ });
17242
+ };
17243
+ export const onboardingVerificationsUpdate = (options) => {
17244
+ return (options.client ?? _heyApiClient).put({
17245
+ security: [
17246
+ {
17247
+ name: 'Authorization',
17248
+ type: 'apiKey'
17249
+ },
17250
+ {
17251
+ scheme: 'bearer',
17252
+ type: 'http'
17253
+ }
17254
+ ],
17255
+ url: '/api/onboarding-verifications/{uuid}/',
17256
+ ...options,
17257
+ headers: {
17258
+ 'Content-Type': 'application/json',
17259
+ ...options.headers
17260
+ }
17261
+ });
17262
+ };
17263
+ /**
17264
+ * Create customer from successful verification.
17265
+ */
17266
+ export const onboardingVerificationsCreateCustomer = (options) => {
17267
+ return (options.client ?? _heyApiClient).post({
17268
+ security: [
17269
+ {
17270
+ name: 'Authorization',
17271
+ type: 'apiKey'
17272
+ },
17273
+ {
17274
+ scheme: 'bearer',
17275
+ type: 'http'
17276
+ }
17277
+ ],
17278
+ url: '/api/onboarding-verifications/{uuid}/create_customer/',
17279
+ ...options
17280
+ });
17281
+ };
17282
+ /**
17283
+ * Start company validation process.
17284
+ */
17285
+ export const onboardingVerificationsValidateCompany = (options) => {
17286
+ return (options.client ?? _heyApiClient).post({
17287
+ security: [
17288
+ {
17289
+ name: 'Authorization',
17290
+ type: 'apiKey'
17291
+ },
17292
+ {
17293
+ scheme: 'bearer',
17294
+ type: 'http'
17295
+ }
17296
+ ],
17297
+ url: '/api/onboarding-verifications/validate_company/',
17298
+ ...options,
17299
+ headers: {
17300
+ 'Content-Type': 'application/json',
17301
+ ...options.headers
17302
+ }
17303
+ });
17304
+ };
17305
+ /**
17306
+ * Return list of supported countries for validation.
17307
+ */
17308
+ export const onboardingSupportedCountriesRetrieve = (options) => {
17309
+ return (options?.client ?? _heyApiClient).get({
17310
+ security: [
17311
+ {
17312
+ name: 'Authorization',
17313
+ type: 'apiKey'
17314
+ },
17315
+ {
17316
+ scheme: 'bearer',
17317
+ type: 'http'
17318
+ }
17319
+ ],
17320
+ url: '/api/onboarding/supported-countries/',
17321
+ ...options
17322
+ });
17323
+ };
16934
17324
  /**
16935
17325
  * Mixin to optimize HEAD requests for DRF views bypassing serializer processing
16936
17326
  */