datajunction-server 0.0.1a105.dev0__tar.gz → 0.0.1a105.dev1__tar.gz
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.
- {datajunction_server-0.0.1a105.dev0 → datajunction_server-0.0.1a105.dev1}/PKG-INFO +2 -3
- {datajunction_server-0.0.1a105.dev0 → datajunction_server-0.0.1a105.dev1}/datajunction_server/api/graphql/schema.graphql +6 -1
- {datajunction_server-0.0.1a105.dev0 → datajunction_server-0.0.1a105.dev1}/pyproject.toml +0 -2
- {datajunction_server-0.0.1a105.dev0 → datajunction_server-0.0.1a105.dev1}/.gitignore +0 -0
- {datajunction_server-0.0.1a105.dev0 → datajunction_server-0.0.1a105.dev1}/README.md +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: datajunction-server
|
|
3
|
-
Version: 0.0.1a105.
|
|
3
|
+
Version: 0.0.1a105.dev1
|
|
4
4
|
Summary: DataJunction server library for running to a DataJunction server
|
|
5
5
|
Project-URL: Homepage, https://datajunction.io
|
|
6
6
|
Project-URL: Repository, https://github.com/DataJunction/dj
|
|
@@ -30,7 +30,6 @@ Requires-Dist: msgpack<2.0.0,>=1.0.5
|
|
|
30
30
|
Requires-Dist: nbformat>=5.10.4
|
|
31
31
|
Requires-Dist: opentelemetry-instrumentation-fastapi==0.38b0
|
|
32
32
|
Requires-Dist: passlib>=1.7.4
|
|
33
|
-
Requires-Dist: preset-cli
|
|
34
33
|
Requires-Dist: psycopg>=3.1.16
|
|
35
34
|
Requires-Dist: pydantic<2
|
|
36
35
|
Requires-Dist: python-dotenv<1.0.0,>=0.19.0
|
|
@@ -251,6 +251,11 @@ type NodeName {
|
|
|
251
251
|
name: String!
|
|
252
252
|
}
|
|
253
253
|
|
|
254
|
+
type NodeNameVersion {
|
|
255
|
+
name: String!
|
|
256
|
+
currentVersion: String!
|
|
257
|
+
}
|
|
258
|
+
|
|
254
259
|
type NodeRevision {
|
|
255
260
|
id: Union!
|
|
256
261
|
type: NodeType!
|
|
@@ -264,7 +269,7 @@ type NodeRevision {
|
|
|
264
269
|
customMetadata: JSON
|
|
265
270
|
query: String
|
|
266
271
|
dimensionLinks: [DimensionLink!]!
|
|
267
|
-
parents: [
|
|
272
|
+
parents: [NodeNameVersion!]!
|
|
268
273
|
availability: AvailabilityState
|
|
269
274
|
materializations: [MaterializationConfig!]
|
|
270
275
|
schema_: String
|
|
File without changes
|
|
File without changes
|