Skip to content

Commit

Permalink
0.0.588
Browse files Browse the repository at this point in the history
  • Loading branch information
ivansglazunov committed Sep 30, 2024
1 parent 4c3a6ea commit 198d9fe
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 1 deletion.
38 changes: 38 additions & 0 deletions migrations/1727714840428-timezone.ts
Original file line number Diff line number Diff line change
@@ -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');
};
38 changes: 38 additions & 0 deletions migrations/1727714840450-coordinates.ts
Original file line number Diff line number Diff line change
@@ -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');
};
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.587",
"version": "0.0.588",
"license": "Unlicense",
"type": "module",
"main": "import.js",
Expand Down

0 comments on commit 198d9fe

Please sign in to comment.