/** AndOperation */ export interface AndOperation { /** $And */ $and: (LiteralOperation | GetFieldOperator | ConvertOperation | AndOperation | OrOperation | NotOperation | EqOperation | GtOperation | GteOperation | InOperation | ContainsOperation)[]; } /** Body_file_create_file_create_post */ export interface BodyFileCreateFileCreatePost { /** Project Id */ project_id: string; /** * File * @format binary */ file: File; } /** CallBatchEndMode */ export interface CallBatchEndMode { /** * Mode * @default "end" */ mode?: string; req: CallEndReq; } /** CallBatchStartMode */ export interface CallBatchStartMode { /** * Mode * @default "start" */ mode?: string; req: CallStartReq; } /** CallCreateBatchReq */ export interface CallCreateBatchReq { /** Batch */ batch: (CallBatchStartMode | CallBatchEndMode)[]; } /** CallCreateBatchRes */ export interface CallCreateBatchRes { /** Res */ res: (CallStartRes | CallEndRes)[]; } /** CallEndReq */ export interface CallEndReq { end: EndedCallSchemaForInsert; } /** CallEndRes */ export type CallEndRes = object; /** CallReadReq */ export interface CallReadReq { /** Project Id */ project_id: string; /** Id */ id: string; /** * Include Costs * @default false */ include_costs?: boolean | null; } /** CallReadRes */ export interface CallReadRes { call: CallSchema | null; } /** CallSchema */ export interface CallSchema { /** Id */ id: string; /** Project Id */ project_id: string; /** Op Name */ op_name: string; /** Display Name */ display_name?: string | null; /** Trace Id */ trace_id: string; /** Parent Id */ parent_id?: string | null; /** * Started At * @format date-time */ started_at: string; /** Attributes */ attributes: object; /** Inputs */ inputs: object; /** Ended At */ ended_at?: string | null; /** Exception */ exception?: string | null; /** Output */ output?: null; summary?: object; /** Wb User Id */ wb_user_id?: string | null; /** Wb Run Id */ wb_run_id?: string | null; /** Deleted At */ deleted_at?: string | null; } /** CallStartReq */ export interface CallStartReq { start: StartedCallSchemaForInsert; } /** CallStartRes */ export interface CallStartRes { /** Id */ id: string; /** Trace Id */ trace_id: string; } /** CallUpdateReq */ export interface CallUpdateReq { /** Project Id */ project_id: string; /** Call Id */ call_id: string; /** Display Name */ display_name?: string | null; /** * Wb User Id * Do not set directly. Server will automatically populate this field. */ wb_user_id?: string | null; } /** CallUpdateRes */ export type CallUpdateRes = object; /** CallsDeleteReq */ export interface CallsDeleteReq { /** Project Id */ project_id: string; /** Call Ids */ call_ids: string[]; /** * Wb User Id * Do not set directly. Server will automatically populate this field. */ wb_user_id?: string | null; } /** CallsDeleteRes */ export type CallsDeleteRes = object; /** CallsFilter */ export interface CallsFilter { /** Op Names */ op_names?: string[] | null; /** Input Refs */ input_refs?: string[] | null; /** Output Refs */ output_refs?: string[] | null; /** Parent Ids */ parent_ids?: string[] | null; /** Trace Ids */ trace_ids?: string[] | null; /** Call Ids */ call_ids?: string[] | null; /** Trace Roots Only */ trace_roots_only?: boolean | null; /** Wb User Ids */ wb_user_ids?: string[] | null; /** Wb Run Ids */ wb_run_ids?: string[] | null; } /** CallsQueryReq */ export interface CallsQueryReq { /** Project Id */ project_id: string; filter?: CallsFilter | null; /** Limit */ limit?: number | null; /** Offset */ offset?: number | null; /** Sort By */ sort_by?: SortBy[] | null; query?: Query | null; /** * Include Costs * Beta, subject to change. If true, the response will include any model costs for each call. * @default false */ include_costs?: boolean | null; /** * Include Feedback * Beta, subject to change. If true, the response will include feedback for each call. * @default false */ include_feedback?: boolean | null; /** Columns */ columns?: string[] | null; /** * Expand Columns * Columns to expand, i.e. refs to other objects */ expand_columns?: string[] | null; } /** CallsQueryStatsReq */ export interface CallsQueryStatsReq { /** Project Id */ project_id: string; filter?: CallsFilter | null; query?: Query | null; } /** CallsQueryStatsRes */ export interface CallsQueryStatsRes { /** Count */ count: number; } /** ContainsOperation */ export interface ContainsOperation { $contains: ContainsSpec; } /** ContainsSpec */ export interface ContainsSpec { /** Input */ input: LiteralOperation | GetFieldOperator | ConvertOperation | AndOperation | OrOperation | NotOperation | EqOperation | GtOperation | GteOperation | InOperation | ContainsOperation; /** Substr */ substr: LiteralOperation | GetFieldOperator | ConvertOperation | AndOperation | OrOperation | NotOperation | EqOperation | GtOperation | GteOperation | InOperation | ContainsOperation; /** * Case Insensitive * @default false */ case_insensitive?: boolean | null; } /** ConvertOperation */ export interface ConvertOperation { $convert: ConvertSpec; } /** ConvertSpec */ export interface ConvertSpec { /** Input */ input: LiteralOperation | GetFieldOperator | ConvertOperation | AndOperation | OrOperation | NotOperation | EqOperation | GtOperation | GteOperation | InOperation | ContainsOperation; /** To */ to: 'double' | 'string' | 'int' | 'bool' | 'exists'; } /** CostCreateInput */ export interface CostCreateInput { /** Prompt Token Cost */ prompt_token_cost: number; /** Completion Token Cost */ completion_token_cost: number; /** * Prompt Token Cost Unit * The unit of the cost for the prompt tokens * @default "USD" */ prompt_token_cost_unit?: string | null; /** * Completion Token Cost Unit * The unit of the cost for the completion tokens * @default "USD" */ completion_token_cost_unit?: string | null; /** * Effective Date * The date after which the cost is effective for, will default to the current date if not provided */ effective_date?: string | null; /** * Provider Id * The provider of the LLM, e.g. 'openai' or 'mistral'. If not provided, the provider_id will be set to 'default' */ provider_id?: string | null; } /** CostCreateReq */ export interface CostCreateReq { /** Project Id */ project_id: string; /** Costs */ costs: Record; /** * Wb User Id * Do not set directly. Server will automatically populate this field. */ wb_user_id?: string | null; } /** CostCreateRes */ export interface CostCreateRes { /** Ids */ ids: any[][]; } /** CostPurgeReq */ export interface CostPurgeReq { /** Project Id */ project_id: string; query: Query; } /** CostPurgeRes */ export type CostPurgeRes = object; /** CostQueryOutput */ export interface CostQueryOutput { /** Id */ id?: string | null; /** Llm Id */ llm_id?: string | null; /** Prompt Token Cost */ prompt_token_cost?: number | null; /** Completion Token Cost */ completion_token_cost?: number | null; /** Prompt Token Cost Unit */ prompt_token_cost_unit?: string | null; /** Completion Token Cost Unit */ completion_token_cost_unit?: string | null; /** Effective Date */ effective_date?: string | null; /** Provider Id */ provider_id?: string | null; } /** CostQueryReq */ export interface CostQueryReq { /** Project Id */ project_id: string; /** Fields */ fields?: string[] | null; query?: Query | null; /** Sort By */ sort_by?: SortBy[] | null; /** Limit */ limit?: number | null; /** Offset */ offset?: number | null; } /** CostQueryRes */ export interface CostQueryRes { /** Results */ results: CostQueryOutput[]; } /** EndedCallSchemaForInsert */ export interface EndedCallSchemaForInsert { /** Project Id */ project_id: string; /** Id */ id: string; /** * Ended At * @format date-time */ ended_at: string; /** Exception */ exception?: string | null; /** Output */ output?: null; summary: SummaryInsertMap; } /** EqOperation */ export interface EqOperation { /** * $Eq * @maxItems 2 * @minItems 2 */ $eq: any[]; } /** FeedbackCreateReq */ export interface FeedbackCreateReq { /** Project Id */ project_id: string; /** Weave Ref */ weave_ref: string; /** Creator */ creator?: string | null; /** Feedback Type */ feedback_type: string; /** Payload */ payload: object; /** Annotation Ref */ annotation_ref?: string | null; /** Runnable Ref */ runnable_ref?: string | null; /** Call Ref */ call_ref?: string | null; /** Trigger Ref */ trigger_ref?: string | null; /** * Wb User Id * Do not set directly. Server will automatically populate this field. */ wb_user_id?: string | null; } /** FeedbackCreateRes */ export interface FeedbackCreateRes { /** Id */ id: string; /** * Created At * @format date-time */ created_at: string; /** Wb User Id */ wb_user_id: string; /** Payload */ payload: object; } /** FeedbackPurgeReq */ export interface FeedbackPurgeReq { /** Project Id */ project_id: string; query: Query; } /** FeedbackPurgeRes */ export type FeedbackPurgeRes = object; /** FeedbackQueryReq */ export interface FeedbackQueryReq { /** Project Id */ project_id: string; /** Fields */ fields?: string[] | null; query?: Query | null; /** Sort By */ sort_by?: SortBy[] | null; /** Limit */ limit?: number | null; /** Offset */ offset?: number | null; } /** FeedbackQueryRes */ export interface FeedbackQueryRes { /** Result */ result: object[]; } /** FeedbackReplaceReq */ export interface FeedbackReplaceReq { /** Project Id */ project_id: string; /** Weave Ref */ weave_ref: string; /** Creator */ creator?: string | null; /** Feedback Type */ feedback_type: string; /** Payload */ payload: object; /** Annotation Ref */ annotation_ref?: string | null; /** Runnable Ref */ runnable_ref?: string | null; /** Call Ref */ call_ref?: string | null; /** Trigger Ref */ trigger_ref?: string | null; /** * Wb User Id * Do not set directly. Server will automatically populate this field. */ wb_user_id?: string | null; /** Feedback Id */ feedback_id: string; } /** FeedbackReplaceRes */ export interface FeedbackReplaceRes { /** Id */ id: string; /** * Created At * @format date-time */ created_at: string; /** Wb User Id */ wb_user_id: string; /** Payload */ payload: object; } /** FileContentReadReq */ export interface FileContentReadReq { /** Project Id */ project_id: string; /** Digest */ digest: string; } /** FileCreateRes */ export interface FileCreateRes { /** Digest */ digest: string; } /** GetFieldOperator */ export interface GetFieldOperator { /** $Getfield */ $getField: string; } /** GtOperation */ export interface GtOperation { /** * $Gt * @maxItems 2 * @minItems 2 */ $gt: any[]; } /** GteOperation */ export interface GteOperation { /** * $Gte * @maxItems 2 * @minItems 2 */ $gte: any[]; } /** HTTPValidationError */ export interface HTTPValidationError { /** Detail */ detail?: ValidationError[]; } /** InOperation */ export interface InOperation { /** * $In * @maxItems 2 * @minItems 2 */ $in: any[]; } /** LLMUsageSchema */ export interface LLMUsageSchema { /** Prompt Tokens */ prompt_tokens?: number | null; /** Input Tokens */ input_tokens?: number | null; /** Completion Tokens */ completion_tokens?: number | null; /** Output Tokens */ output_tokens?: number | null; /** Requests */ requests?: number | null; /** Total Tokens */ total_tokens?: number | null; } /** LiteralOperation */ export interface LiteralOperation { /** $Literal */ $literal: string | number | boolean | Record | LiteralOperation[] | null; } /** NotOperation */ export interface NotOperation { /** * $Not * @maxItems 1 * @minItems 1 */ $not: any[]; } /** ObjCreateReq */ export interface ObjCreateReq { obj: ObjSchemaForInsert; } /** ObjCreateRes */ export interface ObjCreateRes { /** Digest */ digest: string; } /** ObjQueryReq */ export interface ObjQueryReq { /** * Project Id * The ID of the project to query */ project_id: string; /** Filter criteria for the query. See `ObjectVersionFilter` */ filter?: ObjectVersionFilter | null; /** * Limit * Maximum number of results to return */ limit?: number | null; /** * Offset * Number of results to skip before returning */ offset?: number | null; /** * Sort By * Sorting criteria for the query results. Currently only supports 'object_id' and 'created_at'. */ sort_by?: SortBy[] | null; /** * Metadata Only * If true, the `val` column is not read from the database and is empty.All other fields are returned. * @default false */ metadata_only?: boolean | null; } /** ObjQueryRes */ export interface ObjQueryRes { /** Objs */ objs: ObjSchema[]; } /** ObjReadReq */ export interface ObjReadReq { /** Project Id */ project_id: string; /** Object Id */ object_id: string; /** Digest */ digest: string; } /** ObjReadRes */ export interface ObjReadRes { obj: ObjSchema; } /** ObjSchema */ export interface ObjSchema { /** Project Id */ project_id: string; /** Object Id */ object_id: string; /** * Created At * @format date-time */ created_at: string; /** Deleted At */ deleted_at?: string | null; /** Digest */ digest: string; /** Version Index */ version_index: number; /** Is Latest */ is_latest: number; /** Kind */ kind: string; /** Base Object Class */ base_object_class: string | null; /** Val */ val: any; } /** ObjSchemaForInsert */ export interface ObjSchemaForInsert { /** Project Id */ project_id: string; /** Object Id */ object_id: string; /** Val */ val: any; /** Builtin Object Class */ builtin_object_class?: string | null; /** * Set Base Object Class * @deprecated */ set_base_object_class?: string | null; } /** ObjectVersionFilter */ export interface ObjectVersionFilter { /** * Base Object Classes * Filter objects by their base classes */ base_object_classes?: string[] | null; /** * Object Ids * Filter objects by their IDs */ object_ids?: string[] | null; /** * Is Op * Filter objects based on whether they are weave.ops or not. `True` will only return ops, `False` will return non-ops, and `None` will return all objects */ is_op?: boolean | null; /** * Latest Only * If True, return only the latest version of each object. `False` and `None` will return all versions */ latest_only?: boolean | null; } /** OrOperation */ export interface OrOperation { /** $Or */ $or: (LiteralOperation | GetFieldOperator | ConvertOperation | AndOperation | OrOperation | NotOperation | EqOperation | GtOperation | GteOperation | InOperation | ContainsOperation)[]; } /** Query */ export interface Query { /** $Expr */ $expr: AndOperation | OrOperation | NotOperation | EqOperation | GtOperation | GteOperation | InOperation | ContainsOperation; } /** RefsReadBatchReq */ export interface RefsReadBatchReq { /** Refs */ refs: string[]; } /** RefsReadBatchRes */ export interface RefsReadBatchRes { /** Vals */ vals: any[]; } /** ServerInfoRes */ export interface ServerInfoRes { /** Min Required Weave Python Version */ min_required_weave_python_version: string; } /** SortBy */ export interface SortBy { /** Field */ field: string; /** Direction */ direction: 'asc' | 'desc'; } /** StartedCallSchemaForInsert */ export interface StartedCallSchemaForInsert { /** Project Id */ project_id: string; /** Id */ id?: string | null; /** Op Name */ op_name: string; /** Display Name */ display_name?: string | null; /** Trace Id */ trace_id?: string | null; /** Parent Id */ parent_id?: string | null; /** * Started At * @format date-time */ started_at: string; /** Attributes */ attributes: object; /** Inputs */ inputs: object; /** * Wb User Id * Do not set directly. Server will automatically populate this field. */ wb_user_id?: string | null; /** Wb Run Id */ wb_run_id?: string | null; } /** SummaryInsertMap */ export interface SummaryInsertMap { /** Usage */ usage?: Record; [key: string]: any; } /** TableAppendSpec */ export interface TableAppendSpec { append: TableAppendSpecPayload; } /** TableAppendSpecPayload */ export interface TableAppendSpecPayload { /** Row */ row: object; } /** TableCreateReq */ export interface TableCreateReq { table: TableSchemaForInsert; } /** TableCreateRes */ export interface TableCreateRes { /** Digest */ digest: string; /** * Row Digests * The digests of the rows that were created */ row_digests?: string[]; } /** TableInsertSpec */ export interface TableInsertSpec { insert: TableInsertSpecPayload; } /** TableInsertSpecPayload */ export interface TableInsertSpecPayload { /** Index */ index: number; /** Row */ row: object; } /** TablePopSpec */ export interface TablePopSpec { pop: TablePopSpecPayload; } /** TablePopSpecPayload */ export interface TablePopSpecPayload { /** Index */ index: number; } /** TableQueryReq */ export interface TableQueryReq { /** * Project Id * The ID of the project */ project_id: string; /** * Digest * The digest of the table to query */ digest: string; /** Optional filter to apply to the query. See `TableRowFilter` for more details. */ filter?: TableRowFilter | null; /** * Limit * Maximum number of rows to return */ limit?: number | null; /** * Offset * Number of rows to skip before starting to return rows */ offset?: number | null; /** * Sort By * List of fields to sort by. Fields can be dot-separated to access dictionary values. No sorting uses the default table order (insertion order). */ sort_by?: SortBy[] | null; } /** TableQueryRes */ export interface TableQueryRes { /** Rows */ rows: TableRowSchema[]; } /** TableQueryStatsReq */ export interface TableQueryStatsReq { /** * Project Id * The ID of the project */ project_id: string; /** * Digest * The digest of the table to query */ digest: string; } /** TableQueryStatsRes */ export interface TableQueryStatsRes { /** Count */ count: number; } /** TableRowFilter */ export interface TableRowFilter { /** * Row Digests * List of row digests to filter by */ row_digests?: string[] | null; } /** TableRowSchema */ export interface TableRowSchema { /** Digest */ digest: string; /** Val */ val: any; } /** TableSchemaForInsert */ export interface TableSchemaForInsert { /** Project Id */ project_id: string; /** Rows */ rows: object[]; } /** TableUpdateReq */ export interface TableUpdateReq { /** Project Id */ project_id: string; /** Base Digest */ base_digest: string; /** Updates */ updates: (TableAppendSpec | TablePopSpec | TableInsertSpec)[]; } /** TableUpdateRes */ export interface TableUpdateRes { /** Digest */ digest: string; /** * Updated Row Digests * The digests of the rows that were updated */ updated_row_digests?: string[]; } /** ValidationError */ export interface ValidationError { /** Location */ loc: (string | number)[]; /** Message */ msg: string; /** Error Type */ type: string; } export type QueryParamsType = Record; export type ResponseFormat = keyof Omit; export interface FullRequestParams extends Omit { /** set parameter to `true` for call `securityWorker` for this request */ secure?: boolean; /** request path */ path: string; /** content type of request body */ type?: ContentType; /** query params */ query?: QueryParamsType; /** format of response (i.e. response.json() -> format: "json") */ format?: ResponseFormat; /** request body */ body?: unknown; /** base url */ baseUrl?: string; /** request cancellation token */ cancelToken?: CancelToken; } export type RequestParams = Omit; export interface ApiConfig { baseUrl?: string; baseApiParams?: Omit; securityWorker?: (securityData: SecurityDataType | null) => Promise | RequestParams | void; customFetch?: typeof fetch; } export interface HttpResponse extends Response { data: D; error: E; } type CancelToken = Symbol | string | number; export declare enum ContentType { Json = "application/json", FormData = "multipart/form-data", UrlEncoded = "application/x-www-form-urlencoded", Text = "text/plain" } export declare class HttpClient { baseUrl: string; private securityData; private securityWorker?; private abortControllers; private customFetch; private baseApiParams; constructor(apiConfig?: ApiConfig); setSecurityData: (data: SecurityDataType | null) => void; protected encodeQueryParam(key: string, value: any): string; protected addQueryParam(query: QueryParamsType, key: string): string; protected addArrayQueryParam(query: QueryParamsType, key: string): any; protected toQueryString(rawQuery?: QueryParamsType): string; protected addQueryParams(rawQuery?: QueryParamsType): string; private contentFormatters; protected mergeRequestParams(params1: RequestParams, params2?: RequestParams): RequestParams; protected createAbortSignal: (cancelToken: CancelToken) => AbortSignal | undefined; abortRequest: (cancelToken: CancelToken) => void; request: ({ body, secure, path, type, query, format, baseUrl, cancelToken, ...params }: FullRequestParams) => Promise>; } /** * @title FastAPI * @version 0.1.0 * @baseUrl https://api.wandb.ai */ export declare class Api extends HttpClient { health: { /** * No description * * @tags Service * @name ReadRootHealthGet * @summary Read Root * @request GET:/health */ readRootHealthGet: (params?: RequestParams) => Promise>; }; serverInfo: { /** * No description * * @tags Service * @name ServerInfoServerInfoGet * @summary Server Info * @request GET:/server_info */ serverInfoServerInfoGet: (params?: RequestParams) => Promise>; }; call: { /** * No description * * @tags Calls * @name CallStartCallStartPost * @summary Call Start * @request POST:/call/start * @secure */ callStartCallStartPost: (data: CallStartReq, params?: RequestParams) => Promise>; /** * No description * * @tags Calls * @name CallEndCallEndPost * @summary Call End * @request POST:/call/end * @secure */ callEndCallEndPost: (data: CallEndReq, params?: RequestParams) => Promise>; /** * No description * * @tags Calls * @name CallStartBatchCallUpsertBatchPost * @summary Call Start Batch * @request POST:/call/upsert_batch * @secure */ callStartBatchCallUpsertBatchPost: (data: CallCreateBatchReq, params?: RequestParams) => Promise>; /** * No description * * @tags Calls * @name CallUpdateCallUpdatePost * @summary Call Update * @request POST:/call/update * @secure */ callUpdateCallUpdatePost: (data: CallUpdateReq, params?: RequestParams) => Promise>; /** * No description * * @tags Calls * @name CallReadCallReadPost * @summary Call Read * @request POST:/call/read * @secure */ callReadCallReadPost: (data: CallReadReq, params?: RequestParams) => Promise>; }; calls: { /** * No description * * @tags Calls * @name CallsDeleteCallsDeletePost * @summary Calls Delete * @request POST:/calls/delete * @secure */ callsDeleteCallsDeletePost: (data: CallsDeleteReq, params?: RequestParams) => Promise>; /** * No description * * @tags Calls * @name CallsQueryStatsCallsQueryStatsPost * @summary Calls Query Stats * @request POST:/calls/query_stats * @secure */ callsQueryStatsCallsQueryStatsPost: (data: CallsQueryStatsReq, params?: RequestParams) => Promise>; /** * No description * * @tags Calls * @name CallsQueryStreamCallsStreamQueryPost * @summary Calls Query Stream * @request POST:/calls/stream_query * @secure */ callsQueryStreamCallsStreamQueryPost: (data: CallsQueryReq, params?: RequestParams) => Promise>; }; obj: { /** * No description * * @tags Objects * @name ObjCreateObjCreatePost * @summary Obj Create * @request POST:/obj/create * @secure */ objCreateObjCreatePost: (data: ObjCreateReq, params?: RequestParams) => Promise>; /** * No description * * @tags Objects * @name ObjReadObjReadPost * @summary Obj Read * @request POST:/obj/read * @secure */ objReadObjReadPost: (data: ObjReadReq, params?: RequestParams) => Promise>; }; objs: { /** * No description * * @tags Objects * @name ObjsQueryObjsQueryPost * @summary Objs Query * @request POST:/objs/query * @secure */ objsQueryObjsQueryPost: (data: ObjQueryReq, params?: RequestParams) => Promise>; }; table: { /** * No description * * @tags Tables * @name TableCreateTableCreatePost * @summary Table Create * @request POST:/table/create * @secure */ tableCreateTableCreatePost: (data: TableCreateReq, params?: RequestParams) => Promise>; /** * No description * * @tags Tables * @name TableUpdateTableUpdatePost * @summary Table Update * @request POST:/table/update * @secure */ tableUpdateTableUpdatePost: (data: TableUpdateReq, params?: RequestParams) => Promise>; /** * No description * * @tags Tables * @name TableQueryTableQueryPost * @summary Table Query * @request POST:/table/query * @secure */ tableQueryTableQueryPost: (data: TableQueryReq, params?: RequestParams) => Promise>; /** * No description * * @tags Tables * @name TableQueryStatsTableQueryStatsPost * @summary Table Query Stats * @request POST:/table/query_stats * @secure */ tableQueryStatsTableQueryStatsPost: (data: TableQueryStatsReq, params?: RequestParams) => Promise>; }; refs: { /** * No description * * @tags Refs * @name RefsReadBatchRefsReadBatchPost * @summary Refs Read Batch * @request POST:/refs/read_batch * @secure */ refsReadBatchRefsReadBatchPost: (data: RefsReadBatchReq, params?: RequestParams) => Promise>; }; file: { /** * No description * * @tags Files * @name FileCreateFileCreatePost * @summary File Create * @request POST:/file/create * @secure */ fileCreateFileCreatePost: (data: BodyFileCreateFileCreatePost, params?: RequestParams) => Promise>; /** * No description * * @tags Files * @name FileContentFileContentPost * @summary File Content * @request POST:/file/content * @secure */ fileContentFileContentPost: (data: FileContentReadReq, params?: RequestParams) => Promise>; }; cost: { /** * No description * * @tags Costs * @name CostCreateCostCreatePost * @summary Cost Create * @request POST:/cost/create * @secure */ costCreateCostCreatePost: (data: CostCreateReq, params?: RequestParams) => Promise>; /** * No description * * @tags Costs * @name CostQueryCostQueryPost * @summary Cost Query * @request POST:/cost/query * @secure */ costQueryCostQueryPost: (data: CostQueryReq, params?: RequestParams) => Promise>; /** * No description * * @tags Costs * @name CostPurgeCostPurgePost * @summary Cost Purge * @request POST:/cost/purge * @secure */ costPurgeCostPurgePost: (data: CostPurgeReq, params?: RequestParams) => Promise>; }; feedback: { /** * @description Add feedback to a call or object. * * @tags Feedback * @name FeedbackCreateFeedbackCreatePost * @summary Feedback Create * @request POST:/feedback/create * @secure */ feedbackCreateFeedbackCreatePost: (data: FeedbackCreateReq, params?: RequestParams) => Promise>; /** * @description Query for feedback. * * @tags Feedback * @name FeedbackQueryFeedbackQueryPost * @summary Feedback Query * @request POST:/feedback/query * @secure */ feedbackQueryFeedbackQueryPost: (data: FeedbackQueryReq, params?: RequestParams) => Promise>; /** * @description Permanently delete feedback. * * @tags Feedback * @name FeedbackPurgeFeedbackPurgePost * @summary Feedback Purge * @request POST:/feedback/purge * @secure */ feedbackPurgeFeedbackPurgePost: (data: FeedbackPurgeReq, params?: RequestParams) => Promise>; /** * No description * * @tags Feedback * @name FeedbackReplaceFeedbackReplacePost * @summary Feedback Replace * @request POST:/feedback/replace * @secure */ feedbackReplaceFeedbackReplacePost: (data: FeedbackReplaceReq, params?: RequestParams) => Promise>; }; } export {}; //# sourceMappingURL=traceServerApi.d.ts.map