catocli 1.0.11__py3-none-any.whl → 1.0.13__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 catocli might be problematic. Click here for more details.
- build/lib/catocli/Utils/clidriver.py +117 -0
- build/lib/catocli/__init__.py +2 -0
- build/lib/catocli/__main__.py +12 -0
- build/lib/catocli/parsers/custom/__init__.py +47 -0
- build/lib/catocli/parsers/custom/customLib.py +70 -0
- build/lib/catocli/parsers/mutation_admin/__init__.py +51 -0
- build/lib/catocli/parsers/mutation_container/__init__.py +23 -0
- build/lib/catocli/parsers/mutation_policy/__init__.py +357 -0
- build/lib/catocli/parsers/mutation_site/__init__.py +219 -0
- build/lib/catocli/parsers/mutation_sites/__init__.py +219 -0
- build/lib/catocli/parsers/parserApiClient.py +309 -0
- build/lib/catocli/parsers/query_accountBySubdomain/__init__.py +17 -0
- build/lib/catocli/parsers/query_accountMetrics/__init__.py +17 -0
- build/lib/catocli/parsers/query_accountRoles/__init__.py +17 -0
- build/lib/catocli/parsers/query_accountSnapshot/__init__.py +17 -0
- build/lib/catocli/parsers/query_admin/__init__.py +17 -0
- build/lib/catocli/parsers/query_admins/__init__.py +17 -0
- build/lib/catocli/parsers/query_appStats/__init__.py +17 -0
- build/lib/catocli/parsers/query_appStatsTimeSeries/__init__.py +17 -0
- build/lib/catocli/parsers/query_auditFeed/__init__.py +17 -0
- build/lib/catocli/parsers/query_container/__init__.py +17 -0
- build/lib/catocli/parsers/query_entityLookup/__init__.py +17 -0
- build/lib/catocli/parsers/query_events/__init__.py +17 -0
- build/lib/catocli/parsers/query_eventsFeed/__init__.py +17 -0
- build/lib/catocli/parsers/query_eventsTimeSeries/__init__.py +17 -0
- build/lib/catocli/parsers/query_hardwareManagement/__init__.py +17 -0
- build/lib/catocli/parsers/query_licensing/__init__.py +17 -0
- build/lib/catocli/parsers/query_policy/__init__.py +17 -0
- build/lib/catocli/parsers/query_siteLocation/__init__.py +17 -0
- build/lib/catocli/parsers/query_subDomains/__init__.py +17 -0
- build/lib/catocli/parsers/query_xdr/__init__.py +37 -0
- build/lib/catocli/parsers/raw/__init__.py +9 -0
- build/lib/graphql_client/__init__.py +11 -0
- build/lib/graphql_client/api/__init__.py +3 -0
- build/lib/graphql_client/api/call_api.py +73 -0
- build/lib/graphql_client/api_client.py +192 -0
- build/lib/graphql_client/api_client_types.py +404 -0
- build/lib/graphql_client/configuration.py +230 -0
- build/lib/graphql_client/models/__init__.py +13 -0
- build/lib/graphql_client/models/no_schema.py +71 -0
- build/lib/schema/catolib.py +1016 -0
- build/lib/schema/importSchema.py +60 -0
- build/lib/vendor/certifi/__init__.py +4 -0
- build/lib/vendor/certifi/__main__.py +12 -0
- build/lib/vendor/certifi/core.py +114 -0
- build/lib/vendor/certifi/py.typed +0 -0
- build/lib/vendor/six.py +998 -0
- build/lib/vendor/urllib3/__init__.py +211 -0
- build/lib/vendor/urllib3/_base_connection.py +172 -0
- build/lib/vendor/urllib3/_collections.py +483 -0
- build/lib/vendor/urllib3/_request_methods.py +278 -0
- build/lib/vendor/urllib3/_version.py +16 -0
- build/lib/vendor/urllib3/connection.py +1033 -0
- build/lib/vendor/urllib3/connectionpool.py +1182 -0
- build/lib/vendor/urllib3/contrib/__init__.py +0 -0
- build/lib/vendor/urllib3/contrib/emscripten/__init__.py +18 -0
- build/lib/vendor/urllib3/contrib/emscripten/connection.py +254 -0
- build/lib/vendor/urllib3/contrib/emscripten/fetch.py +418 -0
- build/lib/vendor/urllib3/contrib/emscripten/request.py +22 -0
- build/lib/vendor/urllib3/contrib/emscripten/response.py +285 -0
- build/lib/vendor/urllib3/contrib/pyopenssl.py +552 -0
- build/lib/vendor/urllib3/contrib/socks.py +228 -0
- build/lib/vendor/urllib3/exceptions.py +321 -0
- build/lib/vendor/urllib3/fields.py +341 -0
- build/lib/vendor/urllib3/filepost.py +89 -0
- build/lib/vendor/urllib3/http2/__init__.py +53 -0
- build/lib/vendor/urllib3/http2/connection.py +356 -0
- build/lib/vendor/urllib3/http2/probe.py +87 -0
- build/lib/vendor/urllib3/poolmanager.py +637 -0
- build/lib/vendor/urllib3/py.typed +2 -0
- build/lib/vendor/urllib3/response.py +1265 -0
- build/lib/vendor/urllib3/util/__init__.py +42 -0
- build/lib/vendor/urllib3/util/connection.py +137 -0
- build/lib/vendor/urllib3/util/proxy.py +43 -0
- build/lib/vendor/urllib3/util/request.py +256 -0
- build/lib/vendor/urllib3/util/response.py +101 -0
- build/lib/vendor/urllib3/util/retry.py +533 -0
- build/lib/vendor/urllib3/util/ssl_.py +513 -0
- build/lib/vendor/urllib3/util/ssl_match_hostname.py +159 -0
- build/lib/vendor/urllib3/util/ssltransport.py +276 -0
- build/lib/vendor/urllib3/util/timeout.py +275 -0
- build/lib/vendor/urllib3/util/url.py +471 -0
- build/lib/vendor/urllib3/util/util.py +42 -0
- build/lib/vendor/urllib3/util/wait.py +124 -0
- catocli/__init__.py +1 -1
- catocli/parsers/custom/__init__.py +1 -1
- catocli/parsers/custom/customLib.py +1 -2
- catocli/parsers/mutation_admin/__init__.py +3 -3
- catocli/parsers/mutation_admin_addAdmin/README.md +1 -1
- catocli/parsers/mutation_admin_removeAdmin/README.md +1 -1
- catocli/parsers/mutation_admin_updateAdmin/README.md +1 -1
- catocli/parsers/mutation_container/__init__.py +1 -1
- catocli/parsers/mutation_container_delete/README.md +1 -1
- catocli/parsers/mutation_policy/__init__.py +24 -24
- catocli/parsers/mutation_policy_internetFirewall_addRule/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_addSection/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_createPolicyRevision/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_discardPolicyRevision/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_moveRule/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_moveSection/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_publishPolicyRevision/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_removeRule/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_removeSection/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_updatePolicy/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_updateRule/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_updateSection/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_addRule/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_addSection/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_createPolicyRevision/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_discardPolicyRevision/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_moveRule/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_moveSection/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_publishPolicyRevision/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_removeRule/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_removeSection/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_updatePolicy/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_updateRule/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_updateSection/README.md +1 -1
- catocli/parsers/mutation_site/__init__.py +15 -15
- catocli/parsers/mutation_site_addIpsecIkeV2Site/README.md +1 -1
- catocli/parsers/mutation_site_addIpsecIkeV2SiteTunnels/README.md +1 -1
- catocli/parsers/mutation_site_addNetworkRange/README.md +1 -1
- catocli/parsers/mutation_site_addSocketSite/README.md +1 -1
- catocli/parsers/mutation_site_addStaticHost/README.md +1 -1
- catocli/parsers/mutation_site_removeNetworkRange/README.md +1 -1
- catocli/parsers/mutation_site_removeSite/README.md +1 -1
- catocli/parsers/mutation_site_removeStaticHost/README.md +1 -1
- catocli/parsers/mutation_site_updateHa/README.md +1 -1
- catocli/parsers/mutation_site_updateIpsecIkeV2SiteGeneralDetails/README.md +1 -1
- catocli/parsers/mutation_site_updateIpsecIkeV2SiteTunnels/README.md +1 -1
- catocli/parsers/mutation_site_updateNetworkRange/README.md +1 -1
- catocli/parsers/mutation_site_updateSiteGeneralDetails/README.md +2 -2
- catocli/parsers/mutation_site_updateSocketInterface/README.md +1 -1
- catocli/parsers/mutation_site_updateStaticHost/README.md +1 -1
- catocli/parsers/mutation_sites/__init__.py +15 -15
- catocli/parsers/mutation_sites_addIpsecIkeV2Site/README.md +1 -1
- catocli/parsers/mutation_sites_addIpsecIkeV2SiteTunnels/README.md +1 -1
- catocli/parsers/mutation_sites_addNetworkRange/README.md +1 -1
- catocli/parsers/mutation_sites_addSocketSite/README.md +1 -1
- catocli/parsers/mutation_sites_addStaticHost/README.md +1 -1
- catocli/parsers/mutation_sites_removeNetworkRange/README.md +1 -1
- catocli/parsers/mutation_sites_removeSite/README.md +1 -1
- catocli/parsers/mutation_sites_removeStaticHost/README.md +1 -1
- catocli/parsers/mutation_sites_updateHa/README.md +1 -1
- catocli/parsers/mutation_sites_updateIpsecIkeV2SiteGeneralDetails/README.md +1 -1
- catocli/parsers/mutation_sites_updateIpsecIkeV2SiteTunnels/README.md +1 -1
- catocli/parsers/mutation_sites_updateNetworkRange/README.md +1 -1
- catocli/parsers/mutation_sites_updateSiteGeneralDetails/README.md +2 -2
- catocli/parsers/mutation_sites_updateSocketInterface/README.md +1 -1
- catocli/parsers/mutation_sites_updateStaticHost/README.md +1 -1
- catocli/parsers/query_accountBySubdomain/README.md +1 -1
- catocli/parsers/query_accountBySubdomain/__init__.py +1 -1
- catocli/parsers/query_accountMetrics/README.md +1 -1
- catocli/parsers/query_accountMetrics/__init__.py +1 -1
- catocli/parsers/query_accountRoles/README.md +1 -1
- catocli/parsers/query_accountRoles/__init__.py +1 -1
- catocli/parsers/query_accountSnapshot/README.md +1 -1
- catocli/parsers/query_accountSnapshot/__init__.py +1 -1
- catocli/parsers/query_admin/README.md +1 -1
- catocli/parsers/query_admin/__init__.py +1 -1
- catocli/parsers/query_admins/README.md +1 -1
- catocli/parsers/query_admins/__init__.py +1 -1
- catocli/parsers/query_appStats/README.md +1 -1
- catocli/parsers/query_appStats/__init__.py +1 -1
- catocli/parsers/query_appStatsTimeSeries/README.md +1 -1
- catocli/parsers/query_appStatsTimeSeries/__init__.py +1 -1
- catocli/parsers/query_auditFeed/README.md +1 -1
- catocli/parsers/query_auditFeed/__init__.py +1 -1
- catocli/parsers/query_container/README.md +1 -1
- catocli/parsers/query_container/__init__.py +1 -1
- catocli/parsers/query_entityLookup/README.md +1 -1
- catocli/parsers/query_entityLookup/__init__.py +1 -1
- catocli/parsers/query_events/README.md +1 -1
- catocli/parsers/query_events/__init__.py +1 -1
- catocli/parsers/query_eventsFeed/README.md +2 -2
- catocli/parsers/query_eventsFeed/__init__.py +1 -1
- catocli/parsers/query_eventsTimeSeries/README.md +1 -1
- catocli/parsers/query_eventsTimeSeries/__init__.py +1 -1
- catocli/parsers/query_hardwareManagement/README.md +1 -1
- catocli/parsers/query_hardwareManagement/__init__.py +1 -1
- catocli/parsers/query_licensing/README.md +1 -1
- catocli/parsers/query_licensing/__init__.py +1 -1
- catocli/parsers/query_policy/README.md +1 -1
- catocli/parsers/query_policy/__init__.py +1 -1
- catocli/parsers/query_siteLocation/README.md +1 -1
- catocli/parsers/query_siteLocation/__init__.py +1 -1
- catocli/parsers/query_subDomains/README.md +1 -1
- catocli/parsers/query_subDomains/__init__.py +1 -1
- catocli/parsers/query_xdr/__init__.py +2 -2
- catocli/parsers/query_xdr_stories/README.md +1 -1
- catocli/parsers/query_xdr_story/README.md +1 -1
- {catocli-1.0.11.dist-info → catocli-1.0.13.dist-info}/METADATA +1 -1
- catocli-1.0.13.dist-info/RECORD +344 -0
- {catocli-1.0.11.dist-info → catocli-1.0.13.dist-info}/top_level.txt +2 -0
- models/mutation.site.updateSiteGeneralDetails.json +57 -0
- models/mutation.sites.updateSiteGeneralDetails.json +57 -0
- models/query.accountMetrics.json +80 -0
- models/query.accountSnapshot.json +40 -0
- models/query.auditFeed.json +60 -0
- models/query.events.json +240 -0
- models/query.eventsFeed.json +60 -0
- models/query.eventsTimeSeries.json +180 -0
- schema/catolib.py +6 -6
- catocli-1.0.11.dist-info/RECORD +0 -261
- vendor/.DS_Store +0 -0
- {catocli-1.0.11.dist-info → catocli-1.0.13.dist-info}/LICENSE +0 -0
- {catocli-1.0.11.dist-info → catocli-1.0.13.dist-info}/WHEEL +0 -0
- {catocli-1.0.11.dist-info → catocli-1.0.13.dist-info}/entry_points.txt +0 -0
models/query.accountMetrics.json
CHANGED
|
@@ -1982,6 +1982,26 @@
|
|
|
1982
1982
|
"description": "Basic Site configuration information",
|
|
1983
1983
|
"enumValues": null,
|
|
1984
1984
|
"fields": {
|
|
1985
|
+
"cityName": {
|
|
1986
|
+
"args": {},
|
|
1987
|
+
"deprecationReason": null,
|
|
1988
|
+
"description": "City of the physical site location",
|
|
1989
|
+
"id_str": "sites___info___cityName",
|
|
1990
|
+
"isDeprecated": false,
|
|
1991
|
+
"name": "cityName",
|
|
1992
|
+
"path": "sites.info.cityName",
|
|
1993
|
+
"requestStr": "$cityName:String ",
|
|
1994
|
+
"required": false,
|
|
1995
|
+
"responseStr": "cityName:$cityName ",
|
|
1996
|
+
"type": {
|
|
1997
|
+
"kind": [
|
|
1998
|
+
"SCALAR"
|
|
1999
|
+
],
|
|
2000
|
+
"name": "String",
|
|
2001
|
+
"non_null": false
|
|
2002
|
+
},
|
|
2003
|
+
"varName": "cityName"
|
|
2004
|
+
},
|
|
1985
2005
|
"connType": {
|
|
1986
2006
|
"args": {},
|
|
1987
2007
|
"deprecationReason": null,
|
|
@@ -2126,6 +2146,26 @@
|
|
|
2126
2146
|
},
|
|
2127
2147
|
"varName": "countryName"
|
|
2128
2148
|
},
|
|
2149
|
+
"countryStateName": {
|
|
2150
|
+
"args": {},
|
|
2151
|
+
"deprecationReason": null,
|
|
2152
|
+
"description": "State of the country that is the physical site location",
|
|
2153
|
+
"id_str": "sites___info___countryStateName",
|
|
2154
|
+
"isDeprecated": false,
|
|
2155
|
+
"name": "countryStateName",
|
|
2156
|
+
"path": "sites.info.countryStateName",
|
|
2157
|
+
"requestStr": "$countryStateName:String ",
|
|
2158
|
+
"required": false,
|
|
2159
|
+
"responseStr": "countryStateName:$countryStateName ",
|
|
2160
|
+
"type": {
|
|
2161
|
+
"kind": [
|
|
2162
|
+
"SCALAR"
|
|
2163
|
+
],
|
|
2164
|
+
"name": "String",
|
|
2165
|
+
"non_null": false
|
|
2166
|
+
},
|
|
2167
|
+
"varName": "countryStateName"
|
|
2168
|
+
},
|
|
2129
2169
|
"creationTime": {
|
|
2130
2170
|
"args": {},
|
|
2131
2171
|
"deprecationReason": null,
|
|
@@ -7540,6 +7580,26 @@
|
|
|
7540
7580
|
"description": "Basic Site configuration information",
|
|
7541
7581
|
"enumValues": null,
|
|
7542
7582
|
"fields": {
|
|
7583
|
+
"cityName": {
|
|
7584
|
+
"args": {},
|
|
7585
|
+
"deprecationReason": null,
|
|
7586
|
+
"description": "City of the physical site location",
|
|
7587
|
+
"id_str": "users___info___cityName",
|
|
7588
|
+
"isDeprecated": false,
|
|
7589
|
+
"name": "cityName",
|
|
7590
|
+
"path": "users.info.cityName",
|
|
7591
|
+
"requestStr": "$cityName:String ",
|
|
7592
|
+
"required": false,
|
|
7593
|
+
"responseStr": "cityName:$cityName ",
|
|
7594
|
+
"type": {
|
|
7595
|
+
"kind": [
|
|
7596
|
+
"SCALAR"
|
|
7597
|
+
],
|
|
7598
|
+
"name": "String",
|
|
7599
|
+
"non_null": false
|
|
7600
|
+
},
|
|
7601
|
+
"varName": "cityName"
|
|
7602
|
+
},
|
|
7543
7603
|
"connType": {
|
|
7544
7604
|
"args": {},
|
|
7545
7605
|
"deprecationReason": null,
|
|
@@ -7684,6 +7744,26 @@
|
|
|
7684
7744
|
},
|
|
7685
7745
|
"varName": "countryName"
|
|
7686
7746
|
},
|
|
7747
|
+
"countryStateName": {
|
|
7748
|
+
"args": {},
|
|
7749
|
+
"deprecationReason": null,
|
|
7750
|
+
"description": "State of the country that is the physical site location",
|
|
7751
|
+
"id_str": "users___info___countryStateName",
|
|
7752
|
+
"isDeprecated": false,
|
|
7753
|
+
"name": "countryStateName",
|
|
7754
|
+
"path": "users.info.countryStateName",
|
|
7755
|
+
"requestStr": "$countryStateName:String ",
|
|
7756
|
+
"required": false,
|
|
7757
|
+
"responseStr": "countryStateName:$countryStateName ",
|
|
7758
|
+
"type": {
|
|
7759
|
+
"kind": [
|
|
7760
|
+
"SCALAR"
|
|
7761
|
+
],
|
|
7762
|
+
"name": "String",
|
|
7763
|
+
"non_null": false
|
|
7764
|
+
},
|
|
7765
|
+
"varName": "countryStateName"
|
|
7766
|
+
},
|
|
7687
7767
|
"creationTime": {
|
|
7688
7768
|
"args": {},
|
|
7689
7769
|
"deprecationReason": null,
|
|
@@ -2727,6 +2727,26 @@
|
|
|
2727
2727
|
"description": "Basic Site configuration information",
|
|
2728
2728
|
"enumValues": null,
|
|
2729
2729
|
"fields": {
|
|
2730
|
+
"cityName": {
|
|
2731
|
+
"args": {},
|
|
2732
|
+
"deprecationReason": null,
|
|
2733
|
+
"description": "City of the physical site location",
|
|
2734
|
+
"id_str": "sites___info___cityName",
|
|
2735
|
+
"isDeprecated": false,
|
|
2736
|
+
"name": "cityName",
|
|
2737
|
+
"path": "sites.info.cityName",
|
|
2738
|
+
"requestStr": "$cityName:String ",
|
|
2739
|
+
"required": false,
|
|
2740
|
+
"responseStr": "cityName:$cityName ",
|
|
2741
|
+
"type": {
|
|
2742
|
+
"kind": [
|
|
2743
|
+
"SCALAR"
|
|
2744
|
+
],
|
|
2745
|
+
"name": "String",
|
|
2746
|
+
"non_null": false
|
|
2747
|
+
},
|
|
2748
|
+
"varName": "cityName"
|
|
2749
|
+
},
|
|
2730
2750
|
"connType": {
|
|
2731
2751
|
"args": {},
|
|
2732
2752
|
"deprecationReason": null,
|
|
@@ -2871,6 +2891,26 @@
|
|
|
2871
2891
|
},
|
|
2872
2892
|
"varName": "countryName"
|
|
2873
2893
|
},
|
|
2894
|
+
"countryStateName": {
|
|
2895
|
+
"args": {},
|
|
2896
|
+
"deprecationReason": null,
|
|
2897
|
+
"description": "State of the country that is the physical site location",
|
|
2898
|
+
"id_str": "sites___info___countryStateName",
|
|
2899
|
+
"isDeprecated": false,
|
|
2900
|
+
"name": "countryStateName",
|
|
2901
|
+
"path": "sites.info.countryStateName",
|
|
2902
|
+
"requestStr": "$countryStateName:String ",
|
|
2903
|
+
"required": false,
|
|
2904
|
+
"responseStr": "countryStateName:$countryStateName ",
|
|
2905
|
+
"type": {
|
|
2906
|
+
"kind": [
|
|
2907
|
+
"SCALAR"
|
|
2908
|
+
],
|
|
2909
|
+
"name": "String",
|
|
2910
|
+
"non_null": false
|
|
2911
|
+
},
|
|
2912
|
+
"varName": "countryStateName"
|
|
2913
|
+
},
|
|
2874
2914
|
"creationTime": {
|
|
2875
2915
|
"args": {},
|
|
2876
2916
|
"deprecationReason": null,
|
models/query.auditFeed.json
CHANGED
|
@@ -1472,6 +1472,36 @@
|
|
|
1472
1472
|
"description": "Shows the id of the target user involved in an activity",
|
|
1473
1473
|
"isDeprecated": false,
|
|
1474
1474
|
"name": "vendor_collaborator_id"
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
"deprecationReason": null,
|
|
1478
|
+
"description": "Device Categories",
|
|
1479
|
+
"isDeprecated": false,
|
|
1480
|
+
"name": "device_categories"
|
|
1481
|
+
},
|
|
1482
|
+
{
|
|
1483
|
+
"deprecationReason": null,
|
|
1484
|
+
"description": "Device Manufacturer",
|
|
1485
|
+
"isDeprecated": false,
|
|
1486
|
+
"name": "device_manufacturer"
|
|
1487
|
+
},
|
|
1488
|
+
{
|
|
1489
|
+
"deprecationReason": null,
|
|
1490
|
+
"description": "Device Model",
|
|
1491
|
+
"isDeprecated": false,
|
|
1492
|
+
"name": "device_model"
|
|
1493
|
+
},
|
|
1494
|
+
{
|
|
1495
|
+
"deprecationReason": null,
|
|
1496
|
+
"description": "Device OS Type",
|
|
1497
|
+
"isDeprecated": false,
|
|
1498
|
+
"name": "device_os_type"
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
"deprecationReason": null,
|
|
1502
|
+
"description": "Device Type",
|
|
1503
|
+
"isDeprecated": false,
|
|
1504
|
+
"name": "device_type"
|
|
1475
1505
|
}
|
|
1476
1506
|
],
|
|
1477
1507
|
"fields": null,
|
|
@@ -3124,6 +3154,36 @@
|
|
|
3124
3154
|
"description": "Shows the id of the target user involved in an activity",
|
|
3125
3155
|
"isDeprecated": false,
|
|
3126
3156
|
"name": "vendor_collaborator_id"
|
|
3157
|
+
},
|
|
3158
|
+
{
|
|
3159
|
+
"deprecationReason": null,
|
|
3160
|
+
"description": "Device Categories",
|
|
3161
|
+
"isDeprecated": false,
|
|
3162
|
+
"name": "device_categories"
|
|
3163
|
+
},
|
|
3164
|
+
{
|
|
3165
|
+
"deprecationReason": null,
|
|
3166
|
+
"description": "Device Manufacturer",
|
|
3167
|
+
"isDeprecated": false,
|
|
3168
|
+
"name": "device_manufacturer"
|
|
3169
|
+
},
|
|
3170
|
+
{
|
|
3171
|
+
"deprecationReason": null,
|
|
3172
|
+
"description": "Device Model",
|
|
3173
|
+
"isDeprecated": false,
|
|
3174
|
+
"name": "device_model"
|
|
3175
|
+
},
|
|
3176
|
+
{
|
|
3177
|
+
"deprecationReason": null,
|
|
3178
|
+
"description": "Device OS Type",
|
|
3179
|
+
"isDeprecated": false,
|
|
3180
|
+
"name": "device_os_type"
|
|
3181
|
+
},
|
|
3182
|
+
{
|
|
3183
|
+
"deprecationReason": null,
|
|
3184
|
+
"description": "Device Type",
|
|
3185
|
+
"isDeprecated": false,
|
|
3186
|
+
"name": "device_type"
|
|
3127
3187
|
}
|
|
3128
3188
|
],
|
|
3129
3189
|
"fields": null,
|
models/query.events.json
CHANGED
|
@@ -1354,6 +1354,36 @@
|
|
|
1354
1354
|
"description": "Shows the id of the target user involved in an activity",
|
|
1355
1355
|
"isDeprecated": false,
|
|
1356
1356
|
"name": "vendor_collaborator_id"
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
"deprecationReason": null,
|
|
1360
|
+
"description": "Device Categories",
|
|
1361
|
+
"isDeprecated": false,
|
|
1362
|
+
"name": "device_categories"
|
|
1363
|
+
},
|
|
1364
|
+
{
|
|
1365
|
+
"deprecationReason": null,
|
|
1366
|
+
"description": "Device Manufacturer",
|
|
1367
|
+
"isDeprecated": false,
|
|
1368
|
+
"name": "device_manufacturer"
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
"deprecationReason": null,
|
|
1372
|
+
"description": "Device Model",
|
|
1373
|
+
"isDeprecated": false,
|
|
1374
|
+
"name": "device_model"
|
|
1375
|
+
},
|
|
1376
|
+
{
|
|
1377
|
+
"deprecationReason": null,
|
|
1378
|
+
"description": "Device OS Type",
|
|
1379
|
+
"isDeprecated": false,
|
|
1380
|
+
"name": "device_os_type"
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
"deprecationReason": null,
|
|
1384
|
+
"description": "Device Type",
|
|
1385
|
+
"isDeprecated": false,
|
|
1386
|
+
"name": "device_type"
|
|
1357
1387
|
}
|
|
1358
1388
|
],
|
|
1359
1389
|
"fields": null,
|
|
@@ -2724,6 +2754,36 @@
|
|
|
2724
2754
|
"description": "Shows the id of the target user involved in an activity",
|
|
2725
2755
|
"isDeprecated": false,
|
|
2726
2756
|
"name": "vendor_collaborator_id"
|
|
2757
|
+
},
|
|
2758
|
+
{
|
|
2759
|
+
"deprecationReason": null,
|
|
2760
|
+
"description": "Device Categories",
|
|
2761
|
+
"isDeprecated": false,
|
|
2762
|
+
"name": "device_categories"
|
|
2763
|
+
},
|
|
2764
|
+
{
|
|
2765
|
+
"deprecationReason": null,
|
|
2766
|
+
"description": "Device Manufacturer",
|
|
2767
|
+
"isDeprecated": false,
|
|
2768
|
+
"name": "device_manufacturer"
|
|
2769
|
+
},
|
|
2770
|
+
{
|
|
2771
|
+
"deprecationReason": null,
|
|
2772
|
+
"description": "Device Model",
|
|
2773
|
+
"isDeprecated": false,
|
|
2774
|
+
"name": "device_model"
|
|
2775
|
+
},
|
|
2776
|
+
{
|
|
2777
|
+
"deprecationReason": null,
|
|
2778
|
+
"description": "Device OS Type",
|
|
2779
|
+
"isDeprecated": false,
|
|
2780
|
+
"name": "device_os_type"
|
|
2781
|
+
},
|
|
2782
|
+
{
|
|
2783
|
+
"deprecationReason": null,
|
|
2784
|
+
"description": "Device Type",
|
|
2785
|
+
"isDeprecated": false,
|
|
2786
|
+
"name": "device_type"
|
|
2727
2787
|
}
|
|
2728
2788
|
],
|
|
2729
2789
|
"fields": null,
|
|
@@ -4310,6 +4370,36 @@
|
|
|
4310
4370
|
"description": "Shows the id of the target user involved in an activity",
|
|
4311
4371
|
"isDeprecated": false,
|
|
4312
4372
|
"name": "vendor_collaborator_id"
|
|
4373
|
+
},
|
|
4374
|
+
{
|
|
4375
|
+
"deprecationReason": null,
|
|
4376
|
+
"description": "Device Categories",
|
|
4377
|
+
"isDeprecated": false,
|
|
4378
|
+
"name": "device_categories"
|
|
4379
|
+
},
|
|
4380
|
+
{
|
|
4381
|
+
"deprecationReason": null,
|
|
4382
|
+
"description": "Device Manufacturer",
|
|
4383
|
+
"isDeprecated": false,
|
|
4384
|
+
"name": "device_manufacturer"
|
|
4385
|
+
},
|
|
4386
|
+
{
|
|
4387
|
+
"deprecationReason": null,
|
|
4388
|
+
"description": "Device Model",
|
|
4389
|
+
"isDeprecated": false,
|
|
4390
|
+
"name": "device_model"
|
|
4391
|
+
},
|
|
4392
|
+
{
|
|
4393
|
+
"deprecationReason": null,
|
|
4394
|
+
"description": "Device OS Type",
|
|
4395
|
+
"isDeprecated": false,
|
|
4396
|
+
"name": "device_os_type"
|
|
4397
|
+
},
|
|
4398
|
+
{
|
|
4399
|
+
"deprecationReason": null,
|
|
4400
|
+
"description": "Device Type",
|
|
4401
|
+
"isDeprecated": false,
|
|
4402
|
+
"name": "device_type"
|
|
4313
4403
|
}
|
|
4314
4404
|
],
|
|
4315
4405
|
"fields": null,
|
|
@@ -5698,6 +5788,36 @@
|
|
|
5698
5788
|
"description": "Shows the id of the target user involved in an activity",
|
|
5699
5789
|
"isDeprecated": false,
|
|
5700
5790
|
"name": "vendor_collaborator_id"
|
|
5791
|
+
},
|
|
5792
|
+
{
|
|
5793
|
+
"deprecationReason": null,
|
|
5794
|
+
"description": "Device Categories",
|
|
5795
|
+
"isDeprecated": false,
|
|
5796
|
+
"name": "device_categories"
|
|
5797
|
+
},
|
|
5798
|
+
{
|
|
5799
|
+
"deprecationReason": null,
|
|
5800
|
+
"description": "Device Manufacturer",
|
|
5801
|
+
"isDeprecated": false,
|
|
5802
|
+
"name": "device_manufacturer"
|
|
5803
|
+
},
|
|
5804
|
+
{
|
|
5805
|
+
"deprecationReason": null,
|
|
5806
|
+
"description": "Device Model",
|
|
5807
|
+
"isDeprecated": false,
|
|
5808
|
+
"name": "device_model"
|
|
5809
|
+
},
|
|
5810
|
+
{
|
|
5811
|
+
"deprecationReason": null,
|
|
5812
|
+
"description": "Device OS Type",
|
|
5813
|
+
"isDeprecated": false,
|
|
5814
|
+
"name": "device_os_type"
|
|
5815
|
+
},
|
|
5816
|
+
{
|
|
5817
|
+
"deprecationReason": null,
|
|
5818
|
+
"description": "Device Type",
|
|
5819
|
+
"isDeprecated": false,
|
|
5820
|
+
"name": "device_type"
|
|
5701
5821
|
}
|
|
5702
5822
|
],
|
|
5703
5823
|
"fields": null,
|
|
@@ -7140,6 +7260,36 @@
|
|
|
7140
7260
|
"description": "Shows the id of the target user involved in an activity",
|
|
7141
7261
|
"isDeprecated": false,
|
|
7142
7262
|
"name": "vendor_collaborator_id"
|
|
7263
|
+
},
|
|
7264
|
+
{
|
|
7265
|
+
"deprecationReason": null,
|
|
7266
|
+
"description": "Device Categories",
|
|
7267
|
+
"isDeprecated": false,
|
|
7268
|
+
"name": "device_categories"
|
|
7269
|
+
},
|
|
7270
|
+
{
|
|
7271
|
+
"deprecationReason": null,
|
|
7272
|
+
"description": "Device Manufacturer",
|
|
7273
|
+
"isDeprecated": false,
|
|
7274
|
+
"name": "device_manufacturer"
|
|
7275
|
+
},
|
|
7276
|
+
{
|
|
7277
|
+
"deprecationReason": null,
|
|
7278
|
+
"description": "Device Model",
|
|
7279
|
+
"isDeprecated": false,
|
|
7280
|
+
"name": "device_model"
|
|
7281
|
+
},
|
|
7282
|
+
{
|
|
7283
|
+
"deprecationReason": null,
|
|
7284
|
+
"description": "Device OS Type",
|
|
7285
|
+
"isDeprecated": false,
|
|
7286
|
+
"name": "device_os_type"
|
|
7287
|
+
},
|
|
7288
|
+
{
|
|
7289
|
+
"deprecationReason": null,
|
|
7290
|
+
"description": "Device Type",
|
|
7291
|
+
"isDeprecated": false,
|
|
7292
|
+
"name": "device_type"
|
|
7143
7293
|
}
|
|
7144
7294
|
],
|
|
7145
7295
|
"fields": null,
|
|
@@ -8510,6 +8660,36 @@
|
|
|
8510
8660
|
"description": "Shows the id of the target user involved in an activity",
|
|
8511
8661
|
"isDeprecated": false,
|
|
8512
8662
|
"name": "vendor_collaborator_id"
|
|
8663
|
+
},
|
|
8664
|
+
{
|
|
8665
|
+
"deprecationReason": null,
|
|
8666
|
+
"description": "Device Categories",
|
|
8667
|
+
"isDeprecated": false,
|
|
8668
|
+
"name": "device_categories"
|
|
8669
|
+
},
|
|
8670
|
+
{
|
|
8671
|
+
"deprecationReason": null,
|
|
8672
|
+
"description": "Device Manufacturer",
|
|
8673
|
+
"isDeprecated": false,
|
|
8674
|
+
"name": "device_manufacturer"
|
|
8675
|
+
},
|
|
8676
|
+
{
|
|
8677
|
+
"deprecationReason": null,
|
|
8678
|
+
"description": "Device Model",
|
|
8679
|
+
"isDeprecated": false,
|
|
8680
|
+
"name": "device_model"
|
|
8681
|
+
},
|
|
8682
|
+
{
|
|
8683
|
+
"deprecationReason": null,
|
|
8684
|
+
"description": "Device OS Type",
|
|
8685
|
+
"isDeprecated": false,
|
|
8686
|
+
"name": "device_os_type"
|
|
8687
|
+
},
|
|
8688
|
+
{
|
|
8689
|
+
"deprecationReason": null,
|
|
8690
|
+
"description": "Device Type",
|
|
8691
|
+
"isDeprecated": false,
|
|
8692
|
+
"name": "device_type"
|
|
8513
8693
|
}
|
|
8514
8694
|
],
|
|
8515
8695
|
"fields": null,
|
|
@@ -10096,6 +10276,36 @@
|
|
|
10096
10276
|
"description": "Shows the id of the target user involved in an activity",
|
|
10097
10277
|
"isDeprecated": false,
|
|
10098
10278
|
"name": "vendor_collaborator_id"
|
|
10279
|
+
},
|
|
10280
|
+
{
|
|
10281
|
+
"deprecationReason": null,
|
|
10282
|
+
"description": "Device Categories",
|
|
10283
|
+
"isDeprecated": false,
|
|
10284
|
+
"name": "device_categories"
|
|
10285
|
+
},
|
|
10286
|
+
{
|
|
10287
|
+
"deprecationReason": null,
|
|
10288
|
+
"description": "Device Manufacturer",
|
|
10289
|
+
"isDeprecated": false,
|
|
10290
|
+
"name": "device_manufacturer"
|
|
10291
|
+
},
|
|
10292
|
+
{
|
|
10293
|
+
"deprecationReason": null,
|
|
10294
|
+
"description": "Device Model",
|
|
10295
|
+
"isDeprecated": false,
|
|
10296
|
+
"name": "device_model"
|
|
10297
|
+
},
|
|
10298
|
+
{
|
|
10299
|
+
"deprecationReason": null,
|
|
10300
|
+
"description": "Device OS Type",
|
|
10301
|
+
"isDeprecated": false,
|
|
10302
|
+
"name": "device_os_type"
|
|
10303
|
+
},
|
|
10304
|
+
{
|
|
10305
|
+
"deprecationReason": null,
|
|
10306
|
+
"description": "Device Type",
|
|
10307
|
+
"isDeprecated": false,
|
|
10308
|
+
"name": "device_type"
|
|
10099
10309
|
}
|
|
10100
10310
|
],
|
|
10101
10311
|
"fields": null,
|
|
@@ -11484,6 +11694,36 @@
|
|
|
11484
11694
|
"description": "Shows the id of the target user involved in an activity",
|
|
11485
11695
|
"isDeprecated": false,
|
|
11486
11696
|
"name": "vendor_collaborator_id"
|
|
11697
|
+
},
|
|
11698
|
+
{
|
|
11699
|
+
"deprecationReason": null,
|
|
11700
|
+
"description": "Device Categories",
|
|
11701
|
+
"isDeprecated": false,
|
|
11702
|
+
"name": "device_categories"
|
|
11703
|
+
},
|
|
11704
|
+
{
|
|
11705
|
+
"deprecationReason": null,
|
|
11706
|
+
"description": "Device Manufacturer",
|
|
11707
|
+
"isDeprecated": false,
|
|
11708
|
+
"name": "device_manufacturer"
|
|
11709
|
+
},
|
|
11710
|
+
{
|
|
11711
|
+
"deprecationReason": null,
|
|
11712
|
+
"description": "Device Model",
|
|
11713
|
+
"isDeprecated": false,
|
|
11714
|
+
"name": "device_model"
|
|
11715
|
+
},
|
|
11716
|
+
{
|
|
11717
|
+
"deprecationReason": null,
|
|
11718
|
+
"description": "Device OS Type",
|
|
11719
|
+
"isDeprecated": false,
|
|
11720
|
+
"name": "device_os_type"
|
|
11721
|
+
},
|
|
11722
|
+
{
|
|
11723
|
+
"deprecationReason": null,
|
|
11724
|
+
"description": "Device Type",
|
|
11725
|
+
"isDeprecated": false,
|
|
11726
|
+
"name": "device_type"
|
|
11487
11727
|
}
|
|
11488
11728
|
],
|
|
11489
11729
|
"fields": null,
|
models/query.eventsFeed.json
CHANGED
|
@@ -1688,6 +1688,36 @@
|
|
|
1688
1688
|
"description": "Shows the id of the target user involved in an activity",
|
|
1689
1689
|
"isDeprecated": false,
|
|
1690
1690
|
"name": "vendor_collaborator_id"
|
|
1691
|
+
},
|
|
1692
|
+
{
|
|
1693
|
+
"deprecationReason": null,
|
|
1694
|
+
"description": "Device Categories",
|
|
1695
|
+
"isDeprecated": false,
|
|
1696
|
+
"name": "device_categories"
|
|
1697
|
+
},
|
|
1698
|
+
{
|
|
1699
|
+
"deprecationReason": null,
|
|
1700
|
+
"description": "Device Manufacturer",
|
|
1701
|
+
"isDeprecated": false,
|
|
1702
|
+
"name": "device_manufacturer"
|
|
1703
|
+
},
|
|
1704
|
+
{
|
|
1705
|
+
"deprecationReason": null,
|
|
1706
|
+
"description": "Device Model",
|
|
1707
|
+
"isDeprecated": false,
|
|
1708
|
+
"name": "device_model"
|
|
1709
|
+
},
|
|
1710
|
+
{
|
|
1711
|
+
"deprecationReason": null,
|
|
1712
|
+
"description": "Device OS Type",
|
|
1713
|
+
"isDeprecated": false,
|
|
1714
|
+
"name": "device_os_type"
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
"deprecationReason": null,
|
|
1718
|
+
"description": "Device Type",
|
|
1719
|
+
"isDeprecated": false,
|
|
1720
|
+
"name": "device_type"
|
|
1691
1721
|
}
|
|
1692
1722
|
],
|
|
1693
1723
|
"fields": null,
|
|
@@ -3112,6 +3142,36 @@
|
|
|
3112
3142
|
"description": "Shows the id of the target user involved in an activity",
|
|
3113
3143
|
"isDeprecated": false,
|
|
3114
3144
|
"name": "vendor_collaborator_id"
|
|
3145
|
+
},
|
|
3146
|
+
{
|
|
3147
|
+
"deprecationReason": null,
|
|
3148
|
+
"description": "Device Categories",
|
|
3149
|
+
"isDeprecated": false,
|
|
3150
|
+
"name": "device_categories"
|
|
3151
|
+
},
|
|
3152
|
+
{
|
|
3153
|
+
"deprecationReason": null,
|
|
3154
|
+
"description": "Device Manufacturer",
|
|
3155
|
+
"isDeprecated": false,
|
|
3156
|
+
"name": "device_manufacturer"
|
|
3157
|
+
},
|
|
3158
|
+
{
|
|
3159
|
+
"deprecationReason": null,
|
|
3160
|
+
"description": "Device Model",
|
|
3161
|
+
"isDeprecated": false,
|
|
3162
|
+
"name": "device_model"
|
|
3163
|
+
},
|
|
3164
|
+
{
|
|
3165
|
+
"deprecationReason": null,
|
|
3166
|
+
"description": "Device OS Type",
|
|
3167
|
+
"isDeprecated": false,
|
|
3168
|
+
"name": "device_os_type"
|
|
3169
|
+
},
|
|
3170
|
+
{
|
|
3171
|
+
"deprecationReason": null,
|
|
3172
|
+
"description": "Device Type",
|
|
3173
|
+
"isDeprecated": false,
|
|
3174
|
+
"name": "device_type"
|
|
3115
3175
|
}
|
|
3116
3176
|
],
|
|
3117
3177
|
"fields": null,
|