@supaapps/platform93-sdk 0.1.0-alpha.2 → 0.1.0-rc.2

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.
@@ -15,25 +15,29 @@ export const bootstrap = (options) => (options.client ?? client).post({
15
15
  });
16
16
  export const completeSetup = (options) => (options?.client ?? client).post({
17
17
  security: [{
18
- key: 'operatorBearer',
18
+ key: 'controlBearer',
19
19
  scheme: 'bearer',
20
20
  type: 'http'
21
21
  }, {
22
22
  in: 'cookie',
23
- name: 'p93_operator_access',
23
+ name: 'p93_control_access',
24
24
  type: 'apiKey'
25
25
  }],
26
26
  url: '/v1/setup/complete',
27
- ...options
27
+ ...options,
28
+ headers: {
29
+ 'Content-Type': 'application/json',
30
+ ...options?.headers
31
+ }
28
32
  });
29
33
  export const createSetupNotificationProvider = (options) => (options.client ?? client).post({
30
34
  security: [{
31
- key: 'operatorBearer',
35
+ key: 'controlBearer',
32
36
  scheme: 'bearer',
33
37
  type: 'http'
34
38
  }, {
35
39
  in: 'cookie',
36
- name: 'p93_operator_access',
40
+ name: 'p93_control_access',
37
41
  type: 'apiKey'
38
42
  }],
39
43
  url: '/v1/setup/notification-providers',
@@ -43,7 +47,7 @@ export const createSetupNotificationProvider = (options) => (options.client ?? c
43
47
  ...options.headers
44
48
  }
45
49
  });
46
- export const startOperatorEmailLogin = (options) => (options.client ?? client).post({
50
+ export const startControlUserEmailLogin = (options) => (options.client ?? client).post({
47
51
  url: '/v1/control/auth/email/start',
48
52
  ...options,
49
53
  headers: {
@@ -51,7 +55,7 @@ export const startOperatorEmailLogin = (options) => (options.client ?? client).p
51
55
  ...options.headers
52
56
  }
53
57
  });
54
- export const verifyOperatorEmailLogin = (options) => (options.client ?? client).post({
58
+ export const verifyControlUserEmailLogin = (options) => (options.client ?? client).post({
55
59
  url: '/v1/control/auth/email/verify',
56
60
  ...options,
57
61
  headers: {
@@ -59,7 +63,7 @@ export const verifyOperatorEmailLogin = (options) => (options.client ?? client).
59
63
  ...options.headers
60
64
  }
61
65
  });
62
- export const loginOperatorWithPassword = (options) => (options.client ?? client).post({
66
+ export const loginControlUserWithPassword = (options) => (options.client ?? client).post({
63
67
  url: '/v1/control/auth/password',
64
68
  ...options,
65
69
  headers: {
@@ -67,14 +71,14 @@ export const loginOperatorWithPassword = (options) => (options.client ?? client)
67
71
  ...options.headers
68
72
  }
69
73
  });
70
- export const changeOperatorPassword = (options) => (options.client ?? client).put({
74
+ export const changeControlUserPassword = (options) => (options.client ?? client).put({
71
75
  security: [{
72
- key: 'operatorBearer',
76
+ key: 'controlBearer',
73
77
  scheme: 'bearer',
74
78
  type: 'http'
75
79
  }, {
76
80
  in: 'cookie',
77
- name: 'p93_operator_access',
81
+ name: 'p93_control_access',
78
82
  type: 'apiKey'
79
83
  }],
80
84
  url: '/v1/control/auth/password',
@@ -84,27 +88,27 @@ export const changeOperatorPassword = (options) => (options.client ?? client).pu
84
88
  ...options.headers
85
89
  }
86
90
  });
87
- export const getOperatorAccount = (options) => (options?.client ?? client).get({
91
+ export const getControlUserAccount = (options) => (options?.client ?? client).get({
88
92
  security: [{
89
- key: 'operatorBearer',
93
+ key: 'controlBearer',
90
94
  scheme: 'bearer',
91
95
  type: 'http'
92
96
  }, {
93
97
  in: 'cookie',
94
- name: 'p93_operator_access',
98
+ name: 'p93_control_access',
95
99
  type: 'apiKey'
96
100
  }],
97
101
  url: '/v1/control/auth/me',
98
102
  ...options
99
103
  });
100
- export const updateOperatorAccount = (options) => (options.client ?? client).patch({
104
+ export const updateControlUserAccount = (options) => (options.client ?? client).patch({
101
105
  security: [{
102
- key: 'operatorBearer',
106
+ key: 'controlBearer',
103
107
  scheme: 'bearer',
104
108
  type: 'http'
105
109
  }, {
106
110
  in: 'cookie',
107
- name: 'p93_operator_access',
111
+ name: 'p93_control_access',
108
112
  type: 'apiKey'
109
113
  }],
110
114
  url: '/v1/control/auth/me',
@@ -114,73 +118,109 @@ export const updateOperatorAccount = (options) => (options.client ?? client).pat
114
118
  ...options.headers
115
119
  }
116
120
  });
117
- export const logoutOperator = (options) => (options?.client ?? client).post({
121
+ export const logoutControlUser = (options) => (options?.client ?? client).post({
118
122
  security: [{
119
- key: 'operatorBearer',
123
+ key: 'controlBearer',
120
124
  scheme: 'bearer',
121
125
  type: 'http'
122
126
  }, {
123
127
  in: 'cookie',
124
- name: 'p93_operator_access',
128
+ name: 'p93_control_access',
125
129
  type: 'apiKey'
126
130
  }],
127
131
  url: '/v1/control/auth/logout',
128
132
  ...options
129
133
  });
130
- export const refreshOperatorSession = (options) => (options?.client ?? client).post({
134
+ export const refreshControlUserSession = (options) => (options?.client ?? client).post({
131
135
  security: [{
132
- key: 'operatorBearer',
136
+ key: 'controlBearer',
133
137
  scheme: 'bearer',
134
138
  type: 'http'
135
139
  }, {
136
140
  in: 'cookie',
137
- name: 'p93_operator_access',
141
+ name: 'p93_control_access',
138
142
  type: 'apiKey'
139
143
  }],
140
144
  url: '/v1/control/auth/token/refresh',
141
145
  ...options
142
146
  });
143
- export const listOperatorSessions = (options) => (options?.client ?? client).get({
147
+ export const listControlUserSessions = (options) => (options?.client ?? client).get({
144
148
  security: [{
145
- key: 'operatorBearer',
149
+ key: 'controlBearer',
146
150
  scheme: 'bearer',
147
151
  type: 'http'
148
152
  }, {
149
153
  in: 'cookie',
150
- name: 'p93_operator_access',
154
+ name: 'p93_control_access',
151
155
  type: 'apiKey'
152
156
  }],
153
157
  url: '/v1/control/auth/sessions',
154
158
  ...options
155
159
  });
156
- export const revokeOperatorSession = (options) => (options.client ?? client).delete({
160
+ export const revokeControlUserSession = (options) => (options.client ?? client).delete({
157
161
  security: [{
158
- key: 'operatorBearer',
162
+ key: 'controlBearer',
159
163
  scheme: 'bearer',
160
164
  type: 'http'
161
165
  }, {
162
166
  in: 'cookie',
163
- name: 'p93_operator_access',
167
+ name: 'p93_control_access',
164
168
  type: 'apiKey'
165
169
  }],
166
170
  url: '/v1/control/auth/sessions/{session_id}',
167
171
  ...options
168
172
  });
169
- export const logoutAllOperatorSessions = (options) => (options?.client ?? client).post({
173
+ export const logoutAllControlUserSessions = (options) => (options?.client ?? client).post({
170
174
  security: [{
171
- key: 'operatorBearer',
175
+ key: 'controlBearer',
172
176
  scheme: 'bearer',
173
177
  type: 'http'
174
178
  }, {
175
179
  in: 'cookie',
176
- name: 'p93_operator_access',
180
+ name: 'p93_control_access',
177
181
  type: 'apiKey'
178
182
  }],
179
183
  url: '/v1/control/auth/logout-all',
180
184
  ...options
181
185
  });
182
- export const acceptOrganizationInvitation = (options) => (options.client ?? client).post({
183
- url: '/v1/control/organization-invitations/accept',
186
+ export const getControlAuthMethods = (options) => (options?.client ?? client).get({ url: '/v1/control/auth/methods', ...options });
187
+ export const startControlExternalLogin = (options) => (options.client ?? client).post({ url: '/v1/control/auth/providers/{provider}/start', ...options });
188
+ export const linkControlExternalIdentity = (options) => (options.client ?? client).post({
189
+ security: [{
190
+ key: 'controlBearer',
191
+ scheme: 'bearer',
192
+ type: 'http'
193
+ }, {
194
+ in: 'cookie',
195
+ name: 'p93_control_access',
196
+ type: 'apiKey'
197
+ }],
198
+ url: '/v1/control/auth/providers/{provider}/link',
199
+ ...options
200
+ });
201
+ export const unlinkControlExternalIdentity = (options) => (options.client ?? client).delete({
202
+ security: [{
203
+ key: 'controlBearer',
204
+ scheme: 'bearer',
205
+ type: 'http'
206
+ }, {
207
+ in: 'cookie',
208
+ name: 'p93_control_access',
209
+ type: 'apiKey'
210
+ }],
211
+ url: '/v1/control/auth/identities/{identity_id}',
212
+ ...options
213
+ });
214
+ export const acceptControlUserInvitation = (options) => (options.client ?? client).post({
215
+ url: '/v1/control/invitations/accept',
216
+ ...options,
217
+ headers: {
218
+ 'Content-Type': 'application/json',
219
+ ...options.headers
220
+ }
221
+ });
222
+ export const startControlInvitationExternalLogin = (options) => (options.client ?? client).post({
223
+ url: '/v1/control/invitations/providers/{provider}/start',
184
224
  ...options,
185
225
  headers: {
186
226
  'Content-Type': 'application/json',
@@ -189,12 +229,12 @@ export const acceptOrganizationInvitation = (options) => (options.client ?? clie
189
229
  });
190
230
  export const listInstallationNotificationProviders = (options) => (options?.client ?? client).get({
191
231
  security: [{
192
- key: 'operatorBearer',
232
+ key: 'controlBearer',
193
233
  scheme: 'bearer',
194
234
  type: 'http'
195
235
  }, {
196
236
  in: 'cookie',
197
- name: 'p93_operator_access',
237
+ name: 'p93_control_access',
198
238
  type: 'apiKey'
199
239
  }],
200
240
  url: '/v1/control/installation/notification-providers',
@@ -202,12 +242,12 @@ export const listInstallationNotificationProviders = (options) => (options?.clie
202
242
  });
203
243
  export const createInstallationNotificationProvider = (options) => (options.client ?? client).post({
204
244
  security: [{
205
- key: 'operatorBearer',
245
+ key: 'controlBearer',
206
246
  scheme: 'bearer',
207
247
  type: 'http'
208
248
  }, {
209
249
  in: 'cookie',
210
- name: 'p93_operator_access',
250
+ name: 'p93_control_access',
211
251
  type: 'apiKey'
212
252
  }],
213
253
  url: '/v1/control/installation/notification-providers',
@@ -219,12 +259,12 @@ export const createInstallationNotificationProvider = (options) => (options.clie
219
259
  });
220
260
  export const disableInstallationNotificationProvider = (options) => (options.client ?? client).delete({
221
261
  security: [{
222
- key: 'operatorBearer',
262
+ key: 'controlBearer',
223
263
  scheme: 'bearer',
224
264
  type: 'http'
225
265
  }, {
226
266
  in: 'cookie',
227
- name: 'p93_operator_access',
267
+ name: 'p93_control_access',
228
268
  type: 'apiKey'
229
269
  }],
230
270
  url: '/v1/control/installation/notification-providers/{provider_id}',
@@ -232,12 +272,12 @@ export const disableInstallationNotificationProvider = (options) => (options.cli
232
272
  });
233
273
  export const getInstallationNotificationProvider = (options) => (options.client ?? client).get({
234
274
  security: [{
235
- key: 'operatorBearer',
275
+ key: 'controlBearer',
236
276
  scheme: 'bearer',
237
277
  type: 'http'
238
278
  }, {
239
279
  in: 'cookie',
240
- name: 'p93_operator_access',
280
+ name: 'p93_control_access',
241
281
  type: 'apiKey'
242
282
  }],
243
283
  url: '/v1/control/installation/notification-providers/{provider_id}',
@@ -245,12 +285,12 @@ export const getInstallationNotificationProvider = (options) => (options.client
245
285
  });
246
286
  export const updateInstallationNotificationProvider = (options) => (options.client ?? client).patch({
247
287
  security: [{
248
- key: 'operatorBearer',
288
+ key: 'controlBearer',
249
289
  scheme: 'bearer',
250
290
  type: 'http'
251
291
  }, {
252
292
  in: 'cookie',
253
- name: 'p93_operator_access',
293
+ name: 'p93_control_access',
254
294
  type: 'apiKey'
255
295
  }],
256
296
  url: '/v1/control/installation/notification-providers/{provider_id}',
@@ -262,12 +302,12 @@ export const updateInstallationNotificationProvider = (options) => (options.clie
262
302
  });
263
303
  export const verifyInstallationNotificationProvider = (options) => (options.client ?? client).post({
264
304
  security: [{
265
- key: 'operatorBearer',
305
+ key: 'controlBearer',
266
306
  scheme: 'bearer',
267
307
  type: 'http'
268
308
  }, {
269
309
  in: 'cookie',
270
- name: 'p93_operator_access',
310
+ name: 'p93_control_access',
271
311
  type: 'apiKey'
272
312
  }],
273
313
  url: '/v1/control/installation/notification-providers/{provider_id}/verify',
@@ -275,12 +315,12 @@ export const verifyInstallationNotificationProvider = (options) => (options.clie
275
315
  });
276
316
  export const testInstallationNotificationProvider = (options) => (options.client ?? client).post({
277
317
  security: [{
278
- key: 'operatorBearer',
318
+ key: 'controlBearer',
279
319
  scheme: 'bearer',
280
320
  type: 'http'
281
321
  }, {
282
322
  in: 'cookie',
283
- name: 'p93_operator_access',
323
+ name: 'p93_control_access',
284
324
  type: 'apiKey'
285
325
  }],
286
326
  url: '/v1/control/installation/notification-providers/{provider_id}/test',
@@ -292,12 +332,12 @@ export const testInstallationNotificationProvider = (options) => (options.client
292
332
  });
293
333
  export const listInstallationAuthProviders = (options) => (options?.client ?? client).get({
294
334
  security: [{
295
- key: 'operatorBearer',
335
+ key: 'controlBearer',
296
336
  scheme: 'bearer',
297
337
  type: 'http'
298
338
  }, {
299
339
  in: 'cookie',
300
- name: 'p93_operator_access',
340
+ name: 'p93_control_access',
301
341
  type: 'apiKey'
302
342
  }],
303
343
  url: '/v1/control/installation/auth/providers',
@@ -305,12 +345,12 @@ export const listInstallationAuthProviders = (options) => (options?.client ?? cl
305
345
  });
306
346
  export const disableInstallationAuthProvider = (options) => (options.client ?? client).delete({
307
347
  security: [{
308
- key: 'operatorBearer',
348
+ key: 'controlBearer',
309
349
  scheme: 'bearer',
310
350
  type: 'http'
311
351
  }, {
312
352
  in: 'cookie',
313
- name: 'p93_operator_access',
353
+ name: 'p93_control_access',
314
354
  type: 'apiKey'
315
355
  }],
316
356
  url: '/v1/control/installation/auth/providers/{provider}',
@@ -318,12 +358,12 @@ export const disableInstallationAuthProvider = (options) => (options.client ?? c
318
358
  });
319
359
  export const updateInstallationAuthProvider = (options) => (options.client ?? client).patch({
320
360
  security: [{
321
- key: 'operatorBearer',
361
+ key: 'controlBearer',
322
362
  scheme: 'bearer',
323
363
  type: 'http'
324
364
  }, {
325
365
  in: 'cookie',
326
- name: 'p93_operator_access',
366
+ name: 'p93_control_access',
327
367
  type: 'apiKey'
328
368
  }],
329
369
  url: '/v1/control/installation/auth/providers/{provider}',
@@ -335,12 +375,12 @@ export const updateInstallationAuthProvider = (options) => (options.client ?? cl
335
375
  });
336
376
  export const configureInstallationAuthProvider = (options) => (options.client ?? client).put({
337
377
  security: [{
338
- key: 'operatorBearer',
378
+ key: 'controlBearer',
339
379
  scheme: 'bearer',
340
380
  type: 'http'
341
381
  }, {
342
382
  in: 'cookie',
343
- name: 'p93_operator_access',
383
+ name: 'p93_control_access',
344
384
  type: 'apiKey'
345
385
  }],
346
386
  url: '/v1/control/installation/auth/providers/{provider}',
@@ -352,12 +392,12 @@ export const configureInstallationAuthProvider = (options) => (options.client ??
352
392
  });
353
393
  export const listInstallationBillingProviders = (options) => (options?.client ?? client).get({
354
394
  security: [{
355
- key: 'operatorBearer',
395
+ key: 'controlBearer',
356
396
  scheme: 'bearer',
357
397
  type: 'http'
358
398
  }, {
359
399
  in: 'cookie',
360
- name: 'p93_operator_access',
400
+ name: 'p93_control_access',
361
401
  type: 'apiKey'
362
402
  }],
363
403
  url: '/v1/control/installation/billing/providers',
@@ -365,12 +405,12 @@ export const listInstallationBillingProviders = (options) => (options?.client ??
365
405
  });
366
406
  export const createInstallationBillingProvider = (options) => (options.client ?? client).post({
367
407
  security: [{
368
- key: 'operatorBearer',
408
+ key: 'controlBearer',
369
409
  scheme: 'bearer',
370
410
  type: 'http'
371
411
  }, {
372
412
  in: 'cookie',
373
- name: 'p93_operator_access',
413
+ name: 'p93_control_access',
374
414
  type: 'apiKey'
375
415
  }],
376
416
  url: '/v1/control/installation/billing/providers',
@@ -382,12 +422,12 @@ export const createInstallationBillingProvider = (options) => (options.client ??
382
422
  });
383
423
  export const disableInstallationBillingProvider = (options) => (options.client ?? client).delete({
384
424
  security: [{
385
- key: 'operatorBearer',
425
+ key: 'controlBearer',
386
426
  scheme: 'bearer',
387
427
  type: 'http'
388
428
  }, {
389
429
  in: 'cookie',
390
- name: 'p93_operator_access',
430
+ name: 'p93_control_access',
391
431
  type: 'apiKey'
392
432
  }],
393
433
  url: '/v1/control/installation/billing/providers/{provider_id}',
@@ -395,12 +435,12 @@ export const disableInstallationBillingProvider = (options) => (options.client ?
395
435
  });
396
436
  export const getInstallationBillingProvider = (options) => (options.client ?? client).get({
397
437
  security: [{
398
- key: 'operatorBearer',
438
+ key: 'controlBearer',
399
439
  scheme: 'bearer',
400
440
  type: 'http'
401
441
  }, {
402
442
  in: 'cookie',
403
- name: 'p93_operator_access',
443
+ name: 'p93_control_access',
404
444
  type: 'apiKey'
405
445
  }],
406
446
  url: '/v1/control/installation/billing/providers/{provider_id}',
@@ -408,12 +448,12 @@ export const getInstallationBillingProvider = (options) => (options.client ?? cl
408
448
  });
409
449
  export const updateInstallationBillingProvider = (options) => (options.client ?? client).patch({
410
450
  security: [{
411
- key: 'operatorBearer',
451
+ key: 'controlBearer',
412
452
  scheme: 'bearer',
413
453
  type: 'http'
414
454
  }, {
415
455
  in: 'cookie',
416
- name: 'p93_operator_access',
456
+ name: 'p93_control_access',
417
457
  type: 'apiKey'
418
458
  }],
419
459
  url: '/v1/control/installation/billing/providers/{provider_id}',
@@ -425,71 +465,144 @@ export const updateInstallationBillingProvider = (options) => (options.client ??
425
465
  });
426
466
  export const verifyInstallationBillingProvider = (options) => (options.client ?? client).post({
427
467
  security: [{
428
- key: 'operatorBearer',
468
+ key: 'controlBearer',
429
469
  scheme: 'bearer',
430
470
  type: 'http'
431
471
  }, {
432
472
  in: 'cookie',
433
- name: 'p93_operator_access',
473
+ name: 'p93_control_access',
434
474
  type: 'apiKey'
435
475
  }],
436
476
  url: '/v1/control/installation/billing/providers/{provider_id}/verify',
437
477
  ...options
438
478
  });
439
- export const listInstallationOperators = (options) => (options?.client ?? client).get({
479
+ export const listInstallationControlUsers = (options) => (options?.client ?? client).get({
440
480
  security: [{
441
- key: 'operatorBearer',
481
+ key: 'controlBearer',
442
482
  scheme: 'bearer',
443
483
  type: 'http'
444
484
  }, {
445
485
  in: 'cookie',
446
- name: 'p93_operator_access',
486
+ name: 'p93_control_access',
447
487
  type: 'apiKey'
448
488
  }],
449
- url: '/v1/control/installation/operators',
489
+ url: '/v1/control/installation/users',
450
490
  ...options
451
491
  });
452
- export const createInstallationOperator = (options) => (options.client ?? client).post({
492
+ export const deleteInstallationControlUser = (options) => (options.client ?? client).delete({
453
493
  security: [{
454
- key: 'operatorBearer',
494
+ key: 'controlBearer',
455
495
  scheme: 'bearer',
456
496
  type: 'http'
457
497
  }, {
458
498
  in: 'cookie',
459
- name: 'p93_operator_access',
499
+ name: 'p93_control_access',
460
500
  type: 'apiKey'
461
501
  }],
462
- url: '/v1/control/installation/operators',
502
+ url: '/v1/control/installation/users/{control_user_id}',
503
+ ...options
504
+ });
505
+ export const updateInstallationControlUser = (options) => (options.client ?? client).patch({
506
+ security: [{
507
+ key: 'controlBearer',
508
+ scheme: 'bearer',
509
+ type: 'http'
510
+ }, {
511
+ in: 'cookie',
512
+ name: 'p93_control_access',
513
+ type: 'apiKey'
514
+ }],
515
+ url: '/v1/control/installation/users/{control_user_id}',
463
516
  ...options,
464
517
  headers: {
465
518
  'Content-Type': 'application/json',
466
519
  ...options.headers
467
520
  }
468
521
  });
469
- export const deleteInstallationOperator = (options) => (options.client ?? client).delete({
522
+ export const listInstallationControlUserInvitations = (options) => (options?.client ?? client).get({
470
523
  security: [{
471
- key: 'operatorBearer',
524
+ key: 'controlBearer',
472
525
  scheme: 'bearer',
473
526
  type: 'http'
474
527
  }, {
475
528
  in: 'cookie',
476
- name: 'p93_operator_access',
529
+ name: 'p93_control_access',
477
530
  type: 'apiKey'
478
531
  }],
479
- url: '/v1/control/installation/operators/{operator_id}',
532
+ url: '/v1/control/installation/invitations',
480
533
  ...options
481
534
  });
482
- export const updateInstallationOperator = (options) => (options.client ?? client).patch({
535
+ export const createInstallationControlUserInvitation = (options) => (options.client ?? client).post({
536
+ security: [{
537
+ key: 'controlBearer',
538
+ scheme: 'bearer',
539
+ type: 'http'
540
+ }, {
541
+ in: 'cookie',
542
+ name: 'p93_control_access',
543
+ type: 'apiKey'
544
+ }],
545
+ url: '/v1/control/installation/invitations',
546
+ ...options,
547
+ headers: {
548
+ 'Content-Type': 'application/json',
549
+ ...options.headers
550
+ }
551
+ });
552
+ export const resendInstallationControlUserInvitation = (options) => (options.client ?? client).post({
483
553
  security: [{
484
- key: 'operatorBearer',
554
+ key: 'controlBearer',
485
555
  scheme: 'bearer',
486
556
  type: 'http'
487
557
  }, {
488
558
  in: 'cookie',
489
- name: 'p93_operator_access',
559
+ name: 'p93_control_access',
490
560
  type: 'apiKey'
491
561
  }],
492
- url: '/v1/control/installation/operators/{operator_id}',
562
+ url: '/v1/control/installation/invitations/{invitation_id}/resend',
563
+ ...options,
564
+ headers: {
565
+ 'Content-Type': 'application/json',
566
+ ...options.headers
567
+ }
568
+ });
569
+ export const revokeInstallationControlUserInvitation = (options) => (options.client ?? client).delete({
570
+ security: [{
571
+ key: 'controlBearer',
572
+ scheme: 'bearer',
573
+ type: 'http'
574
+ }, {
575
+ in: 'cookie',
576
+ name: 'p93_control_access',
577
+ type: 'apiKey'
578
+ }],
579
+ url: '/v1/control/installation/invitations/{invitation_id}',
580
+ ...options
581
+ });
582
+ export const getControlAuthPolicy = (options) => (options?.client ?? client).get({
583
+ security: [{
584
+ key: 'controlBearer',
585
+ scheme: 'bearer',
586
+ type: 'http'
587
+ }, {
588
+ in: 'cookie',
589
+ name: 'p93_control_access',
590
+ type: 'apiKey'
591
+ }],
592
+ url: '/v1/control/installation/auth-policy',
593
+ ...options
594
+ });
595
+ export const updateControlAuthPolicy = (options) => (options.client ?? client).patch({
596
+ security: [{
597
+ key: 'controlBearer',
598
+ scheme: 'bearer',
599
+ type: 'http'
600
+ }, {
601
+ in: 'cookie',
602
+ name: 'p93_control_access',
603
+ type: 'apiKey'
604
+ }],
605
+ url: '/v1/control/installation/auth-policy',
493
606
  ...options,
494
607
  headers: {
495
608
  'Content-Type': 'application/json',
@@ -498,12 +611,12 @@ export const updateInstallationOperator = (options) => (options.client ?? client
498
611
  });
499
612
  export const listSigningKeys = (options) => (options?.client ?? client).get({
500
613
  security: [{
501
- key: 'operatorBearer',
614
+ key: 'controlBearer',
502
615
  scheme: 'bearer',
503
616
  type: 'http'
504
617
  }, {
505
618
  in: 'cookie',
506
- name: 'p93_operator_access',
619
+ name: 'p93_control_access',
507
620
  type: 'apiKey'
508
621
  }],
509
622
  url: '/v1/control/installation/signing-keys',
@@ -511,12 +624,12 @@ export const listSigningKeys = (options) => (options?.client ?? client).get({
511
624
  });
512
625
  export const rotateSigningKey = (options) => (options?.client ?? client).post({
513
626
  security: [{
514
- key: 'operatorBearer',
627
+ key: 'controlBearer',
515
628
  scheme: 'bearer',
516
629
  type: 'http'
517
630
  }, {
518
631
  in: 'cookie',
519
- name: 'p93_operator_access',
632
+ name: 'p93_control_access',
520
633
  type: 'apiKey'
521
634
  }],
522
635
  url: '/v1/control/installation/signing-keys/rotate',
@@ -524,12 +637,12 @@ export const rotateSigningKey = (options) => (options?.client ?? client).post({
524
637
  });
525
638
  export const getManagementApiStatus = (options) => (options?.client ?? client).get({
526
639
  security: [{
527
- key: 'operatorBearer',
640
+ key: 'controlBearer',
528
641
  scheme: 'bearer',
529
642
  type: 'http'
530
643
  }, {
531
644
  in: 'cookie',
532
- name: 'p93_operator_access',
645
+ name: 'p93_control_access',
533
646
  type: 'apiKey'
534
647
  }],
535
648
  url: '/v1/control/installation/management-api',
@@ -537,12 +650,12 @@ export const getManagementApiStatus = (options) => (options?.client ?? client).g
537
650
  });
538
651
  export const updateManagementApiStatus = (options) => (options.client ?? client).patch({
539
652
  security: [{
540
- key: 'operatorBearer',
653
+ key: 'controlBearer',
541
654
  scheme: 'bearer',
542
655
  type: 'http'
543
656
  }, {
544
657
  in: 'cookie',
545
- name: 'p93_operator_access',
658
+ name: 'p93_control_access',
546
659
  type: 'apiKey'
547
660
  }],
548
661
  url: '/v1/control/installation/management-api',
@@ -554,12 +667,12 @@ export const updateManagementApiStatus = (options) => (options.client ?? client)
554
667
  });
555
668
  export const listManagementClients = (options) => (options?.client ?? client).get({
556
669
  security: [{
557
- key: 'operatorBearer',
670
+ key: 'controlBearer',
558
671
  scheme: 'bearer',
559
672
  type: 'http'
560
673
  }, {
561
674
  in: 'cookie',
562
- name: 'p93_operator_access',
675
+ name: 'p93_control_access',
563
676
  type: 'apiKey'
564
677
  }],
565
678
  url: '/v1/control/installation/management-clients',
@@ -567,12 +680,12 @@ export const listManagementClients = (options) => (options?.client ?? client).ge
567
680
  });
568
681
  export const createManagementClient = (options) => (options.client ?? client).post({
569
682
  security: [{
570
- key: 'operatorBearer',
683
+ key: 'controlBearer',
571
684
  scheme: 'bearer',
572
685
  type: 'http'
573
686
  }, {
574
687
  in: 'cookie',
575
- name: 'p93_operator_access',
688
+ name: 'p93_control_access',
576
689
  type: 'apiKey'
577
690
  }],
578
691
  url: '/v1/control/installation/management-clients',
@@ -584,12 +697,12 @@ export const createManagementClient = (options) => (options.client ?? client).po
584
697
  });
585
698
  export const rotateManagementClientSecret = (options) => (options.client ?? client).post({
586
699
  security: [{
587
- key: 'operatorBearer',
700
+ key: 'controlBearer',
588
701
  scheme: 'bearer',
589
702
  type: 'http'
590
703
  }, {
591
704
  in: 'cookie',
592
- name: 'p93_operator_access',
705
+ name: 'p93_control_access',
593
706
  type: 'apiKey'
594
707
  }],
595
708
  url: '/v1/control/installation/management-clients/{management_client_id}/rotate-secret',
@@ -597,12 +710,12 @@ export const rotateManagementClientSecret = (options) => (options.client ?? clie
597
710
  });
598
711
  export const disableManagementClient = (options) => (options.client ?? client).delete({
599
712
  security: [{
600
- key: 'operatorBearer',
713
+ key: 'controlBearer',
601
714
  scheme: 'bearer',
602
715
  type: 'http'
603
716
  }, {
604
717
  in: 'cookie',
605
- name: 'p93_operator_access',
718
+ name: 'p93_control_access',
606
719
  type: 'apiKey'
607
720
  }],
608
721
  url: '/v1/control/installation/management-clients/{management_client_id}',
@@ -610,12 +723,12 @@ export const disableManagementClient = (options) => (options.client ?? client).d
610
723
  });
611
724
  export const updateOrganizationPolicy = (options) => (options.client ?? client).put({
612
725
  security: [{
613
- key: 'operatorBearer',
726
+ key: 'controlBearer',
614
727
  scheme: 'bearer',
615
728
  type: 'http'
616
729
  }, {
617
730
  in: 'cookie',
618
- name: 'p93_operator_access',
731
+ name: 'p93_control_access',
619
732
  type: 'apiKey'
620
733
  }],
621
734
  url: '/v1/control/installation/organizations/{organization_id}/policy',
@@ -627,12 +740,12 @@ export const updateOrganizationPolicy = (options) => (options.client ?? client).
627
740
  });
628
741
  export const listOrganizations = (options) => (options?.client ?? client).get({
629
742
  security: [{
630
- key: 'operatorBearer',
743
+ key: 'controlBearer',
631
744
  scheme: 'bearer',
632
745
  type: 'http'
633
746
  }, {
634
747
  in: 'cookie',
635
- name: 'p93_operator_access',
748
+ name: 'p93_control_access',
636
749
  type: 'apiKey'
637
750
  }],
638
751
  url: '/v1/control/organizations',
@@ -640,12 +753,12 @@ export const listOrganizations = (options) => (options?.client ?? client).get({
640
753
  });
641
754
  export const createOrganization = (options) => (options.client ?? client).post({
642
755
  security: [{
643
- key: 'operatorBearer',
756
+ key: 'controlBearer',
644
757
  scheme: 'bearer',
645
758
  type: 'http'
646
759
  }, {
647
760
  in: 'cookie',
648
- name: 'p93_operator_access',
761
+ name: 'p93_control_access',
649
762
  type: 'apiKey'
650
763
  }],
651
764
  url: '/v1/control/organizations',
@@ -657,12 +770,12 @@ export const createOrganization = (options) => (options.client ?? client).post({
657
770
  });
658
771
  export const listApplications = (options) => (options.client ?? client).get({
659
772
  security: [{
660
- key: 'operatorBearer',
773
+ key: 'controlBearer',
661
774
  scheme: 'bearer',
662
775
  type: 'http'
663
776
  }, {
664
777
  in: 'cookie',
665
- name: 'p93_operator_access',
778
+ name: 'p93_control_access',
666
779
  type: 'apiKey'
667
780
  }],
668
781
  url: '/v1/control/organizations/{organization_id}/applications',
@@ -670,12 +783,12 @@ export const listApplications = (options) => (options.client ?? client).get({
670
783
  });
671
784
  export const createApplication = (options) => (options.client ?? client).post({
672
785
  security: [{
673
- key: 'operatorBearer',
786
+ key: 'controlBearer',
674
787
  scheme: 'bearer',
675
788
  type: 'http'
676
789
  }, {
677
790
  in: 'cookie',
678
- name: 'p93_operator_access',
791
+ name: 'p93_control_access',
679
792
  type: 'apiKey'
680
793
  }],
681
794
  url: '/v1/control/organizations/{organization_id}/applications',
@@ -687,12 +800,12 @@ export const createApplication = (options) => (options.client ?? client).post({
687
800
  });
688
801
  export const retireApplication = (options) => (options.client ?? client).delete({
689
802
  security: [{
690
- key: 'operatorBearer',
803
+ key: 'controlBearer',
691
804
  scheme: 'bearer',
692
805
  type: 'http'
693
806
  }, {
694
807
  in: 'cookie',
695
- name: 'p93_operator_access',
808
+ name: 'p93_control_access',
696
809
  type: 'apiKey'
697
810
  }],
698
811
  url: '/v1/control/organizations/{organization_id}/applications/{application_resource_id}',
@@ -700,12 +813,12 @@ export const retireApplication = (options) => (options.client ?? client).delete(
700
813
  });
701
814
  export const updateApplication = (options) => (options.client ?? client).patch({
702
815
  security: [{
703
- key: 'operatorBearer',
816
+ key: 'controlBearer',
704
817
  scheme: 'bearer',
705
818
  type: 'http'
706
819
  }, {
707
820
  in: 'cookie',
708
- name: 'p93_operator_access',
821
+ name: 'p93_control_access',
709
822
  type: 'apiKey'
710
823
  }],
711
824
  url: '/v1/control/organizations/{organization_id}/applications/{application_resource_id}',
@@ -717,12 +830,12 @@ export const updateApplication = (options) => (options.client ?? client).patch({
717
830
  });
718
831
  export const restoreApplication = (options) => (options.client ?? client).post({
719
832
  security: [{
720
- key: 'operatorBearer',
833
+ key: 'controlBearer',
721
834
  scheme: 'bearer',
722
835
  type: 'http'
723
836
  }, {
724
837
  in: 'cookie',
725
- name: 'p93_operator_access',
838
+ name: 'p93_control_access',
726
839
  type: 'apiKey'
727
840
  }],
728
841
  url: '/v1/control/organizations/{organization_id}/applications/{application_resource_id}/restore',
@@ -730,12 +843,12 @@ export const restoreApplication = (options) => (options.client ?? client).post({
730
843
  });
731
844
  export const retireOrganization = (options) => (options.client ?? client).delete({
732
845
  security: [{
733
- key: 'operatorBearer',
846
+ key: 'controlBearer',
734
847
  scheme: 'bearer',
735
848
  type: 'http'
736
849
  }, {
737
850
  in: 'cookie',
738
- name: 'p93_operator_access',
851
+ name: 'p93_control_access',
739
852
  type: 'apiKey'
740
853
  }],
741
854
  url: '/v1/control/organizations/{organization_id}',
@@ -743,12 +856,12 @@ export const retireOrganization = (options) => (options.client ?? client).delete
743
856
  });
744
857
  export const getOrganization = (options) => (options.client ?? client).get({
745
858
  security: [{
746
- key: 'operatorBearer',
859
+ key: 'controlBearer',
747
860
  scheme: 'bearer',
748
861
  type: 'http'
749
862
  }, {
750
863
  in: 'cookie',
751
- name: 'p93_operator_access',
864
+ name: 'p93_control_access',
752
865
  type: 'apiKey'
753
866
  }],
754
867
  url: '/v1/control/organizations/{organization_id}',
@@ -756,12 +869,12 @@ export const getOrganization = (options) => (options.client ?? client).get({
756
869
  });
757
870
  export const updateOrganization = (options) => (options.client ?? client).patch({
758
871
  security: [{
759
- key: 'operatorBearer',
872
+ key: 'controlBearer',
760
873
  scheme: 'bearer',
761
874
  type: 'http'
762
875
  }, {
763
876
  in: 'cookie',
764
- name: 'p93_operator_access',
877
+ name: 'p93_control_access',
765
878
  type: 'apiKey'
766
879
  }],
767
880
  url: '/v1/control/organizations/{organization_id}',
@@ -773,12 +886,12 @@ export const updateOrganization = (options) => (options.client ?? client).patch(
773
886
  });
774
887
  export const getOrganizationPolicy = (options) => (options.client ?? client).get({
775
888
  security: [{
776
- key: 'operatorBearer',
889
+ key: 'controlBearer',
777
890
  scheme: 'bearer',
778
891
  type: 'http'
779
892
  }, {
780
893
  in: 'cookie',
781
- name: 'p93_operator_access',
894
+ name: 'p93_control_access',
782
895
  type: 'apiKey'
783
896
  }],
784
897
  url: '/v1/control/organizations/{organization_id}/policy',
@@ -786,12 +899,12 @@ export const getOrganizationPolicy = (options) => (options.client ?? client).get
786
899
  });
787
900
  export const restoreOrganization = (options) => (options.client ?? client).post({
788
901
  security: [{
789
- key: 'operatorBearer',
902
+ key: 'controlBearer',
790
903
  scheme: 'bearer',
791
904
  type: 'http'
792
905
  }, {
793
906
  in: 'cookie',
794
- name: 'p93_operator_access',
907
+ name: 'p93_control_access',
795
908
  type: 'apiKey'
796
909
  }],
797
910
  url: '/v1/control/organizations/{organization_id}/restore',
@@ -799,12 +912,12 @@ export const restoreOrganization = (options) => (options.client ?? client).post(
799
912
  });
800
913
  export const listOrganizationMembers = (options) => (options.client ?? client).get({
801
914
  security: [{
802
- key: 'operatorBearer',
915
+ key: 'controlBearer',
803
916
  scheme: 'bearer',
804
917
  type: 'http'
805
918
  }, {
806
919
  in: 'cookie',
807
- name: 'p93_operator_access',
920
+ name: 'p93_control_access',
808
921
  type: 'apiKey'
809
922
  }],
810
923
  url: '/v1/control/organizations/{organization_id}/members',
@@ -812,12 +925,12 @@ export const listOrganizationMembers = (options) => (options.client ?? client).g
812
925
  });
813
926
  export const deleteOrganizationMember = (options) => (options.client ?? client).delete({
814
927
  security: [{
815
- key: 'operatorBearer',
928
+ key: 'controlBearer',
816
929
  scheme: 'bearer',
817
930
  type: 'http'
818
931
  }, {
819
932
  in: 'cookie',
820
- name: 'p93_operator_access',
933
+ name: 'p93_control_access',
821
934
  type: 'apiKey'
822
935
  }],
823
936
  url: '/v1/control/organizations/{organization_id}/members/{member_id}',
@@ -825,12 +938,12 @@ export const deleteOrganizationMember = (options) => (options.client ?? client).
825
938
  });
826
939
  export const updateOrganizationMember = (options) => (options.client ?? client).patch({
827
940
  security: [{
828
- key: 'operatorBearer',
941
+ key: 'controlBearer',
829
942
  scheme: 'bearer',
830
943
  type: 'http'
831
944
  }, {
832
945
  in: 'cookie',
833
- name: 'p93_operator_access',
946
+ name: 'p93_control_access',
834
947
  type: 'apiKey'
835
948
  }],
836
949
  url: '/v1/control/organizations/{organization_id}/members/{member_id}',
@@ -842,12 +955,12 @@ export const updateOrganizationMember = (options) => (options.client ?? client).
842
955
  });
843
956
  export const listOrganizationInvitations = (options) => (options.client ?? client).get({
844
957
  security: [{
845
- key: 'operatorBearer',
958
+ key: 'controlBearer',
846
959
  scheme: 'bearer',
847
960
  type: 'http'
848
961
  }, {
849
962
  in: 'cookie',
850
- name: 'p93_operator_access',
963
+ name: 'p93_control_access',
851
964
  type: 'apiKey'
852
965
  }],
853
966
  url: '/v1/control/organizations/{organization_id}/invitations',
@@ -855,12 +968,12 @@ export const listOrganizationInvitations = (options) => (options.client ?? clien
855
968
  });
856
969
  export const createOrganizationInvitation = (options) => (options.client ?? client).post({
857
970
  security: [{
858
- key: 'operatorBearer',
971
+ key: 'controlBearer',
859
972
  scheme: 'bearer',
860
973
  type: 'http'
861
974
  }, {
862
975
  in: 'cookie',
863
- name: 'p93_operator_access',
976
+ name: 'p93_control_access',
864
977
  type: 'apiKey'
865
978
  }],
866
979
  url: '/v1/control/organizations/{organization_id}/invitations',
@@ -872,12 +985,12 @@ export const createOrganizationInvitation = (options) => (options.client ?? clie
872
985
  });
873
986
  export const resendOrganizationInvitation = (options) => (options.client ?? client).post({
874
987
  security: [{
875
- key: 'operatorBearer',
988
+ key: 'controlBearer',
876
989
  scheme: 'bearer',
877
990
  type: 'http'
878
991
  }, {
879
992
  in: 'cookie',
880
- name: 'p93_operator_access',
993
+ name: 'p93_control_access',
881
994
  type: 'apiKey'
882
995
  }],
883
996
  url: '/v1/control/organizations/{organization_id}/invitations/{invitation_id}/resend',
@@ -885,12 +998,12 @@ export const resendOrganizationInvitation = (options) => (options.client ?? clie
885
998
  });
886
999
  export const revokeOrganizationInvitation = (options) => (options.client ?? client).delete({
887
1000
  security: [{
888
- key: 'operatorBearer',
1001
+ key: 'controlBearer',
889
1002
  scheme: 'bearer',
890
1003
  type: 'http'
891
1004
  }, {
892
1005
  in: 'cookie',
893
- name: 'p93_operator_access',
1006
+ name: 'p93_control_access',
894
1007
  type: 'apiKey'
895
1008
  }],
896
1009
  url: '/v1/control/organizations/{organization_id}/invitations/{invitation_id}',
@@ -898,12 +1011,12 @@ export const revokeOrganizationInvitation = (options) => (options.client ?? clie
898
1011
  });
899
1012
  export const listOrganizationAuditLogs = (options) => (options.client ?? client).get({
900
1013
  security: [{
901
- key: 'operatorBearer',
1014
+ key: 'controlBearer',
902
1015
  scheme: 'bearer',
903
1016
  type: 'http'
904
1017
  }, {
905
1018
  in: 'cookie',
906
- name: 'p93_operator_access',
1019
+ name: 'p93_control_access',
907
1020
  type: 'apiKey'
908
1021
  }],
909
1022
  url: '/v1/control/organizations/{organization_id}/audit-logs',
@@ -911,12 +1024,12 @@ export const listOrganizationAuditLogs = (options) => (options.client ?? client)
911
1024
  });
912
1025
  export const listOrganizationAuthProviders = (options) => (options.client ?? client).get({
913
1026
  security: [{
914
- key: 'operatorBearer',
1027
+ key: 'controlBearer',
915
1028
  scheme: 'bearer',
916
1029
  type: 'http'
917
1030
  }, {
918
1031
  in: 'cookie',
919
- name: 'p93_operator_access',
1032
+ name: 'p93_control_access',
920
1033
  type: 'apiKey'
921
1034
  }],
922
1035
  url: '/v1/control/organizations/{organization_id}/auth/providers',
@@ -924,12 +1037,12 @@ export const listOrganizationAuthProviders = (options) => (options.client ?? cli
924
1037
  });
925
1038
  export const disableOrganizationAuthProvider = (options) => (options.client ?? client).delete({
926
1039
  security: [{
927
- key: 'operatorBearer',
1040
+ key: 'controlBearer',
928
1041
  scheme: 'bearer',
929
1042
  type: 'http'
930
1043
  }, {
931
1044
  in: 'cookie',
932
- name: 'p93_operator_access',
1045
+ name: 'p93_control_access',
933
1046
  type: 'apiKey'
934
1047
  }],
935
1048
  url: '/v1/control/organizations/{organization_id}/auth/providers/{provider}',
@@ -937,12 +1050,12 @@ export const disableOrganizationAuthProvider = (options) => (options.client ?? c
937
1050
  });
938
1051
  export const updateOrganizationAuthProvider = (options) => (options.client ?? client).patch({
939
1052
  security: [{
940
- key: 'operatorBearer',
1053
+ key: 'controlBearer',
941
1054
  scheme: 'bearer',
942
1055
  type: 'http'
943
1056
  }, {
944
1057
  in: 'cookie',
945
- name: 'p93_operator_access',
1058
+ name: 'p93_control_access',
946
1059
  type: 'apiKey'
947
1060
  }],
948
1061
  url: '/v1/control/organizations/{organization_id}/auth/providers/{provider}',
@@ -954,12 +1067,12 @@ export const updateOrganizationAuthProvider = (options) => (options.client ?? cl
954
1067
  });
955
1068
  export const configureOrganizationAuthProvider = (options) => (options.client ?? client).put({
956
1069
  security: [{
957
- key: 'operatorBearer',
1070
+ key: 'controlBearer',
958
1071
  scheme: 'bearer',
959
1072
  type: 'http'
960
1073
  }, {
961
1074
  in: 'cookie',
962
- name: 'p93_operator_access',
1075
+ name: 'p93_control_access',
963
1076
  type: 'apiKey'
964
1077
  }],
965
1078
  url: '/v1/control/organizations/{organization_id}/auth/providers/{provider}',
@@ -971,12 +1084,12 @@ export const configureOrganizationAuthProvider = (options) => (options.client ??
971
1084
  });
972
1085
  export const listOrganizationNotificationProviders = (options) => (options.client ?? client).get({
973
1086
  security: [{
974
- key: 'operatorBearer',
1087
+ key: 'controlBearer',
975
1088
  scheme: 'bearer',
976
1089
  type: 'http'
977
1090
  }, {
978
1091
  in: 'cookie',
979
- name: 'p93_operator_access',
1092
+ name: 'p93_control_access',
980
1093
  type: 'apiKey'
981
1094
  }],
982
1095
  url: '/v1/control/organizations/{organization_id}/notification-providers',
@@ -984,12 +1097,12 @@ export const listOrganizationNotificationProviders = (options) => (options.clien
984
1097
  });
985
1098
  export const createOrganizationNotificationProvider = (options) => (options.client ?? client).post({
986
1099
  security: [{
987
- key: 'operatorBearer',
1100
+ key: 'controlBearer',
988
1101
  scheme: 'bearer',
989
1102
  type: 'http'
990
1103
  }, {
991
1104
  in: 'cookie',
992
- name: 'p93_operator_access',
1105
+ name: 'p93_control_access',
993
1106
  type: 'apiKey'
994
1107
  }],
995
1108
  url: '/v1/control/organizations/{organization_id}/notification-providers',
@@ -1001,12 +1114,12 @@ export const createOrganizationNotificationProvider = (options) => (options.clie
1001
1114
  });
1002
1115
  export const disableOrganizationNotificationProvider = (options) => (options.client ?? client).delete({
1003
1116
  security: [{
1004
- key: 'operatorBearer',
1117
+ key: 'controlBearer',
1005
1118
  scheme: 'bearer',
1006
1119
  type: 'http'
1007
1120
  }, {
1008
1121
  in: 'cookie',
1009
- name: 'p93_operator_access',
1122
+ name: 'p93_control_access',
1010
1123
  type: 'apiKey'
1011
1124
  }],
1012
1125
  url: '/v1/control/organizations/{organization_id}/notification-providers/{provider_id}',
@@ -1014,12 +1127,12 @@ export const disableOrganizationNotificationProvider = (options) => (options.cli
1014
1127
  });
1015
1128
  export const getOrganizationNotificationProvider = (options) => (options.client ?? client).get({
1016
1129
  security: [{
1017
- key: 'operatorBearer',
1130
+ key: 'controlBearer',
1018
1131
  scheme: 'bearer',
1019
1132
  type: 'http'
1020
1133
  }, {
1021
1134
  in: 'cookie',
1022
- name: 'p93_operator_access',
1135
+ name: 'p93_control_access',
1023
1136
  type: 'apiKey'
1024
1137
  }],
1025
1138
  url: '/v1/control/organizations/{organization_id}/notification-providers/{provider_id}',
@@ -1027,12 +1140,12 @@ export const getOrganizationNotificationProvider = (options) => (options.client
1027
1140
  });
1028
1141
  export const updateOrganizationNotificationProvider = (options) => (options.client ?? client).patch({
1029
1142
  security: [{
1030
- key: 'operatorBearer',
1143
+ key: 'controlBearer',
1031
1144
  scheme: 'bearer',
1032
1145
  type: 'http'
1033
1146
  }, {
1034
1147
  in: 'cookie',
1035
- name: 'p93_operator_access',
1148
+ name: 'p93_control_access',
1036
1149
  type: 'apiKey'
1037
1150
  }],
1038
1151
  url: '/v1/control/organizations/{organization_id}/notification-providers/{provider_id}',
@@ -1044,12 +1157,12 @@ export const updateOrganizationNotificationProvider = (options) => (options.clie
1044
1157
  });
1045
1158
  export const verifyOrganizationNotificationProvider = (options) => (options.client ?? client).post({
1046
1159
  security: [{
1047
- key: 'operatorBearer',
1160
+ key: 'controlBearer',
1048
1161
  scheme: 'bearer',
1049
1162
  type: 'http'
1050
1163
  }, {
1051
1164
  in: 'cookie',
1052
- name: 'p93_operator_access',
1165
+ name: 'p93_control_access',
1053
1166
  type: 'apiKey'
1054
1167
  }],
1055
1168
  url: '/v1/control/organizations/{organization_id}/notification-providers/{provider_id}/verify',
@@ -1057,12 +1170,12 @@ export const verifyOrganizationNotificationProvider = (options) => (options.clie
1057
1170
  });
1058
1171
  export const testOrganizationNotificationProvider = (options) => (options.client ?? client).post({
1059
1172
  security: [{
1060
- key: 'operatorBearer',
1173
+ key: 'controlBearer',
1061
1174
  scheme: 'bearer',
1062
1175
  type: 'http'
1063
1176
  }, {
1064
1177
  in: 'cookie',
1065
- name: 'p93_operator_access',
1178
+ name: 'p93_control_access',
1066
1179
  type: 'apiKey'
1067
1180
  }],
1068
1181
  url: '/v1/control/organizations/{organization_id}/notification-providers/{provider_id}/test',
@@ -1074,12 +1187,12 @@ export const testOrganizationNotificationProvider = (options) => (options.client
1074
1187
  });
1075
1188
  export const listOrganizationBillingProviders = (options) => (options.client ?? client).get({
1076
1189
  security: [{
1077
- key: 'operatorBearer',
1190
+ key: 'controlBearer',
1078
1191
  scheme: 'bearer',
1079
1192
  type: 'http'
1080
1193
  }, {
1081
1194
  in: 'cookie',
1082
- name: 'p93_operator_access',
1195
+ name: 'p93_control_access',
1083
1196
  type: 'apiKey'
1084
1197
  }],
1085
1198
  url: '/v1/control/organizations/{organization_id}/billing/providers',
@@ -1087,12 +1200,12 @@ export const listOrganizationBillingProviders = (options) => (options.client ??
1087
1200
  });
1088
1201
  export const createOrganizationBillingProvider = (options) => (options.client ?? client).post({
1089
1202
  security: [{
1090
- key: 'operatorBearer',
1203
+ key: 'controlBearer',
1091
1204
  scheme: 'bearer',
1092
1205
  type: 'http'
1093
1206
  }, {
1094
1207
  in: 'cookie',
1095
- name: 'p93_operator_access',
1208
+ name: 'p93_control_access',
1096
1209
  type: 'apiKey'
1097
1210
  }],
1098
1211
  url: '/v1/control/organizations/{organization_id}/billing/providers',
@@ -1104,12 +1217,12 @@ export const createOrganizationBillingProvider = (options) => (options.client ??
1104
1217
  });
1105
1218
  export const disableOrganizationBillingProvider = (options) => (options.client ?? client).delete({
1106
1219
  security: [{
1107
- key: 'operatorBearer',
1220
+ key: 'controlBearer',
1108
1221
  scheme: 'bearer',
1109
1222
  type: 'http'
1110
1223
  }, {
1111
1224
  in: 'cookie',
1112
- name: 'p93_operator_access',
1225
+ name: 'p93_control_access',
1113
1226
  type: 'apiKey'
1114
1227
  }],
1115
1228
  url: '/v1/control/organizations/{organization_id}/billing/providers/{provider_id}',
@@ -1117,12 +1230,12 @@ export const disableOrganizationBillingProvider = (options) => (options.client ?
1117
1230
  });
1118
1231
  export const getOrganizationBillingProvider = (options) => (options.client ?? client).get({
1119
1232
  security: [{
1120
- key: 'operatorBearer',
1233
+ key: 'controlBearer',
1121
1234
  scheme: 'bearer',
1122
1235
  type: 'http'
1123
1236
  }, {
1124
1237
  in: 'cookie',
1125
- name: 'p93_operator_access',
1238
+ name: 'p93_control_access',
1126
1239
  type: 'apiKey'
1127
1240
  }],
1128
1241
  url: '/v1/control/organizations/{organization_id}/billing/providers/{provider_id}',
@@ -1130,12 +1243,12 @@ export const getOrganizationBillingProvider = (options) => (options.client ?? cl
1130
1243
  });
1131
1244
  export const updateOrganizationBillingProvider = (options) => (options.client ?? client).patch({
1132
1245
  security: [{
1133
- key: 'operatorBearer',
1246
+ key: 'controlBearer',
1134
1247
  scheme: 'bearer',
1135
1248
  type: 'http'
1136
1249
  }, {
1137
1250
  in: 'cookie',
1138
- name: 'p93_operator_access',
1251
+ name: 'p93_control_access',
1139
1252
  type: 'apiKey'
1140
1253
  }],
1141
1254
  url: '/v1/control/organizations/{organization_id}/billing/providers/{provider_id}',
@@ -1147,12 +1260,12 @@ export const updateOrganizationBillingProvider = (options) => (options.client ??
1147
1260
  });
1148
1261
  export const verifyOrganizationBillingProvider = (options) => (options.client ?? client).post({
1149
1262
  security: [{
1150
- key: 'operatorBearer',
1263
+ key: 'controlBearer',
1151
1264
  scheme: 'bearer',
1152
1265
  type: 'http'
1153
1266
  }, {
1154
1267
  in: 'cookie',
1155
- name: 'p93_operator_access',
1268
+ name: 'p93_control_access',
1156
1269
  type: 'apiKey'
1157
1270
  }],
1158
1271
  url: '/v1/control/organizations/{organization_id}/billing/providers/{provider_id}/verify',
@@ -1161,12 +1274,12 @@ export const verifyOrganizationBillingProvider = (options) => (options.client ??
1161
1274
  export const publicConfig = (options) => (options.client ?? client).get({ url: '/v1/applications/{application_id}/public-config', ...options });
1162
1275
  export const getApplication = (options) => (options.client ?? client).get({
1163
1276
  security: [{
1164
- key: 'operatorBearer',
1277
+ key: 'controlBearer',
1165
1278
  scheme: 'bearer',
1166
1279
  type: 'http'
1167
1280
  }, {
1168
1281
  in: 'cookie',
1169
- name: 'p93_operator_access',
1282
+ name: 'p93_control_access',
1170
1283
  type: 'apiKey'
1171
1284
  }],
1172
1285
  url: '/v1/control/applications/{application_id}',
@@ -1174,12 +1287,12 @@ export const getApplication = (options) => (options.client ?? client).get({
1174
1287
  });
1175
1288
  export const getApplicationStatistics = (options) => (options.client ?? client).get({
1176
1289
  security: [{
1177
- key: 'operatorBearer',
1290
+ key: 'controlBearer',
1178
1291
  scheme: 'bearer',
1179
1292
  type: 'http'
1180
1293
  }, {
1181
1294
  in: 'cookie',
1182
- name: 'p93_operator_access',
1295
+ name: 'p93_control_access',
1183
1296
  type: 'apiKey'
1184
1297
  }],
1185
1298
  url: '/v1/control/applications/{application_id}/statistics',
@@ -1187,12 +1300,12 @@ export const getApplicationStatistics = (options) => (options.client ?? client).
1187
1300
  });
1188
1301
  export const updatePublicApplicationConfig = (options) => (options.client ?? client).patch({
1189
1302
  security: [{
1190
- key: 'operatorBearer',
1303
+ key: 'controlBearer',
1191
1304
  scheme: 'bearer',
1192
1305
  type: 'http'
1193
1306
  }, {
1194
1307
  in: 'cookie',
1195
- name: 'p93_operator_access',
1308
+ name: 'p93_control_access',
1196
1309
  type: 'apiKey'
1197
1310
  }],
1198
1311
  url: '/v1/control/applications/{application_id}/public-config',
@@ -1204,12 +1317,12 @@ export const updatePublicApplicationConfig = (options) => (options.client ?? cli
1204
1317
  });
1205
1318
  export const updateInternalApplicationConfig = (options) => (options.client ?? client).patch({
1206
1319
  security: [{
1207
- key: 'operatorBearer',
1320
+ key: 'controlBearer',
1208
1321
  scheme: 'bearer',
1209
1322
  type: 'http'
1210
1323
  }, {
1211
1324
  in: 'cookie',
1212
- name: 'p93_operator_access',
1325
+ name: 'p93_control_access',
1213
1326
  type: 'apiKey'
1214
1327
  }],
1215
1328
  url: '/v1/control/applications/{application_id}/internal-config',
@@ -1221,12 +1334,12 @@ export const updateInternalApplicationConfig = (options) => (options.client ?? c
1221
1334
  });
1222
1335
  export const updateAuthConfig = (options) => (options.client ?? client).patch({
1223
1336
  security: [{
1224
- key: 'operatorBearer',
1337
+ key: 'controlBearer',
1225
1338
  scheme: 'bearer',
1226
1339
  type: 'http'
1227
1340
  }, {
1228
1341
  in: 'cookie',
1229
- name: 'p93_operator_access',
1342
+ name: 'p93_control_access',
1230
1343
  type: 'apiKey'
1231
1344
  }],
1232
1345
  url: '/v1/control/applications/{application_id}/auth-config',
@@ -1238,12 +1351,12 @@ export const updateAuthConfig = (options) => (options.client ?? client).patch({
1238
1351
  });
1239
1352
  export const configureGoogleProvider = (options) => (options.client ?? client).put({
1240
1353
  security: [{
1241
- key: 'operatorBearer',
1354
+ key: 'controlBearer',
1242
1355
  scheme: 'bearer',
1243
1356
  type: 'http'
1244
1357
  }, {
1245
1358
  in: 'cookie',
1246
- name: 'p93_operator_access',
1359
+ name: 'p93_control_access',
1247
1360
  type: 'apiKey'
1248
1361
  }],
1249
1362
  url: '/v1/control/applications/{application_id}/auth/providers/google',
@@ -1255,12 +1368,12 @@ export const configureGoogleProvider = (options) => (options.client ?? client).p
1255
1368
  });
1256
1369
  export const configureAppleProvider = (options) => (options.client ?? client).put({
1257
1370
  security: [{
1258
- key: 'operatorBearer',
1371
+ key: 'controlBearer',
1259
1372
  scheme: 'bearer',
1260
1373
  type: 'http'
1261
1374
  }, {
1262
1375
  in: 'cookie',
1263
- name: 'p93_operator_access',
1376
+ name: 'p93_control_access',
1264
1377
  type: 'apiKey'
1265
1378
  }],
1266
1379
  url: '/v1/control/applications/{application_id}/auth/providers/apple',
@@ -1272,12 +1385,12 @@ export const configureAppleProvider = (options) => (options.client ?? client).pu
1272
1385
  });
1273
1386
  export const listApplicationAuthProviders = (options) => (options.client ?? client).get({
1274
1387
  security: [{
1275
- key: 'operatorBearer',
1388
+ key: 'controlBearer',
1276
1389
  scheme: 'bearer',
1277
1390
  type: 'http'
1278
1391
  }, {
1279
1392
  in: 'cookie',
1280
- name: 'p93_operator_access',
1393
+ name: 'p93_control_access',
1281
1394
  type: 'apiKey'
1282
1395
  }],
1283
1396
  url: '/v1/control/applications/{application_id}/auth/providers',
@@ -1285,12 +1398,12 @@ export const listApplicationAuthProviders = (options) => (options.client ?? clie
1285
1398
  });
1286
1399
  export const disableApplicationAuthProvider = (options) => (options.client ?? client).delete({
1287
1400
  security: [{
1288
- key: 'operatorBearer',
1401
+ key: 'controlBearer',
1289
1402
  scheme: 'bearer',
1290
1403
  type: 'http'
1291
1404
  }, {
1292
1405
  in: 'cookie',
1293
- name: 'p93_operator_access',
1406
+ name: 'p93_control_access',
1294
1407
  type: 'apiKey'
1295
1408
  }],
1296
1409
  url: '/v1/control/applications/{application_id}/auth/providers/{provider}',
@@ -1298,12 +1411,12 @@ export const disableApplicationAuthProvider = (options) => (options.client ?? cl
1298
1411
  });
1299
1412
  export const listApplicationDomains = (options) => (options.client ?? client).get({
1300
1413
  security: [{
1301
- key: 'operatorBearer',
1414
+ key: 'controlBearer',
1302
1415
  scheme: 'bearer',
1303
1416
  type: 'http'
1304
1417
  }, {
1305
1418
  in: 'cookie',
1306
- name: 'p93_operator_access',
1419
+ name: 'p93_control_access',
1307
1420
  type: 'apiKey'
1308
1421
  }],
1309
1422
  url: '/v1/control/applications/{application_id}/domains',
@@ -1311,12 +1424,12 @@ export const listApplicationDomains = (options) => (options.client ?? client).ge
1311
1424
  });
1312
1425
  export const createApplicationDomain = (options) => (options.client ?? client).post({
1313
1426
  security: [{
1314
- key: 'operatorBearer',
1427
+ key: 'controlBearer',
1315
1428
  scheme: 'bearer',
1316
1429
  type: 'http'
1317
1430
  }, {
1318
1431
  in: 'cookie',
1319
- name: 'p93_operator_access',
1432
+ name: 'p93_control_access',
1320
1433
  type: 'apiKey'
1321
1434
  }],
1322
1435
  url: '/v1/control/applications/{application_id}/domains',
@@ -1328,12 +1441,12 @@ export const createApplicationDomain = (options) => (options.client ?? client).p
1328
1441
  });
1329
1442
  export const deleteApplicationDomain = (options) => (options.client ?? client).delete({
1330
1443
  security: [{
1331
- key: 'operatorBearer',
1444
+ key: 'controlBearer',
1332
1445
  scheme: 'bearer',
1333
1446
  type: 'http'
1334
1447
  }, {
1335
1448
  in: 'cookie',
1336
- name: 'p93_operator_access',
1449
+ name: 'p93_control_access',
1337
1450
  type: 'apiKey'
1338
1451
  }],
1339
1452
  url: '/v1/control/applications/{application_id}/domains/{domain_id}',
@@ -1341,12 +1454,12 @@ export const deleteApplicationDomain = (options) => (options.client ?? client).d
1341
1454
  });
1342
1455
  export const verifyApplicationDomain = (options) => (options.client ?? client).post({
1343
1456
  security: [{
1344
- key: 'operatorBearer',
1457
+ key: 'controlBearer',
1345
1458
  scheme: 'bearer',
1346
1459
  type: 'http'
1347
1460
  }, {
1348
1461
  in: 'cookie',
1349
- name: 'p93_operator_access',
1462
+ name: 'p93_control_access',
1350
1463
  type: 'apiKey'
1351
1464
  }],
1352
1465
  url: '/v1/control/applications/{application_id}/domains/{domain_id}/verify',
@@ -1354,12 +1467,12 @@ export const verifyApplicationDomain = (options) => (options.client ?? client).p
1354
1467
  });
1355
1468
  export const listClients = (options) => (options.client ?? client).get({
1356
1469
  security: [{
1357
- key: 'operatorBearer',
1470
+ key: 'controlBearer',
1358
1471
  scheme: 'bearer',
1359
1472
  type: 'http'
1360
1473
  }, {
1361
1474
  in: 'cookie',
1362
- name: 'p93_operator_access',
1475
+ name: 'p93_control_access',
1363
1476
  type: 'apiKey'
1364
1477
  }],
1365
1478
  url: '/v1/control/applications/{application_id}/clients',
@@ -1367,12 +1480,12 @@ export const listClients = (options) => (options.client ?? client).get({
1367
1480
  });
1368
1481
  export const createClient = (options) => (options.client ?? client).post({
1369
1482
  security: [{
1370
- key: 'operatorBearer',
1483
+ key: 'controlBearer',
1371
1484
  scheme: 'bearer',
1372
1485
  type: 'http'
1373
1486
  }, {
1374
1487
  in: 'cookie',
1375
- name: 'p93_operator_access',
1488
+ name: 'p93_control_access',
1376
1489
  type: 'apiKey'
1377
1490
  }],
1378
1491
  url: '/v1/control/applications/{application_id}/clients',
@@ -1384,12 +1497,25 @@ export const createClient = (options) => (options.client ?? client).post({
1384
1497
  });
1385
1498
  export const disableClient = (options) => (options.client ?? client).delete({
1386
1499
  security: [{
1387
- key: 'operatorBearer',
1500
+ key: 'controlBearer',
1501
+ scheme: 'bearer',
1502
+ type: 'http'
1503
+ }, {
1504
+ in: 'cookie',
1505
+ name: 'p93_control_access',
1506
+ type: 'apiKey'
1507
+ }],
1508
+ url: '/v1/control/applications/{application_id}/clients/{client_id}',
1509
+ ...options
1510
+ });
1511
+ export const getClient = (options) => (options.client ?? client).get({
1512
+ security: [{
1513
+ key: 'controlBearer',
1388
1514
  scheme: 'bearer',
1389
1515
  type: 'http'
1390
1516
  }, {
1391
1517
  in: 'cookie',
1392
- name: 'p93_operator_access',
1518
+ name: 'p93_control_access',
1393
1519
  type: 'apiKey'
1394
1520
  }],
1395
1521
  url: '/v1/control/applications/{application_id}/clients/{client_id}',
@@ -1397,12 +1523,12 @@ export const disableClient = (options) => (options.client ?? client).delete({
1397
1523
  });
1398
1524
  export const updateClient = (options) => (options.client ?? client).patch({
1399
1525
  security: [{
1400
- key: 'operatorBearer',
1526
+ key: 'controlBearer',
1401
1527
  scheme: 'bearer',
1402
1528
  type: 'http'
1403
1529
  }, {
1404
1530
  in: 'cookie',
1405
- name: 'p93_operator_access',
1531
+ name: 'p93_control_access',
1406
1532
  type: 'apiKey'
1407
1533
  }],
1408
1534
  url: '/v1/control/applications/{application_id}/clients/{client_id}',
@@ -1414,12 +1540,12 @@ export const updateClient = (options) => (options.client ?? client).patch({
1414
1540
  });
1415
1541
  export const rotateClientSecret = (options) => (options.client ?? client).post({
1416
1542
  security: [{
1417
- key: 'operatorBearer',
1543
+ key: 'controlBearer',
1418
1544
  scheme: 'bearer',
1419
1545
  type: 'http'
1420
1546
  }, {
1421
1547
  in: 'cookie',
1422
- name: 'p93_operator_access',
1548
+ name: 'p93_control_access',
1423
1549
  type: 'apiKey'
1424
1550
  }],
1425
1551
  url: '/v1/control/applications/{application_id}/clients/{client_id}/rotate-secret',
@@ -1427,12 +1553,12 @@ export const rotateClientSecret = (options) => (options.client ?? client).post({
1427
1553
  });
1428
1554
  export const listRoles = (options) => (options.client ?? client).get({
1429
1555
  security: [{
1430
- key: 'operatorBearer',
1556
+ key: 'controlBearer',
1431
1557
  scheme: 'bearer',
1432
1558
  type: 'http'
1433
1559
  }, {
1434
1560
  in: 'cookie',
1435
- name: 'p93_operator_access',
1561
+ name: 'p93_control_access',
1436
1562
  type: 'apiKey'
1437
1563
  }],
1438
1564
  url: '/v1/control/applications/{application_id}/roles',
@@ -1440,12 +1566,12 @@ export const listRoles = (options) => (options.client ?? client).get({
1440
1566
  });
1441
1567
  export const createRole = (options) => (options.client ?? client).post({
1442
1568
  security: [{
1443
- key: 'operatorBearer',
1569
+ key: 'controlBearer',
1444
1570
  scheme: 'bearer',
1445
1571
  type: 'http'
1446
1572
  }, {
1447
1573
  in: 'cookie',
1448
- name: 'p93_operator_access',
1574
+ name: 'p93_control_access',
1449
1575
  type: 'apiKey'
1450
1576
  }],
1451
1577
  url: '/v1/control/applications/{application_id}/roles',
@@ -1457,12 +1583,12 @@ export const createRole = (options) => (options.client ?? client).post({
1457
1583
  });
1458
1584
  export const deleteRole = (options) => (options.client ?? client).delete({
1459
1585
  security: [{
1460
- key: 'operatorBearer',
1586
+ key: 'controlBearer',
1461
1587
  scheme: 'bearer',
1462
1588
  type: 'http'
1463
1589
  }, {
1464
1590
  in: 'cookie',
1465
- name: 'p93_operator_access',
1591
+ name: 'p93_control_access',
1466
1592
  type: 'apiKey'
1467
1593
  }],
1468
1594
  url: '/v1/control/applications/{application_id}/roles/{role_id}',
@@ -1470,12 +1596,12 @@ export const deleteRole = (options) => (options.client ?? client).delete({
1470
1596
  });
1471
1597
  export const getRole = (options) => (options.client ?? client).get({
1472
1598
  security: [{
1473
- key: 'operatorBearer',
1599
+ key: 'controlBearer',
1474
1600
  scheme: 'bearer',
1475
1601
  type: 'http'
1476
1602
  }, {
1477
1603
  in: 'cookie',
1478
- name: 'p93_operator_access',
1604
+ name: 'p93_control_access',
1479
1605
  type: 'apiKey'
1480
1606
  }],
1481
1607
  url: '/v1/control/applications/{application_id}/roles/{role_id}',
@@ -1483,12 +1609,12 @@ export const getRole = (options) => (options.client ?? client).get({
1483
1609
  });
1484
1610
  export const updateRole = (options) => (options.client ?? client).patch({
1485
1611
  security: [{
1486
- key: 'operatorBearer',
1612
+ key: 'controlBearer',
1487
1613
  scheme: 'bearer',
1488
1614
  type: 'http'
1489
1615
  }, {
1490
1616
  in: 'cookie',
1491
- name: 'p93_operator_access',
1617
+ name: 'p93_control_access',
1492
1618
  type: 'apiKey'
1493
1619
  }],
1494
1620
  url: '/v1/control/applications/{application_id}/roles/{role_id}',
@@ -1500,12 +1626,12 @@ export const updateRole = (options) => (options.client ?? client).patch({
1500
1626
  });
1501
1627
  export const listWorkspaces = (options) => (options.client ?? client).get({
1502
1628
  security: [{
1503
- key: 'operatorBearer',
1629
+ key: 'controlBearer',
1504
1630
  scheme: 'bearer',
1505
1631
  type: 'http'
1506
1632
  }, {
1507
1633
  in: 'cookie',
1508
- name: 'p93_operator_access',
1634
+ name: 'p93_control_access',
1509
1635
  type: 'apiKey'
1510
1636
  }],
1511
1637
  url: '/v1/control/applications/{application_id}/workspaces',
@@ -1513,12 +1639,12 @@ export const listWorkspaces = (options) => (options.client ?? client).get({
1513
1639
  });
1514
1640
  export const createWorkspace = (options) => (options.client ?? client).post({
1515
1641
  security: [{
1516
- key: 'operatorBearer',
1642
+ key: 'controlBearer',
1517
1643
  scheme: 'bearer',
1518
1644
  type: 'http'
1519
1645
  }, {
1520
1646
  in: 'cookie',
1521
- name: 'p93_operator_access',
1647
+ name: 'p93_control_access',
1522
1648
  type: 'apiKey'
1523
1649
  }],
1524
1650
  url: '/v1/control/applications/{application_id}/workspaces',
@@ -1530,12 +1656,12 @@ export const createWorkspace = (options) => (options.client ?? client).post({
1530
1656
  });
1531
1657
  export const deleteWorkspace = (options) => (options.client ?? client).delete({
1532
1658
  security: [{
1533
- key: 'operatorBearer',
1659
+ key: 'controlBearer',
1534
1660
  scheme: 'bearer',
1535
1661
  type: 'http'
1536
1662
  }, {
1537
1663
  in: 'cookie',
1538
- name: 'p93_operator_access',
1664
+ name: 'p93_control_access',
1539
1665
  type: 'apiKey'
1540
1666
  }],
1541
1667
  url: '/v1/control/applications/{application_id}/workspaces/{workspace_id}',
@@ -1543,12 +1669,12 @@ export const deleteWorkspace = (options) => (options.client ?? client).delete({
1543
1669
  });
1544
1670
  export const getWorkspace = (options) => (options.client ?? client).get({
1545
1671
  security: [{
1546
- key: 'operatorBearer',
1672
+ key: 'controlBearer',
1547
1673
  scheme: 'bearer',
1548
1674
  type: 'http'
1549
1675
  }, {
1550
1676
  in: 'cookie',
1551
- name: 'p93_operator_access',
1677
+ name: 'p93_control_access',
1552
1678
  type: 'apiKey'
1553
1679
  }],
1554
1680
  url: '/v1/control/applications/{application_id}/workspaces/{workspace_id}',
@@ -1556,12 +1682,12 @@ export const getWorkspace = (options) => (options.client ?? client).get({
1556
1682
  });
1557
1683
  export const updateWorkspace = (options) => (options.client ?? client).patch({
1558
1684
  security: [{
1559
- key: 'operatorBearer',
1685
+ key: 'controlBearer',
1560
1686
  scheme: 'bearer',
1561
1687
  type: 'http'
1562
1688
  }, {
1563
1689
  in: 'cookie',
1564
- name: 'p93_operator_access',
1690
+ name: 'p93_control_access',
1565
1691
  type: 'apiKey'
1566
1692
  }],
1567
1693
  url: '/v1/control/applications/{application_id}/workspaces/{workspace_id}',
@@ -1573,12 +1699,12 @@ export const updateWorkspace = (options) => (options.client ?? client).patch({
1573
1699
  });
1574
1700
  export const recoverWorkspaceOwnership = (options) => (options.client ?? client).post({
1575
1701
  security: [{
1576
- key: 'operatorBearer',
1702
+ key: 'controlBearer',
1577
1703
  scheme: 'bearer',
1578
1704
  type: 'http'
1579
1705
  }, {
1580
1706
  in: 'cookie',
1581
- name: 'p93_operator_access',
1707
+ name: 'p93_control_access',
1582
1708
  type: 'apiKey'
1583
1709
  }],
1584
1710
  url: '/v1/control/applications/{application_id}/workspaces/{workspace_id}/owner-transfer',
@@ -1590,12 +1716,12 @@ export const recoverWorkspaceOwnership = (options) => (options.client ?? client)
1590
1716
  });
1591
1717
  export const listWorkspaceMembers = (options) => (options.client ?? client).get({
1592
1718
  security: [{
1593
- key: 'operatorBearer',
1719
+ key: 'controlBearer',
1594
1720
  scheme: 'bearer',
1595
1721
  type: 'http'
1596
1722
  }, {
1597
1723
  in: 'cookie',
1598
- name: 'p93_operator_access',
1724
+ name: 'p93_control_access',
1599
1725
  type: 'apiKey'
1600
1726
  }],
1601
1727
  url: '/v1/control/applications/{application_id}/workspaces/{workspace_id}/members',
@@ -1603,12 +1729,12 @@ export const listWorkspaceMembers = (options) => (options.client ?? client).get(
1603
1729
  });
1604
1730
  export const deleteWorkspaceMember = (options) => (options.client ?? client).delete({
1605
1731
  security: [{
1606
- key: 'operatorBearer',
1732
+ key: 'controlBearer',
1607
1733
  scheme: 'bearer',
1608
1734
  type: 'http'
1609
1735
  }, {
1610
1736
  in: 'cookie',
1611
- name: 'p93_operator_access',
1737
+ name: 'p93_control_access',
1612
1738
  type: 'apiKey'
1613
1739
  }],
1614
1740
  url: '/v1/control/applications/{application_id}/workspaces/{workspace_id}/members/{user_id}',
@@ -1616,12 +1742,12 @@ export const deleteWorkspaceMember = (options) => (options.client ?? client).del
1616
1742
  });
1617
1743
  export const replaceWorkspaceMemberRoles = (options) => (options.client ?? client).put({
1618
1744
  security: [{
1619
- key: 'operatorBearer',
1745
+ key: 'controlBearer',
1620
1746
  scheme: 'bearer',
1621
1747
  type: 'http'
1622
1748
  }, {
1623
1749
  in: 'cookie',
1624
- name: 'p93_operator_access',
1750
+ name: 'p93_control_access',
1625
1751
  type: 'apiKey'
1626
1752
  }],
1627
1753
  url: '/v1/control/applications/{application_id}/workspaces/{workspace_id}/members/{user_id}',
@@ -1633,12 +1759,12 @@ export const replaceWorkspaceMemberRoles = (options) => (options.client ?? clien
1633
1759
  });
1634
1760
  export const listRoleAssignments = (options) => (options.client ?? client).get({
1635
1761
  security: [{
1636
- key: 'operatorBearer',
1762
+ key: 'controlBearer',
1637
1763
  scheme: 'bearer',
1638
1764
  type: 'http'
1639
1765
  }, {
1640
1766
  in: 'cookie',
1641
- name: 'p93_operator_access',
1767
+ name: 'p93_control_access',
1642
1768
  type: 'apiKey'
1643
1769
  }],
1644
1770
  url: '/v1/control/applications/{application_id}/role-assignments',
@@ -1646,12 +1772,12 @@ export const listRoleAssignments = (options) => (options.client ?? client).get({
1646
1772
  });
1647
1773
  export const createRoleAssignment = (options) => (options.client ?? client).post({
1648
1774
  security: [{
1649
- key: 'operatorBearer',
1775
+ key: 'controlBearer',
1650
1776
  scheme: 'bearer',
1651
1777
  type: 'http'
1652
1778
  }, {
1653
1779
  in: 'cookie',
1654
- name: 'p93_operator_access',
1780
+ name: 'p93_control_access',
1655
1781
  type: 'apiKey'
1656
1782
  }],
1657
1783
  url: '/v1/control/applications/{application_id}/role-assignments',
@@ -1663,25 +1789,94 @@ export const createRoleAssignment = (options) => (options.client ?? client).post
1663
1789
  });
1664
1790
  export const deleteRoleAssignment = (options) => (options.client ?? client).delete({
1665
1791
  security: [{
1666
- key: 'operatorBearer',
1792
+ key: 'controlBearer',
1667
1793
  scheme: 'bearer',
1668
1794
  type: 'http'
1669
1795
  }, {
1670
1796
  in: 'cookie',
1671
- name: 'p93_operator_access',
1797
+ name: 'p93_control_access',
1672
1798
  type: 'apiKey'
1673
1799
  }],
1674
1800
  url: '/v1/control/applications/{application_id}/role-assignments/{assignment_id}',
1675
1801
  ...options
1676
1802
  });
1803
+ export const listControlPermissionGrants = (options) => (options.client ?? client).get({
1804
+ security: [{
1805
+ key: 'controlBearer',
1806
+ scheme: 'bearer',
1807
+ type: 'http'
1808
+ }, {
1809
+ in: 'cookie',
1810
+ name: 'p93_control_access',
1811
+ type: 'apiKey'
1812
+ }],
1813
+ url: '/v1/control/applications/{application_id}/permission-grants',
1814
+ ...options
1815
+ });
1816
+ export const createControlPermissionGrant = (options) => (options.client ?? client).post({
1817
+ security: [{
1818
+ key: 'controlBearer',
1819
+ scheme: 'bearer',
1820
+ type: 'http'
1821
+ }, {
1822
+ in: 'cookie',
1823
+ name: 'p93_control_access',
1824
+ type: 'apiKey'
1825
+ }],
1826
+ url: '/v1/control/applications/{application_id}/permission-grants',
1827
+ ...options,
1828
+ headers: {
1829
+ 'Content-Type': 'application/json',
1830
+ ...options.headers
1831
+ }
1832
+ });
1833
+ export const getControlEffectiveAccess = (options) => (options.client ?? client).get({
1834
+ security: [{
1835
+ key: 'controlBearer',
1836
+ scheme: 'bearer',
1837
+ type: 'http'
1838
+ }, {
1839
+ in: 'cookie',
1840
+ name: 'p93_control_access',
1841
+ type: 'apiKey'
1842
+ }],
1843
+ url: '/v1/control/applications/{application_id}/permission-grants/effective',
1844
+ ...options
1845
+ });
1846
+ export const revokeControlPermissionGrant = (options) => (options.client ?? client).delete({
1847
+ security: [{
1848
+ key: 'controlBearer',
1849
+ scheme: 'bearer',
1850
+ type: 'http'
1851
+ }, {
1852
+ in: 'cookie',
1853
+ name: 'p93_control_access',
1854
+ type: 'apiKey'
1855
+ }],
1856
+ url: '/v1/control/applications/{application_id}/permission-grants/{grant_id}',
1857
+ ...options
1858
+ });
1859
+ export const getControlPermissionGrant = (options) => (options.client ?? client).get({
1860
+ security: [{
1861
+ key: 'controlBearer',
1862
+ scheme: 'bearer',
1863
+ type: 'http'
1864
+ }, {
1865
+ in: 'cookie',
1866
+ name: 'p93_control_access',
1867
+ type: 'apiKey'
1868
+ }],
1869
+ url: '/v1/control/applications/{application_id}/permission-grants/{grant_id}',
1870
+ ...options
1871
+ });
1677
1872
  export const listDelegations = (options) => (options.client ?? client).get({
1678
1873
  security: [{
1679
- key: 'operatorBearer',
1874
+ key: 'controlBearer',
1680
1875
  scheme: 'bearer',
1681
1876
  type: 'http'
1682
1877
  }, {
1683
1878
  in: 'cookie',
1684
- name: 'p93_operator_access',
1879
+ name: 'p93_control_access',
1685
1880
  type: 'apiKey'
1686
1881
  }],
1687
1882
  url: '/v1/control/applications/{application_id}/delegations',
@@ -1689,12 +1884,12 @@ export const listDelegations = (options) => (options.client ?? client).get({
1689
1884
  });
1690
1885
  export const createDelegation = (options) => (options.client ?? client).post({
1691
1886
  security: [{
1692
- key: 'operatorBearer',
1887
+ key: 'controlBearer',
1693
1888
  scheme: 'bearer',
1694
1889
  type: 'http'
1695
1890
  }, {
1696
1891
  in: 'cookie',
1697
- name: 'p93_operator_access',
1892
+ name: 'p93_control_access',
1698
1893
  type: 'apiKey'
1699
1894
  }],
1700
1895
  url: '/v1/control/applications/{application_id}/delegations',
@@ -1706,12 +1901,12 @@ export const createDelegation = (options) => (options.client ?? client).post({
1706
1901
  });
1707
1902
  export const getDelegation = (options) => (options.client ?? client).get({
1708
1903
  security: [{
1709
- key: 'operatorBearer',
1904
+ key: 'controlBearer',
1710
1905
  scheme: 'bearer',
1711
1906
  type: 'http'
1712
1907
  }, {
1713
1908
  in: 'cookie',
1714
- name: 'p93_operator_access',
1909
+ name: 'p93_control_access',
1715
1910
  type: 'apiKey'
1716
1911
  }],
1717
1912
  url: '/v1/control/applications/{application_id}/delegations/{delegation_id}',
@@ -1725,70 +1920,273 @@ export const exchangeDelegation = (options) => (options.client ?? client).post({
1725
1920
  ...options.headers
1726
1921
  }
1727
1922
  });
1923
+ /**
1924
+ * Machine-client-only template notification delivery.
1925
+ */
1926
+ export const sendMachineNotification = (options) => (options.client ?? client).post({
1927
+ security: [{
1928
+ key: 'bearerAuth',
1929
+ scheme: 'bearer',
1930
+ type: 'http'
1931
+ }],
1932
+ url: '/v1/applications/{application_id}/notifications',
1933
+ ...options,
1934
+ headers: {
1935
+ 'Content-Type': 'application/json',
1936
+ ...options.headers
1937
+ }
1938
+ });
1939
+ export const listPermissionGrants = (options) => (options.client ?? client).get({
1940
+ security: [{
1941
+ key: 'bearerAuth',
1942
+ scheme: 'bearer',
1943
+ type: 'http'
1944
+ }],
1945
+ url: '/v1/applications/{application_id}/permission-grants',
1946
+ ...options
1947
+ });
1948
+ export const createPermissionGrant = (options) => (options.client ?? client).post({
1949
+ security: [{
1950
+ key: 'bearerAuth',
1951
+ scheme: 'bearer',
1952
+ type: 'http'
1953
+ }],
1954
+ url: '/v1/applications/{application_id}/permission-grants',
1955
+ ...options,
1956
+ headers: {
1957
+ 'Content-Type': 'application/json',
1958
+ ...options.headers
1959
+ }
1960
+ });
1961
+ export const getEffectiveAccess = (options) => (options.client ?? client).get({
1962
+ security: [{
1963
+ key: 'bearerAuth',
1964
+ scheme: 'bearer',
1965
+ type: 'http'
1966
+ }],
1967
+ url: '/v1/applications/{application_id}/permission-grants/effective',
1968
+ ...options
1969
+ });
1970
+ export const revokePermissionGrant = (options) => (options.client ?? client).delete({
1971
+ security: [{
1972
+ key: 'bearerAuth',
1973
+ scheme: 'bearer',
1974
+ type: 'http'
1975
+ }],
1976
+ url: '/v1/applications/{application_id}/permission-grants/{grant_id}',
1977
+ ...options
1978
+ });
1979
+ export const getPermissionGrant = (options) => (options.client ?? client).get({
1980
+ security: [{
1981
+ key: 'bearerAuth',
1982
+ scheme: 'bearer',
1983
+ type: 'http'
1984
+ }],
1985
+ url: '/v1/applications/{application_id}/permission-grants/{grant_id}',
1986
+ ...options
1987
+ });
1988
+ export const listApplicationInvitations = (options) => (options.client ?? client).get({
1989
+ security: [{
1990
+ key: 'bearerAuth',
1991
+ scheme: 'bearer',
1992
+ type: 'http'
1993
+ }],
1994
+ url: '/v1/applications/{application_id}/invitations',
1995
+ ...options
1996
+ });
1997
+ export const createApplicationInvitationMachine = (options) => (options.client ?? client).post({
1998
+ security: [{
1999
+ key: 'bearerAuth',
2000
+ scheme: 'bearer',
2001
+ type: 'http'
2002
+ }],
2003
+ url: '/v1/applications/{application_id}/invitations',
2004
+ ...options,
2005
+ headers: {
2006
+ 'Content-Type': 'application/json',
2007
+ ...options.headers
2008
+ }
2009
+ });
2010
+ export const revokeApplicationInvitation = (options) => (options.client ?? client).delete({
2011
+ security: [{
2012
+ key: 'bearerAuth',
2013
+ scheme: 'bearer',
2014
+ type: 'http'
2015
+ }],
2016
+ url: '/v1/applications/{application_id}/invitations/{invitation_id}',
2017
+ ...options
2018
+ });
2019
+ export const getApplicationInvitation = (options) => (options.client ?? client).get({
2020
+ security: [{
2021
+ key: 'bearerAuth',
2022
+ scheme: 'bearer',
2023
+ type: 'http'
2024
+ }],
2025
+ url: '/v1/applications/{application_id}/invitations/{invitation_id}',
2026
+ ...options
2027
+ });
2028
+ export const resendApplicationInvitation = (options) => (options.client ?? client).post({
2029
+ security: [{
2030
+ key: 'bearerAuth',
2031
+ scheme: 'bearer',
2032
+ type: 'http'
2033
+ }],
2034
+ url: '/v1/applications/{application_id}/invitations/{invitation_id}/resend',
2035
+ ...options
2036
+ });
2037
+ export const serviceListApplicationUsers = (options) => (options.client ?? client).get({
2038
+ security: [{
2039
+ key: 'bearerAuth',
2040
+ scheme: 'bearer',
2041
+ type: 'http'
2042
+ }],
2043
+ url: '/v1/applications/{application_id}/users',
2044
+ ...options
2045
+ });
2046
+ export const serviceGetApplicationUser = (options) => (options.client ?? client).get({
2047
+ security: [{
2048
+ key: 'bearerAuth',
2049
+ scheme: 'bearer',
2050
+ type: 'http'
2051
+ }],
2052
+ url: '/v1/applications/{application_id}/users/{user_id}',
2053
+ ...options
2054
+ });
2055
+ export const serviceListApplicationWorkspaces = (options) => (options.client ?? client).get({
2056
+ security: [{
2057
+ key: 'bearerAuth',
2058
+ scheme: 'bearer',
2059
+ type: 'http'
2060
+ }],
2061
+ url: '/v1/applications/{application_id}/workspaces',
2062
+ ...options
2063
+ });
2064
+ export const serviceGetApplicationWorkspace = (options) => (options.client ?? client).get({
2065
+ security: [{
2066
+ key: 'bearerAuth',
2067
+ scheme: 'bearer',
2068
+ type: 'http'
2069
+ }],
2070
+ url: '/v1/applications/{application_id}/service/workspaces/{workspace_id}',
2071
+ ...options
2072
+ });
2073
+ export const serviceListApplicationWorkspaceAccess = (options) => (options.client ?? client).get({
2074
+ security: [{
2075
+ key: 'bearerAuth',
2076
+ scheme: 'bearer',
2077
+ type: 'http'
2078
+ }],
2079
+ url: '/v1/applications/{application_id}/service/workspaces/{workspace_id}/access',
2080
+ ...options
2081
+ });
2082
+ export const serviceGetSubjectEntitlements = (options) => (options.client ?? client).get({
2083
+ security: [{
2084
+ key: 'bearerAuth',
2085
+ scheme: 'bearer',
2086
+ type: 'http'
2087
+ }],
2088
+ url: '/v1/applications/{application_id}/subjects/{subject_type}/{subject_id}/entitlements',
2089
+ ...options
2090
+ });
2091
+ export const serviceGetSubjectBilling = (options) => (options.client ?? client).get({
2092
+ security: [{
2093
+ key: 'bearerAuth',
2094
+ scheme: 'bearer',
2095
+ type: 'http'
2096
+ }],
2097
+ url: '/v1/applications/{application_id}/subjects/{subject_type}/{subject_id}/billing',
2098
+ ...options
2099
+ });
1728
2100
  export const revokeDelegation = (options) => (options.client ?? client).post({
1729
2101
  security: [{
1730
- key: 'operatorBearer',
2102
+ key: 'controlBearer',
1731
2103
  scheme: 'bearer',
1732
2104
  type: 'http'
1733
2105
  }, {
1734
2106
  in: 'cookie',
1735
- name: 'p93_operator_access',
2107
+ name: 'p93_control_access',
1736
2108
  type: 'apiKey'
1737
2109
  }],
1738
2110
  url: '/v1/control/applications/{application_id}/delegations/{delegation_id}/revoke',
1739
2111
  ...options
1740
2112
  });
1741
- export const listWorkspaceInvitations = (options) => (options.client ?? client).get({
2113
+ export const listApplicationInvitationsControl = (options) => (options.client ?? client).get({
1742
2114
  security: [{
1743
- key: 'operatorBearer',
2115
+ key: 'controlBearer',
1744
2116
  scheme: 'bearer',
1745
2117
  type: 'http'
1746
2118
  }, {
1747
2119
  in: 'cookie',
1748
- name: 'p93_operator_access',
2120
+ name: 'p93_control_access',
1749
2121
  type: 'apiKey'
1750
2122
  }],
1751
- url: '/v1/control/applications/{application_id}/workspace-invitations',
2123
+ url: '/v1/control/applications/{application_id}/invitations',
1752
2124
  ...options
1753
2125
  });
1754
- export const createWorkspaceInvitation = (options) => (options.client ?? client).post({
2126
+ export const createApplicationInvitationControl = (options) => (options.client ?? client).post({
1755
2127
  security: [{
1756
- key: 'operatorBearer',
2128
+ key: 'controlBearer',
1757
2129
  scheme: 'bearer',
1758
2130
  type: 'http'
1759
2131
  }, {
1760
2132
  in: 'cookie',
1761
- name: 'p93_operator_access',
2133
+ name: 'p93_control_access',
1762
2134
  type: 'apiKey'
1763
2135
  }],
1764
- url: '/v1/control/applications/{application_id}/workspace-invitations',
2136
+ url: '/v1/control/applications/{application_id}/invitations',
1765
2137
  ...options,
1766
2138
  headers: {
1767
2139
  'Content-Type': 'application/json',
1768
2140
  ...options.headers
1769
2141
  }
1770
2142
  });
1771
- export const revokeWorkspaceInvitation = (options) => (options.client ?? client).delete({
2143
+ export const revokeApplicationInvitationControl = (options) => (options.client ?? client).delete({
2144
+ security: [{
2145
+ key: 'controlBearer',
2146
+ scheme: 'bearer',
2147
+ type: 'http'
2148
+ }, {
2149
+ in: 'cookie',
2150
+ name: 'p93_control_access',
2151
+ type: 'apiKey'
2152
+ }],
2153
+ url: '/v1/control/applications/{application_id}/invitations/{invitation_id}',
2154
+ ...options
2155
+ });
2156
+ export const getApplicationInvitationControl = (options) => (options.client ?? client).get({
1772
2157
  security: [{
1773
- key: 'operatorBearer',
2158
+ key: 'controlBearer',
1774
2159
  scheme: 'bearer',
1775
2160
  type: 'http'
1776
2161
  }, {
1777
2162
  in: 'cookie',
1778
- name: 'p93_operator_access',
2163
+ name: 'p93_control_access',
1779
2164
  type: 'apiKey'
1780
2165
  }],
1781
- url: '/v1/control/applications/{application_id}/workspace-invitations/{invitation_id}',
2166
+ url: '/v1/control/applications/{application_id}/invitations/{invitation_id}',
2167
+ ...options
2168
+ });
2169
+ export const resendApplicationInvitationControl = (options) => (options.client ?? client).post({
2170
+ security: [{
2171
+ key: 'controlBearer',
2172
+ scheme: 'bearer',
2173
+ type: 'http'
2174
+ }, {
2175
+ in: 'cookie',
2176
+ name: 'p93_control_access',
2177
+ type: 'apiKey'
2178
+ }],
2179
+ url: '/v1/control/applications/{application_id}/invitations/{invitation_id}/resend',
1782
2180
  ...options
1783
2181
  });
1784
2182
  export const listUsers = (options) => (options.client ?? client).get({
1785
2183
  security: [{
1786
- key: 'operatorBearer',
2184
+ key: 'controlBearer',
1787
2185
  scheme: 'bearer',
1788
2186
  type: 'http'
1789
2187
  }, {
1790
2188
  in: 'cookie',
1791
- name: 'p93_operator_access',
2189
+ name: 'p93_control_access',
1792
2190
  type: 'apiKey'
1793
2191
  }],
1794
2192
  url: '/v1/control/applications/{application_id}/users',
@@ -1796,12 +2194,12 @@ export const listUsers = (options) => (options.client ?? client).get({
1796
2194
  });
1797
2195
  export const createUser = (options) => (options.client ?? client).post({
1798
2196
  security: [{
1799
- key: 'operatorBearer',
2197
+ key: 'controlBearer',
1800
2198
  scheme: 'bearer',
1801
2199
  type: 'http'
1802
2200
  }, {
1803
2201
  in: 'cookie',
1804
- name: 'p93_operator_access',
2202
+ name: 'p93_control_access',
1805
2203
  type: 'apiKey'
1806
2204
  }],
1807
2205
  url: '/v1/control/applications/{application_id}/users',
@@ -1813,12 +2211,12 @@ export const createUser = (options) => (options.client ?? client).post({
1813
2211
  });
1814
2212
  export const getUser = (options) => (options.client ?? client).get({
1815
2213
  security: [{
1816
- key: 'operatorBearer',
2214
+ key: 'controlBearer',
1817
2215
  scheme: 'bearer',
1818
2216
  type: 'http'
1819
2217
  }, {
1820
2218
  in: 'cookie',
1821
- name: 'p93_operator_access',
2219
+ name: 'p93_control_access',
1822
2220
  type: 'apiKey'
1823
2221
  }],
1824
2222
  url: '/v1/control/applications/{application_id}/users/{user_id}',
@@ -1826,12 +2224,12 @@ export const getUser = (options) => (options.client ?? client).get({
1826
2224
  });
1827
2225
  export const updateUser = (options) => (options.client ?? client).patch({
1828
2226
  security: [{
1829
- key: 'operatorBearer',
2227
+ key: 'controlBearer',
1830
2228
  scheme: 'bearer',
1831
2229
  type: 'http'
1832
2230
  }, {
1833
2231
  in: 'cookie',
1834
- name: 'p93_operator_access',
2232
+ name: 'p93_control_access',
1835
2233
  type: 'apiKey'
1836
2234
  }],
1837
2235
  url: '/v1/control/applications/{application_id}/users/{user_id}',
@@ -1843,12 +2241,12 @@ export const updateUser = (options) => (options.client ?? client).patch({
1843
2241
  });
1844
2242
  export const suspendUser = (options) => (options.client ?? client).post({
1845
2243
  security: [{
1846
- key: 'operatorBearer',
2244
+ key: 'controlBearer',
1847
2245
  scheme: 'bearer',
1848
2246
  type: 'http'
1849
2247
  }, {
1850
2248
  in: 'cookie',
1851
- name: 'p93_operator_access',
2249
+ name: 'p93_control_access',
1852
2250
  type: 'apiKey'
1853
2251
  }],
1854
2252
  url: '/v1/control/applications/{application_id}/users/{user_id}/suspend',
@@ -1860,12 +2258,12 @@ export const suspendUser = (options) => (options.client ?? client).post({
1860
2258
  });
1861
2259
  export const restoreUser = (options) => (options.client ?? client).post({
1862
2260
  security: [{
1863
- key: 'operatorBearer',
2261
+ key: 'controlBearer',
1864
2262
  scheme: 'bearer',
1865
2263
  type: 'http'
1866
2264
  }, {
1867
2265
  in: 'cookie',
1868
- name: 'p93_operator_access',
2266
+ name: 'p93_control_access',
1869
2267
  type: 'apiKey'
1870
2268
  }],
1871
2269
  url: '/v1/control/applications/{application_id}/users/{user_id}/restore',
@@ -1877,12 +2275,12 @@ export const restoreUser = (options) => (options.client ?? client).post({
1877
2275
  });
1878
2276
  export const verifyUserEmail = (options) => (options.client ?? client).post({
1879
2277
  security: [{
1880
- key: 'operatorBearer',
2278
+ key: 'controlBearer',
1881
2279
  scheme: 'bearer',
1882
2280
  type: 'http'
1883
2281
  }, {
1884
2282
  in: 'cookie',
1885
- name: 'p93_operator_access',
2283
+ name: 'p93_control_access',
1886
2284
  type: 'apiKey'
1887
2285
  }],
1888
2286
  url: '/v1/control/applications/{application_id}/users/{user_id}/verify-email',
@@ -1894,12 +2292,12 @@ export const verifyUserEmail = (options) => (options.client ?? client).post({
1894
2292
  });
1895
2293
  export const unverifyUserEmail = (options) => (options.client ?? client).post({
1896
2294
  security: [{
1897
- key: 'operatorBearer',
2295
+ key: 'controlBearer',
1898
2296
  scheme: 'bearer',
1899
2297
  type: 'http'
1900
2298
  }, {
1901
2299
  in: 'cookie',
1902
- name: 'p93_operator_access',
2300
+ name: 'p93_control_access',
1903
2301
  type: 'apiKey'
1904
2302
  }],
1905
2303
  url: '/v1/control/applications/{application_id}/users/{user_id}/unverify-email',
@@ -1911,12 +2309,12 @@ export const unverifyUserEmail = (options) => (options.client ?? client).post({
1911
2309
  });
1912
2310
  export const verifyUserOrganization = (options) => (options.client ?? client).post({
1913
2311
  security: [{
1914
- key: 'operatorBearer',
2312
+ key: 'controlBearer',
1915
2313
  scheme: 'bearer',
1916
2314
  type: 'http'
1917
2315
  }, {
1918
2316
  in: 'cookie',
1919
- name: 'p93_operator_access',
2317
+ name: 'p93_control_access',
1920
2318
  type: 'apiKey'
1921
2319
  }],
1922
2320
  url: '/v1/control/applications/{application_id}/users/{user_id}/verify-organization',
@@ -1928,12 +2326,12 @@ export const verifyUserOrganization = (options) => (options.client ?? client).po
1928
2326
  });
1929
2327
  export const unverifyUserOrganization = (options) => (options.client ?? client).post({
1930
2328
  security: [{
1931
- key: 'operatorBearer',
2329
+ key: 'controlBearer',
1932
2330
  scheme: 'bearer',
1933
2331
  type: 'http'
1934
2332
  }, {
1935
2333
  in: 'cookie',
1936
- name: 'p93_operator_access',
2334
+ name: 'p93_control_access',
1937
2335
  type: 'apiKey'
1938
2336
  }],
1939
2337
  url: '/v1/control/applications/{application_id}/users/{user_id}/unverify-organization',
@@ -1945,12 +2343,12 @@ export const unverifyUserOrganization = (options) => (options.client ?? client).
1945
2343
  });
1946
2344
  export const listUserSessions = (options) => (options.client ?? client).get({
1947
2345
  security: [{
1948
- key: 'operatorBearer',
2346
+ key: 'controlBearer',
1949
2347
  scheme: 'bearer',
1950
2348
  type: 'http'
1951
2349
  }, {
1952
2350
  in: 'cookie',
1953
- name: 'p93_operator_access',
2351
+ name: 'p93_control_access',
1954
2352
  type: 'apiKey'
1955
2353
  }],
1956
2354
  url: '/v1/control/applications/{application_id}/users/{user_id}/sessions',
@@ -1958,12 +2356,12 @@ export const listUserSessions = (options) => (options.client ?? client).get({
1958
2356
  });
1959
2357
  export const revokeUserSessions = (options) => (options.client ?? client).post({
1960
2358
  security: [{
1961
- key: 'operatorBearer',
2359
+ key: 'controlBearer',
1962
2360
  scheme: 'bearer',
1963
2361
  type: 'http'
1964
2362
  }, {
1965
2363
  in: 'cookie',
1966
- name: 'p93_operator_access',
2364
+ name: 'p93_control_access',
1967
2365
  type: 'apiKey'
1968
2366
  }],
1969
2367
  url: '/v1/control/applications/{application_id}/users/{user_id}/sessions/revoke',
@@ -1971,12 +2369,12 @@ export const revokeUserSessions = (options) => (options.client ?? client).post({
1971
2369
  });
1972
2370
  export const listUserAddresses = (options) => (options.client ?? client).get({
1973
2371
  security: [{
1974
- key: 'operatorBearer',
2372
+ key: 'controlBearer',
1975
2373
  scheme: 'bearer',
1976
2374
  type: 'http'
1977
2375
  }, {
1978
2376
  in: 'cookie',
1979
- name: 'p93_operator_access',
2377
+ name: 'p93_control_access',
1980
2378
  type: 'apiKey'
1981
2379
  }],
1982
2380
  url: '/v1/control/applications/{application_id}/users/{user_id}/addresses',
@@ -1984,12 +2382,12 @@ export const listUserAddresses = (options) => (options.client ?? client).get({
1984
2382
  });
1985
2383
  export const listOAuthConsents = (options) => (options.client ?? client).get({
1986
2384
  security: [{
1987
- key: 'operatorBearer',
2385
+ key: 'controlBearer',
1988
2386
  scheme: 'bearer',
1989
2387
  type: 'http'
1990
2388
  }, {
1991
2389
  in: 'cookie',
1992
- name: 'p93_operator_access',
2390
+ name: 'p93_control_access',
1993
2391
  type: 'apiKey'
1994
2392
  }],
1995
2393
  url: '/v1/control/applications/{application_id}/oauth-consents',
@@ -1997,12 +2395,12 @@ export const listOAuthConsents = (options) => (options.client ?? client).get({
1997
2395
  });
1998
2396
  export const revokeOAuthConsent = (options) => (options.client ?? client).post({
1999
2397
  security: [{
2000
- key: 'operatorBearer',
2398
+ key: 'controlBearer',
2001
2399
  scheme: 'bearer',
2002
2400
  type: 'http'
2003
2401
  }, {
2004
2402
  in: 'cookie',
2005
- name: 'p93_operator_access',
2403
+ name: 'p93_control_access',
2006
2404
  type: 'apiKey'
2007
2405
  }],
2008
2406
  url: '/v1/control/applications/{application_id}/oauth-consents/{user_id}/{client_id}/revoke',
@@ -2010,12 +2408,12 @@ export const revokeOAuthConsent = (options) => (options.client ?? client).post({
2010
2408
  });
2011
2409
  export const listFeatures = (options) => (options.client ?? client).get({
2012
2410
  security: [{
2013
- key: 'operatorBearer',
2411
+ key: 'controlBearer',
2014
2412
  scheme: 'bearer',
2015
2413
  type: 'http'
2016
2414
  }, {
2017
2415
  in: 'cookie',
2018
- name: 'p93_operator_access',
2416
+ name: 'p93_control_access',
2019
2417
  type: 'apiKey'
2020
2418
  }],
2021
2419
  url: '/v1/control/applications/{application_id}/features',
@@ -2023,12 +2421,12 @@ export const listFeatures = (options) => (options.client ?? client).get({
2023
2421
  });
2024
2422
  export const createFeature = (options) => (options.client ?? client).post({
2025
2423
  security: [{
2026
- key: 'operatorBearer',
2424
+ key: 'controlBearer',
2027
2425
  scheme: 'bearer',
2028
2426
  type: 'http'
2029
2427
  }, {
2030
2428
  in: 'cookie',
2031
- name: 'p93_operator_access',
2429
+ name: 'p93_control_access',
2032
2430
  type: 'apiKey'
2033
2431
  }],
2034
2432
  url: '/v1/control/applications/{application_id}/features',
@@ -2054,14 +2452,7 @@ export const passwordSignIn = (options) => (options.client ?? client).post({
2054
2452
  ...options.headers
2055
2453
  }
2056
2454
  });
2057
- export const authMethods = (options) => (options.client ?? client).post({
2058
- url: '/v1/applications/{application_id}/auth/methods',
2059
- ...options,
2060
- headers: {
2061
- 'Content-Type': 'application/json',
2062
- ...options.headers
2063
- }
2064
- });
2455
+ export const authMethods = (options) => (options.client ?? client).post({ url: '/v1/applications/{application_id}/auth/methods', ...options });
2065
2456
  export const emailStart = (options) => (options.client ?? client).post({
2066
2457
  url: '/v1/applications/{application_id}/auth/email/start',
2067
2458
  ...options,
@@ -2111,7 +2502,7 @@ export const startGoogleAuth = (options) => (options.client ?? client).post({
2111
2502
  ...options.headers
2112
2503
  }
2113
2504
  });
2114
- export const googleAuthCallback = (options) => (options.client ?? client).get({ url: '/v1/applications/{application_id}/auth/providers/google/callback', ...options });
2505
+ export const googleAuthCallback = (options) => (options?.client ?? client).get({ url: '/v1/auth/providers/google/callback', ...options });
2115
2506
  export const exchangeGoogleAuth = (options) => (options.client ?? client).post({
2116
2507
  url: '/v1/applications/{application_id}/auth/providers/google/exchange',
2117
2508
  ...options,
@@ -2128,13 +2519,13 @@ export const startAppleAuth = (options) => (options.client ?? client).post({
2128
2519
  ...options.headers
2129
2520
  }
2130
2521
  });
2131
- export const appleAuthCallback = (options) => (options.client ?? client).post({
2522
+ export const appleAuthCallback = (options) => (options?.client ?? client).post({
2132
2523
  ...urlSearchParamsBodySerializer,
2133
- url: '/v1/applications/{application_id}/auth/providers/apple/callback',
2524
+ url: '/v1/auth/providers/apple/callback',
2134
2525
  ...options,
2135
2526
  headers: {
2136
2527
  'Content-Type': 'application/x-www-form-urlencoded',
2137
- ...options.headers
2528
+ ...options?.headers
2138
2529
  }
2139
2530
  });
2140
2531
  export const exchangeAppleAuth = (options) => (options.client ?? client).post({
@@ -2169,6 +2560,22 @@ export const finishWebAuthnAuthentication = (options) => (options.client ?? clie
2169
2560
  ...options.headers
2170
2561
  }
2171
2562
  });
2563
+ export const exchangeApplicationInvitation = (options) => (options.client ?? client).post({
2564
+ url: '/v1/applications/{application_id}/auth/invitations/exchange',
2565
+ ...options,
2566
+ headers: {
2567
+ 'Content-Type': 'application/json',
2568
+ ...options.headers
2569
+ }
2570
+ });
2571
+ export const redeemApplicationInvitation = (options) => (options.client ?? client).post({
2572
+ url: '/v1/applications/{application_id}/auth/invitations/token',
2573
+ ...options,
2574
+ headers: {
2575
+ 'Content-Type': 'application/json',
2576
+ ...options.headers
2577
+ }
2578
+ });
2172
2579
  export const deleteMyAccount = (options) => (options.client ?? client).delete({
2173
2580
  security: [{
2174
2581
  key: 'bearerAuth',
@@ -2234,12 +2641,12 @@ export const createPersonalApiKey = (options) => (options.client ?? client).post
2234
2641
  export const publicCatalog = (options) => (options.client ?? client).get({ url: '/v1/applications/{application_id}/catalog/products', ...options });
2235
2642
  export const listProducts = (options) => (options.client ?? client).get({
2236
2643
  security: [{
2237
- key: 'operatorBearer',
2644
+ key: 'controlBearer',
2238
2645
  scheme: 'bearer',
2239
2646
  type: 'http'
2240
2647
  }, {
2241
2648
  in: 'cookie',
2242
- name: 'p93_operator_access',
2649
+ name: 'p93_control_access',
2243
2650
  type: 'apiKey'
2244
2651
  }],
2245
2652
  url: '/v1/control/applications/{application_id}/products',
@@ -2247,12 +2654,12 @@ export const listProducts = (options) => (options.client ?? client).get({
2247
2654
  });
2248
2655
  export const createProduct = (options) => (options.client ?? client).post({
2249
2656
  security: [{
2250
- key: 'operatorBearer',
2657
+ key: 'controlBearer',
2251
2658
  scheme: 'bearer',
2252
2659
  type: 'http'
2253
2660
  }, {
2254
2661
  in: 'cookie',
2255
- name: 'p93_operator_access',
2662
+ name: 'p93_control_access',
2256
2663
  type: 'apiKey'
2257
2664
  }],
2258
2665
  url: '/v1/control/applications/{application_id}/products',
@@ -2264,12 +2671,12 @@ export const createProduct = (options) => (options.client ?? client).post({
2264
2671
  });
2265
2672
  export const listPrices = (options) => (options.client ?? client).get({
2266
2673
  security: [{
2267
- key: 'operatorBearer',
2674
+ key: 'controlBearer',
2268
2675
  scheme: 'bearer',
2269
2676
  type: 'http'
2270
2677
  }, {
2271
2678
  in: 'cookie',
2272
- name: 'p93_operator_access',
2679
+ name: 'p93_control_access',
2273
2680
  type: 'apiKey'
2274
2681
  }],
2275
2682
  url: '/v1/control/applications/{application_id}/products/{product_id}/prices',
@@ -2277,12 +2684,12 @@ export const listPrices = (options) => (options.client ?? client).get({
2277
2684
  });
2278
2685
  export const createPrice = (options) => (options.client ?? client).post({
2279
2686
  security: [{
2280
- key: 'operatorBearer',
2687
+ key: 'controlBearer',
2281
2688
  scheme: 'bearer',
2282
2689
  type: 'http'
2283
2690
  }, {
2284
2691
  in: 'cookie',
2285
- name: 'p93_operator_access',
2692
+ name: 'p93_control_access',
2286
2693
  type: 'apiKey'
2287
2694
  }],
2288
2695
  url: '/v1/control/applications/{application_id}/products/{product_id}/prices',
@@ -2294,12 +2701,12 @@ export const createPrice = (options) => (options.client ?? client).post({
2294
2701
  });
2295
2702
  export const getProduct = (options) => (options.client ?? client).get({
2296
2703
  security: [{
2297
- key: 'operatorBearer',
2704
+ key: 'controlBearer',
2298
2705
  scheme: 'bearer',
2299
2706
  type: 'http'
2300
2707
  }, {
2301
2708
  in: 'cookie',
2302
- name: 'p93_operator_access',
2709
+ name: 'p93_control_access',
2303
2710
  type: 'apiKey'
2304
2711
  }],
2305
2712
  url: '/v1/control/applications/{application_id}/products/{product_id}',
@@ -2307,12 +2714,12 @@ export const getProduct = (options) => (options.client ?? client).get({
2307
2714
  });
2308
2715
  export const updateProduct = (options) => (options.client ?? client).patch({
2309
2716
  security: [{
2310
- key: 'operatorBearer',
2717
+ key: 'controlBearer',
2311
2718
  scheme: 'bearer',
2312
2719
  type: 'http'
2313
2720
  }, {
2314
2721
  in: 'cookie',
2315
- name: 'p93_operator_access',
2722
+ name: 'p93_control_access',
2316
2723
  type: 'apiKey'
2317
2724
  }],
2318
2725
  url: '/v1/control/applications/{application_id}/products/{product_id}',
@@ -2324,12 +2731,12 @@ export const updateProduct = (options) => (options.client ?? client).patch({
2324
2731
  });
2325
2732
  export const listEntitlements = (options) => (options.client ?? client).get({
2326
2733
  security: [{
2327
- key: 'operatorBearer',
2734
+ key: 'controlBearer',
2328
2735
  scheme: 'bearer',
2329
2736
  type: 'http'
2330
2737
  }, {
2331
2738
  in: 'cookie',
2332
- name: 'p93_operator_access',
2739
+ name: 'p93_control_access',
2333
2740
  type: 'apiKey'
2334
2741
  }],
2335
2742
  url: '/v1/control/applications/{application_id}/entitlements',
@@ -2337,12 +2744,12 @@ export const listEntitlements = (options) => (options.client ?? client).get({
2337
2744
  });
2338
2745
  export const createEntitlement = (options) => (options.client ?? client).post({
2339
2746
  security: [{
2340
- key: 'operatorBearer',
2747
+ key: 'controlBearer',
2341
2748
  scheme: 'bearer',
2342
2749
  type: 'http'
2343
2750
  }, {
2344
2751
  in: 'cookie',
2345
- name: 'p93_operator_access',
2752
+ name: 'p93_control_access',
2346
2753
  type: 'apiKey'
2347
2754
  }],
2348
2755
  url: '/v1/control/applications/{application_id}/entitlements',
@@ -2354,12 +2761,12 @@ export const createEntitlement = (options) => (options.client ?? client).post({
2354
2761
  });
2355
2762
  export const getEntitlement = (options) => (options.client ?? client).get({
2356
2763
  security: [{
2357
- key: 'operatorBearer',
2764
+ key: 'controlBearer',
2358
2765
  scheme: 'bearer',
2359
2766
  type: 'http'
2360
2767
  }, {
2361
2768
  in: 'cookie',
2362
- name: 'p93_operator_access',
2769
+ name: 'p93_control_access',
2363
2770
  type: 'apiKey'
2364
2771
  }],
2365
2772
  url: '/v1/control/applications/{application_id}/entitlements/{entitlement_id}',
@@ -2367,12 +2774,12 @@ export const getEntitlement = (options) => (options.client ?? client).get({
2367
2774
  });
2368
2775
  export const revokeEntitlement = (options) => (options.client ?? client).post({
2369
2776
  security: [{
2370
- key: 'operatorBearer',
2777
+ key: 'controlBearer',
2371
2778
  scheme: 'bearer',
2372
2779
  type: 'http'
2373
2780
  }, {
2374
2781
  in: 'cookie',
2375
- name: 'p93_operator_access',
2782
+ name: 'p93_control_access',
2376
2783
  type: 'apiKey'
2377
2784
  }],
2378
2785
  url: '/v1/control/applications/{application_id}/entitlements/{entitlement_id}/revoke',
@@ -2382,14 +2789,31 @@ export const revokeEntitlement = (options) => (options.client ?? client).post({
2382
2789
  ...options.headers
2383
2790
  }
2384
2791
  });
2792
+ export const adjustEntitlement = (options) => (options.client ?? client).post({
2793
+ security: [{
2794
+ key: 'controlBearer',
2795
+ scheme: 'bearer',
2796
+ type: 'http'
2797
+ }, {
2798
+ in: 'cookie',
2799
+ name: 'p93_control_access',
2800
+ type: 'apiKey'
2801
+ }],
2802
+ url: '/v1/control/applications/{application_id}/entitlements/{entitlement_id}/adjust',
2803
+ ...options,
2804
+ headers: {
2805
+ 'Content-Type': 'application/json',
2806
+ ...options.headers
2807
+ }
2808
+ });
2385
2809
  export const restoreEntitlement = (options) => (options.client ?? client).post({
2386
2810
  security: [{
2387
- key: 'operatorBearer',
2811
+ key: 'controlBearer',
2388
2812
  scheme: 'bearer',
2389
2813
  type: 'http'
2390
2814
  }, {
2391
2815
  in: 'cookie',
2392
- name: 'p93_operator_access',
2816
+ name: 'p93_control_access',
2393
2817
  type: 'apiKey'
2394
2818
  }],
2395
2819
  url: '/v1/control/applications/{application_id}/entitlements/{entitlement_id}/restore',
@@ -2401,12 +2825,12 @@ export const restoreEntitlement = (options) => (options.client ?? client).post({
2401
2825
  });
2402
2826
  export const listLocalEntitlementRequests = (options) => (options.client ?? client).get({
2403
2827
  security: [{
2404
- key: 'operatorBearer',
2828
+ key: 'controlBearer',
2405
2829
  scheme: 'bearer',
2406
2830
  type: 'http'
2407
2831
  }, {
2408
2832
  in: 'cookie',
2409
- name: 'p93_operator_access',
2833
+ name: 'p93_control_access',
2410
2834
  type: 'apiKey'
2411
2835
  }],
2412
2836
  url: '/v1/control/applications/{application_id}/local-entitlement-requests',
@@ -2414,12 +2838,12 @@ export const listLocalEntitlementRequests = (options) => (options.client ?? clie
2414
2838
  });
2415
2839
  export const getLocalEntitlementRequest = (options) => (options.client ?? client).get({
2416
2840
  security: [{
2417
- key: 'operatorBearer',
2841
+ key: 'controlBearer',
2418
2842
  scheme: 'bearer',
2419
2843
  type: 'http'
2420
2844
  }, {
2421
2845
  in: 'cookie',
2422
- name: 'p93_operator_access',
2846
+ name: 'p93_control_access',
2423
2847
  type: 'apiKey'
2424
2848
  }],
2425
2849
  url: '/v1/control/applications/{application_id}/local-entitlement-requests/{request_id}',
@@ -2427,12 +2851,12 @@ export const getLocalEntitlementRequest = (options) => (options.client ?? client
2427
2851
  });
2428
2852
  export const approveLocalEntitlementRequest = (options) => (options.client ?? client).post({
2429
2853
  security: [{
2430
- key: 'operatorBearer',
2854
+ key: 'controlBearer',
2431
2855
  scheme: 'bearer',
2432
2856
  type: 'http'
2433
2857
  }, {
2434
2858
  in: 'cookie',
2435
- name: 'p93_operator_access',
2859
+ name: 'p93_control_access',
2436
2860
  type: 'apiKey'
2437
2861
  }],
2438
2862
  url: '/v1/control/applications/{application_id}/local-entitlement-requests/{request_id}/approve',
@@ -2444,12 +2868,12 @@ export const approveLocalEntitlementRequest = (options) => (options.client ?? cl
2444
2868
  });
2445
2869
  export const rejectLocalEntitlementRequest = (options) => (options.client ?? client).post({
2446
2870
  security: [{
2447
- key: 'operatorBearer',
2871
+ key: 'controlBearer',
2448
2872
  scheme: 'bearer',
2449
2873
  type: 'http'
2450
2874
  }, {
2451
2875
  in: 'cookie',
2452
- name: 'p93_operator_access',
2876
+ name: 'p93_control_access',
2453
2877
  type: 'apiKey'
2454
2878
  }],
2455
2879
  url: '/v1/control/applications/{application_id}/local-entitlement-requests/{request_id}/reject',
@@ -2461,12 +2885,12 @@ export const rejectLocalEntitlementRequest = (options) => (options.client ?? cli
2461
2885
  });
2462
2886
  export const reopenLocalEntitlementRequest = (options) => (options.client ?? client).post({
2463
2887
  security: [{
2464
- key: 'operatorBearer',
2888
+ key: 'controlBearer',
2465
2889
  scheme: 'bearer',
2466
2890
  type: 'http'
2467
2891
  }, {
2468
2892
  in: 'cookie',
2469
- name: 'p93_operator_access',
2893
+ name: 'p93_control_access',
2470
2894
  type: 'apiKey'
2471
2895
  }],
2472
2896
  url: '/v1/control/applications/{application_id}/local-entitlement-requests/{request_id}/reopen',
@@ -2527,12 +2951,12 @@ export const listMyEntitlements = (options) => (options.client ?? client).get({
2527
2951
  });
2528
2952
  export const listBillingProviders = (options) => (options.client ?? client).get({
2529
2953
  security: [{
2530
- key: 'operatorBearer',
2954
+ key: 'controlBearer',
2531
2955
  scheme: 'bearer',
2532
2956
  type: 'http'
2533
2957
  }, {
2534
2958
  in: 'cookie',
2535
- name: 'p93_operator_access',
2959
+ name: 'p93_control_access',
2536
2960
  type: 'apiKey'
2537
2961
  }],
2538
2962
  url: '/v1/control/applications/{application_id}/billing/providers',
@@ -2540,12 +2964,12 @@ export const listBillingProviders = (options) => (options.client ?? client).get(
2540
2964
  });
2541
2965
  export const createBillingProvider = (options) => (options.client ?? client).post({
2542
2966
  security: [{
2543
- key: 'operatorBearer',
2967
+ key: 'controlBearer',
2544
2968
  scheme: 'bearer',
2545
2969
  type: 'http'
2546
2970
  }, {
2547
2971
  in: 'cookie',
2548
- name: 'p93_operator_access',
2972
+ name: 'p93_control_access',
2549
2973
  type: 'apiKey'
2550
2974
  }],
2551
2975
  url: '/v1/control/applications/{application_id}/billing/providers',
@@ -2557,12 +2981,12 @@ export const createBillingProvider = (options) => (options.client ?? client).pos
2557
2981
  });
2558
2982
  export const disableBillingProvider = (options) => (options.client ?? client).delete({
2559
2983
  security: [{
2560
- key: 'operatorBearer',
2984
+ key: 'controlBearer',
2561
2985
  scheme: 'bearer',
2562
2986
  type: 'http'
2563
2987
  }, {
2564
2988
  in: 'cookie',
2565
- name: 'p93_operator_access',
2989
+ name: 'p93_control_access',
2566
2990
  type: 'apiKey'
2567
2991
  }],
2568
2992
  url: '/v1/control/applications/{application_id}/billing/providers/{provider_id}',
@@ -2570,12 +2994,12 @@ export const disableBillingProvider = (options) => (options.client ?? client).de
2570
2994
  });
2571
2995
  export const getBillingProvider = (options) => (options.client ?? client).get({
2572
2996
  security: [{
2573
- key: 'operatorBearer',
2997
+ key: 'controlBearer',
2574
2998
  scheme: 'bearer',
2575
2999
  type: 'http'
2576
3000
  }, {
2577
3001
  in: 'cookie',
2578
- name: 'p93_operator_access',
3002
+ name: 'p93_control_access',
2579
3003
  type: 'apiKey'
2580
3004
  }],
2581
3005
  url: '/v1/control/applications/{application_id}/billing/providers/{provider_id}',
@@ -2583,12 +3007,12 @@ export const getBillingProvider = (options) => (options.client ?? client).get({
2583
3007
  });
2584
3008
  export const updateBillingProvider = (options) => (options.client ?? client).patch({
2585
3009
  security: [{
2586
- key: 'operatorBearer',
3010
+ key: 'controlBearer',
2587
3011
  scheme: 'bearer',
2588
3012
  type: 'http'
2589
3013
  }, {
2590
3014
  in: 'cookie',
2591
- name: 'p93_operator_access',
3015
+ name: 'p93_control_access',
2592
3016
  type: 'apiKey'
2593
3017
  }],
2594
3018
  url: '/v1/control/applications/{application_id}/billing/providers/{provider_id}',
@@ -2600,12 +3024,12 @@ export const updateBillingProvider = (options) => (options.client ?? client).pat
2600
3024
  });
2601
3025
  export const verifyBillingProvider = (options) => (options.client ?? client).post({
2602
3026
  security: [{
2603
- key: 'operatorBearer',
3027
+ key: 'controlBearer',
2604
3028
  scheme: 'bearer',
2605
3029
  type: 'http'
2606
3030
  }, {
2607
3031
  in: 'cookie',
2608
- name: 'p93_operator_access',
3032
+ name: 'p93_control_access',
2609
3033
  type: 'apiKey'
2610
3034
  }],
2611
3035
  url: '/v1/control/applications/{application_id}/billing/providers/{provider_id}/verify',
@@ -2648,12 +3072,12 @@ export const createBillingPortalSession = (options) => (options.client ?? client
2648
3072
  });
2649
3073
  export const listSubscriptions = (options) => (options.client ?? client).get({
2650
3074
  security: [{
2651
- key: 'operatorBearer',
3075
+ key: 'controlBearer',
2652
3076
  scheme: 'bearer',
2653
3077
  type: 'http'
2654
3078
  }, {
2655
3079
  in: 'cookie',
2656
- name: 'p93_operator_access',
3080
+ name: 'p93_control_access',
2657
3081
  type: 'apiKey'
2658
3082
  }],
2659
3083
  url: '/v1/control/applications/{application_id}/billing/subscriptions',
@@ -2661,12 +3085,12 @@ export const listSubscriptions = (options) => (options.client ?? client).get({
2661
3085
  });
2662
3086
  export const getSubscription = (options) => (options.client ?? client).get({
2663
3087
  security: [{
2664
- key: 'operatorBearer',
3088
+ key: 'controlBearer',
2665
3089
  scheme: 'bearer',
2666
3090
  type: 'http'
2667
3091
  }, {
2668
3092
  in: 'cookie',
2669
- name: 'p93_operator_access',
3093
+ name: 'p93_control_access',
2670
3094
  type: 'apiKey'
2671
3095
  }],
2672
3096
  url: '/v1/control/applications/{application_id}/billing/subscriptions/{subscription_id}',
@@ -2674,12 +3098,12 @@ export const getSubscription = (options) => (options.client ?? client).get({
2674
3098
  });
2675
3099
  export const cancelSubscription = (options) => (options.client ?? client).post({
2676
3100
  security: [{
2677
- key: 'operatorBearer',
3101
+ key: 'controlBearer',
2678
3102
  scheme: 'bearer',
2679
3103
  type: 'http'
2680
3104
  }, {
2681
3105
  in: 'cookie',
2682
- name: 'p93_operator_access',
3106
+ name: 'p93_control_access',
2683
3107
  type: 'apiKey'
2684
3108
  }],
2685
3109
  url: '/v1/control/applications/{application_id}/billing/subscriptions/{subscription_id}/cancel',
@@ -2691,12 +3115,12 @@ export const cancelSubscription = (options) => (options.client ?? client).post({
2691
3115
  });
2692
3116
  export const resumeSubscription = (options) => (options.client ?? client).post({
2693
3117
  security: [{
2694
- key: 'operatorBearer',
3118
+ key: 'controlBearer',
2695
3119
  scheme: 'bearer',
2696
3120
  type: 'http'
2697
3121
  }, {
2698
3122
  in: 'cookie',
2699
- name: 'p93_operator_access',
3123
+ name: 'p93_control_access',
2700
3124
  type: 'apiKey'
2701
3125
  }],
2702
3126
  url: '/v1/control/applications/{application_id}/billing/subscriptions/{subscription_id}/resume',
@@ -2704,12 +3128,12 @@ export const resumeSubscription = (options) => (options.client ?? client).post({
2704
3128
  });
2705
3129
  export const changeSubscriptionPrice = (options) => (options.client ?? client).post({
2706
3130
  security: [{
2707
- key: 'operatorBearer',
3131
+ key: 'controlBearer',
2708
3132
  scheme: 'bearer',
2709
3133
  type: 'http'
2710
3134
  }, {
2711
3135
  in: 'cookie',
2712
- name: 'p93_operator_access',
3136
+ name: 'p93_control_access',
2713
3137
  type: 'apiKey'
2714
3138
  }],
2715
3139
  url: '/v1/control/applications/{application_id}/billing/subscriptions/{subscription_id}/change-price',
@@ -2721,12 +3145,12 @@ export const changeSubscriptionPrice = (options) => (options.client ?? client).p
2721
3145
  });
2722
3146
  export const listInvoices = (options) => (options.client ?? client).get({
2723
3147
  security: [{
2724
- key: 'operatorBearer',
3148
+ key: 'controlBearer',
2725
3149
  scheme: 'bearer',
2726
3150
  type: 'http'
2727
3151
  }, {
2728
3152
  in: 'cookie',
2729
- name: 'p93_operator_access',
3153
+ name: 'p93_control_access',
2730
3154
  type: 'apiKey'
2731
3155
  }],
2732
3156
  url: '/v1/control/applications/{application_id}/billing/invoices',
@@ -2734,12 +3158,12 @@ export const listInvoices = (options) => (options.client ?? client).get({
2734
3158
  });
2735
3159
  export const getInvoice = (options) => (options.client ?? client).get({
2736
3160
  security: [{
2737
- key: 'operatorBearer',
3161
+ key: 'controlBearer',
2738
3162
  scheme: 'bearer',
2739
3163
  type: 'http'
2740
3164
  }, {
2741
3165
  in: 'cookie',
2742
- name: 'p93_operator_access',
3166
+ name: 'p93_control_access',
2743
3167
  type: 'apiKey'
2744
3168
  }],
2745
3169
  url: '/v1/control/applications/{application_id}/billing/invoices/{invoice_id}',
@@ -2747,12 +3171,12 @@ export const getInvoice = (options) => (options.client ?? client).get({
2747
3171
  });
2748
3172
  export const listPayments = (options) => (options.client ?? client).get({
2749
3173
  security: [{
2750
- key: 'operatorBearer',
3174
+ key: 'controlBearer',
2751
3175
  scheme: 'bearer',
2752
3176
  type: 'http'
2753
3177
  }, {
2754
3178
  in: 'cookie',
2755
- name: 'p93_operator_access',
3179
+ name: 'p93_control_access',
2756
3180
  type: 'apiKey'
2757
3181
  }],
2758
3182
  url: '/v1/control/applications/{application_id}/billing/payments',
@@ -2760,12 +3184,12 @@ export const listPayments = (options) => (options.client ?? client).get({
2760
3184
  });
2761
3185
  export const getPayment = (options) => (options.client ?? client).get({
2762
3186
  security: [{
2763
- key: 'operatorBearer',
3187
+ key: 'controlBearer',
2764
3188
  scheme: 'bearer',
2765
3189
  type: 'http'
2766
3190
  }, {
2767
3191
  in: 'cookie',
2768
- name: 'p93_operator_access',
3192
+ name: 'p93_control_access',
2769
3193
  type: 'apiKey'
2770
3194
  }],
2771
3195
  url: '/v1/control/applications/{application_id}/billing/payments/{payment_id}',
@@ -2773,12 +3197,12 @@ export const getPayment = (options) => (options.client ?? client).get({
2773
3197
  });
2774
3198
  export const createRefund = (options) => (options.client ?? client).post({
2775
3199
  security: [{
2776
- key: 'operatorBearer',
3200
+ key: 'controlBearer',
2777
3201
  scheme: 'bearer',
2778
3202
  type: 'http'
2779
3203
  }, {
2780
3204
  in: 'cookie',
2781
- name: 'p93_operator_access',
3205
+ name: 'p93_control_access',
2782
3206
  type: 'apiKey'
2783
3207
  }],
2784
3208
  url: '/v1/control/applications/{application_id}/billing/payments/{payment_id}/refunds',
@@ -2790,12 +3214,12 @@ export const createRefund = (options) => (options.client ?? client).post({
2790
3214
  });
2791
3215
  export const listRefunds = (options) => (options.client ?? client).get({
2792
3216
  security: [{
2793
- key: 'operatorBearer',
3217
+ key: 'controlBearer',
2794
3218
  scheme: 'bearer',
2795
3219
  type: 'http'
2796
3220
  }, {
2797
3221
  in: 'cookie',
2798
- name: 'p93_operator_access',
3222
+ name: 'p93_control_access',
2799
3223
  type: 'apiKey'
2800
3224
  }],
2801
3225
  url: '/v1/control/applications/{application_id}/billing/refunds',
@@ -2803,12 +3227,12 @@ export const listRefunds = (options) => (options.client ?? client).get({
2803
3227
  });
2804
3228
  export const getRefund = (options) => (options.client ?? client).get({
2805
3229
  security: [{
2806
- key: 'operatorBearer',
3230
+ key: 'controlBearer',
2807
3231
  scheme: 'bearer',
2808
3232
  type: 'http'
2809
3233
  }, {
2810
3234
  in: 'cookie',
2811
- name: 'p93_operator_access',
3235
+ name: 'p93_control_access',
2812
3236
  type: 'apiKey'
2813
3237
  }],
2814
3238
  url: '/v1/control/applications/{application_id}/billing/refunds/{refund_id}',
@@ -2816,12 +3240,12 @@ export const getRefund = (options) => (options.client ?? client).get({
2816
3240
  });
2817
3241
  export const listDisputes = (options) => (options.client ?? client).get({
2818
3242
  security: [{
2819
- key: 'operatorBearer',
3243
+ key: 'controlBearer',
2820
3244
  scheme: 'bearer',
2821
3245
  type: 'http'
2822
3246
  }, {
2823
3247
  in: 'cookie',
2824
- name: 'p93_operator_access',
3248
+ name: 'p93_control_access',
2825
3249
  type: 'apiKey'
2826
3250
  }],
2827
3251
  url: '/v1/control/applications/{application_id}/billing/disputes',
@@ -2829,12 +3253,12 @@ export const listDisputes = (options) => (options.client ?? client).get({
2829
3253
  });
2830
3254
  export const getDispute = (options) => (options.client ?? client).get({
2831
3255
  security: [{
2832
- key: 'operatorBearer',
3256
+ key: 'controlBearer',
2833
3257
  scheme: 'bearer',
2834
3258
  type: 'http'
2835
3259
  }, {
2836
3260
  in: 'cookie',
2837
- name: 'p93_operator_access',
3261
+ name: 'p93_control_access',
2838
3262
  type: 'apiKey'
2839
3263
  }],
2840
3264
  url: '/v1/control/applications/{application_id}/billing/disputes/{dispute_id}',
@@ -2842,12 +3266,12 @@ export const getDispute = (options) => (options.client ?? client).get({
2842
3266
  });
2843
3267
  export const getBillingStatistics = (options) => (options.client ?? client).get({
2844
3268
  security: [{
2845
- key: 'operatorBearer',
3269
+ key: 'controlBearer',
2846
3270
  scheme: 'bearer',
2847
3271
  type: 'http'
2848
3272
  }, {
2849
3273
  in: 'cookie',
2850
- name: 'p93_operator_access',
3274
+ name: 'p93_control_access',
2851
3275
  type: 'apiKey'
2852
3276
  }],
2853
3277
  url: '/v1/control/applications/{application_id}/billing/statistics',
@@ -2855,12 +3279,12 @@ export const getBillingStatistics = (options) => (options.client ?? client).get(
2855
3279
  });
2856
3280
  export const listBillingProviderEvents = (options) => (options.client ?? client).get({
2857
3281
  security: [{
2858
- key: 'operatorBearer',
3282
+ key: 'controlBearer',
2859
3283
  scheme: 'bearer',
2860
3284
  type: 'http'
2861
3285
  }, {
2862
3286
  in: 'cookie',
2863
- name: 'p93_operator_access',
3287
+ name: 'p93_control_access',
2864
3288
  type: 'apiKey'
2865
3289
  }],
2866
3290
  url: '/v1/control/applications/{application_id}/billing/provider-events',
@@ -2868,12 +3292,12 @@ export const listBillingProviderEvents = (options) => (options.client ?? client)
2868
3292
  });
2869
3293
  export const replayBillingProviderEvent = (options) => (options.client ?? client).post({
2870
3294
  security: [{
2871
- key: 'operatorBearer',
3295
+ key: 'controlBearer',
2872
3296
  scheme: 'bearer',
2873
3297
  type: 'http'
2874
3298
  }, {
2875
3299
  in: 'cookie',
2876
- name: 'p93_operator_access',
3300
+ name: 'p93_control_access',
2877
3301
  type: 'apiKey'
2878
3302
  }],
2879
3303
  url: '/v1/control/applications/{application_id}/billing/provider-events/{event_id}/replay',
@@ -2881,12 +3305,12 @@ export const replayBillingProviderEvent = (options) => (options.client ?? client
2881
3305
  });
2882
3306
  export const createBillingReconciliationRun = (options) => (options.client ?? client).post({
2883
3307
  security: [{
2884
- key: 'operatorBearer',
3308
+ key: 'controlBearer',
2885
3309
  scheme: 'bearer',
2886
3310
  type: 'http'
2887
3311
  }, {
2888
3312
  in: 'cookie',
2889
- name: 'p93_operator_access',
3313
+ name: 'p93_control_access',
2890
3314
  type: 'apiKey'
2891
3315
  }],
2892
3316
  url: '/v1/control/applications/{application_id}/billing/providers/{provider_id}/reconciliation-runs',
@@ -2894,12 +3318,12 @@ export const createBillingReconciliationRun = (options) => (options.client ?? cl
2894
3318
  });
2895
3319
  export const listBillingReconciliationRuns = (options) => (options.client ?? client).get({
2896
3320
  security: [{
2897
- key: 'operatorBearer',
3321
+ key: 'controlBearer',
2898
3322
  scheme: 'bearer',
2899
3323
  type: 'http'
2900
3324
  }, {
2901
3325
  in: 'cookie',
2902
- name: 'p93_operator_access',
3326
+ name: 'p93_control_access',
2903
3327
  type: 'apiKey'
2904
3328
  }],
2905
3329
  url: '/v1/control/applications/{application_id}/billing/reconciliation-runs',
@@ -2907,12 +3331,12 @@ export const listBillingReconciliationRuns = (options) => (options.client ?? cli
2907
3331
  });
2908
3332
  export const getBillingReconciliationRun = (options) => (options.client ?? client).get({
2909
3333
  security: [{
2910
- key: 'operatorBearer',
3334
+ key: 'controlBearer',
2911
3335
  scheme: 'bearer',
2912
3336
  type: 'http'
2913
3337
  }, {
2914
3338
  in: 'cookie',
2915
- name: 'p93_operator_access',
3339
+ name: 'p93_control_access',
2916
3340
  type: 'apiKey'
2917
3341
  }],
2918
3342
  url: '/v1/control/applications/{application_id}/billing/reconciliation-runs/{run_id}',
@@ -3373,6 +3797,15 @@ export const leaveWorkspace = (options) => (options.client ?? client).delete({
3373
3797
  url: '/v1/applications/{application_id}/workspaces/{workspace_id}/membership',
3374
3798
  ...options
3375
3799
  });
3800
+ export const listMyWorkspaceInvitations = (options) => (options.client ?? client).get({
3801
+ security: [{
3802
+ key: 'bearerAuth',
3803
+ scheme: 'bearer',
3804
+ type: 'http'
3805
+ }],
3806
+ url: '/v1/applications/{application_id}/workspaces/{workspace_id}/invitations',
3807
+ ...options
3808
+ });
3376
3809
  export const createMyWorkspaceInvitation = (options) => (options.client ?? client).post({
3377
3810
  security: [{
3378
3811
  key: 'bearerAuth',
@@ -3386,6 +3819,73 @@ export const createMyWorkspaceInvitation = (options) => (options.client ?? clien
3386
3819
  ...options.headers
3387
3820
  }
3388
3821
  });
3822
+ export const revokeMyWorkspaceInvitation = (options) => (options.client ?? client).delete({
3823
+ security: [{
3824
+ key: 'bearerAuth',
3825
+ scheme: 'bearer',
3826
+ type: 'http'
3827
+ }],
3828
+ url: '/v1/applications/{application_id}/workspaces/{workspace_id}/invitations/{invitation_id}',
3829
+ ...options
3830
+ });
3831
+ export const resendMyWorkspaceInvitation = (options) => (options.client ?? client).post({
3832
+ security: [{
3833
+ key: 'bearerAuth',
3834
+ scheme: 'bearer',
3835
+ type: 'http'
3836
+ }],
3837
+ url: '/v1/applications/{application_id}/workspaces/{workspace_id}/invitations/{invitation_id}/resend',
3838
+ ...options
3839
+ });
3840
+ export const listMyWorkspaceAccess = (options) => (options.client ?? client).get({
3841
+ security: [{
3842
+ key: 'bearerAuth',
3843
+ scheme: 'bearer',
3844
+ type: 'http'
3845
+ }],
3846
+ url: '/v1/applications/{application_id}/workspaces/{workspace_id}/access',
3847
+ ...options
3848
+ });
3849
+ export const listWorkspacePermissionGrants = (options) => (options.client ?? client).get({
3850
+ security: [{
3851
+ key: 'bearerAuth',
3852
+ scheme: 'bearer',
3853
+ type: 'http'
3854
+ }],
3855
+ url: '/v1/applications/{application_id}/workspaces/{workspace_id}/permission-grants',
3856
+ ...options
3857
+ });
3858
+ export const createWorkspacePermissionGrant = (options) => (options.client ?? client).post({
3859
+ security: [{
3860
+ key: 'bearerAuth',
3861
+ scheme: 'bearer',
3862
+ type: 'http'
3863
+ }],
3864
+ url: '/v1/applications/{application_id}/workspaces/{workspace_id}/permission-grants',
3865
+ ...options,
3866
+ headers: {
3867
+ 'Content-Type': 'application/json',
3868
+ ...options.headers
3869
+ }
3870
+ });
3871
+ export const revokeWorkspacePermissionGrant = (options) => (options.client ?? client).delete({
3872
+ security: [{
3873
+ key: 'bearerAuth',
3874
+ scheme: 'bearer',
3875
+ type: 'http'
3876
+ }],
3877
+ url: '/v1/applications/{application_id}/workspaces/{workspace_id}/permission-grants/{grant_id}',
3878
+ ...options
3879
+ });
3880
+ export const getWorkspacePermissionGrant = (options) => (options.client ?? client).get({
3881
+ security: [{
3882
+ key: 'bearerAuth',
3883
+ scheme: 'bearer',
3884
+ type: 'http'
3885
+ }],
3886
+ url: '/v1/applications/{application_id}/workspaces/{workspace_id}/permission-grants/{grant_id}',
3887
+ ...options
3888
+ });
3389
3889
  export const getWorkspaceBillingProfile = (options) => (options.client ?? client).get({
3390
3890
  security: [{
3391
3891
  key: 'bearerAuth',
@@ -3461,7 +3961,7 @@ export const activateWorkspaceAddress = (options) => (options.client ?? client).
3461
3961
  url: '/v1/applications/{application_id}/workspaces/{workspace_id}/addresses/{address_id}/activate',
3462
3962
  ...options
3463
3963
  });
3464
- export const listMyWorkspaceInvitations = (options) => (options.client ?? client).get({
3964
+ export const listMyPendingInvitations = (options) => (options.client ?? client).get({
3465
3965
  security: [{
3466
3966
  key: 'bearerAuth',
3467
3967
  scheme: 'bearer',
@@ -3470,19 +3970,6 @@ export const listMyWorkspaceInvitations = (options) => (options.client ?? client
3470
3970
  url: '/v1/applications/{application_id}/me/workspace-invitations',
3471
3971
  ...options
3472
3972
  });
3473
- export const acceptMyWorkspaceInvitation = (options) => (options.client ?? client).post({
3474
- security: [{
3475
- key: 'bearerAuth',
3476
- scheme: 'bearer',
3477
- type: 'http'
3478
- }],
3479
- url: '/v1/applications/{application_id}/me/workspace-invitations/{invitation_id}/accept',
3480
- ...options,
3481
- headers: {
3482
- 'Content-Type': 'application/json',
3483
- ...options.headers
3484
- }
3485
- });
3486
3973
  export const checkMyPermissions = (options) => (options.client ?? client).post({
3487
3974
  security: [{
3488
3975
  key: 'bearerAuth',
@@ -3529,12 +4016,12 @@ export const publishCustomEvent = (options) => (options.client ?? client).post({
3529
4016
  });
3530
4017
  export const listEvents = (options) => (options.client ?? client).get({
3531
4018
  security: [{
3532
- key: 'operatorBearer',
4019
+ key: 'controlBearer',
3533
4020
  scheme: 'bearer',
3534
4021
  type: 'http'
3535
4022
  }, {
3536
4023
  in: 'cookie',
3537
- name: 'p93_operator_access',
4024
+ name: 'p93_control_access',
3538
4025
  type: 'apiKey'
3539
4026
  }],
3540
4027
  url: '/v1/control/applications/{application_id}/events',
@@ -3542,12 +4029,12 @@ export const listEvents = (options) => (options.client ?? client).get({
3542
4029
  });
3543
4030
  export const getEvent = (options) => (options.client ?? client).get({
3544
4031
  security: [{
3545
- key: 'operatorBearer',
4032
+ key: 'controlBearer',
3546
4033
  scheme: 'bearer',
3547
4034
  type: 'http'
3548
4035
  }, {
3549
4036
  in: 'cookie',
3550
- name: 'p93_operator_access',
4037
+ name: 'p93_control_access',
3551
4038
  type: 'apiKey'
3552
4039
  }],
3553
4040
  url: '/v1/control/applications/{application_id}/events/{event_id}',
@@ -3555,12 +4042,12 @@ export const getEvent = (options) => (options.client ?? client).get({
3555
4042
  });
3556
4043
  export const listEventTypes = (options) => (options.client ?? client).get({
3557
4044
  security: [{
3558
- key: 'operatorBearer',
4045
+ key: 'controlBearer',
3559
4046
  scheme: 'bearer',
3560
4047
  type: 'http'
3561
4048
  }, {
3562
4049
  in: 'cookie',
3563
- name: 'p93_operator_access',
4050
+ name: 'p93_control_access',
3564
4051
  type: 'apiKey'
3565
4052
  }],
3566
4053
  url: '/v1/control/applications/{application_id}/event-types',
@@ -3568,12 +4055,12 @@ export const listEventTypes = (options) => (options.client ?? client).get({
3568
4055
  });
3569
4056
  export const createEventType = (options) => (options.client ?? client).post({
3570
4057
  security: [{
3571
- key: 'operatorBearer',
4058
+ key: 'controlBearer',
3572
4059
  scheme: 'bearer',
3573
4060
  type: 'http'
3574
4061
  }, {
3575
4062
  in: 'cookie',
3576
- name: 'p93_operator_access',
4063
+ name: 'p93_control_access',
3577
4064
  type: 'apiKey'
3578
4065
  }],
3579
4066
  url: '/v1/control/applications/{application_id}/event-types',
@@ -3585,12 +4072,12 @@ export const createEventType = (options) => (options.client ?? client).post({
3585
4072
  });
3586
4073
  export const archiveEventType = (options) => (options.client ?? client).delete({
3587
4074
  security: [{
3588
- key: 'operatorBearer',
4075
+ key: 'controlBearer',
3589
4076
  scheme: 'bearer',
3590
4077
  type: 'http'
3591
4078
  }, {
3592
4079
  in: 'cookie',
3593
- name: 'p93_operator_access',
4080
+ name: 'p93_control_access',
3594
4081
  type: 'apiKey'
3595
4082
  }],
3596
4083
  url: '/v1/control/applications/{application_id}/event-types/{event_type_id}',
@@ -3598,12 +4085,12 @@ export const archiveEventType = (options) => (options.client ?? client).delete({
3598
4085
  });
3599
4086
  export const getEventType = (options) => (options.client ?? client).get({
3600
4087
  security: [{
3601
- key: 'operatorBearer',
4088
+ key: 'controlBearer',
3602
4089
  scheme: 'bearer',
3603
4090
  type: 'http'
3604
4091
  }, {
3605
4092
  in: 'cookie',
3606
- name: 'p93_operator_access',
4093
+ name: 'p93_control_access',
3607
4094
  type: 'apiKey'
3608
4095
  }],
3609
4096
  url: '/v1/control/applications/{application_id}/event-types/{event_type_id}',
@@ -3611,12 +4098,12 @@ export const getEventType = (options) => (options.client ?? client).get({
3611
4098
  });
3612
4099
  export const updateEventType = (options) => (options.client ?? client).patch({
3613
4100
  security: [{
3614
- key: 'operatorBearer',
4101
+ key: 'controlBearer',
3615
4102
  scheme: 'bearer',
3616
4103
  type: 'http'
3617
4104
  }, {
3618
4105
  in: 'cookie',
3619
- name: 'p93_operator_access',
4106
+ name: 'p93_control_access',
3620
4107
  type: 'apiKey'
3621
4108
  }],
3622
4109
  url: '/v1/control/applications/{application_id}/event-types/{event_type_id}',
@@ -3628,12 +4115,12 @@ export const updateEventType = (options) => (options.client ?? client).patch({
3628
4115
  });
3629
4116
  export const listAuditLogs = (options) => (options.client ?? client).get({
3630
4117
  security: [{
3631
- key: 'operatorBearer',
4118
+ key: 'controlBearer',
3632
4119
  scheme: 'bearer',
3633
4120
  type: 'http'
3634
4121
  }, {
3635
4122
  in: 'cookie',
3636
- name: 'p93_operator_access',
4123
+ name: 'p93_control_access',
3637
4124
  type: 'apiKey'
3638
4125
  }],
3639
4126
  url: '/v1/control/applications/{application_id}/audit-logs',
@@ -3641,12 +4128,12 @@ export const listAuditLogs = (options) => (options.client ?? client).get({
3641
4128
  });
3642
4129
  export const getAuditLog = (options) => (options.client ?? client).get({
3643
4130
  security: [{
3644
- key: 'operatorBearer',
4131
+ key: 'controlBearer',
3645
4132
  scheme: 'bearer',
3646
4133
  type: 'http'
3647
4134
  }, {
3648
4135
  in: 'cookie',
3649
- name: 'p93_operator_access',
4136
+ name: 'p93_control_access',
3650
4137
  type: 'apiKey'
3651
4138
  }],
3652
4139
  url: '/v1/control/applications/{application_id}/audit-logs/{audit_id}',
@@ -3654,12 +4141,12 @@ export const getAuditLog = (options) => (options.client ?? client).get({
3654
4141
  });
3655
4142
  export const createAuditExport = (options) => (options.client ?? client).post({
3656
4143
  security: [{
3657
- key: 'operatorBearer',
4144
+ key: 'controlBearer',
3658
4145
  scheme: 'bearer',
3659
4146
  type: 'http'
3660
4147
  }, {
3661
4148
  in: 'cookie',
3662
- name: 'p93_operator_access',
4149
+ name: 'p93_control_access',
3663
4150
  type: 'apiKey'
3664
4151
  }],
3665
4152
  url: '/v1/control/applications/{application_id}/audit-exports',
@@ -3671,12 +4158,12 @@ export const createAuditExport = (options) => (options.client ?? client).post({
3671
4158
  });
3672
4159
  export const getAuditExport = (options) => (options.client ?? client).get({
3673
4160
  security: [{
3674
- key: 'operatorBearer',
4161
+ key: 'controlBearer',
3675
4162
  scheme: 'bearer',
3676
4163
  type: 'http'
3677
4164
  }, {
3678
4165
  in: 'cookie',
3679
- name: 'p93_operator_access',
4166
+ name: 'p93_control_access',
3680
4167
  type: 'apiKey'
3681
4168
  }],
3682
4169
  url: '/v1/control/applications/{application_id}/audit-exports/{export_id}',
@@ -3684,12 +4171,12 @@ export const getAuditExport = (options) => (options.client ?? client).get({
3684
4171
  });
3685
4172
  export const listWebhooks = (options) => (options.client ?? client).get({
3686
4173
  security: [{
3687
- key: 'operatorBearer',
4174
+ key: 'controlBearer',
3688
4175
  scheme: 'bearer',
3689
4176
  type: 'http'
3690
4177
  }, {
3691
4178
  in: 'cookie',
3692
- name: 'p93_operator_access',
4179
+ name: 'p93_control_access',
3693
4180
  type: 'apiKey'
3694
4181
  }],
3695
4182
  url: '/v1/control/applications/{application_id}/webhooks',
@@ -3697,12 +4184,12 @@ export const listWebhooks = (options) => (options.client ?? client).get({
3697
4184
  });
3698
4185
  export const createWebhook = (options) => (options.client ?? client).post({
3699
4186
  security: [{
3700
- key: 'operatorBearer',
4187
+ key: 'controlBearer',
3701
4188
  scheme: 'bearer',
3702
4189
  type: 'http'
3703
4190
  }, {
3704
4191
  in: 'cookie',
3705
- name: 'p93_operator_access',
4192
+ name: 'p93_control_access',
3706
4193
  type: 'apiKey'
3707
4194
  }],
3708
4195
  url: '/v1/control/applications/{application_id}/webhooks',
@@ -3714,12 +4201,12 @@ export const createWebhook = (options) => (options.client ?? client).post({
3714
4201
  });
3715
4202
  export const disableWebhook = (options) => (options.client ?? client).delete({
3716
4203
  security: [{
3717
- key: 'operatorBearer',
4204
+ key: 'controlBearer',
3718
4205
  scheme: 'bearer',
3719
4206
  type: 'http'
3720
4207
  }, {
3721
4208
  in: 'cookie',
3722
- name: 'p93_operator_access',
4209
+ name: 'p93_control_access',
3723
4210
  type: 'apiKey'
3724
4211
  }],
3725
4212
  url: '/v1/control/applications/{application_id}/webhooks/{webhook_id}',
@@ -3727,12 +4214,12 @@ export const disableWebhook = (options) => (options.client ?? client).delete({
3727
4214
  });
3728
4215
  export const getWebhook = (options) => (options.client ?? client).get({
3729
4216
  security: [{
3730
- key: 'operatorBearer',
4217
+ key: 'controlBearer',
3731
4218
  scheme: 'bearer',
3732
4219
  type: 'http'
3733
4220
  }, {
3734
4221
  in: 'cookie',
3735
- name: 'p93_operator_access',
4222
+ name: 'p93_control_access',
3736
4223
  type: 'apiKey'
3737
4224
  }],
3738
4225
  url: '/v1/control/applications/{application_id}/webhooks/{webhook_id}',
@@ -3740,12 +4227,12 @@ export const getWebhook = (options) => (options.client ?? client).get({
3740
4227
  });
3741
4228
  export const updateWebhook = (options) => (options.client ?? client).patch({
3742
4229
  security: [{
3743
- key: 'operatorBearer',
4230
+ key: 'controlBearer',
3744
4231
  scheme: 'bearer',
3745
4232
  type: 'http'
3746
4233
  }, {
3747
4234
  in: 'cookie',
3748
- name: 'p93_operator_access',
4235
+ name: 'p93_control_access',
3749
4236
  type: 'apiKey'
3750
4237
  }],
3751
4238
  url: '/v1/control/applications/{application_id}/webhooks/{webhook_id}',
@@ -3757,12 +4244,12 @@ export const updateWebhook = (options) => (options.client ?? client).patch({
3757
4244
  });
3758
4245
  export const testWebhook = (options) => (options.client ?? client).post({
3759
4246
  security: [{
3760
- key: 'operatorBearer',
4247
+ key: 'controlBearer',
3761
4248
  scheme: 'bearer',
3762
4249
  type: 'http'
3763
4250
  }, {
3764
4251
  in: 'cookie',
3765
- name: 'p93_operator_access',
4252
+ name: 'p93_control_access',
3766
4253
  type: 'apiKey'
3767
4254
  }],
3768
4255
  url: '/v1/control/applications/{application_id}/webhooks/{webhook_id}/test',
@@ -3770,12 +4257,12 @@ export const testWebhook = (options) => (options.client ?? client).post({
3770
4257
  });
3771
4258
  export const rotateWebhookSecret = (options) => (options.client ?? client).post({
3772
4259
  security: [{
3773
- key: 'operatorBearer',
4260
+ key: 'controlBearer',
3774
4261
  scheme: 'bearer',
3775
4262
  type: 'http'
3776
4263
  }, {
3777
4264
  in: 'cookie',
3778
- name: 'p93_operator_access',
4265
+ name: 'p93_control_access',
3779
4266
  type: 'apiKey'
3780
4267
  }],
3781
4268
  url: '/v1/control/applications/{application_id}/webhooks/{webhook_id}/rotate-secret',
@@ -3783,12 +4270,12 @@ export const rotateWebhookSecret = (options) => (options.client ?? client).post(
3783
4270
  });
3784
4271
  export const listWebhookDeliveries = (options) => (options.client ?? client).get({
3785
4272
  security: [{
3786
- key: 'operatorBearer',
4273
+ key: 'controlBearer',
3787
4274
  scheme: 'bearer',
3788
4275
  type: 'http'
3789
4276
  }, {
3790
4277
  in: 'cookie',
3791
- name: 'p93_operator_access',
4278
+ name: 'p93_control_access',
3792
4279
  type: 'apiKey'
3793
4280
  }],
3794
4281
  url: '/v1/control/applications/{application_id}/webhook-deliveries',
@@ -3796,12 +4283,12 @@ export const listWebhookDeliveries = (options) => (options.client ?? client).get
3796
4283
  });
3797
4284
  export const getWebhookDelivery = (options) => (options.client ?? client).get({
3798
4285
  security: [{
3799
- key: 'operatorBearer',
4286
+ key: 'controlBearer',
3800
4287
  scheme: 'bearer',
3801
4288
  type: 'http'
3802
4289
  }, {
3803
4290
  in: 'cookie',
3804
- name: 'p93_operator_access',
4291
+ name: 'p93_control_access',
3805
4292
  type: 'apiKey'
3806
4293
  }],
3807
4294
  url: '/v1/control/applications/{application_id}/webhook-deliveries/{delivery_id}',
@@ -3809,12 +4296,12 @@ export const getWebhookDelivery = (options) => (options.client ?? client).get({
3809
4296
  });
3810
4297
  export const replayWebhookDelivery = (options) => (options.client ?? client).post({
3811
4298
  security: [{
3812
- key: 'operatorBearer',
4299
+ key: 'controlBearer',
3813
4300
  scheme: 'bearer',
3814
4301
  type: 'http'
3815
4302
  }, {
3816
4303
  in: 'cookie',
3817
- name: 'p93_operator_access',
4304
+ name: 'p93_control_access',
3818
4305
  type: 'apiKey'
3819
4306
  }],
3820
4307
  url: '/v1/control/applications/{application_id}/webhook-deliveries/{delivery_id}/replay',
@@ -3822,12 +4309,12 @@ export const replayWebhookDelivery = (options) => (options.client ?? client).pos
3822
4309
  });
3823
4310
  export const listNotificationProviders = (options) => (options.client ?? client).get({
3824
4311
  security: [{
3825
- key: 'operatorBearer',
4312
+ key: 'controlBearer',
3826
4313
  scheme: 'bearer',
3827
4314
  type: 'http'
3828
4315
  }, {
3829
4316
  in: 'cookie',
3830
- name: 'p93_operator_access',
4317
+ name: 'p93_control_access',
3831
4318
  type: 'apiKey'
3832
4319
  }],
3833
4320
  url: '/v1/control/applications/{application_id}/notification-providers',
@@ -3835,12 +4322,12 @@ export const listNotificationProviders = (options) => (options.client ?? client)
3835
4322
  });
3836
4323
  export const createNotificationProvider = (options) => (options.client ?? client).post({
3837
4324
  security: [{
3838
- key: 'operatorBearer',
4325
+ key: 'controlBearer',
3839
4326
  scheme: 'bearer',
3840
4327
  type: 'http'
3841
4328
  }, {
3842
4329
  in: 'cookie',
3843
- name: 'p93_operator_access',
4330
+ name: 'p93_control_access',
3844
4331
  type: 'apiKey'
3845
4332
  }],
3846
4333
  url: '/v1/control/applications/{application_id}/notification-providers',
@@ -3852,12 +4339,12 @@ export const createNotificationProvider = (options) => (options.client ?? client
3852
4339
  });
3853
4340
  export const disableNotificationProvider = (options) => (options.client ?? client).delete({
3854
4341
  security: [{
3855
- key: 'operatorBearer',
4342
+ key: 'controlBearer',
3856
4343
  scheme: 'bearer',
3857
4344
  type: 'http'
3858
4345
  }, {
3859
4346
  in: 'cookie',
3860
- name: 'p93_operator_access',
4347
+ name: 'p93_control_access',
3861
4348
  type: 'apiKey'
3862
4349
  }],
3863
4350
  url: '/v1/control/applications/{application_id}/notification-providers/{provider_id}',
@@ -3865,12 +4352,12 @@ export const disableNotificationProvider = (options) => (options.client ?? clien
3865
4352
  });
3866
4353
  export const getNotificationProvider = (options) => (options.client ?? client).get({
3867
4354
  security: [{
3868
- key: 'operatorBearer',
4355
+ key: 'controlBearer',
3869
4356
  scheme: 'bearer',
3870
4357
  type: 'http'
3871
4358
  }, {
3872
4359
  in: 'cookie',
3873
- name: 'p93_operator_access',
4360
+ name: 'p93_control_access',
3874
4361
  type: 'apiKey'
3875
4362
  }],
3876
4363
  url: '/v1/control/applications/{application_id}/notification-providers/{provider_id}',
@@ -3878,12 +4365,12 @@ export const getNotificationProvider = (options) => (options.client ?? client).g
3878
4365
  });
3879
4366
  export const updateNotificationProvider = (options) => (options.client ?? client).patch({
3880
4367
  security: [{
3881
- key: 'operatorBearer',
4368
+ key: 'controlBearer',
3882
4369
  scheme: 'bearer',
3883
4370
  type: 'http'
3884
4371
  }, {
3885
4372
  in: 'cookie',
3886
- name: 'p93_operator_access',
4373
+ name: 'p93_control_access',
3887
4374
  type: 'apiKey'
3888
4375
  }],
3889
4376
  url: '/v1/control/applications/{application_id}/notification-providers/{provider_id}',
@@ -3895,12 +4382,12 @@ export const updateNotificationProvider = (options) => (options.client ?? client
3895
4382
  });
3896
4383
  export const verifyNotificationProvider = (options) => (options.client ?? client).post({
3897
4384
  security: [{
3898
- key: 'operatorBearer',
4385
+ key: 'controlBearer',
3899
4386
  scheme: 'bearer',
3900
4387
  type: 'http'
3901
4388
  }, {
3902
4389
  in: 'cookie',
3903
- name: 'p93_operator_access',
4390
+ name: 'p93_control_access',
3904
4391
  type: 'apiKey'
3905
4392
  }],
3906
4393
  url: '/v1/control/applications/{application_id}/notification-providers/{provider_id}/verify',
@@ -3908,12 +4395,12 @@ export const verifyNotificationProvider = (options) => (options.client ?? client
3908
4395
  });
3909
4396
  export const testNotificationProvider = (options) => (options.client ?? client).post({
3910
4397
  security: [{
3911
- key: 'operatorBearer',
4398
+ key: 'controlBearer',
3912
4399
  scheme: 'bearer',
3913
4400
  type: 'http'
3914
4401
  }, {
3915
4402
  in: 'cookie',
3916
- name: 'p93_operator_access',
4403
+ name: 'p93_control_access',
3917
4404
  type: 'apiKey'
3918
4405
  }],
3919
4406
  url: '/v1/control/applications/{application_id}/notification-providers/{provider_id}/test',
@@ -3925,12 +4412,12 @@ export const testNotificationProvider = (options) => (options.client ?? client).
3925
4412
  });
3926
4413
  export const listSenderIdentities = (options) => (options.client ?? client).get({
3927
4414
  security: [{
3928
- key: 'operatorBearer',
4415
+ key: 'controlBearer',
3929
4416
  scheme: 'bearer',
3930
4417
  type: 'http'
3931
4418
  }, {
3932
4419
  in: 'cookie',
3933
- name: 'p93_operator_access',
4420
+ name: 'p93_control_access',
3934
4421
  type: 'apiKey'
3935
4422
  }],
3936
4423
  url: '/v1/control/applications/{application_id}/sender-identities',
@@ -3938,12 +4425,12 @@ export const listSenderIdentities = (options) => (options.client ?? client).get(
3938
4425
  });
3939
4426
  export const createSenderIdentity = (options) => (options.client ?? client).post({
3940
4427
  security: [{
3941
- key: 'operatorBearer',
4428
+ key: 'controlBearer',
3942
4429
  scheme: 'bearer',
3943
4430
  type: 'http'
3944
4431
  }, {
3945
4432
  in: 'cookie',
3946
- name: 'p93_operator_access',
4433
+ name: 'p93_control_access',
3947
4434
  type: 'apiKey'
3948
4435
  }],
3949
4436
  url: '/v1/control/applications/{application_id}/sender-identities',
@@ -3955,12 +4442,12 @@ export const createSenderIdentity = (options) => (options.client ?? client).post
3955
4442
  });
3956
4443
  export const setDefaultSenderIdentity = (options) => (options.client ?? client).post({
3957
4444
  security: [{
3958
- key: 'operatorBearer',
4445
+ key: 'controlBearer',
3959
4446
  scheme: 'bearer',
3960
4447
  type: 'http'
3961
4448
  }, {
3962
4449
  in: 'cookie',
3963
- name: 'p93_operator_access',
4450
+ name: 'p93_control_access',
3964
4451
  type: 'apiKey'
3965
4452
  }],
3966
4453
  url: '/v1/control/applications/{application_id}/sender-identities/{sender_id}/default',
@@ -3968,12 +4455,12 @@ export const setDefaultSenderIdentity = (options) => (options.client ?? client).
3968
4455
  });
3969
4456
  export const listInstallationNotificationTemplates = (options) => (options?.client ?? client).get({
3970
4457
  security: [{
3971
- key: 'operatorBearer',
4458
+ key: 'controlBearer',
3972
4459
  scheme: 'bearer',
3973
4460
  type: 'http'
3974
4461
  }, {
3975
4462
  in: 'cookie',
3976
- name: 'p93_operator_access',
4463
+ name: 'p93_control_access',
3977
4464
  type: 'apiKey'
3978
4465
  }],
3979
4466
  url: '/v1/control/installation/notification-templates',
@@ -3981,12 +4468,12 @@ export const listInstallationNotificationTemplates = (options) => (options?.clie
3981
4468
  });
3982
4469
  export const createInstallationNotificationTemplate = (options) => (options.client ?? client).post({
3983
4470
  security: [{
3984
- key: 'operatorBearer',
4471
+ key: 'controlBearer',
3985
4472
  scheme: 'bearer',
3986
4473
  type: 'http'
3987
4474
  }, {
3988
4475
  in: 'cookie',
3989
- name: 'p93_operator_access',
4476
+ name: 'p93_control_access',
3990
4477
  type: 'apiKey'
3991
4478
  }],
3992
4479
  url: '/v1/control/installation/notification-templates',
@@ -3998,12 +4485,12 @@ export const createInstallationNotificationTemplate = (options) => (options.clie
3998
4485
  });
3999
4486
  export const listInstallationNotificationTemplateVariables = (options) => (options?.client ?? client).get({
4000
4487
  security: [{
4001
- key: 'operatorBearer',
4488
+ key: 'controlBearer',
4002
4489
  scheme: 'bearer',
4003
4490
  type: 'http'
4004
4491
  }, {
4005
4492
  in: 'cookie',
4006
- name: 'p93_operator_access',
4493
+ name: 'p93_control_access',
4007
4494
  type: 'apiKey'
4008
4495
  }],
4009
4496
  url: '/v1/control/installation/notification-template-variables',
@@ -4011,12 +4498,12 @@ export const listInstallationNotificationTemplateVariables = (options) => (optio
4011
4498
  });
4012
4499
  export const getInstallationNotificationTemplate = (options) => (options.client ?? client).get({
4013
4500
  security: [{
4014
- key: 'operatorBearer',
4501
+ key: 'controlBearer',
4015
4502
  scheme: 'bearer',
4016
4503
  type: 'http'
4017
4504
  }, {
4018
4505
  in: 'cookie',
4019
- name: 'p93_operator_access',
4506
+ name: 'p93_control_access',
4020
4507
  type: 'apiKey'
4021
4508
  }],
4022
4509
  url: '/v1/control/installation/notification-templates/{template_id}',
@@ -4024,12 +4511,12 @@ export const getInstallationNotificationTemplate = (options) => (options.client
4024
4511
  });
4025
4512
  export const updateInstallationNotificationTemplate = (options) => (options.client ?? client).patch({
4026
4513
  security: [{
4027
- key: 'operatorBearer',
4514
+ key: 'controlBearer',
4028
4515
  scheme: 'bearer',
4029
4516
  type: 'http'
4030
4517
  }, {
4031
4518
  in: 'cookie',
4032
- name: 'p93_operator_access',
4519
+ name: 'p93_control_access',
4033
4520
  type: 'apiKey'
4034
4521
  }],
4035
4522
  url: '/v1/control/installation/notification-templates/{template_id}',
@@ -4041,12 +4528,12 @@ export const updateInstallationNotificationTemplate = (options) => (options.clie
4041
4528
  });
4042
4529
  export const previewInstallationNotificationTemplate = (options) => (options.client ?? client).post({
4043
4530
  security: [{
4044
- key: 'operatorBearer',
4531
+ key: 'controlBearer',
4045
4532
  scheme: 'bearer',
4046
4533
  type: 'http'
4047
4534
  }, {
4048
4535
  in: 'cookie',
4049
- name: 'p93_operator_access',
4536
+ name: 'p93_control_access',
4050
4537
  type: 'apiKey'
4051
4538
  }],
4052
4539
  url: '/v1/control/installation/notification-templates/{template_id}/preview',
@@ -4058,12 +4545,12 @@ export const previewInstallationNotificationTemplate = (options) => (options.cli
4058
4545
  });
4059
4546
  export const publishInstallationNotificationTemplate = (options) => (options.client ?? client).post({
4060
4547
  security: [{
4061
- key: 'operatorBearer',
4548
+ key: 'controlBearer',
4062
4549
  scheme: 'bearer',
4063
4550
  type: 'http'
4064
4551
  }, {
4065
4552
  in: 'cookie',
4066
- name: 'p93_operator_access',
4553
+ name: 'p93_control_access',
4067
4554
  type: 'apiKey'
4068
4555
  }],
4069
4556
  url: '/v1/control/installation/notification-templates/{template_id}/publish',
@@ -4071,12 +4558,12 @@ export const publishInstallationNotificationTemplate = (options) => (options.cli
4071
4558
  });
4072
4559
  export const archiveInstallationNotificationTemplate = (options) => (options.client ?? client).post({
4073
4560
  security: [{
4074
- key: 'operatorBearer',
4561
+ key: 'controlBearer',
4075
4562
  scheme: 'bearer',
4076
4563
  type: 'http'
4077
4564
  }, {
4078
4565
  in: 'cookie',
4079
- name: 'p93_operator_access',
4566
+ name: 'p93_control_access',
4080
4567
  type: 'apiKey'
4081
4568
  }],
4082
4569
  url: '/v1/control/installation/notification-templates/{template_id}/archive',
@@ -4084,12 +4571,12 @@ export const archiveInstallationNotificationTemplate = (options) => (options.cli
4084
4571
  });
4085
4572
  export const listNotificationTemplates = (options) => (options.client ?? client).get({
4086
4573
  security: [{
4087
- key: 'operatorBearer',
4574
+ key: 'controlBearer',
4088
4575
  scheme: 'bearer',
4089
4576
  type: 'http'
4090
4577
  }, {
4091
4578
  in: 'cookie',
4092
- name: 'p93_operator_access',
4579
+ name: 'p93_control_access',
4093
4580
  type: 'apiKey'
4094
4581
  }],
4095
4582
  url: '/v1/control/applications/{application_id}/notification-templates',
@@ -4097,12 +4584,12 @@ export const listNotificationTemplates = (options) => (options.client ?? client)
4097
4584
  });
4098
4585
  export const createNotificationTemplate = (options) => (options.client ?? client).post({
4099
4586
  security: [{
4100
- key: 'operatorBearer',
4587
+ key: 'controlBearer',
4101
4588
  scheme: 'bearer',
4102
4589
  type: 'http'
4103
4590
  }, {
4104
4591
  in: 'cookie',
4105
- name: 'p93_operator_access',
4592
+ name: 'p93_control_access',
4106
4593
  type: 'apiKey'
4107
4594
  }],
4108
4595
  url: '/v1/control/applications/{application_id}/notification-templates',
@@ -4114,12 +4601,12 @@ export const createNotificationTemplate = (options) => (options.client ?? client
4114
4601
  });
4115
4602
  export const listNotificationTemplateVariables = (options) => (options.client ?? client).get({
4116
4603
  security: [{
4117
- key: 'operatorBearer',
4604
+ key: 'controlBearer',
4118
4605
  scheme: 'bearer',
4119
4606
  type: 'http'
4120
4607
  }, {
4121
4608
  in: 'cookie',
4122
- name: 'p93_operator_access',
4609
+ name: 'p93_control_access',
4123
4610
  type: 'apiKey'
4124
4611
  }],
4125
4612
  url: '/v1/control/applications/{application_id}/notification-template-variables',
@@ -4127,12 +4614,12 @@ export const listNotificationTemplateVariables = (options) => (options.client ??
4127
4614
  });
4128
4615
  export const getNotificationTemplate = (options) => (options.client ?? client).get({
4129
4616
  security: [{
4130
- key: 'operatorBearer',
4617
+ key: 'controlBearer',
4131
4618
  scheme: 'bearer',
4132
4619
  type: 'http'
4133
4620
  }, {
4134
4621
  in: 'cookie',
4135
- name: 'p93_operator_access',
4622
+ name: 'p93_control_access',
4136
4623
  type: 'apiKey'
4137
4624
  }],
4138
4625
  url: '/v1/control/applications/{application_id}/notification-templates/{template_id}',
@@ -4140,12 +4627,12 @@ export const getNotificationTemplate = (options) => (options.client ?? client).g
4140
4627
  });
4141
4628
  export const updateNotificationTemplate = (options) => (options.client ?? client).patch({
4142
4629
  security: [{
4143
- key: 'operatorBearer',
4630
+ key: 'controlBearer',
4144
4631
  scheme: 'bearer',
4145
4632
  type: 'http'
4146
4633
  }, {
4147
4634
  in: 'cookie',
4148
- name: 'p93_operator_access',
4635
+ name: 'p93_control_access',
4149
4636
  type: 'apiKey'
4150
4637
  }],
4151
4638
  url: '/v1/control/applications/{application_id}/notification-templates/{template_id}',
@@ -4157,12 +4644,12 @@ export const updateNotificationTemplate = (options) => (options.client ?? client
4157
4644
  });
4158
4645
  export const previewNotificationTemplate = (options) => (options.client ?? client).post({
4159
4646
  security: [{
4160
- key: 'operatorBearer',
4647
+ key: 'controlBearer',
4161
4648
  scheme: 'bearer',
4162
4649
  type: 'http'
4163
4650
  }, {
4164
4651
  in: 'cookie',
4165
- name: 'p93_operator_access',
4652
+ name: 'p93_control_access',
4166
4653
  type: 'apiKey'
4167
4654
  }],
4168
4655
  url: '/v1/control/applications/{application_id}/notification-templates/{template_id}/preview',
@@ -4174,12 +4661,12 @@ export const previewNotificationTemplate = (options) => (options.client ?? clien
4174
4661
  });
4175
4662
  export const publishNotificationTemplate = (options) => (options.client ?? client).post({
4176
4663
  security: [{
4177
- key: 'operatorBearer',
4664
+ key: 'controlBearer',
4178
4665
  scheme: 'bearer',
4179
4666
  type: 'http'
4180
4667
  }, {
4181
4668
  in: 'cookie',
4182
- name: 'p93_operator_access',
4669
+ name: 'p93_control_access',
4183
4670
  type: 'apiKey'
4184
4671
  }],
4185
4672
  url: '/v1/control/applications/{application_id}/notification-templates/{template_id}/publish',
@@ -4187,12 +4674,12 @@ export const publishNotificationTemplate = (options) => (options.client ?? clien
4187
4674
  });
4188
4675
  export const archiveNotificationTemplate = (options) => (options.client ?? client).post({
4189
4676
  security: [{
4190
- key: 'operatorBearer',
4677
+ key: 'controlBearer',
4191
4678
  scheme: 'bearer',
4192
4679
  type: 'http'
4193
4680
  }, {
4194
4681
  in: 'cookie',
4195
- name: 'p93_operator_access',
4682
+ name: 'p93_control_access',
4196
4683
  type: 'apiKey'
4197
4684
  }],
4198
4685
  url: '/v1/control/applications/{application_id}/notification-templates/{template_id}/archive',
@@ -4200,42 +4687,25 @@ export const archiveNotificationTemplate = (options) => (options.client ?? clien
4200
4687
  });
4201
4688
  export const listNotifications = (options) => (options.client ?? client).get({
4202
4689
  security: [{
4203
- key: 'operatorBearer',
4690
+ key: 'controlBearer',
4204
4691
  scheme: 'bearer',
4205
4692
  type: 'http'
4206
4693
  }, {
4207
4694
  in: 'cookie',
4208
- name: 'p93_operator_access',
4695
+ name: 'p93_control_access',
4209
4696
  type: 'apiKey'
4210
4697
  }],
4211
4698
  url: '/v1/control/applications/{application_id}/notifications',
4212
4699
  ...options
4213
4700
  });
4214
- export const queueNotification = (options) => (options.client ?? client).post({
4215
- security: [{
4216
- key: 'operatorBearer',
4217
- scheme: 'bearer',
4218
- type: 'http'
4219
- }, {
4220
- in: 'cookie',
4221
- name: 'p93_operator_access',
4222
- type: 'apiKey'
4223
- }],
4224
- url: '/v1/control/applications/{application_id}/notifications',
4225
- ...options,
4226
- headers: {
4227
- 'Content-Type': 'application/json',
4228
- ...options.headers
4229
- }
4230
- });
4231
4701
  export const getNotificationStatistics = (options) => (options.client ?? client).get({
4232
4702
  security: [{
4233
- key: 'operatorBearer',
4703
+ key: 'controlBearer',
4234
4704
  scheme: 'bearer',
4235
4705
  type: 'http'
4236
4706
  }, {
4237
4707
  in: 'cookie',
4238
- name: 'p93_operator_access',
4708
+ name: 'p93_control_access',
4239
4709
  type: 'apiKey'
4240
4710
  }],
4241
4711
  url: '/v1/control/applications/{application_id}/notifications/statistics',
@@ -4243,12 +4713,12 @@ export const getNotificationStatistics = (options) => (options.client ?? client)
4243
4713
  });
4244
4714
  export const getNotification = (options) => (options.client ?? client).get({
4245
4715
  security: [{
4246
- key: 'operatorBearer',
4716
+ key: 'controlBearer',
4247
4717
  scheme: 'bearer',
4248
4718
  type: 'http'
4249
4719
  }, {
4250
4720
  in: 'cookie',
4251
- name: 'p93_operator_access',
4721
+ name: 'p93_control_access',
4252
4722
  type: 'apiKey'
4253
4723
  }],
4254
4724
  url: '/v1/control/applications/{application_id}/notifications/{notification_id}',
@@ -4256,12 +4726,12 @@ export const getNotification = (options) => (options.client ?? client).get({
4256
4726
  });
4257
4727
  export const retryNotification = (options) => (options.client ?? client).post({
4258
4728
  security: [{
4259
- key: 'operatorBearer',
4729
+ key: 'controlBearer',
4260
4730
  scheme: 'bearer',
4261
4731
  type: 'http'
4262
4732
  }, {
4263
4733
  in: 'cookie',
4264
- name: 'p93_operator_access',
4734
+ name: 'p93_control_access',
4265
4735
  type: 'apiKey'
4266
4736
  }],
4267
4737
  url: '/v1/control/applications/{application_id}/notifications/{notification_id}/retry',
@@ -4291,12 +4761,12 @@ export const updateMyNotificationPreference = (options) => (options.client ?? cl
4291
4761
  });
4292
4762
  export const listInstallationStorageProviders = (options) => (options?.client ?? client).get({
4293
4763
  security: [{
4294
- key: 'operatorBearer',
4764
+ key: 'controlBearer',
4295
4765
  scheme: 'bearer',
4296
4766
  type: 'http'
4297
4767
  }, {
4298
4768
  in: 'cookie',
4299
- name: 'p93_operator_access',
4769
+ name: 'p93_control_access',
4300
4770
  type: 'apiKey'
4301
4771
  }],
4302
4772
  url: '/v1/control/installation/storage/providers',
@@ -4304,12 +4774,12 @@ export const listInstallationStorageProviders = (options) => (options?.client ??
4304
4774
  });
4305
4775
  export const createInstallationStorageProvider = (options) => (options.client ?? client).post({
4306
4776
  security: [{
4307
- key: 'operatorBearer',
4777
+ key: 'controlBearer',
4308
4778
  scheme: 'bearer',
4309
4779
  type: 'http'
4310
4780
  }, {
4311
4781
  in: 'cookie',
4312
- name: 'p93_operator_access',
4782
+ name: 'p93_control_access',
4313
4783
  type: 'apiKey'
4314
4784
  }],
4315
4785
  url: '/v1/control/installation/storage/providers',
@@ -4321,12 +4791,12 @@ export const createInstallationStorageProvider = (options) => (options.client ??
4321
4791
  });
4322
4792
  export const disableInstallationStorageProvider = (options) => (options.client ?? client).delete({
4323
4793
  security: [{
4324
- key: 'operatorBearer',
4794
+ key: 'controlBearer',
4325
4795
  scheme: 'bearer',
4326
4796
  type: 'http'
4327
4797
  }, {
4328
4798
  in: 'cookie',
4329
- name: 'p93_operator_access',
4799
+ name: 'p93_control_access',
4330
4800
  type: 'apiKey'
4331
4801
  }],
4332
4802
  url: '/v1/control/installation/storage/providers/{provider_id}',
@@ -4334,12 +4804,12 @@ export const disableInstallationStorageProvider = (options) => (options.client ?
4334
4804
  });
4335
4805
  export const getInstallationStorageProvider = (options) => (options.client ?? client).get({
4336
4806
  security: [{
4337
- key: 'operatorBearer',
4807
+ key: 'controlBearer',
4338
4808
  scheme: 'bearer',
4339
4809
  type: 'http'
4340
4810
  }, {
4341
4811
  in: 'cookie',
4342
- name: 'p93_operator_access',
4812
+ name: 'p93_control_access',
4343
4813
  type: 'apiKey'
4344
4814
  }],
4345
4815
  url: '/v1/control/installation/storage/providers/{provider_id}',
@@ -4347,12 +4817,12 @@ export const getInstallationStorageProvider = (options) => (options.client ?? cl
4347
4817
  });
4348
4818
  export const updateInstallationStorageProvider = (options) => (options.client ?? client).patch({
4349
4819
  security: [{
4350
- key: 'operatorBearer',
4820
+ key: 'controlBearer',
4351
4821
  scheme: 'bearer',
4352
4822
  type: 'http'
4353
4823
  }, {
4354
4824
  in: 'cookie',
4355
- name: 'p93_operator_access',
4825
+ name: 'p93_control_access',
4356
4826
  type: 'apiKey'
4357
4827
  }],
4358
4828
  url: '/v1/control/installation/storage/providers/{provider_id}',
@@ -4364,12 +4834,12 @@ export const updateInstallationStorageProvider = (options) => (options.client ??
4364
4834
  });
4365
4835
  export const verifyInstallationStorageProvider = (options) => (options.client ?? client).post({
4366
4836
  security: [{
4367
- key: 'operatorBearer',
4837
+ key: 'controlBearer',
4368
4838
  scheme: 'bearer',
4369
4839
  type: 'http'
4370
4840
  }, {
4371
4841
  in: 'cookie',
4372
- name: 'p93_operator_access',
4842
+ name: 'p93_control_access',
4373
4843
  type: 'apiKey'
4374
4844
  }],
4375
4845
  url: '/v1/control/installation/storage/providers/{provider_id}/verify',
@@ -4377,12 +4847,12 @@ export const verifyInstallationStorageProvider = (options) => (options.client ??
4377
4847
  });
4378
4848
  export const enableInstallationStorageProvider = (options) => (options.client ?? client).post({
4379
4849
  security: [{
4380
- key: 'operatorBearer',
4850
+ key: 'controlBearer',
4381
4851
  scheme: 'bearer',
4382
4852
  type: 'http'
4383
4853
  }, {
4384
4854
  in: 'cookie',
4385
- name: 'p93_operator_access',
4855
+ name: 'p93_control_access',
4386
4856
  type: 'apiKey'
4387
4857
  }],
4388
4858
  url: '/v1/control/installation/storage/providers/{provider_id}/enable',
@@ -4390,12 +4860,12 @@ export const enableInstallationStorageProvider = (options) => (options.client ??
4390
4860
  });
4391
4861
  export const listOrganizationStorageProviders = (options) => (options.client ?? client).get({
4392
4862
  security: [{
4393
- key: 'operatorBearer',
4863
+ key: 'controlBearer',
4394
4864
  scheme: 'bearer',
4395
4865
  type: 'http'
4396
4866
  }, {
4397
4867
  in: 'cookie',
4398
- name: 'p93_operator_access',
4868
+ name: 'p93_control_access',
4399
4869
  type: 'apiKey'
4400
4870
  }],
4401
4871
  url: '/v1/control/organizations/{organization_id}/storage/providers',
@@ -4403,12 +4873,12 @@ export const listOrganizationStorageProviders = (options) => (options.client ??
4403
4873
  });
4404
4874
  export const createOrganizationStorageProvider = (options) => (options.client ?? client).post({
4405
4875
  security: [{
4406
- key: 'operatorBearer',
4876
+ key: 'controlBearer',
4407
4877
  scheme: 'bearer',
4408
4878
  type: 'http'
4409
4879
  }, {
4410
4880
  in: 'cookie',
4411
- name: 'p93_operator_access',
4881
+ name: 'p93_control_access',
4412
4882
  type: 'apiKey'
4413
4883
  }],
4414
4884
  url: '/v1/control/organizations/{organization_id}/storage/providers',
@@ -4420,12 +4890,12 @@ export const createOrganizationStorageProvider = (options) => (options.client ??
4420
4890
  });
4421
4891
  export const disableOrganizationStorageProvider = (options) => (options.client ?? client).delete({
4422
4892
  security: [{
4423
- key: 'operatorBearer',
4893
+ key: 'controlBearer',
4424
4894
  scheme: 'bearer',
4425
4895
  type: 'http'
4426
4896
  }, {
4427
4897
  in: 'cookie',
4428
- name: 'p93_operator_access',
4898
+ name: 'p93_control_access',
4429
4899
  type: 'apiKey'
4430
4900
  }],
4431
4901
  url: '/v1/control/organizations/{organization_id}/storage/providers/{provider_id}',
@@ -4433,12 +4903,12 @@ export const disableOrganizationStorageProvider = (options) => (options.client ?
4433
4903
  });
4434
4904
  export const getOrganizationStorageProvider = (options) => (options.client ?? client).get({
4435
4905
  security: [{
4436
- key: 'operatorBearer',
4906
+ key: 'controlBearer',
4437
4907
  scheme: 'bearer',
4438
4908
  type: 'http'
4439
4909
  }, {
4440
4910
  in: 'cookie',
4441
- name: 'p93_operator_access',
4911
+ name: 'p93_control_access',
4442
4912
  type: 'apiKey'
4443
4913
  }],
4444
4914
  url: '/v1/control/organizations/{organization_id}/storage/providers/{provider_id}',
@@ -4446,12 +4916,12 @@ export const getOrganizationStorageProvider = (options) => (options.client ?? cl
4446
4916
  });
4447
4917
  export const updateOrganizationStorageProvider = (options) => (options.client ?? client).patch({
4448
4918
  security: [{
4449
- key: 'operatorBearer',
4919
+ key: 'controlBearer',
4450
4920
  scheme: 'bearer',
4451
4921
  type: 'http'
4452
4922
  }, {
4453
4923
  in: 'cookie',
4454
- name: 'p93_operator_access',
4924
+ name: 'p93_control_access',
4455
4925
  type: 'apiKey'
4456
4926
  }],
4457
4927
  url: '/v1/control/organizations/{organization_id}/storage/providers/{provider_id}',
@@ -4463,12 +4933,12 @@ export const updateOrganizationStorageProvider = (options) => (options.client ??
4463
4933
  });
4464
4934
  export const verifyOrganizationStorageProvider = (options) => (options.client ?? client).post({
4465
4935
  security: [{
4466
- key: 'operatorBearer',
4936
+ key: 'controlBearer',
4467
4937
  scheme: 'bearer',
4468
4938
  type: 'http'
4469
4939
  }, {
4470
4940
  in: 'cookie',
4471
- name: 'p93_operator_access',
4941
+ name: 'p93_control_access',
4472
4942
  type: 'apiKey'
4473
4943
  }],
4474
4944
  url: '/v1/control/organizations/{organization_id}/storage/providers/{provider_id}/verify',
@@ -4476,12 +4946,12 @@ export const verifyOrganizationStorageProvider = (options) => (options.client ??
4476
4946
  });
4477
4947
  export const enableOrganizationStorageProvider = (options) => (options.client ?? client).post({
4478
4948
  security: [{
4479
- key: 'operatorBearer',
4949
+ key: 'controlBearer',
4480
4950
  scheme: 'bearer',
4481
4951
  type: 'http'
4482
4952
  }, {
4483
4953
  in: 'cookie',
4484
- name: 'p93_operator_access',
4954
+ name: 'p93_control_access',
4485
4955
  type: 'apiKey'
4486
4956
  }],
4487
4957
  url: '/v1/control/organizations/{organization_id}/storage/providers/{provider_id}/enable',
@@ -4489,12 +4959,12 @@ export const enableOrganizationStorageProvider = (options) => (options.client ??
4489
4959
  });
4490
4960
  export const listApplicationStorageProviders = (options) => (options.client ?? client).get({
4491
4961
  security: [{
4492
- key: 'operatorBearer',
4962
+ key: 'controlBearer',
4493
4963
  scheme: 'bearer',
4494
4964
  type: 'http'
4495
4965
  }, {
4496
4966
  in: 'cookie',
4497
- name: 'p93_operator_access',
4967
+ name: 'p93_control_access',
4498
4968
  type: 'apiKey'
4499
4969
  }],
4500
4970
  url: '/v1/control/applications/{application_id}/storage/providers',
@@ -4502,12 +4972,12 @@ export const listApplicationStorageProviders = (options) => (options.client ?? c
4502
4972
  });
4503
4973
  export const createApplicationStorageProvider = (options) => (options.client ?? client).post({
4504
4974
  security: [{
4505
- key: 'operatorBearer',
4975
+ key: 'controlBearer',
4506
4976
  scheme: 'bearer',
4507
4977
  type: 'http'
4508
4978
  }, {
4509
4979
  in: 'cookie',
4510
- name: 'p93_operator_access',
4980
+ name: 'p93_control_access',
4511
4981
  type: 'apiKey'
4512
4982
  }],
4513
4983
  url: '/v1/control/applications/{application_id}/storage/providers',
@@ -4519,12 +4989,12 @@ export const createApplicationStorageProvider = (options) => (options.client ??
4519
4989
  });
4520
4990
  export const disableApplicationStorageProvider = (options) => (options.client ?? client).delete({
4521
4991
  security: [{
4522
- key: 'operatorBearer',
4992
+ key: 'controlBearer',
4523
4993
  scheme: 'bearer',
4524
4994
  type: 'http'
4525
4995
  }, {
4526
4996
  in: 'cookie',
4527
- name: 'p93_operator_access',
4997
+ name: 'p93_control_access',
4528
4998
  type: 'apiKey'
4529
4999
  }],
4530
5000
  url: '/v1/control/applications/{application_id}/storage/providers/{provider_id}',
@@ -4532,12 +5002,12 @@ export const disableApplicationStorageProvider = (options) => (options.client ??
4532
5002
  });
4533
5003
  export const getApplicationStorageProvider = (options) => (options.client ?? client).get({
4534
5004
  security: [{
4535
- key: 'operatorBearer',
5005
+ key: 'controlBearer',
4536
5006
  scheme: 'bearer',
4537
5007
  type: 'http'
4538
5008
  }, {
4539
5009
  in: 'cookie',
4540
- name: 'p93_operator_access',
5010
+ name: 'p93_control_access',
4541
5011
  type: 'apiKey'
4542
5012
  }],
4543
5013
  url: '/v1/control/applications/{application_id}/storage/providers/{provider_id}',
@@ -4545,12 +5015,12 @@ export const getApplicationStorageProvider = (options) => (options.client ?? cli
4545
5015
  });
4546
5016
  export const updateApplicationStorageProvider = (options) => (options.client ?? client).patch({
4547
5017
  security: [{
4548
- key: 'operatorBearer',
5018
+ key: 'controlBearer',
4549
5019
  scheme: 'bearer',
4550
5020
  type: 'http'
4551
5021
  }, {
4552
5022
  in: 'cookie',
4553
- name: 'p93_operator_access',
5023
+ name: 'p93_control_access',
4554
5024
  type: 'apiKey'
4555
5025
  }],
4556
5026
  url: '/v1/control/applications/{application_id}/storage/providers/{provider_id}',
@@ -4562,12 +5032,12 @@ export const updateApplicationStorageProvider = (options) => (options.client ??
4562
5032
  });
4563
5033
  export const verifyApplicationStorageProvider = (options) => (options.client ?? client).post({
4564
5034
  security: [{
4565
- key: 'operatorBearer',
5035
+ key: 'controlBearer',
4566
5036
  scheme: 'bearer',
4567
5037
  type: 'http'
4568
5038
  }, {
4569
5039
  in: 'cookie',
4570
- name: 'p93_operator_access',
5040
+ name: 'p93_control_access',
4571
5041
  type: 'apiKey'
4572
5042
  }],
4573
5043
  url: '/v1/control/applications/{application_id}/storage/providers/{provider_id}/verify',
@@ -4575,12 +5045,12 @@ export const verifyApplicationStorageProvider = (options) => (options.client ??
4575
5045
  });
4576
5046
  export const enableApplicationStorageProvider = (options) => (options.client ?? client).post({
4577
5047
  security: [{
4578
- key: 'operatorBearer',
5048
+ key: 'controlBearer',
4579
5049
  scheme: 'bearer',
4580
5050
  type: 'http'
4581
5051
  }, {
4582
5052
  in: 'cookie',
4583
- name: 'p93_operator_access',
5053
+ name: 'p93_control_access',
4584
5054
  type: 'apiKey'
4585
5055
  }],
4586
5056
  url: '/v1/control/applications/{application_id}/storage/providers/{provider_id}/enable',
@@ -4588,12 +5058,12 @@ export const enableApplicationStorageProvider = (options) => (options.client ??
4588
5058
  });
4589
5059
  export const createInstallationStorageUpload = (options) => (options.client ?? client).post({
4590
5060
  security: [{
4591
- key: 'operatorBearer',
5061
+ key: 'controlBearer',
4592
5062
  scheme: 'bearer',
4593
5063
  type: 'http'
4594
5064
  }, {
4595
5065
  in: 'cookie',
4596
- name: 'p93_operator_access',
5066
+ name: 'p93_control_access',
4597
5067
  type: 'apiKey'
4598
5068
  }],
4599
5069
  url: '/v1/control/installation/storage/uploads',
@@ -4605,12 +5075,12 @@ export const createInstallationStorageUpload = (options) => (options.client ?? c
4605
5075
  });
4606
5076
  export const completeInstallationStorageUpload = (options) => (options.client ?? client).post({
4607
5077
  security: [{
4608
- key: 'operatorBearer',
5078
+ key: 'controlBearer',
4609
5079
  scheme: 'bearer',
4610
5080
  type: 'http'
4611
5081
  }, {
4612
5082
  in: 'cookie',
4613
- name: 'p93_operator_access',
5083
+ name: 'p93_control_access',
4614
5084
  type: 'apiKey'
4615
5085
  }],
4616
5086
  url: '/v1/control/installation/storage/uploads/{object_id}/complete',
@@ -4618,12 +5088,12 @@ export const completeInstallationStorageUpload = (options) => (options.client ??
4618
5088
  });
4619
5089
  export const listInstallationStorageObjects = (options) => (options?.client ?? client).get({
4620
5090
  security: [{
4621
- key: 'operatorBearer',
5091
+ key: 'controlBearer',
4622
5092
  scheme: 'bearer',
4623
5093
  type: 'http'
4624
5094
  }, {
4625
5095
  in: 'cookie',
4626
- name: 'p93_operator_access',
5096
+ name: 'p93_control_access',
4627
5097
  type: 'apiKey'
4628
5098
  }],
4629
5099
  url: '/v1/control/installation/storage/objects',
@@ -4631,12 +5101,12 @@ export const listInstallationStorageObjects = (options) => (options?.client ?? c
4631
5101
  });
4632
5102
  export const deleteInstallationStorageObject = (options) => (options.client ?? client).delete({
4633
5103
  security: [{
4634
- key: 'operatorBearer',
5104
+ key: 'controlBearer',
4635
5105
  scheme: 'bearer',
4636
5106
  type: 'http'
4637
5107
  }, {
4638
5108
  in: 'cookie',
4639
- name: 'p93_operator_access',
5109
+ name: 'p93_control_access',
4640
5110
  type: 'apiKey'
4641
5111
  }],
4642
5112
  url: '/v1/control/installation/storage/objects/{object_id}',
@@ -4644,12 +5114,12 @@ export const deleteInstallationStorageObject = (options) => (options.client ?? c
4644
5114
  });
4645
5115
  export const getInstallationStorageObject = (options) => (options.client ?? client).get({
4646
5116
  security: [{
4647
- key: 'operatorBearer',
5117
+ key: 'controlBearer',
4648
5118
  scheme: 'bearer',
4649
5119
  type: 'http'
4650
5120
  }, {
4651
5121
  in: 'cookie',
4652
- name: 'p93_operator_access',
5122
+ name: 'p93_control_access',
4653
5123
  type: 'apiKey'
4654
5124
  }],
4655
5125
  url: '/v1/control/installation/storage/objects/{object_id}',
@@ -4657,12 +5127,12 @@ export const getInstallationStorageObject = (options) => (options.client ?? clie
4657
5127
  });
4658
5128
  export const downloadInstallationStorageObject = (options) => (options.client ?? client).post({
4659
5129
  security: [{
4660
- key: 'operatorBearer',
5130
+ key: 'controlBearer',
4661
5131
  scheme: 'bearer',
4662
5132
  type: 'http'
4663
5133
  }, {
4664
5134
  in: 'cookie',
4665
- name: 'p93_operator_access',
5135
+ name: 'p93_control_access',
4666
5136
  type: 'apiKey'
4667
5137
  }],
4668
5138
  url: '/v1/control/installation/storage/objects/{object_id}/download',
@@ -4670,12 +5140,12 @@ export const downloadInstallationStorageObject = (options) => (options.client ??
4670
5140
  });
4671
5141
  export const listOrganizationStorageObjects = (options) => (options.client ?? client).get({
4672
5142
  security: [{
4673
- key: 'operatorBearer',
5143
+ key: 'controlBearer',
4674
5144
  scheme: 'bearer',
4675
5145
  type: 'http'
4676
5146
  }, {
4677
5147
  in: 'cookie',
4678
- name: 'p93_operator_access',
5148
+ name: 'p93_control_access',
4679
5149
  type: 'apiKey'
4680
5150
  }],
4681
5151
  url: '/v1/control/organizations/{organization_id}/storage/objects',
@@ -4683,12 +5153,12 @@ export const listOrganizationStorageObjects = (options) => (options.client ?? cl
4683
5153
  });
4684
5154
  export const deleteOrganizationStorageObject = (options) => (options.client ?? client).delete({
4685
5155
  security: [{
4686
- key: 'operatorBearer',
5156
+ key: 'controlBearer',
4687
5157
  scheme: 'bearer',
4688
5158
  type: 'http'
4689
5159
  }, {
4690
5160
  in: 'cookie',
4691
- name: 'p93_operator_access',
5161
+ name: 'p93_control_access',
4692
5162
  type: 'apiKey'
4693
5163
  }],
4694
5164
  url: '/v1/control/organizations/{organization_id}/storage/objects/{object_id}',
@@ -4696,12 +5166,12 @@ export const deleteOrganizationStorageObject = (options) => (options.client ?? c
4696
5166
  });
4697
5167
  export const getOrganizationStorageObject = (options) => (options.client ?? client).get({
4698
5168
  security: [{
4699
- key: 'operatorBearer',
5169
+ key: 'controlBearer',
4700
5170
  scheme: 'bearer',
4701
5171
  type: 'http'
4702
5172
  }, {
4703
5173
  in: 'cookie',
4704
- name: 'p93_operator_access',
5174
+ name: 'p93_control_access',
4705
5175
  type: 'apiKey'
4706
5176
  }],
4707
5177
  url: '/v1/control/organizations/{organization_id}/storage/objects/{object_id}',
@@ -4709,12 +5179,12 @@ export const getOrganizationStorageObject = (options) => (options.client ?? clie
4709
5179
  });
4710
5180
  export const downloadOrganizationStorageObject = (options) => (options.client ?? client).post({
4711
5181
  security: [{
4712
- key: 'operatorBearer',
5182
+ key: 'controlBearer',
4713
5183
  scheme: 'bearer',
4714
5184
  type: 'http'
4715
5185
  }, {
4716
5186
  in: 'cookie',
4717
- name: 'p93_operator_access',
5187
+ name: 'p93_control_access',
4718
5188
  type: 'apiKey'
4719
5189
  }],
4720
5190
  url: '/v1/control/organizations/{organization_id}/storage/objects/{object_id}/download',
@@ -4722,12 +5192,12 @@ export const downloadOrganizationStorageObject = (options) => (options.client ??
4722
5192
  });
4723
5193
  export const createControlApplicationStorageUpload = (options) => (options.client ?? client).post({
4724
5194
  security: [{
4725
- key: 'operatorBearer',
5195
+ key: 'controlBearer',
4726
5196
  scheme: 'bearer',
4727
5197
  type: 'http'
4728
5198
  }, {
4729
5199
  in: 'cookie',
4730
- name: 'p93_operator_access',
5200
+ name: 'p93_control_access',
4731
5201
  type: 'apiKey'
4732
5202
  }],
4733
5203
  url: '/v1/control/applications/{application_id}/storage/uploads',
@@ -4739,12 +5209,12 @@ export const createControlApplicationStorageUpload = (options) => (options.clien
4739
5209
  });
4740
5210
  export const completeControlApplicationStorageUpload = (options) => (options.client ?? client).post({
4741
5211
  security: [{
4742
- key: 'operatorBearer',
5212
+ key: 'controlBearer',
4743
5213
  scheme: 'bearer',
4744
5214
  type: 'http'
4745
5215
  }, {
4746
5216
  in: 'cookie',
4747
- name: 'p93_operator_access',
5217
+ name: 'p93_control_access',
4748
5218
  type: 'apiKey'
4749
5219
  }],
4750
5220
  url: '/v1/control/applications/{application_id}/storage/uploads/{object_id}/complete',
@@ -4752,12 +5222,12 @@ export const completeControlApplicationStorageUpload = (options) => (options.cli
4752
5222
  });
4753
5223
  export const listControlApplicationStorageObjects = (options) => (options.client ?? client).get({
4754
5224
  security: [{
4755
- key: 'operatorBearer',
5225
+ key: 'controlBearer',
4756
5226
  scheme: 'bearer',
4757
5227
  type: 'http'
4758
5228
  }, {
4759
5229
  in: 'cookie',
4760
- name: 'p93_operator_access',
5230
+ name: 'p93_control_access',
4761
5231
  type: 'apiKey'
4762
5232
  }],
4763
5233
  url: '/v1/control/applications/{application_id}/storage/objects',
@@ -4765,12 +5235,12 @@ export const listControlApplicationStorageObjects = (options) => (options.client
4765
5235
  });
4766
5236
  export const deleteControlApplicationStorageObject = (options) => (options.client ?? client).delete({
4767
5237
  security: [{
4768
- key: 'operatorBearer',
5238
+ key: 'controlBearer',
4769
5239
  scheme: 'bearer',
4770
5240
  type: 'http'
4771
5241
  }, {
4772
5242
  in: 'cookie',
4773
- name: 'p93_operator_access',
5243
+ name: 'p93_control_access',
4774
5244
  type: 'apiKey'
4775
5245
  }],
4776
5246
  url: '/v1/control/applications/{application_id}/storage/objects/{object_id}',
@@ -4778,12 +5248,12 @@ export const deleteControlApplicationStorageObject = (options) => (options.clien
4778
5248
  });
4779
5249
  export const getControlApplicationStorageObject = (options) => (options.client ?? client).get({
4780
5250
  security: [{
4781
- key: 'operatorBearer',
5251
+ key: 'controlBearer',
4782
5252
  scheme: 'bearer',
4783
5253
  type: 'http'
4784
5254
  }, {
4785
5255
  in: 'cookie',
4786
- name: 'p93_operator_access',
5256
+ name: 'p93_control_access',
4787
5257
  type: 'apiKey'
4788
5258
  }],
4789
5259
  url: '/v1/control/applications/{application_id}/storage/objects/{object_id}',
@@ -4791,12 +5261,12 @@ export const getControlApplicationStorageObject = (options) => (options.client ?
4791
5261
  });
4792
5262
  export const downloadControlApplicationStorageObject = (options) => (options.client ?? client).post({
4793
5263
  security: [{
4794
- key: 'operatorBearer',
5264
+ key: 'controlBearer',
4795
5265
  scheme: 'bearer',
4796
5266
  type: 'http'
4797
5267
  }, {
4798
5268
  in: 'cookie',
4799
- name: 'p93_operator_access',
5269
+ name: 'p93_control_access',
4800
5270
  type: 'apiKey'
4801
5271
  }],
4802
5272
  url: '/v1/control/applications/{application_id}/storage/objects/{object_id}/download',