pycarlo 0.10.66__py3-none-any.whl → 0.10.68__py3-none-any.whl
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.
Potentially problematic release.
This version of pycarlo might be problematic. Click here for more details.
- pycarlo/lib/schema.json +30 -10
- pycarlo/lib/schema.py +13 -6
- {pycarlo-0.10.66.dist-info → pycarlo-0.10.68.dist-info}/METADATA +1 -1
- {pycarlo-0.10.66.dist-info → pycarlo-0.10.68.dist-info}/RECORD +7 -7
- {pycarlo-0.10.66.dist-info → pycarlo-0.10.68.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.66.dist-info → pycarlo-0.10.68.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.66.dist-info → pycarlo-0.10.68.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -55313,10 +55313,10 @@
|
|
|
55313
55313
|
{
|
|
55314
55314
|
"defaultValue": null,
|
|
55315
55315
|
"description": null,
|
|
55316
|
-
"name": "
|
|
55316
|
+
"name": "matchOnCatalog",
|
|
55317
55317
|
"type": {
|
|
55318
55318
|
"kind": "SCALAR",
|
|
55319
|
-
"name": "
|
|
55319
|
+
"name": "Boolean",
|
|
55320
55320
|
"ofType": null
|
|
55321
55321
|
}
|
|
55322
55322
|
},
|
|
@@ -55362,17 +55362,13 @@
|
|
|
55362
55362
|
}
|
|
55363
55363
|
],
|
|
55364
55364
|
"deprecationReason": null,
|
|
55365
|
-
"description":
|
|
55365
|
+
"description": null,
|
|
55366
55366
|
"isDeprecated": false,
|
|
55367
55367
|
"name": "dbtJobs",
|
|
55368
55368
|
"type": {
|
|
55369
|
-
"kind": "
|
|
55370
|
-
"name":
|
|
55371
|
-
"ofType":
|
|
55372
|
-
"kind": "OBJECT",
|
|
55373
|
-
"name": "DbtJobConnection",
|
|
55374
|
-
"ofType": null
|
|
55375
|
-
}
|
|
55369
|
+
"kind": "OBJECT",
|
|
55370
|
+
"name": "DbtJobConnection",
|
|
55371
|
+
"ofType": null
|
|
55376
55372
|
}
|
|
55377
55373
|
},
|
|
55378
55374
|
{
|
|
@@ -94841,6 +94837,18 @@
|
|
|
94841
94837
|
"name": "Int",
|
|
94842
94838
|
"ofType": null
|
|
94843
94839
|
}
|
|
94840
|
+
},
|
|
94841
|
+
{
|
|
94842
|
+
"args": [],
|
|
94843
|
+
"deprecationReason": null,
|
|
94844
|
+
"description": null,
|
|
94845
|
+
"isDeprecated": false,
|
|
94846
|
+
"name": "notes",
|
|
94847
|
+
"type": {
|
|
94848
|
+
"kind": "SCALAR",
|
|
94849
|
+
"name": "String",
|
|
94850
|
+
"ofType": null
|
|
94851
|
+
}
|
|
94844
94852
|
}
|
|
94845
94853
|
],
|
|
94846
94854
|
"inputFields": null,
|
|
@@ -95099,6 +95107,18 @@
|
|
|
95099
95107
|
"name": "Int",
|
|
95100
95108
|
"ofType": null
|
|
95101
95109
|
}
|
|
95110
|
+
},
|
|
95111
|
+
{
|
|
95112
|
+
"args": [],
|
|
95113
|
+
"deprecationReason": null,
|
|
95114
|
+
"description": null,
|
|
95115
|
+
"isDeprecated": false,
|
|
95116
|
+
"name": "customMessage",
|
|
95117
|
+
"type": {
|
|
95118
|
+
"kind": "SCALAR",
|
|
95119
|
+
"name": "String",
|
|
95120
|
+
"ofType": null
|
|
95121
|
+
}
|
|
95102
95122
|
}
|
|
95103
95123
|
],
|
|
95104
95124
|
"inputFields": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -58275,6 +58275,7 @@ class RoutingRuleData(sgqlc.types.Type):
|
|
|
58275
58275
|
"digest_settings_id",
|
|
58276
58276
|
"created_by_id",
|
|
58277
58277
|
"last_update_user_id",
|
|
58278
|
+
"custom_message",
|
|
58278
58279
|
)
|
|
58279
58280
|
uuid = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="uuid")
|
|
58280
58281
|
|
|
@@ -58310,6 +58311,8 @@ class RoutingRuleData(sgqlc.types.Type):
|
|
|
58310
58311
|
|
|
58311
58312
|
last_update_user_id = sgqlc.types.Field(Int, graphql_name="lastUpdateUserId")
|
|
58312
58313
|
|
|
58314
|
+
custom_message = sgqlc.types.Field(String, graphql_name="customMessage")
|
|
58315
|
+
|
|
58313
58316
|
|
|
58314
58317
|
class RowCountResponseType(sgqlc.types.Type):
|
|
58315
58318
|
"""Row count info"""
|
|
@@ -60985,6 +60988,7 @@ class TableMonitorSpec(sgqlc.types.Type):
|
|
|
60985
60988
|
"source_monitored_table_rules",
|
|
60986
60989
|
"created_by_id",
|
|
60987
60990
|
"distinct_mcons_count",
|
|
60991
|
+
"notes",
|
|
60988
60992
|
)
|
|
60989
60993
|
warehouse_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="warehouseUuid")
|
|
60990
60994
|
|
|
@@ -61019,6 +61023,8 @@ class TableMonitorSpec(sgqlc.types.Type):
|
|
|
61019
61023
|
|
|
61020
61024
|
distinct_mcons_count = sgqlc.types.Field(Int, graphql_name="distinctMconsCount")
|
|
61021
61025
|
|
|
61026
|
+
notes = sgqlc.types.Field(String, graphql_name="notes")
|
|
61027
|
+
|
|
61022
61028
|
|
|
61023
61029
|
class TableMonitorStatus(sgqlc.types.Type):
|
|
61024
61030
|
__schema__ = schema
|
|
@@ -69109,11 +69115,14 @@ class DbtProject(sgqlc.types.Type, Node):
|
|
|
69109
69115
|
"""The date of the last test import we know about"""
|
|
69110
69116
|
|
|
69111
69117
|
dbt_jobs = sgqlc.types.Field(
|
|
69112
|
-
|
|
69118
|
+
DbtJobConnection,
|
|
69113
69119
|
graphql_name="dbtJobs",
|
|
69114
69120
|
args=sgqlc.types.ArgDict(
|
|
69115
69121
|
(
|
|
69116
|
-
(
|
|
69122
|
+
(
|
|
69123
|
+
"match_on_catalog",
|
|
69124
|
+
sgqlc.types.Arg(Boolean, graphql_name="matchOnCatalog", default=None),
|
|
69125
|
+
),
|
|
69117
69126
|
("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
|
|
69118
69127
|
("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
|
|
69119
69128
|
("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
|
|
@@ -69121,11 +69130,9 @@ class DbtProject(sgqlc.types.Type, Node):
|
|
|
69121
69130
|
)
|
|
69122
69131
|
),
|
|
69123
69132
|
)
|
|
69124
|
-
"""
|
|
69125
|
-
|
|
69126
|
-
Arguments:
|
|
69133
|
+
"""Arguments:
|
|
69127
69134
|
|
|
69128
|
-
* `
|
|
69135
|
+
* `match_on_catalog` (`Boolean`)None
|
|
69129
69136
|
* `before` (`String`)None
|
|
69130
69137
|
* `after` (`String`)None
|
|
69131
69138
|
* `first` (`Int`)None
|
|
@@ -35,10 +35,10 @@ pycarlo/features/user/queries.py,sha256=m97RvM0oiBlrU5xmOwe_JJ5N0G0NG5hIOeyQqN2O
|
|
|
35
35
|
pycarlo/features/user/service.py,sha256=DHkhuonySaHro07NTd0YNe3cNkDk62CiRTY77dhVaMs,2890
|
|
36
36
|
pycarlo/lib/README.md,sha256=QGNeUefPzLKGyZqn5aITpcFgkC9WQTNS292BGisRFHk,139
|
|
37
37
|
pycarlo/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
-
pycarlo/lib/schema.json,sha256=
|
|
39
|
-
pycarlo/lib/schema.py,sha256=
|
|
40
|
-
pycarlo-0.10.
|
|
41
|
-
pycarlo-0.10.
|
|
42
|
-
pycarlo-0.10.
|
|
43
|
-
pycarlo-0.10.
|
|
44
|
-
pycarlo-0.10.
|
|
38
|
+
pycarlo/lib/schema.json,sha256=1hZltnoLIBYKVeC6TP0Wi_SSVPiuLl0vt5iAm1b3x94,5976479
|
|
39
|
+
pycarlo/lib/schema.py,sha256=856KABvXkxXb2lW6bdtbGycvI8kRyzRvnRdesqavblM,2582606
|
|
40
|
+
pycarlo-0.10.68.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.68.dist-info/METADATA,sha256=HGDtGddg8tjZmRD-lC1ljVd8RTxei3BEJgMsmVNELoA,8741
|
|
42
|
+
pycarlo-0.10.68.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.68.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.68.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|