@opentiny/agent 0.3.4 → 0.3.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.
package/LICENSE CHANGED
File without changes
package/README.md CHANGED
File without changes
package/index.d.ts CHANGED
@@ -371,10 +371,9 @@ declare const createAuthCallbackRouter: (callbackEndpoint: string, ...middleware
371
371
  * @param authProvider 认证服务器提供者
372
372
  * @param authUrl 认证 URL
373
373
  * @param resourceUrl 资源 URL
374
- * @param issuerUrl 签发者 URL,可选
375
374
  * @returns Express 路由处理器
376
375
  */
377
- declare const createAuthMetadataRouter: (authProvider: AuthServerProvider, authUrl: string, resourceUrl: string, issuerUrl?: string) => RequestHandler;
376
+ declare const createAuthMetadataRouter: (authProvider: AuthServerProvider, authUrl: string, resourceUrl: string) => RequestHandler;
378
377
  /**
379
378
  * 创建 OAuth 认证路由。
380
379
  *