stoobly-agent 1.0.2__py3-none-any.whl → 1.0.4__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/api/__init__.py +13 -5
- stoobly_agent/app/cli/scaffold/docker/workflow/builder.py +1 -1
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/.docker-compose.base.yml +0 -1
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.configure +5 -2
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.init +4 -2
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/init +1 -4
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.configure +5 -2
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.init +4 -2
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/init +1 -4
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.configure +5 -2
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.init +5 -1
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/init +1 -4
- stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.configure +5 -1
- stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.init +5 -1
- stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/configure +3 -1
- stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/init +1 -2
- stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.configure +5 -1
- stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.init +5 -1
- stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/configure +2 -0
- stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/init +1 -2
- stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.configure +5 -1
- stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.init +5 -1
- stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/configure +2 -0
- stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/init +1 -2
- stoobly_agent/cli.py +3 -2
- {stoobly_agent-1.0.2.dist-info → stoobly_agent-1.0.4.dist-info}/METADATA +1 -1
- {stoobly_agent-1.0.2.dist-info → stoobly_agent-1.0.4.dist-info}/RECORD +31 -31
- {stoobly_agent-1.0.2.dist-info → stoobly_agent-1.0.4.dist-info}/LICENSE +0 -0
- {stoobly_agent-1.0.2.dist-info → stoobly_agent-1.0.4.dist-info}/WHEEL +0 -0
- {stoobly_agent-1.0.2.dist-info → stoobly_agent-1.0.4.dist-info}/entry_points.txt +0 -0
stoobly_agent/__init__.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
COMMAND = 'stoobly-agent'
|
2
|
-
VERSION = '1.0.
|
2
|
+
VERSION = '1.0.4'
|
@@ -3,28 +3,36 @@ import pdb
|
|
3
3
|
import threading
|
4
4
|
|
5
5
|
from http.server import HTTPServer
|
6
|
+
from urllib.parse import urlparse
|
6
7
|
|
7
8
|
from stoobly_agent.app.settings import Settings
|
8
9
|
from stoobly_agent.config.constants import env_vars
|
10
|
+
from stoobly_agent.lib.logger import Logger
|
9
11
|
|
10
12
|
from .application_http_request_handler import ApplicationHTTPRequestHandler
|
11
13
|
|
14
|
+
LOG_ID = 'UI'
|
15
|
+
|
12
16
|
def start_server(host, port):
|
13
17
|
httpd = HTTPServer((host, port), ApplicationHTTPRequestHandler)
|
14
18
|
httpd.serve_forever()
|
15
19
|
|
16
|
-
def
|
17
|
-
ui_host = kwargs['ui_host']
|
18
|
-
ui_port = kwargs['ui_port']
|
20
|
+
def initialize(**kwargs):
|
19
21
|
url = f"http://{kwargs['ui_host']}:{kwargs['ui_port']}"
|
20
22
|
|
21
23
|
os.environ[env_vars.AGENT_URL] = url
|
22
24
|
|
25
|
+
# TODO: debug why the following is needed or else logger won't print
|
23
26
|
settings = Settings.instance()
|
24
27
|
settings.ui.url = url
|
25
28
|
settings.commit()
|
26
29
|
|
27
|
-
|
30
|
+
return url
|
31
|
+
|
32
|
+
def run(url):
|
33
|
+
parsed_url = urlparse(url)
|
34
|
+
|
35
|
+
Logger.instance(LOG_ID).info(f"Server listening at {url}\n")
|
28
36
|
|
29
|
-
thread = threading.Thread(target=start_server, args=(
|
37
|
+
thread = threading.Thread(target=start_server, args=(parsed_url.hostname, parsed_url.port))
|
30
38
|
thread.start()
|
@@ -1,10 +1,13 @@
|
|
1
1
|
#!/bin/bash
|
2
2
|
|
3
|
-
# Data
|
4
3
|
echo "Configuring intercept mode"
|
5
4
|
stoobly-agent intercept configure --mode mock --policy found
|
6
5
|
|
7
6
|
echo "Enabling intercept"
|
8
7
|
stoobly-agent intercept enable
|
9
8
|
|
10
|
-
|
9
|
+
entrypoint=$(dirname -- "$0")/configure
|
10
|
+
|
11
|
+
if [ -e "$entrypoint" ]; then
|
12
|
+
"$entrypoint"
|
13
|
+
fi
|
@@ -1,10 +1,13 @@
|
|
1
1
|
#!/bin/bash
|
2
2
|
|
3
|
-
# Data
|
4
3
|
echo "Configuring intercept mode"
|
5
4
|
stoobly-agent intercept configure --mode record --policy all
|
6
5
|
|
7
6
|
echo "Disabling intercept"
|
8
7
|
stoobly-agent intercept disable
|
9
8
|
|
10
|
-
|
9
|
+
entrypoint=$(dirname -- "$0")/configure
|
10
|
+
|
11
|
+
if [ -e "$entrypoint" ]; then
|
12
|
+
"$entrypoint"
|
13
|
+
fi
|
@@ -1,10 +1,13 @@
|
|
1
1
|
#!/bin/bash
|
2
2
|
|
3
|
-
# Data
|
4
3
|
echo "Configuring intercept mode"
|
5
4
|
stoobly-agent intercept configure --mode mock --policy found
|
6
5
|
|
7
6
|
echo "Enabling intercept"
|
8
7
|
stoobly-agent intercept enable
|
9
8
|
|
10
|
-
|
9
|
+
entrypoint=$(dirname -- "$0")/configure
|
10
|
+
|
11
|
+
if [ -e "$entrypoint" ]; then
|
12
|
+
"$entrypoint"
|
13
|
+
fi
|
@@ -1,5 +1,7 @@
|
|
1
1
|
#!/bin/bash
|
2
2
|
|
3
|
+
# Add custom Stoobly configuration here
|
4
|
+
|
3
5
|
scheme=$SERVICE_SCHEME
|
4
6
|
hostname=$SERVICE_HOSTNAME
|
5
7
|
port=$SERVICE_PORT
|
@@ -10,7 +12,7 @@ if [ "$scheme" = 'http' -a "$port" != '80' ] || [ "$scheme" = 'https' -a "$port"
|
|
10
12
|
url="$url:$port"
|
11
13
|
fi
|
12
14
|
|
13
|
-
# Match
|
15
|
+
# Match Rules
|
14
16
|
echo "Configuring match rules"
|
15
17
|
stoobly-agent config match set \
|
16
18
|
--method GET --method POST --method OPTIONS --method PUT --method DELETE \
|
stoobly_agent/cli.py
CHANGED
@@ -15,7 +15,7 @@ from stoobly_agent.config.constants import env_vars, mode
|
|
15
15
|
from stoobly_agent.config.data_dir import DataDir
|
16
16
|
from stoobly_agent.lib.utils.conditional_decorator import ConditionalDecorator
|
17
17
|
|
18
|
-
from .app.api import run as run_api
|
18
|
+
from .app.api import initialize as initialize_api, run as run_api
|
19
19
|
from .app.cli import ca_cert, config, endpoint, feature, intercept, MainGroup, request, scenario, scaffold, snapshot, trace
|
20
20
|
from .app.cli.helpers.feature_flags import local, remote
|
21
21
|
from .app.settings import Settings
|
@@ -144,8 +144,9 @@ def run(**kwargs):
|
|
144
144
|
if 'api_url' in kwargs and kwargs['api_url']:
|
145
145
|
os.environ[env_vars.API_URL] = kwargs['api_url']
|
146
146
|
|
147
|
+
url = initialize_api(**kwargs)
|
147
148
|
if 'headless' in kwargs and not kwargs['headless']:
|
148
|
-
run_api(
|
149
|
+
run_api(url)
|
149
150
|
|
150
151
|
if 'proxyless' in kwargs and not kwargs['proxyless']:
|
151
152
|
run_proxy(**kwargs)
|
@@ -1,6 +1,6 @@
|
|
1
|
-
stoobly_agent/__init__.py,sha256=
|
1
|
+
stoobly_agent/__init__.py,sha256=f1FfF5ji8VyTsfUz9vkoZmCunEPoXdrww6rk9uifrKo,44
|
2
2
|
stoobly_agent/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
-
stoobly_agent/app/api/__init__.py,sha256=
|
3
|
+
stoobly_agent/app/api/__init__.py,sha256=ctkB8KR-eXO0SFhj602huHiyvQ3PslFWd8fkcufgrAI,1000
|
4
4
|
stoobly_agent/app/api/application_http_request_handler.py,sha256=jf4fkqjOiCeI2IM5Ro7ie0v_C6y0-7-5TIE_IKMPOfg,5513
|
5
5
|
stoobly_agent/app/api/bodies_controller.py,sha256=TmN82Q7OFjWiIszwUzfYHQqsqCwLLrThXcIfQmNgvTo,2285
|
6
6
|
stoobly_agent/app/api/configs_controller.py,sha256=wkO3_9cexH7BKwm_2KflKEEdxvBFwc9vju_wouUjjBI,4692
|
@@ -85,7 +85,7 @@ stoobly_agent/app/cli/scaffold/docker/service/set_gateway_ports.py,sha256=jvlO5x
|
|
85
85
|
stoobly_agent/app/cli/scaffold/docker/service/types.py,sha256=qB-yYHlu-PZDc0HYgTUvE5bWNpHxaSThC3JUG8okR1k,88
|
86
86
|
stoobly_agent/app/cli/scaffold/docker/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
87
87
|
stoobly_agent/app/cli/scaffold/docker/workflow/build_decorator.py,sha256=vbmME0cbN2EnNRlzQ2umj7Y3L7aZT-EHqEpkBFMfe8U,758
|
88
|
-
stoobly_agent/app/cli/scaffold/docker/workflow/builder.py,sha256=
|
88
|
+
stoobly_agent/app/cli/scaffold/docker/workflow/builder.py,sha256=_ag6YU6uafV2ux5gC4nvxCexoiLSslxsUEyhU47g_o0,6960
|
89
89
|
stoobly_agent/app/cli/scaffold/docker/workflow/decorators_factory.py,sha256=Mi6SEFpG2MG9pymPLbPTWBMfosi1ThRAs5DXfjBz4Iw,643
|
90
90
|
stoobly_agent/app/cli/scaffold/docker/workflow/mock_decorator.py,sha256=pOvyrauHRB1cOB0OKBA3MQnM-Iwfbuwwop2TDSWs_jo,1067
|
91
91
|
stoobly_agent/app/cli/scaffold/docker/workflow/reverse_proxy_decorator.py,sha256=RiNOXaCj_TM-NkFVtu-jnZEIeG8HBKPrVqBbnfRNzio,2031
|
@@ -119,24 +119,24 @@ stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/.init,sha256=tL9PFDO
|
|
119
119
|
stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/configure,sha256=Nme7aSLA-IH1NXgmqRMPzOlKcUSRXqZd-kcuZa47IEk,11
|
120
120
|
stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/init,sha256=O7czui9GFHbcoEC5I9MwkRyZvDGY42IwlyQwIWcgylY,12
|
121
121
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/.config.yml,sha256=T9VQz6OwAQpKdIoFrnfKAxuX_to0c6EhuWRLKM34Sr4,22
|
122
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/.docker-compose.base.yml,sha256=
|
122
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/.docker-compose.base.yml,sha256=ZekJ2lHjnPPI7hV44x3_2JzJFbn2iao9ZLWCgENfTOo,341
|
123
123
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/.docker-compose.mock.yml,sha256=cxAJ7CrI3AeuzQs9qw3fDSHTfYTQ1Bw_0egfy_FYRJ8,684
|
124
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.configure,sha256=
|
125
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.init,sha256=
|
124
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.configure,sha256=I4MhiSVbBaQWy056opYfPqnWPZmS5rKBW_Y26nDGMeY,256
|
125
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.init,sha256=5xJbfpwGOmRj5lwK5e0JNlVpNd3WFUkZ0GaCUK40aDk,97
|
126
126
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/configure,sha256=Nme7aSLA-IH1NXgmqRMPzOlKcUSRXqZd-kcuZa47IEk,11
|
127
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/init,sha256=
|
127
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/init,sha256=O7czui9GFHbcoEC5I9MwkRyZvDGY42IwlyQwIWcgylY,12
|
128
128
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/docker-compose.yml,sha256=S-e2LOIwkifAtc-66n8cvvd6dpLtIsHGX1H0W4Nc1Oo,22
|
129
129
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/.docker-compose.record.yml,sha256=g_tkKEPhwUyg5QbXNBT_bo3CFw9qdhaQyWirMJDS9tc,688
|
130
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.configure,sha256=
|
131
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.init,sha256=
|
130
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.configure,sha256=Jp7ozDgj0x9D8PYS8CMhGNs4VfwJhVwBqzss8ygbLJU,258
|
131
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.init,sha256=5xJbfpwGOmRj5lwK5e0JNlVpNd3WFUkZ0GaCUK40aDk,97
|
132
132
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/configure,sha256=Nme7aSLA-IH1NXgmqRMPzOlKcUSRXqZd-kcuZa47IEk,11
|
133
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/init,sha256=
|
133
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/init,sha256=O7czui9GFHbcoEC5I9MwkRyZvDGY42IwlyQwIWcgylY,12
|
134
134
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/docker-compose.yml,sha256=S-e2LOIwkifAtc-66n8cvvd6dpLtIsHGX1H0W4Nc1Oo,22
|
135
135
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/.docker-compose.test.yml,sha256=ifPMJHPbAf6hI4vS1BWuzPOOt5SCaxHFnWA5BVnM9RY,685
|
136
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.configure,sha256=
|
137
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.init,sha256=
|
136
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.configure,sha256=I4MhiSVbBaQWy056opYfPqnWPZmS5rKBW_Y26nDGMeY,256
|
137
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.init,sha256=5xJbfpwGOmRj5lwK5e0JNlVpNd3WFUkZ0GaCUK40aDk,97
|
138
138
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/configure,sha256=Nme7aSLA-IH1NXgmqRMPzOlKcUSRXqZd-kcuZa47IEk,11
|
139
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/init,sha256=
|
139
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/init,sha256=O7czui9GFHbcoEC5I9MwkRyZvDGY42IwlyQwIWcgylY,12
|
140
140
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/docker-compose.yml,sha256=S-e2LOIwkifAtc-66n8cvvd6dpLtIsHGX1H0W4Nc1Oo,22
|
141
141
|
stoobly_agent/app/cli/scaffold/templates/app/gateway/.config.yml,sha256=XnLQZMzzMMIwVycjyPN5QXsmRztkTFAna1kIHYuDfJQ,19
|
142
142
|
stoobly_agent/app/cli/scaffold/templates/app/gateway/.docker-compose.base.yml,sha256=L70ReUdGnfCDBxz9urdZoBskyAQ5fZ56KEzqzh6XRbk,257
|
@@ -157,22 +157,22 @@ stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/mock/.docker-compose.moc
|
|
157
157
|
stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/record/.docker-compose.record.yml,sha256=cbK8vJUnk8llJ6pIE65AxJxD6SSal2ugm5sKjtz3uRY,260
|
158
158
|
stoobly_agent/app/cli/scaffold/templates/constants.py,sha256=7dlRVpJWUi8ylwUJ-qQg5Hi_Y4fcMXEELaJFj3Ak2sU,1459
|
159
159
|
stoobly_agent/app/cli/scaffold/templates/factory.py,sha256=zzDMi56w-BWOUOw0DDGgmvrWep_JSqRjp-jQemfQwOo,1759
|
160
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.configure,sha256=
|
161
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.init,sha256=
|
162
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/configure,sha256=
|
163
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/init,sha256=
|
160
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.configure,sha256=0-fhtg7ZPAEWXqsgFk-W-qvqkHwrSTSI_LNyDMrDytY,102
|
161
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.init,sha256=5xJbfpwGOmRj5lwK5e0JNlVpNd3WFUkZ0GaCUK40aDk,97
|
162
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/configure,sha256=BgZGK2dQz46wD9wKpUgkXXQhfL6WIMEMrnAp9_AmT5c,460
|
163
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/init,sha256=YxWVVQMEdGarcMtBcE1Sj2kdLgUgwY9kXp3MjPsVcmg,46
|
164
164
|
stoobly_agent/app/cli/scaffold/templates/workflow/mock/fixtures/.keep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
165
165
|
stoobly_agent/app/cli/scaffold/templates/workflow/mock/fixtures.yml,sha256=8DW2LN5WYg1hxmZkqr8o5dxLgDxHtBARFSUiNjz009Y,226
|
166
166
|
stoobly_agent/app/cli/scaffold/templates/workflow/mock/lifecycle_hooks.py,sha256=U7mlzT_wBR3uhHSG6CAyt5tBUNAvdIrCw33gdB-F294,467
|
167
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.configure,sha256=
|
168
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.init,sha256=
|
169
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/configure,sha256=
|
170
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/init,sha256=
|
167
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.configure,sha256=0-fhtg7ZPAEWXqsgFk-W-qvqkHwrSTSI_LNyDMrDytY,102
|
168
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.init,sha256=5xJbfpwGOmRj5lwK5e0JNlVpNd3WFUkZ0GaCUK40aDk,97
|
169
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/configure,sha256=qBYEj_7kvYqf7wmRLPhX9y_cx2Msmn1VcDrq02hWT4w,744
|
170
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/init,sha256=YxWVVQMEdGarcMtBcE1Sj2kdLgUgwY9kXp3MjPsVcmg,46
|
171
171
|
stoobly_agent/app/cli/scaffold/templates/workflow/record/lifecycle_hooks.py,sha256=4vaVc_gnDTCLEqtcZybIk5dcmXrKmGuesF6gc3-_kX8,473
|
172
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.configure,sha256=
|
173
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.init,sha256=
|
174
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/configure,sha256=
|
175
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/init,sha256=
|
172
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.configure,sha256=0-fhtg7ZPAEWXqsgFk-W-qvqkHwrSTSI_LNyDMrDytY,102
|
173
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.init,sha256=5xJbfpwGOmRj5lwK5e0JNlVpNd3WFUkZ0GaCUK40aDk,97
|
174
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/configure,sha256=ItenTr7B0h5h6I_ThE11X_al7HgsKbskJpU4dXt3X-g,454
|
175
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/init,sha256=YxWVVQMEdGarcMtBcE1Sj2kdLgUgwY9kXp3MjPsVcmg,46
|
176
176
|
stoobly_agent/app/cli/scaffold/templates/workflow/test/fixtures/.keep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
177
177
|
stoobly_agent/app/cli/scaffold/templates/workflow/test/fixtures.yml,sha256=8DW2LN5WYg1hxmZkqr8o5dxLgDxHtBARFSUiNjz009Y,226
|
178
178
|
stoobly_agent/app/cli/scaffold/templates/workflow/test/lifecycle_hooks.py,sha256=U7mlzT_wBR3uhHSG6CAyt5tBUNAvdIrCw33gdB-F294,467
|
@@ -391,7 +391,7 @@ stoobly_agent/app/settings/types/remote_settings.py,sha256=4PvEGKULXM0zv29XTDzV7
|
|
391
391
|
stoobly_agent/app/settings/types/ui_settings.py,sha256=BqPy2F32AbODqzi2mp2kRk28QVUydQIwVmvftn46pco,84
|
392
392
|
stoobly_agent/app/settings/ui_settings.py,sha256=YDEUMPuJFh0SLHaGz6O-Gpz8nwsunNzeuc-TzO9OUbM,1170
|
393
393
|
stoobly_agent/app/settings/url_rule.py,sha256=Qx7YrIpVRSC-4LeNiCAfCtE50Jou4423hojMW-4qUYg,954
|
394
|
-
stoobly_agent/cli.py,sha256=
|
394
|
+
stoobly_agent/cli.py,sha256=cZJDCVa7PGGfiqg4GxaYn74-uPtQQAexHeWmGybw3YE,9915
|
395
395
|
stoobly_agent/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
396
396
|
stoobly_agent/config/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
397
397
|
stoobly_agent/config/constants/alias_resolve_strategy.py,sha256=_R1tVqFnyGxCraVS5-dhSskaDj_X8-NthsY7i_bEt9M,119
|
@@ -707,8 +707,8 @@ stoobly_agent/test/mock_data/petstore.yaml,sha256=CCdliJky04Az4FIOkFA883uunwFDHL
|
|
707
707
|
stoobly_agent/test/mock_data/request_show_response.py,sha256=K_a0fP0QT58T8sX9PaM6hqtX1A1depZsqg_GsNPf--k,707
|
708
708
|
stoobly_agent/test/mock_data/uspto.yaml,sha256=6U5se7C3o-86J4m9xpOk9Npias399f5CbfWzR87WKwE,7835
|
709
709
|
stoobly_agent/test/test_helper.py,sha256=m_oAI7tmRYCNZdKfNqISWhMv3e44tjeYViQ3nTUfnos,1007
|
710
|
-
stoobly_agent-1.0.
|
711
|
-
stoobly_agent-1.0.
|
712
|
-
stoobly_agent-1.0.
|
713
|
-
stoobly_agent-1.0.
|
714
|
-
stoobly_agent-1.0.
|
710
|
+
stoobly_agent-1.0.4.dist-info/LICENSE,sha256=8QKGyy45eN76Zk52h8gu1DKX2B_gbWgZ3nzDLofEbaE,548
|
711
|
+
stoobly_agent-1.0.4.dist-info/METADATA,sha256=Kmm6NvSM_24nSEOEQ65tHBzXE4UB3qMO9dwClO_Qk9o,3388
|
712
|
+
stoobly_agent-1.0.4.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
713
|
+
stoobly_agent-1.0.4.dist-info/entry_points.txt,sha256=aq5wix5oC8MDQtmyPGU0xaFrsjJg7WH28NmXh2sc3Z8,56
|
714
|
+
stoobly_agent-1.0.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|