@aloma.io/integration-sdk 3.8.41 → 3.8.43
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/build/builder/index.d.mts +8 -0
- package/package.json +1 -1
- package/src/builder/index.mts +10 -0
@@ -140,6 +140,14 @@ declare type OAuth = {
|
|
140
140
|
* the oauth authorization url then must contain `code_challenge_method=S256&code_challenge={{codeChallenge}}` in order to work
|
141
141
|
*/
|
142
142
|
useCodeChallenge?: boolean;
|
143
|
+
/**
|
144
|
+
* if true, the client can be configured by the user
|
145
|
+
*/
|
146
|
+
configurableClient?: boolean;
|
147
|
+
/**
|
148
|
+
* if true, the configurable client is optional
|
149
|
+
*/
|
150
|
+
configurableClientOptional?: boolean;
|
143
151
|
/**
|
144
152
|
* additional token arguments
|
145
153
|
*/
|
package/package.json
CHANGED
package/src/builder/index.mts
CHANGED
@@ -166,6 +166,16 @@ declare type OAuth = {
|
|
166
166
|
*/
|
167
167
|
useCodeChallenge?: boolean;
|
168
168
|
|
169
|
+
/**
|
170
|
+
* if true, the client can be configured by the user
|
171
|
+
*/
|
172
|
+
configurableClient?: boolean;
|
173
|
+
|
174
|
+
/**
|
175
|
+
* if true, the configurable client is optional
|
176
|
+
*/
|
177
|
+
configurableClientOptional?: boolean;
|
178
|
+
|
169
179
|
/**
|
170
180
|
* additional token arguments
|
171
181
|
*/
|