pycarlo 0.10.200__py3-none-any.whl → 0.10.201__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 +28 -12
- pycarlo/lib/schema.py +4 -4
- {pycarlo-0.10.200.dist-info → pycarlo-0.10.201.dist-info}/METADATA +1 -1
- {pycarlo-0.10.200.dist-info → pycarlo-0.10.201.dist-info}/RECORD +7 -7
- {pycarlo-0.10.200.dist-info → pycarlo-0.10.201.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.200.dist-info → pycarlo-0.10.201.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.200.dist-info → pycarlo-0.10.201.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -1342,9 +1342,13 @@
|
|
|
1342
1342
|
"kind": "LIST",
|
|
1343
1343
|
"name": null,
|
|
1344
1344
|
"ofType": {
|
|
1345
|
-
"kind": "
|
|
1346
|
-
"name":
|
|
1347
|
-
"ofType":
|
|
1345
|
+
"kind": "NON_NULL",
|
|
1346
|
+
"name": null,
|
|
1347
|
+
"ofType": {
|
|
1348
|
+
"kind": "OBJECT",
|
|
1349
|
+
"name": "DatadogIntegrationOutput",
|
|
1350
|
+
"ofType": null
|
|
1351
|
+
}
|
|
1348
1352
|
}
|
|
1349
1353
|
}
|
|
1350
1354
|
},
|
|
@@ -1383,9 +1387,13 @@
|
|
|
1383
1387
|
"kind": "LIST",
|
|
1384
1388
|
"name": null,
|
|
1385
1389
|
"ofType": {
|
|
1386
|
-
"kind": "
|
|
1387
|
-
"name":
|
|
1388
|
-
"ofType":
|
|
1390
|
+
"kind": "NON_NULL",
|
|
1391
|
+
"name": null,
|
|
1392
|
+
"ofType": {
|
|
1393
|
+
"kind": "OBJECT",
|
|
1394
|
+
"name": "DatadogUserOutput",
|
|
1395
|
+
"ofType": null
|
|
1396
|
+
}
|
|
1389
1397
|
}
|
|
1390
1398
|
}
|
|
1391
1399
|
},
|
|
@@ -1484,9 +1492,13 @@
|
|
|
1484
1492
|
"kind": "LIST",
|
|
1485
1493
|
"name": null,
|
|
1486
1494
|
"ofType": {
|
|
1487
|
-
"kind": "
|
|
1488
|
-
"name":
|
|
1489
|
-
"ofType":
|
|
1495
|
+
"kind": "NON_NULL",
|
|
1496
|
+
"name": null,
|
|
1497
|
+
"ofType": {
|
|
1498
|
+
"kind": "OBJECT",
|
|
1499
|
+
"name": "DatadogTeamOutput",
|
|
1500
|
+
"ofType": null
|
|
1501
|
+
}
|
|
1490
1502
|
}
|
|
1491
1503
|
}
|
|
1492
1504
|
},
|
|
@@ -1571,9 +1583,13 @@
|
|
|
1571
1583
|
"kind": "LIST",
|
|
1572
1584
|
"name": null,
|
|
1573
1585
|
"ofType": {
|
|
1574
|
-
"kind": "
|
|
1575
|
-
"name":
|
|
1576
|
-
"ofType":
|
|
1586
|
+
"kind": "NON_NULL",
|
|
1587
|
+
"name": null,
|
|
1588
|
+
"ofType": {
|
|
1589
|
+
"kind": "OBJECT",
|
|
1590
|
+
"name": "DatadogServiceOutput",
|
|
1591
|
+
"ofType": null
|
|
1592
|
+
}
|
|
1577
1593
|
}
|
|
1578
1594
|
}
|
|
1579
1595
|
},
|
pycarlo/lib/schema.py
CHANGED
|
@@ -45766,7 +45766,7 @@ class Query(sgqlc.types.Type):
|
|
|
45766
45766
|
"""
|
|
45767
45767
|
|
|
45768
45768
|
get_datadog_integrations = sgqlc.types.Field(
|
|
45769
|
-
sgqlc.types.list_of(DatadogIntegrationOutput),
|
|
45769
|
+
sgqlc.types.list_of(sgqlc.types.non_null(DatadogIntegrationOutput)),
|
|
45770
45770
|
graphql_name="getDatadogIntegrations",
|
|
45771
45771
|
args=sgqlc.types.ArgDict(
|
|
45772
45772
|
(("integration_id", sgqlc.types.Arg(UUID, graphql_name="integrationId", default=None)),)
|
|
@@ -45780,7 +45780,7 @@ class Query(sgqlc.types.Type):
|
|
|
45780
45780
|
"""
|
|
45781
45781
|
|
|
45782
45782
|
get_datadog_users = sgqlc.types.Field(
|
|
45783
|
-
sgqlc.types.list_of(DatadogUserOutput),
|
|
45783
|
+
sgqlc.types.list_of(sgqlc.types.non_null(DatadogUserOutput)),
|
|
45784
45784
|
graphql_name="getDatadogUsers",
|
|
45785
45785
|
args=sgqlc.types.ArgDict(
|
|
45786
45786
|
(
|
|
@@ -45803,7 +45803,7 @@ class Query(sgqlc.types.Type):
|
|
|
45803
45803
|
"""
|
|
45804
45804
|
|
|
45805
45805
|
get_datadog_teams = sgqlc.types.Field(
|
|
45806
|
-
sgqlc.types.list_of(DatadogTeamOutput),
|
|
45806
|
+
sgqlc.types.list_of(sgqlc.types.non_null(DatadogTeamOutput)),
|
|
45807
45807
|
graphql_name="getDatadogTeams",
|
|
45808
45808
|
args=sgqlc.types.ArgDict(
|
|
45809
45809
|
(
|
|
@@ -45854,7 +45854,7 @@ class Query(sgqlc.types.Type):
|
|
|
45854
45854
|
"""
|
|
45855
45855
|
|
|
45856
45856
|
get_datadog_services = sgqlc.types.Field(
|
|
45857
|
-
sgqlc.types.list_of(DatadogServiceOutput),
|
|
45857
|
+
sgqlc.types.list_of(sgqlc.types.non_null(DatadogServiceOutput)),
|
|
45858
45858
|
graphql_name="getDatadogServices",
|
|
45859
45859
|
args=sgqlc.types.ArgDict(
|
|
45860
45860
|
(
|
|
@@ -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=iD7-3hEpBPFdbp0vRTq2NujF3uHBexZVPfWqUo2iy4M,6345786
|
|
39
|
+
pycarlo/lib/schema.py,sha256=pGfg67HXTetm6XwNWz3x6XTuGFeqZ7MrGZltFkoGXOc,2763784
|
|
40
|
+
pycarlo-0.10.201.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.201.dist-info/METADATA,sha256=hjh_dEyNQBkxdYH2PK4EbMq3Jcfvob6GkN2cn6gfE7U,8742
|
|
42
|
+
pycarlo-0.10.201.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.201.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.201.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|