Work on ad and social
This commit is contained in:
20
types/generated/components.d.ts
vendored
20
types/generated/components.d.ts
vendored
@@ -1,5 +1,24 @@
|
||||
import type { Schema, Struct } from '@strapi/strapi';
|
||||
|
||||
export interface AddressFullAddress extends Struct.ComponentSchema {
|
||||
collectionName: 'components_address_full_addresses';
|
||||
info: {
|
||||
description: '';
|
||||
displayName: 'FullAddress';
|
||||
icon: 'pinMap';
|
||||
};
|
||||
attributes: {
|
||||
city: Schema.Attribute.String;
|
||||
country: Schema.Attribute.String;
|
||||
freeaddress: Schema.Attribute.String;
|
||||
housenumber: Schema.Attribute.String;
|
||||
lat: Schema.Attribute.Decimal;
|
||||
long: Schema.Attribute.Decimal;
|
||||
postcode: Schema.Attribute.String;
|
||||
road: Schema.Attribute.String;
|
||||
};
|
||||
}
|
||||
|
||||
export interface UserPermissions extends Struct.ComponentSchema {
|
||||
collectionName: 'components_user_permissions';
|
||||
info: {
|
||||
@@ -19,6 +38,7 @@ export interface UserPermissions extends Struct.ComponentSchema {
|
||||
declare module '@strapi/strapi' {
|
||||
export module Public {
|
||||
export interface ComponentSchemas {
|
||||
'address.full-address': AddressFullAddress;
|
||||
'user.permissions': UserPermissions;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user