@aloma.io/integration-sdk 3.8.43 → 3.8.45
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
@@ -148,6 +148,14 @@ declare type OAuth = {
|
|
148
148
|
* if true, the configurable client is optional
|
149
149
|
*/
|
150
150
|
configurableClientOptional?: boolean;
|
151
|
+
/**
|
152
|
+
* if true, the connection is optional
|
153
|
+
*/
|
154
|
+
connectionOptional?: boolean;
|
155
|
+
/**
|
156
|
+
* oauth2 configurable client scope
|
157
|
+
*/
|
158
|
+
configurableClientScope?: string;
|
151
159
|
/**
|
152
160
|
* additional token arguments
|
153
161
|
*/
|
package/package.json
CHANGED
package/src/builder/index.mts
CHANGED
@@ -176,6 +176,16 @@ declare type OAuth = {
|
|
176
176
|
*/
|
177
177
|
configurableClientOptional?: boolean;
|
178
178
|
|
179
|
+
/**
|
180
|
+
* if true, the connection is optional
|
181
|
+
*/
|
182
|
+
connectionOptional?: boolean;
|
183
|
+
|
184
|
+
/**
|
185
|
+
* oauth2 configurable client scope
|
186
|
+
*/
|
187
|
+
configurableClientScope?: string;
|
188
|
+
|
179
189
|
/**
|
180
190
|
* additional token arguments
|
181
191
|
*/
|