canvas 0.23.0__py3-none-any.whl → 0.24.0__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.

Potentially problematic release.


This version of canvas might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: canvas
3
- Version: 0.23.0
3
+ Version: 0.24.0
4
4
  Summary: SDK to customize event-driven actions in your Canvas instance
5
5
  Author-email: Canvas Team <engineering@canvasmedical.com>
6
6
  License-Expression: MIT
@@ -95,7 +95,7 @@ canvas_cli/utils/urls/__init__.py,sha256=08hlrQhQ1pKBjlIRaC0j53IkgK723jfK8-j3djv
95
95
  canvas_cli/utils/urls/tests.py,sha256=opXDF2i3lXTdsKJ7ywIRzWDDzZ5KAO0JbGIR3hbJdoE,407
96
96
  canvas_cli/utils/urls/urls.py,sha256=KwWTh5ERrEsZEvdBrZpZB71xtyWkDuglpXUbycWmBOo,798
97
97
  canvas_cli/utils/validators/__init__.py,sha256=rBvSR2O1hWkNAnUBdcr-zUkmqT796_A61b9pnvEhwrM,113
98
- canvas_cli/utils/validators/manifest_schema.py,sha256=Bp3FFdIY7KFz1AXnQAbJa6_E1pm9PCc0CXGkwK4JdZo,4573
98
+ canvas_cli/utils/validators/manifest_schema.py,sha256=tFA2mrj82hyUQFX1Enoookg3t0bIIBXdbeos1A8pyjk,5296
99
99
  canvas_cli/utils/validators/tests.py,sha256=KhaOdbxGUK2QwL2KnycAJJkqclYQSXF7CKg-scSf0DU,1259
100
100
  canvas_cli/utils/validators/validators.py,sha256=lrUBQ0sF7seTe_pNGsNgASdr2BGp6g-Qui58V4H9qfQ,1598
101
101
  canvas_generated/messages/effects_pb2.py,sha256=8zUJy35Hu72tSqfrr7zDua_h81aRKWC9NM7mlGttfzI,11404
@@ -343,7 +343,7 @@ protobufs/canvas_generated/messages/plugins.proto,sha256=oNainUPWFYQjgCX7bJEPI9_
343
343
  protobufs/canvas_generated/services/plugin_runner.proto,sha256=doadBKn5k4xAtOgR-q_pEvW4yzxpUaHNOowMG6CL5GY,304
344
344
  pubsub/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
345
345
  pubsub/pubsub.py,sha256=pyTW0JU8mtaqiAV6g6xjZwel1CVy2EonPMU-_vkmhUM,1044
346
- canvas-0.23.0.dist-info/METADATA,sha256=o-vE77nzTpYrzGhbS96d8qJ5QMUnmoNhqF_r7LXKAiA,4375
347
- canvas-0.23.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
348
- canvas-0.23.0.dist-info/entry_points.txt,sha256=0Vs_9GmTVUNniH6eDBlRPgofmADMV4BES6Ao26M4AbM,47
349
- canvas-0.23.0.dist-info/RECORD,,
346
+ canvas-0.24.0.dist-info/METADATA,sha256=KwBHZ1FTuqEIYsgTAvAqOWeqqfbxA03AeGi5VzjpyNU,4375
347
+ canvas-0.24.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
348
+ canvas-0.24.0.dist-info/entry_points.txt,sha256=0Vs_9GmTVUNniH6eDBlRPgofmADMV4BES6Ao26M4AbM,47
349
+ canvas-0.24.0.dist-info/RECORD,,
@@ -7,6 +7,7 @@ manifest_schema = {
7
7
  "description": {"type": "string"},
8
8
  "secrets": {"type": "array", "items": {"type": "string"}},
9
9
  "origins": {"$ref": "#/$defs/origins"},
10
+ "url_permissions": {"$ref": "#/$defs/url_permissions"},
10
11
  "components": {
11
12
  "type": "object",
12
13
  "properties": {
@@ -64,6 +65,26 @@ manifest_schema = {
64
65
  "scripts": {"type": "array", "items": {"type": "string"}},
65
66
  },
66
67
  },
68
+ "url_permissions": {
69
+ "type": "array",
70
+ "items": {
71
+ "type": "object",
72
+ "properties": {
73
+ "url": {"type": "string"},
74
+ "permissions": {
75
+ "type": "array",
76
+ "items": {
77
+ "type": "string",
78
+ "enum": [
79
+ "SCRIPTS",
80
+ "ALLOW_SAME_ORIGIN",
81
+ "MICROPHONE",
82
+ ],
83
+ },
84
+ },
85
+ },
86
+ },
87
+ },
67
88
  "component": {
68
89
  "type": "array",
69
90
  "items": {