polyapi-python 0.3.9.dev15__py3-none-any.whl → 0.3.10__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.
polyapi/cli.py CHANGED
@@ -113,11 +113,13 @@ def execute_from_cli():
113
113
  fn_add_parser.add_argument("--execution-api-key", required=False, default="", help="API key for execution (for server functions only).")
114
114
  fn_add_parser.add_argument("--disable-ai", "--skip-generate", action="store_true", help="Pass --disable-ai skip AI generation of missing descriptions")
115
115
  fn_add_parser.add_argument("--generate-contexts", type=str, help="Server function only – only include certain contexts to speed up function execution")
116
+ fn_add_parser.add_argument("--visibility", type=str, default="environment", help="Specifies the visibility of a function. Options: PUBLIC, TENANT, ENVIRONMENT. Case insensitive")
116
117
 
117
118
  def add_function(args):
118
119
  initialize_config()
119
120
  logs_enabled = args.logs == "enabled" if args.logs else None
120
121
  err = ""
122
+ visibility = args.visibility.upper()
121
123
  if args.server and args.client:
122
124
  err = "Specify either `--server` or `--client`. Found both."
123
125
  elif not args.server and not args.client:
@@ -126,6 +128,8 @@ def execute_from_cli():
126
128
  err = "Option `logs` is only for server functions (--server)."
127
129
  elif args.generate_contexts and not args.server:
128
130
  err = "Option `generate-contexts` is only for server functions (--server)."
131
+ elif visibility not in ["PUBLIC", "TENANT", "ENVIRONMENT"]:
132
+ err = "Invalid visiblity argument, visibility must be one of ['PUBLIC', 'TENANT', 'ENVIRONMENT']"
129
133
 
130
134
  if err:
131
135
  print_red("ERROR")
@@ -142,7 +146,8 @@ def execute_from_cli():
142
146
  logs_enabled=logs_enabled,
143
147
  generate=not args.disable_ai,
144
148
  execution_api_key=args.execution_api_key,
145
- generate_contexts=args.generate_contexts
149
+ generate_contexts=args.generate_contexts,
150
+ visibility=visibility
146
151
  )
147
152
 
148
153
  fn_add_parser.set_defaults(command=add_function)
polyapi/function_cli.py CHANGED
@@ -25,6 +25,7 @@ def function_add_or_update(
25
25
  server: bool,
26
26
  logs_enabled: Optional[bool],
27
27
  generate_contexts: Optional[str],
28
+ visibility: Optional[str],
28
29
  generate: bool = True,
29
30
  execution_api_key: str = ""
30
31
  ):
@@ -55,6 +56,7 @@ def function_add_or_update(
55
56
  "description": description or parsed["types"]["description"],
56
57
  "code": code,
57
58
  "language": "python",
59
+ "visibility": visibility or "ENVIRONMENT",
58
60
  "returnType": get_jsonschema_type(return_type),
59
61
  "arguments": [{**p, "key": p["name"], "type": get_jsonschema_type(p["type"])} for p in parsed["types"]["params"]],
60
62
  "logsEnabled": logs_enabled,
polyapi/generate.py CHANGED
@@ -503,7 +503,7 @@ def add_function_file(
503
503
  # Read current __init__.py content if it exists
504
504
  init_content = ""
505
505
  if os.path.exists(init_path):
506
- with open(init_path, "r") as f:
506
+ with open(init_path, "r", encoding='utf-8') as f:
507
507
  init_content = f.read()
508
508
 
509
509
  # Prepare new content to append to __init__.py
@@ -511,12 +511,12 @@ def add_function_file(
511
511
 
512
512
  # Use temporary files for atomic writes
513
513
  # Write to __init__.py atomically
514
- with tempfile.NamedTemporaryFile(mode="w", delete=False, dir=full_path, suffix=".tmp") as temp_init:
514
+ with tempfile.NamedTemporaryFile(mode="w", delete=False, dir=full_path, suffix=".tmp", encoding='utf-8') as temp_init:
515
515
  temp_init.write(new_init_content)
516
516
  temp_init_path = temp_init.name
517
517
 
518
518
  # Write to function file atomically
519
- with tempfile.NamedTemporaryFile(mode="w", delete=False, dir=full_path, suffix=".tmp") as temp_func:
519
+ with tempfile.NamedTemporaryFile(mode="w", delete=False, dir=full_path, suffix=".tmp", encoding='utf-8') as temp_func:
520
520
  temp_func.write(func_type_defs)
521
521
  temp_func_path = temp_func.name
522
522
 
polyapi/parser.py CHANGED
@@ -464,6 +464,12 @@ def parse_function_code(code: str, name: Optional[str] = "", context: Optional[s
464
464
  if node.name == self._name:
465
465
  # Parse docstring which may contain param types and descriptions
466
466
  self._extract_docstring_from_function(node)
467
+
468
+ if node.args.kwonlyargs:
469
+ print_red("ERROR")
470
+ print("Function signature has keyword-only arguments (after `*`). Please use only positional arguments.")
471
+ sys.exit(1)
472
+
467
473
  function_args = [arg for arg in node.args.args]
468
474
  docstring_params = deployable["types"]["params"]
469
475
  parsed_params = []
polyapi/poly_tables.py CHANGED
@@ -6,6 +6,21 @@ from polyapi.utils import add_import_to_init, init_the_init
6
6
  from polyapi.typedefs import TableSpecDto
7
7
  from polyapi.constants import JSONSCHEMA_TO_PYTHON_TYPE_MAP
8
8
 
9
+ def scrub(data) -> Dict[str, Any]:
10
+ if (not data or not isinstance(data, (Dict, List))): return data
11
+ if isinstance(data, List):
12
+ return [scrub(item) for item in data]
13
+ else:
14
+ temp = {}
15
+ secrets = ["x_api_key", "x-api-key", "access_token", "access-token", "authorization", "api_key", "api-key", "apikey", "accesstoken", "token", "password", "key"]
16
+ for key, value in data.items():
17
+ if isinstance(value, (Dict, List)):
18
+ temp[key] = scrub(data[key])
19
+ elif key.lower() in secrets:
20
+ temp[key] = '********'
21
+ else:
22
+ temp[key] = data[key]
23
+ return temp
9
24
 
10
25
  def scrub_keys(e: Exception) -> Dict[str, Any]:
11
26
  """
@@ -16,7 +31,7 @@ def scrub_keys(e: Exception) -> Dict[str, Any]:
16
31
  "error": str(e),
17
32
  "type": type(e).__name__,
18
33
  "message": str(e),
19
- "args": getattr(e, 'args', None)
34
+ "args": scrub(getattr(e, 'args', None))
20
35
  }
21
36
 
22
37
 
polyapi/utils.py CHANGED
@@ -24,7 +24,7 @@ def init_the_init(full_path: str, code_imports: Optional[str] = None) -> None:
24
24
  if not os.path.exists(init_path):
25
25
  if code_imports is None:
26
26
  code_imports = CODE_IMPORTS
27
- with open(init_path, "w") as f:
27
+ with open(init_path, "w", encoding='utf-8') as f:
28
28
  f.write(code_imports)
29
29
 
30
30
 
@@ -33,7 +33,7 @@ def add_import_to_init(full_path: str, next: str, code_imports: Optional[str] =
33
33
  init_the_init(full_path, code_imports=code_imports)
34
34
 
35
35
  init_path = os.path.join(full_path, "__init__.py")
36
- with open(init_path, "a+") as f:
36
+ with open(init_path, "a+", encoding='utf-8') as f:
37
37
  import_stmt = "from . import {}\n".format(next)
38
38
  f.seek(0)
39
39
  lines = f.readlines()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: polyapi-python
3
- Version: 0.3.9.dev15
3
+ Version: 0.3.10
4
4
  Summary: The Python Client for PolyAPI, the IPaaS by Developers for Developers
5
5
  Author-email: Dan Fellin <dan@polyapi.io>
6
6
  License: MIT License
@@ -2,7 +2,7 @@ polyapi/__init__.py,sha256=hw7x4j9JNJfPdkIOZqV0X9pbYcw3_5AH1iQFdSogH-c,3235
2
2
  polyapi/__main__.py,sha256=V4zhAh_YGxno5f_KSrlkELxcuDh9bR3WSd0n-2r-qQQ,93
3
3
  polyapi/api.py,sha256=2nds6ZdNe9OHvCba4IjOPga0CAYIsib2SbhEyDDCmd8,2188
4
4
  polyapi/auth.py,sha256=EGstBjTSdAydI5hGAHeRRc1GcmHshogudb3sxCgO6zA,5341
5
- polyapi/cli.py,sha256=unKqAoZ1hTGAeyYRfNQ6jO15Um7N4F95k__1qFue5bI,10659
5
+ polyapi/cli.py,sha256=lsF9xgSGeten0sBRPPBV0c7z8QIy4stSybGTQKggPjQ,11100
6
6
  polyapi/client.py,sha256=DW6ljG_xCwAo2yz23A9QfLooE6ZUDvSpdA4e_dCQjiQ,1418
7
7
  polyapi/config.py,sha256=cAMv2n9tGN_BTvqt7V32o5F86qRhxAKyey_PoId2D8s,7638
8
8
  polyapi/constants.py,sha256=sc-FnS0SngBLvSu1ZWMs0UCf9EYD1u1Yhfr-sZXGLns,607
@@ -10,11 +10,11 @@ polyapi/deployables.py,sha256=6R7XSgpTohZBcqoGd7GioQdXXKuvbBsdq_cAJ1p8jfQ,12184
10
10
  polyapi/error_handler.py,sha256=I_e0iz6VM23FLVQWJljxs2NGcl_OODbi43OcbnqBlp8,2398
11
11
  polyapi/exceptions.py,sha256=Zh7i7eCUhDuXEdUYjatkLFTeZkrx1BJ1P5ePgbJ9eIY,89
12
12
  polyapi/execute.py,sha256=q4xtV6rYO8f-8hULlFTlVgoTVQSahvlMu3FHkFzYpMs,4423
13
- polyapi/function_cli.py,sha256=H0sVrbvRBXw_xeApe2MvQw8p_xE7jVTTOU-07Dg041A,4220
14
- polyapi/generate.py,sha256=thOrjq4suOkR97x00rthor96aslzzOaAAo4yxLtiuh0,21081
15
- polyapi/parser.py,sha256=20ZE7kSXx3UL7QVSIYYxzsnJlygVbsaDAg9q7c41WxQ,20695
13
+ polyapi/function_cli.py,sha256=W30yL2i152iZCr6zAU1CHKlDp_tt7kB2cGIXIxmWumk,4302
14
+ polyapi/generate.py,sha256=W-6kSoP-nDRc85cSAkiFTwS99dF_H4Ded0mPHGNVy5w,21135
15
+ polyapi/parser.py,sha256=IVSJGT6wcxpXUHmhx4DVhOGL1XY_MBaf5aw3Pd2DVcI,20935
16
16
  polyapi/poly_schemas.py,sha256=fZ6AGvHcOKQJtlrzSuzeBNed5DxPMA2dJGdJvuFCHWM,9066
17
- polyapi/poly_tables.py,sha256=adftBHGncvxpPchpjfFwDjQncVn9lZTrRHNroei4Nw0,15897
17
+ polyapi/poly_tables.py,sha256=0wFZODu7ULWC4qwAiX6ffA0e5OrOcm6uodSwmMkTa_Q,16571
18
18
  polyapi/prepare.py,sha256=NQzpMIoakNovStvOGOmqSYIpTwiWXaweNSE9se10A2E,7420
19
19
  polyapi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
20
  polyapi/rendered_spec.py,sha256=nJEj2vRgG3N20fU4s-ThRtOIwAuTzXwXuOBIkXljDVc,2240
@@ -22,11 +22,11 @@ polyapi/schema.py,sha256=-mtRV5iL3CV0X3phXhGYFV8sLz0KouTACOKWyGO9Pwc,5309
22
22
  polyapi/server.py,sha256=YXWxhYBx-hluwDQ8Jvfpy2s8ogz0GsNTMcZVNcP5ca8,2147
23
23
  polyapi/sync.py,sha256=52ODc82jBJpbNYTB9zXlrVZLR39iwDPW3cuIC3P8dbM,6742
24
24
  polyapi/typedefs.py,sha256=VEaYODLm-3a26_cK1uSRoYwenmprLOQQdoKFz4gqK_0,5587
25
- polyapi/utils.py,sha256=RpkXWi6jiwjozrX9iovPBK708w0W117ueN41uhQgnZU,12567
25
+ polyapi/utils.py,sha256=Ca189i4PM4TpwvpzwF3T8MfQsOPD45b_falXjjgYCyI,12603
26
26
  polyapi/variables.py,sha256=SJv106ePpQP5mx7Iiafl_shtFlE8FoaO9Q8lvw-3IRg,7270
27
27
  polyapi/webhook.py,sha256=I3_uOl4f4L2-2WehzRLMVMRrB-76EiXCPA9Vzoaj30I,5326
28
- polyapi_python-0.3.9.dev15.dist-info/licenses/LICENSE,sha256=6b_I7aPVp8JXhqQwdw7_B84Ca0S4JGjHj0sr_1VOdB4,1068
29
- polyapi_python-0.3.9.dev15.dist-info/METADATA,sha256=S6ra-8aBsNYAPAJZCDaKOg5AR9ledzZi54ouWFWlhjQ,5318
30
- polyapi_python-0.3.9.dev15.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
31
- polyapi_python-0.3.9.dev15.dist-info/top_level.txt,sha256=CEFllOnzowci_50RYJac-M54KD2IdAptFsayVVF_f04,8
32
- polyapi_python-0.3.9.dev15.dist-info/RECORD,,
28
+ polyapi_python-0.3.10.dist-info/licenses/LICENSE,sha256=6b_I7aPVp8JXhqQwdw7_B84Ca0S4JGjHj0sr_1VOdB4,1068
29
+ polyapi_python-0.3.10.dist-info/METADATA,sha256=00EUPSS4H_l87FP7RvSLjn0Mhb-Ig0D1oDtkU3DM86Y,5313
30
+ polyapi_python-0.3.10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
31
+ polyapi_python-0.3.10.dist-info/top_level.txt,sha256=CEFllOnzowci_50RYJac-M54KD2IdAptFsayVVF_f04,8
32
+ polyapi_python-0.3.10.dist-info/RECORD,,