stoobly-agent 0.34.1__py3-none-any.whl → 0.34.2__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.
- stoobly_agent/__init__.py +1 -1
- stoobly_agent/app/cli/config_cli.py +9 -0
- stoobly_agent/app/cli/helpers/openapi_endpoint_adapter.py +4 -0
- stoobly_agent/app/settings/__init__.py +4 -0
- stoobly_agent/cli.py +1 -1
- stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_additional_props_test.py +0 -24
- stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_missing_info_test.py +0 -26
- stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_missing_oauth2_scopes_test.py +0 -26
- stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_missing_servers_test.py +0 -26
- stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_test.py +0 -139
- {stoobly_agent-0.34.1.dist-info → stoobly_agent-0.34.2.dist-info}/METADATA +1 -1
- {stoobly_agent-0.34.1.dist-info → stoobly_agent-0.34.2.dist-info}/RECORD +15 -15
- {stoobly_agent-0.34.1.dist-info → stoobly_agent-0.34.2.dist-info}/LICENSE +0 -0
- {stoobly_agent-0.34.1.dist-info → stoobly_agent-0.34.2.dist-info}/WHEEL +0 -0
- {stoobly_agent-0.34.1.dist-info → stoobly_agent-0.34.2.dist-info}/entry_points.txt +0 -0
stoobly_agent/__init__.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
COMMAND = 'stoobly-agent'
|
2
|
-
VERSION = '0.34.
|
2
|
+
VERSION = '0.34.2'
|
@@ -61,6 +61,15 @@ def dump(**kwargs):
|
|
61
61
|
else:
|
62
62
|
print(output)
|
63
63
|
|
64
|
+
@config.command(
|
65
|
+
help="Reset config to defaults"
|
66
|
+
)
|
67
|
+
def reset():
|
68
|
+
settings = Settings.instance()
|
69
|
+
settings.reset()
|
70
|
+
|
71
|
+
print(f"Reset {settings.path} to defaults.")
|
72
|
+
|
64
73
|
### Scenario
|
65
74
|
|
66
75
|
@click.group(
|
@@ -603,6 +603,10 @@ class OpenApiEndpointAdapter():
|
|
603
603
|
|
604
604
|
def __parse_responses(self, endpoint: EndpointShowResponse, responses: Spec, components: Spec):
|
605
605
|
for response_code, response_definition in responses.items():
|
606
|
+
# Only support status code 200 for now
|
607
|
+
if response_code != '200':
|
608
|
+
continue
|
609
|
+
|
606
610
|
# Construct response param name components
|
607
611
|
literal_response_params = {}
|
608
612
|
response_body_array = False
|
stoobly_agent/cli.py
CHANGED
@@ -119,7 +119,7 @@ def run(**kwargs):
|
|
119
119
|
os.environ[env_vars.AGENT_LIFECYCLE_HOOKS_PATH] = kwargs['lifecycle_hooks_path']
|
120
120
|
|
121
121
|
if kwargs.get('public_directory_path'):
|
122
|
-
os.environ[env_vars.
|
122
|
+
os.environ[env_vars.AGENT_PUBLIC_DIRECTORY_PATH] = kwargs['public_directory_path']
|
123
123
|
|
124
124
|
if kwargs.get('response_fixtures_path'):
|
125
125
|
os.environ[env_vars.AGENT_RESPONSE_FIXTURES_PATH] = kwargs['response_fixtures_path']
|
@@ -55,30 +55,6 @@ class TestOpenApiEndpointAdapterAdditionalProps():
|
|
55
55
|
'type': 'static'
|
56
56
|
}
|
57
57
|
],
|
58
|
-
'response_param_names': [
|
59
|
-
{
|
60
|
-
'endpoint_id': 1,
|
61
|
-
'id': 1,
|
62
|
-
'inferred_type': 'Integer',
|
63
|
-
'is_deterministic': True,
|
64
|
-
'is_required': True,
|
65
|
-
'name': 'code',
|
66
|
-
'query': 'code',
|
67
|
-
'response_param_name_id': None,
|
68
|
-
'values': [0]
|
69
|
-
},
|
70
|
-
{
|
71
|
-
'endpoint_id': 1,
|
72
|
-
'id': 2,
|
73
|
-
'inferred_type': 'String',
|
74
|
-
'is_deterministic': True,
|
75
|
-
'is_required': True,
|
76
|
-
'name': 'message',
|
77
|
-
'query': 'message',
|
78
|
-
'response_param_name_id': None,
|
79
|
-
'values': ['']
|
80
|
-
}
|
81
|
-
]
|
82
58
|
}
|
83
59
|
|
84
60
|
|
@@ -94,32 +94,6 @@ class TestOpenApiEndpointAdapterMissingInfo():
|
|
94
94
|
"query": "tag",
|
95
95
|
"response_param_name_id": None,
|
96
96
|
"id": 3
|
97
|
-
},
|
98
|
-
{
|
99
|
-
"endpoint_id": 1,
|
100
|
-
"inferred_type": "Integer",
|
101
|
-
"is_required": True,
|
102
|
-
"is_deterministic": True,
|
103
|
-
"name": "code",
|
104
|
-
"query": "code",
|
105
|
-
"response_param_name_id": None,
|
106
|
-
"id": 1,
|
107
|
-
"values": [
|
108
|
-
0
|
109
|
-
]
|
110
|
-
},
|
111
|
-
{
|
112
|
-
"endpoint_id": 1,
|
113
|
-
"inferred_type": "String",
|
114
|
-
"is_required": True,
|
115
|
-
"is_deterministic": True,
|
116
|
-
"name": "message",
|
117
|
-
"query": "message",
|
118
|
-
"response_param_name_id": None,
|
119
|
-
"id": 2,
|
120
|
-
"values": [
|
121
|
-
""
|
122
|
-
]
|
123
97
|
}
|
124
98
|
],
|
125
99
|
}
|
@@ -98,32 +98,6 @@ class TestOpenApiEndpointAdapterMissingOauthScopes():
|
|
98
98
|
"query": "tag",
|
99
99
|
"response_param_name_id": None,
|
100
100
|
"id": 3
|
101
|
-
},
|
102
|
-
{
|
103
|
-
"endpoint_id": 1,
|
104
|
-
"inferred_type": "Integer",
|
105
|
-
"is_required": True,
|
106
|
-
"is_deterministic": True,
|
107
|
-
"name": "code",
|
108
|
-
"query": "code",
|
109
|
-
"response_param_name_id": None,
|
110
|
-
"id": 1,
|
111
|
-
"values": [
|
112
|
-
0
|
113
|
-
]
|
114
|
-
},
|
115
|
-
{
|
116
|
-
"endpoint_id": 1,
|
117
|
-
"inferred_type": "String",
|
118
|
-
"is_required": True,
|
119
|
-
"is_deterministic": True,
|
120
|
-
"name": "message",
|
121
|
-
"query": "message",
|
122
|
-
"response_param_name_id": None,
|
123
|
-
"id": 2,
|
124
|
-
"values": [
|
125
|
-
""
|
126
|
-
]
|
127
101
|
}
|
128
102
|
],
|
129
103
|
}
|
@@ -94,32 +94,6 @@ class TestOpenApiEndpointAdapterMissingServers():
|
|
94
94
|
"query": "tag",
|
95
95
|
"response_param_name_id": None,
|
96
96
|
"id": 3
|
97
|
-
},
|
98
|
-
{
|
99
|
-
"endpoint_id": 1,
|
100
|
-
"inferred_type": "Integer",
|
101
|
-
"is_required": True,
|
102
|
-
"is_deterministic": True,
|
103
|
-
"name": "code",
|
104
|
-
"query": "code",
|
105
|
-
"response_param_name_id": None,
|
106
|
-
"id": 1,
|
107
|
-
"values": [
|
108
|
-
0
|
109
|
-
]
|
110
|
-
},
|
111
|
-
{
|
112
|
-
"endpoint_id": 1,
|
113
|
-
"inferred_type": "String",
|
114
|
-
"is_required": True,
|
115
|
-
"is_deterministic": True,
|
116
|
-
"name": "message",
|
117
|
-
"query": "message",
|
118
|
-
"response_param_name_id": None,
|
119
|
-
"id": 2,
|
120
|
-
"values": [
|
121
|
-
""
|
122
|
-
]
|
123
97
|
}
|
124
98
|
],
|
125
99
|
}
|
@@ -141,28 +141,6 @@ class TestOpenApiEndpointAdapter():
|
|
141
141
|
'response_param_name_id': 1,
|
142
142
|
'values': [0]
|
143
143
|
},
|
144
|
-
{
|
145
|
-
'endpoint_id': 1,
|
146
|
-
'id': 1,
|
147
|
-
'inferred_type': 'Integer',
|
148
|
-
'is_deterministic': True,
|
149
|
-
'is_required': True,
|
150
|
-
'name': 'code',
|
151
|
-
'query': 'code',
|
152
|
-
'response_param_name_id': None,
|
153
|
-
'values': [0]
|
154
|
-
},
|
155
|
-
{
|
156
|
-
'endpoint_id': 1,
|
157
|
-
'id': 2,
|
158
|
-
'inferred_type': 'String',
|
159
|
-
'is_deterministic': True,
|
160
|
-
'is_required': True,
|
161
|
-
'name': 'message',
|
162
|
-
'query': 'message',
|
163
|
-
'response_param_name_id': None,
|
164
|
-
'values': ['']
|
165
|
-
}
|
166
144
|
]
|
167
145
|
}
|
168
146
|
|
@@ -241,28 +219,6 @@ class TestOpenApiEndpointAdapter():
|
|
241
219
|
'response_param_name_id': None,
|
242
220
|
'values': [0],
|
243
221
|
},
|
244
|
-
{
|
245
|
-
'endpoint_id': 2,
|
246
|
-
'id': 1,
|
247
|
-
'inferred_type': 'Integer',
|
248
|
-
'is_deterministic': True,
|
249
|
-
'is_required': True,
|
250
|
-
'name': 'code',
|
251
|
-
'query': 'code',
|
252
|
-
'response_param_name_id': None,
|
253
|
-
'values': [0],
|
254
|
-
},
|
255
|
-
{
|
256
|
-
'endpoint_id': 2,
|
257
|
-
'id': 2,
|
258
|
-
'inferred_type': 'String',
|
259
|
-
'is_deterministic': True,
|
260
|
-
'is_required': True,
|
261
|
-
'name': 'message',
|
262
|
-
'query': 'message',
|
263
|
-
'response_param_name_id': None,
|
264
|
-
'values': [''],
|
265
|
-
},
|
266
222
|
],
|
267
223
|
}
|
268
224
|
|
@@ -323,28 +279,6 @@ class TestOpenApiEndpointAdapter():
|
|
323
279
|
'response_param_name_id': None,
|
324
280
|
'values': [0],
|
325
281
|
},
|
326
|
-
{
|
327
|
-
'endpoint_id': 3,
|
328
|
-
'id': 1,
|
329
|
-
'inferred_type': 'Integer',
|
330
|
-
'is_deterministic': True,
|
331
|
-
'is_required': True,
|
332
|
-
'name': 'code',
|
333
|
-
'query': 'code',
|
334
|
-
'response_param_name_id': None,
|
335
|
-
'values': [0],
|
336
|
-
},
|
337
|
-
{
|
338
|
-
'endpoint_id': 3,
|
339
|
-
'id': 2,
|
340
|
-
'inferred_type': 'String',
|
341
|
-
'is_deterministic': True,
|
342
|
-
'is_required': True,
|
343
|
-
'name': 'message',
|
344
|
-
'query': 'message',
|
345
|
-
'response_param_name_id': None,
|
346
|
-
'values': [''],
|
347
|
-
},
|
348
282
|
],
|
349
283
|
}
|
350
284
|
|
@@ -372,30 +306,6 @@ class TestOpenApiEndpointAdapter():
|
|
372
306
|
'type': 'alias',
|
373
307
|
},
|
374
308
|
],
|
375
|
-
'response_param_names': [
|
376
|
-
{
|
377
|
-
'endpoint_id': 4,
|
378
|
-
'id': 1,
|
379
|
-
'inferred_type': 'Integer',
|
380
|
-
'is_deterministic': True,
|
381
|
-
'is_required': True,
|
382
|
-
'name': 'code',
|
383
|
-
'query': 'code',
|
384
|
-
'response_param_name_id': None,
|
385
|
-
'values': [0],
|
386
|
-
},
|
387
|
-
{
|
388
|
-
'endpoint_id': 4,
|
389
|
-
'id': 2,
|
390
|
-
'inferred_type': 'String',
|
391
|
-
'is_deterministic': True,
|
392
|
-
'is_required': True,
|
393
|
-
'name': 'message',
|
394
|
-
'query': 'message',
|
395
|
-
'response_param_name_id': None,
|
396
|
-
'values': [''],
|
397
|
-
},
|
398
|
-
],
|
399
309
|
}
|
400
310
|
|
401
311
|
def test_adapt_from_file(self, open_api_endpoint_adapter, petstore_expanded_file_path, expected_v2_get_pets_endpoint, expected_v2_post_pets_endpoint, expected_v2_get_pets_id_endpoint, expected_v2_delete_pets_id_endpoint):
|
@@ -708,30 +618,6 @@ class TestOpenApiEndpointAdapter():
|
|
708
618
|
'type': 'static',
|
709
619
|
},
|
710
620
|
],
|
711
|
-
'response_param_names': [
|
712
|
-
{
|
713
|
-
'endpoint_id': 1,
|
714
|
-
'id': 1,
|
715
|
-
'inferred_type': 'Integer',
|
716
|
-
'is_deterministic': True,
|
717
|
-
'is_required': True,
|
718
|
-
'name': 'code',
|
719
|
-
'query': 'code',
|
720
|
-
'response_param_name_id': None,
|
721
|
-
'values': [0],
|
722
|
-
},
|
723
|
-
{
|
724
|
-
'endpoint_id': 1,
|
725
|
-
'id': 2,
|
726
|
-
'inferred_type': 'String',
|
727
|
-
'is_deterministic': True,
|
728
|
-
'is_required': True,
|
729
|
-
'name': 'message',
|
730
|
-
'query': 'message',
|
731
|
-
'response_param_name_id': None,
|
732
|
-
'values': [''],
|
733
|
-
},
|
734
|
-
],
|
735
621
|
}
|
736
622
|
|
737
623
|
@pytest.fixture(scope='class')
|
@@ -859,31 +745,6 @@ class TestOpenApiEndpointAdapter():
|
|
859
745
|
'type': 'static',
|
860
746
|
},
|
861
747
|
],
|
862
|
-
'response_param_names': [
|
863
|
-
{
|
864
|
-
'endpoint_id': 2,
|
865
|
-
'id': 1,
|
866
|
-
'inferred_type': 'Integer',
|
867
|
-
'is_deterministic': True,
|
868
|
-
'is_required': True,
|
869
|
-
'name': 'code',
|
870
|
-
'query': 'code',
|
871
|
-
'response_param_name_id': None,
|
872
|
-
'values': [0],
|
873
|
-
},
|
874
|
-
{
|
875
|
-
'endpoint_id': 2,
|
876
|
-
'id': 2,
|
877
|
-
'inferred_type': 'String',
|
878
|
-
'is_deterministic': True,
|
879
|
-
'is_required': True,
|
880
|
-
'name': 'message',
|
881
|
-
'query': 'message',
|
882
|
-
'response_param_name_id': None,
|
883
|
-
'values': [''],
|
884
|
-
},
|
885
|
-
],
|
886
|
-
|
887
748
|
}
|
888
749
|
|
889
750
|
def test_adapt_from_file(self, open_api_endpoint_adapter, petstore_references_file_path, expected_get_v1_pets_ref, expected_get_v2_pets_ref):
|
@@ -1,4 +1,4 @@
|
|
1
|
-
stoobly_agent/__init__.py,sha256=
|
1
|
+
stoobly_agent/__init__.py,sha256=ClyAwMu8CcHzmbksb9WII4HwPxT-g377HDsMOOrZtHs,45
|
2
2
|
stoobly_agent/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
stoobly_agent/app/api/__init__.py,sha256=FFSlVoTgjPfUNlYPr_7u6-P5Y4WOKyaUfAHtUcB-Xio,810
|
4
4
|
stoobly_agent/app/api/application_http_request_handler.py,sha256=jf4fkqjOiCeI2IM5Ro7ie0v_C6y0-7-5TIE_IKMPOfg,5513
|
@@ -19,7 +19,7 @@ stoobly_agent/app/api/statuses_controller.py,sha256=gQsl28h-3mZ_bByEHpc4mRy3KFvU
|
|
19
19
|
stoobly_agent/app/cli/__init__.py,sha256=E97QCDkhf1zpTsr75PEHstcfj50jRov3BiPl0lr0Ryc,435
|
20
20
|
stoobly_agent/app/cli/ca_cert_cli.py,sha256=YKk7XAkDKL1edmDg3iqcBC1PAOrvOs2oJjWbmQEsaJE,859
|
21
21
|
stoobly_agent/app/cli/ca_cert_installer.py,sha256=8bKW5SyPBHC1Luck_t14sJRvZYEvIP6zzH3GQ1lK70M,2252
|
22
|
-
stoobly_agent/app/cli/config_cli.py,sha256=
|
22
|
+
stoobly_agent/app/cli/config_cli.py,sha256=mI4LdQnqp--rP9-bJQYaXAn5fa0Fgbqh14VOZz5cu0M,15379
|
23
23
|
stoobly_agent/app/cli/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
24
|
stoobly_agent/app/cli/decorators/config.py,sha256=AWrDGZm_gjCWFYlRwdla3iE6H7OSlM4FxkaXRNovBZA,2428
|
25
25
|
stoobly_agent/app/cli/decorators/exec.py,sha256=170tkugOHBb6Pe3AzgDSfoQ1n7ntcah7JVZz-G5cSYU,994
|
@@ -42,7 +42,7 @@ stoobly_agent/app/cli/helpers/handle_replay_service.py,sha256=MfCXVWoGXsuX-nt87k
|
|
42
42
|
stoobly_agent/app/cli/helpers/handle_test_service.py,sha256=nlso1XXjPKoPayN13FXsE_cAhhxa8VuNCW3Md7ufqiY,7212
|
43
43
|
stoobly_agent/app/cli/helpers/iterate_group_by.py,sha256=oN9JC58LHLiElQC0M6JdjBAVlqIEwoBmNJuSJyIs-cI,3099
|
44
44
|
stoobly_agent/app/cli/helpers/json_print.py,sha256=E7UOcxtzGCv8_GCsz0Wos1XP5RhhM-ndS5dc0ZKtHtY,735
|
45
|
-
stoobly_agent/app/cli/helpers/openapi_endpoint_adapter.py,sha256=
|
45
|
+
stoobly_agent/app/cli/helpers/openapi_endpoint_adapter.py,sha256=i1-zw2vT-FktQLsXA-85SobE1zteDTjkP4VfE9wcSOo,24734
|
46
46
|
stoobly_agent/app/cli/helpers/print_service.py,sha256=Z3m-O2aj3oETTm06h_XScgxJAfulTHlEyhOCoE10VG4,4185
|
47
47
|
stoobly_agent/app/cli/helpers/project_facade.py,sha256=rThwVur2clCCBcHa-U4_vGynj0miKv78B3uF6ZRmBSQ,1905
|
48
48
|
stoobly_agent/app/cli/helpers/replay_facade.py,sha256=0Saxae9HN-cdwrelJXz89X139M9bz9hY8_9hERgxjB4,3730
|
@@ -245,7 +245,7 @@ stoobly_agent/app/proxy/utils/publish_change_service.py,sha256=vSpFt0Ox9fceJlalH
|
|
245
245
|
stoobly_agent/app/proxy/utils/request_handler.py,sha256=-CU0b49hGaRmPxBPbFpEtUugrj6GIB6n6AekxDc6v9w,845
|
246
246
|
stoobly_agent/app/proxy/utils/response_handler.py,sha256=78e--VPBNcgb3CRY-WgjxP3g2bx1ONAR8a6mFdyTaOA,1447
|
247
247
|
stoobly_agent/app/proxy/utils/rewrite_rules_to_ignored_components_service.py,sha256=TEWakpZ7C468PW8lVJsRwqkRElpaCR5EOgNNzyGAleY,1043
|
248
|
-
stoobly_agent/app/settings/__init__.py,sha256=
|
248
|
+
stoobly_agent/app/settings/__init__.py,sha256=5lGrfhHLbEmA2_kyFyACJrFdcdqDMcd1DGMQkdGfVp8,5406
|
249
249
|
stoobly_agent/app/settings/cli_settings.py,sha256=amAeOYTYreZMr5-cCkaBCjiQ8Vkg6qkkKUbVtIejoOg,487
|
250
250
|
stoobly_agent/app/settings/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
251
251
|
stoobly_agent/app/settings/constants/firewall_action.py,sha256=DszoKKcZ444zqE6p7zl8arUYfUNKy2hysxcQhipjQs0,111
|
@@ -273,7 +273,7 @@ stoobly_agent/app/settings/types/remote_settings.py,sha256=4PvEGKULXM0zv29XTDzV7
|
|
273
273
|
stoobly_agent/app/settings/types/ui_settings.py,sha256=BqPy2F32AbODqzi2mp2kRk28QVUydQIwVmvftn46pco,84
|
274
274
|
stoobly_agent/app/settings/ui_settings.py,sha256=YDEUMPuJFh0SLHaGz6O-Gpz8nwsunNzeuc-TzO9OUbM,1170
|
275
275
|
stoobly_agent/app/settings/url_rule.py,sha256=D9g5jvagGpX-4K9WuiB9lUhvy9XfNZqZ3ZtdscUTmWE,827
|
276
|
-
stoobly_agent/cli.py,sha256=
|
276
|
+
stoobly_agent/cli.py,sha256=toxciGfZBFA5qJWZs9AScJhUpdQN12uohd0iFGXuSpE,9052
|
277
277
|
stoobly_agent/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
278
278
|
stoobly_agent/config/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
279
279
|
stoobly_agent/config/constants/alias_resolve_strategy.py,sha256=_R1tVqFnyGxCraVS5-dhSskaDj_X8-NthsY7i_bEt9M,119
|
@@ -515,11 +515,11 @@ stoobly_agent/test/app/cli/config/project/config_project_set_test.py,sha256=bV2O
|
|
515
515
|
stoobly_agent/test/app/cli/config/rewrite_test.py,sha256=vMimiUyUeJ91dHaMzZzQrhOBEBnHVGe4sbxWPAr8cig,5401
|
516
516
|
stoobly_agent/test/app/cli/config/scenario/config_scenario_set_test.py,sha256=1A5cYH3OdwtRwTmDETg0af9urHA4K6VVeA76zub2dnQ,2525
|
517
517
|
stoobly_agent/test/app/cli/endpoint/endpoint_cli_apply_test.py,sha256=cW5RDd-spyEknV1krFv37GHgWShPVOgvPyX2jgwnWZw,3886
|
518
|
-
stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_additional_props_test.py,sha256=
|
519
|
-
stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_missing_info_test.py,sha256=
|
520
|
-
stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_missing_oauth2_scopes_test.py,sha256=
|
521
|
-
stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_missing_servers_test.py,sha256=
|
522
|
-
stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_test.py,sha256=
|
518
|
+
stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_additional_props_test.py,sha256=t4Wggky_fexBrRqvK12Qgj71UKsM0gGqutOEfAdOqtk,1772
|
519
|
+
stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_missing_info_test.py,sha256=uFa4M1ASKjEQaLz7R-noR73PMRby2RY8ctJNl-Dcjmk,2757
|
520
|
+
stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_missing_oauth2_scopes_test.py,sha256=MijeepEsSNo2VztP3_Dfm_2L9sGJZ5RZp771145WY2c,2875
|
521
|
+
stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_missing_servers_test.py,sha256=9KqAuV1_7B_Dw5DQFuUYKRNhGp_p1zGny42sLg0ato0,2765
|
522
|
+
stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_test.py,sha256=K7SWCCiJqWZ0IDaOWBx3GacKfWEbF5UzddvG5nNF8TI,36424
|
523
523
|
stoobly_agent/test/app/cli/helpers/schema_builder_test.py,sha256=3pCbpVq4OiEz--T1h_vWP4jPP3NucX-eiubYgr-mwhM,1991
|
524
524
|
stoobly_agent/test/app/cli/helpers/synchronize_request_service_test.py,sha256=5k8u8Xc0oNrRsQ3GrnmvzDU5uoW2u32a9c77-e5YsaQ,8288
|
525
525
|
stoobly_agent/test/app/cli/intercept/intercept_configure_test.py,sha256=rPpnVFWqakOCJ_eqowER9Iy8J0C7Js-i14oqAve0dik,1825
|
@@ -587,8 +587,8 @@ stoobly_agent/test/mock_data/petstore.yaml,sha256=CCdliJky04Az4FIOkFA883uunwFDHL
|
|
587
587
|
stoobly_agent/test/mock_data/request_show_response.py,sha256=K_a0fP0QT58T8sX9PaM6hqtX1A1depZsqg_GsNPf--k,707
|
588
588
|
stoobly_agent/test/mock_data/uspto.yaml,sha256=6U5se7C3o-86J4m9xpOk9Npias399f5CbfWzR87WKwE,7835
|
589
589
|
stoobly_agent/test/test_helper.py,sha256=m_oAI7tmRYCNZdKfNqISWhMv3e44tjeYViQ3nTUfnos,1007
|
590
|
-
stoobly_agent-0.34.
|
591
|
-
stoobly_agent-0.34.
|
592
|
-
stoobly_agent-0.34.
|
593
|
-
stoobly_agent-0.34.
|
594
|
-
stoobly_agent-0.34.
|
590
|
+
stoobly_agent-0.34.2.dist-info/LICENSE,sha256=8QKGyy45eN76Zk52h8gu1DKX2B_gbWgZ3nzDLofEbaE,548
|
591
|
+
stoobly_agent-0.34.2.dist-info/METADATA,sha256=Em8hlJgRwyJFpc4OD79FrsRXuV2R6I-2XOBs3k1vXY4,3304
|
592
|
+
stoobly_agent-0.34.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
593
|
+
stoobly_agent-0.34.2.dist-info/entry_points.txt,sha256=aq5wix5oC8MDQtmyPGU0xaFrsjJg7WH28NmXh2sc3Z8,56
|
594
|
+
stoobly_agent-0.34.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|