pycarlo 0.10.131__py3-none-any.whl → 0.10.133__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 +66 -1
- pycarlo/lib/schema.py +37 -2
- {pycarlo-0.10.131.dist-info → pycarlo-0.10.133.dist-info}/METADATA +1 -1
- {pycarlo-0.10.131.dist-info → pycarlo-0.10.133.dist-info}/RECORD +7 -7
- {pycarlo-0.10.131.dist-info → pycarlo-0.10.133.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.131.dist-info → pycarlo-0.10.133.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.131.dist-info → pycarlo-0.10.133.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -4741,6 +4741,71 @@
|
|
|
4741
4741
|
}
|
|
4742
4742
|
}
|
|
4743
4743
|
},
|
|
4744
|
+
{
|
|
4745
|
+
"args": [
|
|
4746
|
+
{
|
|
4747
|
+
"defaultValue": null,
|
|
4748
|
+
"description": "The integration ID",
|
|
4749
|
+
"name": "integrationId",
|
|
4750
|
+
"type": {
|
|
4751
|
+
"kind": "NON_NULL",
|
|
4752
|
+
"name": null,
|
|
4753
|
+
"ofType": {
|
|
4754
|
+
"kind": "SCALAR",
|
|
4755
|
+
"name": "UUID",
|
|
4756
|
+
"ofType": null
|
|
4757
|
+
}
|
|
4758
|
+
}
|
|
4759
|
+
},
|
|
4760
|
+
{
|
|
4761
|
+
"defaultValue": null,
|
|
4762
|
+
"description": "Incident field name of the reference",
|
|
4763
|
+
"name": "fieldName",
|
|
4764
|
+
"type": {
|
|
4765
|
+
"kind": "NON_NULL",
|
|
4766
|
+
"name": null,
|
|
4767
|
+
"ofType": {
|
|
4768
|
+
"kind": "SCALAR",
|
|
4769
|
+
"name": "String",
|
|
4770
|
+
"ofType": null
|
|
4771
|
+
}
|
|
4772
|
+
}
|
|
4773
|
+
},
|
|
4774
|
+
{
|
|
4775
|
+
"defaultValue": null,
|
|
4776
|
+
"description": "Optional filter for label",
|
|
4777
|
+
"name": "query",
|
|
4778
|
+
"type": {
|
|
4779
|
+
"kind": "SCALAR",
|
|
4780
|
+
"name": "String",
|
|
4781
|
+
"ofType": null
|
|
4782
|
+
}
|
|
4783
|
+
},
|
|
4784
|
+
{
|
|
4785
|
+
"defaultValue": null,
|
|
4786
|
+
"description": "Optional limit (default 100)",
|
|
4787
|
+
"name": "limit",
|
|
4788
|
+
"type": {
|
|
4789
|
+
"kind": "SCALAR",
|
|
4790
|
+
"name": "Int",
|
|
4791
|
+
"ofType": null
|
|
4792
|
+
}
|
|
4793
|
+
}
|
|
4794
|
+
],
|
|
4795
|
+
"deprecationReason": null,
|
|
4796
|
+
"description": "(experimental) Get possible values for an incident field when the field is a reference type. Pass the field name and an optional query to filter by label.",
|
|
4797
|
+
"isDeprecated": false,
|
|
4798
|
+
"name": "getServicenowReferenceValues",
|
|
4799
|
+
"type": {
|
|
4800
|
+
"kind": "LIST",
|
|
4801
|
+
"name": null,
|
|
4802
|
+
"ofType": {
|
|
4803
|
+
"kind": "OBJECT",
|
|
4804
|
+
"name": "ServiceNowChoiceOutput",
|
|
4805
|
+
"ofType": null
|
|
4806
|
+
}
|
|
4807
|
+
}
|
|
4808
|
+
},
|
|
4744
4809
|
{
|
|
4745
4810
|
"args": [
|
|
4746
4811
|
{
|
|
@@ -35104,7 +35169,7 @@
|
|
|
35104
35169
|
"deprecationReason": null,
|
|
35105
35170
|
"description": null,
|
|
35106
35171
|
"isDeprecated": false,
|
|
35107
|
-
"name": "
|
|
35172
|
+
"name": "prompt",
|
|
35108
35173
|
"type": {
|
|
35109
35174
|
"kind": "SCALAR",
|
|
35110
35175
|
"name": "String",
|
pycarlo/lib/schema.py
CHANGED
|
@@ -43210,6 +43210,7 @@ class Query(sgqlc.types.Type):
|
|
|
43210
43210
|
"get_servicenow_incident_fields",
|
|
43211
43211
|
"get_servicenow_users",
|
|
43212
43212
|
"get_servicenow_integrations",
|
|
43213
|
+
"get_servicenow_reference_values",
|
|
43213
43214
|
"test_servicenow_credentials",
|
|
43214
43215
|
"get_jira_integrations",
|
|
43215
43216
|
"search_jira_users",
|
|
@@ -46225,6 +46226,40 @@ class Query(sgqlc.types.Type):
|
|
|
46225
46226
|
* `integration_id` (`UUID`): Filter by integration ID
|
|
46226
46227
|
"""
|
|
46227
46228
|
|
|
46229
|
+
get_servicenow_reference_values = sgqlc.types.Field(
|
|
46230
|
+
sgqlc.types.list_of("ServiceNowChoiceOutput"),
|
|
46231
|
+
graphql_name="getServicenowReferenceValues",
|
|
46232
|
+
args=sgqlc.types.ArgDict(
|
|
46233
|
+
(
|
|
46234
|
+
(
|
|
46235
|
+
"integration_id",
|
|
46236
|
+
sgqlc.types.Arg(
|
|
46237
|
+
sgqlc.types.non_null(UUID), graphql_name="integrationId", default=None
|
|
46238
|
+
),
|
|
46239
|
+
),
|
|
46240
|
+
(
|
|
46241
|
+
"field_name",
|
|
46242
|
+
sgqlc.types.Arg(
|
|
46243
|
+
sgqlc.types.non_null(String), graphql_name="fieldName", default=None
|
|
46244
|
+
),
|
|
46245
|
+
),
|
|
46246
|
+
("query", sgqlc.types.Arg(String, graphql_name="query", default=None)),
|
|
46247
|
+
("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=None)),
|
|
46248
|
+
)
|
|
46249
|
+
),
|
|
46250
|
+
)
|
|
46251
|
+
"""(experimental) Get possible values for an incident field when the
|
|
46252
|
+
field is a reference type. Pass the field name and an optional
|
|
46253
|
+
query to filter by label.
|
|
46254
|
+
|
|
46255
|
+
Arguments:
|
|
46256
|
+
|
|
46257
|
+
* `integration_id` (`UUID!`): The integration ID
|
|
46258
|
+
* `field_name` (`String!`): Incident field name of the reference
|
|
46259
|
+
* `query` (`String`): Optional filter for label
|
|
46260
|
+
* `limit` (`Int`): Optional limit (default 100)
|
|
46261
|
+
"""
|
|
46262
|
+
|
|
46228
46263
|
test_servicenow_credentials = sgqlc.types.Field(
|
|
46229
46264
|
"ServiceNowTestCredentialsOutput",
|
|
46230
46265
|
graphql_name="testServicenowCredentials",
|
|
@@ -65111,7 +65146,7 @@ class TransformFunction(sgqlc.types.Type):
|
|
|
65111
65146
|
"supported_connections",
|
|
65112
65147
|
"response_format",
|
|
65113
65148
|
"category",
|
|
65114
|
-
"
|
|
65149
|
+
"prompt",
|
|
65115
65150
|
"score_field",
|
|
65116
65151
|
)
|
|
65117
65152
|
name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
|
|
@@ -65138,7 +65173,7 @@ class TransformFunction(sgqlc.types.Type):
|
|
|
65138
65173
|
|
|
65139
65174
|
category = sgqlc.types.Field(String, graphql_name="category")
|
|
65140
65175
|
|
|
65141
|
-
|
|
65176
|
+
prompt = sgqlc.types.Field(String, graphql_name="prompt")
|
|
65142
65177
|
|
|
65143
65178
|
score_field = sgqlc.types.Field(String, graphql_name="scoreField")
|
|
65144
65179
|
|
|
@@ -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=SuET1bxpfb7tmFOyrNSxlXs5oNkRWsFRxpccDTC4J9s,6157360
|
|
39
|
+
pycarlo/lib/schema.py,sha256=Vu3FskDjk06-ZAYEQ6SZYx1jk3z8mp2D8JJfBF1WF88,2673628
|
|
40
|
+
pycarlo-0.10.133.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.133.dist-info/METADATA,sha256=lqe-p3eg6uOCYUPBHDzzM-U6mOlRKxfGpUf-vBNs1Zg,8742
|
|
42
|
+
pycarlo-0.10.133.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.133.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.133.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|