@almadar/integrations 2.31.0 → 2.32.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.
|
@@ -1845,6 +1845,22 @@ type IntegrationName = keyof IntegrationContracts;
|
|
|
1845
1845
|
* ```
|
|
1846
1846
|
*/
|
|
1847
1847
|
type IntegrationActionName<K extends IntegrationName> = keyof IntegrationContracts[K] & string;
|
|
1848
|
+
/**
|
|
1849
|
+
* Every env var name declared anywhere in `serviceCredentials` — provider
|
|
1850
|
+
* secrets and the credential-store's own bootstrap keys alike. The single
|
|
1851
|
+
* source a forked verify/harness process scrubs from its env so it can never
|
|
1852
|
+
* see, and therefore never spend, a real credential (regardless of which
|
|
1853
|
+
* integration mode the fork ends up in).
|
|
1854
|
+
*/
|
|
1855
|
+
declare function allCredentialEnvVars(): Set<string>;
|
|
1856
|
+
/**
|
|
1857
|
+
* Every declared PROVIDER credential env var — `allCredentialEnvVars()` minus
|
|
1858
|
+
* the store's own bootstrap keys. The store-first custody set (I-31):
|
|
1859
|
+
* `RuntimeIntegrationManager` strips these from the base env before merging
|
|
1860
|
+
* the store's decrypted values, so every resolution flows the exact store →
|
|
1861
|
+
* env → unconfigured path a deployed client app uses.
|
|
1862
|
+
*/
|
|
1863
|
+
declare function declaredCredentialEnvVars(): Set<string>;
|
|
1848
1864
|
/**
|
|
1849
1865
|
* Declared side-effect-free "Test connection" probes, executed by the
|
|
1850
1866
|
* `credentials.test` action through the normal factory path. Only services
|
|
@@ -1965,4 +1981,4 @@ declare class CredentialStore {
|
|
|
1965
1981
|
remove(envVar: string): Promise<boolean>;
|
|
1966
1982
|
}
|
|
1967
1983
|
|
|
1968
|
-
export { type ArxivActions as A, type CLIActions as C, type DatabaseActions as D, type EmailActions as E, type GitHubActions as G, type HookDeclaration as H, type IconifyActions as I, type LLMIntegrationActions as L, type MLActions as M, type OAuthActions as O, type QueueActions as Q, type RedisActions as R, type StorageActions as S, type TwilioActions as T, type WebhookActions as W, type YouTubeActions as Y, CREDENTIAL_ENTITY_TYPE as a, CREDENTIAL_MASTER_KEY_ENV as b, type CredentialEntry as c, type CredentialPersistence as d, CredentialStore as e, type DatabaseDriver as f, type DatabaseQueryParamValue as g, type DatabaseQueryParams as h, type DatabaseQueryResult as i, type DatabaseRow as j, type DeepAgentActions as k, type DockerActions as l, type IntegrationActionName as m, type IntegrationContracts as n, type IntegrationName as o, type OtelActions as p, type StripeActions as q, type WikimediaActions as r,
|
|
1984
|
+
export { type ArxivActions as A, type CLIActions as C, type DatabaseActions as D, type EmailActions as E, type GitHubActions as G, type HookDeclaration as H, type IconifyActions as I, type LLMIntegrationActions as L, type MLActions as M, type OAuthActions as O, type QueueActions as Q, type RedisActions as R, type StorageActions as S, type TwilioActions as T, type WebhookActions as W, type YouTubeActions as Y, CREDENTIAL_ENTITY_TYPE as a, CREDENTIAL_MASTER_KEY_ENV as b, type CredentialEntry as c, type CredentialPersistence as d, CredentialStore as e, type DatabaseDriver as f, type DatabaseQueryParamValue as g, type DatabaseQueryParams as h, type DatabaseQueryResult as i, type DatabaseRow as j, type DeepAgentActions as k, type DockerActions as l, type IntegrationActionName as m, type IntegrationContracts as n, type IntegrationName as o, type OtelActions as p, type StripeActions as q, type WikimediaActions as r, allCredentialEnvVars as s, declaredCredentialEnvVars as t, serviceHooks as u };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/integrations",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.32.0",
|
|
4
4
|
"description": "External service integrations for Almadar applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@almadar/core": "^10.
|
|
36
|
+
"@almadar/core": "^10.83.0",
|
|
37
37
|
"@almadar/llm": "^2.48.0",
|
|
38
38
|
"@almadar/logger": "^1.12.0",
|
|
39
39
|
"@aws-sdk/client-s3": "^3.700.0",
|