pycarlo 0.10.153__py3-none-any.whl → 0.10.154__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 +24 -0
- pycarlo/lib/schema.py +8 -0
- {pycarlo-0.10.153.dist-info → pycarlo-0.10.154.dist-info}/METADATA +1 -1
- {pycarlo-0.10.153.dist-info → pycarlo-0.10.154.dist-info}/RECORD +7 -7
- {pycarlo-0.10.153.dist-info → pycarlo-0.10.154.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.153.dist-info → pycarlo-0.10.154.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.153.dist-info → pycarlo-0.10.154.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -44129,6 +44129,12 @@
|
|
|
44129
44129
|
{
|
|
44130
44130
|
"description": null,
|
|
44131
44131
|
"enumValues": [
|
|
44132
|
+
{
|
|
44133
|
+
"deprecationReason": null,
|
|
44134
|
+
"description": "ai_engineer",
|
|
44135
|
+
"isDeprecated": false,
|
|
44136
|
+
"name": "AI_ENGINEER"
|
|
44137
|
+
},
|
|
44132
44138
|
{
|
|
44133
44139
|
"deprecationReason": null,
|
|
44134
44140
|
"description": "data_engineer",
|
|
@@ -44141,6 +44147,12 @@
|
|
|
44141
44147
|
"isDeprecated": false,
|
|
44142
44148
|
"name": "DATA_ANALYST"
|
|
44143
44149
|
},
|
|
44150
|
+
{
|
|
44151
|
+
"deprecationReason": null,
|
|
44152
|
+
"description": "data_scientist",
|
|
44153
|
+
"isDeprecated": false,
|
|
44154
|
+
"name": "DATA_SCIENTIST"
|
|
44155
|
+
},
|
|
44144
44156
|
{
|
|
44145
44157
|
"deprecationReason": null,
|
|
44146
44158
|
"description": "bi_analyst_or_engineer",
|
|
@@ -187354,6 +187366,12 @@
|
|
|
187354
187366
|
{
|
|
187355
187367
|
"description": null,
|
|
187356
187368
|
"enumValues": [
|
|
187369
|
+
{
|
|
187370
|
+
"deprecationReason": null,
|
|
187371
|
+
"description": null,
|
|
187372
|
+
"isDeprecated": false,
|
|
187373
|
+
"name": "AI_ENGINEER"
|
|
187374
|
+
},
|
|
187357
187375
|
{
|
|
187358
187376
|
"deprecationReason": null,
|
|
187359
187377
|
"description": null,
|
|
@@ -187366,6 +187384,12 @@
|
|
|
187366
187384
|
"isDeprecated": false,
|
|
187367
187385
|
"name": "DATA_ANALYST"
|
|
187368
187386
|
},
|
|
187387
|
+
{
|
|
187388
|
+
"deprecationReason": null,
|
|
187389
|
+
"description": null,
|
|
187390
|
+
"isDeprecated": false,
|
|
187391
|
+
"name": "DATA_SCIENTIST"
|
|
187392
|
+
},
|
|
187369
187393
|
{
|
|
187370
187394
|
"deprecationReason": null,
|
|
187371
187395
|
"description": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -5403,9 +5403,11 @@ class UserModelDeleteReason(sgqlc.types.Enum):
|
|
|
5403
5403
|
class UserModelPersona(sgqlc.types.Enum):
|
|
5404
5404
|
"""Enumeration Choices:
|
|
5405
5405
|
|
|
5406
|
+
* `AI_ENGINEER`: ai_engineer
|
|
5406
5407
|
* `BI_ANALYST_ENGINEER`: bi_analyst_or_engineer
|
|
5407
5408
|
* `DATA_ANALYST`: data_analyst
|
|
5408
5409
|
* `DATA_ENGINEER`: data_engineer
|
|
5410
|
+
* `DATA_SCIENTIST`: data_scientist
|
|
5409
5411
|
* `EARLY_USER`: early_user
|
|
5410
5412
|
* `EXECUTIVE`: executive
|
|
5411
5413
|
* `OTHER`: other
|
|
@@ -5416,9 +5418,11 @@ class UserModelPersona(sgqlc.types.Enum):
|
|
|
5416
5418
|
|
|
5417
5419
|
__schema__ = schema
|
|
5418
5420
|
__choices__ = (
|
|
5421
|
+
"AI_ENGINEER",
|
|
5419
5422
|
"BI_ANALYST_ENGINEER",
|
|
5420
5423
|
"DATA_ANALYST",
|
|
5421
5424
|
"DATA_ENGINEER",
|
|
5425
|
+
"DATA_SCIENTIST",
|
|
5422
5426
|
"EARLY_USER",
|
|
5423
5427
|
"EXECUTIVE",
|
|
5424
5428
|
"OTHER",
|
|
@@ -5459,9 +5463,11 @@ class UserModelState(sgqlc.types.Enum):
|
|
|
5459
5463
|
class UserPersona(sgqlc.types.Enum):
|
|
5460
5464
|
"""Enumeration Choices:
|
|
5461
5465
|
|
|
5466
|
+
* `AI_ENGINEER`None
|
|
5462
5467
|
* `BI_ANALYST_ENGINEER`None
|
|
5463
5468
|
* `DATA_ANALYST`None
|
|
5464
5469
|
* `DATA_ENGINEER`None
|
|
5470
|
+
* `DATA_SCIENTIST`None
|
|
5465
5471
|
* `EARLY_USER`None
|
|
5466
5472
|
* `EXECUTIVE`None
|
|
5467
5473
|
* `OTHER`None
|
|
@@ -5472,9 +5478,11 @@ class UserPersona(sgqlc.types.Enum):
|
|
|
5472
5478
|
|
|
5473
5479
|
__schema__ = schema
|
|
5474
5480
|
__choices__ = (
|
|
5481
|
+
"AI_ENGINEER",
|
|
5475
5482
|
"BI_ANALYST_ENGINEER",
|
|
5476
5483
|
"DATA_ANALYST",
|
|
5477
5484
|
"DATA_ENGINEER",
|
|
5485
|
+
"DATA_SCIENTIST",
|
|
5478
5486
|
"EARLY_USER",
|
|
5479
5487
|
"EXECUTIVE",
|
|
5480
5488
|
"OTHER",
|
|
@@ -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=Q0jwm5PulsgaPatZaJlZANpb8VhUHuvu4tBXQCkZlAY,6215108
|
|
39
|
+
pycarlo/lib/schema.py,sha256=YNFbt8sHgJWjyflvGj1SH7deJqWqYzJGqg5kAsZdNwU,2697420
|
|
40
|
+
pycarlo-0.10.154.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.154.dist-info/METADATA,sha256=Kysl6ku-XgLnrKWK5X0hlFfQ77CopGmJcEjm-cJBXbs,8742
|
|
42
|
+
pycarlo-0.10.154.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.154.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.154.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|