@metatrongg/sdk 0.8.0-dev.9dc0233 → 0.8.0-dev.a3b9815
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/dist/browser/index.d.ts +4 -0
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +26 -6
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +4 -0
- package/dist/node/index.js +1 -1
- package/dist/webhook/express.js +1 -1
- package/dist/webhook/fastify.js +1 -1
- package/dist/webhook/hono.js +1 -1
- package/dist/webhook/index.js +1 -1
- package/package.json +2 -2
package/dist/browser/index.d.ts
CHANGED
|
@@ -2647,6 +2647,7 @@ type AdminAuditListResponse = {
|
|
|
2647
2647
|
total: number;
|
|
2648
2648
|
offset: number;
|
|
2649
2649
|
limit: number;
|
|
2650
|
+
nextCursor: string | null;
|
|
2650
2651
|
};
|
|
2651
2652
|
type AdminAuditListItem = {
|
|
2652
2653
|
id: string;
|
|
@@ -3271,6 +3272,7 @@ declare function listAudit(context: TransportContext, input: {
|
|
|
3271
3272
|
readonly actorId?: string;
|
|
3272
3273
|
readonly targetType?: string;
|
|
3273
3274
|
readonly targetId?: string;
|
|
3275
|
+
readonly cursor?: string;
|
|
3274
3276
|
readonly offset?: number;
|
|
3275
3277
|
readonly limit?: number;
|
|
3276
3278
|
}): Promise<AdminAuditListResponse>;
|
|
@@ -3379,6 +3381,7 @@ declare function getBipDirectory(context: TransportContext, input: {
|
|
|
3379
3381
|
readonly bearer?: string;
|
|
3380
3382
|
readonly genre?: string;
|
|
3381
3383
|
readonly q?: string;
|
|
3384
|
+
readonly sort?: "newest" | "top";
|
|
3382
3385
|
readonly before?: string;
|
|
3383
3386
|
readonly limit?: number;
|
|
3384
3387
|
}): Promise<LibraryListResponse>;
|
|
@@ -3399,6 +3402,7 @@ declare function getLibrary(context: TransportContext, input: {
|
|
|
3399
3402
|
readonly bearer?: string;
|
|
3400
3403
|
readonly genre?: string;
|
|
3401
3404
|
readonly q?: string;
|
|
3405
|
+
readonly sort?: "newest" | "top";
|
|
3402
3406
|
readonly before?: string;
|
|
3403
3407
|
readonly limit?: number;
|
|
3404
3408
|
}): Promise<LibraryListResponse>;
|