File tree Expand file tree Collapse file tree 5 files changed +0
-12
lines changed Expand file tree Collapse file tree 5 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ service EqualIQ {
36
36
// When changing APIs, we sometimes want to expose unified types that aren't directly tied to any API.
37
37
structure ExposedTypes {
38
38
contractAnalysisRecord : ContractAnalysisRecord
39
- uploadProfilePictureInput : UploadProfilePictureInput
40
39
}
41
40
42
41
// This API is used simply to expose types
Original file line number Diff line number Diff line change @@ -76,7 +76,6 @@ operation UploadProfilePicture {
76
76
}
77
77
78
78
structure UploadProfilePictureInput {
79
-
80
79
}
81
80
82
81
structure UploadProfilePictureOutput {
Original file line number Diff line number Diff line change @@ -280,10 +280,6 @@ class UpdateProfileResponseContent(BaseModel):
280
280
updatedFields : list [str ] | None
281
281
282
282
283
- class UploadProfilePictureInput (BaseModel ):
284
- pass
285
-
286
-
287
283
class UploadProfilePictureResponseContent (BaseModel ):
288
284
url_info : PresignedPostData
289
285
@@ -534,7 +530,6 @@ class ContractAnalysisRecord(BaseModel):
534
530
535
531
class ExposeTypesResponseContent (BaseModel ):
536
532
contractAnalysisRecord : ContractAnalysisRecord | None
537
- uploadProfilePictureInput : UploadProfilePictureInput | None
538
533
539
534
540
535
class GetContractResponseContent (BaseModel ):
Original file line number Diff line number Diff line change @@ -222,7 +222,6 @@ export type EqResponsibilitiesCard = {
222
222
223
223
export type ExposeTypesResponseContent = {
224
224
contractAnalysisRecord ?: ContractAnalysisRecord ;
225
- uploadProfilePictureInput ?: UploadProfilePictureInput ;
226
225
} ;
227
226
228
227
export type ExtractionTerm = {
@@ -432,8 +431,6 @@ export type UpdateProfileResponseContent = {
432
431
updatedFields ?: string [ ] ;
433
432
} ;
434
433
435
- export type UploadProfilePictureInput = unknown ;
436
-
437
434
export type UploadProfilePictureResponseContent = {
438
435
url_info : PresignedPostData ;
439
436
} ;
Original file line number Diff line number Diff line change @@ -405,7 +405,6 @@ export interface components {
405
405
} ;
406
406
ExposeTypesResponseContent : {
407
407
contractAnalysisRecord ?: components [ "schemas" ] [ "ContractAnalysisRecord" ] ;
408
- uploadProfilePictureInput ?: components [ "schemas" ] [ "UploadProfilePictureInput" ] ;
409
408
} ;
410
409
ExtractionTerm : {
411
410
name : string ;
@@ -588,7 +587,6 @@ export interface components {
588
587
userId : string ;
589
588
updatedFields ?: string [ ] ;
590
589
} ;
591
- UploadProfilePictureInput : Record < string , never > ;
592
590
UploadProfilePictureResponseContent : {
593
591
url_info : components [ "schemas" ] [ "PresignedPostData" ] ;
594
592
} ;
You can’t perform that action at this time.
0 commit comments