@useparagon/connect 1.0.35-experimental.12 → 1.0.35-experimental.13
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.
|
@@ -307,5 +307,19 @@ export type AccountType = {
|
|
|
307
307
|
* or subdomain prefix for a service that is a part of the OAuth authorization URL.
|
|
308
308
|
*/
|
|
309
309
|
endUserSuppliedValues?: IntegrationConnectInput[];
|
|
310
|
+
/**
|
|
311
|
+
* Specify a string to be interpolated into the "Add new {accountDescription} for
|
|
312
|
+
* {providerType}" button. Should be a descriptor for the account, in lowercase. The default
|
|
313
|
+
* value is "account".
|
|
314
|
+
*
|
|
315
|
+
* @example "sandbox account"
|
|
316
|
+
* @example "service account"
|
|
317
|
+
* @default "account"
|
|
318
|
+
*/
|
|
319
|
+
accountDescription?: string;
|
|
320
|
+
/**
|
|
321
|
+
* Specify whether to skip the postOAuth input or not
|
|
322
|
+
*/
|
|
323
|
+
skipPostOAuthInputs?: boolean;
|
|
310
324
|
};
|
|
311
325
|
export {};
|
package/package.json
CHANGED