waldur-js-client 7.7.5-dev.8 → 7.7.5

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
@@ -8074,6 +8074,101 @@ export const maintenanceAnnouncementsUpdate = (options) => {
8074
8074
  }
8075
8075
  });
8076
8076
  };
8077
+ /**
8078
+ * Cancel the maintenance announcement
8079
+ */
8080
+ export const maintenanceAnnouncementsCancelMaintenance = (options) => {
8081
+ return (options.client ?? _heyApiClient).post({
8082
+ security: [
8083
+ {
8084
+ name: 'Authorization',
8085
+ type: 'apiKey'
8086
+ },
8087
+ {
8088
+ scheme: 'bearer',
8089
+ type: 'http'
8090
+ }
8091
+ ],
8092
+ url: '/api/maintenance-announcements/{uuid}/cancel_maintenance/',
8093
+ ...options
8094
+ });
8095
+ };
8096
+ /**
8097
+ * Complete the maintenance announcement
8098
+ */
8099
+ export const maintenanceAnnouncementsCompleteMaintenance = (options) => {
8100
+ return (options.client ?? _heyApiClient).post({
8101
+ security: [
8102
+ {
8103
+ name: 'Authorization',
8104
+ type: 'apiKey'
8105
+ },
8106
+ {
8107
+ scheme: 'bearer',
8108
+ type: 'http'
8109
+ }
8110
+ ],
8111
+ url: '/api/maintenance-announcements/{uuid}/complete_maintenance/',
8112
+ ...options
8113
+ });
8114
+ };
8115
+ /**
8116
+ * Schedule/publish the maintenance announcement
8117
+ */
8118
+ export const maintenanceAnnouncementsSchedule = (options) => {
8119
+ return (options.client ?? _heyApiClient).post({
8120
+ security: [
8121
+ {
8122
+ name: 'Authorization',
8123
+ type: 'apiKey'
8124
+ },
8125
+ {
8126
+ scheme: 'bearer',
8127
+ type: 'http'
8128
+ }
8129
+ ],
8130
+ url: '/api/maintenance-announcements/{uuid}/schedule/',
8131
+ ...options
8132
+ });
8133
+ };
8134
+ /**
8135
+ * Start the maintenance announcement
8136
+ */
8137
+ export const maintenanceAnnouncementsStartMaintenance = (options) => {
8138
+ return (options.client ?? _heyApiClient).post({
8139
+ security: [
8140
+ {
8141
+ name: 'Authorization',
8142
+ type: 'apiKey'
8143
+ },
8144
+ {
8145
+ scheme: 'bearer',
8146
+ type: 'http'
8147
+ }
8148
+ ],
8149
+ url: '/api/maintenance-announcements/{uuid}/start_maintenance/',
8150
+ ...options
8151
+ });
8152
+ };
8153
+ /**
8154
+ * Unschedule/unpublish the maintenance announcement
8155
+ */
8156
+ export const maintenanceAnnouncementsUnschedule = (options) => {
8157
+ return (options.client ?? _heyApiClient).post({
8158
+ security: [
8159
+ {
8160
+ name: 'Authorization',
8161
+ type: 'apiKey'
8162
+ },
8163
+ {
8164
+ scheme: 'bearer',
8165
+ type: 'http'
8166
+ }
8167
+ ],
8168
+ url: '/api/maintenance-announcements/{uuid}/unschedule/',
8169
+ ...options
8170
+ });
8171
+ };
8077
8172
  export const marketplaceBookingsList = (options) => {
8078
8173
  return (options.client ?? _heyApiClient).get({
8079
8174
  security: [
@@ -20254,6 +20349,44 @@ export const projectsAddUser = (options) => {
20254
20349
  }
20255
20350
  });
20256
20351
  };
20352
+ /**
20353
+ * Get checklist with questions and existing answers.
20354
+ */
20355
+ export const projectsChecklistRetrieve = (options) => {
20356
+ return (options.client ?? _heyApiClient).get({
20357
+ security: [
20358
+ {
20359
+ name: 'Authorization',
20360
+ type: 'apiKey'
20361
+ },
20362
+ {
20363
+ scheme: 'bearer',
20364
+ type: 'http'
20365
+ }
20366
+ ],
20367
+ url: '/api/projects/{uuid}/checklist/',
20368
+ ...options
20369
+ });
20370
+ };
20371
+ /**
20372
+ * Get checklist completion status.
20373
+ */
20374
+ export const projectsCompletionStatusRetrieve = (options) => {
20375
+ return (options.client ?? _heyApiClient).get({
20376
+ security: [
20377
+ {
20378
+ name: 'Authorization',
20379
+ type: 'apiKey'
20380
+ },
20381
+ {
20382
+ scheme: 'bearer',
20383
+ type: 'http'
20384
+ }
20385
+ ],
20386
+ url: '/api/projects/{uuid}/completion_status/',
20387
+ ...options
20388
+ });
20389
+ };
20257
20390
  export const projectsDeleteUser = (options) => {
20258
20391
  return (options.client ?? _heyApiClient).post({
20259
20392
  security: [
@@ -20348,6 +20481,29 @@ export const projectsStatsRetrieve = (options) => {
20348
20481
  ...options
20349
20482
  });
20350
20483
  };
20484
+ /**
20485
+ * Submit checklist answers.
20486
+ */
20487
+ export const projectsSubmitAnswers = (options) => {
20488
+ return (options.client ?? _heyApiClient).post({
20489
+ security: [
20490
+ {
20491
+ name: 'Authorization',
20492
+ type: 'apiKey'
20493
+ },
20494
+ {
20495
+ scheme: 'bearer',
20496
+ type: 'http'
20497
+ }
20498
+ ],
20499
+ url: '/api/projects/{uuid}/submit_answers/',
20500
+ ...options,
20501
+ headers: {
20502
+ 'Content-Type': 'application/json',
20503
+ ...options.headers
20504
+ }
20505
+ });
20506
+ };
20351
20507
  /**
20352
20508
  * Trigger user role sync for this project
20353
20509
  */