@@ -15352,6 +15352,40 @@ export function RegisterRoutes(app: Router) {
1535215352 }
1535315353 });
1535415354 // WARNING: This file was auto-generated with tsoa. Please do not modify it. Re-run tsoa to re-generate this file: https://github.com/lukeautry/tsoa
15355+ const argsStripeController_searchPaymentIntents: Record<string, TsoaRoute.ParameterSchema> = {
15356+ request: {"in":"request","name":"request","required":true,"dataType":"object"},
15357+ search_kind: {"in":"query","name":"search_kind","required":true,"dataType":"string"},
15358+ limit: {"in":"query","name":"limit","dataType":"double"},
15359+ page: {"in":"query","name":"page","dataType":"string"},
15360+ };
15361+ app.get('/v1/stripe/payment-intents/search',
15362+ authenticateMiddleware([{"api_key":[]}]),
15363+ ...(fetchMiddlewares<RequestHandler>(StripeController)),
15364+ ...(fetchMiddlewares<RequestHandler>(StripeController.prototype.searchPaymentIntents)),
15365+
15366+ async function StripeController_searchPaymentIntents(request: ExRequest, response: ExResponse, next: any) {
15367+
15368+ // WARNING: This file was auto-generated with tsoa. Please do not modify it. Re-run tsoa to re-generate this file: https://github.com/lukeautry/tsoa
15369+
15370+ let validatedArgs: any[] = [];
15371+ try {
15372+ validatedArgs = templateService.getValidatedArgs({ args: argsStripeController_searchPaymentIntents, request, response });
15373+
15374+ const controller = new StripeController();
15375+
15376+ await templateService.apiHandler({
15377+ methodName: 'searchPaymentIntents',
15378+ controller,
15379+ response,
15380+ next,
15381+ validatedArgs,
15382+ successStatus: undefined,
15383+ });
15384+ } catch (err) {
15385+ return next(err);
15386+ }
15387+ });
15388+ // WARNING: This file was auto-generated with tsoa. Please do not modify it. Re-run tsoa to re-generate this file: https://github.com/lukeautry/tsoa
1535515389 const argsStripeController_getSubscription: Record<string, TsoaRoute.ParameterSchema> = {
1535615390 request: {"in":"request","name":"request","required":true,"dataType":"object"},
1535715391 };
0 commit comments