pycarlo 0.10.131__py3-none-any.whl → 0.10.132__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
@@ -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
  {
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",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.131
3
+ Version: 0.10.132
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=t3hpM6JRuUIZ2L3jj0OXSAPJCvRqJAXUGjgC9MpPWMU,6155097
39
- pycarlo/lib/schema.py,sha256=A-umZV4Hj_HOdR6oQiDJzRzXh1YVOHvIERCX_jOs_Aw,2672318
40
- pycarlo-0.10.131.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.131.dist-info/METADATA,sha256=zC-wo3lw_zFQDYt5YYwv0A6BZj-H80KDAl4OZbO-8Ss,8742
42
- pycarlo-0.10.131.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.131.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.131.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=rpZgL7T7eZEOP1VfREUDxAriGz-_OoQT4_k2IyAjeY0,6157368
39
+ pycarlo/lib/schema.py,sha256=NPFSy4ucEuWYRcZKD9hGsED5m7Shd_TVCq0G0OYk00w,2673654
40
+ pycarlo-0.10.132.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.132.dist-info/METADATA,sha256=wCJIGiNZzGLfI5ddXr2QXYW5ftwwRTyVn1bxDA_XG-U,8742
42
+ pycarlo-0.10.132.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.132.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.132.dist-info/RECORD,,