@rightbrain/brain-api-client 0.0.1-dev.150.56bd32f → 0.0.1-dev.151.2f88e50
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/api.ts +1257 -141
- package/dist/api.d.ts +822 -134
- package/dist/api.js +1030 -66
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -6507,6 +6507,25 @@ export interface PaginatedResultSetReportingGroup {
|
|
|
6507
6507
|
*/
|
|
6508
6508
|
'results': Array<ReportingGroup>;
|
|
6509
6509
|
}
|
|
6510
|
+
/**
|
|
6511
|
+
*
|
|
6512
|
+
* @export
|
|
6513
|
+
* @interface PaginatedResultSetScheduleTriggerEventResponse
|
|
6514
|
+
*/
|
|
6515
|
+
export interface PaginatedResultSetScheduleTriggerEventResponse {
|
|
6516
|
+
/**
|
|
6517
|
+
*
|
|
6518
|
+
* @type {PaginationDetails}
|
|
6519
|
+
* @memberof PaginatedResultSetScheduleTriggerEventResponse
|
|
6520
|
+
*/
|
|
6521
|
+
'pagination'?: PaginationDetails;
|
|
6522
|
+
/**
|
|
6523
|
+
* The list of items returned for the current page.
|
|
6524
|
+
* @type {Array<ScheduleTriggerEventResponse>}
|
|
6525
|
+
* @memberof PaginatedResultSetScheduleTriggerEventResponse
|
|
6526
|
+
*/
|
|
6527
|
+
'results': Array<ScheduleTriggerEventResponse>;
|
|
6528
|
+
}
|
|
6510
6529
|
/**
|
|
6511
6530
|
*
|
|
6512
6531
|
* @export
|
|
@@ -6583,6 +6602,25 @@ export interface PaginatedResultSetTaskAgentRead {
|
|
|
6583
6602
|
*/
|
|
6584
6603
|
'results': Array<TaskAgentRead>;
|
|
6585
6604
|
}
|
|
6605
|
+
/**
|
|
6606
|
+
*
|
|
6607
|
+
* @export
|
|
6608
|
+
* @interface PaginatedResultSetTaskAgentShare
|
|
6609
|
+
*/
|
|
6610
|
+
export interface PaginatedResultSetTaskAgentShare {
|
|
6611
|
+
/**
|
|
6612
|
+
*
|
|
6613
|
+
* @type {PaginationDetails}
|
|
6614
|
+
* @memberof PaginatedResultSetTaskAgentShare
|
|
6615
|
+
*/
|
|
6616
|
+
'pagination'?: PaginationDetails;
|
|
6617
|
+
/**
|
|
6618
|
+
* The list of items returned for the current page.
|
|
6619
|
+
* @type {Array<TaskAgentShare>}
|
|
6620
|
+
* @memberof PaginatedResultSetTaskAgentShare
|
|
6621
|
+
*/
|
|
6622
|
+
'results': Array<TaskAgentShare>;
|
|
6623
|
+
}
|
|
6586
6624
|
/**
|
|
6587
6625
|
*
|
|
6588
6626
|
* @export
|
|
@@ -6950,98 +6988,49 @@ export interface Project {
|
|
|
6950
6988
|
/**
|
|
6951
6989
|
*
|
|
6952
6990
|
* @export
|
|
6953
|
-
* @interface
|
|
6991
|
+
* @interface ProjectConfig
|
|
6954
6992
|
*/
|
|
6955
|
-
export interface
|
|
6993
|
+
export interface ProjectConfig {
|
|
6956
6994
|
/**
|
|
6957
6995
|
*
|
|
6958
6996
|
* @type {string}
|
|
6959
|
-
* @memberof
|
|
6997
|
+
* @memberof ProjectConfig
|
|
6960
6998
|
*/
|
|
6961
6999
|
'llm'?: string;
|
|
6962
7000
|
/**
|
|
6963
7001
|
*
|
|
6964
7002
|
* @type {number}
|
|
6965
|
-
* @memberof
|
|
7003
|
+
* @memberof ProjectConfig
|
|
6966
7004
|
*/
|
|
6967
7005
|
'temperature'?: number;
|
|
6968
7006
|
/**
|
|
6969
7007
|
*
|
|
6970
7008
|
* @type {number}
|
|
6971
|
-
* @memberof
|
|
7009
|
+
* @memberof ProjectConfig
|
|
6972
7010
|
*/
|
|
6973
7011
|
'knn'?: number;
|
|
6974
7012
|
/**
|
|
6975
7013
|
*
|
|
6976
7014
|
* @type {Array<string>}
|
|
6977
|
-
* @memberof
|
|
7015
|
+
* @memberof ProjectConfig
|
|
6978
7016
|
*/
|
|
6979
7017
|
'chat_system_commands'?: Array<string> | null;
|
|
6980
7018
|
/**
|
|
6981
7019
|
*
|
|
6982
7020
|
* @type {ConversationalGuardrails}
|
|
6983
|
-
* @memberof
|
|
7021
|
+
* @memberof ProjectConfig
|
|
6984
7022
|
*/
|
|
6985
7023
|
'chat_guardrails'?: ConversationalGuardrails;
|
|
6986
7024
|
/**
|
|
6987
7025
|
* Enable query expansion. Uses an LLM to generate multiple rephrasing of the original query for better broad spectrum vector retrieval
|
|
6988
7026
|
* @type {boolean}
|
|
6989
|
-
* @memberof
|
|
7027
|
+
* @memberof ProjectConfig
|
|
6990
7028
|
*/
|
|
6991
7029
|
'query_expansion'?: boolean;
|
|
6992
7030
|
/**
|
|
6993
7031
|
*
|
|
6994
7032
|
* @type {ModelConfiguration}
|
|
6995
|
-
* @memberof
|
|
6996
|
-
*/
|
|
6997
|
-
'models_config'?: ModelConfiguration;
|
|
6998
|
-
}
|
|
6999
|
-
/**
|
|
7000
|
-
*
|
|
7001
|
-
* @export
|
|
7002
|
-
* @interface ProjectConfigOutput
|
|
7003
|
-
*/
|
|
7004
|
-
export interface ProjectConfigOutput {
|
|
7005
|
-
/**
|
|
7006
|
-
*
|
|
7007
|
-
* @type {string}
|
|
7008
|
-
* @memberof ProjectConfigOutput
|
|
7009
|
-
*/
|
|
7010
|
-
'llm'?: string;
|
|
7011
|
-
/**
|
|
7012
|
-
*
|
|
7013
|
-
* @type {number}
|
|
7014
|
-
* @memberof ProjectConfigOutput
|
|
7015
|
-
*/
|
|
7016
|
-
'temperature'?: number;
|
|
7017
|
-
/**
|
|
7018
|
-
*
|
|
7019
|
-
* @type {number}
|
|
7020
|
-
* @memberof ProjectConfigOutput
|
|
7021
|
-
*/
|
|
7022
|
-
'knn'?: number;
|
|
7023
|
-
/**
|
|
7024
|
-
*
|
|
7025
|
-
* @type {Array<string>}
|
|
7026
|
-
* @memberof ProjectConfigOutput
|
|
7027
|
-
*/
|
|
7028
|
-
'chat_system_commands'?: Array<string> | null;
|
|
7029
|
-
/**
|
|
7030
|
-
*
|
|
7031
|
-
* @type {ConversationalGuardrails}
|
|
7032
|
-
* @memberof ProjectConfigOutput
|
|
7033
|
-
*/
|
|
7034
|
-
'chat_guardrails'?: ConversationalGuardrails;
|
|
7035
|
-
/**
|
|
7036
|
-
* Enable query expansion. Uses an LLM to generate multiple rephrasing of the original query for better broad spectrum vector retrieval
|
|
7037
|
-
* @type {boolean}
|
|
7038
|
-
* @memberof ProjectConfigOutput
|
|
7039
|
-
*/
|
|
7040
|
-
'query_expansion'?: boolean;
|
|
7041
|
-
/**
|
|
7042
|
-
*
|
|
7043
|
-
* @type {ModelConfiguration}
|
|
7044
|
-
* @memberof ProjectConfigOutput
|
|
7033
|
+
* @memberof ProjectConfig
|
|
7045
7034
|
*/
|
|
7046
7035
|
'models_config'?: ModelConfiguration;
|
|
7047
7036
|
}
|
|
@@ -7476,10 +7465,10 @@ export interface ProjectSkillCreate {
|
|
|
7476
7465
|
} | null;
|
|
7477
7466
|
/**
|
|
7478
7467
|
*
|
|
7479
|
-
* @type {
|
|
7468
|
+
* @type {SkillCapabilities}
|
|
7480
7469
|
* @memberof ProjectSkillCreate
|
|
7481
7470
|
*/
|
|
7482
|
-
'capabilities'?:
|
|
7471
|
+
'capabilities'?: SkillCapabilities;
|
|
7483
7472
|
}
|
|
7484
7473
|
/**
|
|
7485
7474
|
*
|
|
@@ -7618,10 +7607,10 @@ export interface ProjectSkillRevisionContent {
|
|
|
7618
7607
|
} | null;
|
|
7619
7608
|
/**
|
|
7620
7609
|
*
|
|
7621
|
-
* @type {
|
|
7610
|
+
* @type {SkillCapabilities}
|
|
7622
7611
|
* @memberof ProjectSkillRevisionContent
|
|
7623
7612
|
*/
|
|
7624
|
-
'capabilities':
|
|
7613
|
+
'capabilities': SkillCapabilities;
|
|
7625
7614
|
/**
|
|
7626
7615
|
*
|
|
7627
7616
|
* @type {string}
|
|
@@ -7703,10 +7692,10 @@ export interface ProjectSkillRevisionCreate {
|
|
|
7703
7692
|
} | null;
|
|
7704
7693
|
/**
|
|
7705
7694
|
*
|
|
7706
|
-
* @type {
|
|
7695
|
+
* @type {SkillCapabilities}
|
|
7707
7696
|
* @memberof ProjectSkillRevisionCreate
|
|
7708
7697
|
*/
|
|
7709
|
-
'capabilities'?:
|
|
7698
|
+
'capabilities'?: SkillCapabilities;
|
|
7710
7699
|
/**
|
|
7711
7700
|
* Optional human note describing this revision.
|
|
7712
7701
|
* @type {string}
|
|
@@ -9305,6 +9294,15 @@ export type Response403Listprojects = {
|
|
|
9305
9294
|
} & MissingAuthenticationErrorResponse | {
|
|
9306
9295
|
reason: 'PERMISSION_CHECK_FAILED';
|
|
9307
9296
|
} & PermissionCheckFailedErrorResponse;
|
|
9297
|
+
/**
|
|
9298
|
+
* @type Response403Listprojectscheduletriggerevents
|
|
9299
|
+
* @export
|
|
9300
|
+
*/
|
|
9301
|
+
export type Response403Listprojectscheduletriggerevents = {
|
|
9302
|
+
reason: 'MISSING_AUTHENTICATION';
|
|
9303
|
+
} & MissingAuthenticationErrorResponse | {
|
|
9304
|
+
reason: 'PERMISSION_CHECK_FAILED';
|
|
9305
|
+
} & PermissionCheckFailedErrorResponse;
|
|
9308
9306
|
/**
|
|
9309
9307
|
* @type Response403Listreportinggroups
|
|
9310
9308
|
* @export
|
|
@@ -9332,6 +9330,15 @@ export type Response403Listslackchannelmappings = {
|
|
|
9332
9330
|
} & MissingAuthenticationErrorResponse | {
|
|
9333
9331
|
reason: 'PERMISSION_CHECK_FAILED';
|
|
9334
9332
|
} & PermissionCheckFailedErrorResponse;
|
|
9333
|
+
/**
|
|
9334
|
+
* @type Response403Listslackchannels
|
|
9335
|
+
* @export
|
|
9336
|
+
*/
|
|
9337
|
+
export type Response403Listslackchannels = {
|
|
9338
|
+
reason: 'MISSING_AUTHENTICATION';
|
|
9339
|
+
} & MissingAuthenticationErrorResponse | {
|
|
9340
|
+
reason: 'PERMISSION_CHECK_FAILED';
|
|
9341
|
+
} & PermissionCheckFailedErrorResponse;
|
|
9335
9342
|
/**
|
|
9336
9343
|
* @type Response403Listslackinstallations
|
|
9337
9344
|
* @export
|
|
@@ -10364,6 +10371,18 @@ export interface ScheduleTriggerListItem {
|
|
|
10364
10371
|
* @memberof ScheduleTriggerListItem
|
|
10365
10372
|
*/
|
|
10366
10373
|
'timezone': string;
|
|
10374
|
+
/**
|
|
10375
|
+
*
|
|
10376
|
+
* @type {string}
|
|
10377
|
+
* @memberof ScheduleTriggerListItem
|
|
10378
|
+
*/
|
|
10379
|
+
'next_run_at'?: string | null;
|
|
10380
|
+
/**
|
|
10381
|
+
*
|
|
10382
|
+
* @type {string}
|
|
10383
|
+
* @memberof ScheduleTriggerListItem
|
|
10384
|
+
*/
|
|
10385
|
+
'expires_at'?: string | null;
|
|
10367
10386
|
}
|
|
10368
10387
|
/**
|
|
10369
10388
|
*
|
|
@@ -10605,38 +10624,19 @@ export interface SkillActivationRead {
|
|
|
10605
10624
|
/**
|
|
10606
10625
|
*
|
|
10607
10626
|
* @export
|
|
10608
|
-
* @interface
|
|
10627
|
+
* @interface SkillCapabilities
|
|
10609
10628
|
*/
|
|
10610
|
-
export interface
|
|
10629
|
+
export interface SkillCapabilities {
|
|
10611
10630
|
/**
|
|
10612
10631
|
* Versioned schema identifier for the capability contract.
|
|
10613
10632
|
* @type {string}
|
|
10614
|
-
* @memberof
|
|
10633
|
+
* @memberof SkillCapabilities
|
|
10615
10634
|
*/
|
|
10616
10635
|
'schema_version': string;
|
|
10617
10636
|
/**
|
|
10618
10637
|
* Declarative dependency requirements for this skill revision.
|
|
10619
10638
|
* @type {Array<DependenciesInner>}
|
|
10620
|
-
* @memberof
|
|
10621
|
-
*/
|
|
10622
|
-
'dependencies': Array<DependenciesInner>;
|
|
10623
|
-
}
|
|
10624
|
-
/**
|
|
10625
|
-
*
|
|
10626
|
-
* @export
|
|
10627
|
-
* @interface SkillCapabilitiesOutput
|
|
10628
|
-
*/
|
|
10629
|
-
export interface SkillCapabilitiesOutput {
|
|
10630
|
-
/**
|
|
10631
|
-
* Versioned schema identifier for the capability contract.
|
|
10632
|
-
* @type {string}
|
|
10633
|
-
* @memberof SkillCapabilitiesOutput
|
|
10634
|
-
*/
|
|
10635
|
-
'schema_version': string;
|
|
10636
|
-
/**
|
|
10637
|
-
* Declarative dependency requirements for this skill revision.
|
|
10638
|
-
* @type {Array<DependenciesInner>}
|
|
10639
|
-
* @memberof SkillCapabilitiesOutput
|
|
10639
|
+
* @memberof SkillCapabilities
|
|
10640
10640
|
*/
|
|
10641
10641
|
'dependencies': Array<DependenciesInner>;
|
|
10642
10642
|
}
|
|
@@ -10894,10 +10894,10 @@ export interface SkillRevisionContent {
|
|
|
10894
10894
|
} | null;
|
|
10895
10895
|
/**
|
|
10896
10896
|
*
|
|
10897
|
-
* @type {
|
|
10897
|
+
* @type {SkillCapabilities}
|
|
10898
10898
|
* @memberof SkillRevisionContent
|
|
10899
10899
|
*/
|
|
10900
|
-
'capabilities':
|
|
10900
|
+
'capabilities': SkillCapabilities;
|
|
10901
10901
|
/**
|
|
10902
10902
|
*
|
|
10903
10903
|
* @type {string}
|
|
@@ -11152,6 +11152,43 @@ export interface SlackChannelMappingUpdate {
|
|
|
11152
11152
|
*/
|
|
11153
11153
|
'task_agent_id'?: string | null;
|
|
11154
11154
|
}
|
|
11155
|
+
/**
|
|
11156
|
+
*
|
|
11157
|
+
* @export
|
|
11158
|
+
* @interface SlackChannelResponse
|
|
11159
|
+
*/
|
|
11160
|
+
export interface SlackChannelResponse {
|
|
11161
|
+
/**
|
|
11162
|
+
* Slack channel ID.
|
|
11163
|
+
* @type {string}
|
|
11164
|
+
* @memberof SlackChannelResponse
|
|
11165
|
+
*/
|
|
11166
|
+
'id': string;
|
|
11167
|
+
/**
|
|
11168
|
+
* Slack channel name.
|
|
11169
|
+
* @type {string}
|
|
11170
|
+
* @memberof SlackChannelResponse
|
|
11171
|
+
*/
|
|
11172
|
+
'name': string;
|
|
11173
|
+
/**
|
|
11174
|
+
* Whether this is a private channel.
|
|
11175
|
+
* @type {boolean}
|
|
11176
|
+
* @memberof SlackChannelResponse
|
|
11177
|
+
*/
|
|
11178
|
+
'is_private': boolean;
|
|
11179
|
+
/**
|
|
11180
|
+
* Whether this channel is archived.
|
|
11181
|
+
* @type {boolean}
|
|
11182
|
+
* @memberof SlackChannelResponse
|
|
11183
|
+
*/
|
|
11184
|
+
'is_archived': boolean;
|
|
11185
|
+
/**
|
|
11186
|
+
* Whether the installed bot is a member of this channel, when reported by Slack.
|
|
11187
|
+
* @type {boolean}
|
|
11188
|
+
* @memberof SlackChannelResponse
|
|
11189
|
+
*/
|
|
11190
|
+
'is_member'?: boolean | null;
|
|
11191
|
+
}
|
|
11155
11192
|
/**
|
|
11156
11193
|
*
|
|
11157
11194
|
* @export
|
|
@@ -11622,6 +11659,115 @@ export interface TaskActiveRevision {
|
|
|
11622
11659
|
*/
|
|
11623
11660
|
'weight'?: number | null;
|
|
11624
11661
|
}
|
|
11662
|
+
/**
|
|
11663
|
+
* Dependency action produced while cloning a shared TaskAgent.
|
|
11664
|
+
* @export
|
|
11665
|
+
* @interface TaskAgentCloneDependencyReportItem
|
|
11666
|
+
*/
|
|
11667
|
+
export interface TaskAgentCloneDependencyReportItem {
|
|
11668
|
+
/**
|
|
11669
|
+
*
|
|
11670
|
+
* @type {string}
|
|
11671
|
+
* @memberof TaskAgentCloneDependencyReportItem
|
|
11672
|
+
*/
|
|
11673
|
+
'kind': TaskAgentCloneDependencyReportItemKindEnum;
|
|
11674
|
+
/**
|
|
11675
|
+
*
|
|
11676
|
+
* @type {string}
|
|
11677
|
+
* @memberof TaskAgentCloneDependencyReportItem
|
|
11678
|
+
*/
|
|
11679
|
+
'source_id'?: string | null;
|
|
11680
|
+
/**
|
|
11681
|
+
*
|
|
11682
|
+
* @type {string}
|
|
11683
|
+
* @memberof TaskAgentCloneDependencyReportItem
|
|
11684
|
+
*/
|
|
11685
|
+
'target_id'?: string | null;
|
|
11686
|
+
/**
|
|
11687
|
+
*
|
|
11688
|
+
* @type {string}
|
|
11689
|
+
* @memberof TaskAgentCloneDependencyReportItem
|
|
11690
|
+
*/
|
|
11691
|
+
'name'?: string | null;
|
|
11692
|
+
/**
|
|
11693
|
+
*
|
|
11694
|
+
* @type {string}
|
|
11695
|
+
* @memberof TaskAgentCloneDependencyReportItem
|
|
11696
|
+
*/
|
|
11697
|
+
'action': TaskAgentCloneDependencyReportItemActionEnum;
|
|
11698
|
+
/**
|
|
11699
|
+
*
|
|
11700
|
+
* @type {string}
|
|
11701
|
+
* @memberof TaskAgentCloneDependencyReportItem
|
|
11702
|
+
*/
|
|
11703
|
+
'status': TaskAgentCloneDependencyReportItemStatusEnum;
|
|
11704
|
+
/**
|
|
11705
|
+
*
|
|
11706
|
+
* @type {string}
|
|
11707
|
+
* @memberof TaskAgentCloneDependencyReportItem
|
|
11708
|
+
*/
|
|
11709
|
+
'reason'?: string | null;
|
|
11710
|
+
/**
|
|
11711
|
+
*
|
|
11712
|
+
* @type {string}
|
|
11713
|
+
* @memberof TaskAgentCloneDependencyReportItem
|
|
11714
|
+
*/
|
|
11715
|
+
'message'?: string | null;
|
|
11716
|
+
}
|
|
11717
|
+
export declare const TaskAgentCloneDependencyReportItemKindEnum: {
|
|
11718
|
+
readonly Task: "task";
|
|
11719
|
+
readonly TaskRevision: "task_revision";
|
|
11720
|
+
readonly Skill: "skill";
|
|
11721
|
+
readonly SkillRevision: "skill_revision";
|
|
11722
|
+
readonly Integration: "integration";
|
|
11723
|
+
readonly IntegrationTool: "integration_tool";
|
|
11724
|
+
readonly McpServer: "mcp_server";
|
|
11725
|
+
readonly McpTool: "mcp_tool";
|
|
11726
|
+
readonly RegisteredTool: "registered_tool";
|
|
11727
|
+
readonly LlmModel: "llm_model";
|
|
11728
|
+
};
|
|
11729
|
+
export type TaskAgentCloneDependencyReportItemKindEnum = typeof TaskAgentCloneDependencyReportItemKindEnum[keyof typeof TaskAgentCloneDependencyReportItemKindEnum];
|
|
11730
|
+
export declare const TaskAgentCloneDependencyReportItemActionEnum: {
|
|
11731
|
+
readonly Cloned: "cloned";
|
|
11732
|
+
readonly Reused: "reused";
|
|
11733
|
+
readonly CreatedPlaceholder: "created_placeholder";
|
|
11734
|
+
readonly Preserved: "preserved";
|
|
11735
|
+
readonly Skipped: "skipped";
|
|
11736
|
+
readonly Failed: "failed";
|
|
11737
|
+
};
|
|
11738
|
+
export type TaskAgentCloneDependencyReportItemActionEnum = typeof TaskAgentCloneDependencyReportItemActionEnum[keyof typeof TaskAgentCloneDependencyReportItemActionEnum];
|
|
11739
|
+
export declare const TaskAgentCloneDependencyReportItemStatusEnum: {
|
|
11740
|
+
readonly Ready: "ready";
|
|
11741
|
+
readonly SetupRequired: "setup_required";
|
|
11742
|
+
readonly Warning: "warning";
|
|
11743
|
+
readonly Failed: "failed";
|
|
11744
|
+
};
|
|
11745
|
+
export type TaskAgentCloneDependencyReportItemStatusEnum = typeof TaskAgentCloneDependencyReportItemStatusEnum[keyof typeof TaskAgentCloneDependencyReportItemStatusEnum];
|
|
11746
|
+
/**
|
|
11747
|
+
* Result wrapper for authenticated TaskAgent share clone.
|
|
11748
|
+
* @export
|
|
11749
|
+
* @interface TaskAgentCloneResult
|
|
11750
|
+
*/
|
|
11751
|
+
export interface TaskAgentCloneResult {
|
|
11752
|
+
/**
|
|
11753
|
+
*
|
|
11754
|
+
* @type {TaskAgentRead}
|
|
11755
|
+
* @memberof TaskAgentCloneResult
|
|
11756
|
+
*/
|
|
11757
|
+
'task_agent': TaskAgentRead;
|
|
11758
|
+
/**
|
|
11759
|
+
*
|
|
11760
|
+
* @type {boolean}
|
|
11761
|
+
* @memberof TaskAgentCloneResult
|
|
11762
|
+
*/
|
|
11763
|
+
'runnable': boolean;
|
|
11764
|
+
/**
|
|
11765
|
+
*
|
|
11766
|
+
* @type {Array<TaskAgentCloneDependencyReportItem>}
|
|
11767
|
+
* @memberof TaskAgentCloneResult
|
|
11768
|
+
*/
|
|
11769
|
+
'dependency_report'?: Array<TaskAgentCloneDependencyReportItem>;
|
|
11770
|
+
}
|
|
11625
11771
|
/**
|
|
11626
11772
|
* Schema for creating a TaskAgent. ``registered_tools`` are intentionally omitted from the public write contract. They remain skill-managed and internal-only.
|
|
11627
11773
|
* @export
|
|
@@ -12010,12 +12156,6 @@ export interface TaskAgentIntegrationRead {
|
|
|
12010
12156
|
* @memberof TaskAgentIntegrationRead
|
|
12011
12157
|
*/
|
|
12012
12158
|
'allowed_tool_ids'?: Array<string> | null;
|
|
12013
|
-
/**
|
|
12014
|
-
* Number of integration tools available to the agent.
|
|
12015
|
-
* @type {number}
|
|
12016
|
-
* @memberof TaskAgentIntegrationRead
|
|
12017
|
-
*/
|
|
12018
|
-
'tool_count': number;
|
|
12019
12159
|
/**
|
|
12020
12160
|
*
|
|
12021
12161
|
* @type {string}
|
|
@@ -12040,6 +12180,12 @@ export interface TaskAgentIntegrationRead {
|
|
|
12040
12180
|
* @memberof TaskAgentIntegrationRead
|
|
12041
12181
|
*/
|
|
12042
12182
|
'source_capability_id'?: string | null;
|
|
12183
|
+
/**
|
|
12184
|
+
* Number of integration tools available to the agent.
|
|
12185
|
+
* @type {number}
|
|
12186
|
+
* @memberof TaskAgentIntegrationRead
|
|
12187
|
+
*/
|
|
12188
|
+
'tool_count': number;
|
|
12043
12189
|
}
|
|
12044
12190
|
export declare const TaskAgentIntegrationReadIntegrationTypeEnum: {
|
|
12045
12191
|
readonly Sheets: "google_sheets";
|
|
@@ -12115,12 +12261,6 @@ export interface TaskAgentMcpServerRead {
|
|
|
12115
12261
|
* @memberof TaskAgentMcpServerRead
|
|
12116
12262
|
*/
|
|
12117
12263
|
'allowed_tool_ids'?: Array<string> | null;
|
|
12118
|
-
/**
|
|
12119
|
-
* Number of tools available to the agent.
|
|
12120
|
-
* @type {number}
|
|
12121
|
-
* @memberof TaskAgentMcpServerRead
|
|
12122
|
-
*/
|
|
12123
|
-
'tool_count': number;
|
|
12124
12264
|
/**
|
|
12125
12265
|
*
|
|
12126
12266
|
* @type {string}
|
|
@@ -12145,6 +12285,12 @@ export interface TaskAgentMcpServerRead {
|
|
|
12145
12285
|
* @memberof TaskAgentMcpServerRead
|
|
12146
12286
|
*/
|
|
12147
12287
|
'source_capability_id'?: string | null;
|
|
12288
|
+
/**
|
|
12289
|
+
* Number of tools available to the agent.
|
|
12290
|
+
* @type {number}
|
|
12291
|
+
* @memberof TaskAgentMcpServerRead
|
|
12292
|
+
*/
|
|
12293
|
+
'tool_count': number;
|
|
12148
12294
|
}
|
|
12149
12295
|
export declare const TaskAgentMcpServerReadProvisionSourceEnum: {
|
|
12150
12296
|
readonly Manual: "manual";
|
|
@@ -12246,12 +12392,6 @@ export interface TaskAgentRegisteredToolRead {
|
|
|
12246
12392
|
* @memberof TaskAgentRegisteredToolRead
|
|
12247
12393
|
*/
|
|
12248
12394
|
'registered_tool_version': string;
|
|
12249
|
-
/**
|
|
12250
|
-
* Human-readable name of the registered first-party tool.
|
|
12251
|
-
* @type {string}
|
|
12252
|
-
* @memberof TaskAgentRegisteredToolRead
|
|
12253
|
-
*/
|
|
12254
|
-
'name': string;
|
|
12255
12395
|
/**
|
|
12256
12396
|
* Attachment order (0-indexed).
|
|
12257
12397
|
* @type {number}
|
|
@@ -12265,41 +12405,47 @@ export interface TaskAgentRegisteredToolRead {
|
|
|
12265
12405
|
*/
|
|
12266
12406
|
'enabled': boolean;
|
|
12267
12407
|
/**
|
|
12268
|
-
*
|
|
12269
|
-
* @type {
|
|
12408
|
+
*
|
|
12409
|
+
* @type {string}
|
|
12270
12410
|
* @memberof TaskAgentRegisteredToolRead
|
|
12271
12411
|
*/
|
|
12272
|
-
'
|
|
12412
|
+
'provision_source': TaskAgentRegisteredToolReadProvisionSourceEnum;
|
|
12273
12413
|
/**
|
|
12274
|
-
*
|
|
12414
|
+
*
|
|
12275
12415
|
* @type {string}
|
|
12276
12416
|
* @memberof TaskAgentRegisteredToolRead
|
|
12277
12417
|
*/
|
|
12278
|
-
'
|
|
12418
|
+
'source_skill_id'?: string | null;
|
|
12279
12419
|
/**
|
|
12280
12420
|
*
|
|
12281
12421
|
* @type {string}
|
|
12282
12422
|
* @memberof TaskAgentRegisteredToolRead
|
|
12283
12423
|
*/
|
|
12284
|
-
'
|
|
12424
|
+
'source_skill_revision_id'?: string | null;
|
|
12285
12425
|
/**
|
|
12286
12426
|
*
|
|
12287
12427
|
* @type {string}
|
|
12288
12428
|
* @memberof TaskAgentRegisteredToolRead
|
|
12289
12429
|
*/
|
|
12290
|
-
'
|
|
12430
|
+
'source_capability_id'?: string | null;
|
|
12291
12431
|
/**
|
|
12292
|
-
*
|
|
12432
|
+
* Human-readable name of the registered first-party tool.
|
|
12293
12433
|
* @type {string}
|
|
12294
12434
|
* @memberof TaskAgentRegisteredToolRead
|
|
12295
12435
|
*/
|
|
12296
|
-
'
|
|
12436
|
+
'name': string;
|
|
12297
12437
|
/**
|
|
12298
|
-
*
|
|
12438
|
+
* Concrete tool names reserved by this registered tool.
|
|
12439
|
+
* @type {Array<string>}
|
|
12440
|
+
* @memberof TaskAgentRegisteredToolRead
|
|
12441
|
+
*/
|
|
12442
|
+
'tool_names': Array<string>;
|
|
12443
|
+
/**
|
|
12444
|
+
* Optional description of the registered tool capability.
|
|
12299
12445
|
* @type {string}
|
|
12300
12446
|
* @memberof TaskAgentRegisteredToolRead
|
|
12301
12447
|
*/
|
|
12302
|
-
'
|
|
12448
|
+
'description': string | null;
|
|
12303
12449
|
}
|
|
12304
12450
|
export declare const TaskAgentRegisteredToolReadProvisionSourceEnum: {
|
|
12305
12451
|
readonly Manual: "manual";
|
|
@@ -12895,6 +13041,140 @@ export interface TaskAgentSessionSummary {
|
|
|
12895
13041
|
*/
|
|
12896
13042
|
'total_charged_credits': string;
|
|
12897
13043
|
}
|
|
13044
|
+
/**
|
|
13045
|
+
* Authenticated TaskAgent share response.
|
|
13046
|
+
* @export
|
|
13047
|
+
* @interface TaskAgentShare
|
|
13048
|
+
*/
|
|
13049
|
+
export interface TaskAgentShare {
|
|
13050
|
+
/**
|
|
13051
|
+
*
|
|
13052
|
+
* @type {string}
|
|
13053
|
+
* @memberof TaskAgentShare
|
|
13054
|
+
*/
|
|
13055
|
+
'title'?: string | null;
|
|
13056
|
+
/**
|
|
13057
|
+
*
|
|
13058
|
+
* @type {string}
|
|
13059
|
+
* @memberof TaskAgentShare
|
|
13060
|
+
*/
|
|
13061
|
+
'description'?: string | null;
|
|
13062
|
+
/**
|
|
13063
|
+
*
|
|
13064
|
+
* @type {string}
|
|
13065
|
+
* @memberof TaskAgentShare
|
|
13066
|
+
*/
|
|
13067
|
+
'expires_at'?: string | null;
|
|
13068
|
+
/**
|
|
13069
|
+
*
|
|
13070
|
+
* @type {string}
|
|
13071
|
+
* @memberof TaskAgentShare
|
|
13072
|
+
*/
|
|
13073
|
+
'id': string;
|
|
13074
|
+
/**
|
|
13075
|
+
*
|
|
13076
|
+
* @type {string}
|
|
13077
|
+
* @memberof TaskAgentShare
|
|
13078
|
+
*/
|
|
13079
|
+
'project_id': string;
|
|
13080
|
+
/**
|
|
13081
|
+
*
|
|
13082
|
+
* @type {string}
|
|
13083
|
+
* @memberof TaskAgentShare
|
|
13084
|
+
*/
|
|
13085
|
+
'task_agent_id': string;
|
|
13086
|
+
/**
|
|
13087
|
+
*
|
|
13088
|
+
* @type {string}
|
|
13089
|
+
* @memberof TaskAgentShare
|
|
13090
|
+
*/
|
|
13091
|
+
'task_agent_revision_id': string;
|
|
13092
|
+
/**
|
|
13093
|
+
*
|
|
13094
|
+
* @type {string}
|
|
13095
|
+
* @memberof TaskAgentShare
|
|
13096
|
+
*/
|
|
13097
|
+
'user_id': string;
|
|
13098
|
+
/**
|
|
13099
|
+
*
|
|
13100
|
+
* @type {string}
|
|
13101
|
+
* @memberof TaskAgentShare
|
|
13102
|
+
*/
|
|
13103
|
+
'task_agent_name': string;
|
|
13104
|
+
/**
|
|
13105
|
+
*
|
|
13106
|
+
* @type {string}
|
|
13107
|
+
* @memberof TaskAgentShare
|
|
13108
|
+
*/
|
|
13109
|
+
'short_id': string;
|
|
13110
|
+
/**
|
|
13111
|
+
*
|
|
13112
|
+
* @type {number}
|
|
13113
|
+
* @memberof TaskAgentShare
|
|
13114
|
+
*/
|
|
13115
|
+
'views_count': number;
|
|
13116
|
+
/**
|
|
13117
|
+
*
|
|
13118
|
+
* @type {boolean}
|
|
13119
|
+
* @memberof TaskAgentShare
|
|
13120
|
+
*/
|
|
13121
|
+
'active': boolean;
|
|
13122
|
+
/**
|
|
13123
|
+
*
|
|
13124
|
+
* @type {string}
|
|
13125
|
+
* @memberof TaskAgentShare
|
|
13126
|
+
*/
|
|
13127
|
+
'created': string;
|
|
13128
|
+
/**
|
|
13129
|
+
*
|
|
13130
|
+
* @type {string}
|
|
13131
|
+
* @memberof TaskAgentShare
|
|
13132
|
+
*/
|
|
13133
|
+
'modified'?: string | null;
|
|
13134
|
+
/**
|
|
13135
|
+
*
|
|
13136
|
+
* @type {string}
|
|
13137
|
+
* @memberof TaskAgentShare
|
|
13138
|
+
*/
|
|
13139
|
+
'share_url': string;
|
|
13140
|
+
}
|
|
13141
|
+
/**
|
|
13142
|
+
* Request schema for creating a TaskAgent share.
|
|
13143
|
+
* @export
|
|
13144
|
+
* @interface TaskAgentShareCreate
|
|
13145
|
+
*/
|
|
13146
|
+
export interface TaskAgentShareCreate {
|
|
13147
|
+
/**
|
|
13148
|
+
*
|
|
13149
|
+
* @type {string}
|
|
13150
|
+
* @memberof TaskAgentShareCreate
|
|
13151
|
+
*/
|
|
13152
|
+
'title'?: string | null;
|
|
13153
|
+
/**
|
|
13154
|
+
*
|
|
13155
|
+
* @type {string}
|
|
13156
|
+
* @memberof TaskAgentShareCreate
|
|
13157
|
+
*/
|
|
13158
|
+
'description'?: string | null;
|
|
13159
|
+
/**
|
|
13160
|
+
*
|
|
13161
|
+
* @type {string}
|
|
13162
|
+
* @memberof TaskAgentShareCreate
|
|
13163
|
+
*/
|
|
13164
|
+
'expires_at'?: string | null;
|
|
13165
|
+
/**
|
|
13166
|
+
* Optional pinned TaskAgent revision. Defaults to the active revision.
|
|
13167
|
+
* @type {string}
|
|
13168
|
+
* @memberof TaskAgentShareCreate
|
|
13169
|
+
*/
|
|
13170
|
+
'task_agent_revision_id'?: string | null;
|
|
13171
|
+
/**
|
|
13172
|
+
* Optional custom public short ID.
|
|
13173
|
+
* @type {string}
|
|
13174
|
+
* @memberof TaskAgentShareCreate
|
|
13175
|
+
*/
|
|
13176
|
+
'custom_short_id'?: string | null;
|
|
13177
|
+
}
|
|
12898
13178
|
/**
|
|
12899
13179
|
* Declarative skill to attach to a TaskAgent.
|
|
12900
13180
|
* @export
|
|
@@ -15574,7 +15854,17 @@ export declare const TriggerTargetType: {
|
|
|
15574
15854
|
readonly Task: "task";
|
|
15575
15855
|
readonly TaskAgent: "task_agent";
|
|
15576
15856
|
};
|
|
15577
|
-
export type TriggerTargetType = typeof TriggerTargetType[keyof typeof TriggerTargetType];
|
|
15857
|
+
export type TriggerTargetType = typeof TriggerTargetType[keyof typeof TriggerTargetType];
|
|
15858
|
+
/**
|
|
15859
|
+
* Supported trigger types.
|
|
15860
|
+
* @export
|
|
15861
|
+
* @enum {string}
|
|
15862
|
+
*/
|
|
15863
|
+
export declare const TriggerType: {
|
|
15864
|
+
readonly Webhook: "webhook";
|
|
15865
|
+
readonly Schedule: "schedule";
|
|
15866
|
+
};
|
|
15867
|
+
export type TriggerType = typeof TriggerType[keyof typeof TriggerType];
|
|
15578
15868
|
/**
|
|
15579
15869
|
* Request schema for updating expired trials.
|
|
15580
15870
|
* @export
|
|
@@ -24370,11 +24660,11 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
24370
24660
|
* @summary Set Project Config
|
|
24371
24661
|
* @param {string} orgId
|
|
24372
24662
|
* @param {string} projectId
|
|
24373
|
-
* @param {
|
|
24663
|
+
* @param {ProjectConfig} projectConfig
|
|
24374
24664
|
* @param {*} [options] Override http request option.
|
|
24375
24665
|
* @throws {RequiredError}
|
|
24376
24666
|
*/
|
|
24377
|
-
updateProjectConfig: (orgId: string, projectId: string,
|
|
24667
|
+
updateProjectConfig: (orgId: string, projectId: string, projectConfig: ProjectConfig, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24378
24668
|
};
|
|
24379
24669
|
/**
|
|
24380
24670
|
* ProjectsApi - functional programming interface
|
|
@@ -24416,7 +24706,7 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
24416
24706
|
* @param {*} [options] Override http request option.
|
|
24417
24707
|
* @throws {RequiredError}
|
|
24418
24708
|
*/
|
|
24419
|
-
getProjectConfig(orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
24709
|
+
getProjectConfig(orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectConfig>>;
|
|
24420
24710
|
/**
|
|
24421
24711
|
*
|
|
24422
24712
|
* @summary List Project
|
|
@@ -24493,11 +24783,11 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
24493
24783
|
* @summary Set Project Config
|
|
24494
24784
|
* @param {string} orgId
|
|
24495
24785
|
* @param {string} projectId
|
|
24496
|
-
* @param {
|
|
24786
|
+
* @param {ProjectConfig} projectConfig
|
|
24497
24787
|
* @param {*} [options] Override http request option.
|
|
24498
24788
|
* @throws {RequiredError}
|
|
24499
24789
|
*/
|
|
24500
|
-
updateProjectConfig(orgId: string, projectId: string,
|
|
24790
|
+
updateProjectConfig(orgId: string, projectId: string, projectConfig: ProjectConfig, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectConfig>>;
|
|
24501
24791
|
};
|
|
24502
24792
|
/**
|
|
24503
24793
|
* ProjectsApi - factory interface
|
|
@@ -24539,7 +24829,7 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
24539
24829
|
* @param {*} [options] Override http request option.
|
|
24540
24830
|
* @throws {RequiredError}
|
|
24541
24831
|
*/
|
|
24542
|
-
getProjectConfig(orgId: string, projectId: string, options?: any): AxiosPromise<
|
|
24832
|
+
getProjectConfig(orgId: string, projectId: string, options?: any): AxiosPromise<ProjectConfig>;
|
|
24543
24833
|
/**
|
|
24544
24834
|
*
|
|
24545
24835
|
* @summary List Project
|
|
@@ -24616,11 +24906,11 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
24616
24906
|
* @summary Set Project Config
|
|
24617
24907
|
* @param {string} orgId
|
|
24618
24908
|
* @param {string} projectId
|
|
24619
|
-
* @param {
|
|
24909
|
+
* @param {ProjectConfig} projectConfig
|
|
24620
24910
|
* @param {*} [options] Override http request option.
|
|
24621
24911
|
* @throws {RequiredError}
|
|
24622
24912
|
*/
|
|
24623
|
-
updateProjectConfig(orgId: string, projectId: string,
|
|
24913
|
+
updateProjectConfig(orgId: string, projectId: string, projectConfig: ProjectConfig, options?: any): AxiosPromise<ProjectConfig>;
|
|
24624
24914
|
};
|
|
24625
24915
|
/**
|
|
24626
24916
|
* ProjectsApi - object-oriented interface
|
|
@@ -24668,7 +24958,7 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
24668
24958
|
* @throws {RequiredError}
|
|
24669
24959
|
* @memberof ProjectsApi
|
|
24670
24960
|
*/
|
|
24671
|
-
getProjectConfig(orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
24961
|
+
getProjectConfig(orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectConfig, any, {}>>;
|
|
24672
24962
|
/**
|
|
24673
24963
|
*
|
|
24674
24964
|
* @summary List Project
|
|
@@ -24752,12 +25042,12 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
24752
25042
|
* @summary Set Project Config
|
|
24753
25043
|
* @param {string} orgId
|
|
24754
25044
|
* @param {string} projectId
|
|
24755
|
-
* @param {
|
|
25045
|
+
* @param {ProjectConfig} projectConfig
|
|
24756
25046
|
* @param {*} [options] Override http request option.
|
|
24757
25047
|
* @throws {RequiredError}
|
|
24758
25048
|
* @memberof ProjectsApi
|
|
24759
25049
|
*/
|
|
24760
|
-
updateProjectConfig(orgId: string, projectId: string,
|
|
25050
|
+
updateProjectConfig(orgId: string, projectId: string, projectConfig: ProjectConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectConfig, any, {}>>;
|
|
24761
25051
|
}
|
|
24762
25052
|
/**
|
|
24763
25053
|
* @export
|
|
@@ -25053,6 +25343,21 @@ export declare const ScheduleTriggersApiAxiosParamCreator: (configuration?: Conf
|
|
|
25053
25343
|
* @throws {RequiredError}
|
|
25054
25344
|
*/
|
|
25055
25345
|
getScheduleTriggerEvent: (orgId: string, projectId: string, triggerId: string, eventId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25346
|
+
/**
|
|
25347
|
+
* List execution history for schedule triggers in the project.
|
|
25348
|
+
* @summary List project schedule trigger events
|
|
25349
|
+
* @param {string} orgId The organization ID
|
|
25350
|
+
* @param {string} projectId The project ID
|
|
25351
|
+
* @param {string | null} [cursor] A cursor for pagination. Use the `next_cursor` value from the previous response to get the next page of results.
|
|
25352
|
+
* @param {number} [pageLimit] The maximum number of items to return per page. Defaults to `100` if not specified.
|
|
25353
|
+
* @param {string | null} [status]
|
|
25354
|
+
* @param {TriggerType} [triggerType]
|
|
25355
|
+
* @param {TriggerTargetType} [targetType]
|
|
25356
|
+
* @param {string | null} [targetId]
|
|
25357
|
+
* @param {*} [options] Override http request option.
|
|
25358
|
+
* @throws {RequiredError}
|
|
25359
|
+
*/
|
|
25360
|
+
listProjectScheduleTriggerEvents: (orgId: string, projectId: string, cursor?: string | null, pageLimit?: number, status?: string | null, triggerType?: TriggerType, targetType?: TriggerTargetType, targetId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25056
25361
|
/**
|
|
25057
25362
|
* List execution history for a schedule trigger.
|
|
25058
25363
|
* @summary List schedule trigger events
|
|
@@ -25124,6 +25429,21 @@ export declare const ScheduleTriggersApiFp: (configuration?: Configuration) => {
|
|
|
25124
25429
|
* @throws {RequiredError}
|
|
25125
25430
|
*/
|
|
25126
25431
|
getScheduleTriggerEvent(orgId: string, projectId: string, triggerId: string, eventId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ScheduleTriggerEventDetailResponse>>;
|
|
25432
|
+
/**
|
|
25433
|
+
* List execution history for schedule triggers in the project.
|
|
25434
|
+
* @summary List project schedule trigger events
|
|
25435
|
+
* @param {string} orgId The organization ID
|
|
25436
|
+
* @param {string} projectId The project ID
|
|
25437
|
+
* @param {string | null} [cursor] A cursor for pagination. Use the `next_cursor` value from the previous response to get the next page of results.
|
|
25438
|
+
* @param {number} [pageLimit] The maximum number of items to return per page. Defaults to `100` if not specified.
|
|
25439
|
+
* @param {string | null} [status]
|
|
25440
|
+
* @param {TriggerType} [triggerType]
|
|
25441
|
+
* @param {TriggerTargetType} [targetType]
|
|
25442
|
+
* @param {string | null} [targetId]
|
|
25443
|
+
* @param {*} [options] Override http request option.
|
|
25444
|
+
* @throws {RequiredError}
|
|
25445
|
+
*/
|
|
25446
|
+
listProjectScheduleTriggerEvents(orgId: string, projectId: string, cursor?: string | null, pageLimit?: number, status?: string | null, triggerType?: TriggerType, targetType?: TriggerTargetType, targetId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResultSetScheduleTriggerEventResponse>>;
|
|
25127
25447
|
/**
|
|
25128
25448
|
* List execution history for a schedule trigger.
|
|
25129
25449
|
* @summary List schedule trigger events
|
|
@@ -25195,6 +25515,21 @@ export declare const ScheduleTriggersApiFactory: (configuration?: Configuration,
|
|
|
25195
25515
|
* @throws {RequiredError}
|
|
25196
25516
|
*/
|
|
25197
25517
|
getScheduleTriggerEvent(orgId: string, projectId: string, triggerId: string, eventId: string, options?: any): AxiosPromise<ScheduleTriggerEventDetailResponse>;
|
|
25518
|
+
/**
|
|
25519
|
+
* List execution history for schedule triggers in the project.
|
|
25520
|
+
* @summary List project schedule trigger events
|
|
25521
|
+
* @param {string} orgId The organization ID
|
|
25522
|
+
* @param {string} projectId The project ID
|
|
25523
|
+
* @param {string | null} [cursor] A cursor for pagination. Use the `next_cursor` value from the previous response to get the next page of results.
|
|
25524
|
+
* @param {number} [pageLimit] The maximum number of items to return per page. Defaults to `100` if not specified.
|
|
25525
|
+
* @param {string | null} [status]
|
|
25526
|
+
* @param {TriggerType} [triggerType]
|
|
25527
|
+
* @param {TriggerTargetType} [targetType]
|
|
25528
|
+
* @param {string | null} [targetId]
|
|
25529
|
+
* @param {*} [options] Override http request option.
|
|
25530
|
+
* @throws {RequiredError}
|
|
25531
|
+
*/
|
|
25532
|
+
listProjectScheduleTriggerEvents(orgId: string, projectId: string, cursor?: string | null, pageLimit?: number, status?: string | null, triggerType?: TriggerType, targetType?: TriggerTargetType, targetId?: string | null, options?: any): AxiosPromise<PaginatedResultSetScheduleTriggerEventResponse>;
|
|
25198
25533
|
/**
|
|
25199
25534
|
* List execution history for a schedule trigger.
|
|
25200
25535
|
* @summary List schedule trigger events
|
|
@@ -25272,6 +25607,22 @@ export declare class ScheduleTriggersApi extends BaseAPI {
|
|
|
25272
25607
|
* @memberof ScheduleTriggersApi
|
|
25273
25608
|
*/
|
|
25274
25609
|
getScheduleTriggerEvent(orgId: string, projectId: string, triggerId: string, eventId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScheduleTriggerEventDetailResponse, any, {}>>;
|
|
25610
|
+
/**
|
|
25611
|
+
* List execution history for schedule triggers in the project.
|
|
25612
|
+
* @summary List project schedule trigger events
|
|
25613
|
+
* @param {string} orgId The organization ID
|
|
25614
|
+
* @param {string} projectId The project ID
|
|
25615
|
+
* @param {string | null} [cursor] A cursor for pagination. Use the `next_cursor` value from the previous response to get the next page of results.
|
|
25616
|
+
* @param {number} [pageLimit] The maximum number of items to return per page. Defaults to `100` if not specified.
|
|
25617
|
+
* @param {string | null} [status]
|
|
25618
|
+
* @param {TriggerType} [triggerType]
|
|
25619
|
+
* @param {TriggerTargetType} [targetType]
|
|
25620
|
+
* @param {string | null} [targetId]
|
|
25621
|
+
* @param {*} [options] Override http request option.
|
|
25622
|
+
* @throws {RequiredError}
|
|
25623
|
+
* @memberof ScheduleTriggersApi
|
|
25624
|
+
*/
|
|
25625
|
+
listProjectScheduleTriggerEvents(orgId: string, projectId: string, cursor?: string | null, pageLimit?: number, status?: string | null, triggerType?: TriggerType, targetType?: TriggerTargetType, targetId?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedResultSetScheduleTriggerEventResponse, any, {}>>;
|
|
25275
25626
|
/**
|
|
25276
25627
|
* List execution history for a schedule trigger.
|
|
25277
25628
|
* @summary List schedule trigger events
|
|
@@ -26512,6 +26863,16 @@ export declare const SlackApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
26512
26863
|
* @throws {RequiredError}
|
|
26513
26864
|
*/
|
|
26514
26865
|
listSlackChannelMappings: (orgId: string, projectId: string, installationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26866
|
+
/**
|
|
26867
|
+
* List public and private channels visible to the connected Slack installation.
|
|
26868
|
+
* @summary List Slack Channels
|
|
26869
|
+
* @param {string} orgId The organization ID
|
|
26870
|
+
* @param {string} projectId The project ID
|
|
26871
|
+
* @param {string} installationId
|
|
26872
|
+
* @param {*} [options] Override http request option.
|
|
26873
|
+
* @throws {RequiredError}
|
|
26874
|
+
*/
|
|
26875
|
+
listSlackChannels: (orgId: string, projectId: string, installationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26515
26876
|
/**
|
|
26516
26877
|
* List Slack workspace installations configured for the project.
|
|
26517
26878
|
* @summary List Slack Installations
|
|
@@ -26611,6 +26972,16 @@ export declare const SlackApiFp: (configuration?: Configuration) => {
|
|
|
26611
26972
|
* @throws {RequiredError}
|
|
26612
26973
|
*/
|
|
26613
26974
|
listSlackChannelMappings(orgId: string, projectId: string, installationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SlackChannelMappingResponse>>>;
|
|
26975
|
+
/**
|
|
26976
|
+
* List public and private channels visible to the connected Slack installation.
|
|
26977
|
+
* @summary List Slack Channels
|
|
26978
|
+
* @param {string} orgId The organization ID
|
|
26979
|
+
* @param {string} projectId The project ID
|
|
26980
|
+
* @param {string} installationId
|
|
26981
|
+
* @param {*} [options] Override http request option.
|
|
26982
|
+
* @throws {RequiredError}
|
|
26983
|
+
*/
|
|
26984
|
+
listSlackChannels(orgId: string, projectId: string, installationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SlackChannelResponse>>>;
|
|
26614
26985
|
/**
|
|
26615
26986
|
* List Slack workspace installations configured for the project.
|
|
26616
26987
|
* @summary List Slack Installations
|
|
@@ -26710,6 +27081,16 @@ export declare const SlackApiFactory: (configuration?: Configuration, basePath?:
|
|
|
26710
27081
|
* @throws {RequiredError}
|
|
26711
27082
|
*/
|
|
26712
27083
|
listSlackChannelMappings(orgId: string, projectId: string, installationId: string, options?: any): AxiosPromise<Array<SlackChannelMappingResponse>>;
|
|
27084
|
+
/**
|
|
27085
|
+
* List public and private channels visible to the connected Slack installation.
|
|
27086
|
+
* @summary List Slack Channels
|
|
27087
|
+
* @param {string} orgId The organization ID
|
|
27088
|
+
* @param {string} projectId The project ID
|
|
27089
|
+
* @param {string} installationId
|
|
27090
|
+
* @param {*} [options] Override http request option.
|
|
27091
|
+
* @throws {RequiredError}
|
|
27092
|
+
*/
|
|
27093
|
+
listSlackChannels(orgId: string, projectId: string, installationId: string, options?: any): AxiosPromise<Array<SlackChannelResponse>>;
|
|
26713
27094
|
/**
|
|
26714
27095
|
* List Slack workspace installations configured for the project.
|
|
26715
27096
|
* @summary List Slack Installations
|
|
@@ -26817,6 +27198,17 @@ export declare class SlackApi extends BaseAPI {
|
|
|
26817
27198
|
* @memberof SlackApi
|
|
26818
27199
|
*/
|
|
26819
27200
|
listSlackChannelMappings(orgId: string, projectId: string, installationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SlackChannelMappingResponse[], any, {}>>;
|
|
27201
|
+
/**
|
|
27202
|
+
* List public and private channels visible to the connected Slack installation.
|
|
27203
|
+
* @summary List Slack Channels
|
|
27204
|
+
* @param {string} orgId The organization ID
|
|
27205
|
+
* @param {string} projectId The project ID
|
|
27206
|
+
* @param {string} installationId
|
|
27207
|
+
* @param {*} [options] Override http request option.
|
|
27208
|
+
* @throws {RequiredError}
|
|
27209
|
+
* @memberof SlackApi
|
|
27210
|
+
*/
|
|
27211
|
+
listSlackChannels(orgId: string, projectId: string, installationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SlackChannelResponse[], any, {}>>;
|
|
26820
27212
|
/**
|
|
26821
27213
|
* List Slack workspace installations configured for the project.
|
|
26822
27214
|
* @summary List Slack Installations
|
|
@@ -27327,6 +27719,298 @@ export declare const UpdateTagEntityTypeEnum: {
|
|
|
27327
27719
|
readonly TaskAgentRevision: "task_agent_revision";
|
|
27328
27720
|
};
|
|
27329
27721
|
export type UpdateTagEntityTypeEnum = typeof UpdateTagEntityTypeEnum[keyof typeof UpdateTagEntityTypeEnum];
|
|
27722
|
+
/**
|
|
27723
|
+
* TaskAgentSharesApi - axios parameter creator
|
|
27724
|
+
* @export
|
|
27725
|
+
*/
|
|
27726
|
+
export declare const TaskAgentSharesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
27727
|
+
/**
|
|
27728
|
+
* Clone a shared TaskAgent revision into the target project. Requires `project:create_task_agent` on the target project. The clone path commits new database rows before writing IAM relationships, never copies source IAM relationships, and conditionally checks dependency-specific create permissions before cloning Tasks, Skills, integrations, or MCP servers. The response includes a dependency report. `runnable=false` means at least one dependency requires setup, such as reauthorizing a copied integration or MCP server.
|
|
27729
|
+
* @summary Clone Shared TaskAgent
|
|
27730
|
+
* @param {string} shortId TaskAgent share short ID
|
|
27731
|
+
* @param {string} orgId The organization ID
|
|
27732
|
+
* @param {string} projectId The project ID
|
|
27733
|
+
* @param {*} [options] Override http request option.
|
|
27734
|
+
* @throws {RequiredError}
|
|
27735
|
+
*/
|
|
27736
|
+
cloneSharedTaskAgent: (shortId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27737
|
+
/**
|
|
27738
|
+
* Create a public share link for a TaskAgent revision. Requires `task_agent:edit` on the parent TaskAgent. If `task_agent_revision_id` is omitted, the active revision is shared. Custom short IDs must be unique and match the schema constraints; generated short IDs use high-entropy random characters.
|
|
27739
|
+
* @summary Create TaskAgent Share
|
|
27740
|
+
* @param {string} orgId The organization ID
|
|
27741
|
+
* @param {string} projectId The project ID
|
|
27742
|
+
* @param {string} taskAgentId The task agent ID
|
|
27743
|
+
* @param {TaskAgentShareCreate} taskAgentShareCreate
|
|
27744
|
+
* @param {*} [options] Override http request option.
|
|
27745
|
+
* @throws {RequiredError}
|
|
27746
|
+
*/
|
|
27747
|
+
createTaskAgentShare: (orgId: string, projectId: string, taskAgentId: string, taskAgentShareCreate: TaskAgentShareCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27748
|
+
/**
|
|
27749
|
+
* Return a public TaskAgent share page or sanitized public data. Browser/default requests render a human-readable HTML share page. Clients that send `Accept: application/json`, `application/yaml`, or `text/yaml` receive sanitized public data. The public DTO is allowlisted. It intentionally includes operational configuration needed to understand the shared agent, such as input processor configuration and tool names, but redacts credentials, tokens, auth configs, ciphertext, connected user IDs, source-project provenance, tags, runs, files, and sessions. Public paths remain present in OpenAPI for schema generation but are marked `x-fern-ignore` by the `/public/_*` OpenAPI configuration.
|
|
27750
|
+
* @summary Get Public TaskAgent Share
|
|
27751
|
+
* @param {string} shortId TaskAgent share short ID
|
|
27752
|
+
* @param {string | null} [accept]
|
|
27753
|
+
* @param {*} [options] Override http request option.
|
|
27754
|
+
* @throws {RequiredError}
|
|
27755
|
+
*/
|
|
27756
|
+
getPublicTaskAgentShare: (shortId: string, accept?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27757
|
+
/**
|
|
27758
|
+
* List TaskAgent shares in a project. TaskAgent shares are public share records scoped to the requested project. The endpoint does not expose share-specific IAM.
|
|
27759
|
+
* @summary List Project TaskAgent Shares
|
|
27760
|
+
* @param {string} orgId The organization ID
|
|
27761
|
+
* @param {string} projectId The project ID
|
|
27762
|
+
* @param {boolean | null} [active] Filter by active status
|
|
27763
|
+
* @param {string | null} [taskAgentId] Filter by specific TaskAgent ID
|
|
27764
|
+
* @param {string | null} [taskAgentName] Filter by TaskAgent name (partial, case-insensitive)
|
|
27765
|
+
* @param {string | null} [cursor] A cursor for pagination. Use the `next_cursor` value from the previous response to get the next page of results.
|
|
27766
|
+
* @param {number} [pageLimit] The maximum number of items to return per page. Defaults to `100` if not specified.
|
|
27767
|
+
* @param {*} [options] Override http request option.
|
|
27768
|
+
* @throws {RequiredError}
|
|
27769
|
+
*/
|
|
27770
|
+
listProjectTaskAgentShares: (orgId: string, projectId: string, active?: boolean | null, taskAgentId?: string | null, taskAgentName?: string | null, cursor?: string | null, pageLimit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27771
|
+
/**
|
|
27772
|
+
* List share links for a single TaskAgent. Requires `task_agent:view` on the parent TaskAgent. TaskAgentShare does not have an independent IAM surface in v1.
|
|
27773
|
+
* @summary List TaskAgent Shares
|
|
27774
|
+
* @param {string} orgId The organization ID
|
|
27775
|
+
* @param {string} projectId The project ID
|
|
27776
|
+
* @param {string} taskAgentId The task agent ID
|
|
27777
|
+
* @param {*} [options] Override http request option.
|
|
27778
|
+
* @throws {RequiredError}
|
|
27779
|
+
*/
|
|
27780
|
+
listTaskAgentShares: (orgId: string, projectId: string, taskAgentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27781
|
+
/**
|
|
27782
|
+
* Revoke a TaskAgent share by setting `active` to false. Requires `task_agent:edit` on the parent TaskAgent. The share record is preserved for management views and analytics.
|
|
27783
|
+
* @summary Revoke TaskAgent Share
|
|
27784
|
+
* @param {string} orgId The organization ID
|
|
27785
|
+
* @param {string} projectId The project ID
|
|
27786
|
+
* @param {string} taskAgentId The task agent ID
|
|
27787
|
+
* @param {string} shareId TaskAgent share ID
|
|
27788
|
+
* @param {*} [options] Override http request option.
|
|
27789
|
+
* @throws {RequiredError}
|
|
27790
|
+
*/
|
|
27791
|
+
revokeTaskAgentShare: (orgId: string, projectId: string, taskAgentId: string, shareId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27792
|
+
};
|
|
27793
|
+
/**
|
|
27794
|
+
* TaskAgentSharesApi - functional programming interface
|
|
27795
|
+
* @export
|
|
27796
|
+
*/
|
|
27797
|
+
export declare const TaskAgentSharesApiFp: (configuration?: Configuration) => {
|
|
27798
|
+
/**
|
|
27799
|
+
* Clone a shared TaskAgent revision into the target project. Requires `project:create_task_agent` on the target project. The clone path commits new database rows before writing IAM relationships, never copies source IAM relationships, and conditionally checks dependency-specific create permissions before cloning Tasks, Skills, integrations, or MCP servers. The response includes a dependency report. `runnable=false` means at least one dependency requires setup, such as reauthorizing a copied integration or MCP server.
|
|
27800
|
+
* @summary Clone Shared TaskAgent
|
|
27801
|
+
* @param {string} shortId TaskAgent share short ID
|
|
27802
|
+
* @param {string} orgId The organization ID
|
|
27803
|
+
* @param {string} projectId The project ID
|
|
27804
|
+
* @param {*} [options] Override http request option.
|
|
27805
|
+
* @throws {RequiredError}
|
|
27806
|
+
*/
|
|
27807
|
+
cloneSharedTaskAgent(shortId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskAgentCloneResult>>;
|
|
27808
|
+
/**
|
|
27809
|
+
* Create a public share link for a TaskAgent revision. Requires `task_agent:edit` on the parent TaskAgent. If `task_agent_revision_id` is omitted, the active revision is shared. Custom short IDs must be unique and match the schema constraints; generated short IDs use high-entropy random characters.
|
|
27810
|
+
* @summary Create TaskAgent Share
|
|
27811
|
+
* @param {string} orgId The organization ID
|
|
27812
|
+
* @param {string} projectId The project ID
|
|
27813
|
+
* @param {string} taskAgentId The task agent ID
|
|
27814
|
+
* @param {TaskAgentShareCreate} taskAgentShareCreate
|
|
27815
|
+
* @param {*} [options] Override http request option.
|
|
27816
|
+
* @throws {RequiredError}
|
|
27817
|
+
*/
|
|
27818
|
+
createTaskAgentShare(orgId: string, projectId: string, taskAgentId: string, taskAgentShareCreate: TaskAgentShareCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskAgentShare>>;
|
|
27819
|
+
/**
|
|
27820
|
+
* Return a public TaskAgent share page or sanitized public data. Browser/default requests render a human-readable HTML share page. Clients that send `Accept: application/json`, `application/yaml`, or `text/yaml` receive sanitized public data. The public DTO is allowlisted. It intentionally includes operational configuration needed to understand the shared agent, such as input processor configuration and tool names, but redacts credentials, tokens, auth configs, ciphertext, connected user IDs, source-project provenance, tags, runs, files, and sessions. Public paths remain present in OpenAPI for schema generation but are marked `x-fern-ignore` by the `/public/_*` OpenAPI configuration.
|
|
27821
|
+
* @summary Get Public TaskAgent Share
|
|
27822
|
+
* @param {string} shortId TaskAgent share short ID
|
|
27823
|
+
* @param {string | null} [accept]
|
|
27824
|
+
* @param {*} [options] Override http request option.
|
|
27825
|
+
* @throws {RequiredError}
|
|
27826
|
+
*/
|
|
27827
|
+
getPublicTaskAgentShare(shortId: string, accept?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
27828
|
+
/**
|
|
27829
|
+
* List TaskAgent shares in a project. TaskAgent shares are public share records scoped to the requested project. The endpoint does not expose share-specific IAM.
|
|
27830
|
+
* @summary List Project TaskAgent Shares
|
|
27831
|
+
* @param {string} orgId The organization ID
|
|
27832
|
+
* @param {string} projectId The project ID
|
|
27833
|
+
* @param {boolean | null} [active] Filter by active status
|
|
27834
|
+
* @param {string | null} [taskAgentId] Filter by specific TaskAgent ID
|
|
27835
|
+
* @param {string | null} [taskAgentName] Filter by TaskAgent name (partial, case-insensitive)
|
|
27836
|
+
* @param {string | null} [cursor] A cursor for pagination. Use the `next_cursor` value from the previous response to get the next page of results.
|
|
27837
|
+
* @param {number} [pageLimit] The maximum number of items to return per page. Defaults to `100` if not specified.
|
|
27838
|
+
* @param {*} [options] Override http request option.
|
|
27839
|
+
* @throws {RequiredError}
|
|
27840
|
+
*/
|
|
27841
|
+
listProjectTaskAgentShares(orgId: string, projectId: string, active?: boolean | null, taskAgentId?: string | null, taskAgentName?: string | null, cursor?: string | null, pageLimit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResultSetTaskAgentShare>>;
|
|
27842
|
+
/**
|
|
27843
|
+
* List share links for a single TaskAgent. Requires `task_agent:view` on the parent TaskAgent. TaskAgentShare does not have an independent IAM surface in v1.
|
|
27844
|
+
* @summary List TaskAgent Shares
|
|
27845
|
+
* @param {string} orgId The organization ID
|
|
27846
|
+
* @param {string} projectId The project ID
|
|
27847
|
+
* @param {string} taskAgentId The task agent ID
|
|
27848
|
+
* @param {*} [options] Override http request option.
|
|
27849
|
+
* @throws {RequiredError}
|
|
27850
|
+
*/
|
|
27851
|
+
listTaskAgentShares(orgId: string, projectId: string, taskAgentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskAgentShare>>>;
|
|
27852
|
+
/**
|
|
27853
|
+
* Revoke a TaskAgent share by setting `active` to false. Requires `task_agent:edit` on the parent TaskAgent. The share record is preserved for management views and analytics.
|
|
27854
|
+
* @summary Revoke TaskAgent Share
|
|
27855
|
+
* @param {string} orgId The organization ID
|
|
27856
|
+
* @param {string} projectId The project ID
|
|
27857
|
+
* @param {string} taskAgentId The task agent ID
|
|
27858
|
+
* @param {string} shareId TaskAgent share ID
|
|
27859
|
+
* @param {*} [options] Override http request option.
|
|
27860
|
+
* @throws {RequiredError}
|
|
27861
|
+
*/
|
|
27862
|
+
revokeTaskAgentShare(orgId: string, projectId: string, taskAgentId: string, shareId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskAgentShare>>;
|
|
27863
|
+
};
|
|
27864
|
+
/**
|
|
27865
|
+
* TaskAgentSharesApi - factory interface
|
|
27866
|
+
* @export
|
|
27867
|
+
*/
|
|
27868
|
+
export declare const TaskAgentSharesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
27869
|
+
/**
|
|
27870
|
+
* Clone a shared TaskAgent revision into the target project. Requires `project:create_task_agent` on the target project. The clone path commits new database rows before writing IAM relationships, never copies source IAM relationships, and conditionally checks dependency-specific create permissions before cloning Tasks, Skills, integrations, or MCP servers. The response includes a dependency report. `runnable=false` means at least one dependency requires setup, such as reauthorizing a copied integration or MCP server.
|
|
27871
|
+
* @summary Clone Shared TaskAgent
|
|
27872
|
+
* @param {string} shortId TaskAgent share short ID
|
|
27873
|
+
* @param {string} orgId The organization ID
|
|
27874
|
+
* @param {string} projectId The project ID
|
|
27875
|
+
* @param {*} [options] Override http request option.
|
|
27876
|
+
* @throws {RequiredError}
|
|
27877
|
+
*/
|
|
27878
|
+
cloneSharedTaskAgent(shortId: string, orgId: string, projectId: string, options?: any): AxiosPromise<TaskAgentCloneResult>;
|
|
27879
|
+
/**
|
|
27880
|
+
* Create a public share link for a TaskAgent revision. Requires `task_agent:edit` on the parent TaskAgent. If `task_agent_revision_id` is omitted, the active revision is shared. Custom short IDs must be unique and match the schema constraints; generated short IDs use high-entropy random characters.
|
|
27881
|
+
* @summary Create TaskAgent Share
|
|
27882
|
+
* @param {string} orgId The organization ID
|
|
27883
|
+
* @param {string} projectId The project ID
|
|
27884
|
+
* @param {string} taskAgentId The task agent ID
|
|
27885
|
+
* @param {TaskAgentShareCreate} taskAgentShareCreate
|
|
27886
|
+
* @param {*} [options] Override http request option.
|
|
27887
|
+
* @throws {RequiredError}
|
|
27888
|
+
*/
|
|
27889
|
+
createTaskAgentShare(orgId: string, projectId: string, taskAgentId: string, taskAgentShareCreate: TaskAgentShareCreate, options?: any): AxiosPromise<TaskAgentShare>;
|
|
27890
|
+
/**
|
|
27891
|
+
* Return a public TaskAgent share page or sanitized public data. Browser/default requests render a human-readable HTML share page. Clients that send `Accept: application/json`, `application/yaml`, or `text/yaml` receive sanitized public data. The public DTO is allowlisted. It intentionally includes operational configuration needed to understand the shared agent, such as input processor configuration and tool names, but redacts credentials, tokens, auth configs, ciphertext, connected user IDs, source-project provenance, tags, runs, files, and sessions. Public paths remain present in OpenAPI for schema generation but are marked `x-fern-ignore` by the `/public/_*` OpenAPI configuration.
|
|
27892
|
+
* @summary Get Public TaskAgent Share
|
|
27893
|
+
* @param {string} shortId TaskAgent share short ID
|
|
27894
|
+
* @param {string | null} [accept]
|
|
27895
|
+
* @param {*} [options] Override http request option.
|
|
27896
|
+
* @throws {RequiredError}
|
|
27897
|
+
*/
|
|
27898
|
+
getPublicTaskAgentShare(shortId: string, accept?: string | null, options?: any): AxiosPromise<any>;
|
|
27899
|
+
/**
|
|
27900
|
+
* List TaskAgent shares in a project. TaskAgent shares are public share records scoped to the requested project. The endpoint does not expose share-specific IAM.
|
|
27901
|
+
* @summary List Project TaskAgent Shares
|
|
27902
|
+
* @param {string} orgId The organization ID
|
|
27903
|
+
* @param {string} projectId The project ID
|
|
27904
|
+
* @param {boolean | null} [active] Filter by active status
|
|
27905
|
+
* @param {string | null} [taskAgentId] Filter by specific TaskAgent ID
|
|
27906
|
+
* @param {string | null} [taskAgentName] Filter by TaskAgent name (partial, case-insensitive)
|
|
27907
|
+
* @param {string | null} [cursor] A cursor for pagination. Use the `next_cursor` value from the previous response to get the next page of results.
|
|
27908
|
+
* @param {number} [pageLimit] The maximum number of items to return per page. Defaults to `100` if not specified.
|
|
27909
|
+
* @param {*} [options] Override http request option.
|
|
27910
|
+
* @throws {RequiredError}
|
|
27911
|
+
*/
|
|
27912
|
+
listProjectTaskAgentShares(orgId: string, projectId: string, active?: boolean | null, taskAgentId?: string | null, taskAgentName?: string | null, cursor?: string | null, pageLimit?: number, options?: any): AxiosPromise<PaginatedResultSetTaskAgentShare>;
|
|
27913
|
+
/**
|
|
27914
|
+
* List share links for a single TaskAgent. Requires `task_agent:view` on the parent TaskAgent. TaskAgentShare does not have an independent IAM surface in v1.
|
|
27915
|
+
* @summary List TaskAgent Shares
|
|
27916
|
+
* @param {string} orgId The organization ID
|
|
27917
|
+
* @param {string} projectId The project ID
|
|
27918
|
+
* @param {string} taskAgentId The task agent ID
|
|
27919
|
+
* @param {*} [options] Override http request option.
|
|
27920
|
+
* @throws {RequiredError}
|
|
27921
|
+
*/
|
|
27922
|
+
listTaskAgentShares(orgId: string, projectId: string, taskAgentId: string, options?: any): AxiosPromise<Array<TaskAgentShare>>;
|
|
27923
|
+
/**
|
|
27924
|
+
* Revoke a TaskAgent share by setting `active` to false. Requires `task_agent:edit` on the parent TaskAgent. The share record is preserved for management views and analytics.
|
|
27925
|
+
* @summary Revoke TaskAgent Share
|
|
27926
|
+
* @param {string} orgId The organization ID
|
|
27927
|
+
* @param {string} projectId The project ID
|
|
27928
|
+
* @param {string} taskAgentId The task agent ID
|
|
27929
|
+
* @param {string} shareId TaskAgent share ID
|
|
27930
|
+
* @param {*} [options] Override http request option.
|
|
27931
|
+
* @throws {RequiredError}
|
|
27932
|
+
*/
|
|
27933
|
+
revokeTaskAgentShare(orgId: string, projectId: string, taskAgentId: string, shareId: string, options?: any): AxiosPromise<TaskAgentShare>;
|
|
27934
|
+
};
|
|
27935
|
+
/**
|
|
27936
|
+
* TaskAgentSharesApi - object-oriented interface
|
|
27937
|
+
* @export
|
|
27938
|
+
* @class TaskAgentSharesApi
|
|
27939
|
+
* @extends {BaseAPI}
|
|
27940
|
+
*/
|
|
27941
|
+
export declare class TaskAgentSharesApi extends BaseAPI {
|
|
27942
|
+
/**
|
|
27943
|
+
* Clone a shared TaskAgent revision into the target project. Requires `project:create_task_agent` on the target project. The clone path commits new database rows before writing IAM relationships, never copies source IAM relationships, and conditionally checks dependency-specific create permissions before cloning Tasks, Skills, integrations, or MCP servers. The response includes a dependency report. `runnable=false` means at least one dependency requires setup, such as reauthorizing a copied integration or MCP server.
|
|
27944
|
+
* @summary Clone Shared TaskAgent
|
|
27945
|
+
* @param {string} shortId TaskAgent share short ID
|
|
27946
|
+
* @param {string} orgId The organization ID
|
|
27947
|
+
* @param {string} projectId The project ID
|
|
27948
|
+
* @param {*} [options] Override http request option.
|
|
27949
|
+
* @throws {RequiredError}
|
|
27950
|
+
* @memberof TaskAgentSharesApi
|
|
27951
|
+
*/
|
|
27952
|
+
cloneSharedTaskAgent(shortId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskAgentCloneResult, any, {}>>;
|
|
27953
|
+
/**
|
|
27954
|
+
* Create a public share link for a TaskAgent revision. Requires `task_agent:edit` on the parent TaskAgent. If `task_agent_revision_id` is omitted, the active revision is shared. Custom short IDs must be unique and match the schema constraints; generated short IDs use high-entropy random characters.
|
|
27955
|
+
* @summary Create TaskAgent Share
|
|
27956
|
+
* @param {string} orgId The organization ID
|
|
27957
|
+
* @param {string} projectId The project ID
|
|
27958
|
+
* @param {string} taskAgentId The task agent ID
|
|
27959
|
+
* @param {TaskAgentShareCreate} taskAgentShareCreate
|
|
27960
|
+
* @param {*} [options] Override http request option.
|
|
27961
|
+
* @throws {RequiredError}
|
|
27962
|
+
* @memberof TaskAgentSharesApi
|
|
27963
|
+
*/
|
|
27964
|
+
createTaskAgentShare(orgId: string, projectId: string, taskAgentId: string, taskAgentShareCreate: TaskAgentShareCreate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskAgentShare, any, {}>>;
|
|
27965
|
+
/**
|
|
27966
|
+
* Return a public TaskAgent share page or sanitized public data. Browser/default requests render a human-readable HTML share page. Clients that send `Accept: application/json`, `application/yaml`, or `text/yaml` receive sanitized public data. The public DTO is allowlisted. It intentionally includes operational configuration needed to understand the shared agent, such as input processor configuration and tool names, but redacts credentials, tokens, auth configs, ciphertext, connected user IDs, source-project provenance, tags, runs, files, and sessions. Public paths remain present in OpenAPI for schema generation but are marked `x-fern-ignore` by the `/public/_*` OpenAPI configuration.
|
|
27967
|
+
* @summary Get Public TaskAgent Share
|
|
27968
|
+
* @param {string} shortId TaskAgent share short ID
|
|
27969
|
+
* @param {string | null} [accept]
|
|
27970
|
+
* @param {*} [options] Override http request option.
|
|
27971
|
+
* @throws {RequiredError}
|
|
27972
|
+
* @memberof TaskAgentSharesApi
|
|
27973
|
+
*/
|
|
27974
|
+
getPublicTaskAgentShare(shortId: string, accept?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
27975
|
+
/**
|
|
27976
|
+
* List TaskAgent shares in a project. TaskAgent shares are public share records scoped to the requested project. The endpoint does not expose share-specific IAM.
|
|
27977
|
+
* @summary List Project TaskAgent Shares
|
|
27978
|
+
* @param {string} orgId The organization ID
|
|
27979
|
+
* @param {string} projectId The project ID
|
|
27980
|
+
* @param {boolean | null} [active] Filter by active status
|
|
27981
|
+
* @param {string | null} [taskAgentId] Filter by specific TaskAgent ID
|
|
27982
|
+
* @param {string | null} [taskAgentName] Filter by TaskAgent name (partial, case-insensitive)
|
|
27983
|
+
* @param {string | null} [cursor] A cursor for pagination. Use the `next_cursor` value from the previous response to get the next page of results.
|
|
27984
|
+
* @param {number} [pageLimit] The maximum number of items to return per page. Defaults to `100` if not specified.
|
|
27985
|
+
* @param {*} [options] Override http request option.
|
|
27986
|
+
* @throws {RequiredError}
|
|
27987
|
+
* @memberof TaskAgentSharesApi
|
|
27988
|
+
*/
|
|
27989
|
+
listProjectTaskAgentShares(orgId: string, projectId: string, active?: boolean | null, taskAgentId?: string | null, taskAgentName?: string | null, cursor?: string | null, pageLimit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedResultSetTaskAgentShare, any, {}>>;
|
|
27990
|
+
/**
|
|
27991
|
+
* List share links for a single TaskAgent. Requires `task_agent:view` on the parent TaskAgent. TaskAgentShare does not have an independent IAM surface in v1.
|
|
27992
|
+
* @summary List TaskAgent Shares
|
|
27993
|
+
* @param {string} orgId The organization ID
|
|
27994
|
+
* @param {string} projectId The project ID
|
|
27995
|
+
* @param {string} taskAgentId The task agent ID
|
|
27996
|
+
* @param {*} [options] Override http request option.
|
|
27997
|
+
* @throws {RequiredError}
|
|
27998
|
+
* @memberof TaskAgentSharesApi
|
|
27999
|
+
*/
|
|
28000
|
+
listTaskAgentShares(orgId: string, projectId: string, taskAgentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskAgentShare[], any, {}>>;
|
|
28001
|
+
/**
|
|
28002
|
+
* Revoke a TaskAgent share by setting `active` to false. Requires `task_agent:edit` on the parent TaskAgent. The share record is preserved for management views and analytics.
|
|
28003
|
+
* @summary Revoke TaskAgent Share
|
|
28004
|
+
* @param {string} orgId The organization ID
|
|
28005
|
+
* @param {string} projectId The project ID
|
|
28006
|
+
* @param {string} taskAgentId The task agent ID
|
|
28007
|
+
* @param {string} shareId TaskAgent share ID
|
|
28008
|
+
* @param {*} [options] Override http request option.
|
|
28009
|
+
* @throws {RequiredError}
|
|
28010
|
+
* @memberof TaskAgentSharesApi
|
|
28011
|
+
*/
|
|
28012
|
+
revokeTaskAgentShare(orgId: string, projectId: string, taskAgentId: string, shareId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskAgentShare, any, {}>>;
|
|
28013
|
+
}
|
|
27330
28014
|
/**
|
|
27331
28015
|
* TaskAgentsApi - axios parameter creator
|
|
27332
28016
|
* @export
|
|
@@ -31959,12 +32643,13 @@ export declare const WebhookTriggersApiAxiosParamCreator: (configuration?: Confi
|
|
|
31959
32643
|
* @param {string} projectId The project ID
|
|
31960
32644
|
* @param {number} [limit]
|
|
31961
32645
|
* @param {string | null} [cursor]
|
|
32646
|
+
* @param {TriggerType} [triggerType]
|
|
31962
32647
|
* @param {TriggerTargetType} [targetType]
|
|
31963
32648
|
* @param {string | null} [targetId]
|
|
31964
32649
|
* @param {*} [options] Override http request option.
|
|
31965
32650
|
* @throws {RequiredError}
|
|
31966
32651
|
*/
|
|
31967
|
-
listTriggers: (orgId: string, projectId: string, limit?: number, cursor?: string | null, targetType?: TriggerTargetType, targetId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
32652
|
+
listTriggers: (orgId: string, projectId: string, limit?: number, cursor?: string | null, triggerType?: TriggerType, targetType?: TriggerTargetType, targetId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
31968
32653
|
/**
|
|
31969
32654
|
* List execution history for a webhook trigger.
|
|
31970
32655
|
* @summary List trigger events
|
|
@@ -32063,12 +32748,13 @@ export declare const WebhookTriggersApiFp: (configuration?: Configuration) => {
|
|
|
32063
32748
|
* @param {string} projectId The project ID
|
|
32064
32749
|
* @param {number} [limit]
|
|
32065
32750
|
* @param {string | null} [cursor]
|
|
32751
|
+
* @param {TriggerType} [triggerType]
|
|
32066
32752
|
* @param {TriggerTargetType} [targetType]
|
|
32067
32753
|
* @param {string | null} [targetId]
|
|
32068
32754
|
* @param {*} [options] Override http request option.
|
|
32069
32755
|
* @throws {RequiredError}
|
|
32070
32756
|
*/
|
|
32071
|
-
listTriggers(orgId: string, projectId: string, limit?: number, cursor?: string | null, targetType?: TriggerTargetType, targetId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ResponseListtriggersInner>>>;
|
|
32757
|
+
listTriggers(orgId: string, projectId: string, limit?: number, cursor?: string | null, triggerType?: TriggerType, targetType?: TriggerTargetType, targetId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ResponseListtriggersInner>>>;
|
|
32072
32758
|
/**
|
|
32073
32759
|
* List execution history for a webhook trigger.
|
|
32074
32760
|
* @summary List trigger events
|
|
@@ -32167,12 +32853,13 @@ export declare const WebhookTriggersApiFactory: (configuration?: Configuration,
|
|
|
32167
32853
|
* @param {string} projectId The project ID
|
|
32168
32854
|
* @param {number} [limit]
|
|
32169
32855
|
* @param {string | null} [cursor]
|
|
32856
|
+
* @param {TriggerType} [triggerType]
|
|
32170
32857
|
* @param {TriggerTargetType} [targetType]
|
|
32171
32858
|
* @param {string | null} [targetId]
|
|
32172
32859
|
* @param {*} [options] Override http request option.
|
|
32173
32860
|
* @throws {RequiredError}
|
|
32174
32861
|
*/
|
|
32175
|
-
listTriggers(orgId: string, projectId: string, limit?: number, cursor?: string | null, targetType?: TriggerTargetType, targetId?: string | null, options?: any): AxiosPromise<Array<ResponseListtriggersInner>>;
|
|
32862
|
+
listTriggers(orgId: string, projectId: string, limit?: number, cursor?: string | null, triggerType?: TriggerType, targetType?: TriggerTargetType, targetId?: string | null, options?: any): AxiosPromise<Array<ResponseListtriggersInner>>;
|
|
32176
32863
|
/**
|
|
32177
32864
|
* List execution history for a webhook trigger.
|
|
32178
32865
|
* @summary List trigger events
|
|
@@ -32277,13 +32964,14 @@ export declare class WebhookTriggersApi extends BaseAPI {
|
|
|
32277
32964
|
* @param {string} projectId The project ID
|
|
32278
32965
|
* @param {number} [limit]
|
|
32279
32966
|
* @param {string | null} [cursor]
|
|
32967
|
+
* @param {TriggerType} [triggerType]
|
|
32280
32968
|
* @param {TriggerTargetType} [targetType]
|
|
32281
32969
|
* @param {string | null} [targetId]
|
|
32282
32970
|
* @param {*} [options] Override http request option.
|
|
32283
32971
|
* @throws {RequiredError}
|
|
32284
32972
|
* @memberof WebhookTriggersApi
|
|
32285
32973
|
*/
|
|
32286
|
-
listTriggers(orgId: string, projectId: string, limit?: number, cursor?: string | null, targetType?: TriggerTargetType, targetId?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ResponseListtriggersInner[], any, {}>>;
|
|
32974
|
+
listTriggers(orgId: string, projectId: string, limit?: number, cursor?: string | null, triggerType?: TriggerType, targetType?: TriggerTargetType, targetId?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ResponseListtriggersInner[], any, {}>>;
|
|
32287
32975
|
/**
|
|
32288
32976
|
* List execution history for a webhook trigger.
|
|
32289
32977
|
* @summary List trigger events
|