Skip to content

Commit 03d8001

Browse files
NicolappsConvex, Inc.
authored andcommitted
Make ctx.meta internal for now (#49820)
GitOrigin-RevId: 147e7595d50ae733dc9079ab619328317cc8b9d9
1 parent 790f352 commit 03d8001

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/server/registration.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ export interface GenericMutationCtx<DataModel extends GenericDataModel> {
149149
...args: OptionalRestArgs<Mutation>
150150
) => Promise<FunctionReturnType<Mutation>>;
151151

152+
/** @internal */
152153
meta: MutationMeta;
153154
}
154155

@@ -242,6 +243,7 @@ export interface GenericQueryCtx<DataModel extends GenericDataModel> {
242243
...args: OptionalRestArgs<Query>
243244
) => Promise<FunctionReturnType<Query>>;
244245

246+
/** @internal */
245247
meta: QueryMeta;
246248
}
247249

@@ -404,6 +406,7 @@ export interface GenericActionCtx<DataModel extends GenericDataModel> {
404406
>,
405407
): Promise<Array<{ _id: Id<TableName>; _score: number }>>;
406408

409+
/** @internal */
407410
meta: ActionMeta;
408411
}
409412

0 commit comments

Comments
 (0)