@apifuse/provider-sdk 2.2.0-beta.4 → 2.2.0-beta.5

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.
@@ -74,7 +74,12 @@ import type {
74
74
  StealthClient,
75
75
  SttContext,
76
76
  } from "../types.js";
77
- import { createSelfTestApp, createSelfTestInvoke, resolveSelfTestPort } from "./self-test.js";
77
+ import {
78
+ createSelfTestApp,
79
+ createSelfTestAuthFlowInvoke,
80
+ createSelfTestInvoke,
81
+ resolveSelfTestPort,
82
+ } from "./self-test.js";
78
83
  import { resolveSelfTestMasterSecrets } from "./self-test-token.js";
79
84
  import {
80
85
  type AuthFlowRequest,
@@ -1615,6 +1620,7 @@ export async function serve(
1615
1620
  const selfTestApp = createSelfTestApp(provider, {
1616
1621
  secrets: selfTestSecrets,
1617
1622
  invoke: createSelfTestInvoke(app),
1623
+ authFlow: createSelfTestAuthFlowInvoke(app),
1618
1624
  });
1619
1625
  bunRuntime.serve({
1620
1626
  port: options.selfTestPort ?? resolveSelfTestPort(),