stoobly-agent 1.0.2__py3-none-any.whl → 1.0.3__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.
Files changed (29) hide show
  1. stoobly_agent/__init__.py +1 -1
  2. stoobly_agent/app/cli/scaffold/docker/workflow/builder.py +1 -1
  3. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/.docker-compose.base.yml +0 -1
  4. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.configure +5 -2
  5. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.init +4 -2
  6. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/init +1 -4
  7. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.configure +5 -2
  8. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.init +4 -2
  9. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/init +1 -4
  10. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.configure +5 -2
  11. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.init +5 -1
  12. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/init +1 -4
  13. stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.configure +5 -1
  14. stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.init +5 -1
  15. stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/configure +3 -1
  16. stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/init +1 -2
  17. stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.configure +5 -1
  18. stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.init +5 -1
  19. stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/configure +2 -0
  20. stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/init +1 -2
  21. stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.configure +5 -1
  22. stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.init +5 -1
  23. stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/configure +2 -0
  24. stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/init +1 -2
  25. {stoobly_agent-1.0.2.dist-info → stoobly_agent-1.0.3.dist-info}/METADATA +1 -1
  26. {stoobly_agent-1.0.2.dist-info → stoobly_agent-1.0.3.dist-info}/RECORD +29 -29
  27. {stoobly_agent-1.0.2.dist-info → stoobly_agent-1.0.3.dist-info}/LICENSE +0 -0
  28. {stoobly_agent-1.0.2.dist-info → stoobly_agent-1.0.3.dist-info}/WHEEL +0 -0
  29. {stoobly_agent-1.0.2.dist-info → stoobly_agent-1.0.3.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'
2
+ VERSION = '1.0.3'
@@ -124,7 +124,7 @@ class WorkflowBuilder(Builder):
124
124
 
125
125
  def build_init(self):
126
126
  environment = { **self.env_dict() }
127
- volumes = []
127
+ volumes = [f"{self.service_path}:{STOOBLY_HOME_DIR}"]
128
128
 
129
129
  service = {
130
130
  'build': self.context_build,
@@ -10,7 +10,6 @@ services:
10
10
  entrypoint.init_base:
11
11
  command:
12
12
  - bin/.init
13
- - dist
14
13
  environment: {}
15
14
  extends:
16
15
  file: ../.docker-compose.base.yml
@@ -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
- cd $(dirname -- "$0") && ./configure
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
- stoobly-agent intercept enable
3
+ entrypoint=$(dirname -- "$0")/init
4
4
 
5
- cd $(dirname -- "$0") && ./init
5
+ if [ -e "$entrypoint" ]; then
6
+ "$entrypoint"
7
+ fi
@@ -1,4 +1 @@
1
- #! /bin/bash
2
-
3
- # ARGV[1] = Path to 'dist' folder
4
- # Contents within this folder will be shared
1
+ #! /bin/bash
@@ -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
- cd $(dirname -- "$0") && ./configure
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
- stoobly-agent intercept enable
3
+ entrypoint=$(dirname -- "$0")/init
4
4
 
5
- cd $(dirname -- "$0") && ./init
5
+ if [ -e "$entrypoint" ]; then
6
+ "$entrypoint"
7
+ fi
@@ -1,4 +1 @@
1
- #! /bin/bash
2
-
3
- # ARGV[1] = Path to 'dist' folder
4
- # Contents within this folder will be shared
1
+ #! /bin/bash
@@ -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
- cd $(dirname -- "$0") && ./configure
9
+ entrypoint=$(dirname -- "$0")/configure
10
+
11
+ if [ -e "$entrypoint" ]; then
12
+ "$entrypoint"
13
+ fi
@@ -1,3 +1,7 @@
1
1
  #!/bin/bash
2
2
 
3
- cd $(dirname -- "$0") && ./init
3
+ entrypoint=$(dirname -- "$0")/init
4
+
5
+ if [ -e "$entrypoint" ]; then
6
+ "$entrypoint"
7
+ fi
@@ -1,4 +1 @@
1
- #! /bin/bash
2
-
3
- # ARGV[1] = Path to 'dist' folder
4
- # Contents within this folder will be shared
1
+ #! /bin/bash
@@ -1,3 +1,7 @@
1
1
  #!/bin/bash
2
2
 
3
- cd $(dirname -- "$0") && ./configure
3
+ entrypoint=$(dirname -- "$0")/configure
4
+
5
+ if [ -e "$entrypoint" ]; then
6
+ "$entrypoint"
7
+ fi
@@ -1,3 +1,7 @@
1
1
  #!/bin/bash
2
2
 
3
- cd $(dirname -- "$0") && ./init
3
+ entrypoint=$(dirname -- "$0")/init
4
+
5
+ if [ -e "$entrypoint" ]; then
6
+ "$entrypoint"
7
+ 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 \
@@ -1,4 +1,3 @@
1
1
  #! /bin/bash
2
2
 
3
- # ARGV[1] = Path to 'dist' folder
4
- # Contents within this folder will be shared
3
+ # Add custom initialization here
@@ -1,3 +1,7 @@
1
1
  #!/bin/bash
2
2
 
3
- cd $(dirname -- "$0") && ./configure
3
+ entrypoint=$(dirname -- "$0")/configure
4
+
5
+ if [ -e "$entrypoint" ]; then
6
+ "$entrypoint"
7
+ fi
@@ -1,3 +1,7 @@
1
1
  #!/bin/bash
2
2
 
3
- cd $(dirname -- "$0") && ./init
3
+ entrypoint=$(dirname -- "$0")/init
4
+
5
+ if [ -e "$entrypoint" ]; then
6
+ "$entrypoint"
7
+ 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
@@ -1,4 +1,3 @@
1
1
  #! /bin/bash
2
2
 
3
- # ARGV[1] = Path to 'dist' folder
4
- # Contents within this folder will be shared
3
+ # Add custom initialization here
@@ -1,3 +1,7 @@
1
1
  #!/bin/bash
2
2
 
3
- cd $(dirname -- "$0") && ./configure
3
+ entrypoint=$(dirname -- "$0")/configure
4
+
5
+ if [ -e "$entrypoint" ]; then
6
+ "$entrypoint"
7
+ fi
@@ -1,3 +1,7 @@
1
1
  #!/bin/bash
2
2
 
3
- cd $(dirname -- "$0") && ./init
3
+ entrypoint=$(dirname -- "$0")/init
4
+
5
+ if [ -e "$entrypoint" ]; then
6
+ "$entrypoint"
7
+ 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
@@ -1,4 +1,3 @@
1
1
  #! /bin/bash
2
2
 
3
- # ARGV[1] = Path to 'dist' folder
4
- # Contents within this folder will be shared
3
+ # Add custom initialization here
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stoobly-agent
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: Record, mock, and test HTTP(s) requests. CLI agent for Stoobly
5
5
  License: Apache-2.0
6
6
  Author: Matt Le
@@ -1,4 +1,4 @@
1
- stoobly_agent/__init__.py,sha256=AewfG39HNAz5wMih3ASPkjYwMTZ40BC3bWka806550w,44
1
+ stoobly_agent/__init__.py,sha256=1iq11Ukg_29inNpGraPlJZyy108NR369Tfe2MmRTotM,44
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
@@ -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=51uGZt9CydBzRwR9aB6uDXuJ2QNm6Iql3AMWv6AtCtw,6919
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=iIbyjaKQSBYScwRgW9nzM9jrLYEmQg9jznuGEhNqds4,352
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=NfNBPmhiRVk2zUhh8F1h-x5HJHTJ_VmrTok7bRJ_iDI,210
125
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.init,sha256=SDK1tHIaKqf-YDs728cYLQbE4Zrb-a3_yHTxyDTGTNA,76
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=d3DW08Hz3R2cp8KrZ1jg7w9VigEms8xcjbFKjC8UM5k,92
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=3IIBNOuq53qzmAHr_SWnHatxT2RwFmRC1UDs_LM5HFE,212
131
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.init,sha256=SDK1tHIaKqf-YDs728cYLQbE4Zrb-a3_yHTxyDTGTNA,76
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=d3DW08Hz3R2cp8KrZ1jg7w9VigEms8xcjbFKjC8UM5k,92
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=NfNBPmhiRVk2zUhh8F1h-x5HJHTJ_VmrTok7bRJ_iDI,210
137
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.init,sha256=GkbsVNcLWnzJi8zPiItfW64wDCqTkA0IMOgHeyqgAd8,44
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=d3DW08Hz3R2cp8KrZ1jg7w9VigEms8xcjbFKjC8UM5k,92
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=oEtPEBuU_NQ5ppgIJQF-aPXX9NkvVa3_a-HypkpZ8bw,49
161
- stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.init,sha256=GkbsVNcLWnzJi8zPiItfW64wDCqTkA0IMOgHeyqgAd8,44
162
- stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/configure,sha256=GFqaInnT2jx0MquG3s6nyMj2_6GbC9dsBzeN-4yrJV0,413
163
- stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/init,sha256=d3DW08Hz3R2cp8KrZ1jg7w9VigEms8xcjbFKjC8UM5k,92
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=oEtPEBuU_NQ5ppgIJQF-aPXX9NkvVa3_a-HypkpZ8bw,49
168
- stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.init,sha256=GkbsVNcLWnzJi8zPiItfW64wDCqTkA0IMOgHeyqgAd8,44
169
- stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/configure,sha256=aow6zwdosmj3aXo_9gaJLGn1UaE54ia3oHXHA27BXNc,703
170
- stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/init,sha256=d3DW08Hz3R2cp8KrZ1jg7w9VigEms8xcjbFKjC8UM5k,92
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=oEtPEBuU_NQ5ppgIJQF-aPXX9NkvVa3_a-HypkpZ8bw,49
173
- stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.init,sha256=GkbsVNcLWnzJi8zPiItfW64wDCqTkA0IMOgHeyqgAd8,44
174
- stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/configure,sha256=GFqaInnT2jx0MquG3s6nyMj2_6GbC9dsBzeN-4yrJV0,413
175
- stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/init,sha256=d3DW08Hz3R2cp8KrZ1jg7w9VigEms8xcjbFKjC8UM5k,92
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
@@ -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.2.dist-info/LICENSE,sha256=8QKGyy45eN76Zk52h8gu1DKX2B_gbWgZ3nzDLofEbaE,548
711
- stoobly_agent-1.0.2.dist-info/METADATA,sha256=4aAEZsGJjZfyGGtfTyuiWVxgKjiB-SdON5oA5Y2RmjU,3388
712
- stoobly_agent-1.0.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
713
- stoobly_agent-1.0.2.dist-info/entry_points.txt,sha256=aq5wix5oC8MDQtmyPGU0xaFrsjJg7WH28NmXh2sc3Z8,56
714
- stoobly_agent-1.0.2.dist-info/RECORD,,
710
+ stoobly_agent-1.0.3.dist-info/LICENSE,sha256=8QKGyy45eN76Zk52h8gu1DKX2B_gbWgZ3nzDLofEbaE,548
711
+ stoobly_agent-1.0.3.dist-info/METADATA,sha256=0IOpmMNWBtj6URpoxACy1qBi7Eor96-8OwCvJ4aHHQY,3388
712
+ stoobly_agent-1.0.3.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
713
+ stoobly_agent-1.0.3.dist-info/entry_points.txt,sha256=aq5wix5oC8MDQtmyPGU0xaFrsjJg7WH28NmXh2sc3Z8,56
714
+ stoobly_agent-1.0.3.dist-info/RECORD,,