@tailor-platform/function-types 0.4.0 → 0.5.0
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/package.json +1 -1
- package/tailor.d.ts +7 -0
package/package.json
CHANGED
package/tailor.d.ts
CHANGED
|
@@ -53,6 +53,13 @@ declare namespace tailor.secretmanager {
|
|
|
53
53
|
): Promise<string | undefined>;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
+
declare namespace tailor.authconnection {
|
|
57
|
+
/**
|
|
58
|
+
* getConnectionToken returns the access token for an auth connection
|
|
59
|
+
*/
|
|
60
|
+
function getConnectionToken(connectionName: string): Promise<any>;
|
|
61
|
+
}
|
|
62
|
+
|
|
56
63
|
declare namespace tailor.iconv {
|
|
57
64
|
/**
|
|
58
65
|
* Convert string from one encoding to another
|