@supaapps/platform93-sdk 0.1.0-alpha.0 → 0.1.0-alpha.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.
@@ -4289,6 +4289,693 @@ export const updateMyNotificationPreference = (options) => (options.client ?? cl
4289
4289
  ...options.headers
4290
4290
  }
4291
4291
  });
4292
+ export const listInstallationStorageProviders = (options) => (options?.client ?? client).get({
4293
+ security: [{
4294
+ key: 'operatorBearer',
4295
+ scheme: 'bearer',
4296
+ type: 'http'
4297
+ }, {
4298
+ in: 'cookie',
4299
+ name: 'p93_operator_access',
4300
+ type: 'apiKey'
4301
+ }],
4302
+ url: '/v1/control/installation/storage/providers',
4303
+ ...options
4304
+ });
4305
+ export const createInstallationStorageProvider = (options) => (options.client ?? client).post({
4306
+ security: [{
4307
+ key: 'operatorBearer',
4308
+ scheme: 'bearer',
4309
+ type: 'http'
4310
+ }, {
4311
+ in: 'cookie',
4312
+ name: 'p93_operator_access',
4313
+ type: 'apiKey'
4314
+ }],
4315
+ url: '/v1/control/installation/storage/providers',
4316
+ ...options,
4317
+ headers: {
4318
+ 'Content-Type': 'application/json',
4319
+ ...options.headers
4320
+ }
4321
+ });
4322
+ export const disableInstallationStorageProvider = (options) => (options.client ?? client).delete({
4323
+ security: [{
4324
+ key: 'operatorBearer',
4325
+ scheme: 'bearer',
4326
+ type: 'http'
4327
+ }, {
4328
+ in: 'cookie',
4329
+ name: 'p93_operator_access',
4330
+ type: 'apiKey'
4331
+ }],
4332
+ url: '/v1/control/installation/storage/providers/{provider_id}',
4333
+ ...options
4334
+ });
4335
+ export const getInstallationStorageProvider = (options) => (options.client ?? client).get({
4336
+ security: [{
4337
+ key: 'operatorBearer',
4338
+ scheme: 'bearer',
4339
+ type: 'http'
4340
+ }, {
4341
+ in: 'cookie',
4342
+ name: 'p93_operator_access',
4343
+ type: 'apiKey'
4344
+ }],
4345
+ url: '/v1/control/installation/storage/providers/{provider_id}',
4346
+ ...options
4347
+ });
4348
+ export const updateInstallationStorageProvider = (options) => (options.client ?? client).patch({
4349
+ security: [{
4350
+ key: 'operatorBearer',
4351
+ scheme: 'bearer',
4352
+ type: 'http'
4353
+ }, {
4354
+ in: 'cookie',
4355
+ name: 'p93_operator_access',
4356
+ type: 'apiKey'
4357
+ }],
4358
+ url: '/v1/control/installation/storage/providers/{provider_id}',
4359
+ ...options,
4360
+ headers: {
4361
+ 'Content-Type': 'application/json',
4362
+ ...options.headers
4363
+ }
4364
+ });
4365
+ export const verifyInstallationStorageProvider = (options) => (options.client ?? client).post({
4366
+ security: [{
4367
+ key: 'operatorBearer',
4368
+ scheme: 'bearer',
4369
+ type: 'http'
4370
+ }, {
4371
+ in: 'cookie',
4372
+ name: 'p93_operator_access',
4373
+ type: 'apiKey'
4374
+ }],
4375
+ url: '/v1/control/installation/storage/providers/{provider_id}/verify',
4376
+ ...options
4377
+ });
4378
+ export const enableInstallationStorageProvider = (options) => (options.client ?? client).post({
4379
+ security: [{
4380
+ key: 'operatorBearer',
4381
+ scheme: 'bearer',
4382
+ type: 'http'
4383
+ }, {
4384
+ in: 'cookie',
4385
+ name: 'p93_operator_access',
4386
+ type: 'apiKey'
4387
+ }],
4388
+ url: '/v1/control/installation/storage/providers/{provider_id}/enable',
4389
+ ...options
4390
+ });
4391
+ export const listOrganizationStorageProviders = (options) => (options.client ?? client).get({
4392
+ security: [{
4393
+ key: 'operatorBearer',
4394
+ scheme: 'bearer',
4395
+ type: 'http'
4396
+ }, {
4397
+ in: 'cookie',
4398
+ name: 'p93_operator_access',
4399
+ type: 'apiKey'
4400
+ }],
4401
+ url: '/v1/control/organizations/{organization_id}/storage/providers',
4402
+ ...options
4403
+ });
4404
+ export const createOrganizationStorageProvider = (options) => (options.client ?? client).post({
4405
+ security: [{
4406
+ key: 'operatorBearer',
4407
+ scheme: 'bearer',
4408
+ type: 'http'
4409
+ }, {
4410
+ in: 'cookie',
4411
+ name: 'p93_operator_access',
4412
+ type: 'apiKey'
4413
+ }],
4414
+ url: '/v1/control/organizations/{organization_id}/storage/providers',
4415
+ ...options,
4416
+ headers: {
4417
+ 'Content-Type': 'application/json',
4418
+ ...options.headers
4419
+ }
4420
+ });
4421
+ export const disableOrganizationStorageProvider = (options) => (options.client ?? client).delete({
4422
+ security: [{
4423
+ key: 'operatorBearer',
4424
+ scheme: 'bearer',
4425
+ type: 'http'
4426
+ }, {
4427
+ in: 'cookie',
4428
+ name: 'p93_operator_access',
4429
+ type: 'apiKey'
4430
+ }],
4431
+ url: '/v1/control/organizations/{organization_id}/storage/providers/{provider_id}',
4432
+ ...options
4433
+ });
4434
+ export const getOrganizationStorageProvider = (options) => (options.client ?? client).get({
4435
+ security: [{
4436
+ key: 'operatorBearer',
4437
+ scheme: 'bearer',
4438
+ type: 'http'
4439
+ }, {
4440
+ in: 'cookie',
4441
+ name: 'p93_operator_access',
4442
+ type: 'apiKey'
4443
+ }],
4444
+ url: '/v1/control/organizations/{organization_id}/storage/providers/{provider_id}',
4445
+ ...options
4446
+ });
4447
+ export const updateOrganizationStorageProvider = (options) => (options.client ?? client).patch({
4448
+ security: [{
4449
+ key: 'operatorBearer',
4450
+ scheme: 'bearer',
4451
+ type: 'http'
4452
+ }, {
4453
+ in: 'cookie',
4454
+ name: 'p93_operator_access',
4455
+ type: 'apiKey'
4456
+ }],
4457
+ url: '/v1/control/organizations/{organization_id}/storage/providers/{provider_id}',
4458
+ ...options,
4459
+ headers: {
4460
+ 'Content-Type': 'application/json',
4461
+ ...options.headers
4462
+ }
4463
+ });
4464
+ export const verifyOrganizationStorageProvider = (options) => (options.client ?? client).post({
4465
+ security: [{
4466
+ key: 'operatorBearer',
4467
+ scheme: 'bearer',
4468
+ type: 'http'
4469
+ }, {
4470
+ in: 'cookie',
4471
+ name: 'p93_operator_access',
4472
+ type: 'apiKey'
4473
+ }],
4474
+ url: '/v1/control/organizations/{organization_id}/storage/providers/{provider_id}/verify',
4475
+ ...options
4476
+ });
4477
+ export const enableOrganizationStorageProvider = (options) => (options.client ?? client).post({
4478
+ security: [{
4479
+ key: 'operatorBearer',
4480
+ scheme: 'bearer',
4481
+ type: 'http'
4482
+ }, {
4483
+ in: 'cookie',
4484
+ name: 'p93_operator_access',
4485
+ type: 'apiKey'
4486
+ }],
4487
+ url: '/v1/control/organizations/{organization_id}/storage/providers/{provider_id}/enable',
4488
+ ...options
4489
+ });
4490
+ export const listApplicationStorageProviders = (options) => (options.client ?? client).get({
4491
+ security: [{
4492
+ key: 'operatorBearer',
4493
+ scheme: 'bearer',
4494
+ type: 'http'
4495
+ }, {
4496
+ in: 'cookie',
4497
+ name: 'p93_operator_access',
4498
+ type: 'apiKey'
4499
+ }],
4500
+ url: '/v1/control/applications/{application_id}/storage/providers',
4501
+ ...options
4502
+ });
4503
+ export const createApplicationStorageProvider = (options) => (options.client ?? client).post({
4504
+ security: [{
4505
+ key: 'operatorBearer',
4506
+ scheme: 'bearer',
4507
+ type: 'http'
4508
+ }, {
4509
+ in: 'cookie',
4510
+ name: 'p93_operator_access',
4511
+ type: 'apiKey'
4512
+ }],
4513
+ url: '/v1/control/applications/{application_id}/storage/providers',
4514
+ ...options,
4515
+ headers: {
4516
+ 'Content-Type': 'application/json',
4517
+ ...options.headers
4518
+ }
4519
+ });
4520
+ export const disableApplicationStorageProvider = (options) => (options.client ?? client).delete({
4521
+ security: [{
4522
+ key: 'operatorBearer',
4523
+ scheme: 'bearer',
4524
+ type: 'http'
4525
+ }, {
4526
+ in: 'cookie',
4527
+ name: 'p93_operator_access',
4528
+ type: 'apiKey'
4529
+ }],
4530
+ url: '/v1/control/applications/{application_id}/storage/providers/{provider_id}',
4531
+ ...options
4532
+ });
4533
+ export const getApplicationStorageProvider = (options) => (options.client ?? client).get({
4534
+ security: [{
4535
+ key: 'operatorBearer',
4536
+ scheme: 'bearer',
4537
+ type: 'http'
4538
+ }, {
4539
+ in: 'cookie',
4540
+ name: 'p93_operator_access',
4541
+ type: 'apiKey'
4542
+ }],
4543
+ url: '/v1/control/applications/{application_id}/storage/providers/{provider_id}',
4544
+ ...options
4545
+ });
4546
+ export const updateApplicationStorageProvider = (options) => (options.client ?? client).patch({
4547
+ security: [{
4548
+ key: 'operatorBearer',
4549
+ scheme: 'bearer',
4550
+ type: 'http'
4551
+ }, {
4552
+ in: 'cookie',
4553
+ name: 'p93_operator_access',
4554
+ type: 'apiKey'
4555
+ }],
4556
+ url: '/v1/control/applications/{application_id}/storage/providers/{provider_id}',
4557
+ ...options,
4558
+ headers: {
4559
+ 'Content-Type': 'application/json',
4560
+ ...options.headers
4561
+ }
4562
+ });
4563
+ export const verifyApplicationStorageProvider = (options) => (options.client ?? client).post({
4564
+ security: [{
4565
+ key: 'operatorBearer',
4566
+ scheme: 'bearer',
4567
+ type: 'http'
4568
+ }, {
4569
+ in: 'cookie',
4570
+ name: 'p93_operator_access',
4571
+ type: 'apiKey'
4572
+ }],
4573
+ url: '/v1/control/applications/{application_id}/storage/providers/{provider_id}/verify',
4574
+ ...options
4575
+ });
4576
+ export const enableApplicationStorageProvider = (options) => (options.client ?? client).post({
4577
+ security: [{
4578
+ key: 'operatorBearer',
4579
+ scheme: 'bearer',
4580
+ type: 'http'
4581
+ }, {
4582
+ in: 'cookie',
4583
+ name: 'p93_operator_access',
4584
+ type: 'apiKey'
4585
+ }],
4586
+ url: '/v1/control/applications/{application_id}/storage/providers/{provider_id}/enable',
4587
+ ...options
4588
+ });
4589
+ export const createInstallationStorageUpload = (options) => (options.client ?? client).post({
4590
+ security: [{
4591
+ key: 'operatorBearer',
4592
+ scheme: 'bearer',
4593
+ type: 'http'
4594
+ }, {
4595
+ in: 'cookie',
4596
+ name: 'p93_operator_access',
4597
+ type: 'apiKey'
4598
+ }],
4599
+ url: '/v1/control/installation/storage/uploads',
4600
+ ...options,
4601
+ headers: {
4602
+ 'Content-Type': 'application/json',
4603
+ ...options.headers
4604
+ }
4605
+ });
4606
+ export const completeInstallationStorageUpload = (options) => (options.client ?? client).post({
4607
+ security: [{
4608
+ key: 'operatorBearer',
4609
+ scheme: 'bearer',
4610
+ type: 'http'
4611
+ }, {
4612
+ in: 'cookie',
4613
+ name: 'p93_operator_access',
4614
+ type: 'apiKey'
4615
+ }],
4616
+ url: '/v1/control/installation/storage/uploads/{object_id}/complete',
4617
+ ...options
4618
+ });
4619
+ export const listInstallationStorageObjects = (options) => (options?.client ?? client).get({
4620
+ security: [{
4621
+ key: 'operatorBearer',
4622
+ scheme: 'bearer',
4623
+ type: 'http'
4624
+ }, {
4625
+ in: 'cookie',
4626
+ name: 'p93_operator_access',
4627
+ type: 'apiKey'
4628
+ }],
4629
+ url: '/v1/control/installation/storage/objects',
4630
+ ...options
4631
+ });
4632
+ export const deleteInstallationStorageObject = (options) => (options.client ?? client).delete({
4633
+ security: [{
4634
+ key: 'operatorBearer',
4635
+ scheme: 'bearer',
4636
+ type: 'http'
4637
+ }, {
4638
+ in: 'cookie',
4639
+ name: 'p93_operator_access',
4640
+ type: 'apiKey'
4641
+ }],
4642
+ url: '/v1/control/installation/storage/objects/{object_id}',
4643
+ ...options
4644
+ });
4645
+ export const getInstallationStorageObject = (options) => (options.client ?? client).get({
4646
+ security: [{
4647
+ key: 'operatorBearer',
4648
+ scheme: 'bearer',
4649
+ type: 'http'
4650
+ }, {
4651
+ in: 'cookie',
4652
+ name: 'p93_operator_access',
4653
+ type: 'apiKey'
4654
+ }],
4655
+ url: '/v1/control/installation/storage/objects/{object_id}',
4656
+ ...options
4657
+ });
4658
+ export const downloadInstallationStorageObject = (options) => (options.client ?? client).post({
4659
+ security: [{
4660
+ key: 'operatorBearer',
4661
+ scheme: 'bearer',
4662
+ type: 'http'
4663
+ }, {
4664
+ in: 'cookie',
4665
+ name: 'p93_operator_access',
4666
+ type: 'apiKey'
4667
+ }],
4668
+ url: '/v1/control/installation/storage/objects/{object_id}/download',
4669
+ ...options
4670
+ });
4671
+ export const listOrganizationStorageObjects = (options) => (options.client ?? client).get({
4672
+ security: [{
4673
+ key: 'operatorBearer',
4674
+ scheme: 'bearer',
4675
+ type: 'http'
4676
+ }, {
4677
+ in: 'cookie',
4678
+ name: 'p93_operator_access',
4679
+ type: 'apiKey'
4680
+ }],
4681
+ url: '/v1/control/organizations/{organization_id}/storage/objects',
4682
+ ...options
4683
+ });
4684
+ export const deleteOrganizationStorageObject = (options) => (options.client ?? client).delete({
4685
+ security: [{
4686
+ key: 'operatorBearer',
4687
+ scheme: 'bearer',
4688
+ type: 'http'
4689
+ }, {
4690
+ in: 'cookie',
4691
+ name: 'p93_operator_access',
4692
+ type: 'apiKey'
4693
+ }],
4694
+ url: '/v1/control/organizations/{organization_id}/storage/objects/{object_id}',
4695
+ ...options
4696
+ });
4697
+ export const getOrganizationStorageObject = (options) => (options.client ?? client).get({
4698
+ security: [{
4699
+ key: 'operatorBearer',
4700
+ scheme: 'bearer',
4701
+ type: 'http'
4702
+ }, {
4703
+ in: 'cookie',
4704
+ name: 'p93_operator_access',
4705
+ type: 'apiKey'
4706
+ }],
4707
+ url: '/v1/control/organizations/{organization_id}/storage/objects/{object_id}',
4708
+ ...options
4709
+ });
4710
+ export const downloadOrganizationStorageObject = (options) => (options.client ?? client).post({
4711
+ security: [{
4712
+ key: 'operatorBearer',
4713
+ scheme: 'bearer',
4714
+ type: 'http'
4715
+ }, {
4716
+ in: 'cookie',
4717
+ name: 'p93_operator_access',
4718
+ type: 'apiKey'
4719
+ }],
4720
+ url: '/v1/control/organizations/{organization_id}/storage/objects/{object_id}/download',
4721
+ ...options
4722
+ });
4723
+ export const createControlApplicationStorageUpload = (options) => (options.client ?? client).post({
4724
+ security: [{
4725
+ key: 'operatorBearer',
4726
+ scheme: 'bearer',
4727
+ type: 'http'
4728
+ }, {
4729
+ in: 'cookie',
4730
+ name: 'p93_operator_access',
4731
+ type: 'apiKey'
4732
+ }],
4733
+ url: '/v1/control/applications/{application_id}/storage/uploads',
4734
+ ...options,
4735
+ headers: {
4736
+ 'Content-Type': 'application/json',
4737
+ ...options.headers
4738
+ }
4739
+ });
4740
+ export const completeControlApplicationStorageUpload = (options) => (options.client ?? client).post({
4741
+ security: [{
4742
+ key: 'operatorBearer',
4743
+ scheme: 'bearer',
4744
+ type: 'http'
4745
+ }, {
4746
+ in: 'cookie',
4747
+ name: 'p93_operator_access',
4748
+ type: 'apiKey'
4749
+ }],
4750
+ url: '/v1/control/applications/{application_id}/storage/uploads/{object_id}/complete',
4751
+ ...options
4752
+ });
4753
+ export const listControlApplicationStorageObjects = (options) => (options.client ?? client).get({
4754
+ security: [{
4755
+ key: 'operatorBearer',
4756
+ scheme: 'bearer',
4757
+ type: 'http'
4758
+ }, {
4759
+ in: 'cookie',
4760
+ name: 'p93_operator_access',
4761
+ type: 'apiKey'
4762
+ }],
4763
+ url: '/v1/control/applications/{application_id}/storage/objects',
4764
+ ...options
4765
+ });
4766
+ export const deleteControlApplicationStorageObject = (options) => (options.client ?? client).delete({
4767
+ security: [{
4768
+ key: 'operatorBearer',
4769
+ scheme: 'bearer',
4770
+ type: 'http'
4771
+ }, {
4772
+ in: 'cookie',
4773
+ name: 'p93_operator_access',
4774
+ type: 'apiKey'
4775
+ }],
4776
+ url: '/v1/control/applications/{application_id}/storage/objects/{object_id}',
4777
+ ...options
4778
+ });
4779
+ export const getControlApplicationStorageObject = (options) => (options.client ?? client).get({
4780
+ security: [{
4781
+ key: 'operatorBearer',
4782
+ scheme: 'bearer',
4783
+ type: 'http'
4784
+ }, {
4785
+ in: 'cookie',
4786
+ name: 'p93_operator_access',
4787
+ type: 'apiKey'
4788
+ }],
4789
+ url: '/v1/control/applications/{application_id}/storage/objects/{object_id}',
4790
+ ...options
4791
+ });
4792
+ export const downloadControlApplicationStorageObject = (options) => (options.client ?? client).post({
4793
+ security: [{
4794
+ key: 'operatorBearer',
4795
+ scheme: 'bearer',
4796
+ type: 'http'
4797
+ }, {
4798
+ in: 'cookie',
4799
+ name: 'p93_operator_access',
4800
+ type: 'apiKey'
4801
+ }],
4802
+ url: '/v1/control/applications/{application_id}/storage/objects/{object_id}/download',
4803
+ ...options
4804
+ });
4805
+ export const createApplicationStorageUpload = (options) => (options.client ?? client).post({
4806
+ security: [{
4807
+ key: 'bearerAuth',
4808
+ scheme: 'bearer',
4809
+ type: 'http'
4810
+ }],
4811
+ url: '/v1/applications/{application_id}/storage/uploads',
4812
+ ...options,
4813
+ headers: {
4814
+ 'Content-Type': 'application/json',
4815
+ ...options.headers
4816
+ }
4817
+ });
4818
+ export const completeApplicationStorageUpload = (options) => (options.client ?? client).post({
4819
+ security: [{
4820
+ key: 'bearerAuth',
4821
+ scheme: 'bearer',
4822
+ type: 'http'
4823
+ }],
4824
+ url: '/v1/applications/{application_id}/storage/uploads/{object_id}/complete',
4825
+ ...options
4826
+ });
4827
+ export const listApplicationStorageObjects = (options) => (options.client ?? client).get({
4828
+ security: [{
4829
+ key: 'bearerAuth',
4830
+ scheme: 'bearer',
4831
+ type: 'http'
4832
+ }],
4833
+ url: '/v1/applications/{application_id}/storage/objects',
4834
+ ...options
4835
+ });
4836
+ export const deleteApplicationStorageObject = (options) => (options.client ?? client).delete({
4837
+ security: [{
4838
+ key: 'bearerAuth',
4839
+ scheme: 'bearer',
4840
+ type: 'http'
4841
+ }],
4842
+ url: '/v1/applications/{application_id}/storage/objects/{object_id}',
4843
+ ...options
4844
+ });
4845
+ export const getApplicationStorageObject = (options) => (options.client ?? client).get({
4846
+ security: [{
4847
+ key: 'bearerAuth',
4848
+ scheme: 'bearer',
4849
+ type: 'http'
4850
+ }],
4851
+ url: '/v1/applications/{application_id}/storage/objects/{object_id}',
4852
+ ...options
4853
+ });
4854
+ export const downloadApplicationStorageObject = (options) => (options.client ?? client).post({
4855
+ security: [{
4856
+ key: 'bearerAuth',
4857
+ scheme: 'bearer',
4858
+ type: 'http'
4859
+ }],
4860
+ url: '/v1/applications/{application_id}/storage/objects/{object_id}/download',
4861
+ ...options
4862
+ });
4863
+ export const createMyStorageUpload = (options) => (options.client ?? client).post({
4864
+ security: [{
4865
+ key: 'bearerAuth',
4866
+ scheme: 'bearer',
4867
+ type: 'http'
4868
+ }],
4869
+ url: '/v1/applications/{application_id}/me/storage/uploads',
4870
+ ...options,
4871
+ headers: {
4872
+ 'Content-Type': 'application/json',
4873
+ ...options.headers
4874
+ }
4875
+ });
4876
+ export const completeMyStorageUpload = (options) => (options.client ?? client).post({
4877
+ security: [{
4878
+ key: 'bearerAuth',
4879
+ scheme: 'bearer',
4880
+ type: 'http'
4881
+ }],
4882
+ url: '/v1/applications/{application_id}/me/storage/uploads/{object_id}/complete',
4883
+ ...options
4884
+ });
4885
+ export const listMyStorageObjects = (options) => (options.client ?? client).get({
4886
+ security: [{
4887
+ key: 'bearerAuth',
4888
+ scheme: 'bearer',
4889
+ type: 'http'
4890
+ }],
4891
+ url: '/v1/applications/{application_id}/me/storage/objects',
4892
+ ...options
4893
+ });
4894
+ export const deleteMyStorageObject = (options) => (options.client ?? client).delete({
4895
+ security: [{
4896
+ key: 'bearerAuth',
4897
+ scheme: 'bearer',
4898
+ type: 'http'
4899
+ }],
4900
+ url: '/v1/applications/{application_id}/me/storage/objects/{object_id}',
4901
+ ...options
4902
+ });
4903
+ export const getMyStorageObject = (options) => (options.client ?? client).get({
4904
+ security: [{
4905
+ key: 'bearerAuth',
4906
+ scheme: 'bearer',
4907
+ type: 'http'
4908
+ }],
4909
+ url: '/v1/applications/{application_id}/me/storage/objects/{object_id}',
4910
+ ...options
4911
+ });
4912
+ export const downloadMyStorageObject = (options) => (options.client ?? client).post({
4913
+ security: [{
4914
+ key: 'bearerAuth',
4915
+ scheme: 'bearer',
4916
+ type: 'http'
4917
+ }],
4918
+ url: '/v1/applications/{application_id}/me/storage/objects/{object_id}/download',
4919
+ ...options
4920
+ });
4921
+ export const createWorkspaceStorageUpload = (options) => (options.client ?? client).post({
4922
+ security: [{
4923
+ key: 'bearerAuth',
4924
+ scheme: 'bearer',
4925
+ type: 'http'
4926
+ }],
4927
+ url: '/v1/applications/{application_id}/workspaces/{workspace_id}/storage/uploads',
4928
+ ...options,
4929
+ headers: {
4930
+ 'Content-Type': 'application/json',
4931
+ ...options.headers
4932
+ }
4933
+ });
4934
+ export const completeWorkspaceStorageUpload = (options) => (options.client ?? client).post({
4935
+ security: [{
4936
+ key: 'bearerAuth',
4937
+ scheme: 'bearer',
4938
+ type: 'http'
4939
+ }],
4940
+ url: '/v1/applications/{application_id}/workspaces/{workspace_id}/storage/uploads/{object_id}/complete',
4941
+ ...options
4942
+ });
4943
+ export const listWorkspaceStorageObjects = (options) => (options.client ?? client).get({
4944
+ security: [{
4945
+ key: 'bearerAuth',
4946
+ scheme: 'bearer',
4947
+ type: 'http'
4948
+ }],
4949
+ url: '/v1/applications/{application_id}/workspaces/{workspace_id}/storage/objects',
4950
+ ...options
4951
+ });
4952
+ export const deleteWorkspaceStorageObject = (options) => (options.client ?? client).delete({
4953
+ security: [{
4954
+ key: 'bearerAuth',
4955
+ scheme: 'bearer',
4956
+ type: 'http'
4957
+ }],
4958
+ url: '/v1/applications/{application_id}/workspaces/{workspace_id}/storage/objects/{object_id}',
4959
+ ...options
4960
+ });
4961
+ export const getWorkspaceStorageObject = (options) => (options.client ?? client).get({
4962
+ security: [{
4963
+ key: 'bearerAuth',
4964
+ scheme: 'bearer',
4965
+ type: 'http'
4966
+ }],
4967
+ url: '/v1/applications/{application_id}/workspaces/{workspace_id}/storage/objects/{object_id}',
4968
+ ...options
4969
+ });
4970
+ export const downloadWorkspaceStorageObject = (options) => (options.client ?? client).post({
4971
+ security: [{
4972
+ key: 'bearerAuth',
4973
+ scheme: 'bearer',
4974
+ type: 'http'
4975
+ }],
4976
+ url: '/v1/applications/{application_id}/workspaces/{workspace_id}/storage/objects/{object_id}/download',
4977
+ ...options
4978
+ });
4292
4979
  export const oidcDiscovery = (options) => (options?.client ?? client).get({ url: '/oidc/.well-known/openid-configuration', ...options });
4293
4980
  export const oidcJwks = (options) => (options?.client ?? client).get({ url: '/oidc/jwks.json', ...options });
4294
4981
  export const beginOidcAuthorization = (options) => (options.client ?? client).get({ url: '/oidc/authorize', ...options });