Skip to content

Commit 6bd0559

Browse files
committed
Revert "exposing the now-empty UploadProfilePictureInput to maintain existing patterns. might remove it again after debugging is done"
This reverts commit 957c571.
1 parent 957c571 commit 6bd0559

File tree

5 files changed

+0
-12
lines changed

5 files changed

+0
-12
lines changed

model/equaliq.smithy

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ service EqualIQ {
3636
// When changing APIs, we sometimes want to expose unified types that aren't directly tied to any API.
3737
structure ExposedTypes {
3838
contractAnalysisRecord: ContractAnalysisRecord
39-
uploadProfilePictureInput: UploadProfilePictureInput
4039
}
4140

4241
// This API is used simply to expose types

model/profiles.smithy

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ operation UploadProfilePicture {
7676
}
7777

7878
structure UploadProfilePictureInput {
79-
8079
}
8180

8281
structure UploadProfilePictureOutput {

python/api_model/types/models.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -280,10 +280,6 @@ class UpdateProfileResponseContent(BaseModel):
280280
updatedFields: list[str] | None
281281

282282

283-
class UploadProfilePictureInput(BaseModel):
284-
pass
285-
286-
287283
class UploadProfilePictureResponseContent(BaseModel):
288284
url_info: PresignedPostData
289285

@@ -534,7 +530,6 @@ class ContractAnalysisRecord(BaseModel):
534530

535531
class ExposeTypesResponseContent(BaseModel):
536532
contractAnalysisRecord: ContractAnalysisRecord | None
537-
uploadProfilePictureInput: UploadProfilePictureInput | None
538533

539534

540535
class GetContractResponseContent(BaseModel):

typescript/src/index.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,6 @@ export type EqResponsibilitiesCard = {
222222

223223
export type ExposeTypesResponseContent = {
224224
contractAnalysisRecord?: ContractAnalysisRecord;
225-
uploadProfilePictureInput?: UploadProfilePictureInput;
226225
};
227226

228227
export type ExtractionTerm = {
@@ -432,8 +431,6 @@ export type UpdateProfileResponseContent = {
432431
updatedFields?: string[];
433432
};
434433

435-
export type UploadProfilePictureInput = unknown;
436-
437434
export type UploadProfilePictureResponseContent = {
438435
url_info: PresignedPostData;
439436
};

typescript/src/models.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,6 @@ export interface components {
405405
};
406406
ExposeTypesResponseContent: {
407407
contractAnalysisRecord?: components["schemas"]["ContractAnalysisRecord"];
408-
uploadProfilePictureInput?: components["schemas"]["UploadProfilePictureInput"];
409408
};
410409
ExtractionTerm: {
411410
name: string;
@@ -588,7 +587,6 @@ export interface components {
588587
userId: string;
589588
updatedFields?: string[];
590589
};
591-
UploadProfilePictureInput: Record<string, never>;
592590
UploadProfilePictureResponseContent: {
593591
url_info: components["schemas"]["PresignedPostData"];
594592
};

0 commit comments

Comments
 (0)