0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-03 22:15:32 -05:00

refactor(schemas): fix type path

This commit is contained in:
Gao Sun 2022-12-20 13:33:53 +08:00
parent a023fe97e5
commit 33faa41f0d
No known key found for this signature in database
GPG key ID: 13EBE123E4773688
20 changed files with 21 additions and 27 deletions

View file

@ -52,6 +52,6 @@
},
"prettier": "@silverhand/eslint-config/.prettierrc",
"dependencies": {
"@withtyped/server": "^0.3.0"
"@withtyped/server": "^0.3.1"
}
}

View file

@ -1,6 +1,6 @@
import { sql } from 'slonik';
import type { AlterationScript } from '../src/types/alteration.js';
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {

View file

@ -1,6 +1,6 @@
import { sql } from 'slonik';
import type { AlterationScript } from '../src/types/alteration.js';
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {

View file

@ -1,6 +1,6 @@
import { sql } from 'slonik';
import type { AlterationScript } from '../src/types/alteration.js';
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {

View file

@ -1,6 +1,6 @@
import { sql } from 'slonik';
import type { AlterationScript } from '../src/types/alteration.js';
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {

View file

@ -1,6 +1,6 @@
import { sql } from 'slonik';
import type { AlterationScript } from '../src/types/alteration.js';
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {

View file

@ -1,6 +1,6 @@
import { sql } from 'slonik';
import type { AlterationScript } from '../src/types/alteration.js';
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {

View file

@ -1,6 +1,6 @@
import { sql } from 'slonik';
import type { AlterationScript } from '../src/types/alteration.js';
import type { AlterationScript } from '../lib/types/alteration.js';
enum SignInMethodState {
Primary = 'primary',

View file

@ -1,6 +1,6 @@
import { sql } from 'slonik';
import type { AlterationScript } from '../src/types/alteration.js';
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {

View file

@ -1,6 +1,6 @@
import { sql } from 'slonik';
import type { AlterationScript } from '../src/types/alteration.js';
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {

View file

@ -1,6 +1,6 @@
import { sql } from 'slonik';
import type { AlterationScript } from '../src/types/alteration.js';
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {

View file

@ -1,6 +1,6 @@
import { sql } from 'slonik';
import type { AlterationScript } from '../src/types/alteration.js';
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {

View file

@ -1,6 +1,6 @@
import { sql } from 'slonik';
import type { AlterationScript } from '../src/types/alteration.js';
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {

View file

@ -1,6 +1,6 @@
import { sql } from 'slonik';
import type { AlterationScript } from '../src/types/alteration.js';
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {

View file

@ -1,6 +1,6 @@
import { sql } from 'slonik';
import type { AlterationScript } from '../src/types/alteration.js';
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {

View file

@ -2,7 +2,7 @@ import { isSameArray } from '@silverhand/essentials';
import type { DatabaseTransactionConnection } from 'slonik';
import { sql } from 'slonik';
import type { AlterationScript } from '../src/types/alteration.js';
import type { AlterationScript } from '../lib/types/alteration.js';
enum DeprecatedSignUpIdentifier {
Email = 'email',

View file

@ -1,6 +1,6 @@
import { sql } from 'slonik';
import type { AlterationScript } from '../src/types/alteration.js';
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {

View file

@ -1,7 +1,7 @@
import type { DatabaseTransactionConnection } from 'slonik';
import { sql } from 'slonik';
import type { AlterationScript } from '../src/types/alteration.js';
import type { AlterationScript } from '../lib/types/alteration.js';
type DeprecatedTermsOfUse = {
enabled: boolean;

View file

@ -1,6 +1,6 @@
import { sql } from 'slonik';
import type { AlterationScript } from '../src/types/alteration.js';
import type { AlterationScript } from '../lib/types/alteration.js';
const alteration: AlterationScript = {
up: async (pool) => {

10
pnpm-lock.yaml generated
View file

@ -482,7 +482,7 @@ importers:
'@types/jest': ^29.1.2
'@types/jest-environment-puppeteer': ^5.0.2
'@types/node': ^16.0.0
'@withtyped/server': ^0.3.0
'@withtyped/server': ^0.3.1
dotenv: ^16.0.0
eslint: ^8.21.0
got: ^12.5.3
@ -496,7 +496,7 @@ importers:
text-encoder: ^0.0.4
typescript: ^4.9.4
dependencies:
'@withtyped/server': 0.3.0
'@withtyped/server': 0.3.1
devDependencies:
'@jest/types': 29.1.2
'@logto/js': 1.0.0-beta.14
@ -4673,12 +4673,6 @@ packages:
- pg-native
dev: false
/@withtyped/server/0.3.0:
resolution: {integrity: sha512-fvKf3JryFKIOgGp2z2YBbjiJrSKznuUUlH7Kv9v1gcQxkJXYjSbb0tDY4ObJjKGIrhqIJLWV4Gx40ANJMBDqww==}
dependencies:
'@withtyped/shared': 0.2.0
dev: false
/@withtyped/server/0.3.1:
resolution: {integrity: sha512-AI4QDHVTgv5GWPomWCgP5vqgVWaiby1vm56LBbSqe6r1DTPOZrySoxNoaE5XTQzYX1Jd3pzq1CsOd5AxkgCfpg==}
dependencies: