diff --git a/migrations/1727714840428-timezone.ts b/migrations/1727714840428-timezone.ts new file mode 100644 index 00000000..718ede18 --- /dev/null +++ b/migrations/1727714840428-timezone.ts @@ -0,0 +1,38 @@ +import { generateApolloClient } from '@deep-foundation/hasura/client.js'; +import Debug from 'debug'; +import { DeepClient } from '../imports/client.js'; +import { installPackage } from './1678940577209-deepcase.js'; +import { containWithin, packageExists, sharePermissions } from './1664940577200-tsx.js'; + +const debug = Debug('deeplinks:migrations:timezone'); +const log = debug.extend('log'); +const error = debug.extend('error'); + +const rootClient = generateApolloClient({ + path: `${process.env.MIGRATIONS_HASURA_PATH}/v1/graphql`, + ssl: !!+(process.env.MIGRATIONS_HASURA_SSL || 0), + secret: process.env.MIGRATIONS_HASURA_SECRET, +}); + +const root = new DeepClient({ + apolloClient: rootClient, +}); + +export const up = async () => { + log('up'); + const packageName = '@deep-foundation/timezone'; + if (!await packageExists(packageName)) { + const adminId = await root.id('deep', 'admin'); + const admin = await root.login({ linkId: adminId }); + const deep = new DeepClient({ deep: root, ...admin }); + + await installPackage(deep, '@deep-foundation/timezone'); + const packageId = await root.id('@deep-foundation/timezone'); + await sharePermissions(adminId, packageId); + await containWithin(adminId, packageId); + } +}; + +export const down = async () => { + log('down'); +}; \ No newline at end of file diff --git a/migrations/1727714840450-coordinates.ts b/migrations/1727714840450-coordinates.ts new file mode 100644 index 00000000..d5dbeb01 --- /dev/null +++ b/migrations/1727714840450-coordinates.ts @@ -0,0 +1,38 @@ +import { generateApolloClient } from '@deep-foundation/hasura/client.js'; +import Debug from 'debug'; +import { DeepClient } from '../imports/client.js'; +import { installPackage } from './1678940577209-deepcase.js'; +import { containWithin, packageExists, sharePermissions } from './1664940577200-tsx.js'; + +const debug = Debug('deeplinks:migrations:coordinates'); +const log = debug.extend('log'); +const error = debug.extend('error'); + +const rootClient = generateApolloClient({ + path: `${process.env.MIGRATIONS_HASURA_PATH}/v1/graphql`, + ssl: !!+(process.env.MIGRATIONS_HASURA_SSL || 0), + secret: process.env.MIGRATIONS_HASURA_SECRET, +}); + +const root = new DeepClient({ + apolloClient: rootClient, +}); + +export const up = async () => { + log('up'); + const packageName = '@deep-foundation/coordinates'; + if (!await packageExists(packageName)) { + const adminId = await root.id('deep', 'admin'); + const admin = await root.login({ linkId: adminId }); + const deep = new DeepClient({ deep: root, ...admin }); + + await installPackage(deep, '@deep-foundation/coordinates'); + const packageId = await root.id('@deep-foundation/coordinates'); + await sharePermissions(adminId, packageId); + await containWithin(adminId, packageId); + } +}; + +export const down = async () => { + log('down'); +}; \ No newline at end of file diff --git a/package.json b/package.json index c8099e6f..858a5394 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@deep-foundation/deeplinks", - "version": "0.0.587", + "version": "0.0.588", "license": "Unlicense", "type": "module", "main": "import.js",