@aloma.io/integration-sdk 3.8.40 → 3.8.42

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.
@@ -19,6 +19,10 @@ export type ConfigField = {
19
19
  * a placeholder for the field
20
20
  */
21
21
  placeholder?: string;
22
+ /**
23
+ * minimum height of the field
24
+ */
25
+ height?: number;
22
26
  /**
23
27
  * the type of the field
24
28
  */
@@ -136,6 +140,10 @@ declare type OAuth = {
136
140
  * the oauth authorization url then must contain `code_challenge_method=S256&code_challenge={{codeChallenge}}` in order to work
137
141
  */
138
142
  useCodeChallenge?: boolean;
143
+ /**
144
+ * if true, the client can be configured by the user
145
+ */
146
+ configurableClient?: boolean;
139
147
  /**
140
148
  * additional token arguments
141
149
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloma.io/integration-sdk",
3
- "version": "3.8.40",
3
+ "version": "3.8.42",
4
4
  "description": "",
5
5
  "author": "aloma.io",
6
6
  "license": "Apache-2.0",
@@ -30,6 +30,10 @@ export type ConfigField =
30
30
  * a placeholder for the field
31
31
  */
32
32
  placeholder?: string;
33
+ /**
34
+ * minimum height of the field
35
+ */
36
+ height?: number
33
37
  /**
34
38
  * the type of the field
35
39
  */
@@ -162,6 +166,11 @@ declare type OAuth = {
162
166
  */
163
167
  useCodeChallenge?: boolean;
164
168
 
169
+ /**
170
+ * if true, the client can be configured by the user
171
+ */
172
+ configurableClient?: boolean;
173
+
165
174
  /**
166
175
  * additional token arguments
167
176
  */