@aloma.io/integration-sdk 3.8.42 → 3.8.44
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
@@ -144,6 +144,14 @@ declare type OAuth = {
|
|
144
144
|
* if true, the client can be configured by the user
|
145
145
|
*/
|
146
146
|
configurableClient?: boolean;
|
147
|
+
/**
|
148
|
+
* if true, the configurable client is optional
|
149
|
+
*/
|
150
|
+
configurableClientOptional?: boolean;
|
151
|
+
/**
|
152
|
+
* if true, the connection is optional
|
153
|
+
*/
|
154
|
+
connectionOptional?: boolean;
|
147
155
|
/**
|
148
156
|
* additional token arguments
|
149
157
|
*/
|
package/package.json
CHANGED
package/src/builder/index.mts
CHANGED
@@ -171,6 +171,16 @@ declare type OAuth = {
|
|
171
171
|
*/
|
172
172
|
configurableClient?: boolean;
|
173
173
|
|
174
|
+
/**
|
175
|
+
* if true, the configurable client is optional
|
176
|
+
*/
|
177
|
+
configurableClientOptional?: boolean;
|
178
|
+
|
179
|
+
/**
|
180
|
+
* if true, the connection is optional
|
181
|
+
*/
|
182
|
+
connectionOptional?: boolean;
|
183
|
+
|
174
184
|
/**
|
175
185
|
* additional token arguments
|
176
186
|
*/
|