feat(deps): sSO プラグインを追加
This commit is contained in:
41
types/generated/contentTypes.d.ts
vendored
41
types/generated/contentTypes.d.ts
vendored
@ -657,6 +657,46 @@ export interface PluginI18NLocale extends Schema.CollectionType {
|
||||
};
|
||||
}
|
||||
|
||||
export interface PluginStrapiPluginSsoRoles extends Schema.CollectionType {
|
||||
collectionName: 'strapi-plugin-sso_roles';
|
||||
info: {
|
||||
collectionName: 'sso-roles';
|
||||
description: '';
|
||||
displayName: 'sso-role';
|
||||
pluralName: 'sso-roles';
|
||||
singularName: 'roles';
|
||||
};
|
||||
options: {
|
||||
draftAndPublish: false;
|
||||
};
|
||||
pluginOptions: {
|
||||
'content-manager': {
|
||||
visible: false;
|
||||
};
|
||||
'content-type-builder': {
|
||||
visible: false;
|
||||
};
|
||||
};
|
||||
attributes: {
|
||||
createdAt: Attribute.DateTime;
|
||||
createdBy: Attribute.Relation<
|
||||
'plugin::strapi-plugin-sso.roles',
|
||||
'oneToOne',
|
||||
'admin::user'
|
||||
> &
|
||||
Attribute.Private;
|
||||
oauth_type: Attribute.String & Attribute.Required;
|
||||
roles: Attribute.JSON;
|
||||
updatedAt: Attribute.DateTime;
|
||||
updatedBy: Attribute.Relation<
|
||||
'plugin::strapi-plugin-sso.roles',
|
||||
'oneToOne',
|
||||
'admin::user'
|
||||
> &
|
||||
Attribute.Private;
|
||||
};
|
||||
}
|
||||
|
||||
export interface PluginUploadFile extends Schema.CollectionType {
|
||||
collectionName: 'files';
|
||||
info: {
|
||||
@ -954,6 +994,7 @@ declare module '@strapi/types' {
|
||||
'plugin::content-releases.release': PluginContentReleasesRelease;
|
||||
'plugin::content-releases.release-action': PluginContentReleasesReleaseAction;
|
||||
'plugin::i18n.locale': PluginI18NLocale;
|
||||
'plugin::strapi-plugin-sso.roles': PluginStrapiPluginSsoRoles;
|
||||
'plugin::upload.file': PluginUploadFile;
|
||||
'plugin::upload.folder': PluginUploadFolder;
|
||||
'plugin::users-permissions.permission': PluginUsersPermissionsPermission;
|
||||
|
||||
Reference in New Issue
Block a user