fix ads,passport

This commit is contained in:
2026-09-23 00:13:03 +08:00
parent b8ff9acc3d
commit 80b6c140fe
14 changed files with 575 additions and 3755 deletions

View File

@@ -0,0 +1,44 @@
// Code generated by protoc-gen-typescript-http. DO NOT EDIT.
/* eslint-disable camelcase */
// @ts-nocheck
export type ByPosRequest = {
key?: string;
};
export type ByPosReply = {
data?: AdsItem[];
};
export type AdsItem = {
id?: number;
/** 广告名称 */
title?: string;
/** 广告内容 */
content?: string;
/** 广告类型 1.文本 2.图片 3.视频 */
type?: number;
toUrl?: string;
created?: string;
};
/** 广告子系统 */
export interface Fetch {
}
type RequestType = {
path: string;
method: string;
body: string | null;
};
type RequestHandler = (request: RequestType, meta: { service: string, method: string }) => Promise<unknown>;
export function createFetchClient(
handler: RequestHandler
): Fetch {
return {
};
}
// @@protoc_insertion_point(typescript-http-eof)