@gooddata/api-client-tiger 11.43.0-alpha.0 → 11.43.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +1072 -588
- package/esm/gd-tiger-model/TigerTypes.d.ts +5 -0
- package/esm/gd-tiger-model/TigerTypes.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +2 -336
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +0 -347
- package/esm/generated/ai-json-api/api.d.ts +279 -150
- package/esm/generated/ai-json-api/api.d.ts.map +1 -1
- package/esm/generated/ai-json-api/api.js +70 -0
- package/esm/generated/auth-json-api/api.d.ts +511 -0
- package/esm/generated/auth-json-api/api.d.ts.map +1 -1
- package/esm/generated/auth-json-api/api.js +650 -0
- package/esm/generated/metadata-json-api/api.d.ts +1708 -997
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +1613 -1107
- 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/index.d.ts +2 -2
- package/esm/index.d.ts.map +1 -1
- package/esm/tsdoc-metadata.json +1 -1
- package/package.json +4 -4
|
@@ -1402,6 +1402,10 @@ export interface DeclarativeColumn {
|
|
|
1402
1402
|
* Column is nullable
|
|
1403
1403
|
*/
|
|
1404
1404
|
'isNullable'?: boolean;
|
|
1405
|
+
/**
|
|
1406
|
+
* Value used as sentinel for nullable columns
|
|
1407
|
+
*/
|
|
1408
|
+
'nullValue'?: string;
|
|
1405
1409
|
}
|
|
1406
1410
|
export type DeclarativeColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
1407
1411
|
export interface DeclarativeCspDirective {
|
|
@@ -2307,7 +2311,11 @@ export interface DeclarativeParameter {
|
|
|
2307
2311
|
/**
|
|
2308
2312
|
* @type DeclarativeParameterContent
|
|
2309
2313
|
*/
|
|
2310
|
-
export type DeclarativeParameterContent =
|
|
2314
|
+
export type DeclarativeParameterContent = ({
|
|
2315
|
+
type: 'NUMBER';
|
|
2316
|
+
} & NumberParameterDefinition) | ({
|
|
2317
|
+
type: 'STRING';
|
|
2318
|
+
} & StringParameterDefinition);
|
|
2311
2319
|
/**
|
|
2312
2320
|
* A dataset reference.
|
|
2313
2321
|
*/
|
|
@@ -4404,9 +4412,16 @@ export interface JsonApiCookieSecurityConfigurationIn {
|
|
|
4404
4412
|
* API identifier of an object
|
|
4405
4413
|
*/
|
|
4406
4414
|
'id': string;
|
|
4407
|
-
'attributes'?:
|
|
4415
|
+
'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
4408
4416
|
}
|
|
4409
4417
|
export type JsonApiCookieSecurityConfigurationInTypeEnum = 'cookieSecurityConfiguration';
|
|
4418
|
+
export interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
4419
|
+
'lastRotation'?: string;
|
|
4420
|
+
/**
|
|
4421
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
4422
|
+
*/
|
|
4423
|
+
'rotationInterval'?: string;
|
|
4424
|
+
}
|
|
4410
4425
|
export interface JsonApiCookieSecurityConfigurationInDocument {
|
|
4411
4426
|
'data': JsonApiCookieSecurityConfigurationIn;
|
|
4412
4427
|
}
|
|
@@ -4422,7 +4437,7 @@ export interface JsonApiCookieSecurityConfigurationOut {
|
|
|
4422
4437
|
* API identifier of an object
|
|
4423
4438
|
*/
|
|
4424
4439
|
'id': string;
|
|
4425
|
-
'attributes'?:
|
|
4440
|
+
'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
4426
4441
|
}
|
|
4427
4442
|
export type JsonApiCookieSecurityConfigurationOutTypeEnum = 'cookieSecurityConfiguration';
|
|
4428
4443
|
export interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
@@ -4441,16 +4456,9 @@ export interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
4441
4456
|
* API identifier of an object
|
|
4442
4457
|
*/
|
|
4443
4458
|
'id': string;
|
|
4444
|
-
'attributes'?:
|
|
4459
|
+
'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
4445
4460
|
}
|
|
4446
4461
|
export type JsonApiCookieSecurityConfigurationPatchTypeEnum = 'cookieSecurityConfiguration';
|
|
4447
|
-
export interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
4448
|
-
'lastRotation'?: string;
|
|
4449
|
-
/**
|
|
4450
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
4451
|
-
*/
|
|
4452
|
-
'rotationInterval'?: string;
|
|
4453
|
-
}
|
|
4454
4462
|
export interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
4455
4463
|
'data': JsonApiCookieSecurityConfigurationPatch;
|
|
4456
4464
|
}
|
|
@@ -4738,7 +4746,7 @@ export interface JsonApiCustomUserApplicationSettingIn {
|
|
|
4738
4746
|
* API identifier of an object
|
|
4739
4747
|
*/
|
|
4740
4748
|
'id': string;
|
|
4741
|
-
'attributes':
|
|
4749
|
+
'attributes': JsonApiCustomUserApplicationSettingOutAttributes;
|
|
4742
4750
|
}
|
|
4743
4751
|
export type JsonApiCustomUserApplicationSettingInTypeEnum = 'customUserApplicationSetting';
|
|
4744
4752
|
export interface JsonApiCustomUserApplicationSettingInDocument {
|
|
@@ -4756,9 +4764,20 @@ export interface JsonApiCustomUserApplicationSettingOut {
|
|
|
4756
4764
|
* API identifier of an object
|
|
4757
4765
|
*/
|
|
4758
4766
|
'id': string;
|
|
4759
|
-
'attributes':
|
|
4767
|
+
'attributes': JsonApiCustomUserApplicationSettingOutAttributes;
|
|
4760
4768
|
}
|
|
4761
4769
|
export type JsonApiCustomUserApplicationSettingOutTypeEnum = 'customUserApplicationSetting';
|
|
4770
|
+
export interface JsonApiCustomUserApplicationSettingOutAttributes {
|
|
4771
|
+
'applicationName': string;
|
|
4772
|
+
/**
|
|
4773
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4774
|
+
*/
|
|
4775
|
+
'content': object;
|
|
4776
|
+
/**
|
|
4777
|
+
* Workspace scope for this setting. Must reference an existing workspace the caller has at least VIEW access to. Null means user-level (no workspace scope).
|
|
4778
|
+
*/
|
|
4779
|
+
'workspaceId'?: string | null;
|
|
4780
|
+
}
|
|
4762
4781
|
export interface JsonApiCustomUserApplicationSettingOutDocument {
|
|
4763
4782
|
'data': JsonApiCustomUserApplicationSettingOut;
|
|
4764
4783
|
'links'?: ObjectLinks;
|
|
@@ -4780,7 +4799,7 @@ export interface JsonApiCustomUserApplicationSettingOutWithLinks {
|
|
|
4780
4799
|
* API identifier of an object
|
|
4781
4800
|
*/
|
|
4782
4801
|
'id': string;
|
|
4783
|
-
'attributes':
|
|
4802
|
+
'attributes': JsonApiCustomUserApplicationSettingOutAttributes;
|
|
4784
4803
|
'links'?: ObjectLinks;
|
|
4785
4804
|
}
|
|
4786
4805
|
export type JsonApiCustomUserApplicationSettingOutWithLinksTypeEnum = 'customUserApplicationSetting';
|
|
@@ -4796,20 +4815,9 @@ export interface JsonApiCustomUserApplicationSettingPostOptionalId {
|
|
|
4796
4815
|
* API identifier of an object
|
|
4797
4816
|
*/
|
|
4798
4817
|
'id'?: string;
|
|
4799
|
-
'attributes':
|
|
4818
|
+
'attributes': JsonApiCustomUserApplicationSettingOutAttributes;
|
|
4800
4819
|
}
|
|
4801
4820
|
export type JsonApiCustomUserApplicationSettingPostOptionalIdTypeEnum = 'customUserApplicationSetting';
|
|
4802
|
-
export interface JsonApiCustomUserApplicationSettingPostOptionalIdAttributes {
|
|
4803
|
-
'applicationName': string;
|
|
4804
|
-
/**
|
|
4805
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
4806
|
-
*/
|
|
4807
|
-
'content': object;
|
|
4808
|
-
/**
|
|
4809
|
-
* Workspace scope for this setting. Must reference an existing workspace the caller has at least VIEW access to. Null means user-level (no workspace scope).
|
|
4810
|
-
*/
|
|
4811
|
-
'workspaceId'?: string | null;
|
|
4812
|
-
}
|
|
4813
4821
|
export interface JsonApiCustomUserApplicationSettingPostOptionalIdDocument {
|
|
4814
4822
|
'data': JsonApiCustomUserApplicationSettingPostOptionalId;
|
|
4815
4823
|
}
|
|
@@ -4853,7 +4861,7 @@ export interface JsonApiDashboardPluginOut {
|
|
|
4853
4861
|
'id': string;
|
|
4854
4862
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
4855
4863
|
'attributes'?: JsonApiDashboardPluginOutAttributes;
|
|
4856
|
-
'relationships'?:
|
|
4864
|
+
'relationships'?: JsonApiOrgMemoryItemOutRelationships;
|
|
4857
4865
|
}
|
|
4858
4866
|
export type JsonApiDashboardPluginOutTypeEnum = 'dashboardPlugin';
|
|
4859
4867
|
export interface JsonApiDashboardPluginOutAttributes {
|
|
@@ -4894,10 +4902,6 @@ export interface JsonApiDashboardPluginOutList {
|
|
|
4894
4902
|
*/
|
|
4895
4903
|
'included'?: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
4896
4904
|
}
|
|
4897
|
-
export interface JsonApiDashboardPluginOutRelationships {
|
|
4898
|
-
'createdBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
4899
|
-
'modifiedBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
4900
|
-
}
|
|
4901
4905
|
export interface JsonApiDashboardPluginOutWithLinks {
|
|
4902
4906
|
/**
|
|
4903
4907
|
* Object type
|
|
@@ -4909,7 +4913,7 @@ export interface JsonApiDashboardPluginOutWithLinks {
|
|
|
4909
4913
|
'id': string;
|
|
4910
4914
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
4911
4915
|
'attributes'?: JsonApiDashboardPluginOutAttributes;
|
|
4912
|
-
'relationships'?:
|
|
4916
|
+
'relationships'?: JsonApiOrgMemoryItemOutRelationships;
|
|
4913
4917
|
'links'?: ObjectLinks;
|
|
4914
4918
|
}
|
|
4915
4919
|
export type JsonApiDashboardPluginOutWithLinksTypeEnum = 'dashboardPlugin';
|
|
@@ -5667,7 +5671,7 @@ export interface JsonApiExportTemplateIn {
|
|
|
5667
5671
|
* API identifier of an object
|
|
5668
5672
|
*/
|
|
5669
5673
|
'id': string;
|
|
5670
|
-
'attributes':
|
|
5674
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5671
5675
|
}
|
|
5672
5676
|
export type JsonApiExportTemplateInTypeEnum = 'exportTemplate';
|
|
5673
5677
|
export interface JsonApiExportTemplateInDocument {
|
|
@@ -5685,42 +5689,9 @@ export interface JsonApiExportTemplateOut {
|
|
|
5685
5689
|
* API identifier of an object
|
|
5686
5690
|
*/
|
|
5687
5691
|
'id': string;
|
|
5688
|
-
'attributes':
|
|
5692
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5689
5693
|
}
|
|
5690
5694
|
export type JsonApiExportTemplateOutTypeEnum = 'exportTemplate';
|
|
5691
|
-
export interface JsonApiExportTemplateOutAttributes {
|
|
5692
|
-
/**
|
|
5693
|
-
* User-facing name of the Slides template.
|
|
5694
|
-
*/
|
|
5695
|
-
'name': string;
|
|
5696
|
-
'dashboardSlidesTemplate'?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
5697
|
-
'widgetSlidesTemplate'?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
5698
|
-
}
|
|
5699
|
-
/**
|
|
5700
|
-
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5701
|
-
*/
|
|
5702
|
-
export interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
|
|
5703
|
-
/**
|
|
5704
|
-
* Export types this template applies to.
|
|
5705
|
-
*/
|
|
5706
|
-
'appliedOn': Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
5707
|
-
'coverSlide'?: CoverSlideTemplate | null;
|
|
5708
|
-
'introSlide'?: IntroSlideTemplate | null;
|
|
5709
|
-
'sectionSlide'?: SectionSlideTemplate | null;
|
|
5710
|
-
'contentSlide'?: ContentSlideTemplate | null;
|
|
5711
|
-
}
|
|
5712
|
-
export type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5713
|
-
/**
|
|
5714
|
-
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5715
|
-
*/
|
|
5716
|
-
export interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
|
|
5717
|
-
/**
|
|
5718
|
-
* Export types this template applies to.
|
|
5719
|
-
*/
|
|
5720
|
-
'appliedOn': Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
5721
|
-
'contentSlide'?: ContentSlideTemplate | null;
|
|
5722
|
-
}
|
|
5723
|
-
export type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5724
5695
|
export interface JsonApiExportTemplateOutDocument {
|
|
5725
5696
|
'data': JsonApiExportTemplateOut;
|
|
5726
5697
|
'links'?: ObjectLinks;
|
|
@@ -5742,7 +5713,7 @@ export interface JsonApiExportTemplateOutWithLinks {
|
|
|
5742
5713
|
* API identifier of an object
|
|
5743
5714
|
*/
|
|
5744
5715
|
'id': string;
|
|
5745
|
-
'attributes':
|
|
5716
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5746
5717
|
'links'?: ObjectLinks;
|
|
5747
5718
|
}
|
|
5748
5719
|
export type JsonApiExportTemplateOutWithLinksTypeEnum = 'exportTemplate';
|
|
@@ -5766,8 +5737,8 @@ export interface JsonApiExportTemplatePatchAttributes {
|
|
|
5766
5737
|
* User-facing name of the Slides template.
|
|
5767
5738
|
*/
|
|
5768
5739
|
'name'?: string;
|
|
5769
|
-
'dashboardSlidesTemplate'?:
|
|
5770
|
-
'widgetSlidesTemplate'?:
|
|
5740
|
+
'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
5741
|
+
'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
5771
5742
|
}
|
|
5772
5743
|
export interface JsonApiExportTemplatePatchDocument {
|
|
5773
5744
|
'data': JsonApiExportTemplatePatch;
|
|
@@ -5784,9 +5755,42 @@ export interface JsonApiExportTemplatePostOptionalId {
|
|
|
5784
5755
|
* API identifier of an object
|
|
5785
5756
|
*/
|
|
5786
5757
|
'id'?: string;
|
|
5787
|
-
'attributes':
|
|
5758
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
5788
5759
|
}
|
|
5789
5760
|
export type JsonApiExportTemplatePostOptionalIdTypeEnum = 'exportTemplate';
|
|
5761
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributes {
|
|
5762
|
+
/**
|
|
5763
|
+
* User-facing name of the Slides template.
|
|
5764
|
+
*/
|
|
5765
|
+
'name': string;
|
|
5766
|
+
'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
5767
|
+
'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
5768
|
+
}
|
|
5769
|
+
/**
|
|
5770
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5771
|
+
*/
|
|
5772
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
|
|
5773
|
+
/**
|
|
5774
|
+
* Export types this template applies to.
|
|
5775
|
+
*/
|
|
5776
|
+
'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
5777
|
+
'coverSlide'?: CoverSlideTemplate | null;
|
|
5778
|
+
'introSlide'?: IntroSlideTemplate | null;
|
|
5779
|
+
'sectionSlide'?: SectionSlideTemplate | null;
|
|
5780
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
5781
|
+
}
|
|
5782
|
+
export type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5783
|
+
/**
|
|
5784
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
5785
|
+
*/
|
|
5786
|
+
export interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
|
|
5787
|
+
/**
|
|
5788
|
+
* Export types this template applies to.
|
|
5789
|
+
*/
|
|
5790
|
+
'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
5791
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
5792
|
+
}
|
|
5793
|
+
export type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
5790
5794
|
export interface JsonApiExportTemplatePostOptionalIdDocument {
|
|
5791
5795
|
'data': JsonApiExportTemplatePostOptionalId;
|
|
5792
5796
|
}
|
|
@@ -6624,12 +6628,9 @@ export interface JsonApiKnowledgeRecommendationOutList {
|
|
|
6624
6628
|
'included'?: Array<JsonApiKnowledgeRecommendationOutIncludes>;
|
|
6625
6629
|
}
|
|
6626
6630
|
export interface JsonApiKnowledgeRecommendationOutRelationships {
|
|
6627
|
-
'metric'?:
|
|
6631
|
+
'metric'?: JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric;
|
|
6628
6632
|
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
6629
6633
|
}
|
|
6630
|
-
export interface JsonApiKnowledgeRecommendationOutRelationshipsMetric {
|
|
6631
|
-
'data': JsonApiMetricLinkage | null;
|
|
6632
|
-
}
|
|
6633
6634
|
export interface JsonApiKnowledgeRecommendationOutWithLinks {
|
|
6634
6635
|
/**
|
|
6635
6636
|
* Object type
|
|
@@ -6816,9 +6817,12 @@ export interface JsonApiKnowledgeRecommendationPostOptionalIdDocument {
|
|
|
6816
6817
|
'data': JsonApiKnowledgeRecommendationPostOptionalId;
|
|
6817
6818
|
}
|
|
6818
6819
|
export interface JsonApiKnowledgeRecommendationPostOptionalIdRelationships {
|
|
6819
|
-
'metric':
|
|
6820
|
+
'metric': JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric;
|
|
6820
6821
|
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
6821
6822
|
}
|
|
6823
|
+
export interface JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric {
|
|
6824
|
+
'data': JsonApiMetricLinkage | null;
|
|
6825
|
+
}
|
|
6822
6826
|
/**
|
|
6823
6827
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
6824
6828
|
*/
|
|
@@ -7071,7 +7075,7 @@ export interface JsonApiMemoryItemOut {
|
|
|
7071
7075
|
'id': string;
|
|
7072
7076
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
7073
7077
|
'attributes': JsonApiMemoryItemOutAttributes;
|
|
7074
|
-
'relationships'?:
|
|
7078
|
+
'relationships'?: JsonApiOrgMemoryItemOutRelationships;
|
|
7075
7079
|
}
|
|
7076
7080
|
export type JsonApiMemoryItemOutTypeEnum = 'memoryItem';
|
|
7077
7081
|
export interface JsonApiMemoryItemOutAttributes {
|
|
@@ -7136,7 +7140,7 @@ export interface JsonApiMemoryItemOutWithLinks {
|
|
|
7136
7140
|
'id': string;
|
|
7137
7141
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
7138
7142
|
'attributes': JsonApiMemoryItemOutAttributes;
|
|
7139
|
-
'relationships'?:
|
|
7143
|
+
'relationships'?: JsonApiOrgMemoryItemOutRelationships;
|
|
7140
7144
|
'links'?: ObjectLinks;
|
|
7141
7145
|
}
|
|
7142
7146
|
export type JsonApiMemoryItemOutWithLinksTypeEnum = 'memoryItem';
|
|
@@ -7627,6 +7631,167 @@ export type JsonApiNotificationChannelPostOptionalIdAttributesDestination = Defa
|
|
|
7627
7631
|
export interface JsonApiNotificationChannelPostOptionalIdDocument {
|
|
7628
7632
|
'data': JsonApiNotificationChannelPostOptionalId;
|
|
7629
7633
|
}
|
|
7634
|
+
/**
|
|
7635
|
+
* Organization-scoped AI memory item.
|
|
7636
|
+
*/
|
|
7637
|
+
export interface JsonApiOrgMemoryItemIn {
|
|
7638
|
+
/**
|
|
7639
|
+
* Object type
|
|
7640
|
+
*/
|
|
7641
|
+
'type': JsonApiOrgMemoryItemInTypeEnum;
|
|
7642
|
+
/**
|
|
7643
|
+
* API identifier of an object
|
|
7644
|
+
*/
|
|
7645
|
+
'id': string;
|
|
7646
|
+
'attributes': JsonApiOrgMemoryItemInAttributes;
|
|
7647
|
+
}
|
|
7648
|
+
export type JsonApiOrgMemoryItemInTypeEnum = 'orgMemoryItem';
|
|
7649
|
+
export interface JsonApiOrgMemoryItemInAttributes {
|
|
7650
|
+
'title'?: string | null;
|
|
7651
|
+
'description'?: string | null;
|
|
7652
|
+
/**
|
|
7653
|
+
* Strategy defining when the memory item should be applied
|
|
7654
|
+
*/
|
|
7655
|
+
'strategy': JsonApiOrgMemoryItemInAttributesStrategyEnum;
|
|
7656
|
+
/**
|
|
7657
|
+
* The text that will be injected into the system prompt
|
|
7658
|
+
*/
|
|
7659
|
+
'instruction': string;
|
|
7660
|
+
/**
|
|
7661
|
+
* Set of unique strings used for semantic similarity filtering
|
|
7662
|
+
*/
|
|
7663
|
+
'keywords'?: Array<string>;
|
|
7664
|
+
/**
|
|
7665
|
+
* Whether memory item is disabled
|
|
7666
|
+
*/
|
|
7667
|
+
'isDisabled'?: boolean;
|
|
7668
|
+
}
|
|
7669
|
+
export type JsonApiOrgMemoryItemInAttributesStrategyEnum = 'ALWAYS' | 'AUTO';
|
|
7670
|
+
export interface JsonApiOrgMemoryItemInDocument {
|
|
7671
|
+
'data': JsonApiOrgMemoryItemIn;
|
|
7672
|
+
}
|
|
7673
|
+
/**
|
|
7674
|
+
* Organization-scoped AI memory item.
|
|
7675
|
+
*/
|
|
7676
|
+
export interface JsonApiOrgMemoryItemOut {
|
|
7677
|
+
/**
|
|
7678
|
+
* Object type
|
|
7679
|
+
*/
|
|
7680
|
+
'type': JsonApiOrgMemoryItemOutTypeEnum;
|
|
7681
|
+
/**
|
|
7682
|
+
* API identifier of an object
|
|
7683
|
+
*/
|
|
7684
|
+
'id': string;
|
|
7685
|
+
'attributes': JsonApiOrgMemoryItemOutAttributes;
|
|
7686
|
+
'relationships'?: JsonApiOrgMemoryItemOutRelationships;
|
|
7687
|
+
}
|
|
7688
|
+
export type JsonApiOrgMemoryItemOutTypeEnum = 'orgMemoryItem';
|
|
7689
|
+
export interface JsonApiOrgMemoryItemOutAttributes {
|
|
7690
|
+
'title'?: string | null;
|
|
7691
|
+
'description'?: string | null;
|
|
7692
|
+
/**
|
|
7693
|
+
* Strategy defining when the memory item should be applied
|
|
7694
|
+
*/
|
|
7695
|
+
'strategy': JsonApiOrgMemoryItemOutAttributesStrategyEnum;
|
|
7696
|
+
/**
|
|
7697
|
+
* The text that will be injected into the system prompt
|
|
7698
|
+
*/
|
|
7699
|
+
'instruction': string;
|
|
7700
|
+
/**
|
|
7701
|
+
* Set of unique strings used for semantic similarity filtering
|
|
7702
|
+
*/
|
|
7703
|
+
'keywords'?: Array<string>;
|
|
7704
|
+
/**
|
|
7705
|
+
* Whether memory item is disabled
|
|
7706
|
+
*/
|
|
7707
|
+
'isDisabled'?: boolean;
|
|
7708
|
+
/**
|
|
7709
|
+
* Time of the entity creation.
|
|
7710
|
+
*/
|
|
7711
|
+
'createdAt'?: string | null;
|
|
7712
|
+
/**
|
|
7713
|
+
* Time of the last entity modification.
|
|
7714
|
+
*/
|
|
7715
|
+
'modifiedAt'?: string | null;
|
|
7716
|
+
}
|
|
7717
|
+
export type JsonApiOrgMemoryItemOutAttributesStrategyEnum = 'ALWAYS' | 'AUTO';
|
|
7718
|
+
export interface JsonApiOrgMemoryItemOutDocument {
|
|
7719
|
+
'data': JsonApiOrgMemoryItemOut;
|
|
7720
|
+
'links'?: ObjectLinks;
|
|
7721
|
+
/**
|
|
7722
|
+
* Included resources
|
|
7723
|
+
*/
|
|
7724
|
+
'included'?: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
7725
|
+
}
|
|
7726
|
+
/**
|
|
7727
|
+
* A JSON:API document with a list of resources
|
|
7728
|
+
*/
|
|
7729
|
+
export interface JsonApiOrgMemoryItemOutList {
|
|
7730
|
+
'data': Array<JsonApiOrgMemoryItemOutWithLinks>;
|
|
7731
|
+
'links'?: ListLinks;
|
|
7732
|
+
'meta'?: JsonApiAgentOutListMeta;
|
|
7733
|
+
/**
|
|
7734
|
+
* Included resources
|
|
7735
|
+
*/
|
|
7736
|
+
'included'?: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
7737
|
+
}
|
|
7738
|
+
export interface JsonApiOrgMemoryItemOutRelationships {
|
|
7739
|
+
'createdBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
7740
|
+
'modifiedBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
7741
|
+
}
|
|
7742
|
+
export interface JsonApiOrgMemoryItemOutWithLinks {
|
|
7743
|
+
/**
|
|
7744
|
+
* Object type
|
|
7745
|
+
*/
|
|
7746
|
+
'type': JsonApiOrgMemoryItemOutWithLinksTypeEnum;
|
|
7747
|
+
/**
|
|
7748
|
+
* API identifier of an object
|
|
7749
|
+
*/
|
|
7750
|
+
'id': string;
|
|
7751
|
+
'attributes': JsonApiOrgMemoryItemOutAttributes;
|
|
7752
|
+
'relationships'?: JsonApiOrgMemoryItemOutRelationships;
|
|
7753
|
+
'links'?: ObjectLinks;
|
|
7754
|
+
}
|
|
7755
|
+
export type JsonApiOrgMemoryItemOutWithLinksTypeEnum = 'orgMemoryItem';
|
|
7756
|
+
/**
|
|
7757
|
+
* Organization-scoped AI memory item.
|
|
7758
|
+
*/
|
|
7759
|
+
export interface JsonApiOrgMemoryItemPatch {
|
|
7760
|
+
/**
|
|
7761
|
+
* Object type
|
|
7762
|
+
*/
|
|
7763
|
+
'type': JsonApiOrgMemoryItemPatchTypeEnum;
|
|
7764
|
+
/**
|
|
7765
|
+
* API identifier of an object
|
|
7766
|
+
*/
|
|
7767
|
+
'id': string;
|
|
7768
|
+
'attributes': JsonApiOrgMemoryItemPatchAttributes;
|
|
7769
|
+
}
|
|
7770
|
+
export type JsonApiOrgMemoryItemPatchTypeEnum = 'orgMemoryItem';
|
|
7771
|
+
export interface JsonApiOrgMemoryItemPatchAttributes {
|
|
7772
|
+
'title'?: string | null;
|
|
7773
|
+
'description'?: string | null;
|
|
7774
|
+
/**
|
|
7775
|
+
* Strategy defining when the memory item should be applied
|
|
7776
|
+
*/
|
|
7777
|
+
'strategy'?: JsonApiOrgMemoryItemPatchAttributesStrategyEnum;
|
|
7778
|
+
/**
|
|
7779
|
+
* The text that will be injected into the system prompt
|
|
7780
|
+
*/
|
|
7781
|
+
'instruction'?: string;
|
|
7782
|
+
/**
|
|
7783
|
+
* Set of unique strings used for semantic similarity filtering
|
|
7784
|
+
*/
|
|
7785
|
+
'keywords'?: Array<string>;
|
|
7786
|
+
/**
|
|
7787
|
+
* Whether memory item is disabled
|
|
7788
|
+
*/
|
|
7789
|
+
'isDisabled'?: boolean;
|
|
7790
|
+
}
|
|
7791
|
+
export type JsonApiOrgMemoryItemPatchAttributesStrategyEnum = 'ALWAYS' | 'AUTO';
|
|
7792
|
+
export interface JsonApiOrgMemoryItemPatchDocument {
|
|
7793
|
+
'data': JsonApiOrgMemoryItemPatch;
|
|
7794
|
+
}
|
|
7630
7795
|
/**
|
|
7631
7796
|
* JSON:API representation of organization entity.
|
|
7632
7797
|
*/
|
|
@@ -7639,13 +7804,33 @@ export interface JsonApiOrganizationIn {
|
|
|
7639
7804
|
* API identifier of an object
|
|
7640
7805
|
*/
|
|
7641
7806
|
'id': string;
|
|
7642
|
-
'attributes'?:
|
|
7643
|
-
'relationships'?:
|
|
7807
|
+
'attributes'?: JsonApiOrganizationInAttributes;
|
|
7808
|
+
'relationships'?: JsonApiOrganizationInRelationships;
|
|
7644
7809
|
}
|
|
7645
7810
|
export type JsonApiOrganizationInTypeEnum = 'organization';
|
|
7811
|
+
export interface JsonApiOrganizationInAttributes {
|
|
7812
|
+
'name'?: string | null;
|
|
7813
|
+
'hostname'?: string;
|
|
7814
|
+
'allowedOrigins'?: Array<string>;
|
|
7815
|
+
/**
|
|
7816
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
7817
|
+
* @deprecated
|
|
7818
|
+
*/
|
|
7819
|
+
'earlyAccess'?: string | null;
|
|
7820
|
+
/**
|
|
7821
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
7822
|
+
*/
|
|
7823
|
+
'earlyAccessValues'?: Array<string> | null;
|
|
7824
|
+
}
|
|
7646
7825
|
export interface JsonApiOrganizationInDocument {
|
|
7647
7826
|
'data': JsonApiOrganizationIn;
|
|
7648
7827
|
}
|
|
7828
|
+
export interface JsonApiOrganizationInRelationships {
|
|
7829
|
+
'identityProvider'?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
7830
|
+
}
|
|
7831
|
+
export interface JsonApiOrganizationInRelationshipsIdentityProvider {
|
|
7832
|
+
'data': JsonApiIdentityProviderLinkage | null;
|
|
7833
|
+
}
|
|
7649
7834
|
/**
|
|
7650
7835
|
* JSON:API representation of organization entity.
|
|
7651
7836
|
*/
|
|
@@ -7713,7 +7898,7 @@ export type JsonApiOrganizationOutMetaPermissionsEnum = 'MANAGE' | 'SELF_CREATE_
|
|
|
7713
7898
|
export interface JsonApiOrganizationOutRelationships {
|
|
7714
7899
|
'bootstrapUser'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
7715
7900
|
'bootstrapUserGroup'?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
7716
|
-
'identityProvider'?:
|
|
7901
|
+
'identityProvider'?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
7717
7902
|
}
|
|
7718
7903
|
export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
7719
7904
|
'data': JsonApiUserLinkage | null;
|
|
@@ -7721,9 +7906,6 @@ export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
|
7721
7906
|
export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
7722
7907
|
'data': JsonApiUserGroupLinkage | null;
|
|
7723
7908
|
}
|
|
7724
|
-
export interface JsonApiOrganizationOutRelationshipsIdentityProvider {
|
|
7725
|
-
'data': JsonApiIdentityProviderLinkage | null;
|
|
7726
|
-
}
|
|
7727
7909
|
/**
|
|
7728
7910
|
* JSON:API representation of patching organization entity.
|
|
7729
7911
|
*/
|
|
@@ -7736,30 +7918,13 @@ export interface JsonApiOrganizationPatch {
|
|
|
7736
7918
|
* API identifier of an object
|
|
7737
7919
|
*/
|
|
7738
7920
|
'id': string;
|
|
7739
|
-
'attributes'?:
|
|
7740
|
-
'relationships'?:
|
|
7921
|
+
'attributes'?: JsonApiOrganizationInAttributes;
|
|
7922
|
+
'relationships'?: JsonApiOrganizationInRelationships;
|
|
7741
7923
|
}
|
|
7742
7924
|
export type JsonApiOrganizationPatchTypeEnum = 'organization';
|
|
7743
|
-
export interface JsonApiOrganizationPatchAttributes {
|
|
7744
|
-
'name'?: string | null;
|
|
7745
|
-
'hostname'?: string;
|
|
7746
|
-
'allowedOrigins'?: Array<string>;
|
|
7747
|
-
/**
|
|
7748
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
7749
|
-
* @deprecated
|
|
7750
|
-
*/
|
|
7751
|
-
'earlyAccess'?: string | null;
|
|
7752
|
-
/**
|
|
7753
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
7754
|
-
*/
|
|
7755
|
-
'earlyAccessValues'?: Array<string> | null;
|
|
7756
|
-
}
|
|
7757
7925
|
export interface JsonApiOrganizationPatchDocument {
|
|
7758
7926
|
'data': JsonApiOrganizationPatch;
|
|
7759
7927
|
}
|
|
7760
|
-
export interface JsonApiOrganizationPatchRelationships {
|
|
7761
|
-
'identityProvider'?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
7762
|
-
}
|
|
7763
7928
|
/**
|
|
7764
7929
|
* JSON:API representation of organizationSetting entity.
|
|
7765
7930
|
*/
|
|
@@ -7772,9 +7937,17 @@ export interface JsonApiOrganizationSettingIn {
|
|
|
7772
7937
|
* API identifier of an object
|
|
7773
7938
|
*/
|
|
7774
7939
|
'id': string;
|
|
7775
|
-
'attributes'?:
|
|
7940
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
7776
7941
|
}
|
|
7777
7942
|
export type JsonApiOrganizationSettingInTypeEnum = 'organizationSetting';
|
|
7943
|
+
export interface JsonApiOrganizationSettingInAttributes {
|
|
7944
|
+
/**
|
|
7945
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
7946
|
+
*/
|
|
7947
|
+
'content'?: object;
|
|
7948
|
+
'type'?: JsonApiOrganizationSettingInAttributesTypeEnum;
|
|
7949
|
+
}
|
|
7950
|
+
export type JsonApiOrganizationSettingInAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
|
|
7778
7951
|
export interface JsonApiOrganizationSettingInDocument {
|
|
7779
7952
|
'data': JsonApiOrganizationSettingIn;
|
|
7780
7953
|
}
|
|
@@ -7790,17 +7963,9 @@ export interface JsonApiOrganizationSettingOut {
|
|
|
7790
7963
|
* API identifier of an object
|
|
7791
7964
|
*/
|
|
7792
7965
|
'id': string;
|
|
7793
|
-
'attributes'?:
|
|
7966
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
7794
7967
|
}
|
|
7795
7968
|
export type JsonApiOrganizationSettingOutTypeEnum = 'organizationSetting';
|
|
7796
|
-
export interface JsonApiOrganizationSettingOutAttributes {
|
|
7797
|
-
/**
|
|
7798
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
7799
|
-
*/
|
|
7800
|
-
'content'?: object;
|
|
7801
|
-
'type'?: JsonApiOrganizationSettingOutAttributesTypeEnum;
|
|
7802
|
-
}
|
|
7803
|
-
export type JsonApiOrganizationSettingOutAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
|
|
7804
7969
|
export interface JsonApiOrganizationSettingOutDocument {
|
|
7805
7970
|
'data': JsonApiOrganizationSettingOut;
|
|
7806
7971
|
'links'?: ObjectLinks;
|
|
@@ -7822,7 +7987,7 @@ export interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
7822
7987
|
* API identifier of an object
|
|
7823
7988
|
*/
|
|
7824
7989
|
'id': string;
|
|
7825
|
-
'attributes'?:
|
|
7990
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
7826
7991
|
'links'?: ObjectLinks;
|
|
7827
7992
|
}
|
|
7828
7993
|
export type JsonApiOrganizationSettingOutWithLinksTypeEnum = 'organizationSetting';
|
|
@@ -7838,7 +8003,7 @@ export interface JsonApiOrganizationSettingPatch {
|
|
|
7838
8003
|
* API identifier of an object
|
|
7839
8004
|
*/
|
|
7840
8005
|
'id': string;
|
|
7841
|
-
'attributes'?:
|
|
8006
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
7842
8007
|
}
|
|
7843
8008
|
export type JsonApiOrganizationSettingPatchTypeEnum = 'organizationSetting';
|
|
7844
8009
|
export interface JsonApiOrganizationSettingPatchDocument {
|
|
@@ -7884,7 +8049,7 @@ export interface JsonApiParameterOut {
|
|
|
7884
8049
|
'id': string;
|
|
7885
8050
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
7886
8051
|
'attributes': JsonApiParameterOutAttributes;
|
|
7887
|
-
'relationships'?:
|
|
8052
|
+
'relationships'?: JsonApiOrgMemoryItemOutRelationships;
|
|
7888
8053
|
}
|
|
7889
8054
|
export type JsonApiParameterOutTypeEnum = 'parameter';
|
|
7890
8055
|
export interface JsonApiParameterOutAttributes {
|
|
@@ -7905,7 +8070,11 @@ export interface JsonApiParameterOutAttributes {
|
|
|
7905
8070
|
/**
|
|
7906
8071
|
* @type JsonApiParameterOutAttributesDefinition
|
|
7907
8072
|
*/
|
|
7908
|
-
export type JsonApiParameterOutAttributesDefinition =
|
|
8073
|
+
export type JsonApiParameterOutAttributesDefinition = ({
|
|
8074
|
+
type: 'NUMBER';
|
|
8075
|
+
} & NumberParameterDefinition) | ({
|
|
8076
|
+
type: 'STRING';
|
|
8077
|
+
} & StringParameterDefinition);
|
|
7909
8078
|
export interface JsonApiParameterOutDocument {
|
|
7910
8079
|
'data': JsonApiParameterOut;
|
|
7911
8080
|
'links'?: ObjectLinks;
|
|
@@ -7937,7 +8106,7 @@ export interface JsonApiParameterOutWithLinks {
|
|
|
7937
8106
|
'id': string;
|
|
7938
8107
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
7939
8108
|
'attributes': JsonApiParameterOutAttributes;
|
|
7940
|
-
'relationships'?:
|
|
8109
|
+
'relationships'?: JsonApiOrgMemoryItemOutRelationships;
|
|
7941
8110
|
'links'?: ObjectLinks;
|
|
7942
8111
|
}
|
|
7943
8112
|
export type JsonApiParameterOutWithLinksTypeEnum = 'parameter';
|
|
@@ -8079,7 +8248,7 @@ export interface JsonApiUserDataFilterIn {
|
|
|
8079
8248
|
* API identifier of an object
|
|
8080
8249
|
*/
|
|
8081
8250
|
'id': string;
|
|
8082
|
-
'attributes':
|
|
8251
|
+
'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
8083
8252
|
'relationships'?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
8084
8253
|
}
|
|
8085
8254
|
export type JsonApiUserDataFilterInTypeEnum = 'userDataFilter';
|
|
@@ -8099,17 +8268,10 @@ export interface JsonApiUserDataFilterOut {
|
|
|
8099
8268
|
*/
|
|
8100
8269
|
'id': string;
|
|
8101
8270
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
8102
|
-
'attributes':
|
|
8271
|
+
'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
8103
8272
|
'relationships'?: JsonApiUserDataFilterOutRelationships;
|
|
8104
8273
|
}
|
|
8105
8274
|
export type JsonApiUserDataFilterOutTypeEnum = 'userDataFilter';
|
|
8106
|
-
export interface JsonApiUserDataFilterOutAttributes {
|
|
8107
|
-
'title'?: string;
|
|
8108
|
-
'description'?: string;
|
|
8109
|
-
'tags'?: Array<string>;
|
|
8110
|
-
'areRelationsValid'?: boolean;
|
|
8111
|
-
'maql': string;
|
|
8112
|
-
}
|
|
8113
8275
|
export interface JsonApiUserDataFilterOutDocument {
|
|
8114
8276
|
'data': JsonApiUserDataFilterOut;
|
|
8115
8277
|
'links'?: ObjectLinks;
|
|
@@ -8154,7 +8316,7 @@ export interface JsonApiUserDataFilterOutWithLinks {
|
|
|
8154
8316
|
*/
|
|
8155
8317
|
'id': string;
|
|
8156
8318
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
8157
|
-
'attributes':
|
|
8319
|
+
'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
8158
8320
|
'relationships'?: JsonApiUserDataFilterOutRelationships;
|
|
8159
8321
|
'links'?: ObjectLinks;
|
|
8160
8322
|
}
|
|
@@ -8197,10 +8359,17 @@ export interface JsonApiUserDataFilterPostOptionalId {
|
|
|
8197
8359
|
* API identifier of an object
|
|
8198
8360
|
*/
|
|
8199
8361
|
'id'?: string;
|
|
8200
|
-
'attributes':
|
|
8362
|
+
'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
8201
8363
|
'relationships'?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
8202
8364
|
}
|
|
8203
8365
|
export type JsonApiUserDataFilterPostOptionalIdTypeEnum = 'userDataFilter';
|
|
8366
|
+
export interface JsonApiUserDataFilterPostOptionalIdAttributes {
|
|
8367
|
+
'title'?: string;
|
|
8368
|
+
'description'?: string;
|
|
8369
|
+
'tags'?: Array<string>;
|
|
8370
|
+
'areRelationsValid'?: boolean;
|
|
8371
|
+
'maql': string;
|
|
8372
|
+
}
|
|
8204
8373
|
export interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
8205
8374
|
'data': JsonApiUserDataFilterPostOptionalId;
|
|
8206
8375
|
}
|
|
@@ -8490,7 +8659,7 @@ export interface JsonApiUserSettingIn {
|
|
|
8490
8659
|
* API identifier of an object
|
|
8491
8660
|
*/
|
|
8492
8661
|
'id': string;
|
|
8493
|
-
'attributes'?:
|
|
8662
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
8494
8663
|
}
|
|
8495
8664
|
export type JsonApiUserSettingInTypeEnum = 'userSetting';
|
|
8496
8665
|
export interface JsonApiUserSettingInDocument {
|
|
@@ -8508,7 +8677,7 @@ export interface JsonApiUserSettingOut {
|
|
|
8508
8677
|
* API identifier of an object
|
|
8509
8678
|
*/
|
|
8510
8679
|
'id': string;
|
|
8511
|
-
'attributes'?:
|
|
8680
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
8512
8681
|
}
|
|
8513
8682
|
export type JsonApiUserSettingOutTypeEnum = 'userSetting';
|
|
8514
8683
|
export interface JsonApiUserSettingOutDocument {
|
|
@@ -8532,7 +8701,7 @@ export interface JsonApiUserSettingOutWithLinks {
|
|
|
8532
8701
|
* API identifier of an object
|
|
8533
8702
|
*/
|
|
8534
8703
|
'id': string;
|
|
8535
|
-
'attributes'?:
|
|
8704
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
8536
8705
|
'links'?: ObjectLinks;
|
|
8537
8706
|
}
|
|
8538
8707
|
export type JsonApiUserSettingOutWithLinksTypeEnum = 'userSetting';
|
|
@@ -9009,13 +9178,24 @@ export interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
9009
9178
|
* API identifier of an object
|
|
9010
9179
|
*/
|
|
9011
9180
|
'id': string;
|
|
9012
|
-
'attributes'?:
|
|
9013
|
-
'relationships'?:
|
|
9181
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
9182
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
9014
9183
|
}
|
|
9015
9184
|
export type JsonApiWorkspaceDataFilterSettingInTypeEnum = 'workspaceDataFilterSetting';
|
|
9185
|
+
export interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
9186
|
+
'title'?: string;
|
|
9187
|
+
'description'?: string;
|
|
9188
|
+
'filterValues'?: Array<string>;
|
|
9189
|
+
}
|
|
9016
9190
|
export interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
9017
9191
|
'data': JsonApiWorkspaceDataFilterSettingIn;
|
|
9018
9192
|
}
|
|
9193
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
9194
|
+
'workspaceDataFilter'?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
9195
|
+
}
|
|
9196
|
+
export interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
9197
|
+
'data': JsonApiWorkspaceDataFilterLinkage | null;
|
|
9198
|
+
}
|
|
9019
9199
|
/**
|
|
9020
9200
|
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
9021
9201
|
*/
|
|
@@ -9037,15 +9217,10 @@ export interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
9037
9217
|
*/
|
|
9038
9218
|
'id': string;
|
|
9039
9219
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
9040
|
-
'attributes'?:
|
|
9041
|
-
'relationships'?:
|
|
9220
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
9221
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
9042
9222
|
}
|
|
9043
9223
|
export type JsonApiWorkspaceDataFilterSettingOutTypeEnum = 'workspaceDataFilterSetting';
|
|
9044
|
-
export interface JsonApiWorkspaceDataFilterSettingOutAttributes {
|
|
9045
|
-
'title'?: string;
|
|
9046
|
-
'description'?: string;
|
|
9047
|
-
'filterValues'?: Array<string>;
|
|
9048
|
-
}
|
|
9049
9224
|
export interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
9050
9225
|
'data': JsonApiWorkspaceDataFilterSettingOut;
|
|
9051
9226
|
'links'?: ObjectLinks;
|
|
@@ -9066,12 +9241,6 @@ export interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
|
9066
9241
|
*/
|
|
9067
9242
|
'included'?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
9068
9243
|
}
|
|
9069
|
-
export interface JsonApiWorkspaceDataFilterSettingOutRelationships {
|
|
9070
|
-
'workspaceDataFilter'?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
|
|
9071
|
-
}
|
|
9072
|
-
export interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
|
|
9073
|
-
'data': JsonApiWorkspaceDataFilterLinkage | null;
|
|
9074
|
-
}
|
|
9075
9244
|
export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
9076
9245
|
/**
|
|
9077
9246
|
* Object type
|
|
@@ -9082,8 +9251,8 @@ export interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
9082
9251
|
*/
|
|
9083
9252
|
'id': string;
|
|
9084
9253
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
9085
|
-
'attributes'?:
|
|
9086
|
-
'relationships'?:
|
|
9254
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
9255
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
9087
9256
|
'links'?: ObjectLinks;
|
|
9088
9257
|
}
|
|
9089
9258
|
export type JsonApiWorkspaceDataFilterSettingOutWithLinksTypeEnum = 'workspaceDataFilterSetting';
|
|
@@ -9099,8 +9268,8 @@ export interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
9099
9268
|
* API identifier of an object
|
|
9100
9269
|
*/
|
|
9101
9270
|
'id': string;
|
|
9102
|
-
'attributes'?:
|
|
9103
|
-
'relationships'?:
|
|
9271
|
+
'attributes'?: JsonApiWorkspaceDataFilterSettingInAttributes;
|
|
9272
|
+
'relationships'?: JsonApiWorkspaceDataFilterSettingInRelationships;
|
|
9104
9273
|
}
|
|
9105
9274
|
export type JsonApiWorkspaceDataFilterSettingPatchTypeEnum = 'workspaceDataFilterSetting';
|
|
9106
9275
|
export interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
@@ -9290,7 +9459,7 @@ export interface JsonApiWorkspaceSettingIn {
|
|
|
9290
9459
|
* API identifier of an object
|
|
9291
9460
|
*/
|
|
9292
9461
|
'id': string;
|
|
9293
|
-
'attributes'?:
|
|
9462
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
9294
9463
|
}
|
|
9295
9464
|
export type JsonApiWorkspaceSettingInTypeEnum = 'workspaceSetting';
|
|
9296
9465
|
export interface JsonApiWorkspaceSettingInDocument {
|
|
@@ -9309,7 +9478,7 @@ export interface JsonApiWorkspaceSettingOut {
|
|
|
9309
9478
|
*/
|
|
9310
9479
|
'id': string;
|
|
9311
9480
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
9312
|
-
'attributes'?:
|
|
9481
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
9313
9482
|
}
|
|
9314
9483
|
export type JsonApiWorkspaceSettingOutTypeEnum = 'workspaceSetting';
|
|
9315
9484
|
export interface JsonApiWorkspaceSettingOutDocument {
|
|
@@ -9334,7 +9503,7 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
9334
9503
|
*/
|
|
9335
9504
|
'id': string;
|
|
9336
9505
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
9337
|
-
'attributes'?:
|
|
9506
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
9338
9507
|
'links'?: ObjectLinks;
|
|
9339
9508
|
}
|
|
9340
9509
|
export type JsonApiWorkspaceSettingOutWithLinksTypeEnum = 'workspaceSetting';
|
|
@@ -9350,7 +9519,7 @@ export interface JsonApiWorkspaceSettingPatch {
|
|
|
9350
9519
|
* API identifier of an object
|
|
9351
9520
|
*/
|
|
9352
9521
|
'id': string;
|
|
9353
|
-
'attributes'?:
|
|
9522
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
9354
9523
|
}
|
|
9355
9524
|
export type JsonApiWorkspaceSettingPatchTypeEnum = 'workspaceSetting';
|
|
9356
9525
|
export interface JsonApiWorkspaceSettingPatchDocument {
|
|
@@ -9368,7 +9537,7 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
9368
9537
|
* API identifier of an object
|
|
9369
9538
|
*/
|
|
9370
9539
|
'id'?: string;
|
|
9371
|
-
'attributes'?:
|
|
9540
|
+
'attributes'?: JsonApiOrganizationSettingInAttributes;
|
|
9372
9541
|
}
|
|
9373
9542
|
export type JsonApiWorkspaceSettingPostOptionalIdTypeEnum = 'workspaceSetting';
|
|
9374
9543
|
export interface JsonApiWorkspaceSettingPostOptionalIdDocument {
|
|
@@ -9713,7 +9882,11 @@ export interface Parameter {
|
|
|
9713
9882
|
* @type ParameterDefinition
|
|
9714
9883
|
* Parameter content (type-discriminated).
|
|
9715
9884
|
*/
|
|
9716
|
-
export type ParameterDefinition =
|
|
9885
|
+
export type ParameterDefinition = ({
|
|
9886
|
+
type: 'NUMBER';
|
|
9887
|
+
} & NumberParameterDefinition) | ({
|
|
9888
|
+
type: 'STRING';
|
|
9889
|
+
} & StringParameterDefinition);
|
|
9717
9890
|
/**
|
|
9718
9891
|
* (EXPERIMENTAL) Parameter value for this execution.
|
|
9719
9892
|
*/
|
|
@@ -9972,12 +10145,12 @@ export interface RankingFilterRankingFilter {
|
|
|
9972
10145
|
* Number of top/bottom values to filter.
|
|
9973
10146
|
*/
|
|
9974
10147
|
'value': number;
|
|
9975
|
-
'localIdentifier'?: string;
|
|
9976
|
-
'applyOnResult'?: boolean;
|
|
9977
10148
|
/**
|
|
9978
10149
|
* When true, filter returns requested number of rows at most. Default is false.
|
|
9979
10150
|
*/
|
|
9980
10151
|
'strictLimitOfRows'?: boolean;
|
|
10152
|
+
'localIdentifier'?: string;
|
|
10153
|
+
'applyOnResult'?: boolean;
|
|
9981
10154
|
}
|
|
9982
10155
|
export type RankingFilterRankingFilterOperatorEnum = 'TOP' | 'BOTTOM';
|
|
9983
10156
|
/**
|
|
@@ -10389,6 +10562,10 @@ export interface SqlColumn {
|
|
|
10389
10562
|
* Column data type.
|
|
10390
10563
|
*/
|
|
10391
10564
|
'dataType': SqlColumnDataTypeEnum;
|
|
10565
|
+
/**
|
|
10566
|
+
* Value used as sentinel for null values in the column.
|
|
10567
|
+
*/
|
|
10568
|
+
'nullValue'?: string;
|
|
10392
10569
|
}
|
|
10393
10570
|
export type SqlColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
|
|
10394
10571
|
/**
|
|
@@ -10859,6 +11036,16 @@ export declare function AIApiAxiosParamCreator_CreateEntityKnowledgeRecommendati
|
|
|
10859
11036
|
* @throws {RequiredError}
|
|
10860
11037
|
*/
|
|
10861
11038
|
export declare function AIApiAxiosParamCreator_CreateEntityMemoryItems(workspaceId: string, jsonApiMemoryItemPostOptionalIdDocument: JsonApiMemoryItemPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
11039
|
+
/**
|
|
11040
|
+
* Organization-scoped AI memory item
|
|
11041
|
+
* @summary Post organization Memory Item entities
|
|
11042
|
+
* @param {JsonApiOrgMemoryItemInDocument} jsonApiOrgMemoryItemInDocument
|
|
11043
|
+
* @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.
|
|
11044
|
+
* @param {*} [options] Override http request option.
|
|
11045
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
11046
|
+
* @throws {RequiredError}
|
|
11047
|
+
*/
|
|
11048
|
+
export declare function AIApiAxiosParamCreator_CreateEntityOrgMemoryItems(jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
10862
11049
|
/**
|
|
10863
11050
|
*
|
|
10864
11051
|
* @summary Delete a Knowledge Recommendation
|
|
@@ -10879,6 +11066,15 @@ export declare function AIApiAxiosParamCreator_DeleteEntityKnowledgeRecommendati
|
|
|
10879
11066
|
* @throws {RequiredError}
|
|
10880
11067
|
*/
|
|
10881
11068
|
export declare function AIApiAxiosParamCreator_DeleteEntityMemoryItems(workspaceId: string, objectId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
11069
|
+
/**
|
|
11070
|
+
*
|
|
11071
|
+
* @summary Delete an organization Memory Item entity
|
|
11072
|
+
* @param {string} id
|
|
11073
|
+
* @param {*} [options] Override http request option.
|
|
11074
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
11075
|
+
* @throws {RequiredError}
|
|
11076
|
+
*/
|
|
11077
|
+
export declare function AIApiAxiosParamCreator_DeleteEntityOrgMemoryItems(id: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
10882
11078
|
/**
|
|
10883
11079
|
*
|
|
10884
11080
|
* @summary Get all Knowledge Recommendations
|
|
@@ -10913,6 +11109,20 @@ export declare function AIApiAxiosParamCreator_GetAllEntitiesKnowledgeRecommenda
|
|
|
10913
11109
|
* @throws {RequiredError}
|
|
10914
11110
|
*/
|
|
10915
11111
|
export declare function AIApiAxiosParamCreator_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, configuration?: Configuration): Promise<RequestArgs>;
|
|
11112
|
+
/**
|
|
11113
|
+
*
|
|
11114
|
+
* @summary Get all organization Memory Item entities
|
|
11115
|
+
* @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\').
|
|
11116
|
+
* @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.
|
|
11117
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
11118
|
+
* @param {number} [size] The size of the page to be returned
|
|
11119
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
11120
|
+
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
11121
|
+
* @param {*} [options] Override http request option.
|
|
11122
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
11123
|
+
* @throws {RequiredError}
|
|
11124
|
+
*/
|
|
11125
|
+
export declare function AIApiAxiosParamCreator_GetAllEntitiesOrgMemoryItems(filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
10916
11126
|
/**
|
|
10917
11127
|
*
|
|
10918
11128
|
* @summary Get a Knowledge Recommendation
|
|
@@ -10941,6 +11151,17 @@ export declare function AIApiAxiosParamCreator_GetEntityKnowledgeRecommendations
|
|
|
10941
11151
|
* @throws {RequiredError}
|
|
10942
11152
|
*/
|
|
10943
11153
|
export declare function AIApiAxiosParamCreator_GetEntityMemoryItems(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
11154
|
+
/**
|
|
11155
|
+
*
|
|
11156
|
+
* @summary Get an organization Memory Item entity
|
|
11157
|
+
* @param {string} id
|
|
11158
|
+
* @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\').
|
|
11159
|
+
* @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.
|
|
11160
|
+
* @param {*} [options] Override http request option.
|
|
11161
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
11162
|
+
* @throws {RequiredError}
|
|
11163
|
+
*/
|
|
11164
|
+
export declare function AIApiAxiosParamCreator_GetEntityOrgMemoryItems(id: string, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
10944
11165
|
/**
|
|
10945
11166
|
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
10946
11167
|
* @summary (BETA) Sync Metadata to other services
|
|
@@ -10984,6 +11205,18 @@ export declare function AIApiAxiosParamCreator_PatchEntityKnowledgeRecommendatio
|
|
|
10984
11205
|
* @throws {RequiredError}
|
|
10985
11206
|
*/
|
|
10986
11207
|
export declare function AIApiAxiosParamCreator_PatchEntityMemoryItems(workspaceId: string, objectId: string, jsonApiMemoryItemPatchDocument: JsonApiMemoryItemPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
11208
|
+
/**
|
|
11209
|
+
*
|
|
11210
|
+
* @summary Patch an organization Memory Item entity
|
|
11211
|
+
* @param {string} id
|
|
11212
|
+
* @param {JsonApiOrgMemoryItemPatchDocument} jsonApiOrgMemoryItemPatchDocument
|
|
11213
|
+
* @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\').
|
|
11214
|
+
* @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.
|
|
11215
|
+
* @param {*} [options] Override http request option.
|
|
11216
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
11217
|
+
* @throws {RequiredError}
|
|
11218
|
+
*/
|
|
11219
|
+
export declare function AIApiAxiosParamCreator_PatchEntityOrgMemoryItems(id: string, jsonApiOrgMemoryItemPatchDocument: JsonApiOrgMemoryItemPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
10987
11220
|
/**
|
|
10988
11221
|
*
|
|
10989
11222
|
* @summary The search endpoint (beta)
|
|
@@ -11034,6 +11267,18 @@ export declare function AIApiAxiosParamCreator_UpdateEntityKnowledgeRecommendati
|
|
|
11034
11267
|
* @throws {RequiredError}
|
|
11035
11268
|
*/
|
|
11036
11269
|
export declare function AIApiAxiosParamCreator_UpdateEntityMemoryItems(workspaceId: string, objectId: string, jsonApiMemoryItemInDocument: JsonApiMemoryItemInDocument, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
11270
|
+
/**
|
|
11271
|
+
*
|
|
11272
|
+
* @summary Put an organization Memory Item entity
|
|
11273
|
+
* @param {string} id
|
|
11274
|
+
* @param {JsonApiOrgMemoryItemInDocument} jsonApiOrgMemoryItemInDocument
|
|
11275
|
+
* @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\').
|
|
11276
|
+
* @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.
|
|
11277
|
+
* @param {*} [options] Override http request option.
|
|
11278
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
11279
|
+
* @throws {RequiredError}
|
|
11280
|
+
*/
|
|
11281
|
+
export declare function AIApiAxiosParamCreator_UpdateEntityOrgMemoryItems(id: string, jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
11037
11282
|
/**
|
|
11038
11283
|
*
|
|
11039
11284
|
* @summary Post Knowledge Recommendations
|
|
@@ -11056,6 +11301,17 @@ export declare function AIApi_CreateEntityKnowledgeRecommendations(axios: AxiosI
|
|
|
11056
11301
|
* @throws {RequiredError}
|
|
11057
11302
|
*/
|
|
11058
11303
|
export declare function AIApi_CreateEntityMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: AIApiCreateEntityMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
11304
|
+
/**
|
|
11305
|
+
* Organization-scoped AI memory item
|
|
11306
|
+
* @summary Post organization Memory Item entities
|
|
11307
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
11308
|
+
* @param {string} basePath Base path.
|
|
11309
|
+
* @param {AIApiCreateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
11310
|
+
* @param {*} [options] Override http request option.
|
|
11311
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
11312
|
+
* @throws {RequiredError}
|
|
11313
|
+
*/
|
|
11314
|
+
export declare function AIApi_CreateEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: AIApiCreateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
11059
11315
|
/**
|
|
11060
11316
|
*
|
|
11061
11317
|
* @summary Delete a Knowledge Recommendation
|
|
@@ -11078,6 +11334,17 @@ export declare function AIApi_DeleteEntityKnowledgeRecommendations(axios: AxiosI
|
|
|
11078
11334
|
* @throws {RequiredError}
|
|
11079
11335
|
*/
|
|
11080
11336
|
export declare function AIApi_DeleteEntityMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: AIApiDeleteEntityMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
11337
|
+
/**
|
|
11338
|
+
*
|
|
11339
|
+
* @summary Delete an organization Memory Item entity
|
|
11340
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
11341
|
+
* @param {string} basePath Base path.
|
|
11342
|
+
* @param {AIApiDeleteEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
11343
|
+
* @param {*} [options] Override http request option.
|
|
11344
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
11345
|
+
* @throws {RequiredError}
|
|
11346
|
+
*/
|
|
11347
|
+
export declare function AIApi_DeleteEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: AIApiDeleteEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
11081
11348
|
/**
|
|
11082
11349
|
*
|
|
11083
11350
|
* @summary Get all Knowledge Recommendations
|
|
@@ -11100,6 +11367,17 @@ export declare function AIApi_GetAllEntitiesKnowledgeRecommendations(axios: Axio
|
|
|
11100
11367
|
* @throws {RequiredError}
|
|
11101
11368
|
*/
|
|
11102
11369
|
export declare function AIApi_GetAllEntitiesMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: AIApiGetAllEntitiesMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiMemoryItemOutList>;
|
|
11370
|
+
/**
|
|
11371
|
+
*
|
|
11372
|
+
* @summary Get all organization Memory Item entities
|
|
11373
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
11374
|
+
* @param {string} basePath Base path.
|
|
11375
|
+
* @param {AIApiGetAllEntitiesOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
11376
|
+
* @param {*} [options] Override http request option.
|
|
11377
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
11378
|
+
* @throws {RequiredError}
|
|
11379
|
+
*/
|
|
11380
|
+
export declare function AIApi_GetAllEntitiesOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: AIApiGetAllEntitiesOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutList>;
|
|
11103
11381
|
/**
|
|
11104
11382
|
*
|
|
11105
11383
|
* @summary Get a Knowledge Recommendation
|
|
@@ -11122,6 +11400,17 @@ export declare function AIApi_GetEntityKnowledgeRecommendations(axios: AxiosInst
|
|
|
11122
11400
|
* @throws {RequiredError}
|
|
11123
11401
|
*/
|
|
11124
11402
|
export declare function AIApi_GetEntityMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: AIApiGetEntityMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
11403
|
+
/**
|
|
11404
|
+
*
|
|
11405
|
+
* @summary Get an organization Memory Item entity
|
|
11406
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
11407
|
+
* @param {string} basePath Base path.
|
|
11408
|
+
* @param {AIApiGetEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
11409
|
+
* @param {*} [options] Override http request option.
|
|
11410
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
11411
|
+
* @throws {RequiredError}
|
|
11412
|
+
*/
|
|
11413
|
+
export declare function AIApi_GetEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: AIApiGetEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
11125
11414
|
/**
|
|
11126
11415
|
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
11127
11416
|
* @summary (BETA) Sync Metadata to other services
|
|
@@ -11165,6 +11454,17 @@ export declare function AIApi_PatchEntityKnowledgeRecommendations(axios: AxiosIn
|
|
|
11165
11454
|
* @throws {RequiredError}
|
|
11166
11455
|
*/
|
|
11167
11456
|
export declare function AIApi_PatchEntityMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: AIApiPatchEntityMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
11457
|
+
/**
|
|
11458
|
+
*
|
|
11459
|
+
* @summary Patch an organization Memory Item entity
|
|
11460
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
11461
|
+
* @param {string} basePath Base path.
|
|
11462
|
+
* @param {AIApiPatchEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
11463
|
+
* @param {*} [options] Override http request option.
|
|
11464
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
11465
|
+
* @throws {RequiredError}
|
|
11466
|
+
*/
|
|
11467
|
+
export declare function AIApi_PatchEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: AIApiPatchEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
11168
11468
|
/**
|
|
11169
11469
|
*
|
|
11170
11470
|
* @summary The search endpoint (beta)
|
|
@@ -11209,6 +11509,17 @@ export declare function AIApi_UpdateEntityKnowledgeRecommendations(axios: AxiosI
|
|
|
11209
11509
|
* @throws {RequiredError}
|
|
11210
11510
|
*/
|
|
11211
11511
|
export declare function AIApi_UpdateEntityMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: AIApiUpdateEntityMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
11512
|
+
/**
|
|
11513
|
+
*
|
|
11514
|
+
* @summary Put an organization Memory Item entity
|
|
11515
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
11516
|
+
* @param {string} basePath Base path.
|
|
11517
|
+
* @param {AIApiUpdateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
11518
|
+
* @param {*} [options] Override http request option.
|
|
11519
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
11520
|
+
* @throws {RequiredError}
|
|
11521
|
+
*/
|
|
11522
|
+
export declare function AIApi_UpdateEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: AIApiUpdateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
11212
11523
|
/**
|
|
11213
11524
|
* AIApi - interface
|
|
11214
11525
|
* @export
|
|
@@ -11233,6 +11544,15 @@ export interface AIApiInterface {
|
|
|
11233
11544
|
* @memberof AIApiInterface
|
|
11234
11545
|
*/
|
|
11235
11546
|
createEntityMemoryItems(requestParameters: AIApiCreateEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
11547
|
+
/**
|
|
11548
|
+
* Organization-scoped AI memory item
|
|
11549
|
+
* @summary Post organization Memory Item entities
|
|
11550
|
+
* @param {AIApiCreateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
11551
|
+
* @param {*} [options] Override http request option.
|
|
11552
|
+
* @throws {RequiredError}
|
|
11553
|
+
* @memberof AIApiInterface
|
|
11554
|
+
*/
|
|
11555
|
+
createEntityOrgMemoryItems(requestParameters: AIApiCreateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
11236
11556
|
/**
|
|
11237
11557
|
*
|
|
11238
11558
|
* @summary Delete a Knowledge Recommendation
|
|
@@ -11251,6 +11571,15 @@ export interface AIApiInterface {
|
|
|
11251
11571
|
* @memberof AIApiInterface
|
|
11252
11572
|
*/
|
|
11253
11573
|
deleteEntityMemoryItems(requestParameters: AIApiDeleteEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
11574
|
+
/**
|
|
11575
|
+
*
|
|
11576
|
+
* @summary Delete an organization Memory Item entity
|
|
11577
|
+
* @param {AIApiDeleteEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
11578
|
+
* @param {*} [options] Override http request option.
|
|
11579
|
+
* @throws {RequiredError}
|
|
11580
|
+
* @memberof AIApiInterface
|
|
11581
|
+
*/
|
|
11582
|
+
deleteEntityOrgMemoryItems(requestParameters: AIApiDeleteEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
11254
11583
|
/**
|
|
11255
11584
|
*
|
|
11256
11585
|
* @summary Get all Knowledge Recommendations
|
|
@@ -11269,6 +11598,15 @@ export interface AIApiInterface {
|
|
|
11269
11598
|
* @memberof AIApiInterface
|
|
11270
11599
|
*/
|
|
11271
11600
|
getAllEntitiesMemoryItems(requestParameters: AIApiGetAllEntitiesMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutList>;
|
|
11601
|
+
/**
|
|
11602
|
+
*
|
|
11603
|
+
* @summary Get all organization Memory Item entities
|
|
11604
|
+
* @param {AIApiGetAllEntitiesOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
11605
|
+
* @param {*} [options] Override http request option.
|
|
11606
|
+
* @throws {RequiredError}
|
|
11607
|
+
* @memberof AIApiInterface
|
|
11608
|
+
*/
|
|
11609
|
+
getAllEntitiesOrgMemoryItems(requestParameters: AIApiGetAllEntitiesOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutList>;
|
|
11272
11610
|
/**
|
|
11273
11611
|
*
|
|
11274
11612
|
* @summary Get a Knowledge Recommendation
|
|
@@ -11287,6 +11625,15 @@ export interface AIApiInterface {
|
|
|
11287
11625
|
* @memberof AIApiInterface
|
|
11288
11626
|
*/
|
|
11289
11627
|
getEntityMemoryItems(requestParameters: AIApiGetEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
11628
|
+
/**
|
|
11629
|
+
*
|
|
11630
|
+
* @summary Get an organization Memory Item entity
|
|
11631
|
+
* @param {AIApiGetEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
11632
|
+
* @param {*} [options] Override http request option.
|
|
11633
|
+
* @throws {RequiredError}
|
|
11634
|
+
* @memberof AIApiInterface
|
|
11635
|
+
*/
|
|
11636
|
+
getEntityOrgMemoryItems(requestParameters: AIApiGetEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
11290
11637
|
/**
|
|
11291
11638
|
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
11292
11639
|
* @summary (BETA) Sync Metadata to other services
|
|
@@ -11322,6 +11669,15 @@ export interface AIApiInterface {
|
|
|
11322
11669
|
* @memberof AIApiInterface
|
|
11323
11670
|
*/
|
|
11324
11671
|
patchEntityMemoryItems(requestParameters: AIApiPatchEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
11672
|
+
/**
|
|
11673
|
+
*
|
|
11674
|
+
* @summary Patch an organization Memory Item entity
|
|
11675
|
+
* @param {AIApiPatchEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
11676
|
+
* @param {*} [options] Override http request option.
|
|
11677
|
+
* @throws {RequiredError}
|
|
11678
|
+
* @memberof AIApiInterface
|
|
11679
|
+
*/
|
|
11680
|
+
patchEntityOrgMemoryItems(requestParameters: AIApiPatchEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
11325
11681
|
/**
|
|
11326
11682
|
*
|
|
11327
11683
|
* @summary The search endpoint (beta)
|
|
@@ -11358,6 +11714,15 @@ export interface AIApiInterface {
|
|
|
11358
11714
|
* @memberof AIApiInterface
|
|
11359
11715
|
*/
|
|
11360
11716
|
updateEntityMemoryItems(requestParameters: AIApiUpdateEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
11717
|
+
/**
|
|
11718
|
+
*
|
|
11719
|
+
* @summary Put an organization Memory Item entity
|
|
11720
|
+
* @param {AIApiUpdateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
11721
|
+
* @param {*} [options] Override http request option.
|
|
11722
|
+
* @throws {RequiredError}
|
|
11723
|
+
* @memberof AIApiInterface
|
|
11724
|
+
*/
|
|
11725
|
+
updateEntityOrgMemoryItems(requestParameters: AIApiUpdateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
11361
11726
|
}
|
|
11362
11727
|
/**
|
|
11363
11728
|
* Request parameters for createEntityKnowledgeRecommendations operation in AIApi.
|
|
@@ -11421,6 +11786,25 @@ export interface AIApiCreateEntityMemoryItemsRequest {
|
|
|
11421
11786
|
*/
|
|
11422
11787
|
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
11423
11788
|
}
|
|
11789
|
+
/**
|
|
11790
|
+
* Request parameters for createEntityOrgMemoryItems operation in AIApi.
|
|
11791
|
+
* @export
|
|
11792
|
+
* @interface AIApiCreateEntityOrgMemoryItemsRequest
|
|
11793
|
+
*/
|
|
11794
|
+
export interface AIApiCreateEntityOrgMemoryItemsRequest {
|
|
11795
|
+
/**
|
|
11796
|
+
*
|
|
11797
|
+
* @type {JsonApiOrgMemoryItemInDocument}
|
|
11798
|
+
* @memberof AIApiCreateEntityOrgMemoryItems
|
|
11799
|
+
*/
|
|
11800
|
+
readonly jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument;
|
|
11801
|
+
/**
|
|
11802
|
+
* 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.
|
|
11803
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
11804
|
+
* @memberof AIApiCreateEntityOrgMemoryItems
|
|
11805
|
+
*/
|
|
11806
|
+
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
11807
|
+
}
|
|
11424
11808
|
/**
|
|
11425
11809
|
* Request parameters for deleteEntityKnowledgeRecommendations operation in AIApi.
|
|
11426
11810
|
* @export
|
|
@@ -11459,6 +11843,19 @@ export interface AIApiDeleteEntityMemoryItemsRequest {
|
|
|
11459
11843
|
*/
|
|
11460
11844
|
readonly objectId: string;
|
|
11461
11845
|
}
|
|
11846
|
+
/**
|
|
11847
|
+
* Request parameters for deleteEntityOrgMemoryItems operation in AIApi.
|
|
11848
|
+
* @export
|
|
11849
|
+
* @interface AIApiDeleteEntityOrgMemoryItemsRequest
|
|
11850
|
+
*/
|
|
11851
|
+
export interface AIApiDeleteEntityOrgMemoryItemsRequest {
|
|
11852
|
+
/**
|
|
11853
|
+
*
|
|
11854
|
+
* @type {string}
|
|
11855
|
+
* @memberof AIApiDeleteEntityOrgMemoryItems
|
|
11856
|
+
*/
|
|
11857
|
+
readonly id: string;
|
|
11858
|
+
}
|
|
11462
11859
|
/**
|
|
11463
11860
|
* Request parameters for getAllEntitiesKnowledgeRecommendations operation in AIApi.
|
|
11464
11861
|
* @export
|
|
@@ -11581,6 +11978,49 @@ export interface AIApiGetAllEntitiesMemoryItemsRequest {
|
|
|
11581
11978
|
*/
|
|
11582
11979
|
readonly metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>;
|
|
11583
11980
|
}
|
|
11981
|
+
/**
|
|
11982
|
+
* Request parameters for getAllEntitiesOrgMemoryItems operation in AIApi.
|
|
11983
|
+
* @export
|
|
11984
|
+
* @interface AIApiGetAllEntitiesOrgMemoryItemsRequest
|
|
11985
|
+
*/
|
|
11986
|
+
export interface AIApiGetAllEntitiesOrgMemoryItemsRequest {
|
|
11987
|
+
/**
|
|
11988
|
+
* 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\').
|
|
11989
|
+
* @type {string}
|
|
11990
|
+
* @memberof AIApiGetAllEntitiesOrgMemoryItems
|
|
11991
|
+
*/
|
|
11992
|
+
readonly filter?: string;
|
|
11993
|
+
/**
|
|
11994
|
+
* 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.
|
|
11995
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
11996
|
+
* @memberof AIApiGetAllEntitiesOrgMemoryItems
|
|
11997
|
+
*/
|
|
11998
|
+
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
11999
|
+
/**
|
|
12000
|
+
* Zero-based page index (0..N)
|
|
12001
|
+
* @type {number}
|
|
12002
|
+
* @memberof AIApiGetAllEntitiesOrgMemoryItems
|
|
12003
|
+
*/
|
|
12004
|
+
readonly page?: number;
|
|
12005
|
+
/**
|
|
12006
|
+
* The size of the page to be returned
|
|
12007
|
+
* @type {number}
|
|
12008
|
+
* @memberof AIApiGetAllEntitiesOrgMemoryItems
|
|
12009
|
+
*/
|
|
12010
|
+
readonly size?: number;
|
|
12011
|
+
/**
|
|
12012
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
12013
|
+
* @type {Array<string>}
|
|
12014
|
+
* @memberof AIApiGetAllEntitiesOrgMemoryItems
|
|
12015
|
+
*/
|
|
12016
|
+
readonly sort?: Array<string>;
|
|
12017
|
+
/**
|
|
12018
|
+
* Include Meta objects.
|
|
12019
|
+
* @type {Array<'page' | 'all' | 'ALL'>}
|
|
12020
|
+
* @memberof AIApiGetAllEntitiesOrgMemoryItems
|
|
12021
|
+
*/
|
|
12022
|
+
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
12023
|
+
}
|
|
11584
12024
|
/**
|
|
11585
12025
|
* Request parameters for getEntityKnowledgeRecommendations operation in AIApi.
|
|
11586
12026
|
* @export
|
|
@@ -11667,6 +12107,31 @@ export interface AIApiGetEntityMemoryItemsRequest {
|
|
|
11667
12107
|
*/
|
|
11668
12108
|
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
11669
12109
|
}
|
|
12110
|
+
/**
|
|
12111
|
+
* Request parameters for getEntityOrgMemoryItems operation in AIApi.
|
|
12112
|
+
* @export
|
|
12113
|
+
* @interface AIApiGetEntityOrgMemoryItemsRequest
|
|
12114
|
+
*/
|
|
12115
|
+
export interface AIApiGetEntityOrgMemoryItemsRequest {
|
|
12116
|
+
/**
|
|
12117
|
+
*
|
|
12118
|
+
* @type {string}
|
|
12119
|
+
* @memberof AIApiGetEntityOrgMemoryItems
|
|
12120
|
+
*/
|
|
12121
|
+
readonly id: string;
|
|
12122
|
+
/**
|
|
12123
|
+
* 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\').
|
|
12124
|
+
* @type {string}
|
|
12125
|
+
* @memberof AIApiGetEntityOrgMemoryItems
|
|
12126
|
+
*/
|
|
12127
|
+
readonly filter?: string;
|
|
12128
|
+
/**
|
|
12129
|
+
* 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.
|
|
12130
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
12131
|
+
* @memberof AIApiGetEntityOrgMemoryItems
|
|
12132
|
+
*/
|
|
12133
|
+
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
12134
|
+
}
|
|
11670
12135
|
/**
|
|
11671
12136
|
* Request parameters for metadataSync operation in AIApi.
|
|
11672
12137
|
* @export
|
|
@@ -11754,6 +12219,37 @@ export interface AIApiPatchEntityMemoryItemsRequest {
|
|
|
11754
12219
|
*/
|
|
11755
12220
|
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
11756
12221
|
}
|
|
12222
|
+
/**
|
|
12223
|
+
* Request parameters for patchEntityOrgMemoryItems operation in AIApi.
|
|
12224
|
+
* @export
|
|
12225
|
+
* @interface AIApiPatchEntityOrgMemoryItemsRequest
|
|
12226
|
+
*/
|
|
12227
|
+
export interface AIApiPatchEntityOrgMemoryItemsRequest {
|
|
12228
|
+
/**
|
|
12229
|
+
*
|
|
12230
|
+
* @type {string}
|
|
12231
|
+
* @memberof AIApiPatchEntityOrgMemoryItems
|
|
12232
|
+
*/
|
|
12233
|
+
readonly id: string;
|
|
12234
|
+
/**
|
|
12235
|
+
*
|
|
12236
|
+
* @type {JsonApiOrgMemoryItemPatchDocument}
|
|
12237
|
+
* @memberof AIApiPatchEntityOrgMemoryItems
|
|
12238
|
+
*/
|
|
12239
|
+
readonly jsonApiOrgMemoryItemPatchDocument: JsonApiOrgMemoryItemPatchDocument;
|
|
12240
|
+
/**
|
|
12241
|
+
* 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\').
|
|
12242
|
+
* @type {string}
|
|
12243
|
+
* @memberof AIApiPatchEntityOrgMemoryItems
|
|
12244
|
+
*/
|
|
12245
|
+
readonly filter?: string;
|
|
12246
|
+
/**
|
|
12247
|
+
* 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.
|
|
12248
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
12249
|
+
* @memberof AIApiPatchEntityOrgMemoryItems
|
|
12250
|
+
*/
|
|
12251
|
+
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
12252
|
+
}
|
|
11757
12253
|
/**
|
|
11758
12254
|
* Request parameters for searchEntitiesKnowledgeRecommendations operation in AIApi.
|
|
11759
12255
|
* @export
|
|
@@ -11890,6 +12386,37 @@ export interface AIApiUpdateEntityMemoryItemsRequest {
|
|
|
11890
12386
|
*/
|
|
11891
12387
|
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
11892
12388
|
}
|
|
12389
|
+
/**
|
|
12390
|
+
* Request parameters for updateEntityOrgMemoryItems operation in AIApi.
|
|
12391
|
+
* @export
|
|
12392
|
+
* @interface AIApiUpdateEntityOrgMemoryItemsRequest
|
|
12393
|
+
*/
|
|
12394
|
+
export interface AIApiUpdateEntityOrgMemoryItemsRequest {
|
|
12395
|
+
/**
|
|
12396
|
+
*
|
|
12397
|
+
* @type {string}
|
|
12398
|
+
* @memberof AIApiUpdateEntityOrgMemoryItems
|
|
12399
|
+
*/
|
|
12400
|
+
readonly id: string;
|
|
12401
|
+
/**
|
|
12402
|
+
*
|
|
12403
|
+
* @type {JsonApiOrgMemoryItemInDocument}
|
|
12404
|
+
* @memberof AIApiUpdateEntityOrgMemoryItems
|
|
12405
|
+
*/
|
|
12406
|
+
readonly jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument;
|
|
12407
|
+
/**
|
|
12408
|
+
* 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\').
|
|
12409
|
+
* @type {string}
|
|
12410
|
+
* @memberof AIApiUpdateEntityOrgMemoryItems
|
|
12411
|
+
*/
|
|
12412
|
+
readonly filter?: string;
|
|
12413
|
+
/**
|
|
12414
|
+
* 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.
|
|
12415
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
12416
|
+
* @memberof AIApiUpdateEntityOrgMemoryItems
|
|
12417
|
+
*/
|
|
12418
|
+
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
12419
|
+
}
|
|
11893
12420
|
/**
|
|
11894
12421
|
* AIApi - object-oriented interface
|
|
11895
12422
|
* @export
|
|
@@ -11915,6 +12442,15 @@ export declare class AIApi extends BaseAPI implements AIApiInterface {
|
|
|
11915
12442
|
* @memberof AIApi
|
|
11916
12443
|
*/
|
|
11917
12444
|
createEntityMemoryItems(requestParameters: AIApiCreateEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
12445
|
+
/**
|
|
12446
|
+
* Organization-scoped AI memory item
|
|
12447
|
+
* @summary Post organization Memory Item entities
|
|
12448
|
+
* @param {AIApiCreateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
12449
|
+
* @param {*} [options] Override http request option.
|
|
12450
|
+
* @throws {RequiredError}
|
|
12451
|
+
* @memberof AIApi
|
|
12452
|
+
*/
|
|
12453
|
+
createEntityOrgMemoryItems(requestParameters: AIApiCreateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
11918
12454
|
/**
|
|
11919
12455
|
*
|
|
11920
12456
|
* @summary Delete a Knowledge Recommendation
|
|
@@ -11933,6 +12469,15 @@ export declare class AIApi extends BaseAPI implements AIApiInterface {
|
|
|
11933
12469
|
* @memberof AIApi
|
|
11934
12470
|
*/
|
|
11935
12471
|
deleteEntityMemoryItems(requestParameters: AIApiDeleteEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
12472
|
+
/**
|
|
12473
|
+
*
|
|
12474
|
+
* @summary Delete an organization Memory Item entity
|
|
12475
|
+
* @param {AIApiDeleteEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
12476
|
+
* @param {*} [options] Override http request option.
|
|
12477
|
+
* @throws {RequiredError}
|
|
12478
|
+
* @memberof AIApi
|
|
12479
|
+
*/
|
|
12480
|
+
deleteEntityOrgMemoryItems(requestParameters: AIApiDeleteEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
11936
12481
|
/**
|
|
11937
12482
|
*
|
|
11938
12483
|
* @summary Get all Knowledge Recommendations
|
|
@@ -11951,6 +12496,15 @@ export declare class AIApi extends BaseAPI implements AIApiInterface {
|
|
|
11951
12496
|
* @memberof AIApi
|
|
11952
12497
|
*/
|
|
11953
12498
|
getAllEntitiesMemoryItems(requestParameters: AIApiGetAllEntitiesMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutList>;
|
|
12499
|
+
/**
|
|
12500
|
+
*
|
|
12501
|
+
* @summary Get all organization Memory Item entities
|
|
12502
|
+
* @param {AIApiGetAllEntitiesOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
12503
|
+
* @param {*} [options] Override http request option.
|
|
12504
|
+
* @throws {RequiredError}
|
|
12505
|
+
* @memberof AIApi
|
|
12506
|
+
*/
|
|
12507
|
+
getAllEntitiesOrgMemoryItems(requestParameters?: AIApiGetAllEntitiesOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutList>;
|
|
11954
12508
|
/**
|
|
11955
12509
|
*
|
|
11956
12510
|
* @summary Get a Knowledge Recommendation
|
|
@@ -11969,6 +12523,15 @@ export declare class AIApi extends BaseAPI implements AIApiInterface {
|
|
|
11969
12523
|
* @memberof AIApi
|
|
11970
12524
|
*/
|
|
11971
12525
|
getEntityMemoryItems(requestParameters: AIApiGetEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
12526
|
+
/**
|
|
12527
|
+
*
|
|
12528
|
+
* @summary Get an organization Memory Item entity
|
|
12529
|
+
* @param {AIApiGetEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
12530
|
+
* @param {*} [options] Override http request option.
|
|
12531
|
+
* @throws {RequiredError}
|
|
12532
|
+
* @memberof AIApi
|
|
12533
|
+
*/
|
|
12534
|
+
getEntityOrgMemoryItems(requestParameters: AIApiGetEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
11972
12535
|
/**
|
|
11973
12536
|
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
11974
12537
|
* @summary (BETA) Sync Metadata to other services
|
|
@@ -12004,6 +12567,15 @@ export declare class AIApi extends BaseAPI implements AIApiInterface {
|
|
|
12004
12567
|
* @memberof AIApi
|
|
12005
12568
|
*/
|
|
12006
12569
|
patchEntityMemoryItems(requestParameters: AIApiPatchEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
12570
|
+
/**
|
|
12571
|
+
*
|
|
12572
|
+
* @summary Patch an organization Memory Item entity
|
|
12573
|
+
* @param {AIApiPatchEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
12574
|
+
* @param {*} [options] Override http request option.
|
|
12575
|
+
* @throws {RequiredError}
|
|
12576
|
+
* @memberof AIApi
|
|
12577
|
+
*/
|
|
12578
|
+
patchEntityOrgMemoryItems(requestParameters: AIApiPatchEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
12007
12579
|
/**
|
|
12008
12580
|
*
|
|
12009
12581
|
* @summary The search endpoint (beta)
|
|
@@ -12040,6 +12612,15 @@ export declare class AIApi extends BaseAPI implements AIApiInterface {
|
|
|
12040
12612
|
* @memberof AIApi
|
|
12041
12613
|
*/
|
|
12042
12614
|
updateEntityMemoryItems(requestParameters: AIApiUpdateEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
12615
|
+
/**
|
|
12616
|
+
*
|
|
12617
|
+
* @summary Put an organization Memory Item entity
|
|
12618
|
+
* @param {AIApiUpdateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
12619
|
+
* @param {*} [options] Override http request option.
|
|
12620
|
+
* @throws {RequiredError}
|
|
12621
|
+
* @memberof AIApi
|
|
12622
|
+
*/
|
|
12623
|
+
updateEntityOrgMemoryItems(requestParameters: AIApiUpdateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
12043
12624
|
}
|
|
12044
12625
|
/**
|
|
12045
12626
|
* AI Agent - behavior configuration for AI assistants
|
|
@@ -30461,6 +31042,16 @@ export declare function EntitiesApiAxiosParamCreator_CreateEntityMetrics(workspa
|
|
|
30461
31042
|
* @throws {RequiredError}
|
|
30462
31043
|
*/
|
|
30463
31044
|
export declare function EntitiesApiAxiosParamCreator_CreateEntityNotificationChannels(jsonApiNotificationChannelPostOptionalIdDocument: JsonApiNotificationChannelPostOptionalIdDocument, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
31045
|
+
/**
|
|
31046
|
+
* Organization-scoped AI memory item
|
|
31047
|
+
* @summary Post organization Memory Item entities
|
|
31048
|
+
* @param {JsonApiOrgMemoryItemInDocument} jsonApiOrgMemoryItemInDocument
|
|
31049
|
+
* @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.
|
|
31050
|
+
* @param {*} [options] Override http request option.
|
|
31051
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
31052
|
+
* @throws {RequiredError}
|
|
31053
|
+
*/
|
|
31054
|
+
export declare function EntitiesApiAxiosParamCreator_CreateEntityOrgMemoryItems(jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
30464
31055
|
/**
|
|
30465
31056
|
*
|
|
30466
31057
|
* @summary Post Organization Setting entities
|
|
@@ -30829,6 +31420,15 @@ export declare function EntitiesApiAxiosParamCreator_DeleteEntityMetrics(workspa
|
|
|
30829
31420
|
* @throws {RequiredError}
|
|
30830
31421
|
*/
|
|
30831
31422
|
export declare function EntitiesApiAxiosParamCreator_DeleteEntityNotificationChannels(id: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
31423
|
+
/**
|
|
31424
|
+
*
|
|
31425
|
+
* @summary Delete an organization Memory Item entity
|
|
31426
|
+
* @param {string} id
|
|
31427
|
+
* @param {*} [options] Override http request option.
|
|
31428
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
31429
|
+
* @throws {RequiredError}
|
|
31430
|
+
*/
|
|
31431
|
+
export declare function EntitiesApiAxiosParamCreator_DeleteEntityOrgMemoryItems(id: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
30832
31432
|
/**
|
|
30833
31433
|
*
|
|
30834
31434
|
* @summary Delete Organization Setting entity
|
|
@@ -31449,6 +32049,20 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesNotificationC
|
|
|
31449
32049
|
* @throws {RequiredError}
|
|
31450
32050
|
*/
|
|
31451
32051
|
export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesNotificationChannels(filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
32052
|
+
/**
|
|
32053
|
+
*
|
|
32054
|
+
* @summary Get all organization Memory Item entities
|
|
32055
|
+
* @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\').
|
|
32056
|
+
* @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.
|
|
32057
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
32058
|
+
* @param {number} [size] The size of the page to be returned
|
|
32059
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
32060
|
+
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
32061
|
+
* @param {*} [options] Override http request option.
|
|
32062
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
32063
|
+
* @throws {RequiredError}
|
|
32064
|
+
*/
|
|
32065
|
+
export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesOrgMemoryItems(filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
31452
32066
|
/**
|
|
31453
32067
|
*
|
|
31454
32068
|
* @summary Get Organization Setting entities
|
|
@@ -32068,6 +32682,17 @@ export declare function EntitiesApiAxiosParamCreator_GetEntityNotificationChanne
|
|
|
32068
32682
|
* @throws {RequiredError}
|
|
32069
32683
|
*/
|
|
32070
32684
|
export declare function EntitiesApiAxiosParamCreator_GetEntityNotificationChannels(id: string, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
32685
|
+
/**
|
|
32686
|
+
*
|
|
32687
|
+
* @summary Get an organization Memory Item entity
|
|
32688
|
+
* @param {string} id
|
|
32689
|
+
* @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\').
|
|
32690
|
+
* @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.
|
|
32691
|
+
* @param {*} [options] Override http request option.
|
|
32692
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
32693
|
+
* @throws {RequiredError}
|
|
32694
|
+
*/
|
|
32695
|
+
export declare function EntitiesApiAxiosParamCreator_GetEntityOrgMemoryItems(id: string, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
32071
32696
|
/**
|
|
32072
32697
|
*
|
|
32073
32698
|
* @summary Get Organization Setting entity
|
|
@@ -32572,6 +33197,18 @@ export declare function EntitiesApiAxiosParamCreator_PatchEntityMetrics(workspac
|
|
|
32572
33197
|
* @throws {RequiredError}
|
|
32573
33198
|
*/
|
|
32574
33199
|
export declare function EntitiesApiAxiosParamCreator_PatchEntityNotificationChannels(id: string, jsonApiNotificationChannelPatchDocument: JsonApiNotificationChannelPatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
33200
|
+
/**
|
|
33201
|
+
*
|
|
33202
|
+
* @summary Patch an organization Memory Item entity
|
|
33203
|
+
* @param {string} id
|
|
33204
|
+
* @param {JsonApiOrgMemoryItemPatchDocument} jsonApiOrgMemoryItemPatchDocument
|
|
33205
|
+
* @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\').
|
|
33206
|
+
* @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.
|
|
33207
|
+
* @param {*} [options] Override http request option.
|
|
33208
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
33209
|
+
* @throws {RequiredError}
|
|
33210
|
+
*/
|
|
33211
|
+
export declare function EntitiesApiAxiosParamCreator_PatchEntityOrgMemoryItems(id: string, jsonApiOrgMemoryItemPatchDocument: JsonApiOrgMemoryItemPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
32575
33212
|
/**
|
|
32576
33213
|
*
|
|
32577
33214
|
* @summary Patch Organization Setting entity
|
|
@@ -33292,6 +33929,18 @@ export declare function EntitiesApiAxiosParamCreator_UpdateEntityMetrics(workspa
|
|
|
33292
33929
|
* @throws {RequiredError}
|
|
33293
33930
|
*/
|
|
33294
33931
|
export declare function EntitiesApiAxiosParamCreator_UpdateEntityNotificationChannels(id: string, jsonApiNotificationChannelInDocument: JsonApiNotificationChannelInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
33932
|
+
/**
|
|
33933
|
+
*
|
|
33934
|
+
* @summary Put an organization Memory Item entity
|
|
33935
|
+
* @param {string} id
|
|
33936
|
+
* @param {JsonApiOrgMemoryItemInDocument} jsonApiOrgMemoryItemInDocument
|
|
33937
|
+
* @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\').
|
|
33938
|
+
* @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.
|
|
33939
|
+
* @param {*} [options] Override http request option.
|
|
33940
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
33941
|
+
* @throws {RequiredError}
|
|
33942
|
+
*/
|
|
33943
|
+
export declare function EntitiesApiAxiosParamCreator_UpdateEntityOrgMemoryItems(id: string, jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
33295
33944
|
/**
|
|
33296
33945
|
*
|
|
33297
33946
|
* @summary Put Organization Setting entity
|
|
@@ -33725,6 +34374,17 @@ export declare function EntitiesApi_CreateEntityMetrics(axios: AxiosInstance, ba
|
|
|
33725
34374
|
* @throws {RequiredError}
|
|
33726
34375
|
*/
|
|
33727
34376
|
export declare function EntitiesApi_CreateEntityNotificationChannels(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiCreateEntityNotificationChannelsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiNotificationChannelOutDocument>;
|
|
34377
|
+
/**
|
|
34378
|
+
* Organization-scoped AI memory item
|
|
34379
|
+
* @summary Post organization Memory Item entities
|
|
34380
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
34381
|
+
* @param {string} basePath Base path.
|
|
34382
|
+
* @param {EntitiesApiCreateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
34383
|
+
* @param {*} [options] Override http request option.
|
|
34384
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
34385
|
+
* @throws {RequiredError}
|
|
34386
|
+
*/
|
|
34387
|
+
export declare function EntitiesApi_CreateEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiCreateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
33728
34388
|
/**
|
|
33729
34389
|
*
|
|
33730
34390
|
* @summary Post Organization Setting entities
|
|
@@ -34132,6 +34792,17 @@ export declare function EntitiesApi_DeleteEntityMetrics(axios: AxiosInstance, ba
|
|
|
34132
34792
|
* @throws {RequiredError}
|
|
34133
34793
|
*/
|
|
34134
34794
|
export declare function EntitiesApi_DeleteEntityNotificationChannels(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiDeleteEntityNotificationChannelsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
34795
|
+
/**
|
|
34796
|
+
*
|
|
34797
|
+
* @summary Delete an organization Memory Item entity
|
|
34798
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
34799
|
+
* @param {string} basePath Base path.
|
|
34800
|
+
* @param {EntitiesApiDeleteEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
34801
|
+
* @param {*} [options] Override http request option.
|
|
34802
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
34803
|
+
* @throws {RequiredError}
|
|
34804
|
+
*/
|
|
34805
|
+
export declare function EntitiesApi_DeleteEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiDeleteEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
34135
34806
|
/**
|
|
34136
34807
|
*
|
|
34137
34808
|
* @summary Delete Organization Setting entity
|
|
@@ -34637,6 +35308,17 @@ export declare function EntitiesApi_GetAllEntitiesNotificationChannelIdentifiers
|
|
|
34637
35308
|
* @throws {RequiredError}
|
|
34638
35309
|
*/
|
|
34639
35310
|
export declare function EntitiesApi_GetAllEntitiesNotificationChannels(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetAllEntitiesNotificationChannelsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiNotificationChannelOutList>;
|
|
35311
|
+
/**
|
|
35312
|
+
*
|
|
35313
|
+
* @summary Get all organization Memory Item entities
|
|
35314
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
35315
|
+
* @param {string} basePath Base path.
|
|
35316
|
+
* @param {EntitiesApiGetAllEntitiesOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
35317
|
+
* @param {*} [options] Override http request option.
|
|
35318
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
35319
|
+
* @throws {RequiredError}
|
|
35320
|
+
*/
|
|
35321
|
+
export declare function EntitiesApi_GetAllEntitiesOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetAllEntitiesOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutList>;
|
|
34640
35322
|
/**
|
|
34641
35323
|
*
|
|
34642
35324
|
* @summary Get Organization Setting entities
|
|
@@ -35176,6 +35858,17 @@ export declare function EntitiesApi_GetEntityNotificationChannelIdentifiers(axio
|
|
|
35176
35858
|
* @throws {RequiredError}
|
|
35177
35859
|
*/
|
|
35178
35860
|
export declare function EntitiesApi_GetEntityNotificationChannels(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetEntityNotificationChannelsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiNotificationChannelOutDocument>;
|
|
35861
|
+
/**
|
|
35862
|
+
*
|
|
35863
|
+
* @summary Get an organization Memory Item entity
|
|
35864
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
35865
|
+
* @param {string} basePath Base path.
|
|
35866
|
+
* @param {EntitiesApiGetEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
35867
|
+
* @param {*} [options] Override http request option.
|
|
35868
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
35869
|
+
* @throws {RequiredError}
|
|
35870
|
+
*/
|
|
35871
|
+
export declare function EntitiesApi_GetEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
35179
35872
|
/**
|
|
35180
35873
|
*
|
|
35181
35874
|
* @summary Get Organization Setting entity
|
|
@@ -35638,6 +36331,17 @@ export declare function EntitiesApi_PatchEntityMetrics(axios: AxiosInstance, bas
|
|
|
35638
36331
|
* @throws {RequiredError}
|
|
35639
36332
|
*/
|
|
35640
36333
|
export declare function EntitiesApi_PatchEntityNotificationChannels(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiPatchEntityNotificationChannelsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiNotificationChannelOutDocument>;
|
|
36334
|
+
/**
|
|
36335
|
+
*
|
|
36336
|
+
* @summary Patch an organization Memory Item entity
|
|
36337
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
36338
|
+
* @param {string} basePath Base path.
|
|
36339
|
+
* @param {EntitiesApiPatchEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
36340
|
+
* @param {*} [options] Override http request option.
|
|
36341
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
36342
|
+
* @throws {RequiredError}
|
|
36343
|
+
*/
|
|
36344
|
+
export declare function EntitiesApi_PatchEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiPatchEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
35641
36345
|
/**
|
|
35642
36346
|
*
|
|
35643
36347
|
* @summary Patch Organization Setting entity
|
|
@@ -36298,6 +37002,17 @@ export declare function EntitiesApi_UpdateEntityMetrics(axios: AxiosInstance, ba
|
|
|
36298
37002
|
* @throws {RequiredError}
|
|
36299
37003
|
*/
|
|
36300
37004
|
export declare function EntitiesApi_UpdateEntityNotificationChannels(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiUpdateEntityNotificationChannelsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiNotificationChannelOutDocument>;
|
|
37005
|
+
/**
|
|
37006
|
+
*
|
|
37007
|
+
* @summary Put an organization Memory Item entity
|
|
37008
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
37009
|
+
* @param {string} basePath Base path.
|
|
37010
|
+
* @param {EntitiesApiUpdateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
37011
|
+
* @param {*} [options] Override http request option.
|
|
37012
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
37013
|
+
* @throws {RequiredError}
|
|
37014
|
+
*/
|
|
37015
|
+
export declare function EntitiesApi_UpdateEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiUpdateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
36301
37016
|
/**
|
|
36302
37017
|
*
|
|
36303
37018
|
* @summary Put Organization Setting entity
|
|
@@ -36672,6 +37387,15 @@ export interface EntitiesApiInterface {
|
|
|
36672
37387
|
* @memberof EntitiesApiInterface
|
|
36673
37388
|
*/
|
|
36674
37389
|
createEntityNotificationChannels(requestParameters: EntitiesApiCreateEntityNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelOutDocument>;
|
|
37390
|
+
/**
|
|
37391
|
+
* Organization-scoped AI memory item
|
|
37392
|
+
* @summary Post organization Memory Item entities
|
|
37393
|
+
* @param {EntitiesApiCreateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
37394
|
+
* @param {*} [options] Override http request option.
|
|
37395
|
+
* @throws {RequiredError}
|
|
37396
|
+
* @memberof EntitiesApiInterface
|
|
37397
|
+
*/
|
|
37398
|
+
createEntityOrgMemoryItems(requestParameters: EntitiesApiCreateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
36675
37399
|
/**
|
|
36676
37400
|
*
|
|
36677
37401
|
* @summary Post Organization Setting entities
|
|
@@ -37006,6 +37730,15 @@ export interface EntitiesApiInterface {
|
|
|
37006
37730
|
* @memberof EntitiesApiInterface
|
|
37007
37731
|
*/
|
|
37008
37732
|
deleteEntityNotificationChannels(requestParameters: EntitiesApiDeleteEntityNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
37733
|
+
/**
|
|
37734
|
+
*
|
|
37735
|
+
* @summary Delete an organization Memory Item entity
|
|
37736
|
+
* @param {EntitiesApiDeleteEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
37737
|
+
* @param {*} [options] Override http request option.
|
|
37738
|
+
* @throws {RequiredError}
|
|
37739
|
+
* @memberof EntitiesApiInterface
|
|
37740
|
+
*/
|
|
37741
|
+
deleteEntityOrgMemoryItems(requestParameters: EntitiesApiDeleteEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
37009
37742
|
/**
|
|
37010
37743
|
*
|
|
37011
37744
|
* @summary Delete Organization Setting entity
|
|
@@ -37420,6 +38153,15 @@ export interface EntitiesApiInterface {
|
|
|
37420
38153
|
* @memberof EntitiesApiInterface
|
|
37421
38154
|
*/
|
|
37422
38155
|
getAllEntitiesNotificationChannels(requestParameters: EntitiesApiGetAllEntitiesNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelOutList>;
|
|
38156
|
+
/**
|
|
38157
|
+
*
|
|
38158
|
+
* @summary Get all organization Memory Item entities
|
|
38159
|
+
* @param {EntitiesApiGetAllEntitiesOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
38160
|
+
* @param {*} [options] Override http request option.
|
|
38161
|
+
* @throws {RequiredError}
|
|
38162
|
+
* @memberof EntitiesApiInterface
|
|
38163
|
+
*/
|
|
38164
|
+
getAllEntitiesOrgMemoryItems(requestParameters: EntitiesApiGetAllEntitiesOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutList>;
|
|
37423
38165
|
/**
|
|
37424
38166
|
*
|
|
37425
38167
|
* @summary Get Organization Setting entities
|
|
@@ -37862,6 +38604,15 @@ export interface EntitiesApiInterface {
|
|
|
37862
38604
|
* @memberof EntitiesApiInterface
|
|
37863
38605
|
*/
|
|
37864
38606
|
getEntityNotificationChannels(requestParameters: EntitiesApiGetEntityNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelOutDocument>;
|
|
38607
|
+
/**
|
|
38608
|
+
*
|
|
38609
|
+
* @summary Get an organization Memory Item entity
|
|
38610
|
+
* @param {EntitiesApiGetEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
38611
|
+
* @param {*} [options] Override http request option.
|
|
38612
|
+
* @throws {RequiredError}
|
|
38613
|
+
* @memberof EntitiesApiInterface
|
|
38614
|
+
*/
|
|
38615
|
+
getEntityOrgMemoryItems(requestParameters: EntitiesApiGetEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
37865
38616
|
/**
|
|
37866
38617
|
*
|
|
37867
38618
|
* @summary Get Organization Setting entity
|
|
@@ -38241,6 +38992,15 @@ export interface EntitiesApiInterface {
|
|
|
38241
38992
|
* @memberof EntitiesApiInterface
|
|
38242
38993
|
*/
|
|
38243
38994
|
patchEntityNotificationChannels(requestParameters: EntitiesApiPatchEntityNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelOutDocument>;
|
|
38995
|
+
/**
|
|
38996
|
+
*
|
|
38997
|
+
* @summary Patch an organization Memory Item entity
|
|
38998
|
+
* @param {EntitiesApiPatchEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
38999
|
+
* @param {*} [options] Override http request option.
|
|
39000
|
+
* @throws {RequiredError}
|
|
39001
|
+
* @memberof EntitiesApiInterface
|
|
39002
|
+
*/
|
|
39003
|
+
patchEntityOrgMemoryItems(requestParameters: EntitiesApiPatchEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
38244
39004
|
/**
|
|
38245
39005
|
*
|
|
38246
39006
|
* @summary Patch Organization Setting entity
|
|
@@ -38782,6 +39542,15 @@ export interface EntitiesApiInterface {
|
|
|
38782
39542
|
* @memberof EntitiesApiInterface
|
|
38783
39543
|
*/
|
|
38784
39544
|
updateEntityNotificationChannels(requestParameters: EntitiesApiUpdateEntityNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelOutDocument>;
|
|
39545
|
+
/**
|
|
39546
|
+
*
|
|
39547
|
+
* @summary Put an organization Memory Item entity
|
|
39548
|
+
* @param {EntitiesApiUpdateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
39549
|
+
* @param {*} [options] Override http request option.
|
|
39550
|
+
* @throws {RequiredError}
|
|
39551
|
+
* @memberof EntitiesApiInterface
|
|
39552
|
+
*/
|
|
39553
|
+
updateEntityOrgMemoryItems(requestParameters: EntitiesApiUpdateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
38785
39554
|
/**
|
|
38786
39555
|
*
|
|
38787
39556
|
* @summary Put Organization Setting entity
|
|
@@ -39428,6 +40197,25 @@ export interface EntitiesApiCreateEntityNotificationChannelsRequest {
|
|
|
39428
40197
|
*/
|
|
39429
40198
|
readonly jsonApiNotificationChannelPostOptionalIdDocument: JsonApiNotificationChannelPostOptionalIdDocument;
|
|
39430
40199
|
}
|
|
40200
|
+
/**
|
|
40201
|
+
* Request parameters for createEntityOrgMemoryItems operation in EntitiesApi.
|
|
40202
|
+
* @export
|
|
40203
|
+
* @interface EntitiesApiCreateEntityOrgMemoryItemsRequest
|
|
40204
|
+
*/
|
|
40205
|
+
export interface EntitiesApiCreateEntityOrgMemoryItemsRequest {
|
|
40206
|
+
/**
|
|
40207
|
+
*
|
|
40208
|
+
* @type {JsonApiOrgMemoryItemInDocument}
|
|
40209
|
+
* @memberof EntitiesApiCreateEntityOrgMemoryItems
|
|
40210
|
+
*/
|
|
40211
|
+
readonly jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument;
|
|
40212
|
+
/**
|
|
40213
|
+
* 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.
|
|
40214
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
40215
|
+
* @memberof EntitiesApiCreateEntityOrgMemoryItems
|
|
40216
|
+
*/
|
|
40217
|
+
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
40218
|
+
}
|
|
39431
40219
|
/**
|
|
39432
40220
|
* Request parameters for createEntityOrganizationSettings operation in EntitiesApi.
|
|
39433
40221
|
* @export
|
|
@@ -40119,6 +40907,19 @@ export interface EntitiesApiDeleteEntityNotificationChannelsRequest {
|
|
|
40119
40907
|
*/
|
|
40120
40908
|
readonly id: string;
|
|
40121
40909
|
}
|
|
40910
|
+
/**
|
|
40911
|
+
* Request parameters for deleteEntityOrgMemoryItems operation in EntitiesApi.
|
|
40912
|
+
* @export
|
|
40913
|
+
* @interface EntitiesApiDeleteEntityOrgMemoryItemsRequest
|
|
40914
|
+
*/
|
|
40915
|
+
export interface EntitiesApiDeleteEntityOrgMemoryItemsRequest {
|
|
40916
|
+
/**
|
|
40917
|
+
*
|
|
40918
|
+
* @type {string}
|
|
40919
|
+
* @memberof EntitiesApiDeleteEntityOrgMemoryItems
|
|
40920
|
+
*/
|
|
40921
|
+
readonly id: string;
|
|
40922
|
+
}
|
|
40122
40923
|
/**
|
|
40123
40924
|
* Request parameters for deleteEntityOrganizationSettings operation in EntitiesApi.
|
|
40124
40925
|
* @export
|
|
@@ -41946,6 +42747,49 @@ export interface EntitiesApiGetAllEntitiesNotificationChannelsRequest {
|
|
|
41946
42747
|
*/
|
|
41947
42748
|
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
41948
42749
|
}
|
|
42750
|
+
/**
|
|
42751
|
+
* Request parameters for getAllEntitiesOrgMemoryItems operation in EntitiesApi.
|
|
42752
|
+
* @export
|
|
42753
|
+
* @interface EntitiesApiGetAllEntitiesOrgMemoryItemsRequest
|
|
42754
|
+
*/
|
|
42755
|
+
export interface EntitiesApiGetAllEntitiesOrgMemoryItemsRequest {
|
|
42756
|
+
/**
|
|
42757
|
+
* 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\').
|
|
42758
|
+
* @type {string}
|
|
42759
|
+
* @memberof EntitiesApiGetAllEntitiesOrgMemoryItems
|
|
42760
|
+
*/
|
|
42761
|
+
readonly filter?: string;
|
|
42762
|
+
/**
|
|
42763
|
+
* 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.
|
|
42764
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
42765
|
+
* @memberof EntitiesApiGetAllEntitiesOrgMemoryItems
|
|
42766
|
+
*/
|
|
42767
|
+
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
42768
|
+
/**
|
|
42769
|
+
* Zero-based page index (0..N)
|
|
42770
|
+
* @type {number}
|
|
42771
|
+
* @memberof EntitiesApiGetAllEntitiesOrgMemoryItems
|
|
42772
|
+
*/
|
|
42773
|
+
readonly page?: number;
|
|
42774
|
+
/**
|
|
42775
|
+
* The size of the page to be returned
|
|
42776
|
+
* @type {number}
|
|
42777
|
+
* @memberof EntitiesApiGetAllEntitiesOrgMemoryItems
|
|
42778
|
+
*/
|
|
42779
|
+
readonly size?: number;
|
|
42780
|
+
/**
|
|
42781
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
42782
|
+
* @type {Array<string>}
|
|
42783
|
+
* @memberof EntitiesApiGetAllEntitiesOrgMemoryItems
|
|
42784
|
+
*/
|
|
42785
|
+
readonly sort?: Array<string>;
|
|
42786
|
+
/**
|
|
42787
|
+
* Include Meta objects.
|
|
42788
|
+
* @type {Array<'page' | 'all' | 'ALL'>}
|
|
42789
|
+
* @memberof EntitiesApiGetAllEntitiesOrgMemoryItems
|
|
42790
|
+
*/
|
|
42791
|
+
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
42792
|
+
}
|
|
41949
42793
|
/**
|
|
41950
42794
|
* Request parameters for getAllEntitiesOrganizationSettings operation in EntitiesApi.
|
|
41951
42795
|
* @export
|
|
@@ -43637,6 +44481,31 @@ export interface EntitiesApiGetEntityNotificationChannelsRequest {
|
|
|
43637
44481
|
*/
|
|
43638
44482
|
readonly filter?: string;
|
|
43639
44483
|
}
|
|
44484
|
+
/**
|
|
44485
|
+
* Request parameters for getEntityOrgMemoryItems operation in EntitiesApi.
|
|
44486
|
+
* @export
|
|
44487
|
+
* @interface EntitiesApiGetEntityOrgMemoryItemsRequest
|
|
44488
|
+
*/
|
|
44489
|
+
export interface EntitiesApiGetEntityOrgMemoryItemsRequest {
|
|
44490
|
+
/**
|
|
44491
|
+
*
|
|
44492
|
+
* @type {string}
|
|
44493
|
+
* @memberof EntitiesApiGetEntityOrgMemoryItems
|
|
44494
|
+
*/
|
|
44495
|
+
readonly id: string;
|
|
44496
|
+
/**
|
|
44497
|
+
* 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\').
|
|
44498
|
+
* @type {string}
|
|
44499
|
+
* @memberof EntitiesApiGetEntityOrgMemoryItems
|
|
44500
|
+
*/
|
|
44501
|
+
readonly filter?: string;
|
|
44502
|
+
/**
|
|
44503
|
+
* 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.
|
|
44504
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
44505
|
+
* @memberof EntitiesApiGetEntityOrgMemoryItems
|
|
44506
|
+
*/
|
|
44507
|
+
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
44508
|
+
}
|
|
43640
44509
|
/**
|
|
43641
44510
|
* Request parameters for getEntityOrganizationSettings operation in EntitiesApi.
|
|
43642
44511
|
* @export
|
|
@@ -44939,6 +45808,37 @@ export interface EntitiesApiPatchEntityNotificationChannelsRequest {
|
|
|
44939
45808
|
*/
|
|
44940
45809
|
readonly filter?: string;
|
|
44941
45810
|
}
|
|
45811
|
+
/**
|
|
45812
|
+
* Request parameters for patchEntityOrgMemoryItems operation in EntitiesApi.
|
|
45813
|
+
* @export
|
|
45814
|
+
* @interface EntitiesApiPatchEntityOrgMemoryItemsRequest
|
|
45815
|
+
*/
|
|
45816
|
+
export interface EntitiesApiPatchEntityOrgMemoryItemsRequest {
|
|
45817
|
+
/**
|
|
45818
|
+
*
|
|
45819
|
+
* @type {string}
|
|
45820
|
+
* @memberof EntitiesApiPatchEntityOrgMemoryItems
|
|
45821
|
+
*/
|
|
45822
|
+
readonly id: string;
|
|
45823
|
+
/**
|
|
45824
|
+
*
|
|
45825
|
+
* @type {JsonApiOrgMemoryItemPatchDocument}
|
|
45826
|
+
* @memberof EntitiesApiPatchEntityOrgMemoryItems
|
|
45827
|
+
*/
|
|
45828
|
+
readonly jsonApiOrgMemoryItemPatchDocument: JsonApiOrgMemoryItemPatchDocument;
|
|
45829
|
+
/**
|
|
45830
|
+
* 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\').
|
|
45831
|
+
* @type {string}
|
|
45832
|
+
* @memberof EntitiesApiPatchEntityOrgMemoryItems
|
|
45833
|
+
*/
|
|
45834
|
+
readonly filter?: string;
|
|
45835
|
+
/**
|
|
45836
|
+
* 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.
|
|
45837
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
45838
|
+
* @memberof EntitiesApiPatchEntityOrgMemoryItems
|
|
45839
|
+
*/
|
|
45840
|
+
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
45841
|
+
}
|
|
44942
45842
|
/**
|
|
44943
45843
|
* Request parameters for patchEntityOrganizationSettings operation in EntitiesApi.
|
|
44944
45844
|
* @export
|
|
@@ -46799,6 +47699,37 @@ export interface EntitiesApiUpdateEntityNotificationChannelsRequest {
|
|
|
46799
47699
|
*/
|
|
46800
47700
|
readonly filter?: string;
|
|
46801
47701
|
}
|
|
47702
|
+
/**
|
|
47703
|
+
* Request parameters for updateEntityOrgMemoryItems operation in EntitiesApi.
|
|
47704
|
+
* @export
|
|
47705
|
+
* @interface EntitiesApiUpdateEntityOrgMemoryItemsRequest
|
|
47706
|
+
*/
|
|
47707
|
+
export interface EntitiesApiUpdateEntityOrgMemoryItemsRequest {
|
|
47708
|
+
/**
|
|
47709
|
+
*
|
|
47710
|
+
* @type {string}
|
|
47711
|
+
* @memberof EntitiesApiUpdateEntityOrgMemoryItems
|
|
47712
|
+
*/
|
|
47713
|
+
readonly id: string;
|
|
47714
|
+
/**
|
|
47715
|
+
*
|
|
47716
|
+
* @type {JsonApiOrgMemoryItemInDocument}
|
|
47717
|
+
* @memberof EntitiesApiUpdateEntityOrgMemoryItems
|
|
47718
|
+
*/
|
|
47719
|
+
readonly jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument;
|
|
47720
|
+
/**
|
|
47721
|
+
* 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\').
|
|
47722
|
+
* @type {string}
|
|
47723
|
+
* @memberof EntitiesApiUpdateEntityOrgMemoryItems
|
|
47724
|
+
*/
|
|
47725
|
+
readonly filter?: string;
|
|
47726
|
+
/**
|
|
47727
|
+
* 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.
|
|
47728
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
47729
|
+
* @memberof EntitiesApiUpdateEntityOrgMemoryItems
|
|
47730
|
+
*/
|
|
47731
|
+
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
47732
|
+
}
|
|
46802
47733
|
/**
|
|
46803
47734
|
* Request parameters for updateEntityOrganizationSettings operation in EntitiesApi.
|
|
46804
47735
|
* @export
|
|
@@ -47452,6 +48383,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
47452
48383
|
* @memberof EntitiesApi
|
|
47453
48384
|
*/
|
|
47454
48385
|
createEntityNotificationChannels(requestParameters: EntitiesApiCreateEntityNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelOutDocument>;
|
|
48386
|
+
/**
|
|
48387
|
+
* Organization-scoped AI memory item
|
|
48388
|
+
* @summary Post organization Memory Item entities
|
|
48389
|
+
* @param {EntitiesApiCreateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
48390
|
+
* @param {*} [options] Override http request option.
|
|
48391
|
+
* @throws {RequiredError}
|
|
48392
|
+
* @memberof EntitiesApi
|
|
48393
|
+
*/
|
|
48394
|
+
createEntityOrgMemoryItems(requestParameters: EntitiesApiCreateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
47455
48395
|
/**
|
|
47456
48396
|
*
|
|
47457
48397
|
* @summary Post Organization Setting entities
|
|
@@ -47786,6 +48726,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
47786
48726
|
* @memberof EntitiesApi
|
|
47787
48727
|
*/
|
|
47788
48728
|
deleteEntityNotificationChannels(requestParameters: EntitiesApiDeleteEntityNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
48729
|
+
/**
|
|
48730
|
+
*
|
|
48731
|
+
* @summary Delete an organization Memory Item entity
|
|
48732
|
+
* @param {EntitiesApiDeleteEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
48733
|
+
* @param {*} [options] Override http request option.
|
|
48734
|
+
* @throws {RequiredError}
|
|
48735
|
+
* @memberof EntitiesApi
|
|
48736
|
+
*/
|
|
48737
|
+
deleteEntityOrgMemoryItems(requestParameters: EntitiesApiDeleteEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
47789
48738
|
/**
|
|
47790
48739
|
*
|
|
47791
48740
|
* @summary Delete Organization Setting entity
|
|
@@ -48200,6 +49149,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
48200
49149
|
* @memberof EntitiesApi
|
|
48201
49150
|
*/
|
|
48202
49151
|
getAllEntitiesNotificationChannels(requestParameters?: EntitiesApiGetAllEntitiesNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelOutList>;
|
|
49152
|
+
/**
|
|
49153
|
+
*
|
|
49154
|
+
* @summary Get all organization Memory Item entities
|
|
49155
|
+
* @param {EntitiesApiGetAllEntitiesOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
49156
|
+
* @param {*} [options] Override http request option.
|
|
49157
|
+
* @throws {RequiredError}
|
|
49158
|
+
* @memberof EntitiesApi
|
|
49159
|
+
*/
|
|
49160
|
+
getAllEntitiesOrgMemoryItems(requestParameters?: EntitiesApiGetAllEntitiesOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutList>;
|
|
48203
49161
|
/**
|
|
48204
49162
|
*
|
|
48205
49163
|
* @summary Get Organization Setting entities
|
|
@@ -48642,6 +49600,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
48642
49600
|
* @memberof EntitiesApi
|
|
48643
49601
|
*/
|
|
48644
49602
|
getEntityNotificationChannels(requestParameters: EntitiesApiGetEntityNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelOutDocument>;
|
|
49603
|
+
/**
|
|
49604
|
+
*
|
|
49605
|
+
* @summary Get an organization Memory Item entity
|
|
49606
|
+
* @param {EntitiesApiGetEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
49607
|
+
* @param {*} [options] Override http request option.
|
|
49608
|
+
* @throws {RequiredError}
|
|
49609
|
+
* @memberof EntitiesApi
|
|
49610
|
+
*/
|
|
49611
|
+
getEntityOrgMemoryItems(requestParameters: EntitiesApiGetEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
48645
49612
|
/**
|
|
48646
49613
|
*
|
|
48647
49614
|
* @summary Get Organization Setting entity
|
|
@@ -49021,6 +49988,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
49021
49988
|
* @memberof EntitiesApi
|
|
49022
49989
|
*/
|
|
49023
49990
|
patchEntityNotificationChannels(requestParameters: EntitiesApiPatchEntityNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelOutDocument>;
|
|
49991
|
+
/**
|
|
49992
|
+
*
|
|
49993
|
+
* @summary Patch an organization Memory Item entity
|
|
49994
|
+
* @param {EntitiesApiPatchEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
49995
|
+
* @param {*} [options] Override http request option.
|
|
49996
|
+
* @throws {RequiredError}
|
|
49997
|
+
* @memberof EntitiesApi
|
|
49998
|
+
*/
|
|
49999
|
+
patchEntityOrgMemoryItems(requestParameters: EntitiesApiPatchEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
49024
50000
|
/**
|
|
49025
50001
|
*
|
|
49026
50002
|
* @summary Patch Organization Setting entity
|
|
@@ -49562,6 +50538,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
49562
50538
|
* @memberof EntitiesApi
|
|
49563
50539
|
*/
|
|
49564
50540
|
updateEntityNotificationChannels(requestParameters: EntitiesApiUpdateEntityNotificationChannelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiNotificationChannelOutDocument>;
|
|
50541
|
+
/**
|
|
50542
|
+
*
|
|
50543
|
+
* @summary Put an organization Memory Item entity
|
|
50544
|
+
* @param {EntitiesApiUpdateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
50545
|
+
* @param {*} [options] Override http request option.
|
|
50546
|
+
* @throws {RequiredError}
|
|
50547
|
+
* @memberof EntitiesApi
|
|
50548
|
+
*/
|
|
50549
|
+
updateEntityOrgMemoryItems(requestParameters: EntitiesApiUpdateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
49565
50550
|
/**
|
|
49566
50551
|
*
|
|
49567
50552
|
* @summary Put Organization Setting entity
|
|
@@ -66335,291 +67320,710 @@ export declare class OptionsApi extends BaseAPI implements OptionsApiInterface {
|
|
|
66335
67320
|
getAllOptions(options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
66336
67321
|
}
|
|
66337
67322
|
/**
|
|
66338
|
-
*
|
|
66339
|
-
* @summary
|
|
67323
|
+
* Organization-scoped AI memory item
|
|
67324
|
+
* @summary Post organization Memory Item entities
|
|
67325
|
+
* @param {JsonApiOrgMemoryItemInDocument} jsonApiOrgMemoryItemInDocument
|
|
67326
|
+
* @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.
|
|
66340
67327
|
* @param {*} [options] Override http request option.
|
|
66341
67328
|
* @param {Configuration} [configuration] Optional configuration.
|
|
66342
67329
|
* @throws {RequiredError}
|
|
66343
67330
|
*/
|
|
66344
|
-
export declare function
|
|
67331
|
+
export declare function OrgMemoryItemControllerApiAxiosParamCreator_CreateEntityOrgMemoryItems(jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
66345
67332
|
/**
|
|
66346
|
-
*
|
|
66347
|
-
* @summary
|
|
67333
|
+
*
|
|
67334
|
+
* @summary Delete an organization Memory Item entity
|
|
67335
|
+
* @param {string} id
|
|
66348
67336
|
* @param {*} [options] Override http request option.
|
|
66349
67337
|
* @param {Configuration} [configuration] Optional configuration.
|
|
66350
67338
|
* @throws {RequiredError}
|
|
66351
67339
|
*/
|
|
66352
|
-
export declare function
|
|
67340
|
+
export declare function OrgMemoryItemControllerApiAxiosParamCreator_DeleteEntityOrgMemoryItems(id: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
66353
67341
|
/**
|
|
66354
|
-
*
|
|
66355
|
-
* @summary Get organization
|
|
66356
|
-
* @param {
|
|
67342
|
+
*
|
|
67343
|
+
* @summary Get all organization Memory Item entities
|
|
67344
|
+
* @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\').
|
|
67345
|
+
* @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.
|
|
67346
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
67347
|
+
* @param {number} [size] The size of the page to be returned
|
|
67348
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
67349
|
+
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
66357
67350
|
* @param {*} [options] Override http request option.
|
|
66358
67351
|
* @param {Configuration} [configuration] Optional configuration.
|
|
66359
67352
|
* @throws {RequiredError}
|
|
66360
67353
|
*/
|
|
66361
|
-
export declare function
|
|
67354
|
+
export declare function OrgMemoryItemControllerApiAxiosParamCreator_GetAllEntitiesOrgMemoryItems(filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
66362
67355
|
/**
|
|
66363
|
-
*
|
|
66364
|
-
* @summary
|
|
66365
|
-
* @param {
|
|
67356
|
+
*
|
|
67357
|
+
* @summary Get an organization Memory Item entity
|
|
67358
|
+
* @param {string} id
|
|
67359
|
+
* @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\').
|
|
67360
|
+
* @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.
|
|
66366
67361
|
* @param {*} [options] Override http request option.
|
|
66367
67362
|
* @param {Configuration} [configuration] Optional configuration.
|
|
66368
67363
|
* @throws {RequiredError}
|
|
66369
67364
|
*/
|
|
66370
|
-
export declare function
|
|
67365
|
+
export declare function OrgMemoryItemControllerApiAxiosParamCreator_GetEntityOrgMemoryItems(id: string, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
66371
67366
|
/**
|
|
66372
|
-
*
|
|
66373
|
-
* @summary
|
|
66374
|
-
* @param {
|
|
67367
|
+
*
|
|
67368
|
+
* @summary Patch an organization Memory Item entity
|
|
67369
|
+
* @param {string} id
|
|
67370
|
+
* @param {JsonApiOrgMemoryItemPatchDocument} jsonApiOrgMemoryItemPatchDocument
|
|
67371
|
+
* @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\').
|
|
67372
|
+
* @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.
|
|
66375
67373
|
* @param {*} [options] Override http request option.
|
|
66376
67374
|
* @param {Configuration} [configuration] Optional configuration.
|
|
66377
67375
|
* @throws {RequiredError}
|
|
66378
67376
|
*/
|
|
66379
|
-
export declare function
|
|
67377
|
+
export declare function OrgMemoryItemControllerApiAxiosParamCreator_PatchEntityOrgMemoryItems(id: string, jsonApiOrgMemoryItemPatchDocument: JsonApiOrgMemoryItemPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
66380
67378
|
/**
|
|
66381
|
-
*
|
|
66382
|
-
* @summary
|
|
66383
|
-
* @param {
|
|
67379
|
+
*
|
|
67380
|
+
* @summary Put an organization Memory Item entity
|
|
67381
|
+
* @param {string} id
|
|
67382
|
+
* @param {JsonApiOrgMemoryItemInDocument} jsonApiOrgMemoryItemInDocument
|
|
67383
|
+
* @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\').
|
|
67384
|
+
* @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.
|
|
66384
67385
|
* @param {*} [options] Override http request option.
|
|
66385
67386
|
* @param {Configuration} [configuration] Optional configuration.
|
|
66386
67387
|
* @throws {RequiredError}
|
|
66387
67388
|
*/
|
|
66388
|
-
export declare function
|
|
67389
|
+
export declare function OrgMemoryItemControllerApiAxiosParamCreator_UpdateEntityOrgMemoryItems(id: string, jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
66389
67390
|
/**
|
|
66390
|
-
*
|
|
66391
|
-
* @summary
|
|
67391
|
+
* Organization-scoped AI memory item
|
|
67392
|
+
* @summary Post organization Memory Item entities
|
|
66392
67393
|
* @param {AxiosInstance} axios Axios instance.
|
|
66393
67394
|
* @param {string} basePath Base path.
|
|
67395
|
+
* @param {OrgMemoryItemControllerApiCreateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
66394
67396
|
* @param {*} [options] Override http request option.
|
|
66395
67397
|
* @param {Configuration} [configuration] Optional configuration.
|
|
66396
67398
|
* @throws {RequiredError}
|
|
66397
67399
|
*/
|
|
66398
|
-
export declare function
|
|
67400
|
+
export declare function OrgMemoryItemControllerApi_CreateEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: OrgMemoryItemControllerApiCreateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
66399
67401
|
/**
|
|
66400
|
-
*
|
|
66401
|
-
* @summary
|
|
67402
|
+
*
|
|
67403
|
+
* @summary Delete an organization Memory Item entity
|
|
66402
67404
|
* @param {AxiosInstance} axios Axios instance.
|
|
66403
67405
|
* @param {string} basePath Base path.
|
|
67406
|
+
* @param {OrgMemoryItemControllerApiDeleteEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
66404
67407
|
* @param {*} [options] Override http request option.
|
|
66405
67408
|
* @param {Configuration} [configuration] Optional configuration.
|
|
66406
67409
|
* @throws {RequiredError}
|
|
66407
67410
|
*/
|
|
66408
|
-
export declare function
|
|
67411
|
+
export declare function OrgMemoryItemControllerApi_DeleteEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: OrgMemoryItemControllerApiDeleteEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
66409
67412
|
/**
|
|
66410
|
-
*
|
|
66411
|
-
* @summary Get organization
|
|
67413
|
+
*
|
|
67414
|
+
* @summary Get all organization Memory Item entities
|
|
66412
67415
|
* @param {AxiosInstance} axios Axios instance.
|
|
66413
67416
|
* @param {string} basePath Base path.
|
|
66414
|
-
* @param {
|
|
67417
|
+
* @param {OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
66415
67418
|
* @param {*} [options] Override http request option.
|
|
66416
67419
|
* @param {Configuration} [configuration] Optional configuration.
|
|
66417
67420
|
* @throws {RequiredError}
|
|
66418
67421
|
*/
|
|
66419
|
-
export declare function
|
|
67422
|
+
export declare function OrgMemoryItemControllerApi_GetAllEntitiesOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutList>;
|
|
66420
67423
|
/**
|
|
66421
|
-
*
|
|
66422
|
-
* @summary
|
|
67424
|
+
*
|
|
67425
|
+
* @summary Get an organization Memory Item entity
|
|
66423
67426
|
* @param {AxiosInstance} axios Axios instance.
|
|
66424
67427
|
* @param {string} basePath Base path.
|
|
66425
|
-
* @param {
|
|
67428
|
+
* @param {OrgMemoryItemControllerApiGetEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
66426
67429
|
* @param {*} [options] Override http request option.
|
|
66427
67430
|
* @param {Configuration} [configuration] Optional configuration.
|
|
66428
67431
|
* @throws {RequiredError}
|
|
66429
67432
|
*/
|
|
66430
|
-
export declare function
|
|
67433
|
+
export declare function OrgMemoryItemControllerApi_GetEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: OrgMemoryItemControllerApiGetEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
66431
67434
|
/**
|
|
66432
|
-
*
|
|
66433
|
-
* @summary
|
|
67435
|
+
*
|
|
67436
|
+
* @summary Patch an organization Memory Item entity
|
|
66434
67437
|
* @param {AxiosInstance} axios Axios instance.
|
|
66435
67438
|
* @param {string} basePath Base path.
|
|
66436
|
-
* @param {
|
|
67439
|
+
* @param {OrgMemoryItemControllerApiPatchEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
66437
67440
|
* @param {*} [options] Override http request option.
|
|
66438
67441
|
* @param {Configuration} [configuration] Optional configuration.
|
|
66439
67442
|
* @throws {RequiredError}
|
|
66440
67443
|
*/
|
|
66441
|
-
export declare function
|
|
67444
|
+
export declare function OrgMemoryItemControllerApi_PatchEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: OrgMemoryItemControllerApiPatchEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
66442
67445
|
/**
|
|
66443
|
-
*
|
|
66444
|
-
* @summary
|
|
67446
|
+
*
|
|
67447
|
+
* @summary Put an organization Memory Item entity
|
|
66445
67448
|
* @param {AxiosInstance} axios Axios instance.
|
|
66446
67449
|
* @param {string} basePath Base path.
|
|
66447
|
-
* @param {
|
|
67450
|
+
* @param {OrgMemoryItemControllerApiUpdateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
66448
67451
|
* @param {*} [options] Override http request option.
|
|
66449
67452
|
* @param {Configuration} [configuration] Optional configuration.
|
|
66450
67453
|
* @throws {RequiredError}
|
|
66451
67454
|
*/
|
|
66452
|
-
export declare function
|
|
67455
|
+
export declare function OrgMemoryItemControllerApi_UpdateEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: OrgMemoryItemControllerApiUpdateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
66453
67456
|
/**
|
|
66454
|
-
*
|
|
67457
|
+
* OrgMemoryItemControllerApi - interface
|
|
66455
67458
|
* @export
|
|
66456
|
-
* @interface
|
|
67459
|
+
* @interface OrgMemoryItemControllerApi
|
|
66457
67460
|
*/
|
|
66458
|
-
export interface
|
|
67461
|
+
export interface OrgMemoryItemControllerApiInterface {
|
|
66459
67462
|
/**
|
|
66460
|
-
*
|
|
66461
|
-
* @summary
|
|
67463
|
+
* Organization-scoped AI memory item
|
|
67464
|
+
* @summary Post organization Memory Item entities
|
|
67465
|
+
* @param {OrgMemoryItemControllerApiCreateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
66462
67466
|
* @param {*} [options] Override http request option.
|
|
66463
67467
|
* @throws {RequiredError}
|
|
66464
|
-
* @memberof
|
|
67468
|
+
* @memberof OrgMemoryItemControllerApiInterface
|
|
66465
67469
|
*/
|
|
66466
|
-
|
|
67470
|
+
createEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiCreateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
66467
67471
|
/**
|
|
66468
|
-
*
|
|
66469
|
-
* @summary
|
|
67472
|
+
*
|
|
67473
|
+
* @summary Delete an organization Memory Item entity
|
|
67474
|
+
* @param {OrgMemoryItemControllerApiDeleteEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
66470
67475
|
* @param {*} [options] Override http request option.
|
|
66471
67476
|
* @throws {RequiredError}
|
|
66472
|
-
* @memberof
|
|
67477
|
+
* @memberof OrgMemoryItemControllerApiInterface
|
|
66473
67478
|
*/
|
|
66474
|
-
|
|
67479
|
+
deleteEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiDeleteEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
66475
67480
|
/**
|
|
66476
|
-
*
|
|
66477
|
-
* @summary Get organization
|
|
66478
|
-
* @param {
|
|
67481
|
+
*
|
|
67482
|
+
* @summary Get all organization Memory Item entities
|
|
67483
|
+
* @param {OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
66479
67484
|
* @param {*} [options] Override http request option.
|
|
66480
67485
|
* @throws {RequiredError}
|
|
66481
|
-
* @memberof
|
|
67486
|
+
* @memberof OrgMemoryItemControllerApiInterface
|
|
66482
67487
|
*/
|
|
66483
|
-
|
|
67488
|
+
getAllEntitiesOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutList>;
|
|
66484
67489
|
/**
|
|
66485
|
-
*
|
|
66486
|
-
* @summary
|
|
66487
|
-
* @param {
|
|
67490
|
+
*
|
|
67491
|
+
* @summary Get an organization Memory Item entity
|
|
67492
|
+
* @param {OrgMemoryItemControllerApiGetEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
66488
67493
|
* @param {*} [options] Override http request option.
|
|
66489
67494
|
* @throws {RequiredError}
|
|
66490
|
-
* @memberof
|
|
67495
|
+
* @memberof OrgMemoryItemControllerApiInterface
|
|
66491
67496
|
*/
|
|
66492
|
-
|
|
67497
|
+
getEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiGetEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
66493
67498
|
/**
|
|
66494
|
-
*
|
|
66495
|
-
* @summary
|
|
66496
|
-
* @param {
|
|
67499
|
+
*
|
|
67500
|
+
* @summary Patch an organization Memory Item entity
|
|
67501
|
+
* @param {OrgMemoryItemControllerApiPatchEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
66497
67502
|
* @param {*} [options] Override http request option.
|
|
66498
67503
|
* @throws {RequiredError}
|
|
66499
|
-
* @memberof
|
|
67504
|
+
* @memberof OrgMemoryItemControllerApiInterface
|
|
66500
67505
|
*/
|
|
66501
|
-
|
|
67506
|
+
patchEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiPatchEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
66502
67507
|
/**
|
|
66503
|
-
*
|
|
66504
|
-
* @summary
|
|
66505
|
-
* @param {
|
|
67508
|
+
*
|
|
67509
|
+
* @summary Put an organization Memory Item entity
|
|
67510
|
+
* @param {OrgMemoryItemControllerApiUpdateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
66506
67511
|
* @param {*} [options] Override http request option.
|
|
66507
67512
|
* @throws {RequiredError}
|
|
66508
|
-
* @memberof
|
|
67513
|
+
* @memberof OrgMemoryItemControllerApiInterface
|
|
66509
67514
|
*/
|
|
66510
|
-
|
|
67515
|
+
updateEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiUpdateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
66511
67516
|
}
|
|
66512
67517
|
/**
|
|
66513
|
-
* Request parameters for
|
|
67518
|
+
* Request parameters for createEntityOrgMemoryItems operation in OrgMemoryItemControllerApi.
|
|
66514
67519
|
* @export
|
|
66515
|
-
* @interface
|
|
67520
|
+
* @interface OrgMemoryItemControllerApiCreateEntityOrgMemoryItemsRequest
|
|
66516
67521
|
*/
|
|
66517
|
-
export interface
|
|
67522
|
+
export interface OrgMemoryItemControllerApiCreateEntityOrgMemoryItemsRequest {
|
|
66518
67523
|
/**
|
|
66519
67524
|
*
|
|
66520
|
-
* @type {
|
|
66521
|
-
* @memberof
|
|
67525
|
+
* @type {JsonApiOrgMemoryItemInDocument}
|
|
67526
|
+
* @memberof OrgMemoryItemControllerApiCreateEntityOrgMemoryItems
|
|
66522
67527
|
*/
|
|
66523
|
-
readonly
|
|
67528
|
+
readonly jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument;
|
|
67529
|
+
/**
|
|
67530
|
+
* 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.
|
|
67531
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
67532
|
+
* @memberof OrgMemoryItemControllerApiCreateEntityOrgMemoryItems
|
|
67533
|
+
*/
|
|
67534
|
+
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
66524
67535
|
}
|
|
66525
67536
|
/**
|
|
66526
|
-
* Request parameters for
|
|
67537
|
+
* Request parameters for deleteEntityOrgMemoryItems operation in OrgMemoryItemControllerApi.
|
|
66527
67538
|
* @export
|
|
66528
|
-
* @interface
|
|
67539
|
+
* @interface OrgMemoryItemControllerApiDeleteEntityOrgMemoryItemsRequest
|
|
66529
67540
|
*/
|
|
66530
|
-
export interface
|
|
67541
|
+
export interface OrgMemoryItemControllerApiDeleteEntityOrgMemoryItemsRequest {
|
|
66531
67542
|
/**
|
|
66532
67543
|
*
|
|
66533
|
-
* @type {
|
|
66534
|
-
* @memberof
|
|
67544
|
+
* @type {string}
|
|
67545
|
+
* @memberof OrgMemoryItemControllerApiDeleteEntityOrgMemoryItems
|
|
66535
67546
|
*/
|
|
66536
|
-
readonly
|
|
67547
|
+
readonly id: string;
|
|
66537
67548
|
}
|
|
66538
67549
|
/**
|
|
66539
|
-
* Request parameters for
|
|
67550
|
+
* Request parameters for getAllEntitiesOrgMemoryItems operation in OrgMemoryItemControllerApi.
|
|
66540
67551
|
* @export
|
|
66541
|
-
* @interface
|
|
67552
|
+
* @interface OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItemsRequest
|
|
66542
67553
|
*/
|
|
66543
|
-
export interface
|
|
67554
|
+
export interface OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItemsRequest {
|
|
66544
67555
|
/**
|
|
66545
|
-
*
|
|
66546
|
-
* @type {
|
|
66547
|
-
* @memberof
|
|
67556
|
+
* 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\').
|
|
67557
|
+
* @type {string}
|
|
67558
|
+
* @memberof OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItems
|
|
66548
67559
|
*/
|
|
66549
|
-
readonly
|
|
67560
|
+
readonly filter?: string;
|
|
67561
|
+
/**
|
|
67562
|
+
* 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.
|
|
67563
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
67564
|
+
* @memberof OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItems
|
|
67565
|
+
*/
|
|
67566
|
+
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
67567
|
+
/**
|
|
67568
|
+
* Zero-based page index (0..N)
|
|
67569
|
+
* @type {number}
|
|
67570
|
+
* @memberof OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItems
|
|
67571
|
+
*/
|
|
67572
|
+
readonly page?: number;
|
|
67573
|
+
/**
|
|
67574
|
+
* The size of the page to be returned
|
|
67575
|
+
* @type {number}
|
|
67576
|
+
* @memberof OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItems
|
|
67577
|
+
*/
|
|
67578
|
+
readonly size?: number;
|
|
67579
|
+
/**
|
|
67580
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
67581
|
+
* @type {Array<string>}
|
|
67582
|
+
* @memberof OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItems
|
|
67583
|
+
*/
|
|
67584
|
+
readonly sort?: Array<string>;
|
|
67585
|
+
/**
|
|
67586
|
+
* Include Meta objects.
|
|
67587
|
+
* @type {Array<'page' | 'all' | 'ALL'>}
|
|
67588
|
+
* @memberof OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItems
|
|
67589
|
+
*/
|
|
67590
|
+
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
66550
67591
|
}
|
|
66551
67592
|
/**
|
|
66552
|
-
* Request parameters for
|
|
67593
|
+
* Request parameters for getEntityOrgMemoryItems operation in OrgMemoryItemControllerApi.
|
|
66553
67594
|
* @export
|
|
66554
|
-
* @interface
|
|
67595
|
+
* @interface OrgMemoryItemControllerApiGetEntityOrgMemoryItemsRequest
|
|
66555
67596
|
*/
|
|
66556
|
-
export interface
|
|
67597
|
+
export interface OrgMemoryItemControllerApiGetEntityOrgMemoryItemsRequest {
|
|
66557
67598
|
/**
|
|
66558
67599
|
*
|
|
66559
|
-
* @type {
|
|
66560
|
-
* @memberof
|
|
67600
|
+
* @type {string}
|
|
67601
|
+
* @memberof OrgMemoryItemControllerApiGetEntityOrgMemoryItems
|
|
66561
67602
|
*/
|
|
66562
|
-
readonly
|
|
67603
|
+
readonly id: string;
|
|
67604
|
+
/**
|
|
67605
|
+
* 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\').
|
|
67606
|
+
* @type {string}
|
|
67607
|
+
* @memberof OrgMemoryItemControllerApiGetEntityOrgMemoryItems
|
|
67608
|
+
*/
|
|
67609
|
+
readonly filter?: string;
|
|
67610
|
+
/**
|
|
67611
|
+
* 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.
|
|
67612
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
67613
|
+
* @memberof OrgMemoryItemControllerApiGetEntityOrgMemoryItems
|
|
67614
|
+
*/
|
|
67615
|
+
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
66563
67616
|
}
|
|
66564
67617
|
/**
|
|
66565
|
-
*
|
|
67618
|
+
* Request parameters for patchEntityOrgMemoryItems operation in OrgMemoryItemControllerApi.
|
|
66566
67619
|
* @export
|
|
66567
|
-
* @
|
|
66568
|
-
* @extends {BaseAPI}
|
|
67620
|
+
* @interface OrgMemoryItemControllerApiPatchEntityOrgMemoryItemsRequest
|
|
66569
67621
|
*/
|
|
66570
|
-
export
|
|
67622
|
+
export interface OrgMemoryItemControllerApiPatchEntityOrgMemoryItemsRequest {
|
|
66571
67623
|
/**
|
|
66572
|
-
*
|
|
66573
|
-
* @
|
|
66574
|
-
* @
|
|
66575
|
-
* @throws {RequiredError}
|
|
66576
|
-
* @memberof OrganizationDeclarativeAPIsApi
|
|
67624
|
+
*
|
|
67625
|
+
* @type {string}
|
|
67626
|
+
* @memberof OrgMemoryItemControllerApiPatchEntityOrgMemoryItems
|
|
66577
67627
|
*/
|
|
66578
|
-
|
|
67628
|
+
readonly id: string;
|
|
66579
67629
|
/**
|
|
66580
|
-
*
|
|
66581
|
-
* @
|
|
66582
|
-
* @
|
|
66583
|
-
* @throws {RequiredError}
|
|
66584
|
-
* @memberof OrganizationDeclarativeAPIsApi
|
|
67630
|
+
*
|
|
67631
|
+
* @type {JsonApiOrgMemoryItemPatchDocument}
|
|
67632
|
+
* @memberof OrgMemoryItemControllerApiPatchEntityOrgMemoryItems
|
|
66585
67633
|
*/
|
|
66586
|
-
|
|
67634
|
+
readonly jsonApiOrgMemoryItemPatchDocument: JsonApiOrgMemoryItemPatchDocument;
|
|
66587
67635
|
/**
|
|
66588
|
-
*
|
|
66589
|
-
* @
|
|
66590
|
-
* @
|
|
66591
|
-
* @param {*} [options] Override http request option.
|
|
66592
|
-
* @throws {RequiredError}
|
|
66593
|
-
* @memberof OrganizationDeclarativeAPIsApi
|
|
67636
|
+
* 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\').
|
|
67637
|
+
* @type {string}
|
|
67638
|
+
* @memberof OrgMemoryItemControllerApiPatchEntityOrgMemoryItems
|
|
66594
67639
|
*/
|
|
66595
|
-
|
|
67640
|
+
readonly filter?: string;
|
|
66596
67641
|
/**
|
|
66597
|
-
*
|
|
66598
|
-
* @
|
|
66599
|
-
* @
|
|
66600
|
-
* @param {*} [options] Override http request option.
|
|
66601
|
-
* @throws {RequiredError}
|
|
66602
|
-
* @memberof OrganizationDeclarativeAPIsApi
|
|
67642
|
+
* 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.
|
|
67643
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
67644
|
+
* @memberof OrgMemoryItemControllerApiPatchEntityOrgMemoryItems
|
|
66603
67645
|
*/
|
|
66604
|
-
|
|
67646
|
+
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
67647
|
+
}
|
|
67648
|
+
/**
|
|
67649
|
+
* Request parameters for updateEntityOrgMemoryItems operation in OrgMemoryItemControllerApi.
|
|
67650
|
+
* @export
|
|
67651
|
+
* @interface OrgMemoryItemControllerApiUpdateEntityOrgMemoryItemsRequest
|
|
67652
|
+
*/
|
|
67653
|
+
export interface OrgMemoryItemControllerApiUpdateEntityOrgMemoryItemsRequest {
|
|
66605
67654
|
/**
|
|
66606
|
-
*
|
|
66607
|
-
* @
|
|
66608
|
-
* @
|
|
66609
|
-
* @param {*} [options] Override http request option.
|
|
66610
|
-
* @throws {RequiredError}
|
|
66611
|
-
* @memberof OrganizationDeclarativeAPIsApi
|
|
67655
|
+
*
|
|
67656
|
+
* @type {string}
|
|
67657
|
+
* @memberof OrgMemoryItemControllerApiUpdateEntityOrgMemoryItems
|
|
66612
67658
|
*/
|
|
66613
|
-
|
|
67659
|
+
readonly id: string;
|
|
66614
67660
|
/**
|
|
66615
|
-
*
|
|
66616
|
-
* @
|
|
66617
|
-
* @
|
|
66618
|
-
|
|
66619
|
-
|
|
66620
|
-
|
|
66621
|
-
|
|
66622
|
-
|
|
67661
|
+
*
|
|
67662
|
+
* @type {JsonApiOrgMemoryItemInDocument}
|
|
67663
|
+
* @memberof OrgMemoryItemControllerApiUpdateEntityOrgMemoryItems
|
|
67664
|
+
*/
|
|
67665
|
+
readonly jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument;
|
|
67666
|
+
/**
|
|
67667
|
+
* 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\').
|
|
67668
|
+
* @type {string}
|
|
67669
|
+
* @memberof OrgMemoryItemControllerApiUpdateEntityOrgMemoryItems
|
|
67670
|
+
*/
|
|
67671
|
+
readonly filter?: string;
|
|
67672
|
+
/**
|
|
67673
|
+
* 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.
|
|
67674
|
+
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
67675
|
+
* @memberof OrgMemoryItemControllerApiUpdateEntityOrgMemoryItems
|
|
67676
|
+
*/
|
|
67677
|
+
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
67678
|
+
}
|
|
67679
|
+
/**
|
|
67680
|
+
* OrgMemoryItemControllerApi - object-oriented interface
|
|
67681
|
+
* @export
|
|
67682
|
+
* @class OrgMemoryItemControllerApi
|
|
67683
|
+
* @extends {BaseAPI}
|
|
67684
|
+
*/
|
|
67685
|
+
export declare class OrgMemoryItemControllerApi extends BaseAPI implements OrgMemoryItemControllerApiInterface {
|
|
67686
|
+
/**
|
|
67687
|
+
* Organization-scoped AI memory item
|
|
67688
|
+
* @summary Post organization Memory Item entities
|
|
67689
|
+
* @param {OrgMemoryItemControllerApiCreateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
67690
|
+
* @param {*} [options] Override http request option.
|
|
67691
|
+
* @throws {RequiredError}
|
|
67692
|
+
* @memberof OrgMemoryItemControllerApi
|
|
67693
|
+
*/
|
|
67694
|
+
createEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiCreateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
67695
|
+
/**
|
|
67696
|
+
*
|
|
67697
|
+
* @summary Delete an organization Memory Item entity
|
|
67698
|
+
* @param {OrgMemoryItemControllerApiDeleteEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
67699
|
+
* @param {*} [options] Override http request option.
|
|
67700
|
+
* @throws {RequiredError}
|
|
67701
|
+
* @memberof OrgMemoryItemControllerApi
|
|
67702
|
+
*/
|
|
67703
|
+
deleteEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiDeleteEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
67704
|
+
/**
|
|
67705
|
+
*
|
|
67706
|
+
* @summary Get all organization Memory Item entities
|
|
67707
|
+
* @param {OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
67708
|
+
* @param {*} [options] Override http request option.
|
|
67709
|
+
* @throws {RequiredError}
|
|
67710
|
+
* @memberof OrgMemoryItemControllerApi
|
|
67711
|
+
*/
|
|
67712
|
+
getAllEntitiesOrgMemoryItems(requestParameters?: OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutList>;
|
|
67713
|
+
/**
|
|
67714
|
+
*
|
|
67715
|
+
* @summary Get an organization Memory Item entity
|
|
67716
|
+
* @param {OrgMemoryItemControllerApiGetEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
67717
|
+
* @param {*} [options] Override http request option.
|
|
67718
|
+
* @throws {RequiredError}
|
|
67719
|
+
* @memberof OrgMemoryItemControllerApi
|
|
67720
|
+
*/
|
|
67721
|
+
getEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiGetEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
67722
|
+
/**
|
|
67723
|
+
*
|
|
67724
|
+
* @summary Patch an organization Memory Item entity
|
|
67725
|
+
* @param {OrgMemoryItemControllerApiPatchEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
67726
|
+
* @param {*} [options] Override http request option.
|
|
67727
|
+
* @throws {RequiredError}
|
|
67728
|
+
* @memberof OrgMemoryItemControllerApi
|
|
67729
|
+
*/
|
|
67730
|
+
patchEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiPatchEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
67731
|
+
/**
|
|
67732
|
+
*
|
|
67733
|
+
* @summary Put an organization Memory Item entity
|
|
67734
|
+
* @param {OrgMemoryItemControllerApiUpdateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
67735
|
+
* @param {*} [options] Override http request option.
|
|
67736
|
+
* @throws {RequiredError}
|
|
67737
|
+
* @memberof OrgMemoryItemControllerApi
|
|
67738
|
+
*/
|
|
67739
|
+
updateEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiUpdateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
67740
|
+
}
|
|
67741
|
+
/**
|
|
67742
|
+
* Gets complete layout of AI agent configurations.
|
|
67743
|
+
* @summary Get all AI agent configurations layout
|
|
67744
|
+
* @param {*} [options] Override http request option.
|
|
67745
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
67746
|
+
* @throws {RequiredError}
|
|
67747
|
+
*/
|
|
67748
|
+
export declare function OrganizationDeclarativeAPIsApiAxiosParamCreator_GetAgentsLayout(options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
67749
|
+
/**
|
|
67750
|
+
* Gets complete layout of custom geo collections.
|
|
67751
|
+
* @summary Get all custom geo collections layout
|
|
67752
|
+
* @param {*} [options] Override http request option.
|
|
67753
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
67754
|
+
* @throws {RequiredError}
|
|
67755
|
+
*/
|
|
67756
|
+
export declare function OrganizationDeclarativeAPIsApiAxiosParamCreator_GetCustomGeoCollectionsLayout(options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
67757
|
+
/**
|
|
67758
|
+
* Retrieve complete layout of organization, workspaces, user-groups, etc.
|
|
67759
|
+
* @summary Get organization layout
|
|
67760
|
+
* @param {Array<'ACTIVITY_INFO'>} [exclude]
|
|
67761
|
+
* @param {*} [options] Override http request option.
|
|
67762
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
67763
|
+
* @throws {RequiredError}
|
|
67764
|
+
*/
|
|
67765
|
+
export declare function OrganizationDeclarativeAPIsApiAxiosParamCreator_GetOrganizationLayout(exclude?: Array<'ACTIVITY_INFO'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
67766
|
+
/**
|
|
67767
|
+
* Sets AI agent configurations in organization.
|
|
67768
|
+
* @summary Set all AI agent configurations
|
|
67769
|
+
* @param {DeclarativeAgents} declarativeAgents
|
|
67770
|
+
* @param {*} [options] Override http request option.
|
|
67771
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
67772
|
+
* @throws {RequiredError}
|
|
67773
|
+
*/
|
|
67774
|
+
export declare function OrganizationDeclarativeAPIsApiAxiosParamCreator_SetAgentsLayout(declarativeAgents: DeclarativeAgents, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
67775
|
+
/**
|
|
67776
|
+
* Sets custom geo collections in organization.
|
|
67777
|
+
* @summary Set all custom geo collections
|
|
67778
|
+
* @param {DeclarativeCustomGeoCollections} declarativeCustomGeoCollections
|
|
67779
|
+
* @param {*} [options] Override http request option.
|
|
67780
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
67781
|
+
* @throws {RequiredError}
|
|
67782
|
+
*/
|
|
67783
|
+
export declare function OrganizationDeclarativeAPIsApiAxiosParamCreator_SetCustomGeoCollections(declarativeCustomGeoCollections: DeclarativeCustomGeoCollections, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
67784
|
+
/**
|
|
67785
|
+
* Sets complete layout of organization, like workspaces, user-groups, etc.
|
|
67786
|
+
* @summary Set organization layout
|
|
67787
|
+
* @param {DeclarativeOrganization} declarativeOrganization
|
|
67788
|
+
* @param {*} [options] Override http request option.
|
|
67789
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
67790
|
+
* @throws {RequiredError}
|
|
67791
|
+
*/
|
|
67792
|
+
export declare function OrganizationDeclarativeAPIsApiAxiosParamCreator_SetOrganizationLayout(declarativeOrganization: DeclarativeOrganization, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
67793
|
+
/**
|
|
67794
|
+
* Gets complete layout of AI agent configurations.
|
|
67795
|
+
* @summary Get all AI agent configurations layout
|
|
67796
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
67797
|
+
* @param {string} basePath Base path.
|
|
67798
|
+
* @param {*} [options] Override http request option.
|
|
67799
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
67800
|
+
* @throws {RequiredError}
|
|
67801
|
+
*/
|
|
67802
|
+
export declare function OrganizationDeclarativeAPIsApi_GetAgentsLayout(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<DeclarativeAgents>;
|
|
67803
|
+
/**
|
|
67804
|
+
* Gets complete layout of custom geo collections.
|
|
67805
|
+
* @summary Get all custom geo collections layout
|
|
67806
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
67807
|
+
* @param {string} basePath Base path.
|
|
67808
|
+
* @param {*} [options] Override http request option.
|
|
67809
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
67810
|
+
* @throws {RequiredError}
|
|
67811
|
+
*/
|
|
67812
|
+
export declare function OrganizationDeclarativeAPIsApi_GetCustomGeoCollectionsLayout(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<DeclarativeCustomGeoCollections>;
|
|
67813
|
+
/**
|
|
67814
|
+
* Retrieve complete layout of organization, workspaces, user-groups, etc.
|
|
67815
|
+
* @summary Get organization layout
|
|
67816
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
67817
|
+
* @param {string} basePath Base path.
|
|
67818
|
+
* @param {OrganizationDeclarativeAPIsApiGetOrganizationLayoutRequest} requestParameters Request parameters.
|
|
67819
|
+
* @param {*} [options] Override http request option.
|
|
67820
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
67821
|
+
* @throws {RequiredError}
|
|
67822
|
+
*/
|
|
67823
|
+
export declare function OrganizationDeclarativeAPIsApi_GetOrganizationLayout(axios: AxiosInstance, basePath: string, requestParameters: OrganizationDeclarativeAPIsApiGetOrganizationLayoutRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<DeclarativeOrganization>;
|
|
67824
|
+
/**
|
|
67825
|
+
* Sets AI agent configurations in organization.
|
|
67826
|
+
* @summary Set all AI agent configurations
|
|
67827
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
67828
|
+
* @param {string} basePath Base path.
|
|
67829
|
+
* @param {OrganizationDeclarativeAPIsApiSetAgentsLayoutRequest} requestParameters Request parameters.
|
|
67830
|
+
* @param {*} [options] Override http request option.
|
|
67831
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
67832
|
+
* @throws {RequiredError}
|
|
67833
|
+
*/
|
|
67834
|
+
export declare function OrganizationDeclarativeAPIsApi_SetAgentsLayout(axios: AxiosInstance, basePath: string, requestParameters: OrganizationDeclarativeAPIsApiSetAgentsLayoutRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
67835
|
+
/**
|
|
67836
|
+
* Sets custom geo collections in organization.
|
|
67837
|
+
* @summary Set all custom geo collections
|
|
67838
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
67839
|
+
* @param {string} basePath Base path.
|
|
67840
|
+
* @param {OrganizationDeclarativeAPIsApiSetCustomGeoCollectionsRequest} requestParameters Request parameters.
|
|
67841
|
+
* @param {*} [options] Override http request option.
|
|
67842
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
67843
|
+
* @throws {RequiredError}
|
|
67844
|
+
*/
|
|
67845
|
+
export declare function OrganizationDeclarativeAPIsApi_SetCustomGeoCollections(axios: AxiosInstance, basePath: string, requestParameters: OrganizationDeclarativeAPIsApiSetCustomGeoCollectionsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
67846
|
+
/**
|
|
67847
|
+
* Sets complete layout of organization, like workspaces, user-groups, etc.
|
|
67848
|
+
* @summary Set organization layout
|
|
67849
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
67850
|
+
* @param {string} basePath Base path.
|
|
67851
|
+
* @param {OrganizationDeclarativeAPIsApiSetOrganizationLayoutRequest} requestParameters Request parameters.
|
|
67852
|
+
* @param {*} [options] Override http request option.
|
|
67853
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
67854
|
+
* @throws {RequiredError}
|
|
67855
|
+
*/
|
|
67856
|
+
export declare function OrganizationDeclarativeAPIsApi_SetOrganizationLayout(axios: AxiosInstance, basePath: string, requestParameters: OrganizationDeclarativeAPIsApiSetOrganizationLayoutRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
67857
|
+
/**
|
|
67858
|
+
* OrganizationDeclarativeAPIsApi - interface
|
|
67859
|
+
* @export
|
|
67860
|
+
* @interface OrganizationDeclarativeAPIsApi
|
|
67861
|
+
*/
|
|
67862
|
+
export interface OrganizationDeclarativeAPIsApiInterface {
|
|
67863
|
+
/**
|
|
67864
|
+
* Gets complete layout of AI agent configurations.
|
|
67865
|
+
* @summary Get all AI agent configurations layout
|
|
67866
|
+
* @param {*} [options] Override http request option.
|
|
67867
|
+
* @throws {RequiredError}
|
|
67868
|
+
* @memberof OrganizationDeclarativeAPIsApiInterface
|
|
67869
|
+
*/
|
|
67870
|
+
getAgentsLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeAgents>;
|
|
67871
|
+
/**
|
|
67872
|
+
* Gets complete layout of custom geo collections.
|
|
67873
|
+
* @summary Get all custom geo collections layout
|
|
67874
|
+
* @param {*} [options] Override http request option.
|
|
67875
|
+
* @throws {RequiredError}
|
|
67876
|
+
* @memberof OrganizationDeclarativeAPIsApiInterface
|
|
67877
|
+
*/
|
|
67878
|
+
getCustomGeoCollectionsLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeCustomGeoCollections>;
|
|
67879
|
+
/**
|
|
67880
|
+
* Retrieve complete layout of organization, workspaces, user-groups, etc.
|
|
67881
|
+
* @summary Get organization layout
|
|
67882
|
+
* @param {OrganizationDeclarativeAPIsApiGetOrganizationLayoutRequest} requestParameters Request parameters.
|
|
67883
|
+
* @param {*} [options] Override http request option.
|
|
67884
|
+
* @throws {RequiredError}
|
|
67885
|
+
* @memberof OrganizationDeclarativeAPIsApiInterface
|
|
67886
|
+
*/
|
|
67887
|
+
getOrganizationLayout(requestParameters: OrganizationDeclarativeAPIsApiGetOrganizationLayoutRequest, options?: AxiosRequestConfig): AxiosPromise<DeclarativeOrganization>;
|
|
67888
|
+
/**
|
|
67889
|
+
* Sets AI agent configurations in organization.
|
|
67890
|
+
* @summary Set all AI agent configurations
|
|
67891
|
+
* @param {OrganizationDeclarativeAPIsApiSetAgentsLayoutRequest} requestParameters Request parameters.
|
|
67892
|
+
* @param {*} [options] Override http request option.
|
|
67893
|
+
* @throws {RequiredError}
|
|
67894
|
+
* @memberof OrganizationDeclarativeAPIsApiInterface
|
|
67895
|
+
*/
|
|
67896
|
+
setAgentsLayout(requestParameters: OrganizationDeclarativeAPIsApiSetAgentsLayoutRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
67897
|
+
/**
|
|
67898
|
+
* Sets custom geo collections in organization.
|
|
67899
|
+
* @summary Set all custom geo collections
|
|
67900
|
+
* @param {OrganizationDeclarativeAPIsApiSetCustomGeoCollectionsRequest} requestParameters Request parameters.
|
|
67901
|
+
* @param {*} [options] Override http request option.
|
|
67902
|
+
* @throws {RequiredError}
|
|
67903
|
+
* @memberof OrganizationDeclarativeAPIsApiInterface
|
|
67904
|
+
*/
|
|
67905
|
+
setCustomGeoCollections(requestParameters: OrganizationDeclarativeAPIsApiSetCustomGeoCollectionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
67906
|
+
/**
|
|
67907
|
+
* Sets complete layout of organization, like workspaces, user-groups, etc.
|
|
67908
|
+
* @summary Set organization layout
|
|
67909
|
+
* @param {OrganizationDeclarativeAPIsApiSetOrganizationLayoutRequest} requestParameters Request parameters.
|
|
67910
|
+
* @param {*} [options] Override http request option.
|
|
67911
|
+
* @throws {RequiredError}
|
|
67912
|
+
* @memberof OrganizationDeclarativeAPIsApiInterface
|
|
67913
|
+
*/
|
|
67914
|
+
setOrganizationLayout(requestParameters: OrganizationDeclarativeAPIsApiSetOrganizationLayoutRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
67915
|
+
}
|
|
67916
|
+
/**
|
|
67917
|
+
* Request parameters for getOrganizationLayout operation in OrganizationDeclarativeAPIsApi.
|
|
67918
|
+
* @export
|
|
67919
|
+
* @interface OrganizationDeclarativeAPIsApiGetOrganizationLayoutRequest
|
|
67920
|
+
*/
|
|
67921
|
+
export interface OrganizationDeclarativeAPIsApiGetOrganizationLayoutRequest {
|
|
67922
|
+
/**
|
|
67923
|
+
*
|
|
67924
|
+
* @type {Array<'ACTIVITY_INFO'>}
|
|
67925
|
+
* @memberof OrganizationDeclarativeAPIsApiGetOrganizationLayout
|
|
67926
|
+
*/
|
|
67927
|
+
readonly exclude?: Array<'ACTIVITY_INFO'>;
|
|
67928
|
+
}
|
|
67929
|
+
/**
|
|
67930
|
+
* Request parameters for setAgentsLayout operation in OrganizationDeclarativeAPIsApi.
|
|
67931
|
+
* @export
|
|
67932
|
+
* @interface OrganizationDeclarativeAPIsApiSetAgentsLayoutRequest
|
|
67933
|
+
*/
|
|
67934
|
+
export interface OrganizationDeclarativeAPIsApiSetAgentsLayoutRequest {
|
|
67935
|
+
/**
|
|
67936
|
+
*
|
|
67937
|
+
* @type {DeclarativeAgents}
|
|
67938
|
+
* @memberof OrganizationDeclarativeAPIsApiSetAgentsLayout
|
|
67939
|
+
*/
|
|
67940
|
+
readonly declarativeAgents: DeclarativeAgents;
|
|
67941
|
+
}
|
|
67942
|
+
/**
|
|
67943
|
+
* Request parameters for setCustomGeoCollections operation in OrganizationDeclarativeAPIsApi.
|
|
67944
|
+
* @export
|
|
67945
|
+
* @interface OrganizationDeclarativeAPIsApiSetCustomGeoCollectionsRequest
|
|
67946
|
+
*/
|
|
67947
|
+
export interface OrganizationDeclarativeAPIsApiSetCustomGeoCollectionsRequest {
|
|
67948
|
+
/**
|
|
67949
|
+
*
|
|
67950
|
+
* @type {DeclarativeCustomGeoCollections}
|
|
67951
|
+
* @memberof OrganizationDeclarativeAPIsApiSetCustomGeoCollections
|
|
67952
|
+
*/
|
|
67953
|
+
readonly declarativeCustomGeoCollections: DeclarativeCustomGeoCollections;
|
|
67954
|
+
}
|
|
67955
|
+
/**
|
|
67956
|
+
* Request parameters for setOrganizationLayout operation in OrganizationDeclarativeAPIsApi.
|
|
67957
|
+
* @export
|
|
67958
|
+
* @interface OrganizationDeclarativeAPIsApiSetOrganizationLayoutRequest
|
|
67959
|
+
*/
|
|
67960
|
+
export interface OrganizationDeclarativeAPIsApiSetOrganizationLayoutRequest {
|
|
67961
|
+
/**
|
|
67962
|
+
*
|
|
67963
|
+
* @type {DeclarativeOrganization}
|
|
67964
|
+
* @memberof OrganizationDeclarativeAPIsApiSetOrganizationLayout
|
|
67965
|
+
*/
|
|
67966
|
+
readonly declarativeOrganization: DeclarativeOrganization;
|
|
67967
|
+
}
|
|
67968
|
+
/**
|
|
67969
|
+
* OrganizationDeclarativeAPIsApi - object-oriented interface
|
|
67970
|
+
* @export
|
|
67971
|
+
* @class OrganizationDeclarativeAPIsApi
|
|
67972
|
+
* @extends {BaseAPI}
|
|
67973
|
+
*/
|
|
67974
|
+
export declare class OrganizationDeclarativeAPIsApi extends BaseAPI implements OrganizationDeclarativeAPIsApiInterface {
|
|
67975
|
+
/**
|
|
67976
|
+
* Gets complete layout of AI agent configurations.
|
|
67977
|
+
* @summary Get all AI agent configurations layout
|
|
67978
|
+
* @param {*} [options] Override http request option.
|
|
67979
|
+
* @throws {RequiredError}
|
|
67980
|
+
* @memberof OrganizationDeclarativeAPIsApi
|
|
67981
|
+
*/
|
|
67982
|
+
getAgentsLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeAgents>;
|
|
67983
|
+
/**
|
|
67984
|
+
* Gets complete layout of custom geo collections.
|
|
67985
|
+
* @summary Get all custom geo collections layout
|
|
67986
|
+
* @param {*} [options] Override http request option.
|
|
67987
|
+
* @throws {RequiredError}
|
|
67988
|
+
* @memberof OrganizationDeclarativeAPIsApi
|
|
67989
|
+
*/
|
|
67990
|
+
getCustomGeoCollectionsLayout(options?: AxiosRequestConfig): AxiosPromise<DeclarativeCustomGeoCollections>;
|
|
67991
|
+
/**
|
|
67992
|
+
* Retrieve complete layout of organization, workspaces, user-groups, etc.
|
|
67993
|
+
* @summary Get organization layout
|
|
67994
|
+
* @param {OrganizationDeclarativeAPIsApiGetOrganizationLayoutRequest} requestParameters Request parameters.
|
|
67995
|
+
* @param {*} [options] Override http request option.
|
|
67996
|
+
* @throws {RequiredError}
|
|
67997
|
+
* @memberof OrganizationDeclarativeAPIsApi
|
|
67998
|
+
*/
|
|
67999
|
+
getOrganizationLayout(requestParameters?: OrganizationDeclarativeAPIsApiGetOrganizationLayoutRequest, options?: AxiosRequestConfig): AxiosPromise<DeclarativeOrganization>;
|
|
68000
|
+
/**
|
|
68001
|
+
* Sets AI agent configurations in organization.
|
|
68002
|
+
* @summary Set all AI agent configurations
|
|
68003
|
+
* @param {OrganizationDeclarativeAPIsApiSetAgentsLayoutRequest} requestParameters Request parameters.
|
|
68004
|
+
* @param {*} [options] Override http request option.
|
|
68005
|
+
* @throws {RequiredError}
|
|
68006
|
+
* @memberof OrganizationDeclarativeAPIsApi
|
|
68007
|
+
*/
|
|
68008
|
+
setAgentsLayout(requestParameters: OrganizationDeclarativeAPIsApiSetAgentsLayoutRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
68009
|
+
/**
|
|
68010
|
+
* Sets custom geo collections in organization.
|
|
68011
|
+
* @summary Set all custom geo collections
|
|
68012
|
+
* @param {OrganizationDeclarativeAPIsApiSetCustomGeoCollectionsRequest} requestParameters Request parameters.
|
|
68013
|
+
* @param {*} [options] Override http request option.
|
|
68014
|
+
* @throws {RequiredError}
|
|
68015
|
+
* @memberof OrganizationDeclarativeAPIsApi
|
|
68016
|
+
*/
|
|
68017
|
+
setCustomGeoCollections(requestParameters: OrganizationDeclarativeAPIsApiSetCustomGeoCollectionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
68018
|
+
/**
|
|
68019
|
+
* Sets complete layout of organization, like workspaces, user-groups, etc.
|
|
68020
|
+
* @summary Set organization layout
|
|
68021
|
+
* @param {OrganizationDeclarativeAPIsApiSetOrganizationLayoutRequest} requestParameters Request parameters.
|
|
68022
|
+
* @param {*} [options] Override http request option.
|
|
68023
|
+
* @throws {RequiredError}
|
|
68024
|
+
* @memberof OrganizationDeclarativeAPIsApi
|
|
68025
|
+
*/
|
|
68026
|
+
setOrganizationLayout(requestParameters: OrganizationDeclarativeAPIsApiSetOrganizationLayoutRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
66623
68027
|
}
|
|
66624
68028
|
/**
|
|
66625
68029
|
*
|
|
@@ -81968,697 +83372,4 @@ export declare class WorkspacesSettingsApi extends BaseAPI implements Workspaces
|
|
|
81968
83372
|
*/
|
|
81969
83373
|
workspaceResolveSettings(requestParameters: WorkspacesSettingsApiWorkspaceResolveSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedSetting[]>;
|
|
81970
83374
|
}
|
|
81971
|
-
export interface JsonApiOrgMemoryItemIn {
|
|
81972
|
-
/**
|
|
81973
|
-
* Object type
|
|
81974
|
-
*/
|
|
81975
|
-
'type': JsonApiOrgMemoryItemInTypeEnum;
|
|
81976
|
-
/**
|
|
81977
|
-
* API identifier of an object
|
|
81978
|
-
*/
|
|
81979
|
-
'id': string;
|
|
81980
|
-
'attributes': JsonApiOrgMemoryItemInAttributes;
|
|
81981
|
-
}
|
|
81982
|
-
export type JsonApiOrgMemoryItemInTypeEnum = 'orgMemoryItem';
|
|
81983
|
-
export interface JsonApiOrgMemoryItemInAttributes {
|
|
81984
|
-
'title'?: string | null;
|
|
81985
|
-
'description'?: string | null;
|
|
81986
|
-
/**
|
|
81987
|
-
* Strategy defining when the memory item should be applied
|
|
81988
|
-
*/
|
|
81989
|
-
'strategy': JsonApiOrgMemoryItemInAttributesStrategyEnum;
|
|
81990
|
-
/**
|
|
81991
|
-
* The text that will be injected into the system prompt
|
|
81992
|
-
*/
|
|
81993
|
-
'instruction': string;
|
|
81994
|
-
/**
|
|
81995
|
-
* Set of unique strings used for semantic similarity filtering
|
|
81996
|
-
*/
|
|
81997
|
-
'keywords'?: Array<string>;
|
|
81998
|
-
/**
|
|
81999
|
-
* Whether memory item is disabled
|
|
82000
|
-
*/
|
|
82001
|
-
'isDisabled'?: boolean;
|
|
82002
|
-
}
|
|
82003
|
-
export type JsonApiOrgMemoryItemInAttributesStrategyEnum = 'ALWAYS' | 'AUTO';
|
|
82004
|
-
export interface JsonApiOrgMemoryItemInDocument {
|
|
82005
|
-
'data': JsonApiOrgMemoryItemIn;
|
|
82006
|
-
}
|
|
82007
|
-
export interface JsonApiOrgMemoryItemOut {
|
|
82008
|
-
/**
|
|
82009
|
-
* Object type
|
|
82010
|
-
*/
|
|
82011
|
-
'type': JsonApiOrgMemoryItemOutTypeEnum;
|
|
82012
|
-
/**
|
|
82013
|
-
* API identifier of an object
|
|
82014
|
-
*/
|
|
82015
|
-
'id': string;
|
|
82016
|
-
'attributes': JsonApiOrgMemoryItemOutAttributes;
|
|
82017
|
-
'relationships'?: JsonApiOrgMemoryItemOutRelationships;
|
|
82018
|
-
}
|
|
82019
|
-
export type JsonApiOrgMemoryItemOutTypeEnum = 'orgMemoryItem';
|
|
82020
|
-
export interface JsonApiOrgMemoryItemOutAttributes {
|
|
82021
|
-
'title'?: string | null;
|
|
82022
|
-
'description'?: string | null;
|
|
82023
|
-
/**
|
|
82024
|
-
* Strategy defining when the memory item should be applied
|
|
82025
|
-
*/
|
|
82026
|
-
'strategy': JsonApiOrgMemoryItemOutAttributesStrategyEnum;
|
|
82027
|
-
/**
|
|
82028
|
-
* The text that will be injected into the system prompt
|
|
82029
|
-
*/
|
|
82030
|
-
'instruction': string;
|
|
82031
|
-
/**
|
|
82032
|
-
* Set of unique strings used for semantic similarity filtering
|
|
82033
|
-
*/
|
|
82034
|
-
'keywords'?: Array<string>;
|
|
82035
|
-
/**
|
|
82036
|
-
* Whether memory item is disabled
|
|
82037
|
-
*/
|
|
82038
|
-
'isDisabled'?: boolean;
|
|
82039
|
-
/**
|
|
82040
|
-
* Time of the entity creation.
|
|
82041
|
-
*/
|
|
82042
|
-
'createdAt'?: string | null;
|
|
82043
|
-
/**
|
|
82044
|
-
* Time of the last entity modification.
|
|
82045
|
-
*/
|
|
82046
|
-
'modifiedAt'?: string | null;
|
|
82047
|
-
}
|
|
82048
|
-
export type JsonApiOrgMemoryItemOutAttributesStrategyEnum = 'ALWAYS' | 'AUTO';
|
|
82049
|
-
export interface JsonApiOrgMemoryItemOutDocument {
|
|
82050
|
-
'data': JsonApiOrgMemoryItemOut;
|
|
82051
|
-
'links'?: ObjectLinks;
|
|
82052
|
-
/**
|
|
82053
|
-
* Included resources
|
|
82054
|
-
*/
|
|
82055
|
-
'included'?: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
82056
|
-
}
|
|
82057
|
-
export interface JsonApiOrgMemoryItemOutList {
|
|
82058
|
-
'data': Array<JsonApiOrgMemoryItemOutWithLinks>;
|
|
82059
|
-
'links'?: ListLinks;
|
|
82060
|
-
'meta'?: JsonApiAgentOutListMeta;
|
|
82061
|
-
/**
|
|
82062
|
-
* Included resources
|
|
82063
|
-
*/
|
|
82064
|
-
'included'?: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
82065
|
-
}
|
|
82066
|
-
export interface JsonApiOrgMemoryItemOutRelationships {
|
|
82067
|
-
'createdBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
82068
|
-
'modifiedBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
82069
|
-
}
|
|
82070
|
-
export interface JsonApiOrgMemoryItemOutWithLinks {
|
|
82071
|
-
/**
|
|
82072
|
-
* Object type
|
|
82073
|
-
*/
|
|
82074
|
-
'type': JsonApiOrgMemoryItemOutWithLinksTypeEnum;
|
|
82075
|
-
/**
|
|
82076
|
-
* API identifier of an object
|
|
82077
|
-
*/
|
|
82078
|
-
'id': string;
|
|
82079
|
-
'attributes': JsonApiOrgMemoryItemOutAttributes;
|
|
82080
|
-
'relationships'?: JsonApiOrgMemoryItemOutRelationships;
|
|
82081
|
-
'links'?: ObjectLinks;
|
|
82082
|
-
}
|
|
82083
|
-
export type JsonApiOrgMemoryItemOutWithLinksTypeEnum = 'orgMemoryItem';
|
|
82084
|
-
export interface JsonApiOrgMemoryItemPatch {
|
|
82085
|
-
/**
|
|
82086
|
-
* Object type
|
|
82087
|
-
*/
|
|
82088
|
-
'type': JsonApiOrgMemoryItemPatchTypeEnum;
|
|
82089
|
-
/**
|
|
82090
|
-
* API identifier of an object
|
|
82091
|
-
*/
|
|
82092
|
-
'id': string;
|
|
82093
|
-
'attributes': JsonApiOrgMemoryItemPatchAttributes;
|
|
82094
|
-
}
|
|
82095
|
-
export type JsonApiOrgMemoryItemPatchTypeEnum = 'orgMemoryItem';
|
|
82096
|
-
export interface JsonApiOrgMemoryItemPatchAttributes {
|
|
82097
|
-
'title'?: string | null;
|
|
82098
|
-
'description'?: string | null;
|
|
82099
|
-
/**
|
|
82100
|
-
* Strategy defining when the memory item should be applied
|
|
82101
|
-
*/
|
|
82102
|
-
'strategy'?: JsonApiOrgMemoryItemPatchAttributesStrategyEnum;
|
|
82103
|
-
/**
|
|
82104
|
-
* The text that will be injected into the system prompt
|
|
82105
|
-
*/
|
|
82106
|
-
'instruction'?: string;
|
|
82107
|
-
/**
|
|
82108
|
-
* Set of unique strings used for semantic similarity filtering
|
|
82109
|
-
*/
|
|
82110
|
-
'keywords'?: Array<string>;
|
|
82111
|
-
/**
|
|
82112
|
-
* Whether memory item is disabled
|
|
82113
|
-
*/
|
|
82114
|
-
'isDisabled'?: boolean;
|
|
82115
|
-
}
|
|
82116
|
-
export type JsonApiOrgMemoryItemPatchAttributesStrategyEnum = 'ALWAYS' | 'AUTO';
|
|
82117
|
-
export interface JsonApiOrgMemoryItemPatchDocument {
|
|
82118
|
-
'data': JsonApiOrgMemoryItemPatch;
|
|
82119
|
-
}
|
|
82120
|
-
export declare function AIApiAxiosParamCreator_CreateEntityOrgMemoryItems(jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82121
|
-
export declare function AIApiAxiosParamCreator_DeleteEntityOrgMemoryItems(id: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82122
|
-
export declare function AIApiAxiosParamCreator_GetAllEntitiesOrgMemoryItems(filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82123
|
-
export declare function AIApiAxiosParamCreator_GetEntityOrgMemoryItems(id: string, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82124
|
-
export declare function AIApiAxiosParamCreator_PatchEntityOrgMemoryItems(id: string, jsonApiOrgMemoryItemPatchDocument: JsonApiOrgMemoryItemPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82125
|
-
export declare function AIApiAxiosParamCreator_UpdateEntityOrgMemoryItems(id: string, jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82126
|
-
export declare function AIApi_CreateEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: AIApiCreateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82127
|
-
export declare function AIApi_DeleteEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: AIApiDeleteEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
82128
|
-
export declare function AIApi_GetAllEntitiesOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: AIApiGetAllEntitiesOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutList>;
|
|
82129
|
-
export declare function AIApi_GetEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: AIApiGetEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82130
|
-
export declare function AIApi_PatchEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: AIApiPatchEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82131
|
-
export declare function AIApi_UpdateEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: AIApiUpdateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82132
|
-
export interface AIApiCreateEntityOrgMemoryItemsRequest {
|
|
82133
|
-
/**
|
|
82134
|
-
*
|
|
82135
|
-
* @type {JsonApiOrgMemoryItemInDocument}
|
|
82136
|
-
* @memberof AIApiCreateEntityOrgMemoryItems
|
|
82137
|
-
*/
|
|
82138
|
-
readonly jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument;
|
|
82139
|
-
/**
|
|
82140
|
-
* 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.
|
|
82141
|
-
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
82142
|
-
* @memberof AIApiCreateEntityOrgMemoryItems
|
|
82143
|
-
*/
|
|
82144
|
-
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
82145
|
-
}
|
|
82146
|
-
export interface AIApiDeleteEntityOrgMemoryItemsRequest {
|
|
82147
|
-
/**
|
|
82148
|
-
*
|
|
82149
|
-
* @type {string}
|
|
82150
|
-
* @memberof AIApiDeleteEntityOrgMemoryItems
|
|
82151
|
-
*/
|
|
82152
|
-
readonly id: string;
|
|
82153
|
-
}
|
|
82154
|
-
export interface AIApiGetAllEntitiesOrgMemoryItemsRequest {
|
|
82155
|
-
/**
|
|
82156
|
-
* 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\').
|
|
82157
|
-
* @type {string}
|
|
82158
|
-
* @memberof AIApiGetAllEntitiesOrgMemoryItems
|
|
82159
|
-
*/
|
|
82160
|
-
readonly filter?: string;
|
|
82161
|
-
/**
|
|
82162
|
-
* 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.
|
|
82163
|
-
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
82164
|
-
* @memberof AIApiGetAllEntitiesOrgMemoryItems
|
|
82165
|
-
*/
|
|
82166
|
-
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
82167
|
-
/**
|
|
82168
|
-
* Zero-based page index (0..N)
|
|
82169
|
-
* @type {number}
|
|
82170
|
-
* @memberof AIApiGetAllEntitiesOrgMemoryItems
|
|
82171
|
-
*/
|
|
82172
|
-
readonly page?: number;
|
|
82173
|
-
/**
|
|
82174
|
-
* The size of the page to be returned
|
|
82175
|
-
* @type {number}
|
|
82176
|
-
* @memberof AIApiGetAllEntitiesOrgMemoryItems
|
|
82177
|
-
*/
|
|
82178
|
-
readonly size?: number;
|
|
82179
|
-
/**
|
|
82180
|
-
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
82181
|
-
* @type {Array<string>}
|
|
82182
|
-
* @memberof AIApiGetAllEntitiesOrgMemoryItems
|
|
82183
|
-
*/
|
|
82184
|
-
readonly sort?: Array<string>;
|
|
82185
|
-
/**
|
|
82186
|
-
* Include Meta objects.
|
|
82187
|
-
* @type {Array<'page' | 'all' | 'ALL'>}
|
|
82188
|
-
* @memberof AIApiGetAllEntitiesOrgMemoryItems
|
|
82189
|
-
*/
|
|
82190
|
-
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
82191
|
-
}
|
|
82192
|
-
export interface AIApiGetEntityOrgMemoryItemsRequest {
|
|
82193
|
-
/**
|
|
82194
|
-
*
|
|
82195
|
-
* @type {string}
|
|
82196
|
-
* @memberof AIApiGetEntityOrgMemoryItems
|
|
82197
|
-
*/
|
|
82198
|
-
readonly id: string;
|
|
82199
|
-
/**
|
|
82200
|
-
* 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\').
|
|
82201
|
-
* @type {string}
|
|
82202
|
-
* @memberof AIApiGetEntityOrgMemoryItems
|
|
82203
|
-
*/
|
|
82204
|
-
readonly filter?: string;
|
|
82205
|
-
/**
|
|
82206
|
-
* 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.
|
|
82207
|
-
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
82208
|
-
* @memberof AIApiGetEntityOrgMemoryItems
|
|
82209
|
-
*/
|
|
82210
|
-
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
82211
|
-
}
|
|
82212
|
-
export interface AIApiPatchEntityOrgMemoryItemsRequest {
|
|
82213
|
-
/**
|
|
82214
|
-
*
|
|
82215
|
-
* @type {string}
|
|
82216
|
-
* @memberof AIApiPatchEntityOrgMemoryItems
|
|
82217
|
-
*/
|
|
82218
|
-
readonly id: string;
|
|
82219
|
-
/**
|
|
82220
|
-
*
|
|
82221
|
-
* @type {JsonApiOrgMemoryItemPatchDocument}
|
|
82222
|
-
* @memberof AIApiPatchEntityOrgMemoryItems
|
|
82223
|
-
*/
|
|
82224
|
-
readonly jsonApiOrgMemoryItemPatchDocument: JsonApiOrgMemoryItemPatchDocument;
|
|
82225
|
-
/**
|
|
82226
|
-
* 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\').
|
|
82227
|
-
* @type {string}
|
|
82228
|
-
* @memberof AIApiPatchEntityOrgMemoryItems
|
|
82229
|
-
*/
|
|
82230
|
-
readonly filter?: string;
|
|
82231
|
-
/**
|
|
82232
|
-
* 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.
|
|
82233
|
-
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
82234
|
-
* @memberof AIApiPatchEntityOrgMemoryItems
|
|
82235
|
-
*/
|
|
82236
|
-
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
82237
|
-
}
|
|
82238
|
-
export interface AIApiUpdateEntityOrgMemoryItemsRequest {
|
|
82239
|
-
/**
|
|
82240
|
-
*
|
|
82241
|
-
* @type {string}
|
|
82242
|
-
* @memberof AIApiUpdateEntityOrgMemoryItems
|
|
82243
|
-
*/
|
|
82244
|
-
readonly id: string;
|
|
82245
|
-
/**
|
|
82246
|
-
*
|
|
82247
|
-
* @type {JsonApiOrgMemoryItemInDocument}
|
|
82248
|
-
* @memberof AIApiUpdateEntityOrgMemoryItems
|
|
82249
|
-
*/
|
|
82250
|
-
readonly jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument;
|
|
82251
|
-
/**
|
|
82252
|
-
* 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\').
|
|
82253
|
-
* @type {string}
|
|
82254
|
-
* @memberof AIApiUpdateEntityOrgMemoryItems
|
|
82255
|
-
*/
|
|
82256
|
-
readonly filter?: string;
|
|
82257
|
-
/**
|
|
82258
|
-
* 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.
|
|
82259
|
-
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
82260
|
-
* @memberof AIApiUpdateEntityOrgMemoryItems
|
|
82261
|
-
*/
|
|
82262
|
-
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
82263
|
-
}
|
|
82264
|
-
export declare function EntitiesApiAxiosParamCreator_CreateEntityOrgMemoryItems(jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82265
|
-
export declare function EntitiesApiAxiosParamCreator_DeleteEntityOrgMemoryItems(id: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82266
|
-
export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesOrgMemoryItems(filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82267
|
-
export declare function EntitiesApiAxiosParamCreator_GetEntityOrgMemoryItems(id: string, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82268
|
-
export declare function EntitiesApiAxiosParamCreator_PatchEntityOrgMemoryItems(id: string, jsonApiOrgMemoryItemPatchDocument: JsonApiOrgMemoryItemPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82269
|
-
export declare function EntitiesApiAxiosParamCreator_UpdateEntityOrgMemoryItems(id: string, jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82270
|
-
export declare function EntitiesApi_CreateEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiCreateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82271
|
-
export declare function EntitiesApi_DeleteEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiDeleteEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
82272
|
-
export declare function EntitiesApi_GetAllEntitiesOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetAllEntitiesOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutList>;
|
|
82273
|
-
export declare function EntitiesApi_GetEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82274
|
-
export declare function EntitiesApi_PatchEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiPatchEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82275
|
-
export declare function EntitiesApi_UpdateEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiUpdateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82276
|
-
export interface EntitiesApiCreateEntityOrgMemoryItemsRequest {
|
|
82277
|
-
/**
|
|
82278
|
-
*
|
|
82279
|
-
* @type {JsonApiOrgMemoryItemInDocument}
|
|
82280
|
-
* @memberof EntitiesApiCreateEntityOrgMemoryItems
|
|
82281
|
-
*/
|
|
82282
|
-
readonly jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument;
|
|
82283
|
-
/**
|
|
82284
|
-
* 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.
|
|
82285
|
-
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
82286
|
-
* @memberof EntitiesApiCreateEntityOrgMemoryItems
|
|
82287
|
-
*/
|
|
82288
|
-
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
82289
|
-
}
|
|
82290
|
-
export interface EntitiesApiDeleteEntityOrgMemoryItemsRequest {
|
|
82291
|
-
/**
|
|
82292
|
-
*
|
|
82293
|
-
* @type {string}
|
|
82294
|
-
* @memberof EntitiesApiDeleteEntityOrgMemoryItems
|
|
82295
|
-
*/
|
|
82296
|
-
readonly id: string;
|
|
82297
|
-
}
|
|
82298
|
-
export interface EntitiesApiGetAllEntitiesOrgMemoryItemsRequest {
|
|
82299
|
-
/**
|
|
82300
|
-
* 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\').
|
|
82301
|
-
* @type {string}
|
|
82302
|
-
* @memberof EntitiesApiGetAllEntitiesOrgMemoryItems
|
|
82303
|
-
*/
|
|
82304
|
-
readonly filter?: string;
|
|
82305
|
-
/**
|
|
82306
|
-
* 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.
|
|
82307
|
-
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
82308
|
-
* @memberof EntitiesApiGetAllEntitiesOrgMemoryItems
|
|
82309
|
-
*/
|
|
82310
|
-
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
82311
|
-
/**
|
|
82312
|
-
* Zero-based page index (0..N)
|
|
82313
|
-
* @type {number}
|
|
82314
|
-
* @memberof EntitiesApiGetAllEntitiesOrgMemoryItems
|
|
82315
|
-
*/
|
|
82316
|
-
readonly page?: number;
|
|
82317
|
-
/**
|
|
82318
|
-
* The size of the page to be returned
|
|
82319
|
-
* @type {number}
|
|
82320
|
-
* @memberof EntitiesApiGetAllEntitiesOrgMemoryItems
|
|
82321
|
-
*/
|
|
82322
|
-
readonly size?: number;
|
|
82323
|
-
/**
|
|
82324
|
-
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
82325
|
-
* @type {Array<string>}
|
|
82326
|
-
* @memberof EntitiesApiGetAllEntitiesOrgMemoryItems
|
|
82327
|
-
*/
|
|
82328
|
-
readonly sort?: Array<string>;
|
|
82329
|
-
/**
|
|
82330
|
-
* Include Meta objects.
|
|
82331
|
-
* @type {Array<'page' | 'all' | 'ALL'>}
|
|
82332
|
-
* @memberof EntitiesApiGetAllEntitiesOrgMemoryItems
|
|
82333
|
-
*/
|
|
82334
|
-
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
82335
|
-
}
|
|
82336
|
-
export interface EntitiesApiGetEntityOrgMemoryItemsRequest {
|
|
82337
|
-
/**
|
|
82338
|
-
*
|
|
82339
|
-
* @type {string}
|
|
82340
|
-
* @memberof EntitiesApiGetEntityOrgMemoryItems
|
|
82341
|
-
*/
|
|
82342
|
-
readonly id: string;
|
|
82343
|
-
/**
|
|
82344
|
-
* 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\').
|
|
82345
|
-
* @type {string}
|
|
82346
|
-
* @memberof EntitiesApiGetEntityOrgMemoryItems
|
|
82347
|
-
*/
|
|
82348
|
-
readonly filter?: string;
|
|
82349
|
-
/**
|
|
82350
|
-
* 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.
|
|
82351
|
-
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
82352
|
-
* @memberof EntitiesApiGetEntityOrgMemoryItems
|
|
82353
|
-
*/
|
|
82354
|
-
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
82355
|
-
}
|
|
82356
|
-
export interface EntitiesApiPatchEntityOrgMemoryItemsRequest {
|
|
82357
|
-
/**
|
|
82358
|
-
*
|
|
82359
|
-
* @type {string}
|
|
82360
|
-
* @memberof EntitiesApiPatchEntityOrgMemoryItems
|
|
82361
|
-
*/
|
|
82362
|
-
readonly id: string;
|
|
82363
|
-
/**
|
|
82364
|
-
*
|
|
82365
|
-
* @type {JsonApiOrgMemoryItemPatchDocument}
|
|
82366
|
-
* @memberof EntitiesApiPatchEntityOrgMemoryItems
|
|
82367
|
-
*/
|
|
82368
|
-
readonly jsonApiOrgMemoryItemPatchDocument: JsonApiOrgMemoryItemPatchDocument;
|
|
82369
|
-
/**
|
|
82370
|
-
* 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\').
|
|
82371
|
-
* @type {string}
|
|
82372
|
-
* @memberof EntitiesApiPatchEntityOrgMemoryItems
|
|
82373
|
-
*/
|
|
82374
|
-
readonly filter?: string;
|
|
82375
|
-
/**
|
|
82376
|
-
* 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.
|
|
82377
|
-
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
82378
|
-
* @memberof EntitiesApiPatchEntityOrgMemoryItems
|
|
82379
|
-
*/
|
|
82380
|
-
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
82381
|
-
}
|
|
82382
|
-
export interface EntitiesApiUpdateEntityOrgMemoryItemsRequest {
|
|
82383
|
-
/**
|
|
82384
|
-
*
|
|
82385
|
-
* @type {string}
|
|
82386
|
-
* @memberof EntitiesApiUpdateEntityOrgMemoryItems
|
|
82387
|
-
*/
|
|
82388
|
-
readonly id: string;
|
|
82389
|
-
/**
|
|
82390
|
-
*
|
|
82391
|
-
* @type {JsonApiOrgMemoryItemInDocument}
|
|
82392
|
-
* @memberof EntitiesApiUpdateEntityOrgMemoryItems
|
|
82393
|
-
*/
|
|
82394
|
-
readonly jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument;
|
|
82395
|
-
/**
|
|
82396
|
-
* 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\').
|
|
82397
|
-
* @type {string}
|
|
82398
|
-
* @memberof EntitiesApiUpdateEntityOrgMemoryItems
|
|
82399
|
-
*/
|
|
82400
|
-
readonly filter?: string;
|
|
82401
|
-
/**
|
|
82402
|
-
* 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.
|
|
82403
|
-
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
82404
|
-
* @memberof EntitiesApiUpdateEntityOrgMemoryItems
|
|
82405
|
-
*/
|
|
82406
|
-
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
82407
|
-
}
|
|
82408
|
-
export declare function OrgMemoryItemControllerApiAxiosParamCreator_CreateEntityOrgMemoryItems(jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82409
|
-
export declare function OrgMemoryItemControllerApiAxiosParamCreator_DeleteEntityOrgMemoryItems(id: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82410
|
-
export declare function OrgMemoryItemControllerApiAxiosParamCreator_GetAllEntitiesOrgMemoryItems(filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82411
|
-
export declare function OrgMemoryItemControllerApiAxiosParamCreator_GetEntityOrgMemoryItems(id: string, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82412
|
-
export declare function OrgMemoryItemControllerApiAxiosParamCreator_PatchEntityOrgMemoryItems(id: string, jsonApiOrgMemoryItemPatchDocument: JsonApiOrgMemoryItemPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82413
|
-
export declare function OrgMemoryItemControllerApiAxiosParamCreator_UpdateEntityOrgMemoryItems(id: string, jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82414
|
-
export declare function OrgMemoryItemControllerApi_CreateEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: OrgMemoryItemControllerApiCreateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82415
|
-
export declare function OrgMemoryItemControllerApi_DeleteEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: OrgMemoryItemControllerApiDeleteEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
82416
|
-
export declare function OrgMemoryItemControllerApi_GetAllEntitiesOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutList>;
|
|
82417
|
-
export declare function OrgMemoryItemControllerApi_GetEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: OrgMemoryItemControllerApiGetEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82418
|
-
export declare function OrgMemoryItemControllerApi_PatchEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: OrgMemoryItemControllerApiPatchEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82419
|
-
export declare function OrgMemoryItemControllerApi_UpdateEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: OrgMemoryItemControllerApiUpdateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82420
|
-
export interface OrgMemoryItemControllerApiInterface {
|
|
82421
|
-
/**
|
|
82422
|
-
* Organization-scoped AI memory item
|
|
82423
|
-
* @summary Post organization Memory Item entities
|
|
82424
|
-
* @param {OrgMemoryItemControllerApiCreateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
82425
|
-
* @param {*} [options] Override http request option.
|
|
82426
|
-
* @throws {RequiredError}
|
|
82427
|
-
* @memberof OrgMemoryItemControllerApiInterface
|
|
82428
|
-
*/
|
|
82429
|
-
createEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiCreateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82430
|
-
/**
|
|
82431
|
-
*
|
|
82432
|
-
* @summary Delete an organization Memory Item entity
|
|
82433
|
-
* @param {OrgMemoryItemControllerApiDeleteEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
82434
|
-
* @param {*} [options] Override http request option.
|
|
82435
|
-
* @throws {RequiredError}
|
|
82436
|
-
* @memberof OrgMemoryItemControllerApiInterface
|
|
82437
|
-
*/
|
|
82438
|
-
deleteEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiDeleteEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
82439
|
-
/**
|
|
82440
|
-
*
|
|
82441
|
-
* @summary Get all organization Memory Item entities
|
|
82442
|
-
* @param {OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
82443
|
-
* @param {*} [options] Override http request option.
|
|
82444
|
-
* @throws {RequiredError}
|
|
82445
|
-
* @memberof OrgMemoryItemControllerApiInterface
|
|
82446
|
-
*/
|
|
82447
|
-
getAllEntitiesOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutList>;
|
|
82448
|
-
/**
|
|
82449
|
-
*
|
|
82450
|
-
* @summary Get an organization Memory Item entity
|
|
82451
|
-
* @param {OrgMemoryItemControllerApiGetEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
82452
|
-
* @param {*} [options] Override http request option.
|
|
82453
|
-
* @throws {RequiredError}
|
|
82454
|
-
* @memberof OrgMemoryItemControllerApiInterface
|
|
82455
|
-
*/
|
|
82456
|
-
getEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiGetEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82457
|
-
/**
|
|
82458
|
-
*
|
|
82459
|
-
* @summary Patch an organization Memory Item entity
|
|
82460
|
-
* @param {OrgMemoryItemControllerApiPatchEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
82461
|
-
* @param {*} [options] Override http request option.
|
|
82462
|
-
* @throws {RequiredError}
|
|
82463
|
-
* @memberof OrgMemoryItemControllerApiInterface
|
|
82464
|
-
*/
|
|
82465
|
-
patchEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiPatchEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82466
|
-
/**
|
|
82467
|
-
*
|
|
82468
|
-
* @summary Put an organization Memory Item entity
|
|
82469
|
-
* @param {OrgMemoryItemControllerApiUpdateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
82470
|
-
* @param {*} [options] Override http request option.
|
|
82471
|
-
* @throws {RequiredError}
|
|
82472
|
-
* @memberof OrgMemoryItemControllerApiInterface
|
|
82473
|
-
*/
|
|
82474
|
-
updateEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiUpdateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82475
|
-
}
|
|
82476
|
-
export interface OrgMemoryItemControllerApiCreateEntityOrgMemoryItemsRequest {
|
|
82477
|
-
/**
|
|
82478
|
-
*
|
|
82479
|
-
* @type {JsonApiOrgMemoryItemInDocument}
|
|
82480
|
-
* @memberof OrgMemoryItemControllerApiCreateEntityOrgMemoryItems
|
|
82481
|
-
*/
|
|
82482
|
-
readonly jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument;
|
|
82483
|
-
/**
|
|
82484
|
-
* 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.
|
|
82485
|
-
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
82486
|
-
* @memberof OrgMemoryItemControllerApiCreateEntityOrgMemoryItems
|
|
82487
|
-
*/
|
|
82488
|
-
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
82489
|
-
}
|
|
82490
|
-
export interface OrgMemoryItemControllerApiDeleteEntityOrgMemoryItemsRequest {
|
|
82491
|
-
/**
|
|
82492
|
-
*
|
|
82493
|
-
* @type {string}
|
|
82494
|
-
* @memberof OrgMemoryItemControllerApiDeleteEntityOrgMemoryItems
|
|
82495
|
-
*/
|
|
82496
|
-
readonly id: string;
|
|
82497
|
-
}
|
|
82498
|
-
export interface OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItemsRequest {
|
|
82499
|
-
/**
|
|
82500
|
-
* 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\').
|
|
82501
|
-
* @type {string}
|
|
82502
|
-
* @memberof OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItems
|
|
82503
|
-
*/
|
|
82504
|
-
readonly filter?: string;
|
|
82505
|
-
/**
|
|
82506
|
-
* 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.
|
|
82507
|
-
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
82508
|
-
* @memberof OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItems
|
|
82509
|
-
*/
|
|
82510
|
-
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
82511
|
-
/**
|
|
82512
|
-
* Zero-based page index (0..N)
|
|
82513
|
-
* @type {number}
|
|
82514
|
-
* @memberof OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItems
|
|
82515
|
-
*/
|
|
82516
|
-
readonly page?: number;
|
|
82517
|
-
/**
|
|
82518
|
-
* The size of the page to be returned
|
|
82519
|
-
* @type {number}
|
|
82520
|
-
* @memberof OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItems
|
|
82521
|
-
*/
|
|
82522
|
-
readonly size?: number;
|
|
82523
|
-
/**
|
|
82524
|
-
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
82525
|
-
* @type {Array<string>}
|
|
82526
|
-
* @memberof OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItems
|
|
82527
|
-
*/
|
|
82528
|
-
readonly sort?: Array<string>;
|
|
82529
|
-
/**
|
|
82530
|
-
* Include Meta objects.
|
|
82531
|
-
* @type {Array<'page' | 'all' | 'ALL'>}
|
|
82532
|
-
* @memberof OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItems
|
|
82533
|
-
*/
|
|
82534
|
-
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
82535
|
-
}
|
|
82536
|
-
export interface OrgMemoryItemControllerApiGetEntityOrgMemoryItemsRequest {
|
|
82537
|
-
/**
|
|
82538
|
-
*
|
|
82539
|
-
* @type {string}
|
|
82540
|
-
* @memberof OrgMemoryItemControllerApiGetEntityOrgMemoryItems
|
|
82541
|
-
*/
|
|
82542
|
-
readonly id: string;
|
|
82543
|
-
/**
|
|
82544
|
-
* 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\').
|
|
82545
|
-
* @type {string}
|
|
82546
|
-
* @memberof OrgMemoryItemControllerApiGetEntityOrgMemoryItems
|
|
82547
|
-
*/
|
|
82548
|
-
readonly filter?: string;
|
|
82549
|
-
/**
|
|
82550
|
-
* 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.
|
|
82551
|
-
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
82552
|
-
* @memberof OrgMemoryItemControllerApiGetEntityOrgMemoryItems
|
|
82553
|
-
*/
|
|
82554
|
-
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
82555
|
-
}
|
|
82556
|
-
export interface OrgMemoryItemControllerApiPatchEntityOrgMemoryItemsRequest {
|
|
82557
|
-
/**
|
|
82558
|
-
*
|
|
82559
|
-
* @type {string}
|
|
82560
|
-
* @memberof OrgMemoryItemControllerApiPatchEntityOrgMemoryItems
|
|
82561
|
-
*/
|
|
82562
|
-
readonly id: string;
|
|
82563
|
-
/**
|
|
82564
|
-
*
|
|
82565
|
-
* @type {JsonApiOrgMemoryItemPatchDocument}
|
|
82566
|
-
* @memberof OrgMemoryItemControllerApiPatchEntityOrgMemoryItems
|
|
82567
|
-
*/
|
|
82568
|
-
readonly jsonApiOrgMemoryItemPatchDocument: JsonApiOrgMemoryItemPatchDocument;
|
|
82569
|
-
/**
|
|
82570
|
-
* 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\').
|
|
82571
|
-
* @type {string}
|
|
82572
|
-
* @memberof OrgMemoryItemControllerApiPatchEntityOrgMemoryItems
|
|
82573
|
-
*/
|
|
82574
|
-
readonly filter?: string;
|
|
82575
|
-
/**
|
|
82576
|
-
* 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.
|
|
82577
|
-
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
82578
|
-
* @memberof OrgMemoryItemControllerApiPatchEntityOrgMemoryItems
|
|
82579
|
-
*/
|
|
82580
|
-
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
82581
|
-
}
|
|
82582
|
-
export interface OrgMemoryItemControllerApiUpdateEntityOrgMemoryItemsRequest {
|
|
82583
|
-
/**
|
|
82584
|
-
*
|
|
82585
|
-
* @type {string}
|
|
82586
|
-
* @memberof OrgMemoryItemControllerApiUpdateEntityOrgMemoryItems
|
|
82587
|
-
*/
|
|
82588
|
-
readonly id: string;
|
|
82589
|
-
/**
|
|
82590
|
-
*
|
|
82591
|
-
* @type {JsonApiOrgMemoryItemInDocument}
|
|
82592
|
-
* @memberof OrgMemoryItemControllerApiUpdateEntityOrgMemoryItems
|
|
82593
|
-
*/
|
|
82594
|
-
readonly jsonApiOrgMemoryItemInDocument: JsonApiOrgMemoryItemInDocument;
|
|
82595
|
-
/**
|
|
82596
|
-
* 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\').
|
|
82597
|
-
* @type {string}
|
|
82598
|
-
* @memberof OrgMemoryItemControllerApiUpdateEntityOrgMemoryItems
|
|
82599
|
-
*/
|
|
82600
|
-
readonly filter?: string;
|
|
82601
|
-
/**
|
|
82602
|
-
* 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.
|
|
82603
|
-
* @type {Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>}
|
|
82604
|
-
* @memberof OrgMemoryItemControllerApiUpdateEntityOrgMemoryItems
|
|
82605
|
-
*/
|
|
82606
|
-
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
82607
|
-
}
|
|
82608
|
-
export declare class OrgMemoryItemControllerApi extends BaseAPI implements OrgMemoryItemControllerApiInterface {
|
|
82609
|
-
/**
|
|
82610
|
-
* Organization-scoped AI memory item
|
|
82611
|
-
* @summary Post organization Memory Item entities
|
|
82612
|
-
* @param {OrgMemoryItemControllerApiCreateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
82613
|
-
* @param {*} [options] Override http request option.
|
|
82614
|
-
* @throws {RequiredError}
|
|
82615
|
-
* @memberof OrgMemoryItemControllerApi
|
|
82616
|
-
*/
|
|
82617
|
-
createEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiCreateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82618
|
-
/**
|
|
82619
|
-
*
|
|
82620
|
-
* @summary Delete an organization Memory Item entity
|
|
82621
|
-
* @param {OrgMemoryItemControllerApiDeleteEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
82622
|
-
* @param {*} [options] Override http request option.
|
|
82623
|
-
* @throws {RequiredError}
|
|
82624
|
-
* @memberof OrgMemoryItemControllerApi
|
|
82625
|
-
*/
|
|
82626
|
-
deleteEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiDeleteEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
82627
|
-
/**
|
|
82628
|
-
*
|
|
82629
|
-
* @summary Get all organization Memory Item entities
|
|
82630
|
-
* @param {OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
82631
|
-
* @param {*} [options] Override http request option.
|
|
82632
|
-
* @throws {RequiredError}
|
|
82633
|
-
* @memberof OrgMemoryItemControllerApi
|
|
82634
|
-
*/
|
|
82635
|
-
getAllEntitiesOrgMemoryItems(requestParameters?: OrgMemoryItemControllerApiGetAllEntitiesOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutList>;
|
|
82636
|
-
/**
|
|
82637
|
-
*
|
|
82638
|
-
* @summary Get an organization Memory Item entity
|
|
82639
|
-
* @param {OrgMemoryItemControllerApiGetEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
82640
|
-
* @param {*} [options] Override http request option.
|
|
82641
|
-
* @throws {RequiredError}
|
|
82642
|
-
* @memberof OrgMemoryItemControllerApi
|
|
82643
|
-
*/
|
|
82644
|
-
getEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiGetEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82645
|
-
/**
|
|
82646
|
-
*
|
|
82647
|
-
* @summary Patch an organization Memory Item entity
|
|
82648
|
-
* @param {OrgMemoryItemControllerApiPatchEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
82649
|
-
* @param {*} [options] Override http request option.
|
|
82650
|
-
* @throws {RequiredError}
|
|
82651
|
-
* @memberof OrgMemoryItemControllerApi
|
|
82652
|
-
*/
|
|
82653
|
-
patchEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiPatchEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82654
|
-
/**
|
|
82655
|
-
*
|
|
82656
|
-
* @summary Put an organization Memory Item entity
|
|
82657
|
-
* @param {OrgMemoryItemControllerApiUpdateEntityOrgMemoryItemsRequest} requestParameters Request parameters.
|
|
82658
|
-
* @param {*} [options] Override http request option.
|
|
82659
|
-
* @throws {RequiredError}
|
|
82660
|
-
* @memberof OrgMemoryItemControllerApi
|
|
82661
|
-
*/
|
|
82662
|
-
updateEntityOrgMemoryItems(requestParameters: OrgMemoryItemControllerApiUpdateEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
82663
|
-
}
|
|
82664
83375
|
//# sourceMappingURL=api.d.ts.map
|