@haustle/notion-orm 0.0.37 → 0.0.38
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/package.json +1 -1
- package/build/databases/5f4bf76a-1e3f-48d6-84d2-506ea2690d64.js +0 -28
- package/build/databases/5f4bf76a-1e3f-48d6-84d2-506ea2690d64.ts +0 -34
- package/build/databases/a52239e4-839d-4a3a-8f48-75376cfbfb02.js +0 -24
- package/build/databases/a52239e4-839d-4a3a-8f48-75376cfbfb02.ts +0 -30
- package/build/databases/notion.js +0 -2
- package/build/databases/notion.ts +0 -2
package/package.json
CHANGED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.newGradApps = void 0;
|
|
4
|
-
const DatabaseActions_1 = require("../src/DatabaseActions");
|
|
5
|
-
const databaseId = "5f4bf76a-1e3f-48d6-84d2-506ea2690d64";
|
|
6
|
-
const propMap = {
|
|
7
|
-
"role": {
|
|
8
|
-
columnName: "Role",
|
|
9
|
-
type: "select"
|
|
10
|
-
},
|
|
11
|
-
"deadline": {
|
|
12
|
-
columnName: "Deadline",
|
|
13
|
-
type: "date"
|
|
14
|
-
},
|
|
15
|
-
"process": {
|
|
16
|
-
columnName: "Process",
|
|
17
|
-
type: "select"
|
|
18
|
-
},
|
|
19
|
-
"complete": {
|
|
20
|
-
columnName: "Complete",
|
|
21
|
-
type: "checkbox"
|
|
22
|
-
},
|
|
23
|
-
"company": {
|
|
24
|
-
columnName: "Company",
|
|
25
|
-
type: "title"
|
|
26
|
-
}
|
|
27
|
-
};
|
|
28
|
-
exports.newGradApps = new DatabaseActions_1.DatabaseActions(databaseId, propMap);
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { DatabaseActions } from "../src/DatabaseActions";
|
|
2
|
-
const databaseId = "5f4bf76a-1e3f-48d6-84d2-506ea2690d64";
|
|
3
|
-
type DatabaseSchemaType = {
|
|
4
|
-
role?: "SWE Intern" | "New Grad" | "SWE Co-op" | "Software Engineer" | (string & {});
|
|
5
|
-
deadline?: Date;
|
|
6
|
-
process?: "Applied" | "OA" | "Phone Interview" | "TH Project" | "Offer" | "Accepted" | (string & {});
|
|
7
|
-
company: string;
|
|
8
|
-
};
|
|
9
|
-
const propMap = {
|
|
10
|
-
"role": {
|
|
11
|
-
columnName: "Role",
|
|
12
|
-
type: "select"
|
|
13
|
-
},
|
|
14
|
-
"deadline": {
|
|
15
|
-
columnName: "Deadline",
|
|
16
|
-
type: "date"
|
|
17
|
-
},
|
|
18
|
-
"process": {
|
|
19
|
-
columnName: "Process",
|
|
20
|
-
type: "select"
|
|
21
|
-
},
|
|
22
|
-
"complete": {
|
|
23
|
-
columnName: "Complete",
|
|
24
|
-
type: "checkbox"
|
|
25
|
-
},
|
|
26
|
-
"company": {
|
|
27
|
-
columnName: "Company",
|
|
28
|
-
type: "title"
|
|
29
|
-
}
|
|
30
|
-
} as const
|
|
31
|
-
type ColumnNameToColumnType = {
|
|
32
|
-
[Property in keyof typeof propMap]: (typeof propMap)[Property]["type"];
|
|
33
|
-
};
|
|
34
|
-
export const newGradApps = new DatabaseActions<DatabaseSchemaType, ColumnNameToColumnType>(databaseId, propMap);
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.dimitriSFightingVideo = void 0;
|
|
4
|
-
const DatabaseActions_1 = require("../src/DatabaseActions");
|
|
5
|
-
const databaseId = "a52239e4-839d-4a3a-8f48-75376cfbfb02";
|
|
6
|
-
const propMap = {
|
|
7
|
-
"character": {
|
|
8
|
-
columnName: "Character",
|
|
9
|
-
type: "multi_select"
|
|
10
|
-
},
|
|
11
|
-
"game": {
|
|
12
|
-
columnName: "Game",
|
|
13
|
-
type: "select"
|
|
14
|
-
},
|
|
15
|
-
"link": {
|
|
16
|
-
columnName: "Link",
|
|
17
|
-
type: "url"
|
|
18
|
-
},
|
|
19
|
-
"combo": {
|
|
20
|
-
columnName: "Combo",
|
|
21
|
-
type: "title"
|
|
22
|
-
}
|
|
23
|
-
};
|
|
24
|
-
exports.dimitriSFightingVideo = new DatabaseActions_1.DatabaseActions(databaseId, propMap);
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { DatabaseActions } from "../src/DatabaseActions";
|
|
2
|
-
const databaseId = "a52239e4-839d-4a3a-8f48-75376cfbfb02";
|
|
3
|
-
type DatabaseSchemaType = {
|
|
4
|
-
character?: ("fox" | "kirby" | "falcon" | "android 21" | "Joker" | "Kid buu" | (string & {}))[];
|
|
5
|
-
game?: "smash" | "dragon ball" | (string & {});
|
|
6
|
-
link?: string;
|
|
7
|
-
combo: string;
|
|
8
|
-
};
|
|
9
|
-
const propMap = {
|
|
10
|
-
"character": {
|
|
11
|
-
columnName: "Character",
|
|
12
|
-
type: "multi_select"
|
|
13
|
-
},
|
|
14
|
-
"game": {
|
|
15
|
-
columnName: "Game",
|
|
16
|
-
type: "select"
|
|
17
|
-
},
|
|
18
|
-
"link": {
|
|
19
|
-
columnName: "Link",
|
|
20
|
-
type: "url"
|
|
21
|
-
},
|
|
22
|
-
"combo": {
|
|
23
|
-
columnName: "Combo",
|
|
24
|
-
type: "title"
|
|
25
|
-
}
|
|
26
|
-
} as const
|
|
27
|
-
type ColumnNameToColumnType = {
|
|
28
|
-
[Property in keyof typeof propMap]: (typeof propMap)[Property]["type"];
|
|
29
|
-
};
|
|
30
|
-
export const dimitriSFightingVideo = new DatabaseActions<DatabaseSchemaType, ColumnNameToColumnType>(databaseId, propMap);
|