Skip to content

Commit 4566fb3

Browse files
authored
Merge pull request #4 from planet-a-ventures/joscha/fix-db-issue
fix: deleted users in Notion workspace
2 parents d4fbb59 + c0578fa commit 4566fb3

File tree

5 files changed

+702
-732
lines changed

5 files changed

+702
-732
lines changed

.vscode/launch.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Python Debugger: Sample pipeline",
9+
"type": "debugpy",
10+
"request": "launch",
11+
"program": "notion_pipeline.py",
12+
"console": "integratedTerminal",
13+
"justMyCode": false,
14+
}
15+
]
16+
}

devenv.lock

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"devenv": {
44
"locked": {
55
"dir": "src/modules",
6-
"lastModified": 1742320965,
6+
"lastModified": 1752507617,
77
"owner": "cachix",
88
"repo": "devenv",
9-
"rev": "6bde92766ddd3ee1630029a03d36baddd51934e2",
9+
"rev": "d26f9cf218d8617168d26f749e02a6d87ea4bc28",
1010
"type": "github"
1111
},
1212
"original": {
@@ -19,10 +19,10 @@
1919
"flake-compat": {
2020
"flake": false,
2121
"locked": {
22-
"lastModified": 1733328505,
22+
"lastModified": 1747046372,
2323
"owner": "edolstra",
2424
"repo": "flake-compat",
25-
"rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec",
25+
"rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885",
2626
"type": "github"
2727
},
2828
"original": {
@@ -34,10 +34,10 @@
3434
"flake-compat_2": {
3535
"flake": false,
3636
"locked": {
37-
"lastModified": 1733328505,
37+
"lastModified": 1747046372,
3838
"owner": "edolstra",
3939
"repo": "flake-compat",
40-
"rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec",
40+
"rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885",
4141
"type": "github"
4242
},
4343
"original": {
@@ -55,10 +55,10 @@
5555
]
5656
},
5757
"locked": {
58-
"lastModified": 1742300892,
58+
"lastModified": 1750779888,
5959
"owner": "cachix",
6060
"repo": "git-hooks.nix",
61-
"rev": "ea26a82dda75bee6783baca6894040c8e6599728",
61+
"rev": "16ec914f6fb6f599ce988427d9d94efddf25fe6d",
6262
"type": "github"
6363
},
6464
"original": {
@@ -89,10 +89,10 @@
8989
},
9090
"nixpkgs": {
9191
"locked": {
92-
"lastModified": 1733477122,
92+
"lastModified": 1750441195,
9393
"owner": "cachix",
9494
"repo": "devenv-nixpkgs",
95-
"rev": "7bd9e84d0452f6d2e63b6e6da29fe73fac951857",
95+
"rev": "0ceffe312871b443929ff3006960d29b120dc627",
9696
"type": "github"
9797
},
9898
"original": {
@@ -110,10 +110,10 @@
110110
]
111111
},
112112
"locked": {
113-
"lastModified": 1733319315,
113+
"lastModified": 1749760516,
114114
"owner": "cachix",
115115
"repo": "nixpkgs-python",
116-
"rev": "01263eeb28c09f143d59cd6b0b7c4cc8478efd48",
116+
"rev": "908dbb466af5955ea479ac95953333fd64387216",
117117
"type": "github"
118118
},
119119
"original": {
@@ -124,10 +124,10 @@
124124
},
125125
"nixpkgs-unstable": {
126126
"locked": {
127-
"lastModified": 1742272065,
127+
"lastModified": 1752446735,
128128
"owner": "nixos",
129129
"repo": "nixpkgs",
130-
"rev": "3549532663732bfd89993204d40543e9edaec4f2",
130+
"rev": "a421ac6595024edcfbb1ef950a3712b89161c359",
131131
"type": "github"
132132
},
133133
"original": {

devenv.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ in
2626

2727
git-hooks.hooks = {
2828
shellcheck.enable = true;
29+
shellcheck.excludes = [
30+
".envrc"
31+
];
2932
ruff.enable = true;
3033
ruff-format.enable = true;
3134
typos.enable = true;

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors = [
99
requires-python = ">=3.12"
1010
dependencies = [
1111
"dlt>=1.8.1",
12-
"pydantic-api-sdk-notion>=0.0.35",
12+
"pydantic-api-sdk-notion>=0.0.36",
1313
"pydantic>=2.10.6",
1414
]
1515

0 commit comments

Comments
 (0)