Skip to content

Commit

Permalink
0.0.582
Browse files Browse the repository at this point in the history
  • Loading branch information
ivansglazunov committed Sep 29, 2024
1 parent c3d5759 commit a4e6d91
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 1 deletion.
43 changes: 43 additions & 0 deletions migrations/1727618396605-preload.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
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:preload');
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/preload';
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/preload');
const packageId = await root.id('@deep-foundation/preload');
await sharePermissions(adminId, packageId);
await containWithin(adminId, packageId);

const Pckg = await deep.id('@deep-foundation/core', 'Package');
const Preload = await deep.id('@deep-foundation/preload', 'Preload');
const { data: packages } = await deep.select({ type_id: Pckg });
await deep.insert(packages.map(p => ({ type_id: Preload, from_id: p.id, to_id: p.id })));
}
};

export const down = async () => {
log('down');
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deep-foundation/deeplinks",
"version": "0.0.581",
"version": "0.0.582",
"license": "Unlicense",
"type": "module",
"main": "import.js",
Expand Down

0 comments on commit a4e6d91

Please sign in to comment.