pycarlo 0.10.201__py3-none-any.whl → 0.10.203__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
@@ -32337,6 +32337,18 @@
32337
32337
  "name": "EtlType",
32338
32338
  "ofType": null
32339
32339
  }
32340
+ },
32341
+ {
32342
+ "args": [],
32343
+ "deprecationReason": null,
32344
+ "description": "Whether the table supports data explorer",
32345
+ "isDeprecated": false,
32346
+ "name": "supportsDataExplorer",
32347
+ "type": {
32348
+ "kind": "SCALAR",
32349
+ "name": "Boolean",
32350
+ "ofType": null
32351
+ }
32340
32352
  }
32341
32353
  ],
32342
32354
  "inputFields": null,
@@ -37656,6 +37668,22 @@
37656
37668
  "name": "GenericScalar",
37657
37669
  "ofType": null
37658
37670
  }
37671
+ },
37672
+ {
37673
+ "args": [],
37674
+ "deprecationReason": null,
37675
+ "description": null,
37676
+ "isDeprecated": false,
37677
+ "name": "default",
37678
+ "type": {
37679
+ "kind": "NON_NULL",
37680
+ "name": null,
37681
+ "ofType": {
37682
+ "kind": "SCALAR",
37683
+ "name": "Boolean",
37684
+ "ofType": null
37685
+ }
37686
+ }
37659
37687
  }
37660
37688
  ],
37661
37689
  "inputFields": null,
@@ -135388,6 +135416,18 @@
135388
135416
  "ofType": null
135389
135417
  }
135390
135418
  },
135419
+ {
135420
+ "args": [],
135421
+ "deprecationReason": null,
135422
+ "description": "Whether the table supports data explorer",
135423
+ "isDeprecated": false,
135424
+ "name": "supportsDataExplorer",
135425
+ "type": {
135426
+ "kind": "SCALAR",
135427
+ "name": "Boolean",
135428
+ "ofType": null
135429
+ }
135430
+ },
135391
135431
  {
135392
135432
  "args": [],
135393
135433
  "deprecationReason": null,
pycarlo/lib/schema.py CHANGED
@@ -15126,6 +15126,7 @@ class CategorizedSearchResult(sgqlc.types.Type):
15126
15126
  "is_monitored",
15127
15127
  "is_muted",
15128
15128
  "etl_type",
15129
+ "supports_data_explorer",
15129
15130
  "category",
15130
15131
  "is_dynamic_schedule_supported",
15131
15132
  )
@@ -15214,6 +15215,9 @@ class CategorizedSearchResult(sgqlc.types.Type):
15214
15215
  etl_type = sgqlc.types.Field(EtlType, graphql_name="etlType")
15215
15216
  """ETL type of the job asset (if object_type=job)"""
15216
15217
 
15218
+ supports_data_explorer = sgqlc.types.Field(Boolean, graphql_name="supportsDataExplorer")
15219
+ """Whether the table supports data explorer"""
15220
+
15217
15221
  category = sgqlc.types.Field(SearchCategoryEnum, graphql_name="category")
15218
15222
  """Name of the category for the table like: RESOLVED TABLES, ALL
15219
15223
  TABLES etc
@@ -23310,6 +23314,7 @@ class LLMModel(sgqlc.types.Type):
23310
23314
  "category",
23311
23315
  "context_window",
23312
23316
  "regions",
23317
+ "default",
23313
23318
  )
23314
23319
  name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
23315
23320
 
@@ -23323,6 +23328,8 @@ class LLMModel(sgqlc.types.Type):
23323
23328
 
23324
23329
  regions = sgqlc.types.Field(GenericScalar, graphql_name="regions")
23325
23330
 
23331
+ default = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="default")
23332
+
23326
23333
 
23327
23334
  class LabelCount(sgqlc.types.Type):
23328
23335
  __schema__ = schema
@@ -63397,6 +63404,7 @@ class SearchResult(sgqlc.types.Type):
63397
63404
  "is_monitored",
63398
63405
  "is_muted",
63399
63406
  "etl_type",
63407
+ "supports_data_explorer",
63400
63408
  )
63401
63409
  mcon = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="mcon")
63402
63410
  """Monte Carlo full identifier for an entity"""
@@ -63481,6 +63489,9 @@ class SearchResult(sgqlc.types.Type):
63481
63489
  etl_type = sgqlc.types.Field(EtlType, graphql_name="etlType")
63482
63490
  """ETL type of the job asset (if object_type=job)"""
63483
63491
 
63492
+ supports_data_explorer = sgqlc.types.Field(Boolean, graphql_name="supportsDataExplorer")
63493
+ """Whether the table supports data explorer"""
63494
+
63484
63495
 
63485
63496
  class SearchResultProperty(sgqlc.types.Type):
63486
63497
  """An individual label. Part of the SearchResult"""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.201
3
+ Version: 0.10.203
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=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,,
38
+ pycarlo/lib/schema.json,sha256=03ojAzHunCrDRPmkDQemtfBi0Irjoa6tbUo5m-aGxOo,6347029
39
+ pycarlo/lib/schema.py,sha256=EQSm_9Lt3RceE4AhPpTiGjoqp-TXpnXwXY4oTZm7FFs,2764249
40
+ pycarlo-0.10.203.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.203.dist-info/METADATA,sha256=i8Y2lNPcoyzRaqZr4vXjKPjeokSLi8P_AqOVCPe2nQk,8742
42
+ pycarlo-0.10.203.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.203.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.203.dist-info/RECORD,,