@tolinax/ayoune-interfaces 2026.16.0 → 2026.18.0
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/data/modelNames.d.ts +21 -0
- package/data/modelNames.js +21 -0
- package/data/modelsAndRights.js +150 -0
- package/interfaces/IAIAgent.d.ts +65 -1
- package/interfaces/IAIAgentCalibrationLog.d.ts +16 -0
- package/interfaces/IAIAgentCalibrationLog.js +2 -0
- package/interfaces/IAIAgentExample.d.ts +24 -0
- package/interfaces/IAIAgentExample.js +2 -0
- package/interfaces/IAICommand.d.ts +36 -0
- package/interfaces/IAICommand.js +2 -0
- package/interfaces/IAIConversation.d.ts +16 -0
- package/interfaces/IAICostTracker.d.ts +29 -0
- package/interfaces/IAICostTracker.js +2 -0
- package/interfaces/IAICronJob.d.ts +25 -0
- package/interfaces/IAICronJob.js +2 -0
- package/interfaces/IAIEnterpriseControl.d.ts +37 -0
- package/interfaces/IAIEnterpriseControl.js +2 -0
- package/interfaces/IAIHook.d.ts +35 -0
- package/interfaces/IAIHook.js +2 -0
- package/interfaces/IAIKnowledgePack.d.ts +26 -0
- package/interfaces/IAIKnowledgePack.js +2 -0
- package/interfaces/IAILog.d.ts +9 -0
- package/interfaces/IAIMemory.d.ts +18 -0
- package/interfaces/IAIMemory.js +2 -0
- package/interfaces/IAIOutputStyle.d.ts +20 -0
- package/interfaces/IAIOutputStyle.js +2 -0
- package/interfaces/IAIPlugin.d.ts +29 -0
- package/interfaces/IAIPlugin.js +2 -0
- package/interfaces/IAITool.d.ts +40 -0
- package/interfaces/IAITool.js +2 -0
- package/interfaces/IAIWorkflow.d.ts +45 -0
- package/interfaces/IAIWorkflow.js +2 -0
- package/interfaces/IAIWorkflowRun.d.ts +34 -0
- package/interfaces/IAIWorkflowRun.js +2 -0
- package/interfaces/IAdCampaign.d.ts +16 -0
- package/interfaces/IAdGroup.d.ts +16 -0
- package/interfaces/IGoogleAdsAudienceSync.d.ts +13 -0
- package/interfaces/IGoogleAdsAudienceSync.js +2 -0
- package/interfaces/IGoogleAdsCampaignCriterion.d.ts +27 -0
- package/interfaces/IGoogleAdsCampaignCriterion.js +2 -0
- package/interfaces/IGoogleAdsChangeLog.d.ts +14 -0
- package/interfaces/IGoogleAdsChangeLog.js +2 -0
- package/interfaces/IGoogleAdsConversion.d.ts +17 -0
- package/interfaces/IGoogleAdsConversion.js +2 -0
- package/interfaces/IGoogleAdsSharedCriterion.d.ts +17 -0
- package/interfaces/IGoogleAdsSharedCriterion.js +2 -0
- package/interfaces/IGoogleAdsUserList.d.ts +20 -0
- package/interfaces/IGoogleAdsUserList.js +2 -0
- package/interfaces/IKnowledgeChunk.d.ts +48 -0
- package/interfaces/INotificationPreference.d.ts +8 -0
- package/interfaces/INotificationPreference.js +2 -0
- package/interfaces/IWebPage.d.ts +5 -0
- package/interfaces/IWebsite.d.ts +26 -0
- package/interfaces/index.d.ts +21 -0
- package/interfaces/index.js +21 -0
- package/package.json +1 -1
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
export interface IAIOutputStyle extends IDefaultFields {
|
|
3
|
+
_customerID: ObjectId;
|
|
4
|
+
_clientID?: ObjectId[];
|
|
5
|
+
_subID?: ObjectId[];
|
|
6
|
+
name?: string;
|
|
7
|
+
description?: string;
|
|
8
|
+
status?: 'active' | 'inactive';
|
|
9
|
+
styleType?: 'concise' | 'detailed' | 'structured' | 'conversational' | 'report' | 'custom';
|
|
10
|
+
formatInstructions?: string;
|
|
11
|
+
structureTemplate?: string;
|
|
12
|
+
includeSourceCitations?: boolean;
|
|
13
|
+
includeCostInfo?: boolean;
|
|
14
|
+
includeConfidenceScores?: boolean;
|
|
15
|
+
maxResponseLength?: number;
|
|
16
|
+
language?: string;
|
|
17
|
+
_agents?: ObjectId[];
|
|
18
|
+
global?: boolean;
|
|
19
|
+
isTemplate?: boolean;
|
|
20
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
export interface IAIPlugin extends IDefaultFields {
|
|
3
|
+
_customerID: ObjectId;
|
|
4
|
+
_clientID?: ObjectId[];
|
|
5
|
+
_subID?: ObjectId[];
|
|
6
|
+
name?: string;
|
|
7
|
+
description?: string;
|
|
8
|
+
version?: string;
|
|
9
|
+
status?: 'active' | 'inactive' | 'error';
|
|
10
|
+
kind?: 'builtin' | 'bundled' | 'external' | 'custom';
|
|
11
|
+
manifest?: {
|
|
12
|
+
tools?: ObjectId[];
|
|
13
|
+
hooks?: ObjectId[];
|
|
14
|
+
commands?: ObjectId[];
|
|
15
|
+
};
|
|
16
|
+
config?: Record<string, any>;
|
|
17
|
+
externalConfig?: {
|
|
18
|
+
packageName?: string;
|
|
19
|
+
endpoint?: string;
|
|
20
|
+
authType?: 'none' | 'api-key' | 'oauth';
|
|
21
|
+
credentials?: string;
|
|
22
|
+
};
|
|
23
|
+
lifecycle?: {
|
|
24
|
+
initCommands?: string[];
|
|
25
|
+
shutdownCommands?: string[];
|
|
26
|
+
};
|
|
27
|
+
initOnStartup?: boolean;
|
|
28
|
+
global?: boolean;
|
|
29
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
export interface IAITool extends IDefaultFields {
|
|
3
|
+
_customerID: ObjectId;
|
|
4
|
+
_clientID?: ObjectId[];
|
|
5
|
+
_subID?: ObjectId[];
|
|
6
|
+
name?: string;
|
|
7
|
+
description?: string;
|
|
8
|
+
status?: 'active' | 'inactive';
|
|
9
|
+
toolType: 'builtin' | 'custom-function' | 'api-call' | 'data-operation' | 'mcp' | 'web-fetch' | 'web-search';
|
|
10
|
+
permissionLevel?: 'read-only' | 'workspace-write' | 'full-access';
|
|
11
|
+
inputSchema?: any;
|
|
12
|
+
outputSchema?: any;
|
|
13
|
+
apiConfig?: {
|
|
14
|
+
endpoint: string;
|
|
15
|
+
method: 'GET' | 'POST' | 'PUT' | 'DELETE';
|
|
16
|
+
headers?: Record<string, string>;
|
|
17
|
+
bodyTemplate?: string;
|
|
18
|
+
timeoutMs?: number;
|
|
19
|
+
};
|
|
20
|
+
_customFunction?: ObjectId;
|
|
21
|
+
mcpConfig?: {
|
|
22
|
+
serverName: string;
|
|
23
|
+
transport: 'stdio' | 'sse' | 'http' | 'websocket';
|
|
24
|
+
endpoint?: string;
|
|
25
|
+
toolPrefix?: string;
|
|
26
|
+
oauth?: any;
|
|
27
|
+
};
|
|
28
|
+
dataOperation?: {
|
|
29
|
+
model: string;
|
|
30
|
+
operation: 'find' | 'aggregate' | 'count' | 'distinct';
|
|
31
|
+
pipeline?: any[];
|
|
32
|
+
};
|
|
33
|
+
_preHooks?: ObjectId[];
|
|
34
|
+
_postHooks?: ObjectId[];
|
|
35
|
+
_allowedAgents?: ObjectId[];
|
|
36
|
+
rateLimitPerMinute?: number;
|
|
37
|
+
rateLimitPerDay?: number;
|
|
38
|
+
deferredLoading?: boolean;
|
|
39
|
+
global?: boolean;
|
|
40
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
export interface IAIWorkflowStep {
|
|
3
|
+
stepId: string;
|
|
4
|
+
name: string;
|
|
5
|
+
type: 'agent-task' | 'review-gate' | 'approval' | 'notification' | 'conditional' | 'parallel' | 'sub-workflow';
|
|
6
|
+
_agent?: ObjectId;
|
|
7
|
+
taskPrompt?: string;
|
|
8
|
+
reviewType?: 'legal' | 'security' | 'analytics' | 'qa' | 'custom';
|
|
9
|
+
_reviewer?: ObjectId;
|
|
10
|
+
_approver?: ObjectId;
|
|
11
|
+
notificationConfig?: {
|
|
12
|
+
channel: 'email' | 'socket' | 'telegram' | 'webhook';
|
|
13
|
+
template?: string;
|
|
14
|
+
recipients?: string[];
|
|
15
|
+
};
|
|
16
|
+
condition?: {
|
|
17
|
+
field: string;
|
|
18
|
+
operator: string;
|
|
19
|
+
value: any;
|
|
20
|
+
thenStep: string;
|
|
21
|
+
elseStep: string;
|
|
22
|
+
};
|
|
23
|
+
parallelSteps?: string[];
|
|
24
|
+
_subWorkflow?: ObjectId;
|
|
25
|
+
timeoutMs?: number;
|
|
26
|
+
retryCount?: number;
|
|
27
|
+
onFailure?: 'stop' | 'skip' | 'retry' | 'escalate';
|
|
28
|
+
nextStep?: string;
|
|
29
|
+
sortOrder?: number;
|
|
30
|
+
}
|
|
31
|
+
export interface IAIWorkflow extends IDefaultFields {
|
|
32
|
+
_customerID: ObjectId;
|
|
33
|
+
_clientID?: ObjectId[];
|
|
34
|
+
_subID?: ObjectId[];
|
|
35
|
+
name?: string;
|
|
36
|
+
description?: string;
|
|
37
|
+
status?: 'active' | 'inactive' | 'draft';
|
|
38
|
+
steps?: IAIWorkflowStep[];
|
|
39
|
+
feedbackLoopEnabled?: boolean;
|
|
40
|
+
triggerType?: 'manual' | 'event' | 'schedule' | 'agent-request' | 'cron';
|
|
41
|
+
triggerConfig?: any;
|
|
42
|
+
_cronJob?: ObjectId;
|
|
43
|
+
global?: boolean;
|
|
44
|
+
isTemplate?: boolean;
|
|
45
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
export interface IAIWorkflowStepResult {
|
|
3
|
+
stepId: string;
|
|
4
|
+
status: 'pending' | 'running' | 'completed' | 'failed' | 'skipped';
|
|
5
|
+
startedAt?: Date;
|
|
6
|
+
completedAt?: Date;
|
|
7
|
+
input?: any;
|
|
8
|
+
output?: any;
|
|
9
|
+
error?: string;
|
|
10
|
+
reviewResult?: 'approved' | 'rejected' | 'revision-needed';
|
|
11
|
+
reviewNotes?: string;
|
|
12
|
+
}
|
|
13
|
+
export interface IAIWorkflowActivityEntry {
|
|
14
|
+
timestamp: Date;
|
|
15
|
+
action: string;
|
|
16
|
+
_agent?: ObjectId;
|
|
17
|
+
_user?: ObjectId;
|
|
18
|
+
details?: string;
|
|
19
|
+
}
|
|
20
|
+
export interface IAIWorkflowRun extends IDefaultFields {
|
|
21
|
+
_customerID: ObjectId;
|
|
22
|
+
_clientID?: ObjectId[];
|
|
23
|
+
_subID?: ObjectId[];
|
|
24
|
+
_workflow: ObjectId;
|
|
25
|
+
_conversation?: ObjectId;
|
|
26
|
+
status: 'running' | 'paused' | 'completed' | 'failed' | 'cancelled';
|
|
27
|
+
currentStep?: string;
|
|
28
|
+
stepResults?: IAIWorkflowStepResult[];
|
|
29
|
+
activityLog?: IAIWorkflowActivityEntry[];
|
|
30
|
+
totalCostUSD?: number;
|
|
31
|
+
startedAt?: Date;
|
|
32
|
+
completedAt?: Date;
|
|
33
|
+
_startedBy?: ObjectId;
|
|
34
|
+
}
|
|
@@ -3,6 +3,7 @@ export interface IAdCampaign extends IDefaultFields {
|
|
|
3
3
|
_customerID: ObjectId;
|
|
4
4
|
_clientID?: ObjectId[];
|
|
5
5
|
_subID?: ObjectId[];
|
|
6
|
+
_adAccount?: ObjectId;
|
|
6
7
|
status?: string;
|
|
7
8
|
name?: string;
|
|
8
9
|
type?: string;
|
|
@@ -17,4 +18,19 @@ export interface IAdCampaign extends IDefaultFields {
|
|
|
17
18
|
startDate?: Date;
|
|
18
19
|
endDate?: Date;
|
|
19
20
|
onlyForNewCustomers?: boolean;
|
|
21
|
+
google_resource_name?: string;
|
|
22
|
+
google_id?: number;
|
|
23
|
+
google_data?: any;
|
|
24
|
+
google_metrics?: {
|
|
25
|
+
clicks?: number;
|
|
26
|
+
impressions?: number;
|
|
27
|
+
ctr?: number;
|
|
28
|
+
average_cpc?: number;
|
|
29
|
+
cost_micros?: number;
|
|
30
|
+
conversions?: number;
|
|
31
|
+
conversions_value?: number;
|
|
32
|
+
};
|
|
33
|
+
lastSyncedAt?: Date;
|
|
34
|
+
_deleted?: boolean;
|
|
35
|
+
_deletedAt?: Date;
|
|
20
36
|
}
|
package/interfaces/IAdGroup.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export interface IAdGroup extends IDefaultFields {
|
|
|
3
3
|
_customerID: ObjectId;
|
|
4
4
|
_clientID?: ObjectId[];
|
|
5
5
|
_subID?: ObjectId[];
|
|
6
|
+
_adAccount?: ObjectId;
|
|
6
7
|
_adCampaign: ObjectId;
|
|
7
8
|
status?: string;
|
|
8
9
|
name?: string;
|
|
@@ -10,4 +11,19 @@ export interface IAdGroup extends IDefaultFields {
|
|
|
10
11
|
goal?: string;
|
|
11
12
|
provider?: string;
|
|
12
13
|
rotation?: string;
|
|
14
|
+
cpcBidMicros?: number;
|
|
15
|
+
google_resource_name?: string;
|
|
16
|
+
google_id?: number;
|
|
17
|
+
google_campaign_resource_name?: string;
|
|
18
|
+
google_data?: any;
|
|
19
|
+
google_metrics?: {
|
|
20
|
+
clicks?: number;
|
|
21
|
+
impressions?: number;
|
|
22
|
+
ctr?: number;
|
|
23
|
+
average_cpc?: number;
|
|
24
|
+
cost_micros?: number;
|
|
25
|
+
};
|
|
26
|
+
lastSyncedAt?: Date;
|
|
27
|
+
_deleted?: boolean;
|
|
28
|
+
_deletedAt?: Date;
|
|
13
29
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
export interface IGoogleAdsAudienceSync extends IDefaultFields {
|
|
3
|
+
_customerID: ObjectId;
|
|
4
|
+
_adAccount: ObjectId;
|
|
5
|
+
_consumerListID?: ObjectId;
|
|
6
|
+
googleUserListId?: string;
|
|
7
|
+
google_resource_name?: string;
|
|
8
|
+
name?: string;
|
|
9
|
+
lastSyncedAt?: Date;
|
|
10
|
+
memberCount?: number;
|
|
11
|
+
status?: string;
|
|
12
|
+
syncDirection?: string;
|
|
13
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
export interface IGoogleAdsCampaignCriterion extends IDefaultFields {
|
|
3
|
+
_customerID: ObjectId;
|
|
4
|
+
_adAccount: ObjectId;
|
|
5
|
+
_adCampaign?: ObjectId;
|
|
6
|
+
google_resource_name: string;
|
|
7
|
+
google_campaign_resource_name?: string;
|
|
8
|
+
criterionId?: number;
|
|
9
|
+
type?: string;
|
|
10
|
+
negative?: boolean;
|
|
11
|
+
displayName?: string;
|
|
12
|
+
status?: string;
|
|
13
|
+
keyword?: {
|
|
14
|
+
text?: string;
|
|
15
|
+
matchType?: string;
|
|
16
|
+
};
|
|
17
|
+
location?: {
|
|
18
|
+
geoTargetConstant?: string;
|
|
19
|
+
};
|
|
20
|
+
language?: {
|
|
21
|
+
languageConstant?: string;
|
|
22
|
+
};
|
|
23
|
+
google_data?: any;
|
|
24
|
+
lastSyncedAt?: Date;
|
|
25
|
+
_deleted?: boolean;
|
|
26
|
+
_deletedAt?: Date;
|
|
27
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
export interface IGoogleAdsChangeLog extends IDefaultFields {
|
|
3
|
+
_customerID: ObjectId;
|
|
4
|
+
_adAccount: ObjectId;
|
|
5
|
+
_userID?: ObjectId;
|
|
6
|
+
entity: string;
|
|
7
|
+
entityId?: string;
|
|
8
|
+
google_resource_name?: string;
|
|
9
|
+
action: string;
|
|
10
|
+
before?: any;
|
|
11
|
+
after?: any;
|
|
12
|
+
source?: string;
|
|
13
|
+
timestamp: Date;
|
|
14
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
export interface IGoogleAdsConversion extends IDefaultFields {
|
|
3
|
+
_customerID: ObjectId;
|
|
4
|
+
_adAccount: ObjectId;
|
|
5
|
+
_consumerID?: ObjectId;
|
|
6
|
+
conversionAction: string;
|
|
7
|
+
conversionDateTime: string;
|
|
8
|
+
conversionValue?: number;
|
|
9
|
+
currencyCode?: string;
|
|
10
|
+
gclid?: string;
|
|
11
|
+
hashedEmail?: string;
|
|
12
|
+
hashedPhone?: string;
|
|
13
|
+
orderId?: string;
|
|
14
|
+
status?: string;
|
|
15
|
+
uploadedAt?: Date;
|
|
16
|
+
googleResponse?: any;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
export interface IGoogleAdsSharedCriterion extends IDefaultFields {
|
|
3
|
+
_customerID: ObjectId;
|
|
4
|
+
_adAccount: ObjectId;
|
|
5
|
+
google_resource_name: string;
|
|
6
|
+
google_shared_set_resource_name?: string;
|
|
7
|
+
criterionId?: number;
|
|
8
|
+
type?: string;
|
|
9
|
+
keyword?: {
|
|
10
|
+
text?: string;
|
|
11
|
+
matchType?: string;
|
|
12
|
+
};
|
|
13
|
+
google_data?: any;
|
|
14
|
+
lastSyncedAt?: Date;
|
|
15
|
+
_deleted?: boolean;
|
|
16
|
+
_deletedAt?: Date;
|
|
17
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
export interface IGoogleAdsUserList extends IDefaultFields {
|
|
3
|
+
_customerID: ObjectId;
|
|
4
|
+
_adAccount: ObjectId;
|
|
5
|
+
google_resource_name: string;
|
|
6
|
+
google_id?: number;
|
|
7
|
+
name?: string;
|
|
8
|
+
description?: string;
|
|
9
|
+
type?: string;
|
|
10
|
+
membershipStatus?: string;
|
|
11
|
+
sizeForSearch?: number;
|
|
12
|
+
sizeForDisplay?: number;
|
|
13
|
+
eligibleForSearch?: boolean;
|
|
14
|
+
eligibleForDisplay?: boolean;
|
|
15
|
+
matchRatePercentage?: number;
|
|
16
|
+
google_data?: any;
|
|
17
|
+
lastSyncedAt?: Date;
|
|
18
|
+
_deleted?: boolean;
|
|
19
|
+
_deletedAt?: Date;
|
|
20
|
+
}
|
|
@@ -28,4 +28,52 @@ export interface IKnowledgeChunk extends IDefaultFields {
|
|
|
28
28
|
embeddedAt?: Date;
|
|
29
29
|
consumerVisible?: boolean;
|
|
30
30
|
global?: boolean;
|
|
31
|
+
stableId?: string;
|
|
32
|
+
crossLinks?: IChunkCrossLink[];
|
|
33
|
+
provenance?: {
|
|
34
|
+
sourceVersion?: string;
|
|
35
|
+
extractedAt?: Date;
|
|
36
|
+
extractedBy?: string;
|
|
37
|
+
};
|
|
38
|
+
structuredData?: IChunkStructuredData;
|
|
39
|
+
documentVersion?: string;
|
|
40
|
+
changeType?: 'added' | 'modified' | 'deleted' | 'unchanged';
|
|
41
|
+
}
|
|
42
|
+
export interface IChunkCrossLink {
|
|
43
|
+
_chunk: ObjectId;
|
|
44
|
+
relationship: string;
|
|
45
|
+
}
|
|
46
|
+
export interface IChunkStructuredData {
|
|
47
|
+
facts?: {
|
|
48
|
+
fact: string;
|
|
49
|
+
confidence: number;
|
|
50
|
+
reference?: string;
|
|
51
|
+
}[];
|
|
52
|
+
entities?: {
|
|
53
|
+
name: string;
|
|
54
|
+
type: string;
|
|
55
|
+
aliases?: string[];
|
|
56
|
+
roles?: string[];
|
|
57
|
+
}[];
|
|
58
|
+
decisions?: {
|
|
59
|
+
decision: string;
|
|
60
|
+
rationale?: string;
|
|
61
|
+
date?: Date;
|
|
62
|
+
owner?: string;
|
|
63
|
+
}[];
|
|
64
|
+
tasks?: {
|
|
65
|
+
task: string;
|
|
66
|
+
owner?: string;
|
|
67
|
+
dueDate?: Date;
|
|
68
|
+
status?: string;
|
|
69
|
+
}[];
|
|
70
|
+
risks?: {
|
|
71
|
+
risk: string;
|
|
72
|
+
severity?: string;
|
|
73
|
+
mitigation?: string;
|
|
74
|
+
}[];
|
|
75
|
+
glossaryTerms?: {
|
|
76
|
+
term: string;
|
|
77
|
+
definition: string;
|
|
78
|
+
}[];
|
|
31
79
|
}
|
package/interfaces/IWebPage.d.ts
CHANGED
package/interfaces/IWebsite.d.ts
CHANGED
|
@@ -99,4 +99,30 @@ export interface IWebsite extends IDefaultFields {
|
|
|
99
99
|
globalBodyStart?: string;
|
|
100
100
|
/** Custom HTML injected at end of <body> */
|
|
101
101
|
globalBodyEnd?: string;
|
|
102
|
+
/** Maintenance mode — shows maintenance page instead of content */
|
|
103
|
+
maintenance?: {
|
|
104
|
+
enabled?: boolean;
|
|
105
|
+
title?: string;
|
|
106
|
+
message?: string;
|
|
107
|
+
/** Estimated return time */
|
|
108
|
+
estimatedReturn?: Date;
|
|
109
|
+
/** Allow specific IPs to bypass maintenance */
|
|
110
|
+
allowedIPs?: string[];
|
|
111
|
+
/** Custom HTML for maintenance page */
|
|
112
|
+
customHtml?: string;
|
|
113
|
+
};
|
|
114
|
+
/** Coming soon mode — shows coming soon page for new/unpublished sites */
|
|
115
|
+
comingSoon?: {
|
|
116
|
+
enabled?: boolean;
|
|
117
|
+
title?: string;
|
|
118
|
+
message?: string;
|
|
119
|
+
/** Launch date */
|
|
120
|
+
launchDate?: Date;
|
|
121
|
+
/** Show countdown timer */
|
|
122
|
+
showCountdown?: boolean;
|
|
123
|
+
/** Collect email signups */
|
|
124
|
+
collectEmails?: boolean;
|
|
125
|
+
/** Custom HTML for coming soon page */
|
|
126
|
+
customHtml?: string;
|
|
127
|
+
};
|
|
102
128
|
}
|
package/interfaces/index.d.ts
CHANGED
|
@@ -23,12 +23,26 @@ export * from "./IAffView";
|
|
|
23
23
|
export * from "./IAgency";
|
|
24
24
|
export * from "./IAgendaJob";
|
|
25
25
|
export * from "./IAIAgent";
|
|
26
|
+
export * from "./IAIAgentCalibrationLog";
|
|
27
|
+
export * from "./IAIAgentExample";
|
|
28
|
+
export * from "./IAICommand";
|
|
26
29
|
export * from "./IAIConversation";
|
|
30
|
+
export * from "./IAICostTracker";
|
|
31
|
+
export * from "./IAICronJob";
|
|
32
|
+
export * from "./IAIEnterpriseControl";
|
|
33
|
+
export * from "./IAIHook";
|
|
34
|
+
export * from "./IAIKnowledgePack";
|
|
27
35
|
export * from "./IAILog";
|
|
36
|
+
export * from "./IAIMemory";
|
|
28
37
|
export * from "./IAIMessage";
|
|
29
38
|
export * from "./IAIModelCatalog";
|
|
39
|
+
export * from "./IAIOutputStyle";
|
|
40
|
+
export * from "./IAIPlugin";
|
|
30
41
|
export * from "./IAIProvider";
|
|
31
42
|
export * from "./IAIPrompt";
|
|
43
|
+
export * from "./IAITool";
|
|
44
|
+
export * from "./IAIWorkflow";
|
|
45
|
+
export * from "./IAIWorkflowRun";
|
|
32
46
|
export * from "./IAlert";
|
|
33
47
|
export * from "./IEmbeddingJob";
|
|
34
48
|
export * from "./IAnnouncement";
|
|
@@ -314,6 +328,12 @@ export * from "./IGoal";
|
|
|
314
328
|
export * from "./IGratifyLoopView";
|
|
315
329
|
export * from "./IGoodsReceipt";
|
|
316
330
|
export * from "./IaYOUneGoogleAdsAccount";
|
|
331
|
+
export * from "./IGoogleAdsAudienceSync";
|
|
332
|
+
export * from "./IGoogleAdsCampaignCriterion";
|
|
333
|
+
export * from "./IGoogleAdsChangeLog";
|
|
334
|
+
export * from "./IGoogleAdsConversion";
|
|
335
|
+
export * from "./IGoogleAdsSharedCriterion";
|
|
336
|
+
export * from "./IGoogleAdsUserList";
|
|
317
337
|
export * from "./IGoogleAssistantIntent";
|
|
318
338
|
export * from "./IGridsterOption";
|
|
319
339
|
export * from "./IHashTag";
|
|
@@ -431,6 +451,7 @@ export * from "./INewsletterType";
|
|
|
431
451
|
export * from "./INewsSource";
|
|
432
452
|
export * from "./INotification";
|
|
433
453
|
export * from "./INotificationPolicy";
|
|
454
|
+
export * from "./INotificationPreference";
|
|
434
455
|
export * from "./IOffer";
|
|
435
456
|
export * from "./IOfferCalculation";
|
|
436
457
|
export * from "./IOfferCalculationSchema";
|
package/interfaces/index.js
CHANGED
|
@@ -39,12 +39,26 @@ __exportStar(require("./IAffView"), exports);
|
|
|
39
39
|
__exportStar(require("./IAgency"), exports);
|
|
40
40
|
__exportStar(require("./IAgendaJob"), exports);
|
|
41
41
|
__exportStar(require("./IAIAgent"), exports);
|
|
42
|
+
__exportStar(require("./IAIAgentCalibrationLog"), exports);
|
|
43
|
+
__exportStar(require("./IAIAgentExample"), exports);
|
|
44
|
+
__exportStar(require("./IAICommand"), exports);
|
|
42
45
|
__exportStar(require("./IAIConversation"), exports);
|
|
46
|
+
__exportStar(require("./IAICostTracker"), exports);
|
|
47
|
+
__exportStar(require("./IAICronJob"), exports);
|
|
48
|
+
__exportStar(require("./IAIEnterpriseControl"), exports);
|
|
49
|
+
__exportStar(require("./IAIHook"), exports);
|
|
50
|
+
__exportStar(require("./IAIKnowledgePack"), exports);
|
|
43
51
|
__exportStar(require("./IAILog"), exports);
|
|
52
|
+
__exportStar(require("./IAIMemory"), exports);
|
|
44
53
|
__exportStar(require("./IAIMessage"), exports);
|
|
45
54
|
__exportStar(require("./IAIModelCatalog"), exports);
|
|
55
|
+
__exportStar(require("./IAIOutputStyle"), exports);
|
|
56
|
+
__exportStar(require("./IAIPlugin"), exports);
|
|
46
57
|
__exportStar(require("./IAIProvider"), exports);
|
|
47
58
|
__exportStar(require("./IAIPrompt"), exports);
|
|
59
|
+
__exportStar(require("./IAITool"), exports);
|
|
60
|
+
__exportStar(require("./IAIWorkflow"), exports);
|
|
61
|
+
__exportStar(require("./IAIWorkflowRun"), exports);
|
|
48
62
|
__exportStar(require("./IAlert"), exports);
|
|
49
63
|
__exportStar(require("./IEmbeddingJob"), exports);
|
|
50
64
|
__exportStar(require("./IAnnouncement"), exports);
|
|
@@ -330,6 +344,12 @@ __exportStar(require("./IGoal"), exports);
|
|
|
330
344
|
__exportStar(require("./IGratifyLoopView"), exports);
|
|
331
345
|
__exportStar(require("./IGoodsReceipt"), exports);
|
|
332
346
|
__exportStar(require("./IaYOUneGoogleAdsAccount"), exports);
|
|
347
|
+
__exportStar(require("./IGoogleAdsAudienceSync"), exports);
|
|
348
|
+
__exportStar(require("./IGoogleAdsCampaignCriterion"), exports);
|
|
349
|
+
__exportStar(require("./IGoogleAdsChangeLog"), exports);
|
|
350
|
+
__exportStar(require("./IGoogleAdsConversion"), exports);
|
|
351
|
+
__exportStar(require("./IGoogleAdsSharedCriterion"), exports);
|
|
352
|
+
__exportStar(require("./IGoogleAdsUserList"), exports);
|
|
333
353
|
__exportStar(require("./IGoogleAssistantIntent"), exports);
|
|
334
354
|
__exportStar(require("./IGridsterOption"), exports);
|
|
335
355
|
__exportStar(require("./IHashTag"), exports);
|
|
@@ -447,6 +467,7 @@ __exportStar(require("./INewsletterType"), exports);
|
|
|
447
467
|
__exportStar(require("./INewsSource"), exports);
|
|
448
468
|
__exportStar(require("./INotification"), exports);
|
|
449
469
|
__exportStar(require("./INotificationPolicy"), exports);
|
|
470
|
+
__exportStar(require("./INotificationPreference"), exports);
|
|
450
471
|
__exportStar(require("./IOffer"), exports);
|
|
451
472
|
__exportStar(require("./IOfferCalculation"), exports);
|
|
452
473
|
__exportStar(require("./IOfferCalculationSchema"), exports);
|