Skip to content

Commit 300e854

Browse files
chore: wip
1 parent 2024b31 commit 300e854

28 files changed

+0
-28
lines changed

storage/framework/core/orm/src/generate.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -923,7 +923,6 @@ export async function generateModelString(
923923
[key: string]: any
924924
}
925925
926-
export type ${modelName}JsonResponse = Selectable<${formattedTableName}Table>
927926
export type New${modelName} = Partial<Insertable<${formattedTableName}Table>>
928927
export type ${modelName}Update = Updateable<${formattedTableName}Table>
929928

storage/framework/orm/src/models/AccessToken.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ export interface AccessTokenJsonResponse extends Omit<Selectable<PersonalAccessT
4949
[key: string]: any
5050
}
5151

52-
export type AccessTokenJsonResponse = Selectable<PersonalAccessTokensTable>
5352
export type NewAccessToken = Partial<Insertable<PersonalAccessTokensTable>>
5453
export type AccessTokenUpdate = Updateable<PersonalAccessTokensTable>
5554

storage/framework/orm/src/models/Coupon.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ export interface CouponJsonResponse extends Omit<Selectable<CouponsTable>, 'pass
5353
[key: string]: any
5454
}
5555

56-
export type CouponJsonResponse = Selectable<CouponsTable>
5756
export type NewCoupon = Partial<Insertable<CouponsTable>>
5857
export type CouponUpdate = Updateable<CouponsTable>
5958

storage/framework/orm/src/models/Customer.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ export interface CustomerJsonResponse extends Omit<Selectable<CustomersTable>, '
4646
[key: string]: any
4747
}
4848

49-
export type CustomerJsonResponse = Selectable<CustomersTable>
5049
export type NewCustomer = Partial<Insertable<CustomersTable>>
5150
export type CustomerUpdate = Updateable<CustomersTable>
5251

storage/framework/orm/src/models/Deployment.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ export interface DeploymentJsonResponse extends Omit<Selectable<DeploymentsTable
4242
[key: string]: any
4343
}
4444

45-
export type DeploymentJsonResponse = Selectable<DeploymentsTable>
4645
export type NewDeployment = Partial<Insertable<DeploymentsTable>>
4746
export type DeploymentUpdate = Updateable<DeploymentsTable>
4847

storage/framework/orm/src/models/Error.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ export interface ErrorJsonResponse extends Omit<Selectable<ErrorsTable>, 'passwo
3333
[key: string]: any
3434
}
3535

36-
export type ErrorJsonResponse = Selectable<ErrorsTable>
3736
export type NewError = Partial<Insertable<ErrorsTable>>
3837
export type ErrorUpdate = Updateable<ErrorsTable>
3938

storage/framework/orm/src/models/FailedJob.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ export interface FailedJobJsonResponse extends Omit<Selectable<FailedJobsTable>,
3333
[key: string]: any
3434
}
3535

36-
export type FailedJobJsonResponse = Selectable<FailedJobsTable>
3736
export type NewFailedJob = Partial<Insertable<FailedJobsTable>>
3837
export type FailedJobUpdate = Updateable<FailedJobsTable>
3938

storage/framework/orm/src/models/GiftCard.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ export interface GiftCardJsonResponse extends Omit<Selectable<GiftCardsTable>, '
5454
[key: string]: any
5555
}
5656

57-
export type GiftCardJsonResponse = Selectable<GiftCardsTable>
5857
export type NewGiftCard = Partial<Insertable<GiftCardsTable>>
5958
export type GiftCardUpdate = Updateable<GiftCardsTable>
6059

storage/framework/orm/src/models/Job.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ export interface JobJsonResponse extends Omit<Selectable<JobsTable>, 'password'>
3333
[key: string]: any
3434
}
3535

36-
export type JobJsonResponse = Selectable<JobsTable>
3736
export type NewJob = Partial<Insertable<JobsTable>>
3837
export type JobUpdate = Updateable<JobsTable>
3938

storage/framework/orm/src/models/LoyaltyPoint.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ export interface LoyaltyPointJsonResponse extends Omit<Selectable<LoyaltyPointsT
3838
[key: string]: any
3939
}
4040

41-
export type LoyaltyPointJsonResponse = Selectable<LoyaltyPointsTable>
4241
export type NewLoyaltyPoint = Partial<Insertable<LoyaltyPointsTable>>
4342
export type LoyaltyPointUpdate = Updateable<LoyaltyPointsTable>
4443

0 commit comments

Comments
 (0)