refactor: remove service_description field from order schema and TypeScript definitions
This commit is contained in:
parent
b0171aa079
commit
6dc36ebe89
@ -27,9 +27,6 @@
|
|||||||
"price": {
|
"price": {
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
},
|
},
|
||||||
"service_description": {
|
|
||||||
"type": "text"
|
|
||||||
},
|
|
||||||
"client": {
|
"client": {
|
||||||
"type": "relation",
|
"type": "relation",
|
||||||
"relation": "manyToOne",
|
"relation": "manyToOne",
|
||||||
|
|||||||
1
types/generated/contentTypes.d.ts
vendored
1
types/generated/contentTypes.d.ts
vendored
@ -478,7 +478,6 @@ export interface ApiOrderOrder extends Struct.CollectionTypeSchema {
|
|||||||
order_number: Schema.Attribute.Integer;
|
order_number: Schema.Attribute.Integer;
|
||||||
price: Schema.Attribute.Integer;
|
price: Schema.Attribute.Integer;
|
||||||
publishedAt: Schema.Attribute.DateTime;
|
publishedAt: Schema.Attribute.DateTime;
|
||||||
service_description: Schema.Attribute.Text;
|
|
||||||
services: Schema.Attribute.Relation<'manyToMany', 'api::service.service'>;
|
services: Schema.Attribute.Relation<'manyToMany', 'api::service.service'>;
|
||||||
slot: Schema.Attribute.Relation<'manyToOne', 'api::slot.slot'>;
|
slot: Schema.Attribute.Relation<'manyToOne', 'api::slot.slot'>;
|
||||||
state: Schema.Attribute.Enumeration<
|
state: Schema.Attribute.Enumeration<
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user