@onlineapps/conn-orch-api-mapper 1.0.23 → 1.0.24

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/ApiMapper.js +0 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onlineapps/conn-orch-api-mapper",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "description": "API mapping connector for OA Drive - maps cookbook operations to HTTP endpoints",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
package/src/ApiMapper.js CHANGED
@@ -730,13 +730,6 @@ class ApiMapper {
730
730
  request.headers['account-id'] = String(accountId);
731
731
  }
732
732
 
733
- // Tester mode: for workflows initiated from "frontend tester", we explicitly disable side-effects
734
- // in services that support it (e.g. emailer). This is controlled via cookbook._system.labels (set by Gateway).
735
- // NOTE: This is NOT validation; validation uses per-operation headers in conn-orch-validator.
736
- if (sys && Array.isArray(sys.labels) && sys.labels.includes('tester')) {
737
- request.headers['x-tester-request'] = 'true';
738
- }
739
-
740
733
  return request;
741
734
  }
742
735