@dimrev4/fitness-v3-backend 0.0.34 → 0.0.36

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,43 @@ 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
+ }
1255
1292
  /**
1256
1293
  *
1257
1294
  * @export
@@ -2796,6 +2833,37 @@ export interface UserDto {
2796
2833
  */
2797
2834
  'deletedAt': object | null;
2798
2835
  }
2836
+ /**
2837
+ *
2838
+ * @export
2839
+ * @interface UserGetPresignedPostUrlRequestDto
2840
+ */
2841
+ export interface UserGetPresignedPostUrlRequestDto {
2842
+ /**
2843
+ * Original filename
2844
+ * @type {string}
2845
+ * @memberof UserGetPresignedPostUrlRequestDto
2846
+ */
2847
+ 'filename': string;
2848
+ /**
2849
+ * Subject folder
2850
+ * @type {string}
2851
+ * @memberof UserGetPresignedPostUrlRequestDto
2852
+ */
2853
+ 'subject': string;
2854
+ /**
2855
+ * SHA-256 checksum of the file
2856
+ * @type {string}
2857
+ * @memberof UserGetPresignedPostUrlRequestDto
2858
+ */
2859
+ 'fileShaCheckSum': string;
2860
+ /**
2861
+ * MIME type of the file
2862
+ * @type {string}
2863
+ * @memberof UserGetPresignedPostUrlRequestDto
2864
+ */
2865
+ 'mimetype': string;
2866
+ }
2799
2867
  /**
2800
2868
  *
2801
2869
  * @export
@@ -3836,22 +3904,58 @@ export declare const FilesV1ApiAxiosParamCreator: (configuration?: Configuration
3836
3904
  * @throws {RequiredError}
3837
3905
  */
3838
3906
  filesV1ControllerGetBuckets: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3907
+ /**
3908
+ *
3909
+ * @summary Get presigned get group url
3910
+ * @param {string} groupId
3911
+ * @param {string} filepath
3912
+ * @param {*} [options] Override http request option.
3913
+ * @throws {RequiredError}
3914
+ */
3915
+ filesV1ControllerGetGroupPresignedGetUrl: (groupId: string, filepath: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3916
+ /**
3917
+ *
3918
+ * @summary Get presigned post group url
3919
+ * @param {string} groupId
3920
+ * @param {GroupGetPresignedPostUrlRequestDto} groupGetPresignedPostUrlRequestDto
3921
+ * @param {*} [options] Override http request option.
3922
+ * @throws {RequiredError}
3923
+ */
3924
+ filesV1ControllerGetGroupPresignedPostUrl: (groupId: string, groupGetPresignedPostUrlRequestDto: GroupGetPresignedPostUrlRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3925
+ /**
3926
+ *
3927
+ * @summary Get presigned public get url
3928
+ * @param {string} filepath
3929
+ * @param {*} [options] Override http request option.
3930
+ * @throws {RequiredError}
3931
+ */
3932
+ filesV1ControllerGetPublicPresignedGetUrl: (filepath: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3933
+ /**
3934
+ *
3935
+ * @summary Get presigned public post url
3936
+ * @param {PublicGetPresignedPostUrlRequestDto} publicGetPresignedPostUrlRequestDto
3937
+ * @param {*} [options] Override http request option.
3938
+ * @throws {RequiredError}
3939
+ */
3940
+ filesV1ControllerGetPublicPresignedPostUrl: (publicGetPresignedPostUrlRequestDto: PublicGetPresignedPostUrlRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3839
3941
  /**
3840
3942
  *
3841
3943
  * @summary Get presigned get url
3944
+ * @param {string} userId
3842
3945
  * @param {string} filepath
3843
3946
  * @param {*} [options] Override http request option.
3844
3947
  * @throws {RequiredError}
3845
3948
  */
3846
- filesV1ControllerGetPresignedGetUrl: (filepath: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3949
+ filesV1ControllerGetUserPresignedGetUrl: (userId: string, filepath: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3847
3950
  /**
3848
3951
  *
3849
3952
  * @summary Get presigned post url
3850
- * @param {PublicGetPresignedPostUrlRequestDto} publicGetPresignedPostUrlRequestDto
3953
+ * @param {string} userId
3954
+ * @param {UserGetPresignedPostUrlRequestDto} userGetPresignedPostUrlRequestDto
3851
3955
  * @param {*} [options] Override http request option.
3852
3956
  * @throws {RequiredError}
3853
3957
  */
3854
- filesV1ControllerGetPresignedPostUrl: (publicGetPresignedPostUrlRequestDto: PublicGetPresignedPostUrlRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3958
+ filesV1ControllerGetUserPresignedPostUrl: (userId: string, userGetPresignedPostUrlRequestDto: UserGetPresignedPostUrlRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3855
3959
  };
3856
3960
  /**
3857
3961
  * FilesV1Api - functional programming interface
@@ -3865,22 +3969,58 @@ export declare const FilesV1ApiFp: (configuration?: Configuration) => {
3865
3969
  * @throws {RequiredError}
3866
3970
  */
3867
3971
  filesV1ControllerGetBuckets(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3972
+ /**
3973
+ *
3974
+ * @summary Get presigned get group url
3975
+ * @param {string} groupId
3976
+ * @param {string} filepath
3977
+ * @param {*} [options] Override http request option.
3978
+ * @throws {RequiredError}
3979
+ */
3980
+ filesV1ControllerGetGroupPresignedGetUrl(groupId: string, filepath: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedGetDataDto>>;
3981
+ /**
3982
+ *
3983
+ * @summary Get presigned post group url
3984
+ * @param {string} groupId
3985
+ * @param {GroupGetPresignedPostUrlRequestDto} groupGetPresignedPostUrlRequestDto
3986
+ * @param {*} [options] Override http request option.
3987
+ * @throws {RequiredError}
3988
+ */
3989
+ filesV1ControllerGetGroupPresignedPostUrl(groupId: string, groupGetPresignedPostUrlRequestDto: GroupGetPresignedPostUrlRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedPostDataDto>>;
3990
+ /**
3991
+ *
3992
+ * @summary Get presigned public get url
3993
+ * @param {string} filepath
3994
+ * @param {*} [options] Override http request option.
3995
+ * @throws {RequiredError}
3996
+ */
3997
+ filesV1ControllerGetPublicPresignedGetUrl(filepath: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedGetDataDto>>;
3998
+ /**
3999
+ *
4000
+ * @summary Get presigned public post url
4001
+ * @param {PublicGetPresignedPostUrlRequestDto} publicGetPresignedPostUrlRequestDto
4002
+ * @param {*} [options] Override http request option.
4003
+ * @throws {RequiredError}
4004
+ */
4005
+ filesV1ControllerGetPublicPresignedPostUrl(publicGetPresignedPostUrlRequestDto: PublicGetPresignedPostUrlRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedPostDataDto>>;
3868
4006
  /**
3869
4007
  *
3870
4008
  * @summary Get presigned get url
4009
+ * @param {string} userId
3871
4010
  * @param {string} filepath
3872
4011
  * @param {*} [options] Override http request option.
3873
4012
  * @throws {RequiredError}
3874
4013
  */
3875
- filesV1ControllerGetPresignedGetUrl(filepath: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedGetDataDto>>;
4014
+ filesV1ControllerGetUserPresignedGetUrl(userId: string, filepath: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedGetDataDto>>;
3876
4015
  /**
3877
4016
  *
3878
4017
  * @summary Get presigned post url
3879
- * @param {PublicGetPresignedPostUrlRequestDto} publicGetPresignedPostUrlRequestDto
4018
+ * @param {string} userId
4019
+ * @param {UserGetPresignedPostUrlRequestDto} userGetPresignedPostUrlRequestDto
3880
4020
  * @param {*} [options] Override http request option.
3881
4021
  * @throws {RequiredError}
3882
4022
  */
3883
- filesV1ControllerGetPresignedPostUrl(publicGetPresignedPostUrlRequestDto: PublicGetPresignedPostUrlRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedPostDataDto>>;
4023
+ filesV1ControllerGetUserPresignedPostUrl(userId: string, userGetPresignedPostUrlRequestDto: UserGetPresignedPostUrlRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PresignedPostDataDto>>;
3884
4024
  };
3885
4025
  /**
3886
4026
  * FilesV1Api - factory interface
@@ -3894,22 +4034,54 @@ export declare const FilesV1ApiFactory: (configuration?: Configuration, basePath
3894
4034
  * @throws {RequiredError}
3895
4035
  */
3896
4036
  filesV1ControllerGetBuckets(options?: RawAxiosRequestConfig): AxiosPromise<void>;
4037
+ /**
4038
+ *
4039
+ * @summary Get presigned get group url
4040
+ * @param {FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrlRequest} requestParameters Request parameters.
4041
+ * @param {*} [options] Override http request option.
4042
+ * @throws {RequiredError}
4043
+ */
4044
+ filesV1ControllerGetGroupPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedGetDataDto>;
4045
+ /**
4046
+ *
4047
+ * @summary Get presigned post group url
4048
+ * @param {FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrlRequest} requestParameters Request parameters.
4049
+ * @param {*} [options] Override http request option.
4050
+ * @throws {RequiredError}
4051
+ */
4052
+ filesV1ControllerGetGroupPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedPostDataDto>;
4053
+ /**
4054
+ *
4055
+ * @summary Get presigned public get url
4056
+ * @param {FilesV1ApiFilesV1ControllerGetPublicPresignedGetUrlRequest} requestParameters Request parameters.
4057
+ * @param {*} [options] Override http request option.
4058
+ * @throws {RequiredError}
4059
+ */
4060
+ filesV1ControllerGetPublicPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPublicPresignedGetUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedGetDataDto>;
4061
+ /**
4062
+ *
4063
+ * @summary Get presigned public post url
4064
+ * @param {FilesV1ApiFilesV1ControllerGetPublicPresignedPostUrlRequest} requestParameters Request parameters.
4065
+ * @param {*} [options] Override http request option.
4066
+ * @throws {RequiredError}
4067
+ */
4068
+ filesV1ControllerGetPublicPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPublicPresignedPostUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedPostDataDto>;
3897
4069
  /**
3898
4070
  *
3899
4071
  * @summary Get presigned get url
3900
- * @param {FilesV1ApiFilesV1ControllerGetPresignedGetUrlRequest} requestParameters Request parameters.
4072
+ * @param {FilesV1ApiFilesV1ControllerGetUserPresignedGetUrlRequest} requestParameters Request parameters.
3901
4073
  * @param {*} [options] Override http request option.
3902
4074
  * @throws {RequiredError}
3903
4075
  */
3904
- filesV1ControllerGetPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPresignedGetUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedGetDataDto>;
4076
+ filesV1ControllerGetUserPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetUserPresignedGetUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedGetDataDto>;
3905
4077
  /**
3906
4078
  *
3907
4079
  * @summary Get presigned post url
3908
- * @param {FilesV1ApiFilesV1ControllerGetPresignedPostUrlRequest} requestParameters Request parameters.
4080
+ * @param {FilesV1ApiFilesV1ControllerGetUserPresignedPostUrlRequest} requestParameters Request parameters.
3909
4081
  * @param {*} [options] Override http request option.
3910
4082
  * @throws {RequiredError}
3911
4083
  */
3912
- filesV1ControllerGetPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPresignedPostUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedPostDataDto>;
4084
+ filesV1ControllerGetUserPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetUserPresignedPostUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedPostDataDto>;
3913
4085
  };
3914
4086
  /**
3915
4087
  * FilesV1Api - interface
@@ -3925,51 +4097,163 @@ export interface FilesV1ApiInterface {
3925
4097
  * @memberof FilesV1ApiInterface
3926
4098
  */
3927
4099
  filesV1ControllerGetBuckets(options?: RawAxiosRequestConfig): AxiosPromise<void>;
4100
+ /**
4101
+ *
4102
+ * @summary Get presigned get group url
4103
+ * @param {FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrlRequest} requestParameters Request parameters.
4104
+ * @param {*} [options] Override http request option.
4105
+ * @throws {RequiredError}
4106
+ * @memberof FilesV1ApiInterface
4107
+ */
4108
+ filesV1ControllerGetGroupPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedGetDataDto>;
4109
+ /**
4110
+ *
4111
+ * @summary Get presigned post group url
4112
+ * @param {FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrlRequest} requestParameters Request parameters.
4113
+ * @param {*} [options] Override http request option.
4114
+ * @throws {RequiredError}
4115
+ * @memberof FilesV1ApiInterface
4116
+ */
4117
+ filesV1ControllerGetGroupPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedPostDataDto>;
4118
+ /**
4119
+ *
4120
+ * @summary Get presigned public get url
4121
+ * @param {FilesV1ApiFilesV1ControllerGetPublicPresignedGetUrlRequest} requestParameters Request parameters.
4122
+ * @param {*} [options] Override http request option.
4123
+ * @throws {RequiredError}
4124
+ * @memberof FilesV1ApiInterface
4125
+ */
4126
+ filesV1ControllerGetPublicPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPublicPresignedGetUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedGetDataDto>;
4127
+ /**
4128
+ *
4129
+ * @summary Get presigned public post url
4130
+ * @param {FilesV1ApiFilesV1ControllerGetPublicPresignedPostUrlRequest} requestParameters Request parameters.
4131
+ * @param {*} [options] Override http request option.
4132
+ * @throws {RequiredError}
4133
+ * @memberof FilesV1ApiInterface
4134
+ */
4135
+ filesV1ControllerGetPublicPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPublicPresignedPostUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedPostDataDto>;
3928
4136
  /**
3929
4137
  *
3930
4138
  * @summary Get presigned get url
3931
- * @param {FilesV1ApiFilesV1ControllerGetPresignedGetUrlRequest} requestParameters Request parameters.
4139
+ * @param {FilesV1ApiFilesV1ControllerGetUserPresignedGetUrlRequest} requestParameters Request parameters.
3932
4140
  * @param {*} [options] Override http request option.
3933
4141
  * @throws {RequiredError}
3934
4142
  * @memberof FilesV1ApiInterface
3935
4143
  */
3936
- filesV1ControllerGetPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPresignedGetUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedGetDataDto>;
4144
+ filesV1ControllerGetUserPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetUserPresignedGetUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedGetDataDto>;
3937
4145
  /**
3938
4146
  *
3939
4147
  * @summary Get presigned post url
3940
- * @param {FilesV1ApiFilesV1ControllerGetPresignedPostUrlRequest} requestParameters Request parameters.
4148
+ * @param {FilesV1ApiFilesV1ControllerGetUserPresignedPostUrlRequest} requestParameters Request parameters.
3941
4149
  * @param {*} [options] Override http request option.
3942
4150
  * @throws {RequiredError}
3943
4151
  * @memberof FilesV1ApiInterface
3944
4152
  */
3945
- filesV1ControllerGetPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPresignedPostUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedPostDataDto>;
4153
+ filesV1ControllerGetUserPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetUserPresignedPostUrlRequest, options?: RawAxiosRequestConfig): AxiosPromise<PresignedPostDataDto>;
4154
+ }
4155
+ /**
4156
+ * Request parameters for filesV1ControllerGetGroupPresignedGetUrl operation in FilesV1Api.
4157
+ * @export
4158
+ * @interface FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrlRequest
4159
+ */
4160
+ export interface FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrlRequest {
4161
+ /**
4162
+ *
4163
+ * @type {string}
4164
+ * @memberof FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrl
4165
+ */
4166
+ readonly groupId: string;
4167
+ /**
4168
+ *
4169
+ * @type {string}
4170
+ * @memberof FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrl
4171
+ */
4172
+ readonly filepath: string;
4173
+ }
4174
+ /**
4175
+ * Request parameters for filesV1ControllerGetGroupPresignedPostUrl operation in FilesV1Api.
4176
+ * @export
4177
+ * @interface FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrlRequest
4178
+ */
4179
+ export interface FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrlRequest {
4180
+ /**
4181
+ *
4182
+ * @type {string}
4183
+ * @memberof FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrl
4184
+ */
4185
+ readonly groupId: string;
4186
+ /**
4187
+ *
4188
+ * @type {GroupGetPresignedPostUrlRequestDto}
4189
+ * @memberof FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrl
4190
+ */
4191
+ readonly groupGetPresignedPostUrlRequestDto: GroupGetPresignedPostUrlRequestDto;
3946
4192
  }
3947
4193
  /**
3948
- * Request parameters for filesV1ControllerGetPresignedGetUrl operation in FilesV1Api.
4194
+ * Request parameters for filesV1ControllerGetPublicPresignedGetUrl operation in FilesV1Api.
3949
4195
  * @export
3950
- * @interface FilesV1ApiFilesV1ControllerGetPresignedGetUrlRequest
4196
+ * @interface FilesV1ApiFilesV1ControllerGetPublicPresignedGetUrlRequest
3951
4197
  */
3952
- export interface FilesV1ApiFilesV1ControllerGetPresignedGetUrlRequest {
4198
+ export interface FilesV1ApiFilesV1ControllerGetPublicPresignedGetUrlRequest {
3953
4199
  /**
3954
4200
  *
3955
4201
  * @type {string}
3956
- * @memberof FilesV1ApiFilesV1ControllerGetPresignedGetUrl
4202
+ * @memberof FilesV1ApiFilesV1ControllerGetPublicPresignedGetUrl
3957
4203
  */
3958
4204
  readonly filepath: string;
3959
4205
  }
3960
4206
  /**
3961
- * Request parameters for filesV1ControllerGetPresignedPostUrl operation in FilesV1Api.
4207
+ * Request parameters for filesV1ControllerGetPublicPresignedPostUrl operation in FilesV1Api.
3962
4208
  * @export
3963
- * @interface FilesV1ApiFilesV1ControllerGetPresignedPostUrlRequest
4209
+ * @interface FilesV1ApiFilesV1ControllerGetPublicPresignedPostUrlRequest
3964
4210
  */
3965
- export interface FilesV1ApiFilesV1ControllerGetPresignedPostUrlRequest {
4211
+ export interface FilesV1ApiFilesV1ControllerGetPublicPresignedPostUrlRequest {
3966
4212
  /**
3967
4213
  *
3968
4214
  * @type {PublicGetPresignedPostUrlRequestDto}
3969
- * @memberof FilesV1ApiFilesV1ControllerGetPresignedPostUrl
4215
+ * @memberof FilesV1ApiFilesV1ControllerGetPublicPresignedPostUrl
3970
4216
  */
3971
4217
  readonly publicGetPresignedPostUrlRequestDto: PublicGetPresignedPostUrlRequestDto;
3972
4218
  }
4219
+ /**
4220
+ * Request parameters for filesV1ControllerGetUserPresignedGetUrl operation in FilesV1Api.
4221
+ * @export
4222
+ * @interface FilesV1ApiFilesV1ControllerGetUserPresignedGetUrlRequest
4223
+ */
4224
+ export interface FilesV1ApiFilesV1ControllerGetUserPresignedGetUrlRequest {
4225
+ /**
4226
+ *
4227
+ * @type {string}
4228
+ * @memberof FilesV1ApiFilesV1ControllerGetUserPresignedGetUrl
4229
+ */
4230
+ readonly userId: string;
4231
+ /**
4232
+ *
4233
+ * @type {string}
4234
+ * @memberof FilesV1ApiFilesV1ControllerGetUserPresignedGetUrl
4235
+ */
4236
+ readonly filepath: string;
4237
+ }
4238
+ /**
4239
+ * Request parameters for filesV1ControllerGetUserPresignedPostUrl operation in FilesV1Api.
4240
+ * @export
4241
+ * @interface FilesV1ApiFilesV1ControllerGetUserPresignedPostUrlRequest
4242
+ */
4243
+ export interface FilesV1ApiFilesV1ControllerGetUserPresignedPostUrlRequest {
4244
+ /**
4245
+ *
4246
+ * @type {string}
4247
+ * @memberof FilesV1ApiFilesV1ControllerGetUserPresignedPostUrl
4248
+ */
4249
+ readonly userId: string;
4250
+ /**
4251
+ *
4252
+ * @type {UserGetPresignedPostUrlRequestDto}
4253
+ * @memberof FilesV1ApiFilesV1ControllerGetUserPresignedPostUrl
4254
+ */
4255
+ readonly userGetPresignedPostUrlRequestDto: UserGetPresignedPostUrlRequestDto;
4256
+ }
3973
4257
  /**
3974
4258
  * FilesV1Api - object-oriented interface
3975
4259
  * @export
@@ -3985,24 +4269,60 @@ export declare class FilesV1Api extends BaseAPI implements FilesV1ApiInterface {
3985
4269
  * @memberof FilesV1Api
3986
4270
  */
3987
4271
  filesV1ControllerGetBuckets(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
4272
+ /**
4273
+ *
4274
+ * @summary Get presigned get group url
4275
+ * @param {FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrlRequest} requestParameters Request parameters.
4276
+ * @param {*} [options] Override http request option.
4277
+ * @throws {RequiredError}
4278
+ * @memberof FilesV1Api
4279
+ */
4280
+ filesV1ControllerGetGroupPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetGroupPresignedGetUrlRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedGetDataDto, any, {}>>;
4281
+ /**
4282
+ *
4283
+ * @summary Get presigned post group url
4284
+ * @param {FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrlRequest} requestParameters Request parameters.
4285
+ * @param {*} [options] Override http request option.
4286
+ * @throws {RequiredError}
4287
+ * @memberof FilesV1Api
4288
+ */
4289
+ filesV1ControllerGetGroupPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetGroupPresignedPostUrlRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedPostDataDto, any, {}>>;
4290
+ /**
4291
+ *
4292
+ * @summary Get presigned public get url
4293
+ * @param {FilesV1ApiFilesV1ControllerGetPublicPresignedGetUrlRequest} requestParameters Request parameters.
4294
+ * @param {*} [options] Override http request option.
4295
+ * @throws {RequiredError}
4296
+ * @memberof FilesV1Api
4297
+ */
4298
+ filesV1ControllerGetPublicPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPublicPresignedGetUrlRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedGetDataDto, any, {}>>;
4299
+ /**
4300
+ *
4301
+ * @summary Get presigned public post url
4302
+ * @param {FilesV1ApiFilesV1ControllerGetPublicPresignedPostUrlRequest} requestParameters Request parameters.
4303
+ * @param {*} [options] Override http request option.
4304
+ * @throws {RequiredError}
4305
+ * @memberof FilesV1Api
4306
+ */
4307
+ filesV1ControllerGetPublicPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPublicPresignedPostUrlRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedPostDataDto, any, {}>>;
3988
4308
  /**
3989
4309
  *
3990
4310
  * @summary Get presigned get url
3991
- * @param {FilesV1ApiFilesV1ControllerGetPresignedGetUrlRequest} requestParameters Request parameters.
4311
+ * @param {FilesV1ApiFilesV1ControllerGetUserPresignedGetUrlRequest} requestParameters Request parameters.
3992
4312
  * @param {*} [options] Override http request option.
3993
4313
  * @throws {RequiredError}
3994
4314
  * @memberof FilesV1Api
3995
4315
  */
3996
- filesV1ControllerGetPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPresignedGetUrlRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedGetDataDto, any, {}>>;
4316
+ filesV1ControllerGetUserPresignedGetUrl(requestParameters: FilesV1ApiFilesV1ControllerGetUserPresignedGetUrlRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedGetDataDto, any, {}>>;
3997
4317
  /**
3998
4318
  *
3999
4319
  * @summary Get presigned post url
4000
- * @param {FilesV1ApiFilesV1ControllerGetPresignedPostUrlRequest} requestParameters Request parameters.
4320
+ * @param {FilesV1ApiFilesV1ControllerGetUserPresignedPostUrlRequest} requestParameters Request parameters.
4001
4321
  * @param {*} [options] Override http request option.
4002
4322
  * @throws {RequiredError}
4003
4323
  * @memberof FilesV1Api
4004
4324
  */
4005
- filesV1ControllerGetPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetPresignedPostUrlRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedPostDataDto, any, {}>>;
4325
+ filesV1ControllerGetUserPresignedPostUrl(requestParameters: FilesV1ApiFilesV1ControllerGetUserPresignedPostUrlRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PresignedPostDataDto, any, {}>>;
4006
4326
  }
4007
4327
  /**
4008
4328
  * IngredientsV1Api - axios parameter creator