mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-30 12:40:10 +00:00
Initial commit of eigent-main
This commit is contained in:
commit
723df5a03e
1144 changed files with 103478 additions and 0 deletions
26
package/@stackframe/stack-shared/dist/interface/crud/svix-token.d.ts
vendored
Normal file
26
package/@stackframe/stack-shared/dist/interface/crud/svix-token.d.ts
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
import { CrudSchemaFromOptions, CrudTypeOf } from '../../crud.js';
|
||||
import * as yup from 'yup';
|
||||
import '../../utils/types.js';
|
||||
|
||||
declare const svixTokenAdminReadSchema: yup.ObjectSchema<{
|
||||
token: string;
|
||||
}, yup.AnyObject, {
|
||||
token: undefined;
|
||||
}, "">;
|
||||
declare const svixTokenAdminCreateSchema: yup.ObjectSchema<{}, yup.AnyObject, {}, "">;
|
||||
declare const svixTokenCrud: CrudSchemaFromOptions<{
|
||||
adminReadSchema: yup.ObjectSchema<{
|
||||
token: string;
|
||||
}, yup.AnyObject, {
|
||||
token: undefined;
|
||||
}, "">;
|
||||
adminCreateSchema: yup.ObjectSchema<{}, yup.AnyObject, {}, "">;
|
||||
docs: {
|
||||
adminCreate: {
|
||||
hidden: true;
|
||||
};
|
||||
};
|
||||
}>;
|
||||
type SvixTokenCrud = CrudTypeOf<typeof svixTokenCrud>;
|
||||
|
||||
export { type SvixTokenCrud, svixTokenAdminCreateSchema, svixTokenAdminReadSchema, svixTokenCrud };
|
||||
Loading…
Add table
Add a link
Reference in a new issue