@gooddata/api-client-tiger 11.54.0-alpha.0 → 11.54.0-alpha.1

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.
@@ -1,4 +1,4 @@
1
- export declare const LIB_VERSION = "11.54.0-alpha.0";
1
+ export declare const LIB_VERSION = "11.54.0-alpha.1";
2
2
  export declare const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
3
3
  export declare const LIB_NAME = "@gooddata/api-client-tiger";
4
4
  //# sourceMappingURL=__version.d.ts.map
package/esm/__version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // (C) 2021 GoodData Corporation
2
2
  // DO NOT CHANGE THIS FILE, IT IS RE-GENERATED ON EVERY BUILD
3
- export const LIB_VERSION = "11.54.0-alpha.0";
3
+ export const LIB_VERSION = "11.54.0-alpha.1";
4
4
  export const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
5
5
  export const LIB_NAME = "@gooddata/api-client-tiger";
@@ -32382,6 +32382,10 @@ export declare interface DeclarativeAgent {
32382
32382
  * Identifier of an agent.
32383
32383
  */
32384
32384
  'id': string;
32385
+ /**
32386
+ * Rules this agent follows when answering.
32387
+ */
32388
+ 'instructions'?: Array<Instruction> | null;
32385
32389
  /**
32386
32390
  * Time of the last entity modification.
32387
32391
  */
@@ -67668,6 +67672,32 @@ export declare interface InPlatform {
67668
67672
 
67669
67673
  export declare type InPlatformTypeEnum = 'IN_PLATFORM';
67670
67674
 
67675
+ /**
67676
+ * Rule that an agent follows when answering.
67677
+ * @export
67678
+ * @interface Instruction
67679
+ */
67680
+ export declare interface Instruction {
67681
+ /**
67682
+ * The rule the agent follows when answering
67683
+ */
67684
+ 'content': string;
67685
+ /**
67686
+ * Whether the instruction is disabled
67687
+ */
67688
+ 'isDisabled'?: boolean | null;
67689
+ /**
67690
+ * When an instruction is applied to a request
67691
+ */
67692
+ 'strategy': InstructionStrategyEnum;
67693
+ /**
67694
+ * Short name shown in the agent builder.
67695
+ */
67696
+ 'title'?: string | null;
67697
+ }
67698
+
67699
+ export declare type InstructionStrategyEnum = 'ALWAYS' | 'AUTO';
67700
+
67671
67701
  /**
67672
67702
  * Settings for intro slide.
67673
67703
  */
@@ -68844,6 +68874,10 @@ export declare interface JsonApiAgentInAttributes {
68844
68874
  'customSkills'?: Array<JsonApiAgentInAttributesCustomSkillsEnum> | null;
68845
68875
  'description'?: string | null;
68846
68876
  'enabled'?: boolean;
68877
+ /**
68878
+ * Rules this agent follows when answering.
68879
+ */
68880
+ 'instructions'?: Array<JsonApiAgentInAttributesInstructionsInner> | null;
68847
68881
  'isPreview'?: boolean;
68848
68882
  'name'?: string | null;
68849
68883
  'personality'?: string | null;
@@ -68852,6 +68886,32 @@ export declare interface JsonApiAgentInAttributes {
68852
68886
 
68853
68887
  export declare type JsonApiAgentInAttributesCustomSkillsEnum = 'alert' | 'anomaly_detection' | 'clustering' | 'forecasting' | 'key_driver_analysis' | 'metric' | 'schedule_export' | 'visualization' | 'visualization_summary' | 'dashboard_summary' | 'what_if_analysis' | 'knowledge';
68854
68888
 
68889
+ /**
68890
+ * Rule that an agent follows when answering.
68891
+ * @export
68892
+ * @interface JsonApiAgentInAttributesInstructionsInner
68893
+ */
68894
+ export declare interface JsonApiAgentInAttributesInstructionsInner {
68895
+ /**
68896
+ * The rule the agent follows when answering
68897
+ */
68898
+ 'content': string;
68899
+ /**
68900
+ * Whether the instruction is disabled
68901
+ */
68902
+ 'isDisabled'?: boolean | null;
68903
+ /**
68904
+ * When an instruction is applied to a request
68905
+ */
68906
+ 'strategy': JsonApiAgentInAttributesInstructionsInnerStrategyEnum;
68907
+ /**
68908
+ * Short name shown in the agent builder.
68909
+ */
68910
+ 'title'?: string | null;
68911
+ }
68912
+
68913
+ export declare type JsonApiAgentInAttributesInstructionsInnerStrategyEnum = 'ALWAYS' | 'AUTO';
68914
+
68855
68915
  export declare type JsonApiAgentInAttributesSkillsModeEnum = 'all' | 'custom';
68856
68916
 
68857
68917
  export declare interface JsonApiAgentInDocument {
@@ -68894,6 +68954,10 @@ export declare interface JsonApiAgentOutAttributes {
68894
68954
  'customSkills'?: Array<JsonApiAgentOutAttributesCustomSkillsEnum> | null;
68895
68955
  'description'?: string | null;
68896
68956
  'enabled'?: boolean;
68957
+ /**
68958
+ * Rules this agent follows when answering.
68959
+ */
68960
+ 'instructions'?: Array<JsonApiAgentOutAttributesInstructionsInner> | null;
68897
68961
  'isPreview'?: boolean;
68898
68962
  'modifiedAt'?: string;
68899
68963
  'name'?: string | null;
@@ -68903,6 +68967,32 @@ export declare interface JsonApiAgentOutAttributes {
68903
68967
 
68904
68968
  export declare type JsonApiAgentOutAttributesCustomSkillsEnum = 'alert' | 'anomaly_detection' | 'clustering' | 'forecasting' | 'key_driver_analysis' | 'metric' | 'schedule_export' | 'visualization' | 'visualization_summary' | 'dashboard_summary' | 'what_if_analysis' | 'knowledge';
68905
68969
 
68970
+ /**
68971
+ * Rule that an agent follows when answering.
68972
+ * @export
68973
+ * @interface JsonApiAgentOutAttributesInstructionsInner
68974
+ */
68975
+ export declare interface JsonApiAgentOutAttributesInstructionsInner {
68976
+ /**
68977
+ * The rule the agent follows when answering
68978
+ */
68979
+ 'content': string;
68980
+ /**
68981
+ * Whether the instruction is disabled
68982
+ */
68983
+ 'isDisabled'?: boolean | null;
68984
+ /**
68985
+ * When an instruction is applied to a request
68986
+ */
68987
+ 'strategy': JsonApiAgentOutAttributesInstructionsInnerStrategyEnum;
68988
+ /**
68989
+ * Short name shown in the agent builder.
68990
+ */
68991
+ 'title'?: string | null;
68992
+ }
68993
+
68994
+ export declare type JsonApiAgentOutAttributesInstructionsInnerStrategyEnum = 'ALWAYS' | 'AUTO';
68995
+
68906
68996
  export declare type JsonApiAgentOutAttributesSkillsModeEnum = 'all' | 'custom';
68907
68997
 
68908
68998
  export declare interface JsonApiAgentOutDocument {
@@ -68997,6 +69087,10 @@ export declare interface JsonApiAgentPatchAttributes {
68997
69087
  'customSkills'?: Array<JsonApiAgentPatchAttributesCustomSkillsEnum> | null;
68998
69088
  'description'?: string | null;
68999
69089
  'enabled'?: boolean;
69090
+ /**
69091
+ * Rules this agent follows when answering.
69092
+ */
69093
+ 'instructions'?: Array<JsonApiAgentPatchAttributesInstructionsInner> | null;
69000
69094
  'isPreview'?: boolean;
69001
69095
  'name'?: string | null;
69002
69096
  'personality'?: string | null;
@@ -69005,6 +69099,32 @@ export declare interface JsonApiAgentPatchAttributes {
69005
69099
 
69006
69100
  export declare type JsonApiAgentPatchAttributesCustomSkillsEnum = 'alert' | 'anomaly_detection' | 'clustering' | 'forecasting' | 'key_driver_analysis' | 'metric' | 'schedule_export' | 'visualization' | 'visualization_summary' | 'dashboard_summary' | 'what_if_analysis' | 'knowledge';
69007
69101
 
69102
+ /**
69103
+ * Rule that an agent follows when answering.
69104
+ * @export
69105
+ * @interface JsonApiAgentPatchAttributesInstructionsInner
69106
+ */
69107
+ export declare interface JsonApiAgentPatchAttributesInstructionsInner {
69108
+ /**
69109
+ * The rule the agent follows when answering
69110
+ */
69111
+ 'content': string;
69112
+ /**
69113
+ * Whether the instruction is disabled
69114
+ */
69115
+ 'isDisabled'?: boolean | null;
69116
+ /**
69117
+ * When an instruction is applied to a request
69118
+ */
69119
+ 'strategy': JsonApiAgentPatchAttributesInstructionsInnerStrategyEnum;
69120
+ /**
69121
+ * Short name shown in the agent builder.
69122
+ */
69123
+ 'title'?: string | null;
69124
+ }
69125
+
69126
+ export declare type JsonApiAgentPatchAttributesInstructionsInnerStrategyEnum = 'ALWAYS' | 'AUTO';
69127
+
69008
69128
  export declare type JsonApiAgentPatchAttributesSkillsModeEnum = 'all' | 'custom';
69009
69129
 
69010
69130
  export declare interface JsonApiAgentPatchDocument {
@@ -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
  */
@@ -1310,6 +1314,30 @@ export interface DeclarativeAgent {
1310
1314
  }
1311
1315
  export type DeclarativeAgentCustomSkillsEnum = 'alert' | 'anomaly_detection' | 'clustering' | 'forecasting' | 'key_driver_analysis' | 'metric' | 'schedule_export' | 'visualization' | 'visualization_summary' | 'dashboard_summary' | 'what_if_analysis' | 'knowledge';
1312
1316
  export type DeclarativeAgentSkillsModeEnum = 'all' | 'custom';
1317
+ /**
1318
+ * Rule that an agent follows when answering.
1319
+ * @export
1320
+ * @interface Instruction
1321
+ */
1322
+ export interface Instruction {
1323
+ /**
1324
+ * The rule the agent follows when answering
1325
+ */
1326
+ 'content': string;
1327
+ /**
1328
+ * Whether the instruction is disabled
1329
+ */
1330
+ 'isDisabled'?: boolean | null;
1331
+ /**
1332
+ * When an instruction is applied to a request
1333
+ */
1334
+ 'strategy': InstructionStrategyEnum;
1335
+ /**
1336
+ * Short name shown in the agent builder.
1337
+ */
1338
+ 'title'?: string | null;
1339
+ }
1340
+ export type InstructionStrategyEnum = 'ALWAYS' | 'AUTO';
1313
1341
  /**
1314
1342
  * AI agent configurations.
1315
1343
  */
@@ -3746,6 +3774,10 @@ export interface JsonApiAgentInAttributes {
3746
3774
  'customSkills'?: Array<JsonApiAgentInAttributesCustomSkillsEnum> | null;
3747
3775
  'description'?: string | null;
3748
3776
  'enabled'?: boolean;
3777
+ /**
3778
+ * Rules this agent follows when answering.
3779
+ */
3780
+ 'instructions'?: Array<JsonApiAgentInAttributesInstructionsInner> | null;
3749
3781
  'isPreview'?: boolean;
3750
3782
  'name'?: string | null;
3751
3783
  'personality'?: string | null;
@@ -3753,6 +3785,30 @@ export interface JsonApiAgentInAttributes {
3753
3785
  }
3754
3786
  export type JsonApiAgentInAttributesCustomSkillsEnum = 'alert' | 'anomaly_detection' | 'clustering' | 'forecasting' | 'key_driver_analysis' | 'metric' | 'schedule_export' | 'visualization' | 'visualization_summary' | 'dashboard_summary' | 'what_if_analysis' | 'knowledge';
3755
3787
  export type JsonApiAgentInAttributesSkillsModeEnum = 'all' | 'custom';
3788
+ /**
3789
+ * Rule that an agent follows when answering.
3790
+ * @export
3791
+ * @interface JsonApiAgentInAttributesInstructionsInner
3792
+ */
3793
+ export interface JsonApiAgentInAttributesInstructionsInner {
3794
+ /**
3795
+ * The rule the agent follows when answering
3796
+ */
3797
+ 'content': string;
3798
+ /**
3799
+ * Whether the instruction is disabled
3800
+ */
3801
+ 'isDisabled'?: boolean | null;
3802
+ /**
3803
+ * When an instruction is applied to a request
3804
+ */
3805
+ 'strategy': JsonApiAgentInAttributesInstructionsInnerStrategyEnum;
3806
+ /**
3807
+ * Short name shown in the agent builder.
3808
+ */
3809
+ 'title'?: string | null;
3810
+ }
3811
+ export type JsonApiAgentInAttributesInstructionsInnerStrategyEnum = 'ALWAYS' | 'AUTO';
3756
3812
  export interface JsonApiAgentInDocument {
3757
3813
  'data': JsonApiAgentIn;
3758
3814
  }
@@ -3788,6 +3844,10 @@ export interface JsonApiAgentOutAttributes {
3788
3844
  'customSkills'?: Array<JsonApiAgentOutAttributesCustomSkillsEnum> | null;
3789
3845
  'description'?: string | null;
3790
3846
  'enabled'?: boolean;
3847
+ /**
3848
+ * Rules this agent follows when answering.
3849
+ */
3850
+ 'instructions'?: Array<JsonApiAgentOutAttributesInstructionsInner> | null;
3791
3851
  'isPreview'?: boolean;
3792
3852
  'modifiedAt'?: string;
3793
3853
  'name'?: string | null;
@@ -3796,6 +3856,30 @@ export interface JsonApiAgentOutAttributes {
3796
3856
  }
3797
3857
  export type JsonApiAgentOutAttributesCustomSkillsEnum = 'alert' | 'anomaly_detection' | 'clustering' | 'forecasting' | 'key_driver_analysis' | 'metric' | 'schedule_export' | 'visualization' | 'visualization_summary' | 'dashboard_summary' | 'what_if_analysis' | 'knowledge';
3798
3858
  export type JsonApiAgentOutAttributesSkillsModeEnum = 'all' | 'custom';
3859
+ /**
3860
+ * Rule that an agent follows when answering.
3861
+ * @export
3862
+ * @interface JsonApiAgentOutAttributesInstructionsInner
3863
+ */
3864
+ export interface JsonApiAgentOutAttributesInstructionsInner {
3865
+ /**
3866
+ * The rule the agent follows when answering
3867
+ */
3868
+ 'content': string;
3869
+ /**
3870
+ * Whether the instruction is disabled
3871
+ */
3872
+ 'isDisabled'?: boolean | null;
3873
+ /**
3874
+ * When an instruction is applied to a request
3875
+ */
3876
+ 'strategy': JsonApiAgentOutAttributesInstructionsInnerStrategyEnum;
3877
+ /**
3878
+ * Short name shown in the agent builder.
3879
+ */
3880
+ 'title'?: string | null;
3881
+ }
3882
+ export type JsonApiAgentOutAttributesInstructionsInnerStrategyEnum = 'ALWAYS' | 'AUTO';
3799
3883
  export interface JsonApiAgentOutDocument {
3800
3884
  'data': JsonApiAgentOut;
3801
3885
  /**
@@ -3876,6 +3960,10 @@ export interface JsonApiAgentPatchAttributes {
3876
3960
  'customSkills'?: Array<JsonApiAgentPatchAttributesCustomSkillsEnum> | null;
3877
3961
  'description'?: string | null;
3878
3962
  'enabled'?: boolean;
3963
+ /**
3964
+ * Rules this agent follows when answering.
3965
+ */
3966
+ 'instructions'?: Array<JsonApiAgentPatchAttributesInstructionsInner> | null;
3879
3967
  'isPreview'?: boolean;
3880
3968
  'name'?: string | null;
3881
3969
  'personality'?: string | null;
@@ -3883,6 +3971,30 @@ export interface JsonApiAgentPatchAttributes {
3883
3971
  }
3884
3972
  export type JsonApiAgentPatchAttributesCustomSkillsEnum = 'alert' | 'anomaly_detection' | 'clustering' | 'forecasting' | 'key_driver_analysis' | 'metric' | 'schedule_export' | 'visualization' | 'visualization_summary' | 'dashboard_summary' | 'what_if_analysis' | 'knowledge';
3885
3973
  export type JsonApiAgentPatchAttributesSkillsModeEnum = 'all' | 'custom';
3974
+ /**
3975
+ * Rule that an agent follows when answering.
3976
+ * @export
3977
+ * @interface JsonApiAgentPatchAttributesInstructionsInner
3978
+ */
3979
+ export interface JsonApiAgentPatchAttributesInstructionsInner {
3980
+ /**
3981
+ * The rule the agent follows when answering
3982
+ */
3983
+ 'content': string;
3984
+ /**
3985
+ * Whether the instruction is disabled
3986
+ */
3987
+ 'isDisabled'?: boolean | null;
3988
+ /**
3989
+ * When an instruction is applied to a request
3990
+ */
3991
+ 'strategy': JsonApiAgentPatchAttributesInstructionsInnerStrategyEnum;
3992
+ /**
3993
+ * Short name shown in the agent builder.
3994
+ */
3995
+ 'title'?: string | null;
3996
+ }
3997
+ export type JsonApiAgentPatchAttributesInstructionsInnerStrategyEnum = 'ALWAYS' | 'AUTO';
3886
3998
  export interface JsonApiAgentPatchDocument {
3887
3999
  'data': JsonApiAgentPatch;
3888
4000
  }