@usebetterdev/contract 0.7.0 → 0.8.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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/product-types.ts"],"sourcesContent":["/**\n * Wire-format types for product endpoints.\n *\n * These represent the JSON shapes that flow over HTTP between customer apps\n * and the console web app. Server-side types use `Date` objects; wire-format\n * types use `string` (ISO-8601) since JSON serialization converts dates.\n */\n\nimport type { ConsolePermission } from \"./index.js\";\n\n// Re-export so consumers can use a single import path\nexport type { ConsolePermission } from \"./index.js\";\n\n// ---------------------------------------------------------------------------\n// Shared\n// ---------------------------------------------------------------------------\n\n/** Standard error envelope returned by all error responses. */\nexport interface ConsoleErrorResponse {\n error: string;\n code?: string;\n}\n\n// ---------------------------------------------------------------------------\n// Audit — wire types\n// ---------------------------------------------------------------------------\n\n/** Serialized audit log entry (Date fields become ISO-8601 strings). */\nexport interface AuditLogWire {\n id: string;\n /** ISO-8601 timestamp (serialized from Date). */\n timestamp: string;\n tableName: string;\n operation: \"INSERT\" | \"UPDATE\" | \"DELETE\";\n recordId: string;\n beforeData?: Record<string, unknown>;\n afterData?: Record<string, unknown>;\n diff?: { changedFields: string[] };\n actorId?: string;\n label?: string;\n description?: string;\n severity?: \"low\" | \"medium\" | \"high\" | \"critical\";\n compliance?: string[];\n notify?: boolean;\n reason?: string;\n metadata?: Record<string, unknown>;\n redactedFields?: string[];\n}\n\n/** GET /audit/logs response body. */\nexport interface AuditLogsResponse {\n entries: AuditLogWire[];\n nextCursor?: string;\n hasNextPage: boolean;\n prevCursor?: string;\n hasPrevPage?: boolean;\n}\n\n/** GET /audit/logs/:id response body. */\nexport type AuditLogResponse = AuditLogWire;\n\n/** GET /audit/stats response body. */\nexport interface AuditStatsResponse {\n totalLogs: number;\n tablesAudited: number;\n eventsPerDay: Array<{ date: string; count: number }>;\n topActors: Array<{ actorId: string; count: number }>;\n topTables: Array<{ tableName: string; count: number }>;\n operationBreakdown: Record<string, number>;\n severityBreakdown: Record<string, number>;\n}\n\n/** GET /audit/enrichments response body (single item). */\nexport interface AuditEnrichmentSummary {\n table: string;\n operation: string;\n label?: string;\n severity?: \"low\" | \"medium\" | \"high\" | \"critical\";\n compliance?: string[];\n notify?: boolean;\n redact?: string[];\n include?: string[];\n}\n\n/** GET /audit/enrichments response body. */\nexport type AuditEnrichmentsResponse = AuditEnrichmentSummary[];\n\n/** DELETE /audit/logs response body. */\nexport interface AuditPurgeResponse {\n deletedCount: number;\n}\n\n/** DELETE /audit/logs request body. */\nexport interface AuditPurgeRequest {\n /** ISO-8601 date string. */\n before: string;\n tableName?: string;\n}\n\n/** GET /audit/logs query parameters. All values are strings (URL params). */\nexport interface AuditLogsQuery {\n tableName?: string;\n recordId?: string;\n operation?: string;\n actorId?: string;\n severity?: string;\n compliance?: string;\n /** ISO-8601 date string. */\n since?: string;\n /** ISO-8601 date string. */\n until?: string;\n search?: string;\n /** Stringified positive integer. */\n limit?: string;\n cursor?: string;\n /** Log ID to center the query around (fetches entries on both sides). */\n around?: string;\n /** Pagination direction: \"after\" (older, default) or \"before\" (newer). */\n direction?:
|
|
1
|
+
{"version":3,"sources":["../src/product-types.ts"],"sourcesContent":["/**\n * Wire-format types for product endpoints.\n *\n * These represent the JSON shapes that flow over HTTP between customer apps\n * and the console web app. Server-side types use `Date` objects; wire-format\n * types use `string` (ISO-8601) since JSON serialization converts dates.\n */\n\nimport type { ConsolePermission } from \"./index.js\";\n\n// Re-export so consumers can use a single import path\nexport type { ConsolePermission } from \"./index.js\";\n\n// ---------------------------------------------------------------------------\n// Shared\n// ---------------------------------------------------------------------------\n\n/** Standard error envelope returned by all error responses. */\nexport interface ConsoleErrorResponse {\n error: string;\n code?: string;\n}\n\n// ---------------------------------------------------------------------------\n// Audit — wire types\n// ---------------------------------------------------------------------------\n\n/** Serialized audit log entry (Date fields become ISO-8601 strings). */\nexport interface AuditLogWire {\n id: string;\n /** ISO-8601 timestamp (serialized from Date). */\n timestamp: string;\n tableName: string;\n operation: \"INSERT\" | \"UPDATE\" | \"DELETE\";\n recordId: string;\n beforeData?: Record<string, unknown>;\n afterData?: Record<string, unknown>;\n diff?: { changedFields: string[] };\n actorId?: string;\n label?: string;\n description?: string;\n severity?: \"low\" | \"medium\" | \"high\" | \"critical\";\n compliance?: string[];\n notify?: boolean;\n reason?: string;\n metadata?: Record<string, unknown>;\n redactedFields?: string[];\n}\n\n/** GET /audit/logs response body. */\nexport interface AuditLogsResponse {\n entries: AuditLogWire[];\n nextCursor?: string;\n hasNextPage: boolean;\n prevCursor?: string;\n hasPrevPage?: boolean;\n}\n\n/** GET /audit/logs/:id response body. */\nexport type AuditLogResponse = AuditLogWire;\n\n/** GET /audit/stats response body. */\nexport interface AuditStatsResponse {\n totalLogs: number;\n tablesAudited: number;\n eventsPerDay: Array<{ date: string; count: number }>;\n topActors: Array<{ actorId: string; count: number }>;\n topTables: Array<{ tableName: string; count: number }>;\n operationBreakdown: Record<string, number>;\n severityBreakdown: Record<string, number>;\n}\n\n/** GET /audit/enrichments response body (single item). */\nexport interface AuditEnrichmentSummary {\n table: string;\n operation: string;\n label?: string;\n severity?: \"low\" | \"medium\" | \"high\" | \"critical\";\n compliance?: string[];\n notify?: boolean;\n redact?: string[];\n include?: string[];\n}\n\n/** GET /audit/enrichments response body. */\nexport type AuditEnrichmentsResponse = AuditEnrichmentSummary[];\n\n/** DELETE /audit/logs response body. */\nexport interface AuditPurgeResponse {\n deletedCount: number;\n}\n\n/** DELETE /audit/logs request body. */\nexport interface AuditPurgeRequest {\n /** ISO-8601 date string. */\n before: string;\n tableName?: string;\n}\n\n/** GET /audit/logs query parameters. All values are strings (URL params). */\nexport interface AuditLogsQuery {\n tableName?: string;\n recordId?: string;\n operation?: string;\n actorId?: string;\n severity?: string;\n compliance?: string;\n /** ISO-8601 date string. */\n since?: string;\n /** ISO-8601 date string. */\n until?: string;\n search?: string;\n /** Stringified positive integer. */\n limit?: string;\n cursor?: string;\n /** Log ID to center the query around (fetches entries on both sides). */\n around?: string;\n /** Pagination direction: \"after\" (older, default) or \"before\" (newer). */\n direction?: \"after\" | \"before\";\n /** Sort order: \"asc\" (oldest first) or \"desc\" (newest first, default). */\n order?: \"asc\" | \"desc\";\n}\n\n/** GET /audit/stats query parameters. */\nexport interface AuditStatsQuery {\n /** ISO-8601 date string. */\n since?: string;\n /** ISO-8601 date string. */\n until?: string;\n}\n\n/** GET /audit/export query parameters. All values are strings (URL params). */\nexport interface AuditExportQuery {\n /** Export format: \"csv\" or \"json\". Default: \"csv\". */\n format?: \"csv\" | \"json\";\n tableName?: string;\n recordId?: string;\n operation?: \"INSERT\" | \"UPDATE\" | \"DELETE\";\n actorId?: string;\n severity?: string;\n compliance?: string;\n /** ISO-8601 date string. */\n since?: string;\n /** ISO-8601 date string. */\n until?: string;\n search?: string;\n}\n\n// ---------------------------------------------------------------------------\n// Tenant — wire types\n// ---------------------------------------------------------------------------\n\n/** Serialized tenant record (Date fields become ISO-8601 strings). */\nexport interface TenantWire {\n id: string;\n name: string;\n slug: string;\n /** ISO-8601 timestamp (serialized from Date | string). */\n createdAt: string;\n [key: string]: unknown;\n}\n\n/** GET /tenant/tenants response body. */\nexport type TenantsResponse = TenantWire[];\n\n/** GET /tenant/tenants/:id response body. */\nexport type TenantResponse = TenantWire;\n\n/** POST /tenant/tenants request body. */\nexport interface CreateTenantRequest {\n name: string;\n slug: string;\n}\n\n/** PATCH /tenant/tenants/:id request body. */\nexport interface UpdateTenantRequest {\n name?: string;\n slug?: string;\n}\n\n/** GET /tenant/stats response body. */\nexport interface TenantStatsResponse {\n tenantCount: number;\n}\n\n/** GET /tenant/tenants query parameters. All values are strings (URL params). */\nexport interface TenantsQuery {\n /** Stringified positive integer. */\n limit?: string;\n /** Stringified non-negative integer. */\n offset?: string;\n}\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
|
package/dist/product-types.d.cts
CHANGED
|
@@ -163,9 +163,9 @@ interface AuditLogsQuery {
|
|
|
163
163
|
/** Log ID to center the query around (fetches entries on both sides). */
|
|
164
164
|
around?: string;
|
|
165
165
|
/** Pagination direction: "after" (older, default) or "before" (newer). */
|
|
166
|
-
direction?:
|
|
166
|
+
direction?: "after" | "before";
|
|
167
167
|
/** Sort order: "asc" (oldest first) or "desc" (newest first, default). */
|
|
168
|
-
order?:
|
|
168
|
+
order?: "asc" | "desc";
|
|
169
169
|
}
|
|
170
170
|
/** GET /audit/stats query parameters. */
|
|
171
171
|
interface AuditStatsQuery {
|
|
@@ -177,10 +177,10 @@ interface AuditStatsQuery {
|
|
|
177
177
|
/** GET /audit/export query parameters. All values are strings (URL params). */
|
|
178
178
|
interface AuditExportQuery {
|
|
179
179
|
/** Export format: "csv" or "json". Default: "csv". */
|
|
180
|
-
format?:
|
|
180
|
+
format?: "csv" | "json";
|
|
181
181
|
tableName?: string;
|
|
182
182
|
recordId?: string;
|
|
183
|
-
operation?:
|
|
183
|
+
operation?: "INSERT" | "UPDATE" | "DELETE";
|
|
184
184
|
actorId?: string;
|
|
185
185
|
severity?: string;
|
|
186
186
|
compliance?: string;
|
package/dist/product-types.d.ts
CHANGED
|
@@ -105,9 +105,9 @@ export interface AuditLogsQuery {
|
|
|
105
105
|
/** Log ID to center the query around (fetches entries on both sides). */
|
|
106
106
|
around?: string;
|
|
107
107
|
/** Pagination direction: "after" (older, default) or "before" (newer). */
|
|
108
|
-
direction?:
|
|
108
|
+
direction?: "after" | "before";
|
|
109
109
|
/** Sort order: "asc" (oldest first) or "desc" (newest first, default). */
|
|
110
|
-
order?:
|
|
110
|
+
order?: "asc" | "desc";
|
|
111
111
|
}
|
|
112
112
|
/** GET /audit/stats query parameters. */
|
|
113
113
|
export interface AuditStatsQuery {
|
|
@@ -119,10 +119,10 @@ export interface AuditStatsQuery {
|
|
|
119
119
|
/** GET /audit/export query parameters. All values are strings (URL params). */
|
|
120
120
|
export interface AuditExportQuery {
|
|
121
121
|
/** Export format: "csv" or "json". Default: "csv". */
|
|
122
|
-
format?:
|
|
122
|
+
format?: "csv" | "json";
|
|
123
123
|
tableName?: string;
|
|
124
124
|
recordId?: string;
|
|
125
|
-
operation?:
|
|
125
|
+
operation?: "INSERT" | "UPDATE" | "DELETE";
|
|
126
126
|
actorId?: string;
|
|
127
127
|
severity?: string;
|
|
128
128
|
compliance?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product-types.d.ts","sourceRoot":"","sources":["../src/product-types.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"product-types.d.ts","sourceRoot":"","sources":["../src/product-types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED