@yaakapp/api 0.2.28 → 0.3.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.
- package/lib/bindings/events.d.ts +32 -0
- package/package.json +1 -1
package/lib/bindings/events.d.ts
CHANGED
|
@@ -23,6 +23,10 @@ export type CallHttpAuthenticationRequest = {
|
|
|
23
23
|
headers: Array<HttpHeader>;
|
|
24
24
|
};
|
|
25
25
|
export type CallHttpAuthenticationResponse = {
|
|
26
|
+
/**
|
|
27
|
+
* HTTP headers to add to the request. Existing headers will be replaced, while
|
|
28
|
+
* new headers will be added.
|
|
29
|
+
*/
|
|
26
30
|
setHeaders: Array<HttpHeader>;
|
|
27
31
|
};
|
|
28
32
|
export type CallHttpRequestActionArgs = {
|
|
@@ -102,6 +106,10 @@ export type FormInputBase = {
|
|
|
102
106
|
* The label of the input
|
|
103
107
|
*/
|
|
104
108
|
label?: string;
|
|
109
|
+
/**
|
|
110
|
+
* Visually hide the label of the input
|
|
111
|
+
*/
|
|
112
|
+
hideLabel?: boolean;
|
|
105
113
|
/**
|
|
106
114
|
* The default value
|
|
107
115
|
*/
|
|
@@ -117,6 +125,10 @@ export type FormInputCheckbox = {
|
|
|
117
125
|
* The label of the input
|
|
118
126
|
*/
|
|
119
127
|
label?: string;
|
|
128
|
+
/**
|
|
129
|
+
* Visually hide the label of the input
|
|
130
|
+
*/
|
|
131
|
+
hideLabel?: boolean;
|
|
120
132
|
/**
|
|
121
133
|
* The default value
|
|
122
134
|
*/
|
|
@@ -137,6 +149,10 @@ export type FormInputEditor = {
|
|
|
137
149
|
* The label of the input
|
|
138
150
|
*/
|
|
139
151
|
label?: string;
|
|
152
|
+
/**
|
|
153
|
+
* Visually hide the label of the input
|
|
154
|
+
*/
|
|
155
|
+
hideLabel?: boolean;
|
|
140
156
|
/**
|
|
141
157
|
* The default value
|
|
142
158
|
*/
|
|
@@ -163,6 +179,10 @@ export type FormInputFile = {
|
|
|
163
179
|
* The label of the input
|
|
164
180
|
*/
|
|
165
181
|
label?: string;
|
|
182
|
+
/**
|
|
183
|
+
* Visually hide the label of the input
|
|
184
|
+
*/
|
|
185
|
+
hideLabel?: boolean;
|
|
166
186
|
/**
|
|
167
187
|
* The default value
|
|
168
188
|
*/
|
|
@@ -178,6 +198,10 @@ export type FormInputHttpRequest = {
|
|
|
178
198
|
* The label of the input
|
|
179
199
|
*/
|
|
180
200
|
label?: string;
|
|
201
|
+
/**
|
|
202
|
+
* Visually hide the label of the input
|
|
203
|
+
*/
|
|
204
|
+
hideLabel?: boolean;
|
|
181
205
|
/**
|
|
182
206
|
* The default value
|
|
183
207
|
*/
|
|
@@ -197,6 +221,10 @@ export type FormInputSelect = {
|
|
|
197
221
|
* The label of the input
|
|
198
222
|
*/
|
|
199
223
|
label?: string;
|
|
224
|
+
/**
|
|
225
|
+
* Visually hide the label of the input
|
|
226
|
+
*/
|
|
227
|
+
hideLabel?: boolean;
|
|
200
228
|
/**
|
|
201
229
|
* The default value
|
|
202
230
|
*/
|
|
@@ -224,6 +252,10 @@ export type FormInputText = {
|
|
|
224
252
|
* The label of the input
|
|
225
253
|
*/
|
|
226
254
|
label?: string;
|
|
255
|
+
/**
|
|
256
|
+
* Visually hide the label of the input
|
|
257
|
+
*/
|
|
258
|
+
hideLabel?: boolean;
|
|
227
259
|
/**
|
|
228
260
|
* The default value
|
|
229
261
|
*/
|