@opengeni/core 3.0.1-canary.2 → 3.0.1-canary.4
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/dist/dependencies.d.ts +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +12 -12
- package/src/application/composer-submit.ts +3 -0
- package/src/dependencies.ts +5 -1
package/dist/dependencies.d.ts
CHANGED
|
@@ -83,7 +83,7 @@ export type DocumentIndexClient = {
|
|
|
83
83
|
}) => Promise<Document | void>;
|
|
84
84
|
};
|
|
85
85
|
export type ManagedEmailMessage = {
|
|
86
|
-
kind: "email_verification" | "password_reset" | "organization_user_setup";
|
|
86
|
+
kind: "email_verification" | "password_reset" | "organization_user_setup" | "sign_in_method_changed";
|
|
87
87
|
from: string;
|
|
88
88
|
to: string;
|
|
89
89
|
subject: string;
|
package/dist/index.js
CHANGED
|
@@ -16725,6 +16725,7 @@ async function submitComposerDraftForRequest(deps, grant, workspaceId, sessionId
|
|
|
16725
16725
|
latencyMode: input.latencyMode,
|
|
16726
16726
|
mcpCredentialUpdates: input.mcpCredentialUpdates ?? [],
|
|
16727
16727
|
connectionAuthorities: input.connectionAuthorities,
|
|
16728
|
+
...input.selectedHostMcpDelegations ? { selectedHostMcpDelegations: input.selectedHostMcpDelegations } : {},
|
|
16728
16729
|
...input.personalResourceAttachment ? { personalResourceAttachment: input.personalResourceAttachment } : {},
|
|
16729
16730
|
...options.authorization ? { authorization: options.authorization } : {},
|
|
16730
16731
|
delivery: input.delivery,
|