pycarlo 0.10.200__py3-none-any.whl → 0.10.202__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 CHANGED
@@ -1342,9 +1342,13 @@
1342
1342
  "kind": "LIST",
1343
1343
  "name": null,
1344
1344
  "ofType": {
1345
- "kind": "OBJECT",
1346
- "name": "DatadogIntegrationOutput",
1347
- "ofType": null
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": "OBJECT",
1387
- "name": "DatadogUserOutput",
1388
- "ofType": null
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": "OBJECT",
1488
- "name": "DatadogTeamOutput",
1489
- "ofType": null
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": "OBJECT",
1575
- "name": "DatadogServiceOutput",
1576
- "ofType": null
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
  },
@@ -37640,6 +37656,22 @@
37640
37656
  "name": "GenericScalar",
37641
37657
  "ofType": null
37642
37658
  }
37659
+ },
37660
+ {
37661
+ "args": [],
37662
+ "deprecationReason": null,
37663
+ "description": null,
37664
+ "isDeprecated": false,
37665
+ "name": "default",
37666
+ "type": {
37667
+ "kind": "NON_NULL",
37668
+ "name": null,
37669
+ "ofType": {
37670
+ "kind": "SCALAR",
37671
+ "name": "Boolean",
37672
+ "ofType": null
37673
+ }
37674
+ }
37643
37675
  }
37644
37676
  ],
37645
37677
  "inputFields": null,
pycarlo/lib/schema.py CHANGED
@@ -23310,6 +23310,7 @@ class LLMModel(sgqlc.types.Type):
23310
23310
  "category",
23311
23311
  "context_window",
23312
23312
  "regions",
23313
+ "default",
23313
23314
  )
23314
23315
  name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
23315
23316
 
@@ -23323,6 +23324,8 @@ class LLMModel(sgqlc.types.Type):
23323
23324
 
23324
23325
  regions = sgqlc.types.Field(GenericScalar, graphql_name="regions")
23325
23326
 
23327
+ default = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="default")
23328
+
23326
23329
 
23327
23330
  class LabelCount(sgqlc.types.Type):
23328
23331
  __schema__ = schema
@@ -45766,7 +45769,7 @@ class Query(sgqlc.types.Type):
45766
45769
  """
45767
45770
 
45768
45771
  get_datadog_integrations = sgqlc.types.Field(
45769
- sgqlc.types.list_of(DatadogIntegrationOutput),
45772
+ sgqlc.types.list_of(sgqlc.types.non_null(DatadogIntegrationOutput)),
45770
45773
  graphql_name="getDatadogIntegrations",
45771
45774
  args=sgqlc.types.ArgDict(
45772
45775
  (("integration_id", sgqlc.types.Arg(UUID, graphql_name="integrationId", default=None)),)
@@ -45780,7 +45783,7 @@ class Query(sgqlc.types.Type):
45780
45783
  """
45781
45784
 
45782
45785
  get_datadog_users = sgqlc.types.Field(
45783
- sgqlc.types.list_of(DatadogUserOutput),
45786
+ sgqlc.types.list_of(sgqlc.types.non_null(DatadogUserOutput)),
45784
45787
  graphql_name="getDatadogUsers",
45785
45788
  args=sgqlc.types.ArgDict(
45786
45789
  (
@@ -45803,7 +45806,7 @@ class Query(sgqlc.types.Type):
45803
45806
  """
45804
45807
 
45805
45808
  get_datadog_teams = sgqlc.types.Field(
45806
- sgqlc.types.list_of(DatadogTeamOutput),
45809
+ sgqlc.types.list_of(sgqlc.types.non_null(DatadogTeamOutput)),
45807
45810
  graphql_name="getDatadogTeams",
45808
45811
  args=sgqlc.types.ArgDict(
45809
45812
  (
@@ -45854,7 +45857,7 @@ class Query(sgqlc.types.Type):
45854
45857
  """
45855
45858
 
45856
45859
  get_datadog_services = sgqlc.types.Field(
45857
- sgqlc.types.list_of(DatadogServiceOutput),
45860
+ sgqlc.types.list_of(sgqlc.types.non_null(DatadogServiceOutput)),
45858
45861
  graphql_name="getDatadogServices",
45859
45862
  args=sgqlc.types.ArgDict(
45860
45863
  (
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.200
3
+ Version: 0.10.202
4
4
  Summary: Monte Carlo's Python SDK
5
5
  Home-page: https://www.montecarlodata.com/
6
6
  Author: Monte Carlo Data, Inc
@@ -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=D1u-wuHvppAVZkf4r8SafJogQh5aexpy6KRO0dI6iW0,6345282
39
- pycarlo/lib/schema.py,sha256=y8pEA8VobCyrdb5ILv83rqO9lxMpthzTQ6pq89GQp7c,2763696
40
- pycarlo-0.10.200.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.200.dist-info/METADATA,sha256=yHpvE5423ckbasFW1qgdZaQVcBxqLRKgOZxuft0DPNM,8742
42
- pycarlo-0.10.200.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.200.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.200.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=IWN8aiABIYfdNnYyU7RIEYwvrX7_Ai-znwpHcIBBq9w,6346245
39
+ pycarlo/lib/schema.py,sha256=aKxH5Zfb98rPi9kpErHdWT9S0m252fy6eeC0ciQajLU,2763891
40
+ pycarlo-0.10.202.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.202.dist-info/METADATA,sha256=pJjHqQ3X2z-lUYq5w9oqQrEF77ArayTK9tw_nu8i90g,8742
42
+ pycarlo-0.10.202.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.202.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.202.dist-info/RECORD,,