@gooddata/api-client-tiger 11.54.0-alpha.0 → 11.54.0-alpha.2
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/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +3690 -250
- package/esm/generated/afm-rest-api/api.d.ts +2 -4
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/ai-json-api/api.d.ts +3293 -221
- package/esm/generated/ai-json-api/api.d.ts.map +1 -1
- package/esm/generated/ai-json-api/api.js +1835 -1
- package/esm/generated/metadata-json-api/api.d.ts +104 -0
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -1286,6 +1286,10 @@ export interface DeclarativeAgent {
|
|
|
1286
1286
|
* Identifier of an agent.
|
|
1287
1287
|
*/
|
|
1288
1288
|
'id': string;
|
|
1289
|
+
/**
|
|
1290
|
+
* Rules this agent follows when answering.
|
|
1291
|
+
*/
|
|
1292
|
+
'instructions'?: Array<Instruction> | null;
|
|
1289
1293
|
/**
|
|
1290
1294
|
* Time of the last entity modification.
|
|
1291
1295
|
*/
|
|
@@ -3705,6 +3709,28 @@ export interface InlineMeasureDefinitionInline {
|
|
|
3705
3709
|
*/
|
|
3706
3710
|
'maql': string;
|
|
3707
3711
|
}
|
|
3712
|
+
/**
|
|
3713
|
+
* Rule that an agent follows when answering.
|
|
3714
|
+
*/
|
|
3715
|
+
export interface Instruction {
|
|
3716
|
+
/**
|
|
3717
|
+
* The rule the agent follows when answering
|
|
3718
|
+
*/
|
|
3719
|
+
'content': string;
|
|
3720
|
+
/**
|
|
3721
|
+
* Whether the instruction is disabled
|
|
3722
|
+
*/
|
|
3723
|
+
'isDisabled'?: boolean | null;
|
|
3724
|
+
/**
|
|
3725
|
+
* When an instruction is applied to a request
|
|
3726
|
+
*/
|
|
3727
|
+
'strategy': InstructionStrategyEnum;
|
|
3728
|
+
/**
|
|
3729
|
+
* Short name shown in the agent builder.
|
|
3730
|
+
*/
|
|
3731
|
+
'title'?: string | null;
|
|
3732
|
+
}
|
|
3733
|
+
export type InstructionStrategyEnum = 'ALWAYS' | 'AUTO';
|
|
3708
3734
|
/**
|
|
3709
3735
|
* Settings for intro slide.
|
|
3710
3736
|
*/
|
|
@@ -3746,6 +3772,10 @@ export interface JsonApiAgentInAttributes {
|
|
|
3746
3772
|
'customSkills'?: Array<JsonApiAgentInAttributesCustomSkillsEnum> | null;
|
|
3747
3773
|
'description'?: string | null;
|
|
3748
3774
|
'enabled'?: boolean;
|
|
3775
|
+
/**
|
|
3776
|
+
* Rules this agent follows when answering.
|
|
3777
|
+
*/
|
|
3778
|
+
'instructions'?: Array<JsonApiAgentInAttributesInstructionsInner> | null;
|
|
3749
3779
|
'isPreview'?: boolean;
|
|
3750
3780
|
'name'?: string | null;
|
|
3751
3781
|
'personality'?: string | null;
|
|
@@ -3753,6 +3783,28 @@ export interface JsonApiAgentInAttributes {
|
|
|
3753
3783
|
}
|
|
3754
3784
|
export type JsonApiAgentInAttributesCustomSkillsEnum = 'alert' | 'anomaly_detection' | 'clustering' | 'forecasting' | 'key_driver_analysis' | 'metric' | 'schedule_export' | 'visualization' | 'visualization_summary' | 'dashboard_summary' | 'what_if_analysis' | 'knowledge';
|
|
3755
3785
|
export type JsonApiAgentInAttributesSkillsModeEnum = 'all' | 'custom';
|
|
3786
|
+
/**
|
|
3787
|
+
* Rule that an agent follows when answering.
|
|
3788
|
+
*/
|
|
3789
|
+
export interface JsonApiAgentInAttributesInstructionsInner {
|
|
3790
|
+
/**
|
|
3791
|
+
* The rule the agent follows when answering
|
|
3792
|
+
*/
|
|
3793
|
+
'content': string;
|
|
3794
|
+
/**
|
|
3795
|
+
* Whether the instruction is disabled
|
|
3796
|
+
*/
|
|
3797
|
+
'isDisabled'?: boolean | null;
|
|
3798
|
+
/**
|
|
3799
|
+
* When an instruction is applied to a request
|
|
3800
|
+
*/
|
|
3801
|
+
'strategy': JsonApiAgentInAttributesInstructionsInnerStrategyEnum;
|
|
3802
|
+
/**
|
|
3803
|
+
* Short name shown in the agent builder.
|
|
3804
|
+
*/
|
|
3805
|
+
'title'?: string | null;
|
|
3806
|
+
}
|
|
3807
|
+
export type JsonApiAgentInAttributesInstructionsInnerStrategyEnum = 'ALWAYS' | 'AUTO';
|
|
3756
3808
|
export interface JsonApiAgentInDocument {
|
|
3757
3809
|
'data': JsonApiAgentIn;
|
|
3758
3810
|
}
|
|
@@ -3788,6 +3840,10 @@ export interface JsonApiAgentOutAttributes {
|
|
|
3788
3840
|
'customSkills'?: Array<JsonApiAgentOutAttributesCustomSkillsEnum> | null;
|
|
3789
3841
|
'description'?: string | null;
|
|
3790
3842
|
'enabled'?: boolean;
|
|
3843
|
+
/**
|
|
3844
|
+
* Rules this agent follows when answering.
|
|
3845
|
+
*/
|
|
3846
|
+
'instructions'?: Array<JsonApiAgentOutAttributesInstructionsInner> | null;
|
|
3791
3847
|
'isPreview'?: boolean;
|
|
3792
3848
|
'modifiedAt'?: string;
|
|
3793
3849
|
'name'?: string | null;
|
|
@@ -3796,6 +3852,28 @@ export interface JsonApiAgentOutAttributes {
|
|
|
3796
3852
|
}
|
|
3797
3853
|
export type JsonApiAgentOutAttributesCustomSkillsEnum = 'alert' | 'anomaly_detection' | 'clustering' | 'forecasting' | 'key_driver_analysis' | 'metric' | 'schedule_export' | 'visualization' | 'visualization_summary' | 'dashboard_summary' | 'what_if_analysis' | 'knowledge';
|
|
3798
3854
|
export type JsonApiAgentOutAttributesSkillsModeEnum = 'all' | 'custom';
|
|
3855
|
+
/**
|
|
3856
|
+
* Rule that an agent follows when answering.
|
|
3857
|
+
*/
|
|
3858
|
+
export interface JsonApiAgentOutAttributesInstructionsInner {
|
|
3859
|
+
/**
|
|
3860
|
+
* The rule the agent follows when answering
|
|
3861
|
+
*/
|
|
3862
|
+
'content': string;
|
|
3863
|
+
/**
|
|
3864
|
+
* Whether the instruction is disabled
|
|
3865
|
+
*/
|
|
3866
|
+
'isDisabled'?: boolean | null;
|
|
3867
|
+
/**
|
|
3868
|
+
* When an instruction is applied to a request
|
|
3869
|
+
*/
|
|
3870
|
+
'strategy': JsonApiAgentOutAttributesInstructionsInnerStrategyEnum;
|
|
3871
|
+
/**
|
|
3872
|
+
* Short name shown in the agent builder.
|
|
3873
|
+
*/
|
|
3874
|
+
'title'?: string | null;
|
|
3875
|
+
}
|
|
3876
|
+
export type JsonApiAgentOutAttributesInstructionsInnerStrategyEnum = 'ALWAYS' | 'AUTO';
|
|
3799
3877
|
export interface JsonApiAgentOutDocument {
|
|
3800
3878
|
'data': JsonApiAgentOut;
|
|
3801
3879
|
/**
|
|
@@ -3876,6 +3954,10 @@ export interface JsonApiAgentPatchAttributes {
|
|
|
3876
3954
|
'customSkills'?: Array<JsonApiAgentPatchAttributesCustomSkillsEnum> | null;
|
|
3877
3955
|
'description'?: string | null;
|
|
3878
3956
|
'enabled'?: boolean;
|
|
3957
|
+
/**
|
|
3958
|
+
* Rules this agent follows when answering.
|
|
3959
|
+
*/
|
|
3960
|
+
'instructions'?: Array<JsonApiAgentPatchAttributesInstructionsInner> | null;
|
|
3879
3961
|
'isPreview'?: boolean;
|
|
3880
3962
|
'name'?: string | null;
|
|
3881
3963
|
'personality'?: string | null;
|
|
@@ -3883,6 +3965,28 @@ export interface JsonApiAgentPatchAttributes {
|
|
|
3883
3965
|
}
|
|
3884
3966
|
export type JsonApiAgentPatchAttributesCustomSkillsEnum = 'alert' | 'anomaly_detection' | 'clustering' | 'forecasting' | 'key_driver_analysis' | 'metric' | 'schedule_export' | 'visualization' | 'visualization_summary' | 'dashboard_summary' | 'what_if_analysis' | 'knowledge';
|
|
3885
3967
|
export type JsonApiAgentPatchAttributesSkillsModeEnum = 'all' | 'custom';
|
|
3968
|
+
/**
|
|
3969
|
+
* Rule that an agent follows when answering.
|
|
3970
|
+
*/
|
|
3971
|
+
export interface JsonApiAgentPatchAttributesInstructionsInner {
|
|
3972
|
+
/**
|
|
3973
|
+
* The rule the agent follows when answering
|
|
3974
|
+
*/
|
|
3975
|
+
'content': string;
|
|
3976
|
+
/**
|
|
3977
|
+
* Whether the instruction is disabled
|
|
3978
|
+
*/
|
|
3979
|
+
'isDisabled'?: boolean | null;
|
|
3980
|
+
/**
|
|
3981
|
+
* When an instruction is applied to a request
|
|
3982
|
+
*/
|
|
3983
|
+
'strategy': JsonApiAgentPatchAttributesInstructionsInnerStrategyEnum;
|
|
3984
|
+
/**
|
|
3985
|
+
* Short name shown in the agent builder.
|
|
3986
|
+
*/
|
|
3987
|
+
'title'?: string | null;
|
|
3988
|
+
}
|
|
3989
|
+
export type JsonApiAgentPatchAttributesInstructionsInnerStrategyEnum = 'ALWAYS' | 'AUTO';
|
|
3886
3990
|
export interface JsonApiAgentPatchDocument {
|
|
3887
3991
|
'data': JsonApiAgentPatch;
|
|
3888
3992
|
}
|