dcp-client 4.2.30 → 4.2.31
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.
- package/dcp-client.js +72 -22
- package/dist/dcp-client-bundle.js +1 -1
- package/index.js +1 -0
- package/libexec/sandbox/access-lists.js +38 -2
- package/package.json +5 -7
package/index.js
CHANGED
|
@@ -111,12 +111,48 @@ self.wrapScriptLoading({ scriptName: 'access-lists', ringTransition: true }, fun
|
|
|
111
111
|
'WebGL2RenderingContext',
|
|
112
112
|
'WebGLTexture',
|
|
113
113
|
'WorkerGlobalScope',
|
|
114
|
-
//
|
|
114
|
+
// All webGPU symbols are allowed
|
|
115
115
|
'WebGPUWindow',
|
|
116
116
|
'GPU',
|
|
117
|
+
'GPUAdapter',
|
|
118
|
+
'GPUAdapterInfo',
|
|
119
|
+
'GPUBindGroup',
|
|
120
|
+
'GPUBindGroupLayout',
|
|
121
|
+
'GPUBuffer',
|
|
117
122
|
'GPUBufferUsage',
|
|
118
|
-
'
|
|
123
|
+
'GPUCanvasContext',
|
|
124
|
+
'GPUColorWrite',
|
|
125
|
+
'GPUCommandBuffer',
|
|
126
|
+
'GPUCommandEncoder',
|
|
127
|
+
'GPUCompilationInfo',
|
|
128
|
+
'GPUCompilationMessage',
|
|
129
|
+
'GPUComputePassEncoder',
|
|
130
|
+
'GPUComputePipeline',
|
|
131
|
+
'GPUDevice',
|
|
132
|
+
'GPUDeviceLostInfo',
|
|
133
|
+
'GPUError',
|
|
134
|
+
'GPUExternalTexture',
|
|
135
|
+
'GPUInternalError',
|
|
119
136
|
'GPUMapMode',
|
|
137
|
+
'GPUOutOfMemoryError',
|
|
138
|
+
'GPUPipelineError',
|
|
139
|
+
'GPUPipelineLayout',
|
|
140
|
+
'GPUQuerySet',
|
|
141
|
+
'GPUQueue',
|
|
142
|
+
'GPURenderBundle',
|
|
143
|
+
'GPURenderBundleEncoder',
|
|
144
|
+
'GPURenderPassEncoder',
|
|
145
|
+
'GPURenderPipeline',
|
|
146
|
+
'GPUSampler',
|
|
147
|
+
'GPUShaderModule',
|
|
148
|
+
'GPUShaderStage',
|
|
149
|
+
'GPUSupportedFeatures',
|
|
150
|
+
'GPUSupportedLimits',
|
|
151
|
+
'GPUTexture',
|
|
152
|
+
'GPUTextureUsage',
|
|
153
|
+
'GPUTextureView',
|
|
154
|
+
'GPUUncapturedErrorEvent',
|
|
155
|
+
'GPUValidationError',
|
|
120
156
|
// Our own symbols
|
|
121
157
|
'progress',
|
|
122
158
|
'work',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dcp-client",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.31",
|
|
4
4
|
"description": "Core libraries for accessing DCP network",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dcp"
|
|
@@ -15,9 +15,6 @@
|
|
|
15
15
|
},
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"author": "Distributive",
|
|
18
|
-
"engines": {
|
|
19
|
-
"node": ">=14.15.0"
|
|
20
|
-
},
|
|
21
18
|
"main": "index.js",
|
|
22
19
|
"directories": {
|
|
23
20
|
"example": "examples"
|
|
@@ -55,9 +52,10 @@
|
|
|
55
52
|
"@kingsds/eslint-config": "1.0.1",
|
|
56
53
|
"eslint": "7.30.0",
|
|
57
54
|
"express": "^4.18.2",
|
|
58
|
-
"peter": "^2.3.
|
|
55
|
+
"peter": "^2.3.11"
|
|
59
56
|
},
|
|
60
|
-
"
|
|
61
|
-
"
|
|
57
|
+
"engines": {
|
|
58
|
+
"node": ">=16",
|
|
59
|
+
"npm": ">=7"
|
|
62
60
|
}
|
|
63
61
|
}
|