@rudderhq/shared 0.1.0-canary.4 → 0.1.0-canary.6
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.
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +10 -10
- package/package.json +1 -1
package/dist/constants.d.ts
CHANGED
|
@@ -63,7 +63,7 @@ export declare const AUTOMATION_RUN_SOURCES: readonly ["schedule", "manual", "ap
|
|
|
63
63
|
export type AutomationRunSource = (typeof AUTOMATION_RUN_SOURCES)[number];
|
|
64
64
|
export declare const PAUSE_REASONS: readonly ["manual", "budget", "system"];
|
|
65
65
|
export type PauseReason = (typeof PAUSE_REASONS)[number];
|
|
66
|
-
export declare const PROJECT_COLORS: readonly ["#
|
|
66
|
+
export declare const PROJECT_COLORS: readonly ["#4f46e5", "#7c3aed", "#db2777", "#dc2626", "#ea580c", "#ca8a04", "#16a34a", "#0d9488", "#0891b2", "#2563eb"];
|
|
67
67
|
export declare const APPROVAL_TYPES: readonly ["hire_agent", "approve_ceo_strategy", "budget_override_required", "chat_issue_creation", "chat_operation"];
|
|
68
68
|
export type ApprovalType = (typeof APPROVAL_TYPES)[number];
|
|
69
69
|
export declare const APPROVAL_STATUSES: readonly ["pending", "revision_requested", "approved", "rejected", "cancelled"];
|
package/dist/constants.js
CHANGED
|
@@ -166,16 +166,16 @@ export const AUTOMATION_RUN_STATUSES = [
|
|
|
166
166
|
export const AUTOMATION_RUN_SOURCES = ["schedule", "manual", "api", "webhook"];
|
|
167
167
|
export const PAUSE_REASONS = ["manual", "budget", "system"];
|
|
168
168
|
export const PROJECT_COLORS = [
|
|
169
|
-
"#
|
|
170
|
-
"#
|
|
171
|
-
"#
|
|
172
|
-
"#
|
|
173
|
-
"#
|
|
174
|
-
"#
|
|
175
|
-
"#
|
|
176
|
-
"#
|
|
177
|
-
"#
|
|
178
|
-
"#
|
|
169
|
+
"#4f46e5", // indigo
|
|
170
|
+
"#7c3aed", // violet
|
|
171
|
+
"#db2777", // pink
|
|
172
|
+
"#dc2626", // red
|
|
173
|
+
"#ea580c", // orange
|
|
174
|
+
"#ca8a04", // yellow
|
|
175
|
+
"#16a34a", // green
|
|
176
|
+
"#0d9488", // teal
|
|
177
|
+
"#0891b2", // cyan
|
|
178
|
+
"#2563eb", // blue
|
|
179
179
|
];
|
|
180
180
|
export const APPROVAL_TYPES = [
|
|
181
181
|
"hire_agent",
|