stoobly-agent 1.0.1__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 (32) 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/docker/workflow/mock_decorator.py +1 -1
  4. stoobly_agent/app/cli/scaffold/docker/workflow/reverse_proxy_decorator.py +16 -2
  5. stoobly_agent/app/cli/scaffold/service_config.py +12 -6
  6. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/.docker-compose.base.yml +0 -1
  7. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.configure +5 -2
  8. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.init +4 -2
  9. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/init +1 -4
  10. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.configure +5 -2
  11. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.init +4 -2
  12. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/init +1 -4
  13. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.configure +5 -2
  14. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.init +5 -1
  15. stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/init +1 -4
  16. stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.configure +5 -1
  17. stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.init +5 -1
  18. stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/configure +3 -1
  19. stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/init +1 -2
  20. stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.configure +5 -1
  21. stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.init +5 -1
  22. stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/configure +2 -0
  23. stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/init +1 -2
  24. stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.configure +5 -1
  25. stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.init +5 -1
  26. stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/configure +2 -0
  27. stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/init +1 -2
  28. {stoobly_agent-1.0.1.dist-info → stoobly_agent-1.0.3.dist-info}/METADATA +1 -1
  29. {stoobly_agent-1.0.1.dist-info → stoobly_agent-1.0.3.dist-info}/RECORD +32 -32
  30. {stoobly_agent-1.0.1.dist-info → stoobly_agent-1.0.3.dist-info}/LICENSE +0 -0
  31. {stoobly_agent-1.0.1.dist-info → stoobly_agent-1.0.3.dist-info}/WHEEL +0 -0
  32. {stoobly_agent-1.0.1.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.1'
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,
@@ -1,6 +1,6 @@
1
1
  import pdb
2
2
 
3
- from ...constants import SERVICE_HOSTNAME, SERVICE_PORT, SERVICE_SCHEME
3
+ from ...constants import SERVICE_HOSTNAME, SERVICE_PORT
4
4
  from .builder import WorkflowBuilder
5
5
 
6
6
  class MockDecorator():
@@ -1,5 +1,7 @@
1
1
  import pdb
2
2
 
3
+ from urllib.parse import urlparse
4
+
3
5
  from ...constants import SERVICE_DNS, SERVICE_HOSTNAME, SERVICE_PORT
4
6
  from .builder import WorkflowBuilder
5
7
 
@@ -32,12 +34,24 @@ class ReverseProxyDecorator():
32
34
  proxy_name = self.workflow_builder.proxy
33
35
  proxy_service = services.get(proxy_name) or {}
34
36
 
35
- # proxying forwards requests to the actual service
37
+ additional_properties = { 'command': command }
38
+
39
+ # Proxying forwards requests to the actual service
40
+ # If the destination hostname is the same as the service's hostname, then
36
41
  # If we set the 'hostname' property, this will cause an "infinite loop"
42
+ proxy_mode_toks = config.proxy_mode.split(':', 1)
43
+
44
+ if len(proxy_mode_toks) > 1:
45
+ directed = proxy_mode_toks[0] == 'reverse' or proxy_mode_toks[0] == 'upstream'
46
+ if directed:
47
+ spec = proxy_mode_toks[1]
48
+ uri = urlparse(spec)
49
+ if uri.hostname != self.service_builder.config.hostname:
50
+ additional_properties['hostname'] = f"{SERVICE_HOSTNAME}"
37
51
 
38
52
  service = {
39
53
  **proxy_service,
40
- **{ 'command': command },
54
+ **additional_properties,
41
55
  }
42
56
 
43
57
  # If we are reverse proxying to potentially an external host,
@@ -52,8 +52,8 @@ class ServiceConfig(Config):
52
52
  self.__scheme = kwargs.get('scheme')
53
53
 
54
54
  @property
55
- def detached(self):
56
- return self.__detached
55
+ def detached(self) -> bool:
56
+ return not not self.__detached
57
57
 
58
58
  @detached.setter
59
59
  def detached(self, v):
@@ -69,7 +69,7 @@ class ServiceConfig(Config):
69
69
 
70
70
  @property
71
71
  def hostname(self):
72
- return self.__hostname
72
+ return (self.__hostname or '').strip()
73
73
 
74
74
  @hostname.setter
75
75
  def hostname(self, v):
@@ -99,6 +99,12 @@ class ServiceConfig(Config):
99
99
 
100
100
  @property
101
101
  def port(self):
102
+ if not self.__port:
103
+ if self.scheme == 'https':
104
+ return '443'
105
+ elif self.scheme == 'http':
106
+ return '80'
107
+
102
108
  return self.__port
103
109
 
104
110
  @port.setter
@@ -120,9 +126,9 @@ class ServiceConfig(Config):
120
126
  self.__priority = v
121
127
 
122
128
  @property
123
- def proxy_mode(self):
129
+ def proxy_mode(self) -> str:
124
130
  if self.__proxy_mode:
125
- return self.__proxy_mode
131
+ return (self.__proxy_mode or '').strip()
126
132
 
127
133
  return f"reverse:{self.scheme}://{self.hostname}"
128
134
 
@@ -132,7 +138,7 @@ class ServiceConfig(Config):
132
138
 
133
139
  @property
134
140
  def scheme(self):
135
- return self.__scheme or 'https'
141
+ return (self.__scheme or 'https').strip()
136
142
 
137
143
  @scheme.setter
138
144
  def scheme(self, v):
@@ -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.1
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=GiMBMhNgtGzq0M2ZW5duC9r7X4veFY7mWxL_sjEt0N4,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,14 +85,14 @@ 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
- stoobly_agent/app/cli/scaffold/docker/workflow/mock_decorator.py,sha256=-gq0v6iIURWEWCv1eZjLev9ePMAJM21Tlw0NKRpKw9w,1083
91
- stoobly_agent/app/cli/scaffold/docker/workflow/reverse_proxy_decorator.py,sha256=xuM2AABMbSJGywaOUFY9kUG36OL2mJLFAkIDRCsE2fg,1479
90
+ stoobly_agent/app/cli/scaffold/docker/workflow/mock_decorator.py,sha256=pOvyrauHRB1cOB0OKBA3MQnM-Iwfbuwwop2TDSWs_jo,1067
91
+ stoobly_agent/app/cli/scaffold/docker/workflow/reverse_proxy_decorator.py,sha256=RiNOXaCj_TM-NkFVtu-jnZEIeG8HBKPrVqBbnfRNzio,2031
92
92
  stoobly_agent/app/cli/scaffold/env.py,sha256=e-Ve4p3RUgzFx22B3SIYttvJ_yLuDtA27oDACZ8n-6E,1140
93
93
  stoobly_agent/app/cli/scaffold/service.py,sha256=HzYTiQGfReYXEY0Iv4YjGpu5fjCicV61Wst4khmmURs,504
94
94
  stoobly_agent/app/cli/scaffold/service_command.py,sha256=VtXrgiNO6kD4Oi_alHrJWQhkho3oI-yqs1fe8BPDW6M,1055
95
- stoobly_agent/app/cli/scaffold/service_config.py,sha256=L9DtG_IwRs8BbN-YImMY_kzz6VkrKVuBj1L_ICP3LPA,5416
95
+ stoobly_agent/app/cli/scaffold/service_config.py,sha256=nXopRnHHw6o4Qh1ekYIJCT8hLIMY0QBN4PAXTCL4qFI,5615
96
96
  stoobly_agent/app/cli/scaffold/service_create_command.py,sha256=bmLGgx9qnh-X_i2_XfdWSQIer0gGkaQx6lXZSIzy-LI,2793
97
97
  stoobly_agent/app/cli/scaffold/service_workflow.py,sha256=sQ_Edy_wGHKMXpD0DmhnOWkGEKz7gSgEGNI8f7aXOdg,444
98
98
  stoobly_agent/app/cli/scaffold/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -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.1.dist-info/LICENSE,sha256=8QKGyy45eN76Zk52h8gu1DKX2B_gbWgZ3nzDLofEbaE,548
711
- stoobly_agent-1.0.1.dist-info/METADATA,sha256=TpOSzfCkjRY3NptjYgFq1obZd9MJ7peSX51TfuBy7ZA,3388
712
- stoobly_agent-1.0.1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
713
- stoobly_agent-1.0.1.dist-info/entry_points.txt,sha256=aq5wix5oC8MDQtmyPGU0xaFrsjJg7WH28NmXh2sc3Z8,56
714
- stoobly_agent-1.0.1.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,,