@budibase/pro 2.31.8 → 2.32.1

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.
@@ -62,6 +62,13 @@ export declare const dayPasses: (value: number) => {
62
62
  triggers: number[];
63
63
  };
64
64
  };
65
+ export declare const budibaseAICredits: (value: number) => {
66
+ budibaseAICredits: {
67
+ name: string;
68
+ value: number;
69
+ triggers: number[];
70
+ };
71
+ };
65
72
  export declare const automationLogRetentionDays: (value: number) => {
66
73
  automationLogRetentionDays: {
67
74
  name: string;
@@ -76,3 +83,10 @@ export declare const appBackupRetentionDays: (value: number) => {
76
83
  triggers: never[];
77
84
  };
78
85
  };
86
+ export declare const customAIConfigurations: (value: number) => {
87
+ aiCustomConfigs: {
88
+ name: string;
89
+ value: number;
90
+ triggers: never[];
91
+ };
92
+ };
@@ -1,6 +1,6 @@
1
1
  import { Automation, AutomationLogPage, AutomationResults, AutomationStatus } from "@budibase/types";
2
2
  export declare const oldestLogDate: () => Promise<string>;
3
- export declare function getStatus(results: AutomationResults): AutomationStatus;
3
+ export declare function getStatus(results: AutomationResults): AutomationStatus.SUCCESS | AutomationStatus.ERROR | AutomationStatus.STOPPED | AutomationStatus.STOPPED_ERROR;
4
4
  export declare function generateAutomationLogID(isoDate: string, status: string, automationId: string): string;
5
5
  export declare function getAllLogs(startDate: string, endDate: string, opts?: {
6
6
  docs: boolean;