@digipair/skill-web-inputs 0.32.6 → 0.33.0

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/schema.en.json +0 -228
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-web-inputs",
3
- "version": "0.32.6",
3
+ "version": "0.33.0",
4
4
  "dependencies": {},
5
5
  "main": "./index.cjs.js",
6
6
  "module": "./index.esm.js"
package/schema.en.json DELETED
@@ -1,228 +0,0 @@
1
- {
2
- "openapi": "3.0.0",
3
- "info": {
4
- "title": "@digipair/skill-web-inputs",
5
- "summary": "Data entry in boosts",
6
- "description": "This skill allows data entry in boosts.",
7
- "version": "0.1.0",
8
- "x-icon": "📥"
9
- },
10
- "paths": {
11
- "/digipair-input-dom-attribute": {
12
- "post": {
13
- "tags": ["boost"],
14
- "summary": "Read a DOM element attribute",
15
- "description": "Read an attribute of a DOM element",
16
- "parameters": [
17
- {
18
- "name": "selector",
19
- "summary": "CSS Selector",
20
- "required": true,
21
- "description": "CSS selector of the DOM element",
22
- "schema": {
23
- "type": "string"
24
- }
25
- },
26
- {
27
- "name": "attribute",
28
- "summary": "Attribute",
29
- "required": true,
30
- "description": "Name of the attribute to read",
31
- "schema": {
32
- "type": "string"
33
- }
34
- },
35
- {
36
- "name": "required",
37
- "summary": "Required?",
38
- "required": false,
39
- "description": "Fields required to execute the boost",
40
- "schema": {
41
- "type": "boolean"
42
- }
43
- }
44
- ],
45
- "x-events": []
46
- }
47
- },
48
- "/digipair-input-fetch": {
49
- "post": {
50
- "tags": ["boost"],
51
- "summary": "Fetch data from a URL",
52
- "description": "Fetch data from a URL",
53
- "parameters": [
54
- {
55
- "name": "url",
56
- "summary": "Web service URL",
57
- "required": true,
58
- "description": "Address of the web service to call",
59
- "schema": {
60
- "type": "string"
61
- }
62
- },
63
- {
64
- "name": "type",
65
- "summary": "Data type",
66
- "required": true,
67
- "description": "Type of data to fetch (json or text)",
68
- "schema": {
69
- "type": "string"
70
- }
71
- },
72
- {
73
- "name": "required",
74
- "summary": "Required?",
75
- "required": false,
76
- "description": "Fields required to execute the boost",
77
- "schema": {
78
- "type": "boolean"
79
- }
80
- }
81
- ],
82
- "x-events": []
83
- }
84
- },
85
- "/digipair-input-file": {
86
- "post": {
87
- "tags": ["boost"],
88
- "summary": "Read a binary file",
89
- "description": "Read a binary file in base 64 format",
90
- "parameters": [
91
- {
92
- "name": "label",
93
- "summary": "Displayed text",
94
- "required": false,
95
- "description": "Text displayed to the user to guide them in their input",
96
- "schema": {
97
- "type": "string"
98
- }
99
- },
100
- {
101
- "name": "accept",
102
- "summary": "File type",
103
- "required": false,
104
- "description": "Accepted file types",
105
- "schema": {
106
- "type": "string"
107
- }
108
- },
109
- {
110
- "name": "required",
111
- "summary": "Required?",
112
- "required": false,
113
- "description": "Fields required to execute the boost",
114
- "schema": {
115
- "type": "boolean"
116
- }
117
- }
118
- ],
119
- "x-events": []
120
- }
121
- },
122
- "/digipair-input-hidden": {
123
- "post": {
124
- "tags": ["boost"],
125
- "summary": "Return hidden data",
126
- "description": "Return hidden data to the boost",
127
- "parameters": [
128
- {
129
- "name": "value",
130
- "summary": "Data",
131
- "required": true,
132
- "description": "Data to send to the boost",
133
- "schema": {
134
- "type": "object"
135
- }
136
- },
137
- {
138
- "name": "required",
139
- "summary": "Required?",
140
- "required": false,
141
- "description": "Fields required to execute the boost",
142
- "schema": {
143
- "type": "boolean"
144
- }
145
- }
146
- ],
147
- "x-events": []
148
- }
149
- },
150
- "/digipair-input-json": {
151
- "post": {
152
- "tags": ["boost"],
153
- "summary": "Read a JSON file",
154
- "description": "Read a JSON file",
155
- "parameters": [
156
- {
157
- "name": "label",
158
- "summary": "Displayed text",
159
- "required": false,
160
- "description": "Text displayed to the user to guide them in their input",
161
- "schema": {
162
- "type": "string"
163
- }
164
- },
165
- {
166
- "name": "accept",
167
- "summary": "File type",
168
- "required": false,
169
- "description": "Accepted file types",
170
- "schema": {
171
- "type": "string"
172
- }
173
- },
174
- {
175
- "name": "required",
176
- "summary": "Required?",
177
- "required": false,
178
- "description": "Fields required to execute the boost",
179
- "schema": {
180
- "type": "boolean"
181
- }
182
- }
183
- ],
184
- "x-events": []
185
- }
186
- },
187
- "/digipair-input-text": {
188
- "post": {
189
- "tags": ["boost"],
190
- "summary": "Read a text file",
191
- "description": "Read a text file",
192
- "parameters": [
193
- {
194
- "name": "label",
195
- "summary": "Displayed text",
196
- "required": false,
197
- "description": "Text displayed to the user to guide them in their input",
198
- "schema": {
199
- "type": "string"
200
- }
201
- },
202
- {
203
- "name": "accept",
204
- "summary": "File type",
205
- "required": false,
206
- "description": "Accepted file types",
207
- "schema": {
208
- "type": "string"
209
- }
210
- },
211
- {
212
- "name": "required",
213
- "summary": "Required?",
214
- "required": false,
215
- "description": "Fields required to execute the boost",
216
- "schema": {
217
- "type": "boolean"
218
- }
219
- }
220
- ],
221
- "x-events": []
222
- }
223
- }
224
- },
225
- "components": {
226
- "schemas": {}
227
- }
228
- }