@proofkit/cli 1.0.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +120 -0
- package/LICENSE.md +21 -0
- package/README.md +19 -0
- package/dist/acorn-AKFTBDM6.js +15 -0
- package/dist/angular-BOQ6FHSU.js +2 -0
- package/dist/babel-ZTOORN7K.js +15 -0
- package/dist/chunk-4LISTI44.js +1 -0
- package/dist/estree-KOJPX4S6.js +36 -0
- package/dist/flow-RCI44GYZ.js +19 -0
- package/dist/glimmer-GV5EF5E4.js +30 -0
- package/dist/graphql-YXQNPQWM.js +29 -0
- package/dist/html-ZAJTRROK.js +22 -0
- package/dist/index.js +300 -0
- package/dist/markdown-Q75DTQI7.js +63 -0
- package/dist/meriyah-32K7GBV5.js +4 -0
- package/dist/postcss-WWYO4PGL.js +54 -0
- package/dist/typescript-M6N7JDNQ.js +20 -0
- package/dist/yaml-LY7PNAYV.js +161 -0
- package/index.d.ts +19 -0
- package/package.json +122 -0
- package/template/extras/_cursor/conditional-rules/nextjs-framework.mdc +51 -0
- package/template/extras/_cursor/conditional-rules/npm.mdc +60 -0
- package/template/extras/_cursor/conditional-rules/pnpm.mdc +65 -0
- package/template/extras/_cursor/conditional-rules/yarn.mdc +60 -0
- package/template/extras/_cursor/rules/cursor-rules.mdc +88 -0
- package/template/extras/_cursor/rules/filemaker-api.mdc +176 -0
- package/template/extras/_cursor/rules/troubleshooting-patterns.mdc +240 -0
- package/template/extras/_cursor/rules/ui-components.mdc +57 -0
- package/template/extras/config/_eslint.js +27 -0
- package/template/extras/config/_prettier.config.js +6 -0
- package/template/extras/config/drizzle-config-mysql.ts +12 -0
- package/template/extras/config/drizzle-config-postgres.ts +12 -0
- package/template/extras/config/drizzle-config-sqlite.ts +12 -0
- package/template/extras/config/fmschema.config.mjs +9 -0
- package/template/extras/config/get-query-client.ts +6 -0
- package/template/extras/config/postcss.config.cjs +7 -0
- package/template/extras/config/query-provider-vite.tsx +19 -0
- package/template/extras/config/query-provider.tsx +21 -0
- package/template/extras/emailProviders/none/email.tsx +24 -0
- package/template/extras/emailProviders/plunk/email.tsx +26 -0
- package/template/extras/emailProviders/plunk/service.ts +4 -0
- package/template/extras/emailProviders/resend/email.tsx +23 -0
- package/template/extras/emailProviders/resend/service.ts +4 -0
- package/template/extras/fmaddon-auth/app/(main)/auth/profile/actions.ts +93 -0
- package/template/extras/fmaddon-auth/app/(main)/auth/profile/page.tsx +27 -0
- package/template/extras/fmaddon-auth/app/(main)/auth/profile/profile-form.tsx +56 -0
- package/template/extras/fmaddon-auth/app/(main)/auth/profile/reset-password-form.tsx +110 -0
- package/template/extras/fmaddon-auth/app/(main)/auth/profile/schema.ts +19 -0
- package/template/extras/fmaddon-auth/app/auth/forgot-password/actions.ts +37 -0
- package/template/extras/fmaddon-auth/app/auth/forgot-password/forgot-form.tsx +41 -0
- package/template/extras/fmaddon-auth/app/auth/forgot-password/page.tsx +21 -0
- package/template/extras/fmaddon-auth/app/auth/forgot-password/schema.ts +5 -0
- package/template/extras/fmaddon-auth/app/auth/login/actions.ts +34 -0
- package/template/extras/fmaddon-auth/app/auth/login/login-form.tsx +64 -0
- package/template/extras/fmaddon-auth/app/auth/login/page.tsx +26 -0
- package/template/extras/fmaddon-auth/app/auth/login/schema.ts +6 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/actions.ts +50 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/page.tsx +32 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/reset-password-form.tsx +59 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/schema.ts +14 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/verify-email/actions.ts +45 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/verify-email/page.tsx +32 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/verify-email/schema.ts +5 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/verify-email/verify-email-form.tsx +48 -0
- package/template/extras/fmaddon-auth/app/auth/signup/actions.ts +49 -0
- package/template/extras/fmaddon-auth/app/auth/signup/page.tsx +26 -0
- package/template/extras/fmaddon-auth/app/auth/signup/schema.ts +12 -0
- package/template/extras/fmaddon-auth/app/auth/signup/signup-form.tsx +67 -0
- package/template/extras/fmaddon-auth/app/auth/verify-email/actions.ts +110 -0
- package/template/extras/fmaddon-auth/app/auth/verify-email/email-verification-form.tsx +45 -0
- package/template/extras/fmaddon-auth/app/auth/verify-email/page.tsx +38 -0
- package/template/extras/fmaddon-auth/app/auth/verify-email/resend-button.tsx +35 -0
- package/template/extras/fmaddon-auth/app/auth/verify-email/schema.ts +5 -0
- package/template/extras/fmaddon-auth/components/auth/actions.ts +16 -0
- package/template/extras/fmaddon-auth/components/auth/protect.tsx +17 -0
- package/template/extras/fmaddon-auth/components/auth/redirect.tsx +26 -0
- package/template/extras/fmaddon-auth/components/auth/use-user.ts +59 -0
- package/template/extras/fmaddon-auth/components/auth/user-menu.tsx +51 -0
- package/template/extras/fmaddon-auth/emails/auth-code.tsx +156 -0
- package/template/extras/fmaddon-auth/middleware.ts +45 -0
- package/template/extras/fmaddon-auth/server/auth/utils/email-verification.ts +136 -0
- package/template/extras/fmaddon-auth/server/auth/utils/encryption.ts +51 -0
- package/template/extras/fmaddon-auth/server/auth/utils/index.ts +16 -0
- package/template/extras/fmaddon-auth/server/auth/utils/password-reset.ts +152 -0
- package/template/extras/fmaddon-auth/server/auth/utils/password.ts +67 -0
- package/template/extras/fmaddon-auth/server/auth/utils/redirect.ts +8 -0
- package/template/extras/fmaddon-auth/server/auth/utils/session.ts +192 -0
- package/template/extras/fmaddon-auth/server/auth/utils/user.ts +147 -0
- package/template/extras/prisma/schema/base-planetscale.prisma +24 -0
- package/template/extras/prisma/schema/base.prisma +20 -0
- package/template/extras/prisma/schema/with-auth-planetscale.prisma +77 -0
- package/template/extras/prisma/schema/with-auth.prisma +74 -0
- package/template/extras/src/app/_components/post-tw.tsx +50 -0
- package/template/extras/src/app/_components/post.tsx +54 -0
- package/template/extras/src/app/api/auth/[...nextauth]/route.ts +4 -0
- package/template/extras/src/app/api/trpc/[trpc]/route.ts +34 -0
- package/template/extras/src/app/clerk-auth/layout.tsx +10 -0
- package/template/extras/src/app/clerk-auth/signin/[[...sign-in]]/page.tsx +5 -0
- package/template/extras/src/app/clerk-auth/signup/[[...sign-up]]/page.tsx +5 -0
- package/template/extras/src/app/layout/base.tsx +34 -0
- package/template/extras/src/app/layout/main-shell.tsx +37 -0
- package/template/extras/src/app/layout/with-trpc-tw.tsx +24 -0
- package/template/extras/src/app/layout/with-trpc.tsx +24 -0
- package/template/extras/src/app/layout/with-tw.tsx +20 -0
- package/template/extras/src/app/next-auth/layout.tsx +22 -0
- package/template/extras/src/app/next-auth/signin/page.tsx +82 -0
- package/template/extras/src/app/next-auth/signup/action.ts +24 -0
- package/template/extras/src/app/next-auth/signup/page.tsx +40 -0
- package/template/extras/src/app/next-auth/signup/validation.ts +12 -0
- package/template/extras/src/app/page/base.tsx +6 -0
- package/template/extras/src/app/page/with-auth-trpc-tw.tsx +67 -0
- package/template/extras/src/app/page/with-auth-trpc.tsx +68 -0
- package/template/extras/src/app/page/with-trpc-tw.tsx +53 -0
- package/template/extras/src/app/page/with-trpc.tsx +54 -0
- package/template/extras/src/app/page/with-tw.tsx +37 -0
- package/template/extras/src/components/clerk-auth/clerk-provider.tsx +18 -0
- package/template/extras/src/components/clerk-auth/user-menu-mobile.tsx +36 -0
- package/template/extras/src/components/clerk-auth/user-menu.tsx +24 -0
- package/template/extras/src/components/next-auth/next-auth-provider.tsx +14 -0
- package/template/extras/src/components/next-auth/user-menu-mobile.tsx +31 -0
- package/template/extras/src/components/next-auth/user-menu.tsx +38 -0
- package/template/extras/src/env/with-auth.ts +31 -0
- package/template/extras/src/env/with-clerk.ts +20 -0
- package/template/extras/src/index.module.css +177 -0
- package/template/extras/src/middleware/clerk.ts +20 -0
- package/template/extras/src/middleware/next-auth.ts +5 -0
- package/template/extras/src/pages/_app/base.tsx +14 -0
- package/template/extras/src/pages/_app/with-auth-trpc-tw.tsx +23 -0
- package/template/extras/src/pages/_app/with-auth-trpc.tsx +23 -0
- package/template/extras/src/pages/_app/with-auth-tw.tsx +21 -0
- package/template/extras/src/pages/_app/with-auth.tsx +21 -0
- package/template/extras/src/pages/_app/with-trpc-tw.tsx +16 -0
- package/template/extras/src/pages/_app/with-trpc.tsx +16 -0
- package/template/extras/src/pages/_app/with-tw.tsx +14 -0
- package/template/extras/src/pages/api/auth/[...nextauth].ts +5 -0
- package/template/extras/src/pages/api/trpc/[trpc].ts +19 -0
- package/template/extras/src/pages/index/base.tsx +47 -0
- package/template/extras/src/pages/index/with-auth-trpc-tw.tsx +80 -0
- package/template/extras/src/pages/index/with-auth-trpc.tsx +81 -0
- package/template/extras/src/pages/index/with-trpc-tw.tsx +52 -0
- package/template/extras/src/pages/index/with-trpc.tsx +53 -0
- package/template/extras/src/pages/index/with-tw.tsx +45 -0
- package/template/extras/src/server/api/root.ts +23 -0
- package/template/extras/src/server/api/routers/post/base.ts +40 -0
- package/template/extras/src/server/api/routers/post/with-auth-drizzle.ts +39 -0
- package/template/extras/src/server/api/routers/post/with-auth-prisma.ts +41 -0
- package/template/extras/src/server/api/routers/post/with-auth.ts +37 -0
- package/template/extras/src/server/api/routers/post/with-drizzle.ts +30 -0
- package/template/extras/src/server/api/routers/post/with-prisma.ts +31 -0
- package/template/extras/src/server/api/trpc-app/base.ts +103 -0
- package/template/extras/src/server/api/trpc-app/with-auth-db.ts +133 -0
- package/template/extras/src/server/api/trpc-app/with-auth.ts +130 -0
- package/template/extras/src/server/api/trpc-app/with-db.ts +106 -0
- package/template/extras/src/server/api/trpc-pages/base.ts +122 -0
- package/template/extras/src/server/api/trpc-pages/with-auth-db.ts +160 -0
- package/template/extras/src/server/api/trpc-pages/with-auth.ts +158 -0
- package/template/extras/src/server/api/trpc-pages/with-db.ts +125 -0
- package/template/extras/src/server/data/users.ts +23 -0
- package/template/extras/src/server/db/db-prisma-planetscale.ts +22 -0
- package/template/extras/src/server/db/db-prisma.ts +17 -0
- package/template/extras/src/server/db/index-drizzle/with-mysql.ts +18 -0
- package/template/extras/src/server/db/index-drizzle/with-planetscale.ts +7 -0
- package/template/extras/src/server/db/index-drizzle/with-postgres.ts +18 -0
- package/template/extras/src/server/db/index-drizzle/with-sqlite.ts +19 -0
- package/template/extras/src/server/db/schema-drizzle/base-mysql.ts +34 -0
- package/template/extras/src/server/db/schema-drizzle/base-planetscale.ts +34 -0
- package/template/extras/src/server/db/schema-drizzle/base-postgres.ts +36 -0
- package/template/extras/src/server/db/schema-drizzle/base-sqlite.ts +30 -0
- package/template/extras/src/server/db/schema-drizzle/with-auth-mysql.ts +123 -0
- package/template/extras/src/server/db/schema-drizzle/with-auth-planetscale.ts +117 -0
- package/template/extras/src/server/db/schema-drizzle/with-auth-postgres.ts +130 -0
- package/template/extras/src/server/db/schema-drizzle/with-auth-sqlite.ts +116 -0
- package/template/extras/src/server/next-auth/base.ts +111 -0
- package/template/extras/src/server/next-auth/password.ts +13 -0
- package/template/extras/src/server/next-auth/with-drizzle.ts +83 -0
- package/template/extras/src/server/next-auth/with-prisma.ts +72 -0
- package/template/extras/src/trpc/query-client.ts +25 -0
- package/template/extras/src/trpc/react.tsx +76 -0
- package/template/extras/src/trpc/server.ts +30 -0
- package/template/extras/src/utils/api.ts +68 -0
- package/template/extras/start-database/mysql.sh +54 -0
- package/template/extras/start-database/postgres.sh +55 -0
- package/template/fm-addon/ProofKitAuth/de.xml +518 -0
- package/template/fm-addon/ProofKitAuth/en.xml +518 -0
- package/template/fm-addon/ProofKitAuth/es.xml +518 -0
- package/template/fm-addon/ProofKitAuth/fr.xml +518 -0
- package/template/fm-addon/ProofKitAuth/icon.png +0 -0
- package/template/fm-addon/ProofKitAuth/icon@2x.png +0 -0
- package/template/fm-addon/ProofKitAuth/info.json +11 -0
- package/template/fm-addon/ProofKitAuth/info_de.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_en.json +8 -0
- package/template/fm-addon/ProofKitAuth/info_es.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_fr.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_it.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_ja.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_ko.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_nl.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_pt.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_sv.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_zh.json +18 -0
- package/template/fm-addon/ProofKitAuth/it.xml +518 -0
- package/template/fm-addon/ProofKitAuth/ja.xml +518 -0
- package/template/fm-addon/ProofKitAuth/ko.xml +518 -0
- package/template/fm-addon/ProofKitAuth/nl.xml +518 -0
- package/template/fm-addon/ProofKitAuth/preview.png +0 -0
- package/template/fm-addon/ProofKitAuth/pt.xml +518 -0
- package/template/fm-addon/ProofKitAuth/sv.xml +518 -0
- package/template/fm-addon/ProofKitAuth/template.xml +0 -0
- package/template/fm-addon/ProofKitAuth/zh.xml +518 -0
- package/template/fm-addon/ProofKitWV/de.xml +896 -0
- package/template/fm-addon/ProofKitWV/en.xml +896 -0
- package/template/fm-addon/ProofKitWV/es.xml +896 -0
- package/template/fm-addon/ProofKitWV/fr.xml +896 -0
- package/template/fm-addon/ProofKitWV/icon.png +0 -0
- package/template/fm-addon/ProofKitWV/icon@2x.png +0 -0
- package/template/fm-addon/ProofKitWV/info.json +11 -0
- package/template/fm-addon/ProofKitWV/info_de.json +18 -0
- package/template/fm-addon/ProofKitWV/info_en.json +11 -0
- package/template/fm-addon/ProofKitWV/info_es.json +18 -0
- package/template/fm-addon/ProofKitWV/info_fr.json +18 -0
- package/template/fm-addon/ProofKitWV/info_it.json +18 -0
- package/template/fm-addon/ProofKitWV/info_ja.json +18 -0
- package/template/fm-addon/ProofKitWV/info_ko.json +18 -0
- package/template/fm-addon/ProofKitWV/info_nl.json +18 -0
- package/template/fm-addon/ProofKitWV/info_pt.json +18 -0
- package/template/fm-addon/ProofKitWV/info_sv.json +18 -0
- package/template/fm-addon/ProofKitWV/info_zh.json +18 -0
- package/template/fm-addon/ProofKitWV/it.xml +896 -0
- package/template/fm-addon/ProofKitWV/ja.xml +896 -0
- package/template/fm-addon/ProofKitWV/ko.xml +896 -0
- package/template/fm-addon/ProofKitWV/nl.xml +896 -0
- package/template/fm-addon/ProofKitWV/preview.png +0 -0
- package/template/fm-addon/ProofKitWV/pt.xml +896 -0
- package/template/fm-addon/ProofKitWV/records_de.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_en.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_es.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_fr.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_it.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_ja.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_ko.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_nl.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_pt.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_sv.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_zh.xml +0 -0
- package/template/fm-addon/ProofKitWV/sv.xml +896 -0
- package/template/fm-addon/ProofKitWV/template.xml +0 -0
- package/template/fm-addon/ProofKitWV/zh.xml +896 -0
- package/template/nextjs/README.md +27 -0
- package/template/nextjs/_gitignore +37 -0
- package/template/nextjs/next.config.ts +12 -0
- package/template/nextjs/package.json +50 -0
- package/template/nextjs/postcss.config.cjs +14 -0
- package/template/nextjs/proofkit.json +1 -0
- package/template/nextjs/public/favicon.ico +0 -0
- package/template/nextjs/public/proofkit.png +0 -0
- package/template/nextjs/src/app/(main)/layout.tsx +6 -0
- package/template/nextjs/src/app/(main)/page.tsx +90 -0
- package/template/nextjs/src/app/layout.tsx +39 -0
- package/template/nextjs/src/app/navigation.tsx +12 -0
- package/template/nextjs/src/components/AppLogo.tsx +6 -0
- package/template/nextjs/src/components/AppShell/internal/AppShell.tsx +21 -0
- package/template/nextjs/src/components/AppShell/internal/Header.module.css +40 -0
- package/template/nextjs/src/components/AppShell/internal/Header.tsx +34 -0
- package/template/nextjs/src/components/AppShell/internal/HeaderMobileMenu.tsx +27 -0
- package/template/nextjs/src/components/AppShell/internal/HeaderNavLink.tsx +31 -0
- package/template/nextjs/src/components/AppShell/internal/config.ts +1 -0
- package/template/nextjs/src/components/AppShell/slot-header-center.tsx +13 -0
- package/template/nextjs/src/components/AppShell/slot-header-left.tsx +23 -0
- package/template/nextjs/src/components/AppShell/slot-header-mobile-content.tsx +43 -0
- package/template/nextjs/src/components/AppShell/slot-header-right.tsx +26 -0
- package/template/nextjs/src/config/env.ts +13 -0
- package/template/nextjs/src/config/theme/globals.css +1 -0
- package/template/nextjs/src/config/theme/mantine-theme.ts +22 -0
- package/template/nextjs/src/server/safe-action.ts +3 -0
- package/template/nextjs/src/utils/notification-helpers.ts +32 -0
- package/template/nextjs/tsconfig.json +40 -0
- package/template/pages/nextjs/blank/page.tsx +5 -0
- package/template/pages/nextjs/table/page.tsx +17 -0
- package/template/pages/nextjs/table/table.tsx +18 -0
- package/template/pages/nextjs/table-edit/actions.ts +23 -0
- package/template/pages/nextjs/table-edit/page.tsx +28 -0
- package/template/pages/nextjs/table-edit/schema.ts +4 -0
- package/template/pages/nextjs/table-edit/table.tsx +43 -0
- package/template/pages/nextjs/table-infinite/actions.ts +62 -0
- package/template/pages/nextjs/table-infinite/page.tsx +11 -0
- package/template/pages/nextjs/table-infinite/query.ts +44 -0
- package/template/pages/nextjs/table-infinite/table.tsx +107 -0
- package/template/pages/nextjs/table-infinite-edit/actions.ts +84 -0
- package/template/pages/nextjs/table-infinite-edit/page.tsx +23 -0
- package/template/pages/nextjs/table-infinite-edit/query.ts +81 -0
- package/template/pages/nextjs/table-infinite-edit/schema.ts +4 -0
- package/template/pages/nextjs/table-infinite-edit/table.tsx +130 -0
- package/template/pages/vite-wv/blank/index.tsx +0 -0
- package/template/pages/vite-wv/table/index.tsx +34 -0
- package/template/pages/vite-wv/table-edit/index.tsx +72 -0
- package/template/vite-wv/.vscode/settings.json +11 -0
- package/template/vite-wv/_gitignore +18 -0
- package/template/vite-wv/index.html +13 -0
- package/template/vite-wv/package.json +52 -0
- package/template/vite-wv/pnpm-lock.yaml +2294 -0
- package/template/vite-wv/postcss.config.cjs +14 -0
- package/template/vite-wv/proofkit.json +1 -0
- package/template/vite-wv/scripts/launch-fm.sh +3 -0
- package/template/vite-wv/scripts/upload.js +21 -0
- package/template/vite-wv/src/components/AppLogo.tsx +5 -0
- package/template/vite-wv/src/components/full-screen-loader.tsx +9 -0
- package/template/vite-wv/src/config/env.ts +16 -0
- package/template/vite-wv/src/config/theme/globals.css +1 -0
- package/template/vite-wv/src/config/theme/mantine-theme.ts +22 -0
- package/template/vite-wv/src/main.tsx +42 -0
- package/template/vite-wv/src/routeTree.gen.ts +111 -0
- package/template/vite-wv/src/routes/__root.tsx +21 -0
- package/template/vite-wv/src/routes/index.tsx +63 -0
- package/template/vite-wv/src/routes/secondary.tsx +28 -0
- package/template/vite-wv/src/utils/notification-helpers.ts +32 -0
- package/template/vite-wv/tsconfig.json +14 -0
- package/template/vite-wv/vite.config.ts +18 -0
|
@@ -0,0 +1,518 @@
|
|
|
1
|
+
|
|
2
|
+
<DynamicTemplateString>
|
|
3
|
+
<StringID>com.fmi.basetable.0766B2B7768E6DCDC52A6A033BCA45AD</StringID>
|
|
4
|
+
<SourceText>proofkit_auth_sessions</SourceText>
|
|
5
|
+
<TargetText>proofkit_auth_sessions</TargetText>
|
|
6
|
+
<Comment>com.fmi.basetable.proofkit_auth_sessions</Comment>
|
|
7
|
+
</DynamicTemplateString>
|
|
8
|
+
|
|
9
|
+
<DynamicTemplateString>
|
|
10
|
+
<StringID>com.fmi.basetable.12131E1A6355305D7BDC841A925C5A56</StringID>
|
|
11
|
+
<SourceText>proofkit_auth_email_verification</SourceText>
|
|
12
|
+
<TargetText>proofkit_auth_email_verification</TargetText>
|
|
13
|
+
<Comment>com.fmi.basetable.proofkit_auth_email_verification</Comment>
|
|
14
|
+
</DynamicTemplateString>
|
|
15
|
+
|
|
16
|
+
<DynamicTemplateString>
|
|
17
|
+
<StringID>com.fmi.basetable.5E70A3CC1ED3EBCD700544DFF336C69A</StringID>
|
|
18
|
+
<SourceText>proofkit_auth_password_reset</SourceText>
|
|
19
|
+
<TargetText>proofkit_auth_password_reset</TargetText>
|
|
20
|
+
<Comment>com.fmi.basetable.proofkit_auth_password_reset</Comment>
|
|
21
|
+
</DynamicTemplateString>
|
|
22
|
+
|
|
23
|
+
<DynamicTemplateString>
|
|
24
|
+
<StringID>com.fmi.basetable.C68768AAA87CA3FAB34F82AC78F568DA</StringID>
|
|
25
|
+
<SourceText>proofkit_auth_users</SourceText>
|
|
26
|
+
<TargetText>proofkit_auth_users</TargetText>
|
|
27
|
+
<Comment>com.fmi.basetable.proofkit_auth_users</Comment>
|
|
28
|
+
</DynamicTemplateString>
|
|
29
|
+
|
|
30
|
+
<DynamicTemplateString>
|
|
31
|
+
<StringID>com.fmi.basetable.field.proofkit_auth_email_verification::0A2A6F666A2955B3C0D398EA50924A61</StringID>
|
|
32
|
+
<SourceText>code</SourceText>
|
|
33
|
+
<TargetText>code</TargetText>
|
|
34
|
+
<Comment>com.fmi.basetable.field.proofkit_auth_email_verification::code</Comment>
|
|
35
|
+
</DynamicTemplateString>
|
|
36
|
+
|
|
37
|
+
<DynamicTemplateString>
|
|
38
|
+
<StringID>com.fmi.basetable.field.proofkit_auth_email_verification::4B68129F6621C41900B27BF59AB8FD9B</StringID>
|
|
39
|
+
<SourceText>id</SourceText>
|
|
40
|
+
<TargetText>id</TargetText>
|
|
41
|
+
<Comment>com.fmi.basetable.field.proofkit_auth_email_verification::id</Comment>
|
|
42
|
+
</DynamicTemplateString>
|
|
43
|
+
|
|
44
|
+
<DynamicTemplateString>
|
|
45
|
+
<StringID>com.fmi.basetable.field.proofkit_auth_email_verification::5588ADDA2E7F62A48B84279D69752C99</StringID>
|
|
46
|
+
<SourceText>email</SourceText>
|
|
47
|
+
<TargetText>email</TargetText>
|
|
48
|
+
<Comment>com.fmi.basetable.field.proofkit_auth_email_verification::email</Comment>
|
|
49
|
+
</DynamicTemplateString>
|
|
50
|
+
|
|
51
|
+
<DynamicTemplateString>
|
|
52
|
+
<StringID>com.fmi.basetable.field.proofkit_auth_email_verification::74434AB5FCE4FAAEFDC691DB64D55AB1</StringID>
|
|
53
|
+
<SourceText>expires_at</SourceText>
|
|
54
|
+
<TargetText>expires_at</TargetText>
|
|
55
|
+
<Comment>com.fmi.basetable.field.proofkit_auth_email_verification::expires_at</Comment>
|
|
56
|
+
</DynamicTemplateString>
|
|
57
|
+
|
|
58
|
+
<DynamicTemplateString>
|
|
59
|
+
<StringID>com.fmi.basetable.field.proofkit_auth_email_verification::C9E0452F2F891DD359995C99F6A2D0E3</StringID>
|
|
60
|
+
<SourceText>id_user</SourceText>
|
|
61
|
+
<TargetText>id_user</TargetText>
|
|
62
|
+
<Comment>com.fmi.basetable.field.proofkit_auth_email_verification::id_user</Comment>
|
|
63
|
+
</DynamicTemplateString>
|
|
64
|
+
|
|
65
|
+
<DynamicTemplateString>
|
|
66
|
+
<StringID>com.fmi.basetable.field.proofkit_auth_password_reset::0A2A6F666A2955B3C0D398EA50924A61</StringID>
|
|
67
|
+
<SourceText>code</SourceText>
|
|
68
|
+
<TargetText>code</TargetText>
|
|
69
|
+
<Comment>com.fmi.basetable.field.proofkit_auth_password_reset::code</Comment>
|
|
70
|
+
</DynamicTemplateString>
|
|
71
|
+
|
|
72
|
+
<DynamicTemplateString>
|
|
73
|
+
<StringID>com.fmi.basetable.field.proofkit_auth_password_reset::4B68129F6621C41900B27BF59AB8FD9B</StringID>
|
|
74
|
+
<SourceText>id</SourceText>
|
|
75
|
+
<TargetText>id</TargetText>
|
|
76
|
+
<Comment>com.fmi.basetable.field.proofkit_auth_password_reset::id</Comment>
|
|
77
|
+
</DynamicTemplateString>
|
|
78
|
+
|
|
79
|
+
<DynamicTemplateString>
|
|
80
|
+
<StringID>com.fmi.basetable.field.proofkit_auth_password_reset::5588ADDA2E7F62A48B84279D69752C99</StringID>
|
|
81
|
+
<SourceText>email</SourceText>
|
|
82
|
+
<TargetText>email</TargetText>
|
|
83
|
+
<Comment>com.fmi.basetable.field.proofkit_auth_password_reset::email</Comment>
|
|
84
|
+
</DynamicTemplateString>
|
|
85
|
+
|
|
86
|
+
<DynamicTemplateString>
|
|
87
|
+
<StringID>com.fmi.basetable.field.proofkit_auth_password_reset::65E3C50A87BB3076D0E717CDAEAA8001</StringID>
|
|
88
|
+
<SourceText>email_verified</SourceText>
|
|
89
|
+
<TargetText>email_verified</TargetText>
|
|
90
|
+
<Comment>com.fmi.basetable.field.proofkit_auth_password_reset::email_verified</Comment>
|
|
91
|
+
</DynamicTemplateString>
|
|
92
|
+
|
|
93
|
+
<DynamicTemplateString>
|
|
94
|
+
<StringID>com.fmi.basetable.field.proofkit_auth_password_reset::74434AB5FCE4FAAEFDC691DB64D55AB1</StringID>
|
|
95
|
+
<SourceText>expires_at</SourceText>
|
|
96
|
+
<TargetText>expires_at</TargetText>
|
|
97
|
+
<Comment>com.fmi.basetable.field.proofkit_auth_password_reset::expires_at</Comment>
|
|
98
|
+
</DynamicTemplateString>
|
|
99
|
+
|
|
100
|
+
<DynamicTemplateString>
|
|
101
|
+
<StringID>com.fmi.basetable.field.proofkit_auth_password_reset::C9E0452F2F891DD359995C99F6A2D0E3</StringID>
|
|
102
|
+
<SourceText>id_user</SourceText>
|
|
103
|
+
<TargetText>id_user</TargetText>
|
|
104
|
+
<Comment>com.fmi.basetable.field.proofkit_auth_password_reset::id_user</Comment>
|
|
105
|
+
</DynamicTemplateString>
|
|
106
|
+
|
|
107
|
+
<DynamicTemplateString>
|
|
108
|
+
<StringID>com.fmi.basetable.field.proofkit_auth_sessions::4B68129F6621C41900B27BF59AB8FD9B</StringID>
|
|
109
|
+
<SourceText>id</SourceText>
|
|
110
|
+
<TargetText>id</TargetText>
|
|
111
|
+
<Comment>com.fmi.basetable.field.proofkit_auth_sessions::id</Comment>
|
|
112
|
+
</DynamicTemplateString>
|
|
113
|
+
|
|
114
|
+
<DynamicTemplateString>
|
|
115
|
+
<StringID>com.fmi.basetable.field.proofkit_auth_sessions::57A056C71AA448A69FBD9960B1053E99</StringID>
|
|
116
|
+
<SourceText>expiresAt</SourceText>
|
|
117
|
+
<TargetText>expiresAt</TargetText>
|
|
118
|
+
<Comment>com.fmi.basetable.field.proofkit_auth_sessions::expiresAt</Comment>
|
|
119
|
+
</DynamicTemplateString>
|
|
120
|
+
|
|
121
|
+
<DynamicTemplateString>
|
|
122
|
+
<StringID>com.fmi.basetable.field.proofkit_auth_sessions::C9E0452F2F891DD359995C99F6A2D0E3</StringID>
|
|
123
|
+
<SourceText>id_user</SourceText>
|
|
124
|
+
<TargetText>id_user</TargetText>
|
|
125
|
+
<Comment>com.fmi.basetable.field.proofkit_auth_sessions::id_user</Comment>
|
|
126
|
+
</DynamicTemplateString>
|
|
127
|
+
|
|
128
|
+
<DynamicTemplateString>
|
|
129
|
+
<StringID>com.fmi.basetable.field.proofkit_auth_users::4B68129F6621C41900B27BF59AB8FD9B</StringID>
|
|
130
|
+
<SourceText>id</SourceText>
|
|
131
|
+
<TargetText>id</TargetText>
|
|
132
|
+
<Comment>com.fmi.basetable.field.proofkit_auth_users::id</Comment>
|
|
133
|
+
</DynamicTemplateString>
|
|
134
|
+
|
|
135
|
+
<DynamicTemplateString>
|
|
136
|
+
<StringID>com.fmi.basetable.field.proofkit_auth_users::5588ADDA2E7F62A48B84279D69752C99</StringID>
|
|
137
|
+
<SourceText>email</SourceText>
|
|
138
|
+
<TargetText>email</TargetText>
|
|
139
|
+
<Comment>com.fmi.basetable.field.proofkit_auth_users::email</Comment>
|
|
140
|
+
</DynamicTemplateString>
|
|
141
|
+
|
|
142
|
+
<DynamicTemplateString>
|
|
143
|
+
<StringID>com.fmi.basetable.field.proofkit_auth_users::6C65589BF319743648F1CAB95738F7B3</StringID>
|
|
144
|
+
<SourceText>emailVerified</SourceText>
|
|
145
|
+
<TargetText>emailVerified</TargetText>
|
|
146
|
+
<Comment>com.fmi.basetable.field.proofkit_auth_users::emailVerified</Comment>
|
|
147
|
+
</DynamicTemplateString>
|
|
148
|
+
|
|
149
|
+
<DynamicTemplateString>
|
|
150
|
+
<StringID>com.fmi.basetable.field.proofkit_auth_users::7CBBAD414D9185890C6AE6EA4AE96E5C</StringID>
|
|
151
|
+
<SourceText>password_hash</SourceText>
|
|
152
|
+
<TargetText>password_hash</TargetText>
|
|
153
|
+
<Comment>com.fmi.basetable.field.proofkit_auth_users::password_hash</Comment>
|
|
154
|
+
</DynamicTemplateString>
|
|
155
|
+
|
|
156
|
+
<DynamicTemplateString>
|
|
157
|
+
<StringID>com.fmi.basetable.field.proofkit_auth_users::DD6F8C0A5163A91CBDCAAFEC3DB91266</StringID>
|
|
158
|
+
<SourceText>username</SourceText>
|
|
159
|
+
<TargetText>username</TargetText>
|
|
160
|
+
<Comment>com.fmi.basetable.field.proofkit_auth_users::username</Comment>
|
|
161
|
+
</DynamicTemplateString>
|
|
162
|
+
|
|
163
|
+
<DynamicTemplateString>
|
|
164
|
+
<StringID>com.fmi.calculation.text.1F27E3E6452F6E3D407EC45CDFF933C3</StringID>
|
|
165
|
+
<SourceText>https://proofkit.dev/auth/fm-addon/</SourceText>
|
|
166
|
+
<TargetText>https://proofkit.dev/auth/fm-addon/</TargetText>
|
|
167
|
+
<Comment>com.fmi.calculation.text.https://proofkit.dev/auth/fm-addon/</Comment>
|
|
168
|
+
</DynamicTemplateString>
|
|
169
|
+
|
|
170
|
+
<DynamicTemplateString>
|
|
171
|
+
<StringID>com.fmi.calculation.text.59AFA301111C185DBC5DD64F78DB356F</StringID>
|
|
172
|
+
<SourceText>https://proofkit.dev</SourceText>
|
|
173
|
+
<TargetText>https://proofkit.dev</TargetText>
|
|
174
|
+
<Comment>com.fmi.calculation.text.https://proofkit.dev</Comment>
|
|
175
|
+
</DynamicTemplateString>
|
|
176
|
+
|
|
177
|
+
<DynamicTemplateString>
|
|
178
|
+
<StringID>com.fmi.layout.0766B2B7768E6DCDC52A6A033BCA45AD</StringID>
|
|
179
|
+
<SourceText>proofkit_auth_sessions</SourceText>
|
|
180
|
+
<TargetText>proofkit_auth_sessions</TargetText>
|
|
181
|
+
<Comment>com.fmi.layout.proofkit_auth_sessions</Comment>
|
|
182
|
+
</DynamicTemplateString>
|
|
183
|
+
|
|
184
|
+
<DynamicTemplateString>
|
|
185
|
+
<StringID>com.fmi.layout.12131E1A6355305D7BDC841A925C5A56</StringID>
|
|
186
|
+
<SourceText>proofkit_auth_email_verification</SourceText>
|
|
187
|
+
<TargetText>proofkit_auth_email_verification</TargetText>
|
|
188
|
+
<Comment>com.fmi.layout.proofkit_auth_email_verification</Comment>
|
|
189
|
+
</DynamicTemplateString>
|
|
190
|
+
|
|
191
|
+
<DynamicTemplateString>
|
|
192
|
+
<StringID>com.fmi.layout.5E70A3CC1ED3EBCD700544DFF336C69A</StringID>
|
|
193
|
+
<SourceText>proofkit_auth_password_reset</SourceText>
|
|
194
|
+
<TargetText>proofkit_auth_password_reset</TargetText>
|
|
195
|
+
<Comment>com.fmi.layout.proofkit_auth_password_reset</Comment>
|
|
196
|
+
</DynamicTemplateString>
|
|
197
|
+
|
|
198
|
+
<DynamicTemplateString>
|
|
199
|
+
<StringID>com.fmi.layout.C68768AAA87CA3FAB34F82AC78F568DA</StringID>
|
|
200
|
+
<SourceText>proofkit_auth_users</SourceText>
|
|
201
|
+
<TargetText>proofkit_auth_users</TargetText>
|
|
202
|
+
<Comment>com.fmi.layout.proofkit_auth_users</Comment>
|
|
203
|
+
</DynamicTemplateString>
|
|
204
|
+
|
|
205
|
+
<DynamicTemplateString>
|
|
206
|
+
<StringID>com.fmi.layoutobject.text.0A2A6F666A2955B3C0D398EA50924A61</StringID>
|
|
207
|
+
<SourceText>code</SourceText>
|
|
208
|
+
<TargetText>code</TargetText>
|
|
209
|
+
<Comment>com.fmi.layoutobject.text.code</Comment>
|
|
210
|
+
</DynamicTemplateString>
|
|
211
|
+
|
|
212
|
+
<DynamicTemplateString>
|
|
213
|
+
<StringID>com.fmi.layoutobject.text.1D65D2EF432DC000BD3A8B0E4DEEF346</StringID>
|
|
214
|
+
<SourceText>Session</SourceText>
|
|
215
|
+
<TargetText>Session</TargetText>
|
|
216
|
+
<Comment>com.fmi.layoutobject.text.Session</Comment>
|
|
217
|
+
</DynamicTemplateString>
|
|
218
|
+
|
|
219
|
+
<DynamicTemplateString>
|
|
220
|
+
<StringID>com.fmi.layoutobject.text.367E8386949124D8EAB7A725C6370BCE</StringID>
|
|
221
|
+
<SourceText>User</SourceText>
|
|
222
|
+
<TargetText>User</TargetText>
|
|
223
|
+
<Comment>com.fmi.layoutobject.text.User</Comment>
|
|
224
|
+
</DynamicTemplateString>
|
|
225
|
+
|
|
226
|
+
<DynamicTemplateString>
|
|
227
|
+
<StringID>com.fmi.layoutobject.text.3CA8D8AD5BCF2CC9CE79B9AFA97339AC</StringID>
|
|
228
|
+
<SourceText>This table stores your web users. You can customize this table with additional fields or relate it to an existing users table in your own app</SourceText>
|
|
229
|
+
<TargetText>This table stores your web users. You can customize this table with additional fields or relate it to an existing users table in your own app</TargetText>
|
|
230
|
+
<Comment>com.fmi.layoutobject.text.This table stores your web users. You can customize this table with additional fields or relate it to an existing users table in your own app</Comment>
|
|
231
|
+
</DynamicTemplateString>
|
|
232
|
+
|
|
233
|
+
<DynamicTemplateString>
|
|
234
|
+
<StringID>com.fmi.layoutobject.text.4B68129F6621C41900B27BF59AB8FD9B</StringID>
|
|
235
|
+
<SourceText>id</SourceText>
|
|
236
|
+
<TargetText>id</TargetText>
|
|
237
|
+
<Comment>com.fmi.layoutobject.text.id</Comment>
|
|
238
|
+
</DynamicTemplateString>
|
|
239
|
+
|
|
240
|
+
<DynamicTemplateString>
|
|
241
|
+
<StringID>com.fmi.layoutobject.text.5588ADDA2E7F62A48B84279D69752C99</StringID>
|
|
242
|
+
<SourceText>email</SourceText>
|
|
243
|
+
<TargetText>email</TargetText>
|
|
244
|
+
<Comment>com.fmi.layoutobject.text.email</Comment>
|
|
245
|
+
</DynamicTemplateString>
|
|
246
|
+
|
|
247
|
+
<DynamicTemplateString>
|
|
248
|
+
<StringID>com.fmi.layoutobject.text.57A056C71AA448A69FBD9960B1053E99</StringID>
|
|
249
|
+
<SourceText>expiresAt</SourceText>
|
|
250
|
+
<TargetText>expiresAt</TargetText>
|
|
251
|
+
<Comment>com.fmi.layoutobject.text.expiresAt</Comment>
|
|
252
|
+
</DynamicTemplateString>
|
|
253
|
+
|
|
254
|
+
<DynamicTemplateString>
|
|
255
|
+
<StringID>com.fmi.layoutobject.text.65E3C50A87BB3076D0E717CDAEAA8001</StringID>
|
|
256
|
+
<SourceText>email_verified</SourceText>
|
|
257
|
+
<TargetText>email_verified</TargetText>
|
|
258
|
+
<Comment>com.fmi.layoutobject.text.email_verified</Comment>
|
|
259
|
+
</DynamicTemplateString>
|
|
260
|
+
|
|
261
|
+
<DynamicTemplateString>
|
|
262
|
+
<StringID>com.fmi.layoutobject.text.67D86F2872734BED828FE6CC9AC70499</StringID>
|
|
263
|
+
<SourceText>Password Reset</SourceText>
|
|
264
|
+
<TargetText>Password Reset</TargetText>
|
|
265
|
+
<Comment>com.fmi.layoutobject.text.Password Reset</Comment>
|
|
266
|
+
</DynamicTemplateString>
|
|
267
|
+
|
|
268
|
+
<DynamicTemplateString>
|
|
269
|
+
<StringID>com.fmi.layoutobject.text.6C65589BF319743648F1CAB95738F7B3</StringID>
|
|
270
|
+
<SourceText>emailVerified</SourceText>
|
|
271
|
+
<TargetText>emailVerified</TargetText>
|
|
272
|
+
<Comment>com.fmi.layoutobject.text.emailVerified</Comment>
|
|
273
|
+
</DynamicTemplateString>
|
|
274
|
+
|
|
275
|
+
<DynamicTemplateString>
|
|
276
|
+
<StringID>com.fmi.layoutobject.text.74434AB5FCE4FAAEFDC691DB64D55AB1</StringID>
|
|
277
|
+
<SourceText>expires_at</SourceText>
|
|
278
|
+
<TargetText>expires_at</TargetText>
|
|
279
|
+
<Comment>com.fmi.layoutobject.text.expires_at</Comment>
|
|
280
|
+
</DynamicTemplateString>
|
|
281
|
+
|
|
282
|
+
<DynamicTemplateString>
|
|
283
|
+
<StringID>com.fmi.layoutobject.text.7CBBAD414D9185890C6AE6EA4AE96E5C</StringID>
|
|
284
|
+
<SourceText>password_hash</SourceText>
|
|
285
|
+
<TargetText>password_hash</TargetText>
|
|
286
|
+
<Comment>com.fmi.layoutobject.text.password_hash</Comment>
|
|
287
|
+
</DynamicTemplateString>
|
|
288
|
+
|
|
289
|
+
<DynamicTemplateString>
|
|
290
|
+
<StringID>com.fmi.layoutobject.text.7FCE1B3FF9247B2EFD3EFFB225B9DC8A</StringID>
|
|
291
|
+
<SourceText>Related User</SourceText>
|
|
292
|
+
<TargetText>Related User</TargetText>
|
|
293
|
+
<Comment>com.fmi.layoutobject.text.Related User</Comment>
|
|
294
|
+
</DynamicTemplateString>
|
|
295
|
+
|
|
296
|
+
<DynamicTemplateString>
|
|
297
|
+
<StringID>com.fmi.layoutobject.text.864D7760326E5A71EAA190E2B81A2630</StringID>
|
|
298
|
+
<SourceText>It's safe to delete this record if the verification has expired</SourceText>
|
|
299
|
+
<TargetText>It's safe to delete this record if the verification has expired</TargetText>
|
|
300
|
+
<Comment>com.fmi.layoutobject.text.It's safe to delete this record if the verification has expired</Comment>
|
|
301
|
+
</DynamicTemplateString>
|
|
302
|
+
|
|
303
|
+
<DynamicTemplateString>
|
|
304
|
+
<StringID>com.fmi.layoutobject.text.A2A111D0912ED62DFCF6C56D413DEE3E</StringID>
|
|
305
|
+
<SourceText>This table stores active logged in sessions for your web app. If a session is expired it can be deleted. Deleting an active session will force the user to login again.</SourceText>
|
|
306
|
+
<TargetText>This table stores active logged in sessions for your web app. If a session is expired it can be deleted. Deleting an active session will force the user to login again.</TargetText>
|
|
307
|
+
<Comment>com.fmi.layoutobject.text.This table stores active logged in sessions for your web app. If a session is expired it can be deleted. Deleting an active session will force the user to login again.</Comment>
|
|
308
|
+
</DynamicTemplateString>
|
|
309
|
+
|
|
310
|
+
<DynamicTemplateString>
|
|
311
|
+
<StringID>com.fmi.layoutobject.text.BE53E00FB97CB96633D9264982373233</StringID>
|
|
312
|
+
<SourceText>time in milliseconds</SourceText>
|
|
313
|
+
<TargetText>time in milliseconds</TargetText>
|
|
314
|
+
<Comment>com.fmi.layoutobject.text.time in milliseconds</Comment>
|
|
315
|
+
</DynamicTemplateString>
|
|
316
|
+
|
|
317
|
+
<DynamicTemplateString>
|
|
318
|
+
<StringID>com.fmi.layoutobject.text.C9E0452F2F891DD359995C99F6A2D0E3</StringID>
|
|
319
|
+
<SourceText>id_user</SourceText>
|
|
320
|
+
<TargetText>id_user</TargetText>
|
|
321
|
+
<Comment>com.fmi.layoutobject.text.id_user</Comment>
|
|
322
|
+
</DynamicTemplateString>
|
|
323
|
+
|
|
324
|
+
<DynamicTemplateString>
|
|
325
|
+
<StringID>com.fmi.layoutobject.text.DBCCD67197DD180FF75AD2AA9FD1333D</StringID>
|
|
326
|
+
<SourceText>When a user needs to reset their password, this table stores the password reset code sent to their email. After verification, the record will be deleted so it's often empty</SourceText>
|
|
327
|
+
<TargetText>When a user needs to reset their password, this table stores the password reset code sent to their email. After verification, the record will be deleted so it's often empty</TargetText>
|
|
328
|
+
<Comment>com.fmi.layoutobject.text.When a user needs to reset their password, this table stores the password reset code sent to their email. After verification, the record will be deleted so it's often empty</Comment>
|
|
329
|
+
</DynamicTemplateString>
|
|
330
|
+
|
|
331
|
+
<DynamicTemplateString>
|
|
332
|
+
<StringID>com.fmi.layoutobject.text.DD6F8C0A5163A91CBDCAAFEC3DB91266</StringID>
|
|
333
|
+
<SourceText>username</SourceText>
|
|
334
|
+
<TargetText>username</TargetText>
|
|
335
|
+
<Comment>com.fmi.layoutobject.text.username</Comment>
|
|
336
|
+
</DynamicTemplateString>
|
|
337
|
+
|
|
338
|
+
<DynamicTemplateString>
|
|
339
|
+
<StringID>com.fmi.layoutobject.text.F35C746B404A8FD17848FCA5A9500A15</StringID>
|
|
340
|
+
<SourceText>When a user wants to change their email, this table stores the new email address until it is verified. After verification, the record will be deleted so it's often empty</SourceText>
|
|
341
|
+
<TargetText>When a user wants to change their email, this table stores the new email address until it is verified. After verification, the record will be deleted so it's often empty</TargetText>
|
|
342
|
+
<Comment>com.fmi.layoutobject.text.When a user wants to change their email, this table stores the new email address until it is verified. After verification, the record will be deleted so it's often empty</Comment>
|
|
343
|
+
</DynamicTemplateString>
|
|
344
|
+
|
|
345
|
+
<DynamicTemplateString>
|
|
346
|
+
<StringID>com.fmi.layoutobject.text.F7B6AD0D6B71B4C978FB5A2BFC1BAAEF</StringID>
|
|
347
|
+
<SourceText>Email Verifications</SourceText>
|
|
348
|
+
<TargetText>Email Verifications</TargetText>
|
|
349
|
+
<Comment>com.fmi.layoutobject.text.Email Verifications</Comment>
|
|
350
|
+
</DynamicTemplateString>
|
|
351
|
+
|
|
352
|
+
<DynamicTemplateString>
|
|
353
|
+
<StringID>com.fmi.layoutobject.text.F8C144711470F2FE602C612E30803932</StringID>
|
|
354
|
+
<SourceText>Learn more at proofkit.dev</SourceText>
|
|
355
|
+
<TargetText>Learn more at proofkit.dev</TargetText>
|
|
356
|
+
<Comment>com.fmi.layoutobject.text.Learn more at proofkit.dev</Comment>
|
|
357
|
+
</DynamicTemplateString>
|
|
358
|
+
|
|
359
|
+
<DynamicTemplateString>
|
|
360
|
+
<StringID>com.fmi.tableoccurrence.0766B2B7768E6DCDC52A6A033BCA45AD</StringID>
|
|
361
|
+
<SourceText>proofkit_auth_sessions</SourceText>
|
|
362
|
+
<TargetText>proofkit_auth_sessions</TargetText>
|
|
363
|
+
<Comment>com.fmi.tableoccurrence.proofkit_auth_sessions</Comment>
|
|
364
|
+
</DynamicTemplateString>
|
|
365
|
+
|
|
366
|
+
<DynamicTemplateString>
|
|
367
|
+
<StringID>com.fmi.tableoccurrence.12131E1A6355305D7BDC841A925C5A56</StringID>
|
|
368
|
+
<SourceText>proofkit_auth_email_verification</SourceText>
|
|
369
|
+
<TargetText>proofkit_auth_email_verification</TargetText>
|
|
370
|
+
<Comment>com.fmi.tableoccurrence.proofkit_auth_email_verification</Comment>
|
|
371
|
+
</DynamicTemplateString>
|
|
372
|
+
|
|
373
|
+
<DynamicTemplateString>
|
|
374
|
+
<StringID>com.fmi.tableoccurrence.5E70A3CC1ED3EBCD700544DFF336C69A</StringID>
|
|
375
|
+
<SourceText>proofkit_auth_password_reset</SourceText>
|
|
376
|
+
<TargetText>proofkit_auth_password_reset</TargetText>
|
|
377
|
+
<Comment>com.fmi.tableoccurrence.proofkit_auth_password_reset</Comment>
|
|
378
|
+
</DynamicTemplateString>
|
|
379
|
+
|
|
380
|
+
<DynamicTemplateString>
|
|
381
|
+
<StringID>com.fmi.tableoccurrence.C68768AAA87CA3FAB34F82AC78F568DA</StringID>
|
|
382
|
+
<SourceText>proofkit_auth_users</SourceText>
|
|
383
|
+
<TargetText>proofkit_auth_users</TargetText>
|
|
384
|
+
<Comment>com.fmi.tableoccurrence.proofkit_auth_users</Comment>
|
|
385
|
+
</DynamicTemplateString>
|
|
386
|
+
|
|
387
|
+
<DynamicTemplateString>
|
|
388
|
+
<StringID>com.fmi.tableoccurrence.field.proofkit_auth_email_verification::0A2A6F666A2955B3C0D398EA50924A61</StringID>
|
|
389
|
+
<SourceText>code</SourceText>
|
|
390
|
+
<TargetText>code</TargetText>
|
|
391
|
+
<Comment>com.fmi.tableoccurrence.field.proofkit_auth_email_verification::code</Comment>
|
|
392
|
+
</DynamicTemplateString>
|
|
393
|
+
|
|
394
|
+
<DynamicTemplateString>
|
|
395
|
+
<StringID>com.fmi.tableoccurrence.field.proofkit_auth_email_verification::4B68129F6621C41900B27BF59AB8FD9B</StringID>
|
|
396
|
+
<SourceText>id</SourceText>
|
|
397
|
+
<TargetText>id</TargetText>
|
|
398
|
+
<Comment>com.fmi.tableoccurrence.field.proofkit_auth_email_verification::id</Comment>
|
|
399
|
+
</DynamicTemplateString>
|
|
400
|
+
|
|
401
|
+
<DynamicTemplateString>
|
|
402
|
+
<StringID>com.fmi.tableoccurrence.field.proofkit_auth_email_verification::5588ADDA2E7F62A48B84279D69752C99</StringID>
|
|
403
|
+
<SourceText>email</SourceText>
|
|
404
|
+
<TargetText>email</TargetText>
|
|
405
|
+
<Comment>com.fmi.tableoccurrence.field.proofkit_auth_email_verification::email</Comment>
|
|
406
|
+
</DynamicTemplateString>
|
|
407
|
+
|
|
408
|
+
<DynamicTemplateString>
|
|
409
|
+
<StringID>com.fmi.tableoccurrence.field.proofkit_auth_email_verification::74434AB5FCE4FAAEFDC691DB64D55AB1</StringID>
|
|
410
|
+
<SourceText>expires_at</SourceText>
|
|
411
|
+
<TargetText>expires_at</TargetText>
|
|
412
|
+
<Comment>com.fmi.tableoccurrence.field.proofkit_auth_email_verification::expires_at</Comment>
|
|
413
|
+
</DynamicTemplateString>
|
|
414
|
+
|
|
415
|
+
<DynamicTemplateString>
|
|
416
|
+
<StringID>com.fmi.tableoccurrence.field.proofkit_auth_email_verification::C9E0452F2F891DD359995C99F6A2D0E3</StringID>
|
|
417
|
+
<SourceText>id_user</SourceText>
|
|
418
|
+
<TargetText>id_user</TargetText>
|
|
419
|
+
<Comment>com.fmi.tableoccurrence.field.proofkit_auth_email_verification::id_user</Comment>
|
|
420
|
+
</DynamicTemplateString>
|
|
421
|
+
|
|
422
|
+
<DynamicTemplateString>
|
|
423
|
+
<StringID>com.fmi.tableoccurrence.field.proofkit_auth_password_reset::0A2A6F666A2955B3C0D398EA50924A61</StringID>
|
|
424
|
+
<SourceText>code</SourceText>
|
|
425
|
+
<TargetText>code</TargetText>
|
|
426
|
+
<Comment>com.fmi.tableoccurrence.field.proofkit_auth_password_reset::code</Comment>
|
|
427
|
+
</DynamicTemplateString>
|
|
428
|
+
|
|
429
|
+
<DynamicTemplateString>
|
|
430
|
+
<StringID>com.fmi.tableoccurrence.field.proofkit_auth_password_reset::4B68129F6621C41900B27BF59AB8FD9B</StringID>
|
|
431
|
+
<SourceText>id</SourceText>
|
|
432
|
+
<TargetText>id</TargetText>
|
|
433
|
+
<Comment>com.fmi.tableoccurrence.field.proofkit_auth_password_reset::id</Comment>
|
|
434
|
+
</DynamicTemplateString>
|
|
435
|
+
|
|
436
|
+
<DynamicTemplateString>
|
|
437
|
+
<StringID>com.fmi.tableoccurrence.field.proofkit_auth_password_reset::5588ADDA2E7F62A48B84279D69752C99</StringID>
|
|
438
|
+
<SourceText>email</SourceText>
|
|
439
|
+
<TargetText>email</TargetText>
|
|
440
|
+
<Comment>com.fmi.tableoccurrence.field.proofkit_auth_password_reset::email</Comment>
|
|
441
|
+
</DynamicTemplateString>
|
|
442
|
+
|
|
443
|
+
<DynamicTemplateString>
|
|
444
|
+
<StringID>com.fmi.tableoccurrence.field.proofkit_auth_password_reset::65E3C50A87BB3076D0E717CDAEAA8001</StringID>
|
|
445
|
+
<SourceText>email_verified</SourceText>
|
|
446
|
+
<TargetText>email_verified</TargetText>
|
|
447
|
+
<Comment>com.fmi.tableoccurrence.field.proofkit_auth_password_reset::email_verified</Comment>
|
|
448
|
+
</DynamicTemplateString>
|
|
449
|
+
|
|
450
|
+
<DynamicTemplateString>
|
|
451
|
+
<StringID>com.fmi.tableoccurrence.field.proofkit_auth_password_reset::74434AB5FCE4FAAEFDC691DB64D55AB1</StringID>
|
|
452
|
+
<SourceText>expires_at</SourceText>
|
|
453
|
+
<TargetText>expires_at</TargetText>
|
|
454
|
+
<Comment>com.fmi.tableoccurrence.field.proofkit_auth_password_reset::expires_at</Comment>
|
|
455
|
+
</DynamicTemplateString>
|
|
456
|
+
|
|
457
|
+
<DynamicTemplateString>
|
|
458
|
+
<StringID>com.fmi.tableoccurrence.field.proofkit_auth_password_reset::C9E0452F2F891DD359995C99F6A2D0E3</StringID>
|
|
459
|
+
<SourceText>id_user</SourceText>
|
|
460
|
+
<TargetText>id_user</TargetText>
|
|
461
|
+
<Comment>com.fmi.tableoccurrence.field.proofkit_auth_password_reset::id_user</Comment>
|
|
462
|
+
</DynamicTemplateString>
|
|
463
|
+
|
|
464
|
+
<DynamicTemplateString>
|
|
465
|
+
<StringID>com.fmi.tableoccurrence.field.proofkit_auth_sessions::4B68129F6621C41900B27BF59AB8FD9B</StringID>
|
|
466
|
+
<SourceText>id</SourceText>
|
|
467
|
+
<TargetText>id</TargetText>
|
|
468
|
+
<Comment>com.fmi.tableoccurrence.field.proofkit_auth_sessions::id</Comment>
|
|
469
|
+
</DynamicTemplateString>
|
|
470
|
+
|
|
471
|
+
<DynamicTemplateString>
|
|
472
|
+
<StringID>com.fmi.tableoccurrence.field.proofkit_auth_sessions::57A056C71AA448A69FBD9960B1053E99</StringID>
|
|
473
|
+
<SourceText>expiresAt</SourceText>
|
|
474
|
+
<TargetText>expiresAt</TargetText>
|
|
475
|
+
<Comment>com.fmi.tableoccurrence.field.proofkit_auth_sessions::expiresAt</Comment>
|
|
476
|
+
</DynamicTemplateString>
|
|
477
|
+
|
|
478
|
+
<DynamicTemplateString>
|
|
479
|
+
<StringID>com.fmi.tableoccurrence.field.proofkit_auth_sessions::C9E0452F2F891DD359995C99F6A2D0E3</StringID>
|
|
480
|
+
<SourceText>id_user</SourceText>
|
|
481
|
+
<TargetText>id_user</TargetText>
|
|
482
|
+
<Comment>com.fmi.tableoccurrence.field.proofkit_auth_sessions::id_user</Comment>
|
|
483
|
+
</DynamicTemplateString>
|
|
484
|
+
|
|
485
|
+
<DynamicTemplateString>
|
|
486
|
+
<StringID>com.fmi.tableoccurrence.field.proofkit_auth_users::4B68129F6621C41900B27BF59AB8FD9B</StringID>
|
|
487
|
+
<SourceText>id</SourceText>
|
|
488
|
+
<TargetText>id</TargetText>
|
|
489
|
+
<Comment>com.fmi.tableoccurrence.field.proofkit_auth_users::id</Comment>
|
|
490
|
+
</DynamicTemplateString>
|
|
491
|
+
|
|
492
|
+
<DynamicTemplateString>
|
|
493
|
+
<StringID>com.fmi.tableoccurrence.field.proofkit_auth_users::5588ADDA2E7F62A48B84279D69752C99</StringID>
|
|
494
|
+
<SourceText>email</SourceText>
|
|
495
|
+
<TargetText>email</TargetText>
|
|
496
|
+
<Comment>com.fmi.tableoccurrence.field.proofkit_auth_users::email</Comment>
|
|
497
|
+
</DynamicTemplateString>
|
|
498
|
+
|
|
499
|
+
<DynamicTemplateString>
|
|
500
|
+
<StringID>com.fmi.tableoccurrence.field.proofkit_auth_users::6C65589BF319743648F1CAB95738F7B3</StringID>
|
|
501
|
+
<SourceText>emailVerified</SourceText>
|
|
502
|
+
<TargetText>emailVerified</TargetText>
|
|
503
|
+
<Comment>com.fmi.tableoccurrence.field.proofkit_auth_users::emailVerified</Comment>
|
|
504
|
+
</DynamicTemplateString>
|
|
505
|
+
|
|
506
|
+
<DynamicTemplateString>
|
|
507
|
+
<StringID>com.fmi.tableoccurrence.field.proofkit_auth_users::7CBBAD414D9185890C6AE6EA4AE96E5C</StringID>
|
|
508
|
+
<SourceText>password_hash</SourceText>
|
|
509
|
+
<TargetText>password_hash</TargetText>
|
|
510
|
+
<Comment>com.fmi.tableoccurrence.field.proofkit_auth_users::password_hash</Comment>
|
|
511
|
+
</DynamicTemplateString>
|
|
512
|
+
|
|
513
|
+
<DynamicTemplateString>
|
|
514
|
+
<StringID>com.fmi.tableoccurrence.field.proofkit_auth_users::DD6F8C0A5163A91CBDCAAFEC3DB91266</StringID>
|
|
515
|
+
<SourceText>username</SourceText>
|
|
516
|
+
<TargetText>username</TargetText>
|
|
517
|
+
<Comment>com.fmi.tableoccurrence.field.proofkit_auth_users::username</Comment>
|
|
518
|
+
</DynamicTemplateString>
|
|
Binary file
|