catocli 3.0.18__py3-none-any.whl → 3.0.24__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.

Files changed (43) hide show
  1. catocli/Utils/clidriver.py +16 -8
  2. catocli/Utils/formatter_account_metrics.py +544 -0
  3. catocli/Utils/formatter_app_stats.py +184 -0
  4. catocli/Utils/formatter_app_stats_timeseries.py +377 -0
  5. catocli/Utils/formatter_events_timeseries.py +459 -0
  6. catocli/Utils/formatter_socket_port_metrics.py +189 -0
  7. catocli/Utils/formatter_socket_port_metrics_timeseries.py +339 -0
  8. catocli/Utils/formatter_utils.py +251 -0
  9. catocli/__init__.py +1 -1
  10. catocli/clisettings.json +37 -5
  11. catocli/parsers/customParserApiClient.py +211 -66
  12. catocli/parsers/mutation_policy/__init__.py +405 -405
  13. catocli/parsers/mutation_site/__init__.py +15 -15
  14. catocli/parsers/mutation_sites/__init__.py +15 -15
  15. catocli/parsers/query_accountMetrics/README.md +90 -0
  16. catocli/parsers/query_accountMetrics/__init__.py +6 -0
  17. catocli/parsers/query_appStats/README.md +2 -2
  18. catocli/parsers/query_appStats/__init__.py +4 -2
  19. catocli/parsers/query_appStatsTimeSeries/__init__.py +4 -2
  20. catocli/parsers/query_eventsTimeSeries/README.md +280 -0
  21. catocli/parsers/query_eventsTimeSeries/__init__.py +6 -0
  22. catocli/parsers/query_policy/__init__.py +42 -42
  23. catocli/parsers/query_socketPortMetrics/README.md +44 -0
  24. catocli/parsers/query_socketPortMetrics/__init__.py +6 -0
  25. catocli/parsers/query_socketPortMetricsTimeSeries/README.md +83 -0
  26. catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py +4 -2
  27. catocli/parsers/utils/export_utils.py +6 -2
  28. catocli-3.0.24.dist-info/METADATA +184 -0
  29. {catocli-3.0.18.dist-info → catocli-3.0.24.dist-info}/RECORD +37 -35
  30. {catocli-3.0.18.dist-info → catocli-3.0.24.dist-info}/top_level.txt +0 -1
  31. models/mutation.xdr.analystFeedback.json +822 -87
  32. models/query.xdr.stories.json +822 -87
  33. models/query.xdr.story.json +822 -87
  34. schema/catolib.py +89 -64
  35. catocli/Utils/csv_formatter.py +0 -663
  36. catocli-3.0.18.dist-info/METADATA +0 -124
  37. scripts/catolib.py +0 -62
  38. scripts/export_if_rules_to_json.py +0 -188
  39. scripts/export_wf_rules_to_json.py +0 -111
  40. scripts/import_wf_rules_to_tfstate.py +0 -331
  41. {catocli-3.0.18.dist-info → catocli-3.0.24.dist-info}/WHEEL +0 -0
  42. {catocli-3.0.18.dist-info → catocli-3.0.24.dist-info}/entry_points.txt +0 -0
  43. {catocli-3.0.18.dist-info → catocli-3.0.24.dist-info}/licenses/LICENSE +0 -0
@@ -40,6 +40,50 @@ catocli query socketPortMetrics '{
40
40
  }'
41
41
  ```
42
42
 
43
+ ## Advanced Usage
44
+ ### Additional Examples
45
+ - 1 Day sum of traffic by site, socket_interface, device_id
46
+
47
+ # 1 Day sum of traffic by site, socket_interface, device_id
48
+
49
+ ```bash
50
+ # 1 Day sum of traffic by site, socket_interface, device_id
51
+ catocli query socketPortMetrics '{
52
+ "socketPortMetricsDimension": [
53
+ {
54
+ "fieldName": "socket_interface"
55
+ },
56
+ {
57
+ "fieldName": "device_id"
58
+ },
59
+ {
60
+ "fieldName": "site_id"
61
+ },
62
+ {
63
+ "fieldName": "site_name"
64
+ }
65
+ ],
66
+ "socketPortMetricsFilter": [],
67
+ "socketPortMetricsMeasure": [
68
+ {
69
+ "aggType": "sum",
70
+ "fieldName": "bytes_upstream"
71
+ },
72
+ {
73
+ "aggType": "sum",
74
+ "fieldName": "bytes_downstream"
75
+ },
76
+ {
77
+ "aggType": "sum",
78
+ "fieldName": "bytes_total"
79
+ }
80
+ ],
81
+ "socketPortMetricsSort": [],
82
+ "timeFrame": "last.P1D"
83
+ }'
84
+ ```
85
+
86
+
43
87
 
44
88
  #### TimeFrame Parameter Examples
45
89
 
@@ -16,4 +16,10 @@ def query_socketPortMetrics_parse(query_subparsers):
16
16
  query_socketPortMetrics_parser.add_argument('-z', '--sentinel', dest='sentinel', help='Send events to Sentinel customerid:sharedkey')
17
17
  query_socketPortMetrics_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
18
18
  query_socketPortMetrics_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
19
+
20
+
21
+ query_socketPortMetrics_parser.add_argument('-f', '--format', choices=['json', 'csv'], help='Output format (default: formatted json, use -raw for original json)')
22
+ query_socketPortMetrics_parser.add_argument('-raw', '--raw', dest='raw_output', action='store_true', help='Return raw/original JSON format (bypasses default formatting)')
23
+ query_socketPortMetrics_parser.add_argument('--csv-filename', dest='csv_filename', help='Override CSV file name (default: socketportmetrics.csv)')
24
+ query_socketPortMetrics_parser.add_argument('--append-timestamp', dest='append_timestamp', action='store_true', help='Append timestamp to the CSV file name')
19
25
  query_socketPortMetrics_parser.set_defaults(func=createRequest,operation_name='query.socketPortMetrics')
@@ -38,6 +38,89 @@ catocli query socketPortMetricsTimeSeries '{
38
38
  }'
39
39
  ```
40
40
 
41
+ ## Advanced Usage
42
+ ### Additional Examples
43
+ - 1 Day sum of traffic by site, socket_interface, device_id
44
+ - 1 Day sum of traffic by site, socket_interface, device_id as csv
45
+
46
+ # 1 Day sum of traffic by site, socket_interface, device_id
47
+
48
+ ```bash
49
+ # 1 Day sum of traffic by site, socket_interface, device_id as csv
50
+ catocli query socketPortMetricsTimeSeries
51
+ "buckets": 24,
52
+ "socketPortMetricsDimension": [
53
+ {
54
+ "fieldName": "socket_interface"
55
+ },
56
+ {
57
+ "fieldName": "device_id"
58
+ },
59
+ {
60
+ "fieldName": "site_id"
61
+ },
62
+ {
63
+ "fieldName": "site_name"
64
+ }
65
+ ],
66
+ "socketPortMetricsFilter": [],
67
+ "socketPortMetricsMeasure": [
68
+ {
69
+ "aggType": "sum",
70
+ "fieldName": "bytes_downstream"
71
+ },
72
+ {
73
+ "aggType": "sum",
74
+ "fieldName": "bytes_upstream"
75
+ },
76
+ {
77
+ "aggType": "sum",
78
+ "fieldName": "bytes_total"
79
+ }
80
+ ],
81
+ "timeFrame": "last.P1D"
82
+ }' -f csv
83
+ ```
84
+
85
+ # 1 Day sum of traffic by site, socket_interface, device_id
86
+
87
+ ```bash
88
+ # 1 Day sum of traffic by site, socket_interface, device_id
89
+ catocli query socketPortMetricsTimeSeries '{
90
+ "buckets": 120,
91
+ "socketPortMetricsDimension": [
92
+ {
93
+ "fieldName": "socket_interface"
94
+ },
95
+ {
96
+ "fieldName": "device_id"
97
+ },
98
+ {
99
+ "fieldName": "site_id"
100
+ },
101
+ {
102
+ "fieldName": "site_name"
103
+ }
104
+ ],
105
+ "socketPortMetricsFilter": [],
106
+ "socketPortMetricsMeasure": [
107
+ {
108
+ "aggType": "sum",
109
+ "fieldName": "throughput_downstream"
110
+ },
111
+ {
112
+ "aggType": "sum",
113
+ "fieldName": "throughput_upstream"
114
+ }
115
+ ],
116
+ "timeFrame": "last.P2M"
117
+ }'
118
+ ```
119
+
120
+
121
+
122
+
123
+
41
124
 
42
125
  #### TimeFrame Parameter Examples
43
126
 
@@ -17,7 +17,9 @@ def query_socketPortMetricsTimeSeries_parse(query_subparsers):
17
17
  query_socketPortMetricsTimeSeries_parser.add_argument('-H', '--header', action='append', dest='headers', help='Add custom headers in "Key: Value" format. Can be used multiple times.')
18
18
  query_socketPortMetricsTimeSeries_parser.add_argument('--headers-file', dest='headers_file', help='Load headers from a file. Each line should contain a header in "Key: Value" format.')
19
19
 
20
- query_socketPortMetricsTimeSeries_parser.add_argument('-f', '--format', choices=['json', 'csv'], default='json', help='Output format (default: json)')
21
- query_socketPortMetricsTimeSeries_parser.add_argument('--csv-filename', dest='csv_filename', help='Override CSV file name (default: accountmetrics.csv)')
20
+
21
+ query_socketPortMetricsTimeSeries_parser.add_argument('-f', '--format', choices=['json', 'csv'], help='Output format (default: formatted json, use -raw for original json)')
22
+ query_socketPortMetricsTimeSeries_parser.add_argument('-raw', '--raw', dest='raw_output', action='store_true', help='Return raw/original JSON format (bypasses default formatting)')
23
+ query_socketPortMetricsTimeSeries_parser.add_argument('--csv-filename', dest='csv_filename', help='Override CSV file name (default: socketportmetricstimeseries.csv)')
22
24
  query_socketPortMetricsTimeSeries_parser.add_argument('--append-timestamp', dest='append_timestamp', action='store_true', help='Append timestamp to the CSV file name')
23
25
  query_socketPortMetricsTimeSeries_parser.set_defaults(func=createRequest,operation_name='query.socketPortMetricsTimeSeries')
@@ -183,9 +183,11 @@ def write_json_export(
183
183
  if verbose:
184
184
  print(f"Successfully exported data to JSON: {filepath}")
185
185
 
186
+ # Normalize path separators for better cross-platform display
187
+ display_path = filepath.replace(os.sep, '/')
186
188
  return {
187
189
  'success': True,
188
- 'output_file': filepath,
190
+ 'output_file': display_path,
189
191
  'format': 'json',
190
192
  'record_count': len(data) if isinstance(data, (list, dict)) else 1
191
193
  }
@@ -232,9 +234,11 @@ def write_csv_export(
232
234
  if verbose:
233
235
  print(f"Successfully exported {len(data)} records to CSV: {filepath}")
234
236
 
237
+ # Normalize path separators for better cross-platform display
238
+ display_path = filepath.replace(os.sep, '/')
235
239
  return {
236
240
  'success': True,
237
- 'output_file': filepath,
241
+ 'output_file': display_path,
238
242
  'format': 'csv',
239
243
  'record_count': len(data)
240
244
  }
@@ -0,0 +1,184 @@
1
+ Metadata-Version: 2.4
2
+ Name: catocli
3
+ Version: 3.0.24
4
+ Summary: Cato Networks cli wrapper for the GraphQL API.
5
+ Home-page: https://github.com/Cato-Networks/cato-cli
6
+ Author: Cato Networks
7
+ Author-email: [email protected]
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: Apache Software License
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: Python :: 3.6
12
+ Classifier: Programming Language :: Python :: 3.7
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Requires-Python: >=3.6
19
+ Description-Content-Type: text/markdown
20
+ License-File: LICENSE
21
+ Requires-Dist: urllib3
22
+ Requires-Dist: certifi
23
+ Requires-Dist: six
24
+ Dynamic: author
25
+ Dynamic: author-email
26
+ Dynamic: classifier
27
+ Dynamic: description
28
+ Dynamic: description-content-type
29
+ Dynamic: home-page
30
+ Dynamic: license-file
31
+ Dynamic: requires-dist
32
+ Dynamic: requires-python
33
+ Dynamic: summary
34
+
35
+ # Cato Networks GraphQL API CLI
36
+
37
+ The package provides a simple to use CLI that reflects industry standards (such as the AWS cli), and enables customers to manage Cato Networks configurations and processes via the [Cato Networks GraphQL API](https://api.catonetworks.com/api/v1/graphql2) easily integrating into configurations management, orchestration or automation frameworks to support the DevOps model.
38
+
39
+ ## Overview
40
+
41
+ CatoCLI is a command-line interface that provides access to the Cato Networks GraphQL API, enabling you to:
42
+ - Generate detailed network and security reports
43
+ - Analyze user and application activity
44
+ - Monitor network performance and events
45
+ - Export data in multiple formats (JSON, CSV)
46
+ - Automate reporting and monitoring tasks
47
+
48
+ ## Prerequisites
49
+
50
+ - Python 3.6 or higher
51
+ - CatoCLI installed (`pip3 install catocli`)
52
+ - Valid Cato Networks API token and Account ID
53
+ - Proper authentication configuration (see [Authentication Setup](#authentication-setup))
54
+
55
+ ## Installation
56
+
57
+ `pip3 install catocli`
58
+
59
+ ## Authentication Setup
60
+
61
+ Configure your CatoCLI profile before using any query operations:
62
+
63
+ ```bash
64
+ # Interactive configuration
65
+ catocli configure set
66
+
67
+ # Non-interactive configuration
68
+ catocli configure set --cato-token "your-api-token" --account-id "12345"
69
+
70
+ # List configured profiles
71
+ catocli configure list
72
+
73
+ # Show current profile
74
+ catocli configure show
75
+ ```
76
+
77
+ ### Documentation
78
+
79
+ For detailed information about profile management, see [PROFILES.md](PROFILES.md).
80
+
81
+ [CLICK HERE](https://support.catonetworks.com/hc/en-us/articles/4413280536081-Generating-API-Keys-for-the-Cato-API) to see how create an API key to authenticate.
82
+
83
+ ## Running the CLI
84
+ catocli -h
85
+ catocli query -h
86
+ catocli query entityLookup -h
87
+ catocli query entityLookup '{"type":"country"}`
88
+
89
+ // Override the accountID value as a cli argument
90
+ catocli query entityLookup -accountID=12345 '{"type":"country"}`
91
+
92
+ ## Check out run locally not as pip package
93
+ git clone git@github.com:Cato-Networks/cato-cli.git
94
+ cd cato-cli
95
+ python3 -m catocli -h
96
+
97
+ ## Query Operations
98
+
99
+ ### Core Analytics Queries
100
+
101
+ | Operation | Description | Guide |
102
+ |-----------|-------------|--------|
103
+ | [Account Metrics](./catocli_user_guide/account-metrics.md) | Network performance metrics by site, user, or interface | 📊 |
104
+ | [Application Statistics](./catocli_user_guide/app-stats.md) | User activity and application usage analysis | 📱 |
105
+ | [Application Time Series](./catocli_user_guide/app-stats-timeseries.md) | Traffic analysis over time with hourly/daily breakdowns | 📈 |
106
+ | [Events Time Series](./catocli_user_guide/events-timeseries.md) | Security events, connectivity, and threat analysis | 🔒 |
107
+ | [Socket Port Metrics](./catocli_user_guide/socket-port-metrics.md) | Socket interface performance and traffic analysis | 🔌 |
108
+ | [Socket Port Time Series](./catocli_user_guide/socket-port-timeseries.md) | Socket performance metrics over time | ⏱️ |
109
+
110
+ ### Advanced Topics
111
+
112
+ - [Common Patterns & Best Practices](./catocli_user_guide/common-patterns.md) - Output formats, time frames, filtering patterns
113
+ - [Python Integration - Windows](./catocli_user_guide/python-integration-windows.md) - Windows-specific Python automation examples
114
+ - [Python Integration - Unix/Linux/macOS](./catocli_user_guide/python-integration-unix.md) - Unix-based Python integration guide
115
+ - [SIEM Integration Guide](./catocli_user_guide/siem-integration.md) - Real-time security event streaming to SIEM platforms
116
+
117
+ ## Quick Start Examples
118
+
119
+ ### Basic Network Health Check
120
+ ```bash
121
+ # Get last hour account metrics
122
+ catocli query accountMetrics '{"timeFrame":"last.PT1H"}'
123
+ ```
124
+
125
+ ### User Activity Report (csv format)
126
+ ```bash
127
+ # Export user activity for the last month to CSV
128
+ catocli query appStats '{
129
+ "dimension": [{"fieldName": "user_name"}],
130
+ "measure": [{"aggType": "sum", "fieldName": "flows_created"}],
131
+ "timeFrame": "last.P1M"
132
+ }' -f csv --csv-filename user_activity_report.csv
133
+ ```
134
+
135
+ ### Security Events Analysis
136
+ ```bash
137
+ # Weekly security events breakdown
138
+ catocli query eventsTimeSeries '{
139
+ "buckets": 7,
140
+ "eventsFilter": [{"fieldName": "event_type", "operator": "is", "values": ["Security"]}],
141
+ "eventsMeasure": [{"aggType": "sum", "fieldName": "event_count"}],
142
+ "timeFrame": "last.P7D"
143
+ }'
144
+ ```
145
+
146
+ ## Output Formats
147
+
148
+ CatoCLI supports multiple output formats:
149
+
150
+ - **Enhanced JSON** (default): Formatted with granularity adjustments
151
+ - **Raw JSON**: Original API response with `-raw` flag
152
+ - **CSV**: Structured data export with `-f csv`
153
+ - **Custom CSV**: Named files with `--csv-filename` and `--append-timestamp`
154
+
155
+ ## Time Frame Options
156
+
157
+ Common time frame patterns:
158
+ - `last.PT1H` - Last hour
159
+ - `last.P1D` - Last day
160
+ - `last.P7D` - Last week
161
+ - `last.P1M` - Last month
162
+ - `utc.2023-02-{28/00:00:00--28/23:59:59}` - Custom UTC range
163
+
164
+ ## Getting Help
165
+
166
+ - Use `-h` or `--help` with any command for detailed usage
167
+ - Check the [Cato API Documentation](https://api.catonetworks.com/documentation/)
168
+ - Review individual operation guides linked above
169
+
170
+
171
+ This CLI is a Python 3 application and has been tested with Python 3.6 -> 3.8
172
+
173
+ ## Requirements:
174
+ python 3.6 or higher
175
+
176
+ ## Confirm your version of python if installed:
177
+ Open a terminal
178
+ Enter: python -V or python3 -V
179
+
180
+ ## Installing the correct version for environment:
181
+ https://www.python.org/downloads/
182
+
183
+
184
+
@@ -1,14 +1,20 @@
1
- catocli/__init__.py,sha256=AyTUdfAwn4-U6CVh1CkaMP4DgSEP_ZBXEo7bUFn73yM,85
1
+ catocli/__init__.py,sha256=bzKzrYDxIrGm384xc0GGCydJc12e4mEE-vcmaHTTh5U,85
2
2
  catocli/__main__.py,sha256=6Z0ns_k_kUcz1Qtrn1u7UyUnqB-3e85jM_nppOwFsv4,217
3
- catocli/clisettings.json,sha256=mXjDGxSR0-XVRk6_5mg5QZbaN4hOR2q-63yiUBWA3vU,1023
4
- catocli/Utils/clidriver.py,sha256=W5wbjR48dQ79Gsd7DqK4fU7I6TylzbjZqrHj89sGakE,16249
3
+ catocli/clisettings.json,sha256=qlLUDYEpKMvCHAy4eDX2MxE6lQuVCxQbKhIS6S7kGK4,2035
4
+ catocli/Utils/clidriver.py,sha256=WPcH2Aek2k5WfjT5PVLM8vKs2k3Tp5SMPsrvoXnA9dE,16750
5
5
  catocli/Utils/cliutils.py,sha256=TTrAGlJjy9P07rLPGev9Qjx4w0g0KnWYBYcfNY1VIa8,6875
6
- catocli/Utils/csv_formatter.py,sha256=eNy3HTTPZjABaNtxK9jSzgtRlL908n-x7_DI5qqCB1k,23668
6
+ catocli/Utils/formatter_account_metrics.py,sha256=1SL-lx-6JzWBzuF5Fk8cFtMbKAF3eSEzcag1j3vKy_Q,24775
7
+ catocli/Utils/formatter_app_stats.py,sha256=BO33Gfomoko4em6L5rRowce-RnLqhV_xBrAecfFIWZs,5786
8
+ catocli/Utils/formatter_app_stats_timeseries.py,sha256=o0NFiDRcRHuH2oracCSfHRVZe16uG7ok8nGqfAPl9pI,14192
9
+ catocli/Utils/formatter_events_timeseries.py,sha256=JcBN1YgU9GIsx1YM0-_Mn8ZZ15WohvBMSLyDoN4ibg8,17426
10
+ catocli/Utils/formatter_socket_port_metrics.py,sha256=iWVeP6lCqoOUC3jsZHbCNvXm76YIi8uL5ETiNnfEvZE,6460
11
+ catocli/Utils/formatter_socket_port_metrics_timeseries.py,sha256=l1FIk-0gsiMEv37N6bvAj7cH39bM_OZxUaqMnVoZm_Y,12502
12
+ catocli/Utils/formatter_utils.py,sha256=Bdm29NQsYWh38o9rgbS6XUtRrQfGZMHAakDpd5UBIds,9140
7
13
  catocli/Utils/graphql_utils.py,sha256=yUSJ1gE2_LRYTHq46w6vOa84IuU6BXlBMr1gQB2RcGE,63469
8
14
  catocli/Utils/help_formatter.py,sha256=fmUCLS04rB2lO-1YY1VHYjehCfwpjGS0deFCY_3wg_U,31901
9
15
  catocli/Utils/profile_manager.py,sha256=a-cIhlhOiFbAEuX5Im0JraalWufkcAZS1NQQ0T4ck8I,7763
10
16
  catocli/Utils/version_checker.py,sha256=tCtsCn7xxMIxOm6cWJSA_yPt0j4mNMK4iWSJej0yM6A,6696
11
- catocli/parsers/customParserApiClient.py,sha256=twsKVxPISdjxObqpI28PwXDj_OSI9eiilJbE96Wpf54,82284
17
+ catocli/parsers/customParserApiClient.py,sha256=QAXm5IR0aauwpVWww1riOS2FOJ45FlpMljJZ7xJntxk,92515
12
18
  catocli/parsers/configure/__init__.py,sha256=Nd71cY3yLPhz9yhiNCi44iNpsfziRVk1egqHq30LBV4,3554
13
19
  catocli/parsers/configure/configure.py,sha256=0TIHA_RU-odWkTAtbD6PzHo6ssAoq1fZT-AE7jdnGYU,14283
14
20
  catocli/parsers/custom/README.md,sha256=ehw97vJx_Cnlyb-a8ItdREDDVGrGdu8k5ZJ9hT6F4Ew,9577
@@ -74,7 +80,7 @@ catocli/parsers/mutation_hardware_updateHardwareShipping/README.md,sha256=CY7FOE
74
80
  catocli/parsers/mutation_licensing/__init__.py,sha256=zG_DsC6mRcQkRDn68MvPghyXJXbPBZLrRvABgx4NVU0,2521
75
81
  catocli/parsers/mutation_licensing_updateCommercialLicense/README.md,sha256=l5ZjPwesFd8kmiww8PU39KTfEsbTBT3Ng6cgRyd1Mpo,1002
76
82
  catocli/parsers/mutation_policy/README.md,sha256=xYEidHz8nQH6ZoK2mPbaTD5sC3ARMC0fPLUm6FiuC2E,205
77
- catocli/parsers/mutation_policy/__init__.py,sha256=Fz2O8uP-B_3zHAxw-hCkYpncTnOSivFI5Y1YJ8-unWY,276997
83
+ catocli/parsers/mutation_policy/__init__.py,sha256=XqD_LMdTJjiU9KXddsQjbnjTKz3DO-achWUR3HjdhdM,276997
78
84
  catocli/parsers/mutation_policy_antiMalwareFileHash_addRule/README.md,sha256=RBiQnn5znGJCTYEgWv1Fw6-NhDtSX2YjMSIpRqUb4NQ,1899
79
85
  catocli/parsers/mutation_policy_antiMalwareFileHash_addSection/README.md,sha256=lyrFqAMBpYt-vQOpzYG1aaemiWfFG9ShDnxUkotHuUo,1531
80
86
  catocli/parsers/mutation_policy_antiMalwareFileHash_createPolicyRevision/README.md,sha256=L7UTHYUBpq84exEPFLfB0V6nAxiqnroPrO4Y7LnzSLM,1435
@@ -220,7 +226,7 @@ catocli/parsers/mutation_sandbox/__init__.py,sha256=10TqiAh6o3kes1u2KpVLIwPUBquh
220
226
  catocli/parsers/mutation_sandbox_deleteReport/README.md,sha256=RGKO_WNrYkEgNx7DIF2lhlY14qzV-pkqxZddpOk5L44,768
221
227
  catocli/parsers/mutation_sandbox_uploadFile/README.md,sha256=fAG1esgy1MJRLstWUyNuOUVqrDmN3IxidQucXGqla0Q,740
222
228
  catocli/parsers/mutation_site/README.md,sha256=VGtw4II0zTDPC4PyWohkkH1gcsbPtbNWH6FIUJK48Ew,197
223
- catocli/parsers/mutation_site/__init__.py,sha256=MTEt7fYgoD3LKY7IZk5aLe2dy4oGG1SrRfcIR6kTasU,70141
229
+ catocli/parsers/mutation_site/__init__.py,sha256=5QeWY9ALxp6qgDM-yKltI7cErIu1uATDFX7Z5-OYyXY,70141
224
230
  catocli/parsers/mutation_site_addBgpPeer/README.md,sha256=u3tcLtAe7Tvh9_BBMrGN97RyDBnOXMnACV_pyKBX7dM,3960
225
231
  catocli/parsers/mutation_site_addCloudInterconnectPhysicalConnection/README.md,sha256=Sqw1UjE-a8GTFXQmTP9oJg6F-T6OCZYggUGb18V1ezs,1894
226
232
  catocli/parsers/mutation_site_addCloudInterconnectSite/README.md,sha256=cpBxN3too1eSlSoY8_e6LO_AACP9ghAPaNCU-koJbWQ,1341
@@ -258,7 +264,7 @@ catocli/parsers/mutation_site_updateSiteGeneralDetails/README.md,sha256=G4KiqszS
258
264
  catocli/parsers/mutation_site_updateSocketInterface/README.md,sha256=nvUX3ImjRPtRIQ1JYMKJRuHJY9W1MBpNq1Khs-Hgc_E,3326
259
265
  catocli/parsers/mutation_site_updateStaticHost/README.md,sha256=HLWfC7gMxtD_A_50qF_v7RhlKtBysG2SnP9OIna33UY,961
260
266
  catocli/parsers/mutation_sites/README.md,sha256=0JLG9cOfCCFgUxvhRiAYW7yPfFYL0-I3JDkI2SYqHE4,201
261
- catocli/parsers/mutation_sites/__init__.py,sha256=6FOpY2hnGNKRmzUPSItxwpoYIAEqhmyzRqYqrcnxwgA,70688
267
+ catocli/parsers/mutation_sites/__init__.py,sha256=wIAOMwZrkHPfcwncv4iwB0__h1i312YmJ6XZVLUJMhA,70688
262
268
  catocli/parsers/mutation_sites_addBgpPeer/README.md,sha256=8a7KlFb6wCxH2ZIugYbJG5Q9r39h7s6V1rGX_8u7qrs,3970
263
269
  catocli/parsers/mutation_sites_addCloudInterconnectPhysicalConnection/README.md,sha256=f_d9Pxr2XhJr_mR3sZpZw0JtUzCgaqIQx5AaCTSW4r8,1904
264
270
  catocli/parsers/mutation_sites_addCloudInterconnectSite/README.md,sha256=G7bPk4H3-TFrm1ksUHeeTI-6us5Nufw31ga7u1iQZHk,1351
@@ -304,8 +310,8 @@ catocli/parsers/query_accountBySubdomain/README.md,sha256=2K1AOnt_XrOj4z1Cul6kaD
304
310
  catocli/parsers/query_accountBySubdomain/__init__.py,sha256=mr5uDlKWkQK2vCorYI6U0ZfwFCRcefueirboH8fB0YM,2003
305
311
  catocli/parsers/query_accountManagement/README.md,sha256=oSDiaSl91NlxVsRJuSFaxwi1RVLXwxHPmS8BwPxrZCQ,460
306
312
  catocli/parsers/query_accountManagement/__init__.py,sha256=D1bmHTFI_N5tIKJXLplOZf3DdZSc5eO-5T6D8_p07uk,1987
307
- catocli/parsers/query_accountMetrics/README.md,sha256=YrZ-Z7VEEMjQUB0SDyTyW-ch7-zWC7C5uMK4MG1oPrc,3982
308
- catocli/parsers/query_accountMetrics/__init__.py,sha256=09QiJ8iJwwh-52MZlpFHeod3Ivbt_XbI11JKII2Y3PI,1939
313
+ catocli/parsers/query_accountMetrics/README.md,sha256=qB0Z5Ny9ecD2YKPY7umMPkcpQ8rl7WOXcTPk7znqmsU,6035
314
+ catocli/parsers/query_accountMetrics/__init__.py,sha256=7W7KxZqWdnmGP_NDAxsLwPns4gl3AmWIE-6JwpS1DQ8,2581
309
315
  catocli/parsers/query_accountRoles/README.md,sha256=j4OlOjyuodEyRLST-yq7lvkuFU9uljMjDmtcNaBAXrU,645
310
316
  catocli/parsers/query_accountRoles/__init__.py,sha256=k3b6Ew8eEjrrw0RkV5qc97k0tnVz3tICS0AxqfGfIqg,1907
311
317
  catocli/parsers/query_accountSnapshot/README.md,sha256=-tGeW0NPlf8I3sPLlZD4jMw_bVBPndYLF5ZU150BHsY,906
@@ -314,10 +320,10 @@ catocli/parsers/query_admin/README.md,sha256=KjL8vxMUAgJsEFvQIf27grtuMPz2f-9OdqI
314
320
  catocli/parsers/query_admin/__init__.py,sha256=yGGPwE_6aBr7N5WeOP6ZSftvKmemgs1XTvTYcKkJDK4,1795
315
321
  catocli/parsers/query_admins/README.md,sha256=7ZTADV5G5DnNK4MVaa-rTpZSjneThhDdUkVhJqE7C-Q,915
316
322
  catocli/parsers/query_admins/__init__.py,sha256=TsbqtBJvH12JdDxSkB6ZsgcfXIFGorKxtR02evuEmgY,1811
317
- catocli/parsers/query_appStats/README.md,sha256=CUyLfPswOr9hvgn01QEE8_Etv68yBB_PfKkO08T10Eg,3919
318
- catocli/parsers/query_appStats/__init__.py,sha256=i96bemhDh1pvCiLxxJHsq1GT7T1ihFn7M878dcc625g,2272
323
+ catocli/parsers/query_appStats/README.md,sha256=W6mJjMFLvxKDvVEB4BP0iu_bPYENGUXfZVDSQIxb07Q,3993
324
+ catocli/parsers/query_appStats/__init__.py,sha256=dKtWxgVgmr0YsjmjTdjES2_qqAU8A7b3riFFfZ9r1no,2455
319
325
  catocli/parsers/query_appStatsTimeSeries/README.md,sha256=SXIqMG79a1E4xXHNJDHgG7UZM-3fR6AXst8IUvauHBo,4725
320
- catocli/parsers/query_appStatsTimeSeries/__init__.py,sha256=_qIK1d8XvtnBoM8K-lvO162xtiaE0yfwJMi8jyYDpbI,2462
326
+ catocli/parsers/query_appStatsTimeSeries/__init__.py,sha256=d7s17-s8GkL0aKBvXMwf4pkwiS8nmRIqxWgV3swnAqc,2665
321
327
  catocli/parsers/query_auditFeed/README.md,sha256=1l1s0Ehj5In5arf4lpVeVWJxFaxCkBwDaMIGSS2eVGM,2114
322
328
  catocli/parsers/query_auditFeed/__init__.py,sha256=Q0FulK3O5l-aaG5WDuCotecSsyTwBtl89d2U7j80vX0,1859
323
329
  catocli/parsers/query_catalogs/README.md,sha256=GrgxxyPLun7NavY_mviEo67UoVU29YB6xclY6u4eAGE,6536
@@ -332,8 +338,8 @@ catocli/parsers/query_entityLookup/README.md,sha256=rFtIb4gdlUxg3k9ndyZlaMrKzIwJ
332
338
  catocli/parsers/query_entityLookup/__init__.py,sha256=km5KIfNaQh9tohqWlFlJeHi7RHrWRgB9B9QMK0l3lR8,1907
333
339
  catocli/parsers/query_events/README.md,sha256=SMTCv6kFL1V6kNnFa1ULVH35JbdanrNitbKdqxHS2LI,2223
334
340
  catocli/parsers/query_events/__init__.py,sha256=Y0LV_eeKNfTkYbuJfcmqt0iF2MC78sCUAoRrsUKD5BQ,1811
335
- catocli/parsers/query_eventsTimeSeries/README.md,sha256=oGUEfCfijKkZMuZxqaWsnAs5W7wJ0G7kAUk0Id1j2iE,2616
336
- catocli/parsers/query_eventsTimeSeries/__init__.py,sha256=DhftHcnAtqB1EcDC4OdxibPuTrwNEed3N2oTNdVvwI0,1971
341
+ catocli/parsers/query_eventsTimeSeries/README.md,sha256=yx4EKpUcm-D0_aTKjJjkkhcAKeYIdlMLRbsPRzhxpQ4,9524
342
+ catocli/parsers/query_eventsTimeSeries/__init__.py,sha256=Zu60GrMkGkuJqxey7c_5i_0gQbt9pSYe9tLCjM1p078,2623
337
343
  catocli/parsers/query_groups/README.md,sha256=RJn7PwNMf_Iy_G4ZegsIBH3zXI-c7dtVmW4BTqgQUC0,193
338
344
  catocli/parsers/query_groups/__init__.py,sha256=NLQgVQcEMNHu-pXXG3J4wJr_Cjvz7BLEVl6bgzP8Fcg,5968
339
345
  catocli/parsers/query_groups_group/README.md,sha256=7S3De2L8RRXr8DSCYB5ft8w04ylktutPtzgba4IcvoA,210
@@ -347,7 +353,7 @@ catocli/parsers/query_hardwareManagement/__init__.py,sha256=nwbHmYxporGjVhkfMYhZ
347
353
  catocli/parsers/query_licensing/README.md,sha256=RE4VxiK6D9lbo1EjxFPtq3cTkxzmUMWYpdBMKQax_mw,396
348
354
  catocli/parsers/query_licensing/__init__.py,sha256=Hg7XgTrMT2IzyYYv9DkrTvjteNrD2DHYFAM9Q1FOq5g,1859
349
355
  catocli/parsers/query_policy/README.md,sha256=qSG_DLdWzlx6eG8uxVxHtkdJN3JsXH6vumP46vX-sEc,193
350
- catocli/parsers/query_policy/__init__.py,sha256=jatRNGZJT1BVSfQm_1MfkmXYnPyzmglSaQpR5lBWvfs,24985
356
+ catocli/parsers/query_policy/__init__.py,sha256=R6Fd53ZL5whS9-L1EgEIVX7sjYj-mAKIldgfFyGAE7s,24985
351
357
  catocli/parsers/query_policy_antiMalwareFileHash_policy/README.md,sha256=ZR07XDFwiT60NGbi1SxLKtqcQQwgCJH3gTfVrajSOyM,1016
352
358
  catocli/parsers/query_policy_appTenantRestriction/README.md,sha256=D0kSY40EVvu4guWas_1JUyJ6VMOEM020qTsUBvo39Do,270
353
359
  catocli/parsers/query_policy_appTenantRestriction_policy/README.md,sha256=kywP0iBDuZCBbEtMoZDItn7j0KE7KigFVq64MFwcKlU,1030
@@ -387,10 +393,10 @@ catocli/parsers/query_site_secondaryAwsVSocket/README.md,sha256=X04UV0XIG-kZm2Nr
387
393
  catocli/parsers/query_site_secondaryAzureVSocket/README.md,sha256=CKPofhqfZU7QLqnnTEhHaaWAH2PJBNfItEE48_pjAKE,704
388
394
  catocli/parsers/query_site_siteBgpStatus/README.md,sha256=e5NMv8gQsAnyI7CGQVXIWE99F98-XceB1QdlAHt623s,804
389
395
  catocli/parsers/query_site_siteGeneralDetails/README.md,sha256=M8M_ZHwcoZDtj8xKlefzPkvfAgehPHAHhOYukBBaMcU,769
390
- catocli/parsers/query_socketPortMetrics/README.md,sha256=tadmw6gFtUtC-BdV6fsgZ_mNySHRx2O_OG2Fuymn7U4,2485
391
- catocli/parsers/query_socketPortMetrics/__init__.py,sha256=lfZYJtAve9PUJcOuISjTIHntIWoqEQFOFH87HH7N4pE,1987
392
- catocli/parsers/query_socketPortMetricsTimeSeries/README.md,sha256=tcjRN6OU-4Kyu1lk6BmokB3jsHlxo_t9o0chG9CJP2I,2840
393
- catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py,sha256=nRoWW19agYF64mH20eVb-5yTuVOwt_YwyMGd8lpf4f8,2633
396
+ catocli/parsers/query_socketPortMetrics/README.md,sha256=joKz4NoXImF8LzUvjiehxPsNrcuWnG8HMAlnR_ii1zU,3454
397
+ catocli/parsers/query_socketPortMetrics/__init__.py,sha256=g9AV1ft75DBFO07-pvsgEUYW6my9PuBYndZXfDyx1hU,2644
398
+ catocli/parsers/query_socketPortMetricsTimeSeries/README.md,sha256=iiMRw_MqODy5ZMi6s0wpVXJe3tHjKxn0kNiMCw05klk,4668
399
+ catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py,sha256=_04kDwBdd46h_NUzU5Ei_0wsKs7cuONExowha1pNUXM,2854
394
400
  catocli/parsers/query_subDomains/README.md,sha256=zYUTcCDdtKStPqFCyGemBWBlbM4USEdHeCaog980SUI,716
395
401
  catocli/parsers/query_subDomains/__init__.py,sha256=5Um6ZE_gD02vT1Xa-0D_OGT-nelBV1GzAIUUTNx5MCI,1875
396
402
  catocli/parsers/query_xdr/README.md,sha256=bmaw_sVCQgN-3hiyLtbB4xlsXKxHfy-vbnt1qWFZ4QY,181
@@ -400,7 +406,7 @@ catocli/parsers/query_xdr_story/README.md,sha256=5OZlF-1OsjVAG8rrWiH5pOQdp5XHMuZ
400
406
  catocli/parsers/raw/README.md,sha256=e7zQOue0MnVQ1tN9rga8f5b_8YLmvoAyd9N9hdcz3OU,783
401
407
  catocli/parsers/raw/__init__.py,sha256=fiSzQzNSG3vje-eEXuOcdhuL8pyavkufocOJumjdFXs,1356
402
408
  catocli/parsers/utils/__init__.py,sha256=j9KXGCz67cVUoQyrygQjuFW1lxPh0u44NF9GZM1kLTY,628
403
- catocli/parsers/utils/export_utils.py,sha256=zD6hm878KR4ISqPxD2HaktJCKj2InmUKKTHf3Tk7Tu4,11725
409
+ catocli/parsers/utils/export_utils.py,sha256=hJfE5Q_dflRyrBRvzGaRPuKyMWczH-jmTLTHb-1j6SM,11979
404
410
  catocli/templates/Test_network_ranges.csv,sha256=_E5uE_nGI6k8LqMj_w_j2BmrBa1sL0SMOcYxtrnfjfE,2459
405
411
  catocli/templates/scim_groups.csv,sha256=S5NA1iuW4tjxICMbXWehTPik-_jkozHn7bPo6qyl4PQ,173
406
412
  catocli/templates/scim_groups.json,sha256=hPYdvdQJPSbcYrYALlASRNUHbY5ceU6orVs-ijFAlC0,335
@@ -408,7 +414,7 @@ catocli/templates/scim_users.csv,sha256=Fb_C9W2cXf1swnKSNXanWabny87TKcbwxpor5ze3
408
414
  catocli/templates/scim_users.json,sha256=VRBc2rDRMiIcA6navhnqdnuvLmouKd9ZE7ZrzGb7kfI,582
409
415
  catocli/templates/socket_sites.csv,sha256=S5qY7whbydinMwomoAlDghoiFO_xqUKRwNG1xvzl8BI,1212
410
416
  catocli/templates/socket_sites.json,sha256=X3NShci5-q3TpVSsaj62u4jFCvQAhxQ7knC-Lui_gOg,19535
411
- catocli-3.0.18.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
417
+ catocli-3.0.24.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
412
418
  graphql_client/__init__.py,sha256=2nxD4YsWoOnALXi5cXbmtIN_i0NL_eyDTQRTxs52mkI,315
413
419
  graphql_client/api_client.py,sha256=2Rc1Zo1xH9Jnk1AO68kLSofTShkZwSVF-WkVtczfIc4,5786
414
420
  graphql_client/api_client_types.py,sha256=y1oy1qsg8TM_FPxb8m53ED7tBU29WDhtQqzgg247_kI,11754
@@ -652,7 +658,7 @@ models/mutation.sites.updateSiteGeneralDetails.json,sha256=5-AzYfo3K0GaAs2TyCVJH
652
658
  models/mutation.sites.updateSocketInterface.json,sha256=n9XvxvuZ8HjozBQtdouHfHG5T7oKao-x7b_0z7OJ5Ms,222154
653
659
  models/mutation.sites.updateStaticHost.json,sha256=5Bwpr8_98q3gAIihhsIWPrAhnYZI3kXvCyz9gNGKu58,20473
654
660
  models/mutation.xdr.addStoryComment.json,sha256=GEC9NjB2SF-c9I2Wohk4WWknnK9YtHDXiRN2v6bOTrs,39572
655
- models/mutation.xdr.analystFeedback.json,sha256=RG1jxFFlOC0FCrdmhBysANL3FaLVtzmDCIcrrjgjx3s,3540420
661
+ models/mutation.xdr.analystFeedback.json,sha256=oyqkQ9WCVHdPMMLFImff0Krwk5OZhffaYwLRotEY_uw,3643040
656
662
  models/mutation.xdr.deleteStoryComment.json,sha256=b6fP2gbDpuWFPalC-0cetOvQF_hP1MiD4Rjcjj3nb1I,39838
657
663
  models/query.accountBySubdomain.json,sha256=mopwNpqyB15szZ4ja18_L8y5DWZnffAQYyUjtAAzPHI,5684
658
664
  models/query.accountManagement.json,sha256=LLlHnT1-9sonA_KlpX4WJWCJkI9LAzBTJazbfL5zPbw,24290
@@ -706,14 +712,10 @@ models/query.siteLocation.json,sha256=YDFp6w5vdMOb0dATjhByH2GwUOkYvdvRNm9mTl5FCl
706
712
  models/query.socketPortMetrics.json,sha256=3DOM1gda-Q-FEe16FW_1h6c3uywh1DKNTJhmlECXtss,187442
707
713
  models/query.socketPortMetricsTimeSeries.json,sha256=1XsPcaUQ5uAhcNpSuwq9AszlP2fH15JaHX-K9FBUTQk,133068
708
714
  models/query.subDomains.json,sha256=BkReQmylHZMv1iIakX984na9EKd_m0sPC0a-COsCxRI,7036
709
- models/query.xdr.stories.json,sha256=kCB06v2b40o6eWAswmc8GKhHATMf0Sh1tc3ms9Uvlnw,4007825
710
- models/query.xdr.story.json,sha256=FeGVNO_aa_sgFnBKd2TvSx2V94fzLd2AxaFRJqN7EIo,2981525
711
- schema/catolib.py,sha256=beUhefGOb1TTSOo23krnFynxnItf0DYO9Muh2529wn4,83105
715
+ models/query.xdr.stories.json,sha256=DYQi8TzvfQ2lVzNz3OrSeld1gtPxMwmq4Q4aFKpq41U,4110125
716
+ models/query.xdr.story.json,sha256=Xw_a0szmBJ76PA4d6QJlrkI4SbhhXc6lW38yqNScTXA,3071705
717
+ schema/catolib.py,sha256=NoeVBGqZpjXIjIyKOWdr-Dy8ojAGBUINgagADOPCLZM,85779
712
718
  schema/importSchema.py,sha256=7hMyn-KCRnHtssCteSB66yZeDzFmokK-wD97cqb8jwU,2896
713
- scripts/catolib.py,sha256=6QaGZaHj1waZuta8gUFsfXmyoDiLabpU9gwnyq7pSXg,2145
714
- scripts/export_if_rules_to_json.py,sha256=sTYzUbAtiFTy9vKpnyO8Sljshvg0qKd2gadanpeRVAM,10076
715
- scripts/export_wf_rules_to_json.py,sha256=oFIXCNGzo-ej1Pc38f1lbAwb-cGbIHjrfMBPiNE_1I0,7417
716
- scripts/import_wf_rules_to_tfstate.py,sha256=02L2uvGKKIZcorOkzleGRAYjtcamDU_uTqrX9LAFLcU,13306
717
719
  vendor/six.py,sha256=TOOfQi7nFGfMrIvtdr6wX4wyHH8M7aknmuLfo2cBBrM,34549
718
720
  vendor/certifi/__init__.py,sha256=p_GYZrjUwPBUhpLlCZoGb0miKBKSqDAyZC5DvIuqbHQ,94
719
721
  vendor/certifi/__main__.py,sha256=xBBoj905TUWBLRGANOcf7oi6e-3dMP4cEoG9OyMs11g,243
@@ -756,8 +758,8 @@ vendor/urllib3/util/timeout.py,sha256=4eT1FVeZZU7h7mYD1Jq2OXNe4fxekdNvhoWUkZusRp
756
758
  vendor/urllib3/util/url.py,sha256=wHORhp80RAXyTlAIkTqLFzSrkU7J34ZDxX-tN65MBZk,15213
757
759
  vendor/urllib3/util/util.py,sha256=j3lbZK1jPyiwD34T8IgJzdWEZVT-4E-0vYIJi9UjeNA,1146
758
760
  vendor/urllib3/util/wait.py,sha256=_ph8IrUR3sqPqi0OopQgJUlH4wzkGeM5CiyA7XGGtmI,4423
759
- catocli-3.0.18.dist-info/METADATA,sha256=1XSwBNDrYs-g4Y4ds36hNaOyImkZSQF6_FBURQ9JrQY,3753
760
- catocli-3.0.18.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
761
- catocli-3.0.18.dist-info/entry_points.txt,sha256=p4k9Orre6aWcqVrNmBbckmCs39h-1naMxRo2AjWmWZ4,50
762
- catocli-3.0.18.dist-info/top_level.txt,sha256=F4qSgcjcW5wR9EFrO8Ud06F7ZQGFr04a9qALNQDyVxU,52
763
- catocli-3.0.18.dist-info/RECORD,,
761
+ catocli-3.0.24.dist-info/METADATA,sha256=ACqF6TZJXjcc14M1PhnjDUEVOVZwqeYgbFVGOQZdTrc,6410
762
+ catocli-3.0.24.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
763
+ catocli-3.0.24.dist-info/entry_points.txt,sha256=p4k9Orre6aWcqVrNmBbckmCs39h-1naMxRo2AjWmWZ4,50
764
+ catocli-3.0.24.dist-info/top_level.txt,sha256=cRT_qNMM5G7w-dpT1BnJB9eikqydO0jafLlS4OD-7MI,44
765
+ catocli-3.0.24.dist-info/RECORD,,
@@ -2,5 +2,4 @@ catocli
2
2
  graphql_client
3
3
  models
4
4
  schema
5
- scripts
6
5
  vendor