dev #3

Merged
aboutrax merged 20 commits from dev into main 2025-12-24 15:05:02 +00:00
2 changed files with 17 additions and 0 deletions
Showing only changes of commit ce69b4ff6c - Show all commits

View File

@@ -0,0 +1,7 @@
package com.abnov.infisicalbridge.dto;
public record InfisicalWebhookEventResponse(
String event,
ProjectResponse project,
long timestamp) {
}

View File

@@ -0,0 +1,10 @@
package com.abnov.infisicalbridge.dto;
public record ProjectResponse(
String workspaceId,
String projectId,
String projectName,
String environment,
String secretPath) {
}