changed known policies enum

This commit is contained in:
Stephan D
2026-03-02 23:48:59 +01:00
parent 7559d4d09b
commit 2f77d9d972
8 changed files with 160 additions and 11 deletions

View File

@@ -2,8 +2,10 @@ import 'package:flutter/material.dart';
class CommonConstants {
static String apiProto = 'https';
static String apiHost = 'app.sendico.io';
// static String apiProto = 'https';
// static String apiHost = 'app.sendico.io';
static String apiProto = 'http';
static String apiHost = 'localhost:3000';
static String apiEndpoint = '/api/v1';
static String amplitudeSecret = 'c3d75b3e2520d708440acbb16b923e79';
static String amplitudeServerZone = 'EU';

View File

@@ -15,6 +15,10 @@ enum ResourceType {
@JsonValue('automations')
automations,
/// Tracks changes made to resources
@JsonValue('callbacks')
callbacks,
/// Tracks changes made to resources
@JsonValue('changes')
changes,