@gooddata/api-client-tiger 11.6.0-alpha.5 → 11.6.0-alpha.6
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 +1735 -457
- package/esm/genAI.d.ts.map +1 -1
- package/esm/genAI.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +27 -26
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +280 -279
- package/esm/generated/automation-json-api/api.d.ts +1 -0
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +1 -0
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +1 -0
- package/esm/generated/export-json-api/api.d.ts +1 -0
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +1 -0
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +1 -0
- package/esm/generated/metadata-json-api/api.d.ts +1611 -385
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +1232 -133
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +8946 -8114
- package/esm/generated/scan-json-api/api.d.ts +8 -0
- package/esm/generated/scan-json-api/api.d.ts.map +1 -1
- package/esm/generated/scan-json-api/api.js.map +1 -1
- package/esm/generated/scan-json-api/openapi-spec.json +10 -0
- package/package.json +4 -4
|
@@ -1194,6 +1194,10 @@ export interface DeclarativeColumn {
|
|
|
1194
1194
|
* Referenced table (Foreign key)
|
|
1195
1195
|
*/
|
|
1196
1196
|
referencedTableColumn?: string;
|
|
1197
|
+
/**
|
|
1198
|
+
* Column description/comment from database
|
|
1199
|
+
*/
|
|
1200
|
+
description?: string;
|
|
1197
1201
|
}
|
|
1198
1202
|
export declare const DeclarativeColumnDataTypeEnum: {
|
|
1199
1203
|
readonly INT: "INT";
|
|
@@ -2709,6 +2713,7 @@ export declare const DependentEntitiesNodeTypeEnum: {
|
|
|
2709
2713
|
readonly METRIC: "metric";
|
|
2710
2714
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
2711
2715
|
readonly AUTOMATION: "automation";
|
|
2716
|
+
readonly MEMORY_ITEM: "memoryItem";
|
|
2712
2717
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
2713
2718
|
readonly FILTER_CONTEXT: "filterContext";
|
|
2714
2719
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -3011,6 +3016,7 @@ export declare const IdentifierRefIdentifierTypeEnum: {
|
|
|
3011
3016
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
3012
3017
|
readonly AUTOMATION: "automation";
|
|
3013
3018
|
readonly AUTOMATION_RESULT: "automationResult";
|
|
3019
|
+
readonly MEMORY_ITEM: "memoryItem";
|
|
3014
3020
|
readonly PROMPT: "prompt";
|
|
3015
3021
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
3016
3022
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -3218,7 +3224,7 @@ export interface JsonApiAnalyticalDashboardIn {
|
|
|
3218
3224
|
* API identifier of an object
|
|
3219
3225
|
*/
|
|
3220
3226
|
id: string;
|
|
3221
|
-
attributes:
|
|
3227
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
3222
3228
|
}
|
|
3223
3229
|
export declare const JsonApiAnalyticalDashboardInTypeEnum: {
|
|
3224
3230
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
@@ -3410,12 +3416,22 @@ export interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
3410
3416
|
* API identifier of an object
|
|
3411
3417
|
*/
|
|
3412
3418
|
id?: string;
|
|
3413
|
-
attributes:
|
|
3419
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
3414
3420
|
}
|
|
3415
3421
|
export declare const JsonApiAnalyticalDashboardPostOptionalIdTypeEnum: {
|
|
3416
3422
|
readonly ANALYTICAL_DASHBOARD: "analyticalDashboard";
|
|
3417
3423
|
};
|
|
3418
3424
|
export type JsonApiAnalyticalDashboardPostOptionalIdTypeEnum = (typeof JsonApiAnalyticalDashboardPostOptionalIdTypeEnum)[keyof typeof JsonApiAnalyticalDashboardPostOptionalIdTypeEnum];
|
|
3425
|
+
export interface JsonApiAnalyticalDashboardPostOptionalIdAttributes {
|
|
3426
|
+
title?: string;
|
|
3427
|
+
description?: string;
|
|
3428
|
+
tags?: Array<string>;
|
|
3429
|
+
areRelationsValid?: boolean;
|
|
3430
|
+
/**
|
|
3431
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
3432
|
+
*/
|
|
3433
|
+
content: object;
|
|
3434
|
+
}
|
|
3419
3435
|
export interface JsonApiAnalyticalDashboardPostOptionalIdDocument {
|
|
3420
3436
|
data: JsonApiAnalyticalDashboardPostOptionalId;
|
|
3421
3437
|
}
|
|
@@ -3503,12 +3519,22 @@ export interface JsonApiAttributeHierarchyIn {
|
|
|
3503
3519
|
* API identifier of an object
|
|
3504
3520
|
*/
|
|
3505
3521
|
id: string;
|
|
3506
|
-
attributes?:
|
|
3522
|
+
attributes?: JsonApiAttributeHierarchyInAttributes;
|
|
3507
3523
|
}
|
|
3508
3524
|
export declare const JsonApiAttributeHierarchyInTypeEnum: {
|
|
3509
3525
|
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
3510
3526
|
};
|
|
3511
3527
|
export type JsonApiAttributeHierarchyInTypeEnum = (typeof JsonApiAttributeHierarchyInTypeEnum)[keyof typeof JsonApiAttributeHierarchyInTypeEnum];
|
|
3528
|
+
export interface JsonApiAttributeHierarchyInAttributes {
|
|
3529
|
+
title?: string;
|
|
3530
|
+
description?: string;
|
|
3531
|
+
tags?: Array<string>;
|
|
3532
|
+
areRelationsValid?: boolean;
|
|
3533
|
+
/**
|
|
3534
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
3535
|
+
*/
|
|
3536
|
+
content?: object;
|
|
3537
|
+
}
|
|
3512
3538
|
export interface JsonApiAttributeHierarchyInDocument {
|
|
3513
3539
|
data: JsonApiAttributeHierarchyIn;
|
|
3514
3540
|
}
|
|
@@ -3614,22 +3640,12 @@ export interface JsonApiAttributeHierarchyPatch {
|
|
|
3614
3640
|
* API identifier of an object
|
|
3615
3641
|
*/
|
|
3616
3642
|
id: string;
|
|
3617
|
-
attributes?:
|
|
3643
|
+
attributes?: JsonApiAttributeHierarchyInAttributes;
|
|
3618
3644
|
}
|
|
3619
3645
|
export declare const JsonApiAttributeHierarchyPatchTypeEnum: {
|
|
3620
3646
|
readonly ATTRIBUTE_HIERARCHY: "attributeHierarchy";
|
|
3621
3647
|
};
|
|
3622
3648
|
export type JsonApiAttributeHierarchyPatchTypeEnum = (typeof JsonApiAttributeHierarchyPatchTypeEnum)[keyof typeof JsonApiAttributeHierarchyPatchTypeEnum];
|
|
3623
|
-
export interface JsonApiAttributeHierarchyPatchAttributes {
|
|
3624
|
-
title?: string;
|
|
3625
|
-
description?: string;
|
|
3626
|
-
tags?: Array<string>;
|
|
3627
|
-
areRelationsValid?: boolean;
|
|
3628
|
-
/**
|
|
3629
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
3630
|
-
*/
|
|
3631
|
-
content?: object;
|
|
3632
|
-
}
|
|
3633
3649
|
export interface JsonApiAttributeHierarchyPatchDocument {
|
|
3634
3650
|
data: JsonApiAttributeHierarchyPatch;
|
|
3635
3651
|
}
|
|
@@ -3782,16 +3798,144 @@ export interface JsonApiAutomationIn {
|
|
|
3782
3798
|
* API identifier of an object
|
|
3783
3799
|
*/
|
|
3784
3800
|
id: string;
|
|
3785
|
-
attributes?:
|
|
3786
|
-
relationships?:
|
|
3801
|
+
attributes?: JsonApiAutomationInAttributes;
|
|
3802
|
+
relationships?: JsonApiAutomationInRelationships;
|
|
3787
3803
|
}
|
|
3788
3804
|
export declare const JsonApiAutomationInTypeEnum: {
|
|
3789
3805
|
readonly AUTOMATION: "automation";
|
|
3790
3806
|
};
|
|
3791
3807
|
export type JsonApiAutomationInTypeEnum = (typeof JsonApiAutomationInTypeEnum)[keyof typeof JsonApiAutomationInTypeEnum];
|
|
3808
|
+
export interface JsonApiAutomationInAttributes {
|
|
3809
|
+
title?: string;
|
|
3810
|
+
description?: string;
|
|
3811
|
+
tags?: Array<string>;
|
|
3812
|
+
areRelationsValid?: boolean;
|
|
3813
|
+
/**
|
|
3814
|
+
* Additional details to be included in the automated message.
|
|
3815
|
+
*/
|
|
3816
|
+
details?: object;
|
|
3817
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
3818
|
+
/**
|
|
3819
|
+
* Current state of the automation.
|
|
3820
|
+
*/
|
|
3821
|
+
state?: JsonApiAutomationInAttributesStateEnum;
|
|
3822
|
+
/**
|
|
3823
|
+
* Specify automation evaluation mode.
|
|
3824
|
+
*/
|
|
3825
|
+
evaluationMode?: JsonApiAutomationInAttributesEvaluationModeEnum;
|
|
3826
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
3827
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
3828
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
|
|
3829
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
|
|
3830
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
|
|
3831
|
+
rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
|
|
3832
|
+
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
|
|
3833
|
+
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
|
|
3834
|
+
/**
|
|
3835
|
+
* External recipients of the automation action results.
|
|
3836
|
+
*/
|
|
3837
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
|
|
3838
|
+
}
|
|
3839
|
+
export declare const JsonApiAutomationInAttributesStateEnum: {
|
|
3840
|
+
readonly ACTIVE: "ACTIVE";
|
|
3841
|
+
readonly PAUSED: "PAUSED";
|
|
3842
|
+
};
|
|
3843
|
+
export type JsonApiAutomationInAttributesStateEnum = (typeof JsonApiAutomationInAttributesStateEnum)[keyof typeof JsonApiAutomationInAttributesStateEnum];
|
|
3844
|
+
export declare const JsonApiAutomationInAttributesEvaluationModeEnum: {
|
|
3845
|
+
readonly SHARED: "SHARED";
|
|
3846
|
+
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
3847
|
+
};
|
|
3848
|
+
export type JsonApiAutomationInAttributesEvaluationModeEnum = (typeof JsonApiAutomationInAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationInAttributesEvaluationModeEnum];
|
|
3849
|
+
export interface JsonApiAutomationInAttributesAlert {
|
|
3850
|
+
execution: AlertAfm;
|
|
3851
|
+
condition: AlertCondition;
|
|
3852
|
+
/**
|
|
3853
|
+
* Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met.
|
|
3854
|
+
*/
|
|
3855
|
+
trigger?: JsonApiAutomationInAttributesAlertTriggerEnum;
|
|
3856
|
+
}
|
|
3857
|
+
export declare const JsonApiAutomationInAttributesAlertTriggerEnum: {
|
|
3858
|
+
readonly ALWAYS: "ALWAYS";
|
|
3859
|
+
readonly ONCE: "ONCE";
|
|
3860
|
+
};
|
|
3861
|
+
export type JsonApiAutomationInAttributesAlertTriggerEnum = (typeof JsonApiAutomationInAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationInAttributesAlertTriggerEnum];
|
|
3862
|
+
export interface JsonApiAutomationInAttributesDashboardTabularExportsInner {
|
|
3863
|
+
requestPayload: DashboardTabularExportRequestV2;
|
|
3864
|
+
}
|
|
3865
|
+
export interface JsonApiAutomationInAttributesExternalRecipientsInner {
|
|
3866
|
+
/**
|
|
3867
|
+
* E-mail address to send notifications from.
|
|
3868
|
+
*/
|
|
3869
|
+
email: string;
|
|
3870
|
+
}
|
|
3871
|
+
export interface JsonApiAutomationInAttributesImageExportsInner {
|
|
3872
|
+
requestPayload: ImageExportRequest;
|
|
3873
|
+
}
|
|
3874
|
+
/**
|
|
3875
|
+
* Additional information for the automation.
|
|
3876
|
+
*/
|
|
3877
|
+
export interface JsonApiAutomationInAttributesMetadata {
|
|
3878
|
+
[key: string]: any;
|
|
3879
|
+
widget?: string;
|
|
3880
|
+
visibleFilters?: Array<VisibleFilter>;
|
|
3881
|
+
}
|
|
3882
|
+
export interface JsonApiAutomationInAttributesRawExportsInner {
|
|
3883
|
+
requestPayload: RawExportAutomationRequest;
|
|
3884
|
+
}
|
|
3885
|
+
export interface JsonApiAutomationInAttributesSchedule {
|
|
3886
|
+
/**
|
|
3887
|
+
* Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
|
|
3888
|
+
*/
|
|
3889
|
+
cron: string;
|
|
3890
|
+
/**
|
|
3891
|
+
* Human-readable description of the cron expression.
|
|
3892
|
+
*/
|
|
3893
|
+
cronDescription?: string;
|
|
3894
|
+
/**
|
|
3895
|
+
* Timezone in which the schedule is defined.
|
|
3896
|
+
*/
|
|
3897
|
+
timezone: string;
|
|
3898
|
+
/**
|
|
3899
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
3900
|
+
*/
|
|
3901
|
+
firstRun?: string;
|
|
3902
|
+
}
|
|
3903
|
+
export interface JsonApiAutomationInAttributesSlidesExportsInner {
|
|
3904
|
+
requestPayload: SlidesExportRequest;
|
|
3905
|
+
}
|
|
3906
|
+
export interface JsonApiAutomationInAttributesTabularExportsInner {
|
|
3907
|
+
requestPayload: TabularExportRequest;
|
|
3908
|
+
}
|
|
3909
|
+
export interface JsonApiAutomationInAttributesVisualExportsInner {
|
|
3910
|
+
requestPayload: VisualExportRequest;
|
|
3911
|
+
}
|
|
3792
3912
|
export interface JsonApiAutomationInDocument {
|
|
3793
3913
|
data: JsonApiAutomationIn;
|
|
3794
3914
|
}
|
|
3915
|
+
export interface JsonApiAutomationInRelationships {
|
|
3916
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
3917
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
3918
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
3919
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
3920
|
+
}
|
|
3921
|
+
export interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
|
|
3922
|
+
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
3923
|
+
}
|
|
3924
|
+
export interface JsonApiAutomationInRelationshipsExportDefinitions {
|
|
3925
|
+
/**
|
|
3926
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3927
|
+
*/
|
|
3928
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
3929
|
+
}
|
|
3930
|
+
export interface JsonApiAutomationInRelationshipsNotificationChannel {
|
|
3931
|
+
data: JsonApiNotificationChannelLinkage | null;
|
|
3932
|
+
}
|
|
3933
|
+
export interface JsonApiAutomationInRelationshipsRecipients {
|
|
3934
|
+
/**
|
|
3935
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
3936
|
+
*/
|
|
3937
|
+
data: Array<JsonApiUserLinkage>;
|
|
3938
|
+
}
|
|
3795
3939
|
/**
|
|
3796
3940
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
3797
3941
|
*/
|
|
@@ -3832,7 +3976,7 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
3832
3976
|
* Additional details to be included in the automated message.
|
|
3833
3977
|
*/
|
|
3834
3978
|
details?: object;
|
|
3835
|
-
metadata?:
|
|
3979
|
+
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
3836
3980
|
/**
|
|
3837
3981
|
* Current state of the automation.
|
|
3838
3982
|
*/
|
|
@@ -3841,18 +3985,18 @@ export interface JsonApiAutomationOutAttributes {
|
|
|
3841
3985
|
* Specify automation evaluation mode.
|
|
3842
3986
|
*/
|
|
3843
3987
|
evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
|
|
3844
|
-
schedule?:
|
|
3845
|
-
alert?:
|
|
3846
|
-
tabularExports?: Array<
|
|
3847
|
-
visualExports?: Array<
|
|
3848
|
-
imageExports?: Array<
|
|
3849
|
-
rawExports?: Array<
|
|
3850
|
-
slidesExports?: Array<
|
|
3851
|
-
dashboardTabularExports?: Array<
|
|
3988
|
+
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
3989
|
+
alert?: JsonApiAutomationInAttributesAlert;
|
|
3990
|
+
tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
|
|
3991
|
+
visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
|
|
3992
|
+
imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
|
|
3993
|
+
rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
|
|
3994
|
+
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
|
|
3995
|
+
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
|
|
3852
3996
|
/**
|
|
3853
3997
|
* External recipients of the automation action results.
|
|
3854
3998
|
*/
|
|
3855
|
-
externalRecipients?: Array<
|
|
3999
|
+
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
|
|
3856
4000
|
createdAt?: string;
|
|
3857
4001
|
modifiedAt?: string;
|
|
3858
4002
|
}
|
|
@@ -3891,12 +4035,12 @@ export interface JsonApiAutomationOutList {
|
|
|
3891
4035
|
included?: Array<JsonApiAutomationOutIncludes>;
|
|
3892
4036
|
}
|
|
3893
4037
|
export interface JsonApiAutomationOutRelationships {
|
|
3894
|
-
notificationChannel?:
|
|
3895
|
-
analyticalDashboard?:
|
|
4038
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
4039
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
3896
4040
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
3897
4041
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
3898
|
-
exportDefinitions?:
|
|
3899
|
-
recipients?:
|
|
4042
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
4043
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
3900
4044
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
3901
4045
|
}
|
|
3902
4046
|
export interface JsonApiAutomationOutRelationshipsAutomationResults {
|
|
@@ -3935,144 +4079,16 @@ export interface JsonApiAutomationPatch {
|
|
|
3935
4079
|
* API identifier of an object
|
|
3936
4080
|
*/
|
|
3937
4081
|
id: string;
|
|
3938
|
-
attributes?:
|
|
3939
|
-
relationships?:
|
|
4082
|
+
attributes?: JsonApiAutomationInAttributes;
|
|
4083
|
+
relationships?: JsonApiAutomationInRelationships;
|
|
3940
4084
|
}
|
|
3941
4085
|
export declare const JsonApiAutomationPatchTypeEnum: {
|
|
3942
4086
|
readonly AUTOMATION: "automation";
|
|
3943
4087
|
};
|
|
3944
4088
|
export type JsonApiAutomationPatchTypeEnum = (typeof JsonApiAutomationPatchTypeEnum)[keyof typeof JsonApiAutomationPatchTypeEnum];
|
|
3945
|
-
export interface JsonApiAutomationPatchAttributes {
|
|
3946
|
-
title?: string;
|
|
3947
|
-
description?: string;
|
|
3948
|
-
tags?: Array<string>;
|
|
3949
|
-
areRelationsValid?: boolean;
|
|
3950
|
-
/**
|
|
3951
|
-
* Additional details to be included in the automated message.
|
|
3952
|
-
*/
|
|
3953
|
-
details?: object;
|
|
3954
|
-
metadata?: JsonApiAutomationPatchAttributesMetadata | null;
|
|
3955
|
-
/**
|
|
3956
|
-
* Current state of the automation.
|
|
3957
|
-
*/
|
|
3958
|
-
state?: JsonApiAutomationPatchAttributesStateEnum;
|
|
3959
|
-
/**
|
|
3960
|
-
* Specify automation evaluation mode.
|
|
3961
|
-
*/
|
|
3962
|
-
evaluationMode?: JsonApiAutomationPatchAttributesEvaluationModeEnum;
|
|
3963
|
-
schedule?: JsonApiAutomationPatchAttributesSchedule;
|
|
3964
|
-
alert?: JsonApiAutomationPatchAttributesAlert;
|
|
3965
|
-
tabularExports?: Array<JsonApiAutomationPatchAttributesTabularExportsInner>;
|
|
3966
|
-
visualExports?: Array<JsonApiAutomationPatchAttributesVisualExportsInner>;
|
|
3967
|
-
imageExports?: Array<JsonApiAutomationPatchAttributesImageExportsInner>;
|
|
3968
|
-
rawExports?: Array<JsonApiAutomationPatchAttributesRawExportsInner>;
|
|
3969
|
-
slidesExports?: Array<JsonApiAutomationPatchAttributesSlidesExportsInner>;
|
|
3970
|
-
dashboardTabularExports?: Array<JsonApiAutomationPatchAttributesDashboardTabularExportsInner>;
|
|
3971
|
-
/**
|
|
3972
|
-
* External recipients of the automation action results.
|
|
3973
|
-
*/
|
|
3974
|
-
externalRecipients?: Array<JsonApiAutomationPatchAttributesExternalRecipientsInner>;
|
|
3975
|
-
}
|
|
3976
|
-
export declare const JsonApiAutomationPatchAttributesStateEnum: {
|
|
3977
|
-
readonly ACTIVE: "ACTIVE";
|
|
3978
|
-
readonly PAUSED: "PAUSED";
|
|
3979
|
-
};
|
|
3980
|
-
export type JsonApiAutomationPatchAttributesStateEnum = (typeof JsonApiAutomationPatchAttributesStateEnum)[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
|
|
3981
|
-
export declare const JsonApiAutomationPatchAttributesEvaluationModeEnum: {
|
|
3982
|
-
readonly SHARED: "SHARED";
|
|
3983
|
-
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
3984
|
-
};
|
|
3985
|
-
export type JsonApiAutomationPatchAttributesEvaluationModeEnum = (typeof JsonApiAutomationPatchAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationPatchAttributesEvaluationModeEnum];
|
|
3986
|
-
export interface JsonApiAutomationPatchAttributesAlert {
|
|
3987
|
-
execution: AlertAfm;
|
|
3988
|
-
condition: AlertCondition;
|
|
3989
|
-
/**
|
|
3990
|
-
* Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met.
|
|
3991
|
-
*/
|
|
3992
|
-
trigger?: JsonApiAutomationPatchAttributesAlertTriggerEnum;
|
|
3993
|
-
}
|
|
3994
|
-
export declare const JsonApiAutomationPatchAttributesAlertTriggerEnum: {
|
|
3995
|
-
readonly ALWAYS: "ALWAYS";
|
|
3996
|
-
readonly ONCE: "ONCE";
|
|
3997
|
-
};
|
|
3998
|
-
export type JsonApiAutomationPatchAttributesAlertTriggerEnum = (typeof JsonApiAutomationPatchAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationPatchAttributesAlertTriggerEnum];
|
|
3999
|
-
export interface JsonApiAutomationPatchAttributesDashboardTabularExportsInner {
|
|
4000
|
-
requestPayload: DashboardTabularExportRequestV2;
|
|
4001
|
-
}
|
|
4002
|
-
export interface JsonApiAutomationPatchAttributesExternalRecipientsInner {
|
|
4003
|
-
/**
|
|
4004
|
-
* E-mail address to send notifications from.
|
|
4005
|
-
*/
|
|
4006
|
-
email: string;
|
|
4007
|
-
}
|
|
4008
|
-
export interface JsonApiAutomationPatchAttributesImageExportsInner {
|
|
4009
|
-
requestPayload: ImageExportRequest;
|
|
4010
|
-
}
|
|
4011
|
-
/**
|
|
4012
|
-
* Additional information for the automation.
|
|
4013
|
-
*/
|
|
4014
|
-
export interface JsonApiAutomationPatchAttributesMetadata {
|
|
4015
|
-
[key: string]: any;
|
|
4016
|
-
widget?: string;
|
|
4017
|
-
visibleFilters?: Array<VisibleFilter>;
|
|
4018
|
-
}
|
|
4019
|
-
export interface JsonApiAutomationPatchAttributesRawExportsInner {
|
|
4020
|
-
requestPayload: RawExportAutomationRequest;
|
|
4021
|
-
}
|
|
4022
|
-
export interface JsonApiAutomationPatchAttributesSchedule {
|
|
4023
|
-
/**
|
|
4024
|
-
* Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
|
|
4025
|
-
*/
|
|
4026
|
-
cron: string;
|
|
4027
|
-
/**
|
|
4028
|
-
* Human-readable description of the cron expression.
|
|
4029
|
-
*/
|
|
4030
|
-
cronDescription?: string;
|
|
4031
|
-
/**
|
|
4032
|
-
* Timezone in which the schedule is defined.
|
|
4033
|
-
*/
|
|
4034
|
-
timezone: string;
|
|
4035
|
-
/**
|
|
4036
|
-
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
4037
|
-
*/
|
|
4038
|
-
firstRun?: string;
|
|
4039
|
-
}
|
|
4040
|
-
export interface JsonApiAutomationPatchAttributesSlidesExportsInner {
|
|
4041
|
-
requestPayload: SlidesExportRequest;
|
|
4042
|
-
}
|
|
4043
|
-
export interface JsonApiAutomationPatchAttributesTabularExportsInner {
|
|
4044
|
-
requestPayload: TabularExportRequest;
|
|
4045
|
-
}
|
|
4046
|
-
export interface JsonApiAutomationPatchAttributesVisualExportsInner {
|
|
4047
|
-
requestPayload: VisualExportRequest;
|
|
4048
|
-
}
|
|
4049
4089
|
export interface JsonApiAutomationPatchDocument {
|
|
4050
4090
|
data: JsonApiAutomationPatch;
|
|
4051
4091
|
}
|
|
4052
|
-
export interface JsonApiAutomationPatchRelationships {
|
|
4053
|
-
notificationChannel?: JsonApiAutomationPatchRelationshipsNotificationChannel;
|
|
4054
|
-
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
4055
|
-
exportDefinitions?: JsonApiAutomationPatchRelationshipsExportDefinitions;
|
|
4056
|
-
recipients?: JsonApiAutomationPatchRelationshipsRecipients;
|
|
4057
|
-
}
|
|
4058
|
-
export interface JsonApiAutomationPatchRelationshipsAnalyticalDashboard {
|
|
4059
|
-
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
4060
|
-
}
|
|
4061
|
-
export interface JsonApiAutomationPatchRelationshipsExportDefinitions {
|
|
4062
|
-
/**
|
|
4063
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
4064
|
-
*/
|
|
4065
|
-
data: Array<JsonApiExportDefinitionLinkage>;
|
|
4066
|
-
}
|
|
4067
|
-
export interface JsonApiAutomationPatchRelationshipsNotificationChannel {
|
|
4068
|
-
data: JsonApiNotificationChannelLinkage | null;
|
|
4069
|
-
}
|
|
4070
|
-
export interface JsonApiAutomationPatchRelationshipsRecipients {
|
|
4071
|
-
/**
|
|
4072
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
4073
|
-
*/
|
|
4074
|
-
data: Array<JsonApiUserLinkage>;
|
|
4075
|
-
}
|
|
4076
4092
|
/**
|
|
4077
4093
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
4078
4094
|
*/
|
|
@@ -4257,12 +4273,19 @@ export interface JsonApiCookieSecurityConfigurationIn {
|
|
|
4257
4273
|
* API identifier of an object
|
|
4258
4274
|
*/
|
|
4259
4275
|
id: string;
|
|
4260
|
-
attributes?:
|
|
4276
|
+
attributes?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
4261
4277
|
}
|
|
4262
4278
|
export declare const JsonApiCookieSecurityConfigurationInTypeEnum: {
|
|
4263
4279
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
4264
4280
|
};
|
|
4265
4281
|
export type JsonApiCookieSecurityConfigurationInTypeEnum = (typeof JsonApiCookieSecurityConfigurationInTypeEnum)[keyof typeof JsonApiCookieSecurityConfigurationInTypeEnum];
|
|
4282
|
+
export interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
4283
|
+
lastRotation?: string;
|
|
4284
|
+
/**
|
|
4285
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
4286
|
+
*/
|
|
4287
|
+
rotationInterval?: string;
|
|
4288
|
+
}
|
|
4266
4289
|
export interface JsonApiCookieSecurityConfigurationInDocument {
|
|
4267
4290
|
data: JsonApiCookieSecurityConfigurationIn;
|
|
4268
4291
|
}
|
|
@@ -4278,7 +4301,7 @@ export interface JsonApiCookieSecurityConfigurationOut {
|
|
|
4278
4301
|
* API identifier of an object
|
|
4279
4302
|
*/
|
|
4280
4303
|
id: string;
|
|
4281
|
-
attributes?:
|
|
4304
|
+
attributes?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
4282
4305
|
}
|
|
4283
4306
|
export declare const JsonApiCookieSecurityConfigurationOutTypeEnum: {
|
|
4284
4307
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
@@ -4300,19 +4323,12 @@ export interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
4300
4323
|
* API identifier of an object
|
|
4301
4324
|
*/
|
|
4302
4325
|
id: string;
|
|
4303
|
-
attributes?:
|
|
4326
|
+
attributes?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
4304
4327
|
}
|
|
4305
4328
|
export declare const JsonApiCookieSecurityConfigurationPatchTypeEnum: {
|
|
4306
4329
|
readonly COOKIE_SECURITY_CONFIGURATION: "cookieSecurityConfiguration";
|
|
4307
4330
|
};
|
|
4308
4331
|
export type JsonApiCookieSecurityConfigurationPatchTypeEnum = (typeof JsonApiCookieSecurityConfigurationPatchTypeEnum)[keyof typeof JsonApiCookieSecurityConfigurationPatchTypeEnum];
|
|
4309
|
-
export interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
4310
|
-
lastRotation?: string;
|
|
4311
|
-
/**
|
|
4312
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
4313
|
-
*/
|
|
4314
|
-
rotationInterval?: string;
|
|
4315
|
-
}
|
|
4316
4332
|
export interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
4317
4333
|
data: JsonApiCookieSecurityConfigurationPatch;
|
|
4318
4334
|
}
|
|
@@ -4422,7 +4438,7 @@ export interface JsonApiCustomApplicationSettingIn {
|
|
|
4422
4438
|
* API identifier of an object
|
|
4423
4439
|
*/
|
|
4424
4440
|
id: string;
|
|
4425
|
-
attributes:
|
|
4441
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
4426
4442
|
}
|
|
4427
4443
|
export declare const JsonApiCustomApplicationSettingInTypeEnum: {
|
|
4428
4444
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
@@ -4444,19 +4460,12 @@ export interface JsonApiCustomApplicationSettingOut {
|
|
|
4444
4460
|
*/
|
|
4445
4461
|
id: string;
|
|
4446
4462
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4447
|
-
attributes:
|
|
4463
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
4448
4464
|
}
|
|
4449
4465
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
4450
4466
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
4451
4467
|
};
|
|
4452
4468
|
export type JsonApiCustomApplicationSettingOutTypeEnum = (typeof JsonApiCustomApplicationSettingOutTypeEnum)[keyof typeof JsonApiCustomApplicationSettingOutTypeEnum];
|
|
4453
|
-
export interface JsonApiCustomApplicationSettingOutAttributes {
|
|
4454
|
-
applicationName: string;
|
|
4455
|
-
/**
|
|
4456
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4457
|
-
*/
|
|
4458
|
-
content: object;
|
|
4459
|
-
}
|
|
4460
4469
|
export interface JsonApiCustomApplicationSettingOutDocument {
|
|
4461
4470
|
data: JsonApiCustomApplicationSettingOut;
|
|
4462
4471
|
links?: ObjectLinks;
|
|
@@ -4479,7 +4488,7 @@ export interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
4479
4488
|
*/
|
|
4480
4489
|
id: string;
|
|
4481
4490
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
4482
|
-
attributes:
|
|
4491
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
4483
4492
|
links?: ObjectLinks;
|
|
4484
4493
|
}
|
|
4485
4494
|
export declare const JsonApiCustomApplicationSettingOutWithLinksTypeEnum: {
|
|
@@ -4526,12 +4535,19 @@ export interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
4526
4535
|
* API identifier of an object
|
|
4527
4536
|
*/
|
|
4528
4537
|
id?: string;
|
|
4529
|
-
attributes:
|
|
4538
|
+
attributes: JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
4530
4539
|
}
|
|
4531
4540
|
export declare const JsonApiCustomApplicationSettingPostOptionalIdTypeEnum: {
|
|
4532
4541
|
readonly CUSTOM_APPLICATION_SETTING: "customApplicationSetting";
|
|
4533
4542
|
};
|
|
4534
4543
|
export type JsonApiCustomApplicationSettingPostOptionalIdTypeEnum = (typeof JsonApiCustomApplicationSettingPostOptionalIdTypeEnum)[keyof typeof JsonApiCustomApplicationSettingPostOptionalIdTypeEnum];
|
|
4544
|
+
export interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
|
|
4545
|
+
applicationName: string;
|
|
4546
|
+
/**
|
|
4547
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4548
|
+
*/
|
|
4549
|
+
content: object;
|
|
4550
|
+
}
|
|
4535
4551
|
export interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
4536
4552
|
data: JsonApiCustomApplicationSettingPostOptionalId;
|
|
4537
4553
|
}
|
|
@@ -4547,7 +4563,7 @@ export interface JsonApiDashboardPluginIn {
|
|
|
4547
4563
|
* API identifier of an object
|
|
4548
4564
|
*/
|
|
4549
4565
|
id: string;
|
|
4550
|
-
attributes?:
|
|
4566
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
4551
4567
|
}
|
|
4552
4568
|
export declare const JsonApiDashboardPluginInTypeEnum: {
|
|
4553
4569
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
@@ -4653,22 +4669,12 @@ export interface JsonApiDashboardPluginPatch {
|
|
|
4653
4669
|
* API identifier of an object
|
|
4654
4670
|
*/
|
|
4655
4671
|
id: string;
|
|
4656
|
-
attributes?:
|
|
4672
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
4657
4673
|
}
|
|
4658
4674
|
export declare const JsonApiDashboardPluginPatchTypeEnum: {
|
|
4659
4675
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
4660
4676
|
};
|
|
4661
4677
|
export type JsonApiDashboardPluginPatchTypeEnum = (typeof JsonApiDashboardPluginPatchTypeEnum)[keyof typeof JsonApiDashboardPluginPatchTypeEnum];
|
|
4662
|
-
export interface JsonApiDashboardPluginPatchAttributes {
|
|
4663
|
-
title?: string;
|
|
4664
|
-
description?: string;
|
|
4665
|
-
tags?: Array<string>;
|
|
4666
|
-
areRelationsValid?: boolean;
|
|
4667
|
-
/**
|
|
4668
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4669
|
-
*/
|
|
4670
|
-
content?: object;
|
|
4671
|
-
}
|
|
4672
4678
|
export interface JsonApiDashboardPluginPatchDocument {
|
|
4673
4679
|
data: JsonApiDashboardPluginPatch;
|
|
4674
4680
|
}
|
|
@@ -4684,12 +4690,22 @@ export interface JsonApiDashboardPluginPostOptionalId {
|
|
|
4684
4690
|
* API identifier of an object
|
|
4685
4691
|
*/
|
|
4686
4692
|
id?: string;
|
|
4687
|
-
attributes?:
|
|
4693
|
+
attributes?: JsonApiDashboardPluginPostOptionalIdAttributes;
|
|
4688
4694
|
}
|
|
4689
4695
|
export declare const JsonApiDashboardPluginPostOptionalIdTypeEnum: {
|
|
4690
4696
|
readonly DASHBOARD_PLUGIN: "dashboardPlugin";
|
|
4691
4697
|
};
|
|
4692
4698
|
export type JsonApiDashboardPluginPostOptionalIdTypeEnum = (typeof JsonApiDashboardPluginPostOptionalIdTypeEnum)[keyof typeof JsonApiDashboardPluginPostOptionalIdTypeEnum];
|
|
4699
|
+
export interface JsonApiDashboardPluginPostOptionalIdAttributes {
|
|
4700
|
+
title?: string;
|
|
4701
|
+
description?: string;
|
|
4702
|
+
tags?: Array<string>;
|
|
4703
|
+
areRelationsValid?: boolean;
|
|
4704
|
+
/**
|
|
4705
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4706
|
+
*/
|
|
4707
|
+
content?: object;
|
|
4708
|
+
}
|
|
4693
4709
|
export interface JsonApiDashboardPluginPostOptionalIdDocument {
|
|
4694
4710
|
data: JsonApiDashboardPluginPostOptionalId;
|
|
4695
4711
|
}
|
|
@@ -5379,8 +5395,8 @@ export interface JsonApiExportDefinitionIn {
|
|
|
5379
5395
|
* API identifier of an object
|
|
5380
5396
|
*/
|
|
5381
5397
|
id: string;
|
|
5382
|
-
attributes?:
|
|
5383
|
-
relationships?:
|
|
5398
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
5399
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
5384
5400
|
}
|
|
5385
5401
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
5386
5402
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
@@ -5460,7 +5476,7 @@ export interface JsonApiExportDefinitionOutList {
|
|
|
5460
5476
|
}
|
|
5461
5477
|
export interface JsonApiExportDefinitionOutRelationships {
|
|
5462
5478
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5463
|
-
analyticalDashboard?:
|
|
5479
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
5464
5480
|
automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
|
|
5465
5481
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
5466
5482
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
@@ -5501,27 +5517,16 @@ export interface JsonApiExportDefinitionPatch {
|
|
|
5501
5517
|
* API identifier of an object
|
|
5502
5518
|
*/
|
|
5503
5519
|
id: string;
|
|
5504
|
-
attributes?:
|
|
5505
|
-
relationships?:
|
|
5520
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
5521
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
5506
5522
|
}
|
|
5507
5523
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
5508
5524
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
5509
5525
|
};
|
|
5510
5526
|
export type JsonApiExportDefinitionPatchTypeEnum = (typeof JsonApiExportDefinitionPatchTypeEnum)[keyof typeof JsonApiExportDefinitionPatchTypeEnum];
|
|
5511
|
-
export interface JsonApiExportDefinitionPatchAttributes {
|
|
5512
|
-
title?: string;
|
|
5513
|
-
description?: string;
|
|
5514
|
-
tags?: Array<string>;
|
|
5515
|
-
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
5516
|
-
areRelationsValid?: boolean;
|
|
5517
|
-
}
|
|
5518
5527
|
export interface JsonApiExportDefinitionPatchDocument {
|
|
5519
5528
|
data: JsonApiExportDefinitionPatch;
|
|
5520
5529
|
}
|
|
5521
|
-
export interface JsonApiExportDefinitionPatchRelationships {
|
|
5522
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5523
|
-
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
5524
|
-
}
|
|
5525
5530
|
/**
|
|
5526
5531
|
* JSON:API representation of exportDefinition entity.
|
|
5527
5532
|
*/
|
|
@@ -5534,16 +5539,27 @@ export interface JsonApiExportDefinitionPostOptionalId {
|
|
|
5534
5539
|
* API identifier of an object
|
|
5535
5540
|
*/
|
|
5536
5541
|
id?: string;
|
|
5537
|
-
attributes?:
|
|
5538
|
-
relationships?:
|
|
5542
|
+
attributes?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
5543
|
+
relationships?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
5539
5544
|
}
|
|
5540
5545
|
export declare const JsonApiExportDefinitionPostOptionalIdTypeEnum: {
|
|
5541
5546
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
5542
5547
|
};
|
|
5543
5548
|
export type JsonApiExportDefinitionPostOptionalIdTypeEnum = (typeof JsonApiExportDefinitionPostOptionalIdTypeEnum)[keyof typeof JsonApiExportDefinitionPostOptionalIdTypeEnum];
|
|
5549
|
+
export interface JsonApiExportDefinitionPostOptionalIdAttributes {
|
|
5550
|
+
title?: string;
|
|
5551
|
+
description?: string;
|
|
5552
|
+
tags?: Array<string>;
|
|
5553
|
+
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
5554
|
+
areRelationsValid?: boolean;
|
|
5555
|
+
}
|
|
5544
5556
|
export interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
5545
5557
|
data: JsonApiExportDefinitionPostOptionalId;
|
|
5546
5558
|
}
|
|
5559
|
+
export interface JsonApiExportDefinitionPostOptionalIdRelationships {
|
|
5560
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
5561
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
5562
|
+
}
|
|
5547
5563
|
/**
|
|
5548
5564
|
* JSON:API representation of exportTemplate entity.
|
|
5549
5565
|
*/
|
|
@@ -5805,7 +5821,7 @@ export interface JsonApiFilterContextIn {
|
|
|
5805
5821
|
* API identifier of an object
|
|
5806
5822
|
*/
|
|
5807
5823
|
id: string;
|
|
5808
|
-
attributes:
|
|
5824
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
5809
5825
|
}
|
|
5810
5826
|
export declare const JsonApiFilterContextInTypeEnum: {
|
|
5811
5827
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -5838,23 +5854,13 @@ export interface JsonApiFilterContextOut {
|
|
|
5838
5854
|
*/
|
|
5839
5855
|
id: string;
|
|
5840
5856
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5841
|
-
attributes:
|
|
5857
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
5842
5858
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
5843
5859
|
}
|
|
5844
5860
|
export declare const JsonApiFilterContextOutTypeEnum: {
|
|
5845
5861
|
readonly FILTER_CONTEXT: "filterContext";
|
|
5846
5862
|
};
|
|
5847
5863
|
export type JsonApiFilterContextOutTypeEnum = (typeof JsonApiFilterContextOutTypeEnum)[keyof typeof JsonApiFilterContextOutTypeEnum];
|
|
5848
|
-
export interface JsonApiFilterContextOutAttributes {
|
|
5849
|
-
title?: string;
|
|
5850
|
-
description?: string;
|
|
5851
|
-
tags?: Array<string>;
|
|
5852
|
-
areRelationsValid?: boolean;
|
|
5853
|
-
/**
|
|
5854
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
5855
|
-
*/
|
|
5856
|
-
content: object;
|
|
5857
|
-
}
|
|
5858
5864
|
export interface JsonApiFilterContextOutDocument {
|
|
5859
5865
|
data: JsonApiFilterContextOut;
|
|
5860
5866
|
links?: ObjectLinks;
|
|
@@ -5894,7 +5900,7 @@ export interface JsonApiFilterContextOutWithLinks {
|
|
|
5894
5900
|
*/
|
|
5895
5901
|
id: string;
|
|
5896
5902
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
5897
|
-
attributes:
|
|
5903
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
5898
5904
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
5899
5905
|
links?: ObjectLinks;
|
|
5900
5906
|
}
|
|
@@ -5935,7 +5941,7 @@ export interface JsonApiFilterContextPostOptionalId {
|
|
|
5935
5941
|
* API identifier of an object
|
|
5936
5942
|
*/
|
|
5937
5943
|
id?: string;
|
|
5938
|
-
attributes:
|
|
5944
|
+
attributes: JsonApiAnalyticalDashboardPostOptionalIdAttributes;
|
|
5939
5945
|
}
|
|
5940
5946
|
export declare const JsonApiFilterContextPostOptionalIdTypeEnum: {
|
|
5941
5947
|
readonly FILTER_CONTEXT: "filterContext";
|
|
@@ -5956,16 +5962,34 @@ export interface JsonApiFilterViewIn {
|
|
|
5956
5962
|
* API identifier of an object
|
|
5957
5963
|
*/
|
|
5958
5964
|
id: string;
|
|
5959
|
-
attributes:
|
|
5960
|
-
relationships?:
|
|
5965
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
5966
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
5961
5967
|
}
|
|
5962
5968
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
5963
5969
|
readonly FILTER_VIEW: "filterView";
|
|
5964
5970
|
};
|
|
5965
5971
|
export type JsonApiFilterViewInTypeEnum = (typeof JsonApiFilterViewInTypeEnum)[keyof typeof JsonApiFilterViewInTypeEnum];
|
|
5972
|
+
export interface JsonApiFilterViewInAttributes {
|
|
5973
|
+
title: string;
|
|
5974
|
+
description?: string;
|
|
5975
|
+
tags?: Array<string>;
|
|
5976
|
+
areRelationsValid?: boolean;
|
|
5977
|
+
/**
|
|
5978
|
+
* Indicator whether the filter view should by applied by default.
|
|
5979
|
+
*/
|
|
5980
|
+
isDefault?: boolean;
|
|
5981
|
+
/**
|
|
5982
|
+
* The respective filter context.
|
|
5983
|
+
*/
|
|
5984
|
+
content: object;
|
|
5985
|
+
}
|
|
5966
5986
|
export interface JsonApiFilterViewInDocument {
|
|
5967
5987
|
data: JsonApiFilterViewIn;
|
|
5968
5988
|
}
|
|
5989
|
+
export interface JsonApiFilterViewInRelationships {
|
|
5990
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
5991
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
5992
|
+
}
|
|
5969
5993
|
/**
|
|
5970
5994
|
* JSON:API representation of filterView entity.
|
|
5971
5995
|
*/
|
|
@@ -5978,27 +6002,13 @@ export interface JsonApiFilterViewOut {
|
|
|
5978
6002
|
* API identifier of an object
|
|
5979
6003
|
*/
|
|
5980
6004
|
id: string;
|
|
5981
|
-
attributes:
|
|
5982
|
-
relationships?:
|
|
6005
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
6006
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
5983
6007
|
}
|
|
5984
6008
|
export declare const JsonApiFilterViewOutTypeEnum: {
|
|
5985
6009
|
readonly FILTER_VIEW: "filterView";
|
|
5986
6010
|
};
|
|
5987
6011
|
export type JsonApiFilterViewOutTypeEnum = (typeof JsonApiFilterViewOutTypeEnum)[keyof typeof JsonApiFilterViewOutTypeEnum];
|
|
5988
|
-
export interface JsonApiFilterViewOutAttributes {
|
|
5989
|
-
title: string;
|
|
5990
|
-
description?: string;
|
|
5991
|
-
tags?: Array<string>;
|
|
5992
|
-
areRelationsValid?: boolean;
|
|
5993
|
-
/**
|
|
5994
|
-
* Indicator whether the filter view should by applied by default.
|
|
5995
|
-
*/
|
|
5996
|
-
isDefault?: boolean;
|
|
5997
|
-
/**
|
|
5998
|
-
* The respective filter context.
|
|
5999
|
-
*/
|
|
6000
|
-
content: object;
|
|
6001
|
-
}
|
|
6002
6012
|
export interface JsonApiFilterViewOutDocument {
|
|
6003
6013
|
data: JsonApiFilterViewOut;
|
|
6004
6014
|
links?: ObjectLinks;
|
|
@@ -6032,8 +6042,8 @@ export interface JsonApiFilterViewOutWithLinks {
|
|
|
6032
6042
|
* API identifier of an object
|
|
6033
6043
|
*/
|
|
6034
6044
|
id: string;
|
|
6035
|
-
attributes:
|
|
6036
|
-
relationships?:
|
|
6045
|
+
attributes: JsonApiFilterViewInAttributes;
|
|
6046
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
6037
6047
|
links?: ObjectLinks;
|
|
6038
6048
|
}
|
|
6039
6049
|
export declare const JsonApiFilterViewOutWithLinksTypeEnum: {
|
|
@@ -6053,7 +6063,7 @@ export interface JsonApiFilterViewPatch {
|
|
|
6053
6063
|
*/
|
|
6054
6064
|
id: string;
|
|
6055
6065
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
6056
|
-
relationships?:
|
|
6066
|
+
relationships?: JsonApiFilterViewInRelationships;
|
|
6057
6067
|
}
|
|
6058
6068
|
export declare const JsonApiFilterViewPatchTypeEnum: {
|
|
6059
6069
|
readonly FILTER_VIEW: "filterView";
|
|
@@ -6076,10 +6086,6 @@ export interface JsonApiFilterViewPatchAttributes {
|
|
|
6076
6086
|
export interface JsonApiFilterViewPatchDocument {
|
|
6077
6087
|
data: JsonApiFilterViewPatch;
|
|
6078
6088
|
}
|
|
6079
|
-
export interface JsonApiFilterViewPatchRelationships {
|
|
6080
|
-
analyticalDashboard?: JsonApiAutomationPatchRelationshipsAnalyticalDashboard;
|
|
6081
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
6082
|
-
}
|
|
6083
6089
|
/**
|
|
6084
6090
|
* JSON:API representation of identityProvider entity.
|
|
6085
6091
|
*/
|
|
@@ -6658,6 +6664,210 @@ export type JsonApiLlmEndpointPatchAttributesProviderEnum = (typeof JsonApiLlmEn
|
|
|
6658
6664
|
export interface JsonApiLlmEndpointPatchDocument {
|
|
6659
6665
|
data: JsonApiLlmEndpointPatch;
|
|
6660
6666
|
}
|
|
6667
|
+
/**
|
|
6668
|
+
* JSON:API representation of memoryItem entity.
|
|
6669
|
+
*/
|
|
6670
|
+
export interface JsonApiMemoryItemIn {
|
|
6671
|
+
/**
|
|
6672
|
+
* Object type
|
|
6673
|
+
*/
|
|
6674
|
+
type: JsonApiMemoryItemInTypeEnum;
|
|
6675
|
+
/**
|
|
6676
|
+
* API identifier of an object
|
|
6677
|
+
*/
|
|
6678
|
+
id: string;
|
|
6679
|
+
attributes: JsonApiMemoryItemPostOptionalIdAttributes;
|
|
6680
|
+
}
|
|
6681
|
+
export declare const JsonApiMemoryItemInTypeEnum: {
|
|
6682
|
+
readonly MEMORY_ITEM: "memoryItem";
|
|
6683
|
+
};
|
|
6684
|
+
export type JsonApiMemoryItemInTypeEnum = (typeof JsonApiMemoryItemInTypeEnum)[keyof typeof JsonApiMemoryItemInTypeEnum];
|
|
6685
|
+
export interface JsonApiMemoryItemInDocument {
|
|
6686
|
+
data: JsonApiMemoryItemIn;
|
|
6687
|
+
}
|
|
6688
|
+
/**
|
|
6689
|
+
* JSON:API representation of memoryItem entity.
|
|
6690
|
+
*/
|
|
6691
|
+
export interface JsonApiMemoryItemOut {
|
|
6692
|
+
/**
|
|
6693
|
+
* Object type
|
|
6694
|
+
*/
|
|
6695
|
+
type: JsonApiMemoryItemOutTypeEnum;
|
|
6696
|
+
/**
|
|
6697
|
+
* API identifier of an object
|
|
6698
|
+
*/
|
|
6699
|
+
id: string;
|
|
6700
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
6701
|
+
attributes: JsonApiMemoryItemOutAttributes;
|
|
6702
|
+
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
6703
|
+
}
|
|
6704
|
+
export declare const JsonApiMemoryItemOutTypeEnum: {
|
|
6705
|
+
readonly MEMORY_ITEM: "memoryItem";
|
|
6706
|
+
};
|
|
6707
|
+
export type JsonApiMemoryItemOutTypeEnum = (typeof JsonApiMemoryItemOutTypeEnum)[keyof typeof JsonApiMemoryItemOutTypeEnum];
|
|
6708
|
+
export interface JsonApiMemoryItemOutAttributes {
|
|
6709
|
+
title?: string;
|
|
6710
|
+
description?: string;
|
|
6711
|
+
tags?: Array<string>;
|
|
6712
|
+
areRelationsValid?: boolean;
|
|
6713
|
+
/**
|
|
6714
|
+
* Strategy defining when the memory item should be applied
|
|
6715
|
+
*/
|
|
6716
|
+
strategy: JsonApiMemoryItemOutAttributesStrategyEnum;
|
|
6717
|
+
/**
|
|
6718
|
+
* The text that will be injected into the system prompt
|
|
6719
|
+
*/
|
|
6720
|
+
instruction: string;
|
|
6721
|
+
/**
|
|
6722
|
+
* Set of unique strings used for semantic similarity filtering
|
|
6723
|
+
*/
|
|
6724
|
+
keywords?: Array<string>;
|
|
6725
|
+
/**
|
|
6726
|
+
* Whether memory item is disabled
|
|
6727
|
+
*/
|
|
6728
|
+
isDisabled?: boolean;
|
|
6729
|
+
createdAt?: string;
|
|
6730
|
+
modifiedAt?: string;
|
|
6731
|
+
}
|
|
6732
|
+
export declare const JsonApiMemoryItemOutAttributesStrategyEnum: {
|
|
6733
|
+
readonly ALWAYS: "ALWAYS";
|
|
6734
|
+
readonly AUTO: "AUTO";
|
|
6735
|
+
};
|
|
6736
|
+
export type JsonApiMemoryItemOutAttributesStrategyEnum = (typeof JsonApiMemoryItemOutAttributesStrategyEnum)[keyof typeof JsonApiMemoryItemOutAttributesStrategyEnum];
|
|
6737
|
+
export interface JsonApiMemoryItemOutDocument {
|
|
6738
|
+
data: JsonApiMemoryItemOut;
|
|
6739
|
+
links?: ObjectLinks;
|
|
6740
|
+
/**
|
|
6741
|
+
* Included resources
|
|
6742
|
+
*/
|
|
6743
|
+
included?: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
6744
|
+
}
|
|
6745
|
+
/**
|
|
6746
|
+
* A JSON:API document with a list of resources
|
|
6747
|
+
*/
|
|
6748
|
+
export interface JsonApiMemoryItemOutList {
|
|
6749
|
+
data: Array<JsonApiMemoryItemOutWithLinks>;
|
|
6750
|
+
links?: ListLinks;
|
|
6751
|
+
meta?: JsonApiColorPaletteOutListMeta;
|
|
6752
|
+
/**
|
|
6753
|
+
* Included resources
|
|
6754
|
+
*/
|
|
6755
|
+
included?: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
6756
|
+
}
|
|
6757
|
+
export interface JsonApiMemoryItemOutWithLinks {
|
|
6758
|
+
/**
|
|
6759
|
+
* Object type
|
|
6760
|
+
*/
|
|
6761
|
+
type: JsonApiMemoryItemOutWithLinksTypeEnum;
|
|
6762
|
+
/**
|
|
6763
|
+
* API identifier of an object
|
|
6764
|
+
*/
|
|
6765
|
+
id: string;
|
|
6766
|
+
meta?: JsonApiVisualizationObjectOutMeta;
|
|
6767
|
+
attributes: JsonApiMemoryItemOutAttributes;
|
|
6768
|
+
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
6769
|
+
links?: ObjectLinks;
|
|
6770
|
+
}
|
|
6771
|
+
export declare const JsonApiMemoryItemOutWithLinksTypeEnum: {
|
|
6772
|
+
readonly MEMORY_ITEM: "memoryItem";
|
|
6773
|
+
};
|
|
6774
|
+
export type JsonApiMemoryItemOutWithLinksTypeEnum = (typeof JsonApiMemoryItemOutWithLinksTypeEnum)[keyof typeof JsonApiMemoryItemOutWithLinksTypeEnum];
|
|
6775
|
+
/**
|
|
6776
|
+
* JSON:API representation of patching memoryItem entity.
|
|
6777
|
+
*/
|
|
6778
|
+
export interface JsonApiMemoryItemPatch {
|
|
6779
|
+
/**
|
|
6780
|
+
* Object type
|
|
6781
|
+
*/
|
|
6782
|
+
type: JsonApiMemoryItemPatchTypeEnum;
|
|
6783
|
+
/**
|
|
6784
|
+
* API identifier of an object
|
|
6785
|
+
*/
|
|
6786
|
+
id: string;
|
|
6787
|
+
attributes: JsonApiMemoryItemPatchAttributes;
|
|
6788
|
+
}
|
|
6789
|
+
export declare const JsonApiMemoryItemPatchTypeEnum: {
|
|
6790
|
+
readonly MEMORY_ITEM: "memoryItem";
|
|
6791
|
+
};
|
|
6792
|
+
export type JsonApiMemoryItemPatchTypeEnum = (typeof JsonApiMemoryItemPatchTypeEnum)[keyof typeof JsonApiMemoryItemPatchTypeEnum];
|
|
6793
|
+
export interface JsonApiMemoryItemPatchAttributes {
|
|
6794
|
+
title?: string;
|
|
6795
|
+
description?: string;
|
|
6796
|
+
tags?: Array<string>;
|
|
6797
|
+
areRelationsValid?: boolean;
|
|
6798
|
+
/**
|
|
6799
|
+
* Strategy defining when the memory item should be applied
|
|
6800
|
+
*/
|
|
6801
|
+
strategy?: JsonApiMemoryItemPatchAttributesStrategyEnum;
|
|
6802
|
+
/**
|
|
6803
|
+
* The text that will be injected into the system prompt
|
|
6804
|
+
*/
|
|
6805
|
+
instruction?: string;
|
|
6806
|
+
/**
|
|
6807
|
+
* Set of unique strings used for semantic similarity filtering
|
|
6808
|
+
*/
|
|
6809
|
+
keywords?: Array<string>;
|
|
6810
|
+
/**
|
|
6811
|
+
* Whether memory item is disabled
|
|
6812
|
+
*/
|
|
6813
|
+
isDisabled?: boolean;
|
|
6814
|
+
}
|
|
6815
|
+
export declare const JsonApiMemoryItemPatchAttributesStrategyEnum: {
|
|
6816
|
+
readonly ALWAYS: "ALWAYS";
|
|
6817
|
+
readonly AUTO: "AUTO";
|
|
6818
|
+
};
|
|
6819
|
+
export type JsonApiMemoryItemPatchAttributesStrategyEnum = (typeof JsonApiMemoryItemPatchAttributesStrategyEnum)[keyof typeof JsonApiMemoryItemPatchAttributesStrategyEnum];
|
|
6820
|
+
export interface JsonApiMemoryItemPatchDocument {
|
|
6821
|
+
data: JsonApiMemoryItemPatch;
|
|
6822
|
+
}
|
|
6823
|
+
/**
|
|
6824
|
+
* JSON:API representation of memoryItem entity.
|
|
6825
|
+
*/
|
|
6826
|
+
export interface JsonApiMemoryItemPostOptionalId {
|
|
6827
|
+
/**
|
|
6828
|
+
* Object type
|
|
6829
|
+
*/
|
|
6830
|
+
type: JsonApiMemoryItemPostOptionalIdTypeEnum;
|
|
6831
|
+
/**
|
|
6832
|
+
* API identifier of an object
|
|
6833
|
+
*/
|
|
6834
|
+
id?: string;
|
|
6835
|
+
attributes: JsonApiMemoryItemPostOptionalIdAttributes;
|
|
6836
|
+
}
|
|
6837
|
+
export declare const JsonApiMemoryItemPostOptionalIdTypeEnum: {
|
|
6838
|
+
readonly MEMORY_ITEM: "memoryItem";
|
|
6839
|
+
};
|
|
6840
|
+
export type JsonApiMemoryItemPostOptionalIdTypeEnum = (typeof JsonApiMemoryItemPostOptionalIdTypeEnum)[keyof typeof JsonApiMemoryItemPostOptionalIdTypeEnum];
|
|
6841
|
+
export interface JsonApiMemoryItemPostOptionalIdAttributes {
|
|
6842
|
+
title?: string;
|
|
6843
|
+
description?: string;
|
|
6844
|
+
tags?: Array<string>;
|
|
6845
|
+
areRelationsValid?: boolean;
|
|
6846
|
+
/**
|
|
6847
|
+
* Strategy defining when the memory item should be applied
|
|
6848
|
+
*/
|
|
6849
|
+
strategy: JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum;
|
|
6850
|
+
/**
|
|
6851
|
+
* The text that will be injected into the system prompt
|
|
6852
|
+
*/
|
|
6853
|
+
instruction: string;
|
|
6854
|
+
/**
|
|
6855
|
+
* Set of unique strings used for semantic similarity filtering
|
|
6856
|
+
*/
|
|
6857
|
+
keywords?: Array<string>;
|
|
6858
|
+
/**
|
|
6859
|
+
* Whether memory item is disabled
|
|
6860
|
+
*/
|
|
6861
|
+
isDisabled?: boolean;
|
|
6862
|
+
}
|
|
6863
|
+
export declare const JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum: {
|
|
6864
|
+
readonly ALWAYS: "ALWAYS";
|
|
6865
|
+
readonly AUTO: "AUTO";
|
|
6866
|
+
};
|
|
6867
|
+
export type JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum = (typeof JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum)[keyof typeof JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum];
|
|
6868
|
+
export interface JsonApiMemoryItemPostOptionalIdDocument {
|
|
6869
|
+
data: JsonApiMemoryItemPostOptionalId;
|
|
6870
|
+
}
|
|
6661
6871
|
/**
|
|
6662
6872
|
* JSON:API representation of metric entity.
|
|
6663
6873
|
*/
|
|
@@ -6670,20 +6880,12 @@ export interface JsonApiMetricIn {
|
|
|
6670
6880
|
* API identifier of an object
|
|
6671
6881
|
*/
|
|
6672
6882
|
id: string;
|
|
6673
|
-
attributes:
|
|
6883
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
6674
6884
|
}
|
|
6675
6885
|
export declare const JsonApiMetricInTypeEnum: {
|
|
6676
6886
|
readonly METRIC: "metric";
|
|
6677
6887
|
};
|
|
6678
6888
|
export type JsonApiMetricInTypeEnum = (typeof JsonApiMetricInTypeEnum)[keyof typeof JsonApiMetricInTypeEnum];
|
|
6679
|
-
export interface JsonApiMetricInAttributes {
|
|
6680
|
-
title?: string;
|
|
6681
|
-
description?: string;
|
|
6682
|
-
tags?: Array<string>;
|
|
6683
|
-
areRelationsValid?: boolean;
|
|
6684
|
-
content: JsonApiMetricOutAttributesContent;
|
|
6685
|
-
isHidden?: boolean;
|
|
6686
|
-
}
|
|
6687
6889
|
export interface JsonApiMetricInDocument {
|
|
6688
6890
|
data: JsonApiMetricIn;
|
|
6689
6891
|
}
|
|
@@ -6815,12 +7017,20 @@ export interface JsonApiMetricPostOptionalId {
|
|
|
6815
7017
|
* API identifier of an object
|
|
6816
7018
|
*/
|
|
6817
7019
|
id?: string;
|
|
6818
|
-
attributes:
|
|
7020
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
6819
7021
|
}
|
|
6820
7022
|
export declare const JsonApiMetricPostOptionalIdTypeEnum: {
|
|
6821
7023
|
readonly METRIC: "metric";
|
|
6822
7024
|
};
|
|
6823
7025
|
export type JsonApiMetricPostOptionalIdTypeEnum = (typeof JsonApiMetricPostOptionalIdTypeEnum)[keyof typeof JsonApiMetricPostOptionalIdTypeEnum];
|
|
7026
|
+
export interface JsonApiMetricPostOptionalIdAttributes {
|
|
7027
|
+
title?: string;
|
|
7028
|
+
description?: string;
|
|
7029
|
+
tags?: Array<string>;
|
|
7030
|
+
areRelationsValid?: boolean;
|
|
7031
|
+
content: JsonApiMetricOutAttributesContent;
|
|
7032
|
+
isHidden?: boolean;
|
|
7033
|
+
}
|
|
6824
7034
|
export interface JsonApiMetricPostOptionalIdDocument {
|
|
6825
7035
|
data: JsonApiMetricPostOptionalId;
|
|
6826
7036
|
}
|
|
@@ -6904,12 +7114,54 @@ export interface JsonApiNotificationChannelIn {
|
|
|
6904
7114
|
* API identifier of an object
|
|
6905
7115
|
*/
|
|
6906
7116
|
id: string;
|
|
6907
|
-
attributes?:
|
|
7117
|
+
attributes?: JsonApiNotificationChannelInAttributes;
|
|
6908
7118
|
}
|
|
6909
7119
|
export declare const JsonApiNotificationChannelInTypeEnum: {
|
|
6910
7120
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
6911
7121
|
};
|
|
6912
7122
|
export type JsonApiNotificationChannelInTypeEnum = (typeof JsonApiNotificationChannelInTypeEnum)[keyof typeof JsonApiNotificationChannelInTypeEnum];
|
|
7123
|
+
export interface JsonApiNotificationChannelInAttributes {
|
|
7124
|
+
name?: string | null;
|
|
7125
|
+
description?: string | null;
|
|
7126
|
+
destination?: JsonApiNotificationChannelOutAttributesDestination;
|
|
7127
|
+
/**
|
|
7128
|
+
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
7129
|
+
*/
|
|
7130
|
+
customDashboardUrl?: string;
|
|
7131
|
+
/**
|
|
7132
|
+
* Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
|
|
7133
|
+
*/
|
|
7134
|
+
dashboardLinkVisibility?: JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum;
|
|
7135
|
+
/**
|
|
7136
|
+
* Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
|
|
7137
|
+
*/
|
|
7138
|
+
notificationSource?: string;
|
|
7139
|
+
/**
|
|
7140
|
+
* Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
|
|
7141
|
+
*/
|
|
7142
|
+
allowedRecipients?: JsonApiNotificationChannelInAttributesAllowedRecipientsEnum;
|
|
7143
|
+
/**
|
|
7144
|
+
* In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
|
|
7145
|
+
*/
|
|
7146
|
+
inPlatformNotification?: JsonApiNotificationChannelInAttributesInPlatformNotificationEnum;
|
|
7147
|
+
}
|
|
7148
|
+
export declare const JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum: {
|
|
7149
|
+
readonly HIDDEN: "HIDDEN";
|
|
7150
|
+
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
7151
|
+
readonly ALL: "ALL";
|
|
7152
|
+
};
|
|
7153
|
+
export type JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelInAttributesDashboardLinkVisibilityEnum];
|
|
7154
|
+
export declare const JsonApiNotificationChannelInAttributesAllowedRecipientsEnum: {
|
|
7155
|
+
readonly CREATOR: "CREATOR";
|
|
7156
|
+
readonly INTERNAL: "INTERNAL";
|
|
7157
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
7158
|
+
};
|
|
7159
|
+
export type JsonApiNotificationChannelInAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelInAttributesAllowedRecipientsEnum];
|
|
7160
|
+
export declare const JsonApiNotificationChannelInAttributesInPlatformNotificationEnum: {
|
|
7161
|
+
readonly DISABLED: "DISABLED";
|
|
7162
|
+
readonly ENABLED: "ENABLED";
|
|
7163
|
+
};
|
|
7164
|
+
export type JsonApiNotificationChannelInAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelInAttributesInPlatformNotificationEnum];
|
|
6913
7165
|
export interface JsonApiNotificationChannelInDocument {
|
|
6914
7166
|
data: JsonApiNotificationChannelIn;
|
|
6915
7167
|
}
|
|
@@ -7037,7 +7289,7 @@ export interface JsonApiNotificationChannelPatch {
|
|
|
7037
7289
|
* API identifier of an object
|
|
7038
7290
|
*/
|
|
7039
7291
|
id: string;
|
|
7040
|
-
attributes?:
|
|
7292
|
+
attributes?: JsonApiNotificationChannelInAttributes;
|
|
7041
7293
|
}
|
|
7042
7294
|
export declare const JsonApiNotificationChannelPatchTypeEnum: {
|
|
7043
7295
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
@@ -7058,54 +7310,12 @@ export interface JsonApiNotificationChannelPostOptionalId {
|
|
|
7058
7310
|
* API identifier of an object
|
|
7059
7311
|
*/
|
|
7060
7312
|
id?: string;
|
|
7061
|
-
attributes?:
|
|
7313
|
+
attributes?: JsonApiNotificationChannelInAttributes;
|
|
7062
7314
|
}
|
|
7063
7315
|
export declare const JsonApiNotificationChannelPostOptionalIdTypeEnum: {
|
|
7064
7316
|
readonly NOTIFICATION_CHANNEL: "notificationChannel";
|
|
7065
7317
|
};
|
|
7066
7318
|
export type JsonApiNotificationChannelPostOptionalIdTypeEnum = (typeof JsonApiNotificationChannelPostOptionalIdTypeEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdTypeEnum];
|
|
7067
|
-
export interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
7068
|
-
name?: string | null;
|
|
7069
|
-
description?: string | null;
|
|
7070
|
-
destination?: JsonApiNotificationChannelOutAttributesDestination;
|
|
7071
|
-
/**
|
|
7072
|
-
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
7073
|
-
*/
|
|
7074
|
-
customDashboardUrl?: string;
|
|
7075
|
-
/**
|
|
7076
|
-
* Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
|
|
7077
|
-
*/
|
|
7078
|
-
dashboardLinkVisibility?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
|
|
7079
|
-
/**
|
|
7080
|
-
* Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
|
|
7081
|
-
*/
|
|
7082
|
-
notificationSource?: string;
|
|
7083
|
-
/**
|
|
7084
|
-
* Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
|
|
7085
|
-
*/
|
|
7086
|
-
allowedRecipients?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
|
|
7087
|
-
/**
|
|
7088
|
-
* In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
|
|
7089
|
-
*/
|
|
7090
|
-
inPlatformNotification?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
|
|
7091
|
-
}
|
|
7092
|
-
export declare const JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum: {
|
|
7093
|
-
readonly HIDDEN: "HIDDEN";
|
|
7094
|
-
readonly INTERNAL_ONLY: "INTERNAL_ONLY";
|
|
7095
|
-
readonly ALL: "ALL";
|
|
7096
|
-
};
|
|
7097
|
-
export type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum];
|
|
7098
|
-
export declare const JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum: {
|
|
7099
|
-
readonly CREATOR: "CREATOR";
|
|
7100
|
-
readonly INTERNAL: "INTERNAL";
|
|
7101
|
-
readonly EXTERNAL: "EXTERNAL";
|
|
7102
|
-
};
|
|
7103
|
-
export type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum];
|
|
7104
|
-
export declare const JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum: {
|
|
7105
|
-
readonly DISABLED: "DISABLED";
|
|
7106
|
-
readonly ENABLED: "ENABLED";
|
|
7107
|
-
};
|
|
7108
|
-
export type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = (typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum)[keyof typeof JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum];
|
|
7109
7319
|
export interface JsonApiNotificationChannelPostOptionalIdDocument {
|
|
7110
7320
|
data: JsonApiNotificationChannelPostOptionalId;
|
|
7111
7321
|
}
|
|
@@ -7121,16 +7331,36 @@ export interface JsonApiOrganizationIn {
|
|
|
7121
7331
|
* API identifier of an object
|
|
7122
7332
|
*/
|
|
7123
7333
|
id: string;
|
|
7124
|
-
attributes?:
|
|
7125
|
-
relationships?:
|
|
7334
|
+
attributes?: JsonApiOrganizationInAttributes;
|
|
7335
|
+
relationships?: JsonApiOrganizationInRelationships;
|
|
7126
7336
|
}
|
|
7127
7337
|
export declare const JsonApiOrganizationInTypeEnum: {
|
|
7128
7338
|
readonly ORGANIZATION: "organization";
|
|
7129
7339
|
};
|
|
7130
7340
|
export type JsonApiOrganizationInTypeEnum = (typeof JsonApiOrganizationInTypeEnum)[keyof typeof JsonApiOrganizationInTypeEnum];
|
|
7341
|
+
export interface JsonApiOrganizationInAttributes {
|
|
7342
|
+
name?: string | null;
|
|
7343
|
+
hostname?: string;
|
|
7344
|
+
allowedOrigins?: Array<string>;
|
|
7345
|
+
/**
|
|
7346
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
7347
|
+
* @deprecated
|
|
7348
|
+
*/
|
|
7349
|
+
earlyAccess?: string | null;
|
|
7350
|
+
/**
|
|
7351
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
7352
|
+
*/
|
|
7353
|
+
earlyAccessValues?: Array<string> | null;
|
|
7354
|
+
}
|
|
7131
7355
|
export interface JsonApiOrganizationInDocument {
|
|
7132
7356
|
data: JsonApiOrganizationIn;
|
|
7133
7357
|
}
|
|
7358
|
+
export interface JsonApiOrganizationInRelationships {
|
|
7359
|
+
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
7360
|
+
}
|
|
7361
|
+
export interface JsonApiOrganizationInRelationshipsIdentityProvider {
|
|
7362
|
+
data: JsonApiIdentityProviderLinkage | null;
|
|
7363
|
+
}
|
|
7134
7364
|
/**
|
|
7135
7365
|
* JSON:API representation of organization entity.
|
|
7136
7366
|
*/
|
|
@@ -7201,7 +7431,7 @@ export type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizat
|
|
|
7201
7431
|
export interface JsonApiOrganizationOutRelationships {
|
|
7202
7432
|
bootstrapUser?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
7203
7433
|
bootstrapUserGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
7204
|
-
identityProvider?:
|
|
7434
|
+
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
7205
7435
|
}
|
|
7206
7436
|
export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
7207
7437
|
data: JsonApiUserLinkage | null;
|
|
@@ -7221,36 +7451,16 @@ export interface JsonApiOrganizationPatch {
|
|
|
7221
7451
|
* API identifier of an object
|
|
7222
7452
|
*/
|
|
7223
7453
|
id: string;
|
|
7224
|
-
attributes?:
|
|
7225
|
-
relationships?:
|
|
7454
|
+
attributes?: JsonApiOrganizationInAttributes;
|
|
7455
|
+
relationships?: JsonApiOrganizationInRelationships;
|
|
7226
7456
|
}
|
|
7227
7457
|
export declare const JsonApiOrganizationPatchTypeEnum: {
|
|
7228
7458
|
readonly ORGANIZATION: "organization";
|
|
7229
7459
|
};
|
|
7230
7460
|
export type JsonApiOrganizationPatchTypeEnum = (typeof JsonApiOrganizationPatchTypeEnum)[keyof typeof JsonApiOrganizationPatchTypeEnum];
|
|
7231
|
-
export interface JsonApiOrganizationPatchAttributes {
|
|
7232
|
-
name?: string | null;
|
|
7233
|
-
hostname?: string;
|
|
7234
|
-
allowedOrigins?: Array<string>;
|
|
7235
|
-
/**
|
|
7236
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
7237
|
-
* @deprecated
|
|
7238
|
-
*/
|
|
7239
|
-
earlyAccess?: string | null;
|
|
7240
|
-
/**
|
|
7241
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
7242
|
-
*/
|
|
7243
|
-
earlyAccessValues?: Array<string> | null;
|
|
7244
|
-
}
|
|
7245
7461
|
export interface JsonApiOrganizationPatchDocument {
|
|
7246
7462
|
data: JsonApiOrganizationPatch;
|
|
7247
7463
|
}
|
|
7248
|
-
export interface JsonApiOrganizationPatchRelationships {
|
|
7249
|
-
identityProvider?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
7250
|
-
}
|
|
7251
|
-
export interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
|
|
7252
|
-
data: JsonApiIdentityProviderLinkage | null;
|
|
7253
|
-
}
|
|
7254
7464
|
/**
|
|
7255
7465
|
* JSON:API representation of organizationSetting entity.
|
|
7256
7466
|
*/
|
|
@@ -7481,8 +7691,8 @@ export interface JsonApiUserDataFilterIn {
|
|
|
7481
7691
|
* API identifier of an object
|
|
7482
7692
|
*/
|
|
7483
7693
|
id: string;
|
|
7484
|
-
attributes:
|
|
7485
|
-
relationships?:
|
|
7694
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
7695
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
7486
7696
|
}
|
|
7487
7697
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
7488
7698
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -7504,20 +7714,13 @@ export interface JsonApiUserDataFilterOut {
|
|
|
7504
7714
|
*/
|
|
7505
7715
|
id: string;
|
|
7506
7716
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7507
|
-
attributes:
|
|
7717
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
7508
7718
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
7509
7719
|
}
|
|
7510
7720
|
export declare const JsonApiUserDataFilterOutTypeEnum: {
|
|
7511
7721
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
7512
7722
|
};
|
|
7513
7723
|
export type JsonApiUserDataFilterOutTypeEnum = (typeof JsonApiUserDataFilterOutTypeEnum)[keyof typeof JsonApiUserDataFilterOutTypeEnum];
|
|
7514
|
-
export interface JsonApiUserDataFilterOutAttributes {
|
|
7515
|
-
title?: string;
|
|
7516
|
-
description?: string;
|
|
7517
|
-
tags?: Array<string>;
|
|
7518
|
-
areRelationsValid?: boolean;
|
|
7519
|
-
maql: string;
|
|
7520
|
-
}
|
|
7521
7724
|
export interface JsonApiUserDataFilterOutDocument {
|
|
7522
7725
|
data: JsonApiUserDataFilterOut;
|
|
7523
7726
|
links?: ObjectLinks;
|
|
@@ -7561,7 +7764,7 @@ export interface JsonApiUserDataFilterOutWithLinks {
|
|
|
7561
7764
|
*/
|
|
7562
7765
|
id: string;
|
|
7563
7766
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
7564
|
-
attributes:
|
|
7767
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
7565
7768
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
7566
7769
|
links?: ObjectLinks;
|
|
7567
7770
|
}
|
|
@@ -7582,7 +7785,7 @@ export interface JsonApiUserDataFilterPatch {
|
|
|
7582
7785
|
*/
|
|
7583
7786
|
id: string;
|
|
7584
7787
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
7585
|
-
relationships?:
|
|
7788
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
7586
7789
|
}
|
|
7587
7790
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
7588
7791
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
@@ -7598,10 +7801,6 @@ export interface JsonApiUserDataFilterPatchAttributes {
|
|
|
7598
7801
|
export interface JsonApiUserDataFilterPatchDocument {
|
|
7599
7802
|
data: JsonApiUserDataFilterPatch;
|
|
7600
7803
|
}
|
|
7601
|
-
export interface JsonApiUserDataFilterPatchRelationships {
|
|
7602
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
7603
|
-
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
7604
|
-
}
|
|
7605
7804
|
/**
|
|
7606
7805
|
* JSON:API representation of userDataFilter entity.
|
|
7607
7806
|
*/
|
|
@@ -7614,16 +7813,27 @@ export interface JsonApiUserDataFilterPostOptionalId {
|
|
|
7614
7813
|
* API identifier of an object
|
|
7615
7814
|
*/
|
|
7616
7815
|
id?: string;
|
|
7617
|
-
attributes:
|
|
7618
|
-
relationships?:
|
|
7816
|
+
attributes: JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
7817
|
+
relationships?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
7619
7818
|
}
|
|
7620
7819
|
export declare const JsonApiUserDataFilterPostOptionalIdTypeEnum: {
|
|
7621
7820
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
7622
7821
|
};
|
|
7623
7822
|
export type JsonApiUserDataFilterPostOptionalIdTypeEnum = (typeof JsonApiUserDataFilterPostOptionalIdTypeEnum)[keyof typeof JsonApiUserDataFilterPostOptionalIdTypeEnum];
|
|
7823
|
+
export interface JsonApiUserDataFilterPostOptionalIdAttributes {
|
|
7824
|
+
title?: string;
|
|
7825
|
+
description?: string;
|
|
7826
|
+
tags?: Array<string>;
|
|
7827
|
+
areRelationsValid?: boolean;
|
|
7828
|
+
maql: string;
|
|
7829
|
+
}
|
|
7624
7830
|
export interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
7625
7831
|
data: JsonApiUserDataFilterPostOptionalId;
|
|
7626
7832
|
}
|
|
7833
|
+
export interface JsonApiUserDataFilterPostOptionalIdRelationships {
|
|
7834
|
+
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
7835
|
+
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
7836
|
+
}
|
|
7627
7837
|
/**
|
|
7628
7838
|
* JSON:API representation of userGroup entity.
|
|
7629
7839
|
*/
|
|
@@ -8008,23 +8218,12 @@ export interface JsonApiVisualizationObjectIn {
|
|
|
8008
8218
|
* API identifier of an object
|
|
8009
8219
|
*/
|
|
8010
8220
|
id: string;
|
|
8011
|
-
attributes:
|
|
8221
|
+
attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
|
|
8012
8222
|
}
|
|
8013
8223
|
export declare const JsonApiVisualizationObjectInTypeEnum: {
|
|
8014
8224
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
8015
8225
|
};
|
|
8016
8226
|
export type JsonApiVisualizationObjectInTypeEnum = (typeof JsonApiVisualizationObjectInTypeEnum)[keyof typeof JsonApiVisualizationObjectInTypeEnum];
|
|
8017
|
-
export interface JsonApiVisualizationObjectInAttributes {
|
|
8018
|
-
title?: string;
|
|
8019
|
-
description?: string;
|
|
8020
|
-
tags?: Array<string>;
|
|
8021
|
-
areRelationsValid?: boolean;
|
|
8022
|
-
/**
|
|
8023
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
8024
|
-
*/
|
|
8025
|
-
content: object;
|
|
8026
|
-
isHidden?: boolean;
|
|
8027
|
-
}
|
|
8028
8227
|
export interface JsonApiVisualizationObjectInDocument {
|
|
8029
8228
|
data: JsonApiVisualizationObjectIn;
|
|
8030
8229
|
}
|
|
@@ -8214,12 +8413,23 @@ export interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
8214
8413
|
* API identifier of an object
|
|
8215
8414
|
*/
|
|
8216
8415
|
id?: string;
|
|
8217
|
-
attributes:
|
|
8416
|
+
attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
|
|
8218
8417
|
}
|
|
8219
8418
|
export declare const JsonApiVisualizationObjectPostOptionalIdTypeEnum: {
|
|
8220
8419
|
readonly VISUALIZATION_OBJECT: "visualizationObject";
|
|
8221
8420
|
};
|
|
8222
8421
|
export type JsonApiVisualizationObjectPostOptionalIdTypeEnum = (typeof JsonApiVisualizationObjectPostOptionalIdTypeEnum)[keyof typeof JsonApiVisualizationObjectPostOptionalIdTypeEnum];
|
|
8422
|
+
export interface JsonApiVisualizationObjectPostOptionalIdAttributes {
|
|
8423
|
+
title?: string;
|
|
8424
|
+
description?: string;
|
|
8425
|
+
tags?: Array<string>;
|
|
8426
|
+
areRelationsValid?: boolean;
|
|
8427
|
+
/**
|
|
8428
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
8429
|
+
*/
|
|
8430
|
+
content: object;
|
|
8431
|
+
isHidden?: boolean;
|
|
8432
|
+
}
|
|
8223
8433
|
export interface JsonApiVisualizationObjectPostOptionalIdDocument {
|
|
8224
8434
|
data: JsonApiVisualizationObjectPostOptionalId;
|
|
8225
8435
|
}
|
|
@@ -8260,12 +8470,12 @@ export interface JsonApiWorkspaceAutomationOutList {
|
|
|
8260
8470
|
}
|
|
8261
8471
|
export interface JsonApiWorkspaceAutomationOutRelationships {
|
|
8262
8472
|
workspace?: JsonApiWorkspaceOutRelationshipsParent;
|
|
8263
|
-
notificationChannel?:
|
|
8264
|
-
analyticalDashboard?:
|
|
8473
|
+
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
8474
|
+
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
8265
8475
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
8266
8476
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
8267
|
-
exportDefinitions?:
|
|
8268
|
-
recipients?:
|
|
8477
|
+
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
8478
|
+
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
8269
8479
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
8270
8480
|
}
|
|
8271
8481
|
export interface JsonApiWorkspaceAutomationOutWithLinks {
|
|
@@ -8424,16 +8634,27 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
8424
8634
|
* API identifier of an object
|
|
8425
8635
|
*/
|
|
8426
8636
|
id: string;
|
|
8427
|
-
attributes?:
|
|
8428
|
-
relationships?:
|
|
8637
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8638
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8429
8639
|
}
|
|
8430
8640
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
8431
8641
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
8432
8642
|
};
|
|
8433
8643
|
export type JsonApiWorkspaceDataFilterSettingInTypeEnum = (typeof JsonApiWorkspaceDataFilterSettingInTypeEnum)[keyof typeof JsonApiWorkspaceDataFilterSettingInTypeEnum];
|
|
8644
|
+
export interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
8645
|
+
title?: string;
|
|
8646
|
+
description?: string;
|
|
8647
|
+
filterValues?: Array<string>;
|
|
8648
|
+
}
|
|
8434
8649
|
export interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
8435
8650
|
data: JsonApiWorkspaceDataFilterSettingIn;
|
|
8436
8651
|
}
|
|
8652
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
8653
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
8654
|
+
}
|
|
8655
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
8656
|
+
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
8657
|
+
}
|
|
8437
8658
|
/**
|
|
8438
8659
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
8439
8660
|
*/
|
|
@@ -8458,8 +8679,8 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
8458
8679
|
*/
|
|
8459
8680
|
id: string;
|
|
8460
8681
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8461
|
-
attributes?:
|
|
8462
|
-
relationships?:
|
|
8682
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8683
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8463
8684
|
}
|
|
8464
8685
|
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
8465
8686
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
@@ -8495,8 +8716,8 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
8495
8716
|
*/
|
|
8496
8717
|
id: string;
|
|
8497
8718
|
meta?: JsonApiVisualizationObjectOutMeta;
|
|
8498
|
-
attributes?:
|
|
8499
|
-
relationships?:
|
|
8719
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8720
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8500
8721
|
links?: ObjectLinks;
|
|
8501
8722
|
}
|
|
8502
8723
|
export declare const JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum: {
|
|
@@ -8515,27 +8736,16 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
8515
8736
|
* API identifier of an object
|
|
8516
8737
|
*/
|
|
8517
8738
|
id: string;
|
|
8518
|
-
attributes?:
|
|
8519
|
-
relationships?:
|
|
8739
|
+
attributes?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
8740
|
+
relationships?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
8520
8741
|
}
|
|
8521
8742
|
export declare const JsonApiWorkspaceDataFilterSettingPatchTypeEnum: {
|
|
8522
8743
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
8523
8744
|
};
|
|
8524
8745
|
export type JsonApiWorkspaceDataFilterSettingPatchTypeEnum = (typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum)[keyof typeof JsonApiWorkspaceDataFilterSettingPatchTypeEnum];
|
|
8525
|
-
export interface JsonApiWorkspaceDataFilterSettingPatchAttributes {
|
|
8526
|
-
title?: string;
|
|
8527
|
-
description?: string;
|
|
8528
|
-
filterValues?: Array<string>;
|
|
8529
|
-
}
|
|
8530
8746
|
export interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
8531
8747
|
data: JsonApiWorkspaceDataFilterSettingPatch;
|
|
8532
8748
|
}
|
|
8533
|
-
export interface JsonApiWorkspaceDataFilterSettingPatchRelationships {
|
|
8534
|
-
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter;
|
|
8535
|
-
}
|
|
8536
|
-
export interface JsonApiWorkspaceDataFilterSettingPatchRelationshipsWorkspaceDataFilter {
|
|
8537
|
-
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
8538
|
-
}
|
|
8539
8749
|
/**
|
|
8540
8750
|
* JSON:API representation of workspace entity.
|
|
8541
8751
|
*/
|
|
@@ -21424,6 +21634,16 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
21424
21634
|
* @throws {RequiredError}
|
|
21425
21635
|
*/
|
|
21426
21636
|
createEntityLlmEndpoints: (jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21637
|
+
/**
|
|
21638
|
+
*
|
|
21639
|
+
* @param {string} workspaceId
|
|
21640
|
+
* @param {JsonApiMemoryItemPostOptionalIdDocument} jsonApiMemoryItemPostOptionalIdDocument
|
|
21641
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
21642
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
21643
|
+
* @param {*} [options] Override http request option.
|
|
21644
|
+
* @throws {RequiredError}
|
|
21645
|
+
*/
|
|
21646
|
+
createEntityMemoryItems: (workspaceId: string, jsonApiMemoryItemPostOptionalIdDocument: JsonApiMemoryItemPostOptionalIdDocument, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21427
21647
|
/**
|
|
21428
21648
|
*
|
|
21429
21649
|
* @summary Post Metrics
|
|
@@ -21702,6 +21922,15 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
21702
21922
|
* @throws {RequiredError}
|
|
21703
21923
|
*/
|
|
21704
21924
|
deleteEntityLlmEndpoints: (id: string, filter?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21925
|
+
/**
|
|
21926
|
+
*
|
|
21927
|
+
* @param {string} workspaceId
|
|
21928
|
+
* @param {string} objectId
|
|
21929
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
21930
|
+
* @param {*} [options] Override http request option.
|
|
21931
|
+
* @throws {RequiredError}
|
|
21932
|
+
*/
|
|
21933
|
+
deleteEntityMemoryItems: (workspaceId: string, objectId: string, filter?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21705
21934
|
/**
|
|
21706
21935
|
*
|
|
21707
21936
|
* @summary Delete a Metric
|
|
@@ -22166,6 +22395,21 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
22166
22395
|
* @throws {RequiredError}
|
|
22167
22396
|
*/
|
|
22168
22397
|
getAllEntitiesLlmEndpoints: (filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22398
|
+
/**
|
|
22399
|
+
*
|
|
22400
|
+
* @param {string} workspaceId
|
|
22401
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
22402
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
22403
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
22404
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
22405
|
+
* @param {number} [size] The size of the page to be returned
|
|
22406
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
22407
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
22408
|
+
* @param {Array<'origin' | 'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
22409
|
+
* @param {*} [options] Override http request option.
|
|
22410
|
+
* @throws {RequiredError}
|
|
22411
|
+
*/
|
|
22412
|
+
getAllEntitiesMemoryItems: (workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22169
22413
|
/**
|
|
22170
22414
|
*
|
|
22171
22415
|
* @summary Get all Metrics
|
|
@@ -22654,6 +22898,18 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
22654
22898
|
* @throws {RequiredError}
|
|
22655
22899
|
*/
|
|
22656
22900
|
getEntityLlmEndpoints: (id: string, filter?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22901
|
+
/**
|
|
22902
|
+
*
|
|
22903
|
+
* @param {string} workspaceId
|
|
22904
|
+
* @param {string} objectId
|
|
22905
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
22906
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
22907
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
22908
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
22909
|
+
* @param {*} [options] Override http request option.
|
|
22910
|
+
* @throws {RequiredError}
|
|
22911
|
+
*/
|
|
22912
|
+
getEntityMemoryItems: (workspaceId: string, objectId: string, filter?: string, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22657
22913
|
/**
|
|
22658
22914
|
*
|
|
22659
22915
|
* @summary Get a Metric
|
|
@@ -23010,6 +23266,17 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
23010
23266
|
* @throws {RequiredError}
|
|
23011
23267
|
*/
|
|
23012
23268
|
patchEntityLlmEndpoints: (id: string, jsonApiLlmEndpointPatchDocument: JsonApiLlmEndpointPatchDocument, filter?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23269
|
+
/**
|
|
23270
|
+
*
|
|
23271
|
+
* @param {string} workspaceId
|
|
23272
|
+
* @param {string} objectId
|
|
23273
|
+
* @param {JsonApiMemoryItemPatchDocument} jsonApiMemoryItemPatchDocument
|
|
23274
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
23275
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
23276
|
+
* @param {*} [options] Override http request option.
|
|
23277
|
+
* @throws {RequiredError}
|
|
23278
|
+
*/
|
|
23279
|
+
patchEntityMemoryItems: (workspaceId: string, objectId: string, jsonApiMemoryItemPatchDocument: JsonApiMemoryItemPatchDocument, filter?: string, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23013
23280
|
/**
|
|
23014
23281
|
*
|
|
23015
23282
|
* @summary Patch a Metric
|
|
@@ -23330,6 +23597,17 @@ export declare const EntitiesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
23330
23597
|
* @throws {RequiredError}
|
|
23331
23598
|
*/
|
|
23332
23599
|
updateEntityLlmEndpoints: (id: string, jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument, filter?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23600
|
+
/**
|
|
23601
|
+
*
|
|
23602
|
+
* @param {string} workspaceId
|
|
23603
|
+
* @param {string} objectId
|
|
23604
|
+
* @param {JsonApiMemoryItemInDocument} jsonApiMemoryItemInDocument
|
|
23605
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
23606
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
23607
|
+
* @param {*} [options] Override http request option.
|
|
23608
|
+
* @throws {RequiredError}
|
|
23609
|
+
*/
|
|
23610
|
+
updateEntityMemoryItems: (workspaceId: string, objectId: string, jsonApiMemoryItemInDocument: JsonApiMemoryItemInDocument, filter?: string, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23333
23611
|
/**
|
|
23334
23612
|
*
|
|
23335
23613
|
* @summary Put a Metric
|
|
@@ -23644,6 +23922,16 @@ export declare const EntitiesApiFp: (configuration?: Configuration) => {
|
|
|
23644
23922
|
* @throws {RequiredError}
|
|
23645
23923
|
*/
|
|
23646
23924
|
createEntityLlmEndpoints(jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiLlmEndpointOutDocument>>;
|
|
23925
|
+
/**
|
|
23926
|
+
*
|
|
23927
|
+
* @param {string} workspaceId
|
|
23928
|
+
* @param {JsonApiMemoryItemPostOptionalIdDocument} jsonApiMemoryItemPostOptionalIdDocument
|
|
23929
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
23930
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
23931
|
+
* @param {*} [options] Override http request option.
|
|
23932
|
+
* @throws {RequiredError}
|
|
23933
|
+
*/
|
|
23934
|
+
createEntityMemoryItems(workspaceId: string, jsonApiMemoryItemPostOptionalIdDocument: JsonApiMemoryItemPostOptionalIdDocument, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiMemoryItemOutDocument>>;
|
|
23647
23935
|
/**
|
|
23648
23936
|
*
|
|
23649
23937
|
* @summary Post Metrics
|
|
@@ -23922,6 +24210,15 @@ export declare const EntitiesApiFp: (configuration?: Configuration) => {
|
|
|
23922
24210
|
* @throws {RequiredError}
|
|
23923
24211
|
*/
|
|
23924
24212
|
deleteEntityLlmEndpoints(id: string, filter?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
24213
|
+
/**
|
|
24214
|
+
*
|
|
24215
|
+
* @param {string} workspaceId
|
|
24216
|
+
* @param {string} objectId
|
|
24217
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
24218
|
+
* @param {*} [options] Override http request option.
|
|
24219
|
+
* @throws {RequiredError}
|
|
24220
|
+
*/
|
|
24221
|
+
deleteEntityMemoryItems(workspaceId: string, objectId: string, filter?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
23925
24222
|
/**
|
|
23926
24223
|
*
|
|
23927
24224
|
* @summary Delete a Metric
|
|
@@ -24386,6 +24683,21 @@ export declare const EntitiesApiFp: (configuration?: Configuration) => {
|
|
|
24386
24683
|
* @throws {RequiredError}
|
|
24387
24684
|
*/
|
|
24388
24685
|
getAllEntitiesLlmEndpoints(filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<"page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiLlmEndpointOutList>>;
|
|
24686
|
+
/**
|
|
24687
|
+
*
|
|
24688
|
+
* @param {string} workspaceId
|
|
24689
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
24690
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
24691
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
24692
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
24693
|
+
* @param {number} [size] The size of the page to be returned
|
|
24694
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
24695
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
24696
|
+
* @param {Array<'origin' | 'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
24697
|
+
* @param {*} [options] Override http request option.
|
|
24698
|
+
* @throws {RequiredError}
|
|
24699
|
+
*/
|
|
24700
|
+
getAllEntitiesMemoryItems(workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiMemoryItemOutList>>;
|
|
24389
24701
|
/**
|
|
24390
24702
|
*
|
|
24391
24703
|
* @summary Get all Metrics
|
|
@@ -24876,6 +25188,18 @@ export declare const EntitiesApiFp: (configuration?: Configuration) => {
|
|
|
24876
25188
|
* @throws {RequiredError}
|
|
24877
25189
|
*/
|
|
24878
25190
|
getEntityLlmEndpoints(id: string, filter?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiLlmEndpointOutDocument>>;
|
|
25191
|
+
/**
|
|
25192
|
+
*
|
|
25193
|
+
* @param {string} workspaceId
|
|
25194
|
+
* @param {string} objectId
|
|
25195
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
25196
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25197
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
25198
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
25199
|
+
* @param {*} [options] Override http request option.
|
|
25200
|
+
* @throws {RequiredError}
|
|
25201
|
+
*/
|
|
25202
|
+
getEntityMemoryItems(workspaceId: string, objectId: string, filter?: string, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiMemoryItemOutDocument>>;
|
|
24879
25203
|
/**
|
|
24880
25204
|
*
|
|
24881
25205
|
* @summary Get a Metric
|
|
@@ -25232,6 +25556,17 @@ export declare const EntitiesApiFp: (configuration?: Configuration) => {
|
|
|
25232
25556
|
* @throws {RequiredError}
|
|
25233
25557
|
*/
|
|
25234
25558
|
patchEntityLlmEndpoints(id: string, jsonApiLlmEndpointPatchDocument: JsonApiLlmEndpointPatchDocument, filter?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiLlmEndpointOutDocument>>;
|
|
25559
|
+
/**
|
|
25560
|
+
*
|
|
25561
|
+
* @param {string} workspaceId
|
|
25562
|
+
* @param {string} objectId
|
|
25563
|
+
* @param {JsonApiMemoryItemPatchDocument} jsonApiMemoryItemPatchDocument
|
|
25564
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
25565
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25566
|
+
* @param {*} [options] Override http request option.
|
|
25567
|
+
* @throws {RequiredError}
|
|
25568
|
+
*/
|
|
25569
|
+
patchEntityMemoryItems(workspaceId: string, objectId: string, jsonApiMemoryItemPatchDocument: JsonApiMemoryItemPatchDocument, filter?: string, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiMemoryItemOutDocument>>;
|
|
25235
25570
|
/**
|
|
25236
25571
|
*
|
|
25237
25572
|
* @summary Patch a Metric
|
|
@@ -25552,6 +25887,17 @@ export declare const EntitiesApiFp: (configuration?: Configuration) => {
|
|
|
25552
25887
|
* @throws {RequiredError}
|
|
25553
25888
|
*/
|
|
25554
25889
|
updateEntityLlmEndpoints(id: string, jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument, filter?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiLlmEndpointOutDocument>>;
|
|
25890
|
+
/**
|
|
25891
|
+
*
|
|
25892
|
+
* @param {string} workspaceId
|
|
25893
|
+
* @param {string} objectId
|
|
25894
|
+
* @param {JsonApiMemoryItemInDocument} jsonApiMemoryItemInDocument
|
|
25895
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
25896
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
25897
|
+
* @param {*} [options] Override http request option.
|
|
25898
|
+
* @throws {RequiredError}
|
|
25899
|
+
*/
|
|
25900
|
+
updateEntityMemoryItems(workspaceId: string, objectId: string, jsonApiMemoryItemInDocument: JsonApiMemoryItemInDocument, filter?: string, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiMemoryItemOutDocument>>;
|
|
25555
25901
|
/**
|
|
25556
25902
|
*
|
|
25557
25903
|
* @summary Put a Metric
|
|
@@ -25842,6 +26188,13 @@ export declare const EntitiesApiFactory: (configuration?: Configuration, basePat
|
|
|
25842
26188
|
* @throws {RequiredError}
|
|
25843
26189
|
*/
|
|
25844
26190
|
createEntityLlmEndpoints(requestParameters: EntitiesApiCreateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
26191
|
+
/**
|
|
26192
|
+
*
|
|
26193
|
+
* @param {EntitiesApiCreateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
26194
|
+
* @param {*} [options] Override http request option.
|
|
26195
|
+
* @throws {RequiredError}
|
|
26196
|
+
*/
|
|
26197
|
+
createEntityMemoryItems(requestParameters: EntitiesApiCreateEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
25845
26198
|
/**
|
|
25846
26199
|
*
|
|
25847
26200
|
* @summary Post Metrics
|
|
@@ -26073,6 +26426,13 @@ export declare const EntitiesApiFactory: (configuration?: Configuration, basePat
|
|
|
26073
26426
|
* @throws {RequiredError}
|
|
26074
26427
|
*/
|
|
26075
26428
|
deleteEntityLlmEndpoints(requestParameters: EntitiesApiDeleteEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
26429
|
+
/**
|
|
26430
|
+
*
|
|
26431
|
+
* @param {EntitiesApiDeleteEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
26432
|
+
* @param {*} [options] Override http request option.
|
|
26433
|
+
* @throws {RequiredError}
|
|
26434
|
+
*/
|
|
26435
|
+
deleteEntityMemoryItems(requestParameters: EntitiesApiDeleteEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
26076
26436
|
/**
|
|
26077
26437
|
*
|
|
26078
26438
|
* @summary Delete a Metric
|
|
@@ -26368,6 +26728,13 @@ export declare const EntitiesApiFactory: (configuration?: Configuration, basePat
|
|
|
26368
26728
|
* @throws {RequiredError}
|
|
26369
26729
|
*/
|
|
26370
26730
|
getAllEntitiesLlmEndpoints(requestParameters: EntitiesApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutList>;
|
|
26731
|
+
/**
|
|
26732
|
+
*
|
|
26733
|
+
* @param {EntitiesApiGetAllEntitiesMemoryItemsRequest} requestParameters Request parameters.
|
|
26734
|
+
* @param {*} [options] Override http request option.
|
|
26735
|
+
* @throws {RequiredError}
|
|
26736
|
+
*/
|
|
26737
|
+
getAllEntitiesMemoryItems(requestParameters: EntitiesApiGetAllEntitiesMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutList>;
|
|
26371
26738
|
/**
|
|
26372
26739
|
*
|
|
26373
26740
|
* @summary Get all Metrics
|
|
@@ -26694,6 +27061,13 @@ export declare const EntitiesApiFactory: (configuration?: Configuration, basePat
|
|
|
26694
27061
|
* @throws {RequiredError}
|
|
26695
27062
|
*/
|
|
26696
27063
|
getEntityLlmEndpoints(requestParameters: EntitiesApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
27064
|
+
/**
|
|
27065
|
+
*
|
|
27066
|
+
* @param {EntitiesApiGetEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
27067
|
+
* @param {*} [options] Override http request option.
|
|
27068
|
+
* @throws {RequiredError}
|
|
27069
|
+
*/
|
|
27070
|
+
getEntityMemoryItems(requestParameters: EntitiesApiGetEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
26697
27071
|
/**
|
|
26698
27072
|
*
|
|
26699
27073
|
* @summary Get a Metric
|
|
@@ -26957,6 +27331,13 @@ export declare const EntitiesApiFactory: (configuration?: Configuration, basePat
|
|
|
26957
27331
|
* @throws {RequiredError}
|
|
26958
27332
|
*/
|
|
26959
27333
|
patchEntityLlmEndpoints(requestParameters: EntitiesApiPatchEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
27334
|
+
/**
|
|
27335
|
+
*
|
|
27336
|
+
* @param {EntitiesApiPatchEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
27337
|
+
* @param {*} [options] Override http request option.
|
|
27338
|
+
* @throws {RequiredError}
|
|
27339
|
+
*/
|
|
27340
|
+
patchEntityMemoryItems(requestParameters: EntitiesApiPatchEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
26960
27341
|
/**
|
|
26961
27342
|
*
|
|
26962
27343
|
* @summary Patch a Metric
|
|
@@ -27189,6 +27570,13 @@ export declare const EntitiesApiFactory: (configuration?: Configuration, basePat
|
|
|
27189
27570
|
* @throws {RequiredError}
|
|
27190
27571
|
*/
|
|
27191
27572
|
updateEntityLlmEndpoints(requestParameters: EntitiesApiUpdateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
27573
|
+
/**
|
|
27574
|
+
*
|
|
27575
|
+
* @param {EntitiesApiUpdateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
27576
|
+
* @param {*} [options] Override http request option.
|
|
27577
|
+
* @throws {RequiredError}
|
|
27578
|
+
*/
|
|
27579
|
+
updateEntityMemoryItems(requestParameters: EntitiesApiUpdateEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
27192
27580
|
/**
|
|
27193
27581
|
*
|
|
27194
27582
|
* @summary Put a Metric
|
|
@@ -27452,6 +27840,14 @@ export interface EntitiesApiInterface {
|
|
|
27452
27840
|
* @memberof EntitiesApiInterface
|
|
27453
27841
|
*/
|
|
27454
27842
|
createEntityLlmEndpoints(requestParameters: EntitiesApiCreateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
27843
|
+
/**
|
|
27844
|
+
*
|
|
27845
|
+
* @param {EntitiesApiCreateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
27846
|
+
* @param {*} [options] Override http request option.
|
|
27847
|
+
* @throws {RequiredError}
|
|
27848
|
+
* @memberof EntitiesApiInterface
|
|
27849
|
+
*/
|
|
27850
|
+
createEntityMemoryItems(requestParameters: EntitiesApiCreateEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
27455
27851
|
/**
|
|
27456
27852
|
*
|
|
27457
27853
|
* @summary Post Metrics
|
|
@@ -27712,6 +28108,14 @@ export interface EntitiesApiInterface {
|
|
|
27712
28108
|
* @memberof EntitiesApiInterface
|
|
27713
28109
|
*/
|
|
27714
28110
|
deleteEntityLlmEndpoints(requestParameters: EntitiesApiDeleteEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
28111
|
+
/**
|
|
28112
|
+
*
|
|
28113
|
+
* @param {EntitiesApiDeleteEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
28114
|
+
* @param {*} [options] Override http request option.
|
|
28115
|
+
* @throws {RequiredError}
|
|
28116
|
+
* @memberof EntitiesApiInterface
|
|
28117
|
+
*/
|
|
28118
|
+
deleteEntityMemoryItems(requestParameters: EntitiesApiDeleteEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
27715
28119
|
/**
|
|
27716
28120
|
*
|
|
27717
28121
|
* @summary Delete a Metric
|
|
@@ -28044,6 +28448,14 @@ export interface EntitiesApiInterface {
|
|
|
28044
28448
|
* @memberof EntitiesApiInterface
|
|
28045
28449
|
*/
|
|
28046
28450
|
getAllEntitiesLlmEndpoints(requestParameters: EntitiesApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutList>;
|
|
28451
|
+
/**
|
|
28452
|
+
*
|
|
28453
|
+
* @param {EntitiesApiGetAllEntitiesMemoryItemsRequest} requestParameters Request parameters.
|
|
28454
|
+
* @param {*} [options] Override http request option.
|
|
28455
|
+
* @throws {RequiredError}
|
|
28456
|
+
* @memberof EntitiesApiInterface
|
|
28457
|
+
*/
|
|
28458
|
+
getAllEntitiesMemoryItems(requestParameters: EntitiesApiGetAllEntitiesMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutList>;
|
|
28047
28459
|
/**
|
|
28048
28460
|
*
|
|
28049
28461
|
* @summary Get all Metrics
|
|
@@ -28411,6 +28823,14 @@ export interface EntitiesApiInterface {
|
|
|
28411
28823
|
* @memberof EntitiesApiInterface
|
|
28412
28824
|
*/
|
|
28413
28825
|
getEntityLlmEndpoints(requestParameters: EntitiesApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
28826
|
+
/**
|
|
28827
|
+
*
|
|
28828
|
+
* @param {EntitiesApiGetEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
28829
|
+
* @param {*} [options] Override http request option.
|
|
28830
|
+
* @throws {RequiredError}
|
|
28831
|
+
* @memberof EntitiesApiInterface
|
|
28832
|
+
*/
|
|
28833
|
+
getEntityMemoryItems(requestParameters: EntitiesApiGetEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
28414
28834
|
/**
|
|
28415
28835
|
*
|
|
28416
28836
|
* @summary Get a Metric
|
|
@@ -28707,6 +29127,14 @@ export interface EntitiesApiInterface {
|
|
|
28707
29127
|
* @memberof EntitiesApiInterface
|
|
28708
29128
|
*/
|
|
28709
29129
|
patchEntityLlmEndpoints(requestParameters: EntitiesApiPatchEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
29130
|
+
/**
|
|
29131
|
+
*
|
|
29132
|
+
* @param {EntitiesApiPatchEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
29133
|
+
* @param {*} [options] Override http request option.
|
|
29134
|
+
* @throws {RequiredError}
|
|
29135
|
+
* @memberof EntitiesApiInterface
|
|
29136
|
+
*/
|
|
29137
|
+
patchEntityMemoryItems(requestParameters: EntitiesApiPatchEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
28710
29138
|
/**
|
|
28711
29139
|
*
|
|
28712
29140
|
* @summary Patch a Metric
|
|
@@ -28968,6 +29396,14 @@ export interface EntitiesApiInterface {
|
|
|
28968
29396
|
* @memberof EntitiesApiInterface
|
|
28969
29397
|
*/
|
|
28970
29398
|
updateEntityLlmEndpoints(requestParameters: EntitiesApiUpdateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
29399
|
+
/**
|
|
29400
|
+
*
|
|
29401
|
+
* @param {EntitiesApiUpdateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
29402
|
+
* @param {*} [options] Override http request option.
|
|
29403
|
+
* @throws {RequiredError}
|
|
29404
|
+
* @memberof EntitiesApiInterface
|
|
29405
|
+
*/
|
|
29406
|
+
updateEntityMemoryItems(requestParameters: EntitiesApiUpdateEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
28971
29407
|
/**
|
|
28972
29408
|
*
|
|
28973
29409
|
* @summary Put a Metric
|
|
@@ -29447,6 +29883,37 @@ export interface EntitiesApiCreateEntityLlmEndpointsRequest {
|
|
|
29447
29883
|
*/
|
|
29448
29884
|
readonly jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument;
|
|
29449
29885
|
}
|
|
29886
|
+
/**
|
|
29887
|
+
* Request parameters for createEntityMemoryItems operation in EntitiesApi.
|
|
29888
|
+
* @export
|
|
29889
|
+
* @interface EntitiesApiCreateEntityMemoryItemsRequest
|
|
29890
|
+
*/
|
|
29891
|
+
export interface EntitiesApiCreateEntityMemoryItemsRequest {
|
|
29892
|
+
/**
|
|
29893
|
+
*
|
|
29894
|
+
* @type {string}
|
|
29895
|
+
* @memberof EntitiesApiCreateEntityMemoryItems
|
|
29896
|
+
*/
|
|
29897
|
+
readonly workspaceId: string;
|
|
29898
|
+
/**
|
|
29899
|
+
*
|
|
29900
|
+
* @type {JsonApiMemoryItemPostOptionalIdDocument}
|
|
29901
|
+
* @memberof EntitiesApiCreateEntityMemoryItems
|
|
29902
|
+
*/
|
|
29903
|
+
readonly jsonApiMemoryItemPostOptionalIdDocument: JsonApiMemoryItemPostOptionalIdDocument;
|
|
29904
|
+
/**
|
|
29905
|
+
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
29906
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
29907
|
+
* @memberof EntitiesApiCreateEntityMemoryItems
|
|
29908
|
+
*/
|
|
29909
|
+
readonly include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">;
|
|
29910
|
+
/**
|
|
29911
|
+
* Include Meta objects.
|
|
29912
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
29913
|
+
* @memberof EntitiesApiCreateEntityMemoryItems
|
|
29914
|
+
*/
|
|
29915
|
+
readonly metaInclude?: Array<"origin" | "all" | "ALL">;
|
|
29916
|
+
}
|
|
29450
29917
|
/**
|
|
29451
29918
|
* Request parameters for createEntityMetrics operation in EntitiesApi.
|
|
29452
29919
|
* @export
|
|
@@ -30106,6 +30573,31 @@ export interface EntitiesApiDeleteEntityLlmEndpointsRequest {
|
|
|
30106
30573
|
*/
|
|
30107
30574
|
readonly filter?: string;
|
|
30108
30575
|
}
|
|
30576
|
+
/**
|
|
30577
|
+
* Request parameters for deleteEntityMemoryItems operation in EntitiesApi.
|
|
30578
|
+
* @export
|
|
30579
|
+
* @interface EntitiesApiDeleteEntityMemoryItemsRequest
|
|
30580
|
+
*/
|
|
30581
|
+
export interface EntitiesApiDeleteEntityMemoryItemsRequest {
|
|
30582
|
+
/**
|
|
30583
|
+
*
|
|
30584
|
+
* @type {string}
|
|
30585
|
+
* @memberof EntitiesApiDeleteEntityMemoryItems
|
|
30586
|
+
*/
|
|
30587
|
+
readonly workspaceId: string;
|
|
30588
|
+
/**
|
|
30589
|
+
*
|
|
30590
|
+
* @type {string}
|
|
30591
|
+
* @memberof EntitiesApiDeleteEntityMemoryItems
|
|
30592
|
+
*/
|
|
30593
|
+
readonly objectId: string;
|
|
30594
|
+
/**
|
|
30595
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
30596
|
+
* @type {string}
|
|
30597
|
+
* @memberof EntitiesApiDeleteEntityMemoryItems
|
|
30598
|
+
*/
|
|
30599
|
+
readonly filter?: string;
|
|
30600
|
+
}
|
|
30109
30601
|
/**
|
|
30110
30602
|
* Request parameters for deleteEntityMetrics operation in EntitiesApi.
|
|
30111
30603
|
* @export
|
|
@@ -31601,6 +32093,67 @@ export interface EntitiesApiGetAllEntitiesLlmEndpointsRequest {
|
|
|
31601
32093
|
*/
|
|
31602
32094
|
readonly metaInclude?: Array<"page" | "all" | "ALL">;
|
|
31603
32095
|
}
|
|
32096
|
+
/**
|
|
32097
|
+
* Request parameters for getAllEntitiesMemoryItems operation in EntitiesApi.
|
|
32098
|
+
* @export
|
|
32099
|
+
* @interface EntitiesApiGetAllEntitiesMemoryItemsRequest
|
|
32100
|
+
*/
|
|
32101
|
+
export interface EntitiesApiGetAllEntitiesMemoryItemsRequest {
|
|
32102
|
+
/**
|
|
32103
|
+
*
|
|
32104
|
+
* @type {string}
|
|
32105
|
+
* @memberof EntitiesApiGetAllEntitiesMemoryItems
|
|
32106
|
+
*/
|
|
32107
|
+
readonly workspaceId: string;
|
|
32108
|
+
/**
|
|
32109
|
+
*
|
|
32110
|
+
* @type {'ALL' | 'PARENTS' | 'NATIVE'}
|
|
32111
|
+
* @memberof EntitiesApiGetAllEntitiesMemoryItems
|
|
32112
|
+
*/
|
|
32113
|
+
readonly origin?: "ALL" | "PARENTS" | "NATIVE";
|
|
32114
|
+
/**
|
|
32115
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
32116
|
+
* @type {string}
|
|
32117
|
+
* @memberof EntitiesApiGetAllEntitiesMemoryItems
|
|
32118
|
+
*/
|
|
32119
|
+
readonly filter?: string;
|
|
32120
|
+
/**
|
|
32121
|
+
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
32122
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
32123
|
+
* @memberof EntitiesApiGetAllEntitiesMemoryItems
|
|
32124
|
+
*/
|
|
32125
|
+
readonly include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">;
|
|
32126
|
+
/**
|
|
32127
|
+
* Zero-based page index (0..N)
|
|
32128
|
+
* @type {number}
|
|
32129
|
+
* @memberof EntitiesApiGetAllEntitiesMemoryItems
|
|
32130
|
+
*/
|
|
32131
|
+
readonly page?: number;
|
|
32132
|
+
/**
|
|
32133
|
+
* The size of the page to be returned
|
|
32134
|
+
* @type {number}
|
|
32135
|
+
* @memberof EntitiesApiGetAllEntitiesMemoryItems
|
|
32136
|
+
*/
|
|
32137
|
+
readonly size?: number;
|
|
32138
|
+
/**
|
|
32139
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
32140
|
+
* @type {Array<string>}
|
|
32141
|
+
* @memberof EntitiesApiGetAllEntitiesMemoryItems
|
|
32142
|
+
*/
|
|
32143
|
+
readonly sort?: Array<string>;
|
|
32144
|
+
/**
|
|
32145
|
+
*
|
|
32146
|
+
* @type {boolean}
|
|
32147
|
+
* @memberof EntitiesApiGetAllEntitiesMemoryItems
|
|
32148
|
+
*/
|
|
32149
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
32150
|
+
/**
|
|
32151
|
+
* Include Meta objects.
|
|
32152
|
+
* @type {Array<'origin' | 'page' | 'all' | 'ALL'>}
|
|
32153
|
+
* @memberof EntitiesApiGetAllEntitiesMemoryItems
|
|
32154
|
+
*/
|
|
32155
|
+
readonly metaInclude?: Array<"origin" | "page" | "all" | "ALL">;
|
|
32156
|
+
}
|
|
31604
32157
|
/**
|
|
31605
32158
|
* Request parameters for getAllEntitiesMetrics operation in EntitiesApi.
|
|
31606
32159
|
* @export
|
|
@@ -33092,6 +33645,49 @@ export interface EntitiesApiGetEntityLlmEndpointsRequest {
|
|
|
33092
33645
|
*/
|
|
33093
33646
|
readonly filter?: string;
|
|
33094
33647
|
}
|
|
33648
|
+
/**
|
|
33649
|
+
* Request parameters for getEntityMemoryItems operation in EntitiesApi.
|
|
33650
|
+
* @export
|
|
33651
|
+
* @interface EntitiesApiGetEntityMemoryItemsRequest
|
|
33652
|
+
*/
|
|
33653
|
+
export interface EntitiesApiGetEntityMemoryItemsRequest {
|
|
33654
|
+
/**
|
|
33655
|
+
*
|
|
33656
|
+
* @type {string}
|
|
33657
|
+
* @memberof EntitiesApiGetEntityMemoryItems
|
|
33658
|
+
*/
|
|
33659
|
+
readonly workspaceId: string;
|
|
33660
|
+
/**
|
|
33661
|
+
*
|
|
33662
|
+
* @type {string}
|
|
33663
|
+
* @memberof EntitiesApiGetEntityMemoryItems
|
|
33664
|
+
*/
|
|
33665
|
+
readonly objectId: string;
|
|
33666
|
+
/**
|
|
33667
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
33668
|
+
* @type {string}
|
|
33669
|
+
* @memberof EntitiesApiGetEntityMemoryItems
|
|
33670
|
+
*/
|
|
33671
|
+
readonly filter?: string;
|
|
33672
|
+
/**
|
|
33673
|
+
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
33674
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
33675
|
+
* @memberof EntitiesApiGetEntityMemoryItems
|
|
33676
|
+
*/
|
|
33677
|
+
readonly include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">;
|
|
33678
|
+
/**
|
|
33679
|
+
*
|
|
33680
|
+
* @type {boolean}
|
|
33681
|
+
* @memberof EntitiesApiGetEntityMemoryItems
|
|
33682
|
+
*/
|
|
33683
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
33684
|
+
/**
|
|
33685
|
+
* Include Meta objects.
|
|
33686
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
33687
|
+
* @memberof EntitiesApiGetEntityMemoryItems
|
|
33688
|
+
*/
|
|
33689
|
+
readonly metaInclude?: Array<"origin" | "all" | "ALL">;
|
|
33690
|
+
}
|
|
33095
33691
|
/**
|
|
33096
33692
|
* Request parameters for getEntityMetrics operation in EntitiesApi.
|
|
33097
33693
|
* @export
|
|
@@ -34079,6 +34675,43 @@ export interface EntitiesApiPatchEntityLlmEndpointsRequest {
|
|
|
34079
34675
|
*/
|
|
34080
34676
|
readonly filter?: string;
|
|
34081
34677
|
}
|
|
34678
|
+
/**
|
|
34679
|
+
* Request parameters for patchEntityMemoryItems operation in EntitiesApi.
|
|
34680
|
+
* @export
|
|
34681
|
+
* @interface EntitiesApiPatchEntityMemoryItemsRequest
|
|
34682
|
+
*/
|
|
34683
|
+
export interface EntitiesApiPatchEntityMemoryItemsRequest {
|
|
34684
|
+
/**
|
|
34685
|
+
*
|
|
34686
|
+
* @type {string}
|
|
34687
|
+
* @memberof EntitiesApiPatchEntityMemoryItems
|
|
34688
|
+
*/
|
|
34689
|
+
readonly workspaceId: string;
|
|
34690
|
+
/**
|
|
34691
|
+
*
|
|
34692
|
+
* @type {string}
|
|
34693
|
+
* @memberof EntitiesApiPatchEntityMemoryItems
|
|
34694
|
+
*/
|
|
34695
|
+
readonly objectId: string;
|
|
34696
|
+
/**
|
|
34697
|
+
*
|
|
34698
|
+
* @type {JsonApiMemoryItemPatchDocument}
|
|
34699
|
+
* @memberof EntitiesApiPatchEntityMemoryItems
|
|
34700
|
+
*/
|
|
34701
|
+
readonly jsonApiMemoryItemPatchDocument: JsonApiMemoryItemPatchDocument;
|
|
34702
|
+
/**
|
|
34703
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
34704
|
+
* @type {string}
|
|
34705
|
+
* @memberof EntitiesApiPatchEntityMemoryItems
|
|
34706
|
+
*/
|
|
34707
|
+
readonly filter?: string;
|
|
34708
|
+
/**
|
|
34709
|
+
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
34710
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
34711
|
+
* @memberof EntitiesApiPatchEntityMemoryItems
|
|
34712
|
+
*/
|
|
34713
|
+
readonly include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">;
|
|
34714
|
+
}
|
|
34082
34715
|
/**
|
|
34083
34716
|
* Request parameters for patchEntityMetrics operation in EntitiesApi.
|
|
34084
34717
|
* @export
|
|
@@ -34984,6 +35617,43 @@ export interface EntitiesApiUpdateEntityLlmEndpointsRequest {
|
|
|
34984
35617
|
*/
|
|
34985
35618
|
readonly filter?: string;
|
|
34986
35619
|
}
|
|
35620
|
+
/**
|
|
35621
|
+
* Request parameters for updateEntityMemoryItems operation in EntitiesApi.
|
|
35622
|
+
* @export
|
|
35623
|
+
* @interface EntitiesApiUpdateEntityMemoryItemsRequest
|
|
35624
|
+
*/
|
|
35625
|
+
export interface EntitiesApiUpdateEntityMemoryItemsRequest {
|
|
35626
|
+
/**
|
|
35627
|
+
*
|
|
35628
|
+
* @type {string}
|
|
35629
|
+
* @memberof EntitiesApiUpdateEntityMemoryItems
|
|
35630
|
+
*/
|
|
35631
|
+
readonly workspaceId: string;
|
|
35632
|
+
/**
|
|
35633
|
+
*
|
|
35634
|
+
* @type {string}
|
|
35635
|
+
* @memberof EntitiesApiUpdateEntityMemoryItems
|
|
35636
|
+
*/
|
|
35637
|
+
readonly objectId: string;
|
|
35638
|
+
/**
|
|
35639
|
+
*
|
|
35640
|
+
* @type {JsonApiMemoryItemInDocument}
|
|
35641
|
+
* @memberof EntitiesApiUpdateEntityMemoryItems
|
|
35642
|
+
*/
|
|
35643
|
+
readonly jsonApiMemoryItemInDocument: JsonApiMemoryItemInDocument;
|
|
35644
|
+
/**
|
|
35645
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
35646
|
+
* @type {string}
|
|
35647
|
+
* @memberof EntitiesApiUpdateEntityMemoryItems
|
|
35648
|
+
*/
|
|
35649
|
+
readonly filter?: string;
|
|
35650
|
+
/**
|
|
35651
|
+
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
35652
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
35653
|
+
* @memberof EntitiesApiUpdateEntityMemoryItems
|
|
35654
|
+
*/
|
|
35655
|
+
readonly include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">;
|
|
35656
|
+
}
|
|
34987
35657
|
/**
|
|
34988
35658
|
* Request parameters for updateEntityMetrics operation in EntitiesApi.
|
|
34989
35659
|
* @export
|
|
@@ -35581,6 +36251,14 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
35581
36251
|
* @memberof EntitiesApi
|
|
35582
36252
|
*/
|
|
35583
36253
|
createEntityLlmEndpoints(requestParameters: EntitiesApiCreateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiLlmEndpointOutDocument, any, {}>>;
|
|
36254
|
+
/**
|
|
36255
|
+
*
|
|
36256
|
+
* @param {EntitiesApiCreateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
36257
|
+
* @param {*} [options] Override http request option.
|
|
36258
|
+
* @throws {RequiredError}
|
|
36259
|
+
* @memberof EntitiesApi
|
|
36260
|
+
*/
|
|
36261
|
+
createEntityMemoryItems(requestParameters: EntitiesApiCreateEntityMemoryItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiMemoryItemOutDocument, any, {}>>;
|
|
35584
36262
|
/**
|
|
35585
36263
|
*
|
|
35586
36264
|
* @summary Post Metrics
|
|
@@ -35841,6 +36519,14 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
35841
36519
|
* @memberof EntitiesApi
|
|
35842
36520
|
*/
|
|
35843
36521
|
deleteEntityLlmEndpoints(requestParameters: EntitiesApiDeleteEntityLlmEndpointsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
36522
|
+
/**
|
|
36523
|
+
*
|
|
36524
|
+
* @param {EntitiesApiDeleteEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
36525
|
+
* @param {*} [options] Override http request option.
|
|
36526
|
+
* @throws {RequiredError}
|
|
36527
|
+
* @memberof EntitiesApi
|
|
36528
|
+
*/
|
|
36529
|
+
deleteEntityMemoryItems(requestParameters: EntitiesApiDeleteEntityMemoryItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
35844
36530
|
/**
|
|
35845
36531
|
*
|
|
35846
36532
|
* @summary Delete a Metric
|
|
@@ -36173,6 +36859,14 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
36173
36859
|
* @memberof EntitiesApi
|
|
36174
36860
|
*/
|
|
36175
36861
|
getAllEntitiesLlmEndpoints(requestParameters?: EntitiesApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiLlmEndpointOutList, any, {}>>;
|
|
36862
|
+
/**
|
|
36863
|
+
*
|
|
36864
|
+
* @param {EntitiesApiGetAllEntitiesMemoryItemsRequest} requestParameters Request parameters.
|
|
36865
|
+
* @param {*} [options] Override http request option.
|
|
36866
|
+
* @throws {RequiredError}
|
|
36867
|
+
* @memberof EntitiesApi
|
|
36868
|
+
*/
|
|
36869
|
+
getAllEntitiesMemoryItems(requestParameters: EntitiesApiGetAllEntitiesMemoryItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiMemoryItemOutList, any, {}>>;
|
|
36176
36870
|
/**
|
|
36177
36871
|
*
|
|
36178
36872
|
* @summary Get all Metrics
|
|
@@ -36540,6 +37234,14 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
36540
37234
|
* @memberof EntitiesApi
|
|
36541
37235
|
*/
|
|
36542
37236
|
getEntityLlmEndpoints(requestParameters: EntitiesApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiLlmEndpointOutDocument, any, {}>>;
|
|
37237
|
+
/**
|
|
37238
|
+
*
|
|
37239
|
+
* @param {EntitiesApiGetEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
37240
|
+
* @param {*} [options] Override http request option.
|
|
37241
|
+
* @throws {RequiredError}
|
|
37242
|
+
* @memberof EntitiesApi
|
|
37243
|
+
*/
|
|
37244
|
+
getEntityMemoryItems(requestParameters: EntitiesApiGetEntityMemoryItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiMemoryItemOutDocument, any, {}>>;
|
|
36543
37245
|
/**
|
|
36544
37246
|
*
|
|
36545
37247
|
* @summary Get a Metric
|
|
@@ -36836,6 +37538,14 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
36836
37538
|
* @memberof EntitiesApi
|
|
36837
37539
|
*/
|
|
36838
37540
|
patchEntityLlmEndpoints(requestParameters: EntitiesApiPatchEntityLlmEndpointsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiLlmEndpointOutDocument, any, {}>>;
|
|
37541
|
+
/**
|
|
37542
|
+
*
|
|
37543
|
+
* @param {EntitiesApiPatchEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
37544
|
+
* @param {*} [options] Override http request option.
|
|
37545
|
+
* @throws {RequiredError}
|
|
37546
|
+
* @memberof EntitiesApi
|
|
37547
|
+
*/
|
|
37548
|
+
patchEntityMemoryItems(requestParameters: EntitiesApiPatchEntityMemoryItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiMemoryItemOutDocument, any, {}>>;
|
|
36839
37549
|
/**
|
|
36840
37550
|
*
|
|
36841
37551
|
* @summary Patch a Metric
|
|
@@ -37097,6 +37807,14 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
37097
37807
|
* @memberof EntitiesApi
|
|
37098
37808
|
*/
|
|
37099
37809
|
updateEntityLlmEndpoints(requestParameters: EntitiesApiUpdateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiLlmEndpointOutDocument, any, {}>>;
|
|
37810
|
+
/**
|
|
37811
|
+
*
|
|
37812
|
+
* @param {EntitiesApiUpdateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
37813
|
+
* @param {*} [options] Override http request option.
|
|
37814
|
+
* @throws {RequiredError}
|
|
37815
|
+
* @memberof EntitiesApi
|
|
37816
|
+
*/
|
|
37817
|
+
updateEntityMemoryItems(requestParameters: EntitiesApiUpdateEntityMemoryItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiMemoryItemOutDocument, any, {}>>;
|
|
37100
37818
|
/**
|
|
37101
37819
|
*
|
|
37102
37820
|
* @summary Put a Metric
|
|
@@ -59425,6 +60143,16 @@ export declare const WorkspaceObjectControllerApiAxiosParamCreator: (configurati
|
|
|
59425
60143
|
* @throws {RequiredError}
|
|
59426
60144
|
*/
|
|
59427
60145
|
createEntityFilterViews: (workspaceId: string, jsonApiFilterViewInDocument: JsonApiFilterViewInDocument, include?: Array<"analyticalDashboards" | "users" | "analyticalDashboard" | "user" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
60146
|
+
/**
|
|
60147
|
+
*
|
|
60148
|
+
* @param {string} workspaceId
|
|
60149
|
+
* @param {JsonApiMemoryItemPostOptionalIdDocument} jsonApiMemoryItemPostOptionalIdDocument
|
|
60150
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
60151
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
60152
|
+
* @param {*} [options] Override http request option.
|
|
60153
|
+
* @throws {RequiredError}
|
|
60154
|
+
*/
|
|
60155
|
+
createEntityMemoryItems: (workspaceId: string, jsonApiMemoryItemPostOptionalIdDocument: JsonApiMemoryItemPostOptionalIdDocument, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
59428
60156
|
/**
|
|
59429
60157
|
*
|
|
59430
60158
|
* @summary Post Metrics
|
|
@@ -59570,6 +60298,15 @@ export declare const WorkspaceObjectControllerApiAxiosParamCreator: (configurati
|
|
|
59570
60298
|
* @throws {RequiredError}
|
|
59571
60299
|
*/
|
|
59572
60300
|
deleteEntityFilterViews: (workspaceId: string, objectId: string, filter?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
60301
|
+
/**
|
|
60302
|
+
*
|
|
60303
|
+
* @param {string} workspaceId
|
|
60304
|
+
* @param {string} objectId
|
|
60305
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
60306
|
+
* @param {*} [options] Override http request option.
|
|
60307
|
+
* @throws {RequiredError}
|
|
60308
|
+
*/
|
|
60309
|
+
deleteEntityMemoryItems: (workspaceId: string, objectId: string, filter?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
59573
60310
|
/**
|
|
59574
60311
|
*
|
|
59575
60312
|
* @summary Delete a Metric
|
|
@@ -59836,6 +60573,21 @@ export declare const WorkspaceObjectControllerApiAxiosParamCreator: (configurati
|
|
|
59836
60573
|
* @throws {RequiredError}
|
|
59837
60574
|
*/
|
|
59838
60575
|
getAllEntitiesLabels: (workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"attributes" | "attribute" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
60576
|
+
/**
|
|
60577
|
+
*
|
|
60578
|
+
* @param {string} workspaceId
|
|
60579
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
60580
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
60581
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
60582
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
60583
|
+
* @param {number} [size] The size of the page to be returned
|
|
60584
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
60585
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
60586
|
+
* @param {Array<'origin' | 'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
60587
|
+
* @param {*} [options] Override http request option.
|
|
60588
|
+
* @throws {RequiredError}
|
|
60589
|
+
*/
|
|
60590
|
+
getAllEntitiesMemoryItems: (workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
59839
60591
|
/**
|
|
59840
60592
|
*
|
|
59841
60593
|
* @summary Get all Metrics
|
|
@@ -60097,6 +60849,18 @@ export declare const WorkspaceObjectControllerApiAxiosParamCreator: (configurati
|
|
|
60097
60849
|
* @throws {RequiredError}
|
|
60098
60850
|
*/
|
|
60099
60851
|
getEntityLabels: (workspaceId: string, objectId: string, filter?: string, include?: Array<"attributes" | "attribute" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
60852
|
+
/**
|
|
60853
|
+
*
|
|
60854
|
+
* @param {string} workspaceId
|
|
60855
|
+
* @param {string} objectId
|
|
60856
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
60857
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
60858
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
60859
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
60860
|
+
* @param {*} [options] Override http request option.
|
|
60861
|
+
* @throws {RequiredError}
|
|
60862
|
+
*/
|
|
60863
|
+
getEntityMemoryItems: (workspaceId: string, objectId: string, filter?: string, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
60100
60864
|
/**
|
|
60101
60865
|
*
|
|
60102
60866
|
* @summary Get a Metric
|
|
@@ -60269,6 +61033,17 @@ export declare const WorkspaceObjectControllerApiAxiosParamCreator: (configurati
|
|
|
60269
61033
|
* @throws {RequiredError}
|
|
60270
61034
|
*/
|
|
60271
61035
|
patchEntityFilterViews: (workspaceId: string, objectId: string, jsonApiFilterViewPatchDocument: JsonApiFilterViewPatchDocument, filter?: string, include?: Array<"analyticalDashboards" | "users" | "analyticalDashboard" | "user" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
61036
|
+
/**
|
|
61037
|
+
*
|
|
61038
|
+
* @param {string} workspaceId
|
|
61039
|
+
* @param {string} objectId
|
|
61040
|
+
* @param {JsonApiMemoryItemPatchDocument} jsonApiMemoryItemPatchDocument
|
|
61041
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
61042
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
61043
|
+
* @param {*} [options] Override http request option.
|
|
61044
|
+
* @throws {RequiredError}
|
|
61045
|
+
*/
|
|
61046
|
+
patchEntityMemoryItems: (workspaceId: string, objectId: string, jsonApiMemoryItemPatchDocument: JsonApiMemoryItemPatchDocument, filter?: string, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
60272
61047
|
/**
|
|
60273
61048
|
*
|
|
60274
61049
|
* @summary Patch a Metric
|
|
@@ -60435,6 +61210,17 @@ export declare const WorkspaceObjectControllerApiAxiosParamCreator: (configurati
|
|
|
60435
61210
|
* @throws {RequiredError}
|
|
60436
61211
|
*/
|
|
60437
61212
|
updateEntityFilterViews: (workspaceId: string, objectId: string, jsonApiFilterViewInDocument: JsonApiFilterViewInDocument, filter?: string, include?: Array<"analyticalDashboards" | "users" | "analyticalDashboard" | "user" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
61213
|
+
/**
|
|
61214
|
+
*
|
|
61215
|
+
* @param {string} workspaceId
|
|
61216
|
+
* @param {string} objectId
|
|
61217
|
+
* @param {JsonApiMemoryItemInDocument} jsonApiMemoryItemInDocument
|
|
61218
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
61219
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
61220
|
+
* @param {*} [options] Override http request option.
|
|
61221
|
+
* @throws {RequiredError}
|
|
61222
|
+
*/
|
|
61223
|
+
updateEntityMemoryItems: (workspaceId: string, objectId: string, jsonApiMemoryItemInDocument: JsonApiMemoryItemInDocument, filter?: string, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
60438
61224
|
/**
|
|
60439
61225
|
*
|
|
60440
61226
|
* @summary Put a Metric
|
|
@@ -60598,6 +61384,16 @@ export declare const WorkspaceObjectControllerApiFp: (configuration?: Configurat
|
|
|
60598
61384
|
* @throws {RequiredError}
|
|
60599
61385
|
*/
|
|
60600
61386
|
createEntityFilterViews(workspaceId: string, jsonApiFilterViewInDocument: JsonApiFilterViewInDocument, include?: Array<"analyticalDashboards" | "users" | "analyticalDashboard" | "user" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiFilterViewOutDocument>>;
|
|
61387
|
+
/**
|
|
61388
|
+
*
|
|
61389
|
+
* @param {string} workspaceId
|
|
61390
|
+
* @param {JsonApiMemoryItemPostOptionalIdDocument} jsonApiMemoryItemPostOptionalIdDocument
|
|
61391
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
61392
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
61393
|
+
* @param {*} [options] Override http request option.
|
|
61394
|
+
* @throws {RequiredError}
|
|
61395
|
+
*/
|
|
61396
|
+
createEntityMemoryItems(workspaceId: string, jsonApiMemoryItemPostOptionalIdDocument: JsonApiMemoryItemPostOptionalIdDocument, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiMemoryItemOutDocument>>;
|
|
60601
61397
|
/**
|
|
60602
61398
|
*
|
|
60603
61399
|
* @summary Post Metrics
|
|
@@ -60743,6 +61539,15 @@ export declare const WorkspaceObjectControllerApiFp: (configuration?: Configurat
|
|
|
60743
61539
|
* @throws {RequiredError}
|
|
60744
61540
|
*/
|
|
60745
61541
|
deleteEntityFilterViews(workspaceId: string, objectId: string, filter?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
61542
|
+
/**
|
|
61543
|
+
*
|
|
61544
|
+
* @param {string} workspaceId
|
|
61545
|
+
* @param {string} objectId
|
|
61546
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
61547
|
+
* @param {*} [options] Override http request option.
|
|
61548
|
+
* @throws {RequiredError}
|
|
61549
|
+
*/
|
|
61550
|
+
deleteEntityMemoryItems(workspaceId: string, objectId: string, filter?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
60746
61551
|
/**
|
|
60747
61552
|
*
|
|
60748
61553
|
* @summary Delete a Metric
|
|
@@ -61009,6 +61814,21 @@ export declare const WorkspaceObjectControllerApiFp: (configuration?: Configurat
|
|
|
61009
61814
|
* @throws {RequiredError}
|
|
61010
61815
|
*/
|
|
61011
61816
|
getAllEntitiesLabels(workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"attributes" | "attribute" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiLabelOutList>>;
|
|
61817
|
+
/**
|
|
61818
|
+
*
|
|
61819
|
+
* @param {string} workspaceId
|
|
61820
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
61821
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
61822
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
61823
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
61824
|
+
* @param {number} [size] The size of the page to be returned
|
|
61825
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
61826
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
61827
|
+
* @param {Array<'origin' | 'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
61828
|
+
* @param {*} [options] Override http request option.
|
|
61829
|
+
* @throws {RequiredError}
|
|
61830
|
+
*/
|
|
61831
|
+
getAllEntitiesMemoryItems(workspaceId: string, origin?: "ALL" | "PARENTS" | "NATIVE", filter?: string, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "page" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiMemoryItemOutList>>;
|
|
61012
61832
|
/**
|
|
61013
61833
|
*
|
|
61014
61834
|
* @summary Get all Metrics
|
|
@@ -61270,6 +62090,18 @@ export declare const WorkspaceObjectControllerApiFp: (configuration?: Configurat
|
|
|
61270
62090
|
* @throws {RequiredError}
|
|
61271
62091
|
*/
|
|
61272
62092
|
getEntityLabels(workspaceId: string, objectId: string, filter?: string, include?: Array<"attributes" | "attribute" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiLabelOutDocument>>;
|
|
62093
|
+
/**
|
|
62094
|
+
*
|
|
62095
|
+
* @param {string} workspaceId
|
|
62096
|
+
* @param {string} objectId
|
|
62097
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
62098
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
62099
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
62100
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
62101
|
+
* @param {*} [options] Override http request option.
|
|
62102
|
+
* @throws {RequiredError}
|
|
62103
|
+
*/
|
|
62104
|
+
getEntityMemoryItems(workspaceId: string, objectId: string, filter?: string, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<"origin" | "all" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiMemoryItemOutDocument>>;
|
|
61273
62105
|
/**
|
|
61274
62106
|
*
|
|
61275
62107
|
* @summary Get a Metric
|
|
@@ -61442,6 +62274,17 @@ export declare const WorkspaceObjectControllerApiFp: (configuration?: Configurat
|
|
|
61442
62274
|
* @throws {RequiredError}
|
|
61443
62275
|
*/
|
|
61444
62276
|
patchEntityFilterViews(workspaceId: string, objectId: string, jsonApiFilterViewPatchDocument: JsonApiFilterViewPatchDocument, filter?: string, include?: Array<"analyticalDashboards" | "users" | "analyticalDashboard" | "user" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiFilterViewOutDocument>>;
|
|
62277
|
+
/**
|
|
62278
|
+
*
|
|
62279
|
+
* @param {string} workspaceId
|
|
62280
|
+
* @param {string} objectId
|
|
62281
|
+
* @param {JsonApiMemoryItemPatchDocument} jsonApiMemoryItemPatchDocument
|
|
62282
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
62283
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
62284
|
+
* @param {*} [options] Override http request option.
|
|
62285
|
+
* @throws {RequiredError}
|
|
62286
|
+
*/
|
|
62287
|
+
patchEntityMemoryItems(workspaceId: string, objectId: string, jsonApiMemoryItemPatchDocument: JsonApiMemoryItemPatchDocument, filter?: string, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiMemoryItemOutDocument>>;
|
|
61445
62288
|
/**
|
|
61446
62289
|
*
|
|
61447
62290
|
* @summary Patch a Metric
|
|
@@ -61608,6 +62451,17 @@ export declare const WorkspaceObjectControllerApiFp: (configuration?: Configurat
|
|
|
61608
62451
|
* @throws {RequiredError}
|
|
61609
62452
|
*/
|
|
61610
62453
|
updateEntityFilterViews(workspaceId: string, objectId: string, jsonApiFilterViewInDocument: JsonApiFilterViewInDocument, filter?: string, include?: Array<"analyticalDashboards" | "users" | "analyticalDashboard" | "user" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiFilterViewOutDocument>>;
|
|
62454
|
+
/**
|
|
62455
|
+
*
|
|
62456
|
+
* @param {string} workspaceId
|
|
62457
|
+
* @param {string} objectId
|
|
62458
|
+
* @param {JsonApiMemoryItemInDocument} jsonApiMemoryItemInDocument
|
|
62459
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
62460
|
+
* @param {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
62461
|
+
* @param {*} [options] Override http request option.
|
|
62462
|
+
* @throws {RequiredError}
|
|
62463
|
+
*/
|
|
62464
|
+
updateEntityMemoryItems(workspaceId: string, objectId: string, jsonApiMemoryItemInDocument: JsonApiMemoryItemInDocument, filter?: string, include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonApiMemoryItemOutDocument>>;
|
|
61611
62465
|
/**
|
|
61612
62466
|
*
|
|
61613
62467
|
* @summary Put a Metric
|
|
@@ -61749,6 +62603,13 @@ export declare const WorkspaceObjectControllerApiFactory: (configuration?: Confi
|
|
|
61749
62603
|
* @throws {RequiredError}
|
|
61750
62604
|
*/
|
|
61751
62605
|
createEntityFilterViews(requestParameters: WorkspaceObjectControllerApiCreateEntityFilterViewsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiFilterViewOutDocument>;
|
|
62606
|
+
/**
|
|
62607
|
+
*
|
|
62608
|
+
* @param {WorkspaceObjectControllerApiCreateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
62609
|
+
* @param {*} [options] Override http request option.
|
|
62610
|
+
* @throws {RequiredError}
|
|
62611
|
+
*/
|
|
62612
|
+
createEntityMemoryItems(requestParameters: WorkspaceObjectControllerApiCreateEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
61752
62613
|
/**
|
|
61753
62614
|
*
|
|
61754
62615
|
* @summary Post Metrics
|
|
@@ -61861,6 +62722,13 @@ export declare const WorkspaceObjectControllerApiFactory: (configuration?: Confi
|
|
|
61861
62722
|
* @throws {RequiredError}
|
|
61862
62723
|
*/
|
|
61863
62724
|
deleteEntityFilterViews(requestParameters: WorkspaceObjectControllerApiDeleteEntityFilterViewsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
62725
|
+
/**
|
|
62726
|
+
*
|
|
62727
|
+
* @param {WorkspaceObjectControllerApiDeleteEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
62728
|
+
* @param {*} [options] Override http request option.
|
|
62729
|
+
* @throws {RequiredError}
|
|
62730
|
+
*/
|
|
62731
|
+
deleteEntityMemoryItems(requestParameters: WorkspaceObjectControllerApiDeleteEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
61864
62732
|
/**
|
|
61865
62733
|
*
|
|
61866
62734
|
* @summary Delete a Metric
|
|
@@ -62012,6 +62880,13 @@ export declare const WorkspaceObjectControllerApiFactory: (configuration?: Confi
|
|
|
62012
62880
|
* @throws {RequiredError}
|
|
62013
62881
|
*/
|
|
62014
62882
|
getAllEntitiesLabels(requestParameters: WorkspaceObjectControllerApiGetAllEntitiesLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutList>;
|
|
62883
|
+
/**
|
|
62884
|
+
*
|
|
62885
|
+
* @param {WorkspaceObjectControllerApiGetAllEntitiesMemoryItemsRequest} requestParameters Request parameters.
|
|
62886
|
+
* @param {*} [options] Override http request option.
|
|
62887
|
+
* @throws {RequiredError}
|
|
62888
|
+
*/
|
|
62889
|
+
getAllEntitiesMemoryItems(requestParameters: WorkspaceObjectControllerApiGetAllEntitiesMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutList>;
|
|
62015
62890
|
/**
|
|
62016
62891
|
*
|
|
62017
62892
|
* @summary Get all Metrics
|
|
@@ -62163,6 +63038,13 @@ export declare const WorkspaceObjectControllerApiFactory: (configuration?: Confi
|
|
|
62163
63038
|
* @throws {RequiredError}
|
|
62164
63039
|
*/
|
|
62165
63040
|
getEntityLabels(requestParameters: WorkspaceObjectControllerApiGetEntityLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutDocument>;
|
|
63041
|
+
/**
|
|
63042
|
+
*
|
|
63043
|
+
* @param {WorkspaceObjectControllerApiGetEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
63044
|
+
* @param {*} [options] Override http request option.
|
|
63045
|
+
* @throws {RequiredError}
|
|
63046
|
+
*/
|
|
63047
|
+
getEntityMemoryItems(requestParameters: WorkspaceObjectControllerApiGetEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
62166
63048
|
/**
|
|
62167
63049
|
*
|
|
62168
63050
|
* @summary Get a Metric
|
|
@@ -62275,6 +63157,13 @@ export declare const WorkspaceObjectControllerApiFactory: (configuration?: Confi
|
|
|
62275
63157
|
* @throws {RequiredError}
|
|
62276
63158
|
*/
|
|
62277
63159
|
patchEntityFilterViews(requestParameters: WorkspaceObjectControllerApiPatchEntityFilterViewsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiFilterViewOutDocument>;
|
|
63160
|
+
/**
|
|
63161
|
+
*
|
|
63162
|
+
* @param {WorkspaceObjectControllerApiPatchEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
63163
|
+
* @param {*} [options] Override http request option.
|
|
63164
|
+
* @throws {RequiredError}
|
|
63165
|
+
*/
|
|
63166
|
+
patchEntityMemoryItems(requestParameters: WorkspaceObjectControllerApiPatchEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
62278
63167
|
/**
|
|
62279
63168
|
*
|
|
62280
63169
|
* @summary Patch a Metric
|
|
@@ -62387,6 +63276,13 @@ export declare const WorkspaceObjectControllerApiFactory: (configuration?: Confi
|
|
|
62387
63276
|
* @throws {RequiredError}
|
|
62388
63277
|
*/
|
|
62389
63278
|
updateEntityFilterViews(requestParameters: WorkspaceObjectControllerApiUpdateEntityFilterViewsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiFilterViewOutDocument>;
|
|
63279
|
+
/**
|
|
63280
|
+
*
|
|
63281
|
+
* @param {WorkspaceObjectControllerApiUpdateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
63282
|
+
* @param {*} [options] Override http request option.
|
|
63283
|
+
* @throws {RequiredError}
|
|
63284
|
+
*/
|
|
63285
|
+
updateEntityMemoryItems(requestParameters: WorkspaceObjectControllerApiUpdateEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
62390
63286
|
/**
|
|
62391
63287
|
*
|
|
62392
63288
|
* @summary Put a Metric
|
|
@@ -62514,6 +63410,14 @@ export interface WorkspaceObjectControllerApiInterface {
|
|
|
62514
63410
|
* @memberof WorkspaceObjectControllerApiInterface
|
|
62515
63411
|
*/
|
|
62516
63412
|
createEntityFilterViews(requestParameters: WorkspaceObjectControllerApiCreateEntityFilterViewsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiFilterViewOutDocument>;
|
|
63413
|
+
/**
|
|
63414
|
+
*
|
|
63415
|
+
* @param {WorkspaceObjectControllerApiCreateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
63416
|
+
* @param {*} [options] Override http request option.
|
|
63417
|
+
* @throws {RequiredError}
|
|
63418
|
+
* @memberof WorkspaceObjectControllerApiInterface
|
|
63419
|
+
*/
|
|
63420
|
+
createEntityMemoryItems(requestParameters: WorkspaceObjectControllerApiCreateEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
62517
63421
|
/**
|
|
62518
63422
|
*
|
|
62519
63423
|
* @summary Post Metrics
|
|
@@ -62640,6 +63544,14 @@ export interface WorkspaceObjectControllerApiInterface {
|
|
|
62640
63544
|
* @memberof WorkspaceObjectControllerApiInterface
|
|
62641
63545
|
*/
|
|
62642
63546
|
deleteEntityFilterViews(requestParameters: WorkspaceObjectControllerApiDeleteEntityFilterViewsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
63547
|
+
/**
|
|
63548
|
+
*
|
|
63549
|
+
* @param {WorkspaceObjectControllerApiDeleteEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
63550
|
+
* @param {*} [options] Override http request option.
|
|
63551
|
+
* @throws {RequiredError}
|
|
63552
|
+
* @memberof WorkspaceObjectControllerApiInterface
|
|
63553
|
+
*/
|
|
63554
|
+
deleteEntityMemoryItems(requestParameters: WorkspaceObjectControllerApiDeleteEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
62643
63555
|
/**
|
|
62644
63556
|
*
|
|
62645
63557
|
* @summary Delete a Metric
|
|
@@ -62810,6 +63722,14 @@ export interface WorkspaceObjectControllerApiInterface {
|
|
|
62810
63722
|
* @memberof WorkspaceObjectControllerApiInterface
|
|
62811
63723
|
*/
|
|
62812
63724
|
getAllEntitiesLabels(requestParameters: WorkspaceObjectControllerApiGetAllEntitiesLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutList>;
|
|
63725
|
+
/**
|
|
63726
|
+
*
|
|
63727
|
+
* @param {WorkspaceObjectControllerApiGetAllEntitiesMemoryItemsRequest} requestParameters Request parameters.
|
|
63728
|
+
* @param {*} [options] Override http request option.
|
|
63729
|
+
* @throws {RequiredError}
|
|
63730
|
+
* @memberof WorkspaceObjectControllerApiInterface
|
|
63731
|
+
*/
|
|
63732
|
+
getAllEntitiesMemoryItems(requestParameters: WorkspaceObjectControllerApiGetAllEntitiesMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutList>;
|
|
62813
63733
|
/**
|
|
62814
63734
|
*
|
|
62815
63735
|
* @summary Get all Metrics
|
|
@@ -62980,6 +63900,14 @@ export interface WorkspaceObjectControllerApiInterface {
|
|
|
62980
63900
|
* @memberof WorkspaceObjectControllerApiInterface
|
|
62981
63901
|
*/
|
|
62982
63902
|
getEntityLabels(requestParameters: WorkspaceObjectControllerApiGetEntityLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutDocument>;
|
|
63903
|
+
/**
|
|
63904
|
+
*
|
|
63905
|
+
* @param {WorkspaceObjectControllerApiGetEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
63906
|
+
* @param {*} [options] Override http request option.
|
|
63907
|
+
* @throws {RequiredError}
|
|
63908
|
+
* @memberof WorkspaceObjectControllerApiInterface
|
|
63909
|
+
*/
|
|
63910
|
+
getEntityMemoryItems(requestParameters: WorkspaceObjectControllerApiGetEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
62983
63911
|
/**
|
|
62984
63912
|
*
|
|
62985
63913
|
* @summary Get a Metric
|
|
@@ -63106,6 +64034,14 @@ export interface WorkspaceObjectControllerApiInterface {
|
|
|
63106
64034
|
* @memberof WorkspaceObjectControllerApiInterface
|
|
63107
64035
|
*/
|
|
63108
64036
|
patchEntityFilterViews(requestParameters: WorkspaceObjectControllerApiPatchEntityFilterViewsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiFilterViewOutDocument>;
|
|
64037
|
+
/**
|
|
64038
|
+
*
|
|
64039
|
+
* @param {WorkspaceObjectControllerApiPatchEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
64040
|
+
* @param {*} [options] Override http request option.
|
|
64041
|
+
* @throws {RequiredError}
|
|
64042
|
+
* @memberof WorkspaceObjectControllerApiInterface
|
|
64043
|
+
*/
|
|
64044
|
+
patchEntityMemoryItems(requestParameters: WorkspaceObjectControllerApiPatchEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
63109
64045
|
/**
|
|
63110
64046
|
*
|
|
63111
64047
|
* @summary Patch a Metric
|
|
@@ -63232,6 +64168,14 @@ export interface WorkspaceObjectControllerApiInterface {
|
|
|
63232
64168
|
* @memberof WorkspaceObjectControllerApiInterface
|
|
63233
64169
|
*/
|
|
63234
64170
|
updateEntityFilterViews(requestParameters: WorkspaceObjectControllerApiUpdateEntityFilterViewsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiFilterViewOutDocument>;
|
|
64171
|
+
/**
|
|
64172
|
+
*
|
|
64173
|
+
* @param {WorkspaceObjectControllerApiUpdateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
64174
|
+
* @param {*} [options] Override http request option.
|
|
64175
|
+
* @throws {RequiredError}
|
|
64176
|
+
* @memberof WorkspaceObjectControllerApiInterface
|
|
64177
|
+
*/
|
|
64178
|
+
updateEntityMemoryItems(requestParameters: WorkspaceObjectControllerApiUpdateEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
63235
64179
|
/**
|
|
63236
64180
|
*
|
|
63237
64181
|
* @summary Put a Metric
|
|
@@ -63523,6 +64467,37 @@ export interface WorkspaceObjectControllerApiCreateEntityFilterViewsRequest {
|
|
|
63523
64467
|
*/
|
|
63524
64468
|
readonly include?: Array<"analyticalDashboards" | "users" | "analyticalDashboard" | "user" | "ALL">;
|
|
63525
64469
|
}
|
|
64470
|
+
/**
|
|
64471
|
+
* Request parameters for createEntityMemoryItems operation in WorkspaceObjectControllerApi.
|
|
64472
|
+
* @export
|
|
64473
|
+
* @interface WorkspaceObjectControllerApiCreateEntityMemoryItemsRequest
|
|
64474
|
+
*/
|
|
64475
|
+
export interface WorkspaceObjectControllerApiCreateEntityMemoryItemsRequest {
|
|
64476
|
+
/**
|
|
64477
|
+
*
|
|
64478
|
+
* @type {string}
|
|
64479
|
+
* @memberof WorkspaceObjectControllerApiCreateEntityMemoryItems
|
|
64480
|
+
*/
|
|
64481
|
+
readonly workspaceId: string;
|
|
64482
|
+
/**
|
|
64483
|
+
*
|
|
64484
|
+
* @type {JsonApiMemoryItemPostOptionalIdDocument}
|
|
64485
|
+
* @memberof WorkspaceObjectControllerApiCreateEntityMemoryItems
|
|
64486
|
+
*/
|
|
64487
|
+
readonly jsonApiMemoryItemPostOptionalIdDocument: JsonApiMemoryItemPostOptionalIdDocument;
|
|
64488
|
+
/**
|
|
64489
|
+
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
64490
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
64491
|
+
* @memberof WorkspaceObjectControllerApiCreateEntityMemoryItems
|
|
64492
|
+
*/
|
|
64493
|
+
readonly include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">;
|
|
64494
|
+
/**
|
|
64495
|
+
* Include Meta objects.
|
|
64496
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
64497
|
+
* @memberof WorkspaceObjectControllerApiCreateEntityMemoryItems
|
|
64498
|
+
*/
|
|
64499
|
+
readonly metaInclude?: Array<"origin" | "all" | "ALL">;
|
|
64500
|
+
}
|
|
63526
64501
|
/**
|
|
63527
64502
|
* Request parameters for createEntityMetrics operation in WorkspaceObjectControllerApi.
|
|
63528
64503
|
* @export
|
|
@@ -63903,6 +64878,31 @@ export interface WorkspaceObjectControllerApiDeleteEntityFilterViewsRequest {
|
|
|
63903
64878
|
*/
|
|
63904
64879
|
readonly filter?: string;
|
|
63905
64880
|
}
|
|
64881
|
+
/**
|
|
64882
|
+
* Request parameters for deleteEntityMemoryItems operation in WorkspaceObjectControllerApi.
|
|
64883
|
+
* @export
|
|
64884
|
+
* @interface WorkspaceObjectControllerApiDeleteEntityMemoryItemsRequest
|
|
64885
|
+
*/
|
|
64886
|
+
export interface WorkspaceObjectControllerApiDeleteEntityMemoryItemsRequest {
|
|
64887
|
+
/**
|
|
64888
|
+
*
|
|
64889
|
+
* @type {string}
|
|
64890
|
+
* @memberof WorkspaceObjectControllerApiDeleteEntityMemoryItems
|
|
64891
|
+
*/
|
|
64892
|
+
readonly workspaceId: string;
|
|
64893
|
+
/**
|
|
64894
|
+
*
|
|
64895
|
+
* @type {string}
|
|
64896
|
+
* @memberof WorkspaceObjectControllerApiDeleteEntityMemoryItems
|
|
64897
|
+
*/
|
|
64898
|
+
readonly objectId: string;
|
|
64899
|
+
/**
|
|
64900
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
64901
|
+
* @type {string}
|
|
64902
|
+
* @memberof WorkspaceObjectControllerApiDeleteEntityMemoryItems
|
|
64903
|
+
*/
|
|
64904
|
+
readonly filter?: string;
|
|
64905
|
+
}
|
|
63906
64906
|
/**
|
|
63907
64907
|
* Request parameters for deleteEntityMetrics operation in WorkspaceObjectControllerApi.
|
|
63908
64908
|
* @export
|
|
@@ -64840,6 +65840,67 @@ export interface WorkspaceObjectControllerApiGetAllEntitiesLabelsRequest {
|
|
|
64840
65840
|
*/
|
|
64841
65841
|
readonly metaInclude?: Array<"origin" | "page" | "all" | "ALL">;
|
|
64842
65842
|
}
|
|
65843
|
+
/**
|
|
65844
|
+
* Request parameters for getAllEntitiesMemoryItems operation in WorkspaceObjectControllerApi.
|
|
65845
|
+
* @export
|
|
65846
|
+
* @interface WorkspaceObjectControllerApiGetAllEntitiesMemoryItemsRequest
|
|
65847
|
+
*/
|
|
65848
|
+
export interface WorkspaceObjectControllerApiGetAllEntitiesMemoryItemsRequest {
|
|
65849
|
+
/**
|
|
65850
|
+
*
|
|
65851
|
+
* @type {string}
|
|
65852
|
+
* @memberof WorkspaceObjectControllerApiGetAllEntitiesMemoryItems
|
|
65853
|
+
*/
|
|
65854
|
+
readonly workspaceId: string;
|
|
65855
|
+
/**
|
|
65856
|
+
*
|
|
65857
|
+
* @type {'ALL' | 'PARENTS' | 'NATIVE'}
|
|
65858
|
+
* @memberof WorkspaceObjectControllerApiGetAllEntitiesMemoryItems
|
|
65859
|
+
*/
|
|
65860
|
+
readonly origin?: "ALL" | "PARENTS" | "NATIVE";
|
|
65861
|
+
/**
|
|
65862
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
65863
|
+
* @type {string}
|
|
65864
|
+
* @memberof WorkspaceObjectControllerApiGetAllEntitiesMemoryItems
|
|
65865
|
+
*/
|
|
65866
|
+
readonly filter?: string;
|
|
65867
|
+
/**
|
|
65868
|
+
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
65869
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
65870
|
+
* @memberof WorkspaceObjectControllerApiGetAllEntitiesMemoryItems
|
|
65871
|
+
*/
|
|
65872
|
+
readonly include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">;
|
|
65873
|
+
/**
|
|
65874
|
+
* Zero-based page index (0..N)
|
|
65875
|
+
* @type {number}
|
|
65876
|
+
* @memberof WorkspaceObjectControllerApiGetAllEntitiesMemoryItems
|
|
65877
|
+
*/
|
|
65878
|
+
readonly page?: number;
|
|
65879
|
+
/**
|
|
65880
|
+
* The size of the page to be returned
|
|
65881
|
+
* @type {number}
|
|
65882
|
+
* @memberof WorkspaceObjectControllerApiGetAllEntitiesMemoryItems
|
|
65883
|
+
*/
|
|
65884
|
+
readonly size?: number;
|
|
65885
|
+
/**
|
|
65886
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
65887
|
+
* @type {Array<string>}
|
|
65888
|
+
* @memberof WorkspaceObjectControllerApiGetAllEntitiesMemoryItems
|
|
65889
|
+
*/
|
|
65890
|
+
readonly sort?: Array<string>;
|
|
65891
|
+
/**
|
|
65892
|
+
*
|
|
65893
|
+
* @type {boolean}
|
|
65894
|
+
* @memberof WorkspaceObjectControllerApiGetAllEntitiesMemoryItems
|
|
65895
|
+
*/
|
|
65896
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
65897
|
+
/**
|
|
65898
|
+
* Include Meta objects.
|
|
65899
|
+
* @type {Array<'origin' | 'page' | 'all' | 'ALL'>}
|
|
65900
|
+
* @memberof WorkspaceObjectControllerApiGetAllEntitiesMemoryItems
|
|
65901
|
+
*/
|
|
65902
|
+
readonly metaInclude?: Array<"origin" | "page" | "all" | "ALL">;
|
|
65903
|
+
}
|
|
64843
65904
|
/**
|
|
64844
65905
|
* Request parameters for getAllEntitiesMetrics operation in WorkspaceObjectControllerApi.
|
|
64845
65906
|
* @export
|
|
@@ -65747,6 +66808,49 @@ export interface WorkspaceObjectControllerApiGetEntityLabelsRequest {
|
|
|
65747
66808
|
*/
|
|
65748
66809
|
readonly metaInclude?: Array<"origin" | "all" | "ALL">;
|
|
65749
66810
|
}
|
|
66811
|
+
/**
|
|
66812
|
+
* Request parameters for getEntityMemoryItems operation in WorkspaceObjectControllerApi.
|
|
66813
|
+
* @export
|
|
66814
|
+
* @interface WorkspaceObjectControllerApiGetEntityMemoryItemsRequest
|
|
66815
|
+
*/
|
|
66816
|
+
export interface WorkspaceObjectControllerApiGetEntityMemoryItemsRequest {
|
|
66817
|
+
/**
|
|
66818
|
+
*
|
|
66819
|
+
* @type {string}
|
|
66820
|
+
* @memberof WorkspaceObjectControllerApiGetEntityMemoryItems
|
|
66821
|
+
*/
|
|
66822
|
+
readonly workspaceId: string;
|
|
66823
|
+
/**
|
|
66824
|
+
*
|
|
66825
|
+
* @type {string}
|
|
66826
|
+
* @memberof WorkspaceObjectControllerApiGetEntityMemoryItems
|
|
66827
|
+
*/
|
|
66828
|
+
readonly objectId: string;
|
|
66829
|
+
/**
|
|
66830
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
66831
|
+
* @type {string}
|
|
66832
|
+
* @memberof WorkspaceObjectControllerApiGetEntityMemoryItems
|
|
66833
|
+
*/
|
|
66834
|
+
readonly filter?: string;
|
|
66835
|
+
/**
|
|
66836
|
+
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
66837
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
66838
|
+
* @memberof WorkspaceObjectControllerApiGetEntityMemoryItems
|
|
66839
|
+
*/
|
|
66840
|
+
readonly include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">;
|
|
66841
|
+
/**
|
|
66842
|
+
*
|
|
66843
|
+
* @type {boolean}
|
|
66844
|
+
* @memberof WorkspaceObjectControllerApiGetEntityMemoryItems
|
|
66845
|
+
*/
|
|
66846
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
66847
|
+
/**
|
|
66848
|
+
* Include Meta objects.
|
|
66849
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
66850
|
+
* @memberof WorkspaceObjectControllerApiGetEntityMemoryItems
|
|
66851
|
+
*/
|
|
66852
|
+
readonly metaInclude?: Array<"origin" | "all" | "ALL">;
|
|
66853
|
+
}
|
|
65750
66854
|
/**
|
|
65751
66855
|
* Request parameters for getEntityMetrics operation in WorkspaceObjectControllerApi.
|
|
65752
66856
|
* @export
|
|
@@ -66289,6 +67393,43 @@ export interface WorkspaceObjectControllerApiPatchEntityFilterViewsRequest {
|
|
|
66289
67393
|
*/
|
|
66290
67394
|
readonly include?: Array<"analyticalDashboards" | "users" | "analyticalDashboard" | "user" | "ALL">;
|
|
66291
67395
|
}
|
|
67396
|
+
/**
|
|
67397
|
+
* Request parameters for patchEntityMemoryItems operation in WorkspaceObjectControllerApi.
|
|
67398
|
+
* @export
|
|
67399
|
+
* @interface WorkspaceObjectControllerApiPatchEntityMemoryItemsRequest
|
|
67400
|
+
*/
|
|
67401
|
+
export interface WorkspaceObjectControllerApiPatchEntityMemoryItemsRequest {
|
|
67402
|
+
/**
|
|
67403
|
+
*
|
|
67404
|
+
* @type {string}
|
|
67405
|
+
* @memberof WorkspaceObjectControllerApiPatchEntityMemoryItems
|
|
67406
|
+
*/
|
|
67407
|
+
readonly workspaceId: string;
|
|
67408
|
+
/**
|
|
67409
|
+
*
|
|
67410
|
+
* @type {string}
|
|
67411
|
+
* @memberof WorkspaceObjectControllerApiPatchEntityMemoryItems
|
|
67412
|
+
*/
|
|
67413
|
+
readonly objectId: string;
|
|
67414
|
+
/**
|
|
67415
|
+
*
|
|
67416
|
+
* @type {JsonApiMemoryItemPatchDocument}
|
|
67417
|
+
* @memberof WorkspaceObjectControllerApiPatchEntityMemoryItems
|
|
67418
|
+
*/
|
|
67419
|
+
readonly jsonApiMemoryItemPatchDocument: JsonApiMemoryItemPatchDocument;
|
|
67420
|
+
/**
|
|
67421
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
67422
|
+
* @type {string}
|
|
67423
|
+
* @memberof WorkspaceObjectControllerApiPatchEntityMemoryItems
|
|
67424
|
+
*/
|
|
67425
|
+
readonly filter?: string;
|
|
67426
|
+
/**
|
|
67427
|
+
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
67428
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
67429
|
+
* @memberof WorkspaceObjectControllerApiPatchEntityMemoryItems
|
|
67430
|
+
*/
|
|
67431
|
+
readonly include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">;
|
|
67432
|
+
}
|
|
66292
67433
|
/**
|
|
66293
67434
|
* Request parameters for patchEntityMetrics operation in WorkspaceObjectControllerApi.
|
|
66294
67435
|
* @export
|
|
@@ -66795,6 +67936,43 @@ export interface WorkspaceObjectControllerApiUpdateEntityFilterViewsRequest {
|
|
|
66795
67936
|
*/
|
|
66796
67937
|
readonly include?: Array<"analyticalDashboards" | "users" | "analyticalDashboard" | "user" | "ALL">;
|
|
66797
67938
|
}
|
|
67939
|
+
/**
|
|
67940
|
+
* Request parameters for updateEntityMemoryItems operation in WorkspaceObjectControllerApi.
|
|
67941
|
+
* @export
|
|
67942
|
+
* @interface WorkspaceObjectControllerApiUpdateEntityMemoryItemsRequest
|
|
67943
|
+
*/
|
|
67944
|
+
export interface WorkspaceObjectControllerApiUpdateEntityMemoryItemsRequest {
|
|
67945
|
+
/**
|
|
67946
|
+
*
|
|
67947
|
+
* @type {string}
|
|
67948
|
+
* @memberof WorkspaceObjectControllerApiUpdateEntityMemoryItems
|
|
67949
|
+
*/
|
|
67950
|
+
readonly workspaceId: string;
|
|
67951
|
+
/**
|
|
67952
|
+
*
|
|
67953
|
+
* @type {string}
|
|
67954
|
+
* @memberof WorkspaceObjectControllerApiUpdateEntityMemoryItems
|
|
67955
|
+
*/
|
|
67956
|
+
readonly objectId: string;
|
|
67957
|
+
/**
|
|
67958
|
+
*
|
|
67959
|
+
* @type {JsonApiMemoryItemInDocument}
|
|
67960
|
+
* @memberof WorkspaceObjectControllerApiUpdateEntityMemoryItems
|
|
67961
|
+
*/
|
|
67962
|
+
readonly jsonApiMemoryItemInDocument: JsonApiMemoryItemInDocument;
|
|
67963
|
+
/**
|
|
67964
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
67965
|
+
* @type {string}
|
|
67966
|
+
* @memberof WorkspaceObjectControllerApiUpdateEntityMemoryItems
|
|
67967
|
+
*/
|
|
67968
|
+
readonly filter?: string;
|
|
67969
|
+
/**
|
|
67970
|
+
* Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
|
|
67971
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
67972
|
+
* @memberof WorkspaceObjectControllerApiUpdateEntityMemoryItems
|
|
67973
|
+
*/
|
|
67974
|
+
readonly include?: Array<"userIdentifiers" | "createdBy" | "modifiedBy" | "ALL">;
|
|
67975
|
+
}
|
|
66798
67976
|
/**
|
|
66799
67977
|
* Request parameters for updateEntityMetrics operation in WorkspaceObjectControllerApi.
|
|
66800
67978
|
* @export
|
|
@@ -67090,6 +68268,14 @@ export declare class WorkspaceObjectControllerApi extends BaseAPI implements Wor
|
|
|
67090
68268
|
* @memberof WorkspaceObjectControllerApi
|
|
67091
68269
|
*/
|
|
67092
68270
|
createEntityFilterViews(requestParameters: WorkspaceObjectControllerApiCreateEntityFilterViewsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiFilterViewOutDocument, any, {}>>;
|
|
68271
|
+
/**
|
|
68272
|
+
*
|
|
68273
|
+
* @param {WorkspaceObjectControllerApiCreateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
68274
|
+
* @param {*} [options] Override http request option.
|
|
68275
|
+
* @throws {RequiredError}
|
|
68276
|
+
* @memberof WorkspaceObjectControllerApi
|
|
68277
|
+
*/
|
|
68278
|
+
createEntityMemoryItems(requestParameters: WorkspaceObjectControllerApiCreateEntityMemoryItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiMemoryItemOutDocument, any, {}>>;
|
|
67093
68279
|
/**
|
|
67094
68280
|
*
|
|
67095
68281
|
* @summary Post Metrics
|
|
@@ -67216,6 +68402,14 @@ export declare class WorkspaceObjectControllerApi extends BaseAPI implements Wor
|
|
|
67216
68402
|
* @memberof WorkspaceObjectControllerApi
|
|
67217
68403
|
*/
|
|
67218
68404
|
deleteEntityFilterViews(requestParameters: WorkspaceObjectControllerApiDeleteEntityFilterViewsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
68405
|
+
/**
|
|
68406
|
+
*
|
|
68407
|
+
* @param {WorkspaceObjectControllerApiDeleteEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
68408
|
+
* @param {*} [options] Override http request option.
|
|
68409
|
+
* @throws {RequiredError}
|
|
68410
|
+
* @memberof WorkspaceObjectControllerApi
|
|
68411
|
+
*/
|
|
68412
|
+
deleteEntityMemoryItems(requestParameters: WorkspaceObjectControllerApiDeleteEntityMemoryItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
67219
68413
|
/**
|
|
67220
68414
|
*
|
|
67221
68415
|
* @summary Delete a Metric
|
|
@@ -67386,6 +68580,14 @@ export declare class WorkspaceObjectControllerApi extends BaseAPI implements Wor
|
|
|
67386
68580
|
* @memberof WorkspaceObjectControllerApi
|
|
67387
68581
|
*/
|
|
67388
68582
|
getAllEntitiesLabels(requestParameters: WorkspaceObjectControllerApiGetAllEntitiesLabelsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiLabelOutList, any, {}>>;
|
|
68583
|
+
/**
|
|
68584
|
+
*
|
|
68585
|
+
* @param {WorkspaceObjectControllerApiGetAllEntitiesMemoryItemsRequest} requestParameters Request parameters.
|
|
68586
|
+
* @param {*} [options] Override http request option.
|
|
68587
|
+
* @throws {RequiredError}
|
|
68588
|
+
* @memberof WorkspaceObjectControllerApi
|
|
68589
|
+
*/
|
|
68590
|
+
getAllEntitiesMemoryItems(requestParameters: WorkspaceObjectControllerApiGetAllEntitiesMemoryItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiMemoryItemOutList, any, {}>>;
|
|
67389
68591
|
/**
|
|
67390
68592
|
*
|
|
67391
68593
|
* @summary Get all Metrics
|
|
@@ -67556,6 +68758,14 @@ export declare class WorkspaceObjectControllerApi extends BaseAPI implements Wor
|
|
|
67556
68758
|
* @memberof WorkspaceObjectControllerApi
|
|
67557
68759
|
*/
|
|
67558
68760
|
getEntityLabels(requestParameters: WorkspaceObjectControllerApiGetEntityLabelsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiLabelOutDocument, any, {}>>;
|
|
68761
|
+
/**
|
|
68762
|
+
*
|
|
68763
|
+
* @param {WorkspaceObjectControllerApiGetEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
68764
|
+
* @param {*} [options] Override http request option.
|
|
68765
|
+
* @throws {RequiredError}
|
|
68766
|
+
* @memberof WorkspaceObjectControllerApi
|
|
68767
|
+
*/
|
|
68768
|
+
getEntityMemoryItems(requestParameters: WorkspaceObjectControllerApiGetEntityMemoryItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiMemoryItemOutDocument, any, {}>>;
|
|
67559
68769
|
/**
|
|
67560
68770
|
*
|
|
67561
68771
|
* @summary Get a Metric
|
|
@@ -67682,6 +68892,14 @@ export declare class WorkspaceObjectControllerApi extends BaseAPI implements Wor
|
|
|
67682
68892
|
* @memberof WorkspaceObjectControllerApi
|
|
67683
68893
|
*/
|
|
67684
68894
|
patchEntityFilterViews(requestParameters: WorkspaceObjectControllerApiPatchEntityFilterViewsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiFilterViewOutDocument, any, {}>>;
|
|
68895
|
+
/**
|
|
68896
|
+
*
|
|
68897
|
+
* @param {WorkspaceObjectControllerApiPatchEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
68898
|
+
* @param {*} [options] Override http request option.
|
|
68899
|
+
* @throws {RequiredError}
|
|
68900
|
+
* @memberof WorkspaceObjectControllerApi
|
|
68901
|
+
*/
|
|
68902
|
+
patchEntityMemoryItems(requestParameters: WorkspaceObjectControllerApiPatchEntityMemoryItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiMemoryItemOutDocument, any, {}>>;
|
|
67685
68903
|
/**
|
|
67686
68904
|
*
|
|
67687
68905
|
* @summary Patch a Metric
|
|
@@ -67808,6 +69026,14 @@ export declare class WorkspaceObjectControllerApi extends BaseAPI implements Wor
|
|
|
67808
69026
|
* @memberof WorkspaceObjectControllerApi
|
|
67809
69027
|
*/
|
|
67810
69028
|
updateEntityFilterViews(requestParameters: WorkspaceObjectControllerApiUpdateEntityFilterViewsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiFilterViewOutDocument, any, {}>>;
|
|
69029
|
+
/**
|
|
69030
|
+
*
|
|
69031
|
+
* @param {WorkspaceObjectControllerApiUpdateEntityMemoryItemsRequest} requestParameters Request parameters.
|
|
69032
|
+
* @param {*} [options] Override http request option.
|
|
69033
|
+
* @throws {RequiredError}
|
|
69034
|
+
* @memberof WorkspaceObjectControllerApi
|
|
69035
|
+
*/
|
|
69036
|
+
updateEntityMemoryItems(requestParameters: WorkspaceObjectControllerApiUpdateEntityMemoryItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonApiMemoryItemOutDocument, any, {}>>;
|
|
67811
69037
|
/**
|
|
67812
69038
|
*
|
|
67813
69039
|
* @summary Put a Metric
|