pycarlo 0.10.206__py3-none-any.whl → 0.10.208__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 +21743 -20904
- pycarlo/lib/schema.py +236 -0
- {pycarlo-0.10.206.dist-info → pycarlo-0.10.208.dist-info}/METADATA +1 -1
- {pycarlo-0.10.206.dist-info → pycarlo-0.10.208.dist-info}/RECORD +7 -7
- {pycarlo-0.10.206.dist-info → pycarlo-0.10.208.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.206.dist-info → pycarlo-0.10.208.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.206.dist-info → pycarlo-0.10.208.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.py
CHANGED
|
@@ -13621,6 +13621,16 @@ class AudienceMonitorEdge(sgqlc.types.Type):
|
|
|
13621
13621
|
"""A cursor for use in pagination"""
|
|
13622
13622
|
|
|
13623
13623
|
|
|
13624
|
+
class AudienceRef(sgqlc.types.Type):
|
|
13625
|
+
__schema__ = schema
|
|
13626
|
+
__field_names__ = ("uuid", "label")
|
|
13627
|
+
uuid = sgqlc.types.Field(UUID, graphql_name="uuid")
|
|
13628
|
+
"""Audience UUID"""
|
|
13629
|
+
|
|
13630
|
+
label = sgqlc.types.Field(String, graphql_name="label")
|
|
13631
|
+
"""Audience label"""
|
|
13632
|
+
|
|
13633
|
+
|
|
13624
13634
|
class AudienceRoutingStats(sgqlc.types.Type):
|
|
13625
13635
|
__schema__ = schema
|
|
13626
13636
|
__field_names__ = (
|
|
@@ -14273,6 +14283,10 @@ class BiContainer(sgqlc.types.Type):
|
|
|
14273
14283
|
__schema__ = schema
|
|
14274
14284
|
__field_names__ = (
|
|
14275
14285
|
"id",
|
|
14286
|
+
"created_time",
|
|
14287
|
+
"updated_time",
|
|
14288
|
+
"created_by",
|
|
14289
|
+
"last_update_user",
|
|
14276
14290
|
"deleted_at",
|
|
14277
14291
|
"account",
|
|
14278
14292
|
"uuid",
|
|
@@ -14283,6 +14297,16 @@ class BiContainer(sgqlc.types.Type):
|
|
|
14283
14297
|
)
|
|
14284
14298
|
id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
|
|
14285
14299
|
|
|
14300
|
+
created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
|
|
14301
|
+
|
|
14302
|
+
updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
|
|
14303
|
+
|
|
14304
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
14305
|
+
"""Creator"""
|
|
14306
|
+
|
|
14307
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
14308
|
+
"""Last updated by"""
|
|
14309
|
+
|
|
14286
14310
|
deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
|
|
14287
14311
|
|
|
14288
14312
|
account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name="account")
|
|
@@ -15714,6 +15738,10 @@ class Connection(sgqlc.types.Type):
|
|
|
15714
15738
|
__schema__ = schema
|
|
15715
15739
|
__field_names__ = (
|
|
15716
15740
|
"id",
|
|
15741
|
+
"created_time",
|
|
15742
|
+
"updated_time",
|
|
15743
|
+
"created_by",
|
|
15744
|
+
"last_update_user",
|
|
15717
15745
|
"deleted_at",
|
|
15718
15746
|
"uuid",
|
|
15719
15747
|
"type",
|
|
@@ -15742,6 +15770,16 @@ class Connection(sgqlc.types.Type):
|
|
|
15742
15770
|
)
|
|
15743
15771
|
id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
|
|
15744
15772
|
|
|
15773
|
+
created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
|
|
15774
|
+
|
|
15775
|
+
updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
|
|
15776
|
+
|
|
15777
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
15778
|
+
"""Creator"""
|
|
15779
|
+
|
|
15780
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
15781
|
+
"""Last updated by"""
|
|
15782
|
+
|
|
15745
15783
|
deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
|
|
15746
15784
|
|
|
15747
15785
|
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
@@ -20025,6 +20063,10 @@ class EtlContainer(sgqlc.types.Type):
|
|
|
20025
20063
|
__schema__ = schema
|
|
20026
20064
|
__field_names__ = (
|
|
20027
20065
|
"id",
|
|
20066
|
+
"created_time",
|
|
20067
|
+
"updated_time",
|
|
20068
|
+
"created_by",
|
|
20069
|
+
"last_update_user",
|
|
20028
20070
|
"deleted_at",
|
|
20029
20071
|
"account",
|
|
20030
20072
|
"uuid",
|
|
@@ -20051,6 +20093,16 @@ class EtlContainer(sgqlc.types.Type):
|
|
|
20051
20093
|
)
|
|
20052
20094
|
id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
|
|
20053
20095
|
|
|
20096
|
+
created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
|
|
20097
|
+
|
|
20098
|
+
updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
|
|
20099
|
+
|
|
20100
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
20101
|
+
"""Creator"""
|
|
20102
|
+
|
|
20103
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
20104
|
+
"""Last updated by"""
|
|
20105
|
+
|
|
20054
20106
|
deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
|
|
20055
20107
|
|
|
20056
20108
|
account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name="account")
|
|
@@ -64711,6 +64763,8 @@ class StreamingCluster(sgqlc.types.Type):
|
|
|
64711
64763
|
"id",
|
|
64712
64764
|
"created_time",
|
|
64713
64765
|
"updated_time",
|
|
64766
|
+
"created_by",
|
|
64767
|
+
"last_update_user",
|
|
64714
64768
|
"deleted_at",
|
|
64715
64769
|
"uuid",
|
|
64716
64770
|
"external_cluster_id",
|
|
@@ -64725,6 +64779,12 @@ class StreamingCluster(sgqlc.types.Type):
|
|
|
64725
64779
|
|
|
64726
64780
|
updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
|
|
64727
64781
|
|
|
64782
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
64783
|
+
"""Creator"""
|
|
64784
|
+
|
|
64785
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
64786
|
+
"""Last updated by"""
|
|
64787
|
+
|
|
64728
64788
|
deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
|
|
64729
64789
|
|
|
64730
64790
|
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
@@ -64760,6 +64820,8 @@ class StreamingSystem(sgqlc.types.Type):
|
|
|
64760
64820
|
"id",
|
|
64761
64821
|
"created_time",
|
|
64762
64822
|
"updated_time",
|
|
64823
|
+
"created_by",
|
|
64824
|
+
"last_update_user",
|
|
64763
64825
|
"deleted_at",
|
|
64764
64826
|
"uuid",
|
|
64765
64827
|
"name",
|
|
@@ -64773,6 +64835,12 @@ class StreamingSystem(sgqlc.types.Type):
|
|
|
64773
64835
|
|
|
64774
64836
|
updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
|
|
64775
64837
|
|
|
64838
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
64839
|
+
"""Creator"""
|
|
64840
|
+
|
|
64841
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
64842
|
+
"""Last updated by"""
|
|
64843
|
+
|
|
64776
64844
|
deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
|
|
64777
64845
|
|
|
64778
64846
|
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
@@ -69194,6 +69262,9 @@ class Warehouse(sgqlc.types.Type):
|
|
|
69194
69262
|
__schema__ = schema
|
|
69195
69263
|
__field_names__ = (
|
|
69196
69264
|
"id",
|
|
69265
|
+
"created_time",
|
|
69266
|
+
"updated_time",
|
|
69267
|
+
"last_update_user",
|
|
69197
69268
|
"uuid",
|
|
69198
69269
|
"name",
|
|
69199
69270
|
"connection_type",
|
|
@@ -69246,6 +69317,13 @@ class Warehouse(sgqlc.types.Type):
|
|
|
69246
69317
|
)
|
|
69247
69318
|
id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
|
|
69248
69319
|
|
|
69320
|
+
created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
|
|
69321
|
+
|
|
69322
|
+
updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
|
|
69323
|
+
|
|
69324
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
69325
|
+
"""Last updated by"""
|
|
69326
|
+
|
|
69249
69327
|
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
69250
69328
|
|
|
69251
69329
|
name = sgqlc.types.Field(String, graphql_name="name")
|
|
@@ -70525,6 +70603,7 @@ class Alert(sgqlc.types.Type, NodeWithUUID):
|
|
|
70525
70603
|
"priority",
|
|
70526
70604
|
"status",
|
|
70527
70605
|
"tables",
|
|
70606
|
+
"audiences",
|
|
70528
70607
|
"jira_tickets",
|
|
70529
70608
|
"service_now_incidents",
|
|
70530
70609
|
"opsgenie_incidents",
|
|
@@ -70564,6 +70643,9 @@ class Alert(sgqlc.types.Type, NodeWithUUID):
|
|
|
70564
70643
|
tables = sgqlc.types.Field(sgqlc.types.list_of(TableOutput), graphql_name="tables")
|
|
70565
70644
|
"""Tables or views associated with the alert"""
|
|
70566
70645
|
|
|
70646
|
+
audiences = sgqlc.types.Field(sgqlc.types.list_of(AudienceRef), graphql_name="audiences")
|
|
70647
|
+
"""List of audiences associated with the alert"""
|
|
70648
|
+
|
|
70567
70649
|
jira_tickets = sgqlc.types.Field(sgqlc.types.list_of("JiraTicket"), graphql_name="jiraTickets")
|
|
70568
70650
|
"""Jira tickets associated with the alert"""
|
|
70569
70651
|
|
|
@@ -70799,6 +70881,10 @@ class AuthUser(sgqlc.types.Type, Node):
|
|
|
70799
70881
|
"delete_reason",
|
|
70800
70882
|
"invalidated_at",
|
|
70801
70883
|
"persona",
|
|
70884
|
+
"streamingsystemmodel_created_by",
|
|
70885
|
+
"streamingsystemmodel_updated_by",
|
|
70886
|
+
"streamingclustermodel_created_by",
|
|
70887
|
+
"streamingclustermodel_updated_by",
|
|
70802
70888
|
"monitor_labels_created",
|
|
70803
70889
|
"routing_rules_created_by",
|
|
70804
70890
|
"routing_rules_updated_by",
|
|
@@ -70809,6 +70895,13 @@ class AuthUser(sgqlc.types.Type, Node):
|
|
|
70809
70895
|
"invitees",
|
|
70810
70896
|
"warehouse_deleted_by",
|
|
70811
70897
|
"created_warehouses",
|
|
70898
|
+
"warehousemodel_updated_by",
|
|
70899
|
+
"bicontainermodel_created_by",
|
|
70900
|
+
"bicontainermodel_updated_by",
|
|
70901
|
+
"etlcontainermodel_created_by",
|
|
70902
|
+
"etlcontainermodel_updated_by",
|
|
70903
|
+
"connectionmodel_created_by",
|
|
70904
|
+
"connectionmodel_updated_by",
|
|
70812
70905
|
"eventmodel_set",
|
|
70813
70906
|
"eventdetectorfeedbackmodel_created_by",
|
|
70814
70907
|
"eventdetectorfeedbackmodel_updated_by",
|
|
@@ -70906,6 +70999,30 @@ class AuthUser(sgqlc.types.Type, Node):
|
|
|
70906
70999
|
experience and the onboarding flow.
|
|
70907
71000
|
"""
|
|
70908
71001
|
|
|
71002
|
+
streamingsystemmodel_created_by = sgqlc.types.Field(
|
|
71003
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
|
|
71004
|
+
graphql_name="streamingsystemmodelCreatedBy",
|
|
71005
|
+
)
|
|
71006
|
+
"""Creator"""
|
|
71007
|
+
|
|
71008
|
+
streamingsystemmodel_updated_by = sgqlc.types.Field(
|
|
71009
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
|
|
71010
|
+
graphql_name="streamingsystemmodelUpdatedBy",
|
|
71011
|
+
)
|
|
71012
|
+
"""Last updated by"""
|
|
71013
|
+
|
|
71014
|
+
streamingclustermodel_created_by = sgqlc.types.Field(
|
|
71015
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
|
|
71016
|
+
graphql_name="streamingclustermodelCreatedBy",
|
|
71017
|
+
)
|
|
71018
|
+
"""Creator"""
|
|
71019
|
+
|
|
71020
|
+
streamingclustermodel_updated_by = sgqlc.types.Field(
|
|
71021
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
|
|
71022
|
+
graphql_name="streamingclustermodelUpdatedBy",
|
|
71023
|
+
)
|
|
71024
|
+
"""Last updated by"""
|
|
71025
|
+
|
|
70909
71026
|
monitor_labels_created = sgqlc.types.Field(
|
|
70910
71027
|
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(MonitorLabelObject))),
|
|
70911
71028
|
graphql_name="monitorLabelsCreated",
|
|
@@ -71025,6 +71142,48 @@ class AuthUser(sgqlc.types.Type, Node):
|
|
|
71025
71142
|
)
|
|
71026
71143
|
"""User who created this warehouse"""
|
|
71027
71144
|
|
|
71145
|
+
warehousemodel_updated_by = sgqlc.types.Field(
|
|
71146
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Warehouse))),
|
|
71147
|
+
graphql_name="warehousemodelUpdatedBy",
|
|
71148
|
+
)
|
|
71149
|
+
"""Last updated by"""
|
|
71150
|
+
|
|
71151
|
+
bicontainermodel_created_by = sgqlc.types.Field(
|
|
71152
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
|
|
71153
|
+
graphql_name="bicontainermodelCreatedBy",
|
|
71154
|
+
)
|
|
71155
|
+
"""Creator"""
|
|
71156
|
+
|
|
71157
|
+
bicontainermodel_updated_by = sgqlc.types.Field(
|
|
71158
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
|
|
71159
|
+
graphql_name="bicontainermodelUpdatedBy",
|
|
71160
|
+
)
|
|
71161
|
+
"""Last updated by"""
|
|
71162
|
+
|
|
71163
|
+
etlcontainermodel_created_by = sgqlc.types.Field(
|
|
71164
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
|
|
71165
|
+
graphql_name="etlcontainermodelCreatedBy",
|
|
71166
|
+
)
|
|
71167
|
+
"""Creator"""
|
|
71168
|
+
|
|
71169
|
+
etlcontainermodel_updated_by = sgqlc.types.Field(
|
|
71170
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
|
|
71171
|
+
graphql_name="etlcontainermodelUpdatedBy",
|
|
71172
|
+
)
|
|
71173
|
+
"""Last updated by"""
|
|
71174
|
+
|
|
71175
|
+
connectionmodel_created_by = sgqlc.types.Field(
|
|
71176
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
|
|
71177
|
+
graphql_name="connectionmodelCreatedBy",
|
|
71178
|
+
)
|
|
71179
|
+
"""Creator"""
|
|
71180
|
+
|
|
71181
|
+
connectionmodel_updated_by = sgqlc.types.Field(
|
|
71182
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
|
|
71183
|
+
graphql_name="connectionmodelUpdatedBy",
|
|
71184
|
+
)
|
|
71185
|
+
"""Last updated by"""
|
|
71186
|
+
|
|
71028
71187
|
eventmodel_set = sgqlc.types.Field(
|
|
71029
71188
|
sgqlc.types.non_null(EventConnection),
|
|
71030
71189
|
graphql_name="eventmodelSet",
|
|
@@ -76908,6 +77067,10 @@ class User(sgqlc.types.Type, Node):
|
|
|
76908
77067
|
"delete_reason",
|
|
76909
77068
|
"invalidated_at",
|
|
76910
77069
|
"persona",
|
|
77070
|
+
"streamingsystemmodel_created_by",
|
|
77071
|
+
"streamingsystemmodel_updated_by",
|
|
77072
|
+
"streamingclustermodel_created_by",
|
|
77073
|
+
"streamingclustermodel_updated_by",
|
|
76911
77074
|
"monitor_labels_created",
|
|
76912
77075
|
"routing_rules_created_by",
|
|
76913
77076
|
"routing_rules_updated_by",
|
|
@@ -76918,6 +77081,13 @@ class User(sgqlc.types.Type, Node):
|
|
|
76918
77081
|
"invitees",
|
|
76919
77082
|
"warehouse_deleted_by",
|
|
76920
77083
|
"created_warehouses",
|
|
77084
|
+
"warehousemodel_updated_by",
|
|
77085
|
+
"bicontainermodel_created_by",
|
|
77086
|
+
"bicontainermodel_updated_by",
|
|
77087
|
+
"etlcontainermodel_created_by",
|
|
77088
|
+
"etlcontainermodel_updated_by",
|
|
77089
|
+
"connectionmodel_created_by",
|
|
77090
|
+
"connectionmodel_updated_by",
|
|
76921
77091
|
"eventmodel_set",
|
|
76922
77092
|
"eventdetectorfeedbackmodel_created_by",
|
|
76923
77093
|
"eventdetectorfeedbackmodel_updated_by",
|
|
@@ -77018,6 +77188,30 @@ class User(sgqlc.types.Type, Node):
|
|
|
77018
77188
|
experience and the onboarding flow.
|
|
77019
77189
|
"""
|
|
77020
77190
|
|
|
77191
|
+
streamingsystemmodel_created_by = sgqlc.types.Field(
|
|
77192
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
|
|
77193
|
+
graphql_name="streamingsystemmodelCreatedBy",
|
|
77194
|
+
)
|
|
77195
|
+
"""Creator"""
|
|
77196
|
+
|
|
77197
|
+
streamingsystemmodel_updated_by = sgqlc.types.Field(
|
|
77198
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
|
|
77199
|
+
graphql_name="streamingsystemmodelUpdatedBy",
|
|
77200
|
+
)
|
|
77201
|
+
"""Last updated by"""
|
|
77202
|
+
|
|
77203
|
+
streamingclustermodel_created_by = sgqlc.types.Field(
|
|
77204
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
|
|
77205
|
+
graphql_name="streamingclustermodelCreatedBy",
|
|
77206
|
+
)
|
|
77207
|
+
"""Creator"""
|
|
77208
|
+
|
|
77209
|
+
streamingclustermodel_updated_by = sgqlc.types.Field(
|
|
77210
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
|
|
77211
|
+
graphql_name="streamingclustermodelUpdatedBy",
|
|
77212
|
+
)
|
|
77213
|
+
"""Last updated by"""
|
|
77214
|
+
|
|
77021
77215
|
monitor_labels_created = sgqlc.types.Field(
|
|
77022
77216
|
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(MonitorLabelObject))),
|
|
77023
77217
|
graphql_name="monitorLabelsCreated",
|
|
@@ -77137,6 +77331,48 @@ class User(sgqlc.types.Type, Node):
|
|
|
77137
77331
|
)
|
|
77138
77332
|
"""User who created this warehouse"""
|
|
77139
77333
|
|
|
77334
|
+
warehousemodel_updated_by = sgqlc.types.Field(
|
|
77335
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Warehouse))),
|
|
77336
|
+
graphql_name="warehousemodelUpdatedBy",
|
|
77337
|
+
)
|
|
77338
|
+
"""Last updated by"""
|
|
77339
|
+
|
|
77340
|
+
bicontainermodel_created_by = sgqlc.types.Field(
|
|
77341
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
|
|
77342
|
+
graphql_name="bicontainermodelCreatedBy",
|
|
77343
|
+
)
|
|
77344
|
+
"""Creator"""
|
|
77345
|
+
|
|
77346
|
+
bicontainermodel_updated_by = sgqlc.types.Field(
|
|
77347
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
|
|
77348
|
+
graphql_name="bicontainermodelUpdatedBy",
|
|
77349
|
+
)
|
|
77350
|
+
"""Last updated by"""
|
|
77351
|
+
|
|
77352
|
+
etlcontainermodel_created_by = sgqlc.types.Field(
|
|
77353
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
|
|
77354
|
+
graphql_name="etlcontainermodelCreatedBy",
|
|
77355
|
+
)
|
|
77356
|
+
"""Creator"""
|
|
77357
|
+
|
|
77358
|
+
etlcontainermodel_updated_by = sgqlc.types.Field(
|
|
77359
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
|
|
77360
|
+
graphql_name="etlcontainermodelUpdatedBy",
|
|
77361
|
+
)
|
|
77362
|
+
"""Last updated by"""
|
|
77363
|
+
|
|
77364
|
+
connectionmodel_created_by = sgqlc.types.Field(
|
|
77365
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
|
|
77366
|
+
graphql_name="connectionmodelCreatedBy",
|
|
77367
|
+
)
|
|
77368
|
+
"""Creator"""
|
|
77369
|
+
|
|
77370
|
+
connectionmodel_updated_by = sgqlc.types.Field(
|
|
77371
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
|
|
77372
|
+
graphql_name="connectionmodelUpdatedBy",
|
|
77373
|
+
)
|
|
77374
|
+
"""Last updated by"""
|
|
77375
|
+
|
|
77140
77376
|
eventmodel_set = sgqlc.types.Field(
|
|
77141
77377
|
sgqlc.types.non_null(EventConnection),
|
|
77142
77378
|
graphql_name="eventmodelSet",
|
|
@@ -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=9U3D8ZdNc1n7DpRFTea9WR2bfZuynNRhxKqiHPAALNg,6374277
|
|
39
|
+
pycarlo/lib/schema.py,sha256=yATrUlKC32p489D2u-iwjK2L3d-JlP7hwmtA70aYftM,2773516
|
|
40
|
+
pycarlo-0.10.208.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.208.dist-info/METADATA,sha256=lnqYpiG7cyDWTw-SLtGDmB9EwoO569PXc8IjRutZv9M,8742
|
|
42
|
+
pycarlo-0.10.208.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.208.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.208.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|