@periskope/types 0.6.400 → 0.6.401
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/billing.types.d.ts +14 -0
- package/dist/billing.types.d.ts.map +1 -0
- package/dist/billing.types.js +2 -0
- package/dist/supabase.types.d.ts +93 -67
- package/dist/supabase.types.d.ts.map +1 -1
- package/dist/supabase.types.js +1 -1
- package/dist/types.d.ts +13 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +8 -1
- package/package.json +1 -1
- package/src/supabase.types.ts +91 -74
- package/src/types.ts +15 -0
- package/tsconfig.tsbuildinfo +1 -1
package/src/types.ts
CHANGED
|
@@ -124,6 +124,14 @@ export type OrgAISettings = {
|
|
|
124
124
|
enable_shift_timing?: boolean;
|
|
125
125
|
shift_start_time?: string;
|
|
126
126
|
shift_end_time?: string;
|
|
127
|
+
// New Types
|
|
128
|
+
is_agent_ticketing_enabled?: boolean;
|
|
129
|
+
is_agent_private_notes_enabled?: boolean;
|
|
130
|
+
ai_archetype?: AgentArchetype;
|
|
131
|
+
use_new_agent_base_prompt?: boolean;
|
|
132
|
+
ai_restrictions?: string;
|
|
133
|
+
agent_company_context?: string;
|
|
134
|
+
agent_custom_rules?: string;
|
|
127
135
|
};
|
|
128
136
|
|
|
129
137
|
type OrgAISettingsKey = keyof OrgAISettings;
|
|
@@ -132,6 +140,13 @@ export type OrgAISettingsValue = {
|
|
|
132
140
|
[K in OrgAISettingsKey]: { key: K; value: OrgAISettings[K] };
|
|
133
141
|
}[OrgAISettingsKey];
|
|
134
142
|
|
|
143
|
+
export enum AgentArchetype {
|
|
144
|
+
STRICT_GROUNDED = 'strict_grounded',
|
|
145
|
+
SPARTAN = 'spartan',
|
|
146
|
+
FRIENDLY = 'friendly',
|
|
147
|
+
SALES_FORWARD = 'sales_forward',
|
|
148
|
+
}
|
|
149
|
+
|
|
135
150
|
export type CustomPropertySectionType = {
|
|
136
151
|
id: string;
|
|
137
152
|
name: string;
|