@dimrev4/fitness-v3-backend 0.0.35 → 0.0.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/esm/api.d.ts CHANGED
@@ -1252,6 +1252,49 @@ export interface GroupDto {
1252
1252
  */
1253
1253
  'deletedAt': string | null;
1254
1254
  }
1255
+ /**
1256
+ *
1257
+ * @export
1258
+ * @interface GroupGetPresignedPostUrlRequestDto
1259
+ */
1260
+ export interface GroupGetPresignedPostUrlRequestDto {
1261
+ /**
1262
+ * User ID, for files in the user scope of the bucket
1263
+ * @type {string}
1264
+ * @memberof GroupGetPresignedPostUrlRequestDto
1265
+ */
1266
+ 'userId'?: string;
1267
+ /**
1268
+ * Original filename
1269
+ * @type {string}
1270
+ * @memberof GroupGetPresignedPostUrlRequestDto
1271
+ */
1272
+ 'filename': string;
1273
+ /**
1274
+ * Subject folder
1275
+ * @type {string}
1276
+ * @memberof GroupGetPresignedPostUrlRequestDto
1277
+ */
1278
+ 'subject': string;
1279
+ /**
1280
+ * SHA-256 checksum of the file
1281
+ * @type {string}
1282
+ * @memberof GroupGetPresignedPostUrlRequestDto
1283
+ */
1284
+ 'fileShaCheckSum': string;
1285
+ /**
1286
+ * MIME type of the file
1287
+ * @type {string}
1288
+ * @memberof GroupGetPresignedPostUrlRequestDto
1289
+ */
1290
+ 'mimetype': string;
1291
+ /**
1292
+ * Allow overwriting existing file. If true, acts like PUT; if false (default), acts like POST and fails if file exists
1293
+ * @type {boolean}
1294
+ * @memberof GroupGetPresignedPostUrlRequestDto
1295
+ */
1296
+ 'allowOverwrite'?: boolean;
1297
+ }
1255
1298
  /**
1256
1299
  *
1257
1300
  * @export
@@ -1751,6 +1794,12 @@ export interface PresignedPostDataDto {
1751
1794
  * @memberof PresignedPostDataDto
1752
1795
  */
1753
1796
  'formData': object;
1797
+ /**
1798
+ * Presigned PUT URL for direct uploads (only available when allowOverwrite is true). Use HTTP PUT with file as body.
1799
+ * @type {string}
1800
+ * @memberof PresignedPostDataDto
1801
+ */
1802
+ 'putUrl'?: string;
1754
1803
  }
1755
1804
  /**
1756
1805
  *
@@ -1794,6 +1843,12 @@ export interface PublicGetPresignedPostUrlRequestDto {
1794
1843
  * @memberof PublicGetPresignedPostUrlRequestDto
1795
1844
  */
1796
1845
  'mimetype': string;
1846
+ /**
1847
+ * Allow overwriting existing file. If true, acts like PUT; if false (default), acts like POST and fails if file exists
1848
+ * @type {boolean}
1849
+ * @memberof PublicGetPresignedPostUrlRequestDto
1850
+ */
1851
+ 'allowOverwrite'?: boolean;
1797
1852
  }
1798
1853
  /**
1799
1854
  *
@@ -2796,6 +2851,43 @@ export interface UserDto {
2796
2851
  */
2797
2852
  'deletedAt': object | null;
2798
2853
  }
2854
+ /**
2855
+ *
2856
+ * @export
2857
+ * @interface UserGetPresignedPostUrlRequestDto
2858
+ */
2859
+ export interface UserGetPresignedPostUrlRequestDto {
2860
+ /**
2861
+ * Original filename
2862
+ * @type {string}
2863
+ * @memberof UserGetPresignedPostUrlRequestDto
2864
+ */
2865
+ 'filename': string;
2866
+ /**
2867
+ * Subject folder
2868
+ * @type {string}
2869
+ * @memberof UserGetPresignedPostUrlRequestDto
2870
+ */
2871
+ 'subject': string;
2872
+ /**
2873
+ * SHA-256 checksum of the file
2874
+ * @type {string}
2875
+ * @memberof UserGetPresignedPostUrlRequestDto
2876
+ */
2877
+ 'fileShaCheckSum': string;
2878
+ /**
2879
+ * MIME type of the file
2880
+ * @type {string}
2881
+ * @memberof UserGetPresignedPostUrlRequestDto
2882
+ */
2883
+ 'mimetype': string;
2884
+ /**
2885
+ * Allow overwriting existing file. If true, acts like PUT; if false (default), acts like POST and fails if file exists
2886
+ * @type {boolean}
2887
+ * @memberof UserGetPresignedPostUrlRequestDto
2888
+ */
2889
+ 'allowOverwrite'?: boolean;
2890
+ }
2799
2891
  /**
2800
2892
  *
2801
2893
  * @export
@@ -3836,22 +3928,58 @@ export declare const FilesV1ApiAxiosParamCreator: (configuration?: Configuration
3836
3928
  * @throws {RequiredError}
3837
3929
  */
3838
3930
  filesV1ControllerGetBuckets: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3931
+ /**
3932
+ *
3933
+ * @summary Get presigned get group url
3934
+ * @param {string} groupId
3935
+ * @param {string} filepath
3936
+ * @param {*} [options] Override http request option.
3937
+ * @throws {RequiredError}
3938
+ */
3939
+ filesV1ControllerGetGroupPresignedGetUrl: (groupId: string, filepath: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3940
+ /**
3941
+ *
3942
+ * @summary Get presigned post group url
3943
+ * @param {string} groupId
3944
+ * @param {GroupGetPresignedPostUrlRequestDto} groupGetPresignedPostUrlRequestDto
3945
+ * @param {*} [options] Override http request option.
3946
+ * @throws {RequiredError}
3947
+ */
3948
+ filesV1ControllerGetGroupPresignedPostUrl: (groupId: string, groupGetPresignedPostUrlRequestDto: GroupGetPresignedPostUrlRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3949
+ /**
3950
+ *
3951
+ * @summary Get presigned public get url
3952
+ * @param {string} filepath
3953
+ * @param {*} [options] Override http request option.
3954
+ * @throws {RequiredError}
3955
+ */
3956
+ filesV1ControllerGetPublicPresignedGetUrl: (filepath: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3957
+ /**
3958
+ *
3959
+ * @summary Get presigned public post url
3960
+ * @param {PublicGetPresignedPostUrlRequestDto} publicGetPresignedPostUrlRequestDto
3961
+ * @param {*} [options] Override http request option.
3962
+ * @throws {RequiredError}
3963
+ */
3964
+ filesV1ControllerGetPublicPresignedPostUrl: (publicGetPresignedPostUrlRequestDto: PublicGetPresignedPostUrlRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3839
3965
  /**
3840
3966
  *
3841
3967
  * @summary Get presigned get url
3968
+ * @param {string} userId
3842
3969
  * @param {string} filepath
3843
3970
  * @param {*} [options] Override http request option.
3844
3971
  * @throws {RequiredError}
3845
3972
  */
3846
- filesV1ControllerGetPresignedGetUrl: (filepath: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3973
+ filesV1ControllerGetUserPresignedGetUrl: (userId: string, filepath: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3847
3974
  /**
3848
3975
  *
3849
3976
  * @summary Get presigned post url
3850
- * @param {PublicGetPresignedPostUrlRequestDto} publicGetPresignedPostUrlRequestDto
3977
+ * @param {string} userId
3978
+ * @param {UserGetPresignedPostUrlRequestDto} userGetPresignedPostUrlRequestDto
3851
3979
  * @param {*} [options] Override http request option.
3852
3980
  * @throws {RequiredError}
3853
3981
  */
3854
- filesV1ControllerGetPresignedPostUrl: (publicGetPresignedPostUrlRequestDto: PublicGetPresignedPostUrlRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3982
+ filesV1ControllerGetUserPresignedPostUrl: (userId: string, userGetPresignedPostUrlRequestDto: UserGetPresignedPostUrlRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3855
3983
  };
3856
3984
  /**
3857
3985
  * FilesV1Api - functional programming interface
@@ -3865,22 +3993,58 @@ export declare const FilesV1ApiFp: (configuration?: Configuration) => {
3865
3993
  * @throws {RequiredError}
3866
3994
  */
3867
3995
  filesV1ControllerGetBuckets(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3996
+ /**
3997
+ *
3998
+ * @summary Get presigned get group url
3999
+ * @param {string} groupId
4000
+ * @param {string} filepath
4001
+ * @param {*} [options] Override http request option.
4002
+ * @throws {RequiredError}
4003
+ */
4004
+ filesV1ControllerGetGroupPresignedGetUrl(groupId: string, filepath: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedGetDataDto>>;
4005
+ /**
4006
+ *
4007
+ * @summary Get presigned post group url
4008
+ * @param {string} groupId
4009
+ * @param {GroupGetPresignedPostUrlRequestDto} groupGetPresignedPostUrlRequestDto
4010
+ * @param {*} [options] Override http request option.
4011
+ * @throws {RequiredError}
4012
+ */
4013
+ filesV1ControllerGetGroupPresignedPostUrl(groupId: string, groupGetPresignedPostUrlRequestDto: GroupGetPresignedPostUrlRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedPostDataDto>>;
4014
+ /**
4015
+ *
4016
+ * @summary Get presigned public get url
4017
+ * @param {string} filepath
4018
+ * @param {*} [options] Override http request option.
4019
+ * @throws {RequiredError}
4020
+ */
4021
+ filesV1ControllerGetPublicPresignedGetUrl(filepath: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedGetDataDto>>;
4022
+ /**
4023
+ *
4024
+ * @summary Get presigned public post url
4025
+ * @param {PublicGetPresignedPostUrlRequestDto} publicGetPresignedPostUrlRequestDto
4026
+ * @param {*} [options] Override http request option.
4027
+ * @throws {RequiredError}
4028
+ */
4029
+ filesV1ControllerGetPublicPresignedPostUrl(publicGetPresignedPostUrlRequestDto: PublicGetPresignedPostUrlRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedPostDataDto>>;
3868
4030
  /**
3869
4031
  *
3870
4032
  * @summary Get presigned get url
4033
+ * @param {string} userId
3871
4034
  * @param {string} filepath
3872
4035
  * @param {*} [options] Override http request option.
3873
4036
  * @throws {RequiredError}
3874
4037
  */
3875
- filesV1ControllerGetPresignedGetUrl(filepath: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedGetDataDto>>;
4038
+ filesV1ControllerGetUserPresignedGetUrl(userId: string, filepath: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedGetDataDto>>;
3876
4039
  /**
3877
4040
  *
3878
4041
  * @summary Get presigned post url
3879
- * @param {PublicGetPresignedPostUrlRequestDto} publicGetPresignedPostUrlRequestDto
4042
+ * @param {string} userId
4043
+ * @param {UserGetPresignedPostUrlRequestDto} userGetPresignedPostUrlRequestDto
3880
4044
  * @param {*} [options] Override http request option.
3881
4045
  * @throws {RequiredError}
3882
4046
  */
3883
- filesV1ControllerGetPresignedPostUrl(publicGetPresignedPostUrlRequestDto: PublicGetPresignedPostUrlRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedPostDataDto>>;
4047
+ filesV1ControllerGetUserPresignedPostUrl(userId: string, userGetPresignedPostUrlRequestDto: UserGetPresignedPostUrlRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedPostDataDto>>;
3884
4048
  };
3885
4049
  /**
3886
4050
  * FilesV1Api - factory interface
@@ -3894,22 +4058,54 @@ export declare const FilesV1ApiFactory: (configuration?: Configuration, basePath
3894
4058
  * @throws {RequiredError}
3895
4059
  */
3896
4060
  filesV1ControllerGetBuckets(options?: RawAxiosRequestConfig): AxiosPromise<void>;
4061
+ /**
4062
+ *
4063
+ * @summary Get presigned get group url
4064
+ * @param {FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrlRequest} requestParameters Request parameters.
4065
+ * @param {*} [options] Override http request option.
4066
+ * @throws {RequiredError}
4067
+ */
4068
+ filesV1ControllerGetGroupPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedGetDataDto>;
4069
+ /**
4070
+ *
4071
+ * @summary Get presigned post group url
4072
+ * @param {FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrlRequest} requestParameters Request parameters.
4073
+ * @param {*} [options] Override http request option.
4074
+ * @throws {RequiredError}
4075
+ */
4076
+ filesV1ControllerGetGroupPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedPostDataDto>;
4077
+ /**
4078
+ *
4079
+ * @summary Get presigned public get url
4080
+ * @param {FilesV1ApiFilesV1ControllerGetPublicPresignedGetUrlRequest} requestParameters Request parameters.
4081
+ * @param {*} [options] Override http request option.
4082
+ * @throws {RequiredError}
4083
+ */
4084
+ filesV1ControllerGetPublicPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPublicPresignedGetUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedGetDataDto>;
4085
+ /**
4086
+ *
4087
+ * @summary Get presigned public post url
4088
+ * @param {FilesV1ApiFilesV1ControllerGetPublicPresignedPostUrlRequest} requestParameters Request parameters.
4089
+ * @param {*} [options] Override http request option.
4090
+ * @throws {RequiredError}
4091
+ */
4092
+ filesV1ControllerGetPublicPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPublicPresignedPostUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedPostDataDto>;
3897
4093
  /**
3898
4094
  *
3899
4095
  * @summary Get presigned get url
3900
- * @param {FilesV1ApiFilesV1ControllerGetPresignedGetUrlRequest} requestParameters Request parameters.
4096
+ * @param {FilesV1ApiFilesV1ControllerGetUserPresignedGetUrlRequest} requestParameters Request parameters.
3901
4097
  * @param {*} [options] Override http request option.
3902
4098
  * @throws {RequiredError}
3903
4099
  */
3904
- filesV1ControllerGetPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPresignedGetUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedGetDataDto>;
4100
+ filesV1ControllerGetUserPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetUserPresignedGetUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedGetDataDto>;
3905
4101
  /**
3906
4102
  *
3907
4103
  * @summary Get presigned post url
3908
- * @param {FilesV1ApiFilesV1ControllerGetPresignedPostUrlRequest} requestParameters Request parameters.
4104
+ * @param {FilesV1ApiFilesV1ControllerGetUserPresignedPostUrlRequest} requestParameters Request parameters.
3909
4105
  * @param {*} [options] Override http request option.
3910
4106
  * @throws {RequiredError}
3911
4107
  */
3912
- filesV1ControllerGetPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPresignedPostUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedPostDataDto>;
4108
+ filesV1ControllerGetUserPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetUserPresignedPostUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedPostDataDto>;
3913
4109
  };
3914
4110
  /**
3915
4111
  * FilesV1Api - interface
@@ -3925,51 +4121,163 @@ export interface FilesV1ApiInterface {
3925
4121
  * @memberof FilesV1ApiInterface
3926
4122
  */
3927
4123
  filesV1ControllerGetBuckets(options?: RawAxiosRequestConfig): AxiosPromise<void>;
4124
+ /**
4125
+ *
4126
+ * @summary Get presigned get group url
4127
+ * @param {FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrlRequest} requestParameters Request parameters.
4128
+ * @param {*} [options] Override http request option.
4129
+ * @throws {RequiredError}
4130
+ * @memberof FilesV1ApiInterface
4131
+ */
4132
+ filesV1ControllerGetGroupPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedGetDataDto>;
4133
+ /**
4134
+ *
4135
+ * @summary Get presigned post group url
4136
+ * @param {FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrlRequest} requestParameters Request parameters.
4137
+ * @param {*} [options] Override http request option.
4138
+ * @throws {RequiredError}
4139
+ * @memberof FilesV1ApiInterface
4140
+ */
4141
+ filesV1ControllerGetGroupPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedPostDataDto>;
4142
+ /**
4143
+ *
4144
+ * @summary Get presigned public get url
4145
+ * @param {FilesV1ApiFilesV1ControllerGetPublicPresignedGetUrlRequest} requestParameters Request parameters.
4146
+ * @param {*} [options] Override http request option.
4147
+ * @throws {RequiredError}
4148
+ * @memberof FilesV1ApiInterface
4149
+ */
4150
+ filesV1ControllerGetPublicPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPublicPresignedGetUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedGetDataDto>;
4151
+ /**
4152
+ *
4153
+ * @summary Get presigned public post url
4154
+ * @param {FilesV1ApiFilesV1ControllerGetPublicPresignedPostUrlRequest} requestParameters Request parameters.
4155
+ * @param {*} [options] Override http request option.
4156
+ * @throws {RequiredError}
4157
+ * @memberof FilesV1ApiInterface
4158
+ */
4159
+ filesV1ControllerGetPublicPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPublicPresignedPostUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedPostDataDto>;
3928
4160
  /**
3929
4161
  *
3930
4162
  * @summary Get presigned get url
3931
- * @param {FilesV1ApiFilesV1ControllerGetPresignedGetUrlRequest} requestParameters Request parameters.
4163
+ * @param {FilesV1ApiFilesV1ControllerGetUserPresignedGetUrlRequest} requestParameters Request parameters.
3932
4164
  * @param {*} [options] Override http request option.
3933
4165
  * @throws {RequiredError}
3934
4166
  * @memberof FilesV1ApiInterface
3935
4167
  */
3936
- filesV1ControllerGetPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPresignedGetUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedGetDataDto>;
4168
+ filesV1ControllerGetUserPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetUserPresignedGetUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedGetDataDto>;
3937
4169
  /**
3938
4170
  *
3939
4171
  * @summary Get presigned post url
3940
- * @param {FilesV1ApiFilesV1ControllerGetPresignedPostUrlRequest} requestParameters Request parameters.
4172
+ * @param {FilesV1ApiFilesV1ControllerGetUserPresignedPostUrlRequest} requestParameters Request parameters.
3941
4173
  * @param {*} [options] Override http request option.
3942
4174
  * @throws {RequiredError}
3943
4175
  * @memberof FilesV1ApiInterface
3944
4176
  */
3945
- filesV1ControllerGetPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPresignedPostUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedPostDataDto>;
4177
+ filesV1ControllerGetUserPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetUserPresignedPostUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedPostDataDto>;
3946
4178
  }
3947
4179
  /**
3948
- * Request parameters for filesV1ControllerGetPresignedGetUrl operation in FilesV1Api.
4180
+ * Request parameters for filesV1ControllerGetGroupPresignedGetUrl operation in FilesV1Api.
3949
4181
  * @export
3950
- * @interface FilesV1ApiFilesV1ControllerGetPresignedGetUrlRequest
4182
+ * @interface FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrlRequest
3951
4183
  */
3952
- export interface FilesV1ApiFilesV1ControllerGetPresignedGetUrlRequest {
4184
+ export interface FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrlRequest {
3953
4185
  /**
3954
4186
  *
3955
4187
  * @type {string}
3956
- * @memberof FilesV1ApiFilesV1ControllerGetPresignedGetUrl
4188
+ * @memberof FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrl
4189
+ */
4190
+ readonly groupId: string;
4191
+ /**
4192
+ *
4193
+ * @type {string}
4194
+ * @memberof FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrl
3957
4195
  */
3958
4196
  readonly filepath: string;
3959
4197
  }
3960
4198
  /**
3961
- * Request parameters for filesV1ControllerGetPresignedPostUrl operation in FilesV1Api.
4199
+ * Request parameters for filesV1ControllerGetGroupPresignedPostUrl operation in FilesV1Api.
3962
4200
  * @export
3963
- * @interface FilesV1ApiFilesV1ControllerGetPresignedPostUrlRequest
4201
+ * @interface FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrlRequest
3964
4202
  */
3965
- export interface FilesV1ApiFilesV1ControllerGetPresignedPostUrlRequest {
4203
+ export interface FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrlRequest {
4204
+ /**
4205
+ *
4206
+ * @type {string}
4207
+ * @memberof FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrl
4208
+ */
4209
+ readonly groupId: string;
4210
+ /**
4211
+ *
4212
+ * @type {GroupGetPresignedPostUrlRequestDto}
4213
+ * @memberof FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrl
4214
+ */
4215
+ readonly groupGetPresignedPostUrlRequestDto: GroupGetPresignedPostUrlRequestDto;
4216
+ }
4217
+ /**
4218
+ * Request parameters for filesV1ControllerGetPublicPresignedGetUrl operation in FilesV1Api.
4219
+ * @export
4220
+ * @interface FilesV1ApiFilesV1ControllerGetPublicPresignedGetUrlRequest
4221
+ */
4222
+ export interface FilesV1ApiFilesV1ControllerGetPublicPresignedGetUrlRequest {
4223
+ /**
4224
+ *
4225
+ * @type {string}
4226
+ * @memberof FilesV1ApiFilesV1ControllerGetPublicPresignedGetUrl
4227
+ */
4228
+ readonly filepath: string;
4229
+ }
4230
+ /**
4231
+ * Request parameters for filesV1ControllerGetPublicPresignedPostUrl operation in FilesV1Api.
4232
+ * @export
4233
+ * @interface FilesV1ApiFilesV1ControllerGetPublicPresignedPostUrlRequest
4234
+ */
4235
+ export interface FilesV1ApiFilesV1ControllerGetPublicPresignedPostUrlRequest {
3966
4236
  /**
3967
4237
  *
3968
4238
  * @type {PublicGetPresignedPostUrlRequestDto}
3969
- * @memberof FilesV1ApiFilesV1ControllerGetPresignedPostUrl
4239
+ * @memberof FilesV1ApiFilesV1ControllerGetPublicPresignedPostUrl
3970
4240
  */
3971
4241
  readonly publicGetPresignedPostUrlRequestDto: PublicGetPresignedPostUrlRequestDto;
3972
4242
  }
4243
+ /**
4244
+ * Request parameters for filesV1ControllerGetUserPresignedGetUrl operation in FilesV1Api.
4245
+ * @export
4246
+ * @interface FilesV1ApiFilesV1ControllerGetUserPresignedGetUrlRequest
4247
+ */
4248
+ export interface FilesV1ApiFilesV1ControllerGetUserPresignedGetUrlRequest {
4249
+ /**
4250
+ *
4251
+ * @type {string}
4252
+ * @memberof FilesV1ApiFilesV1ControllerGetUserPresignedGetUrl
4253
+ */
4254
+ readonly userId: string;
4255
+ /**
4256
+ *
4257
+ * @type {string}
4258
+ * @memberof FilesV1ApiFilesV1ControllerGetUserPresignedGetUrl
4259
+ */
4260
+ readonly filepath: string;
4261
+ }
4262
+ /**
4263
+ * Request parameters for filesV1ControllerGetUserPresignedPostUrl operation in FilesV1Api.
4264
+ * @export
4265
+ * @interface FilesV1ApiFilesV1ControllerGetUserPresignedPostUrlRequest
4266
+ */
4267
+ export interface FilesV1ApiFilesV1ControllerGetUserPresignedPostUrlRequest {
4268
+ /**
4269
+ *
4270
+ * @type {string}
4271
+ * @memberof FilesV1ApiFilesV1ControllerGetUserPresignedPostUrl
4272
+ */
4273
+ readonly userId: string;
4274
+ /**
4275
+ *
4276
+ * @type {UserGetPresignedPostUrlRequestDto}
4277
+ * @memberof FilesV1ApiFilesV1ControllerGetUserPresignedPostUrl
4278
+ */
4279
+ readonly userGetPresignedPostUrlRequestDto: UserGetPresignedPostUrlRequestDto;
4280
+ }
3973
4281
  /**
3974
4282
  * FilesV1Api - object-oriented interface
3975
4283
  * @export
@@ -3985,24 +4293,60 @@ export declare class FilesV1Api extends BaseAPI implements FilesV1ApiInterface {
3985
4293
  * @memberof FilesV1Api
3986
4294
  */
3987
4295
  filesV1ControllerGetBuckets(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
4296
+ /**
4297
+ *
4298
+ * @summary Get presigned get group url
4299
+ * @param {FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrlRequest} requestParameters Request parameters.
4300
+ * @param {*} [options] Override http request option.
4301
+ * @throws {RequiredError}
4302
+ * @memberof FilesV1Api
4303
+ */
4304
+ filesV1ControllerGetGroupPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrlRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedGetDataDto, any, {}>>;
4305
+ /**
4306
+ *
4307
+ * @summary Get presigned post group url
4308
+ * @param {FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrlRequest} requestParameters Request parameters.
4309
+ * @param {*} [options] Override http request option.
4310
+ * @throws {RequiredError}
4311
+ * @memberof FilesV1Api
4312
+ */
4313
+ filesV1ControllerGetGroupPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrlRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedPostDataDto, any, {}>>;
4314
+ /**
4315
+ *
4316
+ * @summary Get presigned public get url
4317
+ * @param {FilesV1ApiFilesV1ControllerGetPublicPresignedGetUrlRequest} requestParameters Request parameters.
4318
+ * @param {*} [options] Override http request option.
4319
+ * @throws {RequiredError}
4320
+ * @memberof FilesV1Api
4321
+ */
4322
+ filesV1ControllerGetPublicPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPublicPresignedGetUrlRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedGetDataDto, any, {}>>;
4323
+ /**
4324
+ *
4325
+ * @summary Get presigned public post url
4326
+ * @param {FilesV1ApiFilesV1ControllerGetPublicPresignedPostUrlRequest} requestParameters Request parameters.
4327
+ * @param {*} [options] Override http request option.
4328
+ * @throws {RequiredError}
4329
+ * @memberof FilesV1Api
4330
+ */
4331
+ filesV1ControllerGetPublicPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPublicPresignedPostUrlRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedPostDataDto, any, {}>>;
3988
4332
  /**
3989
4333
  *
3990
4334
  * @summary Get presigned get url
3991
- * @param {FilesV1ApiFilesV1ControllerGetPresignedGetUrlRequest} requestParameters Request parameters.
4335
+ * @param {FilesV1ApiFilesV1ControllerGetUserPresignedGetUrlRequest} requestParameters Request parameters.
3992
4336
  * @param {*} [options] Override http request option.
3993
4337
  * @throws {RequiredError}
3994
4338
  * @memberof FilesV1Api
3995
4339
  */
3996
- filesV1ControllerGetPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPresignedGetUrlRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedGetDataDto, any, {}>>;
4340
+ filesV1ControllerGetUserPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetUserPresignedGetUrlRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedGetDataDto, any, {}>>;
3997
4341
  /**
3998
4342
  *
3999
4343
  * @summary Get presigned post url
4000
- * @param {FilesV1ApiFilesV1ControllerGetPresignedPostUrlRequest} requestParameters Request parameters.
4344
+ * @param {FilesV1ApiFilesV1ControllerGetUserPresignedPostUrlRequest} requestParameters Request parameters.
4001
4345
  * @param {*} [options] Override http request option.
4002
4346
  * @throws {RequiredError}
4003
4347
  * @memberof FilesV1Api
4004
4348
  */
4005
- filesV1ControllerGetPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPresignedPostUrlRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedPostDataDto, any, {}>>;
4349
+ filesV1ControllerGetUserPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetUserPresignedPostUrlRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedPostDataDto, any, {}>>;
4006
4350
  }
4007
4351
  /**
4008
4352
  * IngredientsV1Api - axios parameter creator