@terrantula/sdk 0.11.2 → 0.12.0

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.
@@ -1359,7 +1359,8 @@ function createCatalogRevisionsClient(proj) {
1359
1359
  z13.object({
1360
1360
  orgId: z13.string().describe("Organization slug"),
1361
1361
  projectId: z13.string().describe("Project ID"),
1362
- limit: z13.coerce.number().int().min(1).max(200).optional().describe("Max revisions to return (1-200)")
1362
+ limit: z13.coerce.number().int().min(1).max(200).optional().describe("Max revisions to return (1-200)"),
1363
+ before: z13.string().datetime().optional().describe("ISO timestamp; only revisions with appliedAt strictly before this are returned (keyset upper-bound)")
1363
1364
  }),
1364
1365
  (params) => {
1365
1366
  const { orgId, projectId, ...query } = params;
@@ -1431,6 +1432,7 @@ function createAuditEventsClient(proj) {
1431
1432
  action: z14.string().optional().describe('Comma-separated actions (e.g. "create,delete")'),
1432
1433
  resourceKind: z14.string().optional().describe("Filter to one resource kind (Entity | Token | Member | \u2026)"),
1433
1434
  since: z14.string().datetime().optional().describe("ISO timestamp; only events strictly after this are returned"),
1435
+ before: z14.string().datetime().optional().describe("ISO timestamp; only events strictly before this are returned (keyset upper-bound)"),
1434
1436
  limit: z14.coerce.number().int().min(1).max(500).optional().describe("Max rows (1-500)")
1435
1437
  }).describe("List audit events for a project \u2014 auditor-friendly read-only feed"),
1436
1438
  (params) => {
@@ -1491,6 +1493,7 @@ function createDriftEventsClient(projEnv) {
1491
1493
  kind: z16.string().optional().describe("Filter by entity type name"),
1492
1494
  entityName: z16.string().optional().describe("Filter by entity name"),
1493
1495
  since: z16.string().optional().describe("ISO timestamp lower bound on detectedAt"),
1496
+ before: z16.string().datetime().optional().describe("ISO timestamp upper bound on detectedAt (keyset cursor)"),
1494
1497
  limit: z16.coerce.number().int().min(1).max(500).optional()
1495
1498
  }),
1496
1499
  (params) => {