added version control & cloudflare cache clearing

This commit is contained in:
Prince
2026-06-21 00:25:15 +02:00
parent a367acd81d
commit caf4e4bc89
16 changed files with 348 additions and 45 deletions

View File

@@ -0,0 +1,33 @@
package zw.qantra.tm.domain.dtos;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
@Data
@NoArgsConstructor
@AllArgsConstructor
public class CloudflarePurgeResponse {
private boolean success;
private List<CloudflareError> errors;
private List<String> messages;
private CloudflareResult result;
@Data
@NoArgsConstructor
@AllArgsConstructor
public static class CloudflareError {
private int code;
private String message;
}
@Data
@NoArgsConstructor
@AllArgsConstructor
public static class CloudflareResult {
private String id;
}
}

View File

@@ -14,6 +14,7 @@ public class GroupBatchItemUpdateRequest {
private BigDecimal amount;
private String recipientName;
private String recipientPhone;
private String recipientAccount;
private String billClientId;
private String billName;
private String billProductName;