@gooddata/api-client-tiger 11.42.0-alpha.3 → 11.42.0-alpha.5

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.
@@ -9974,6 +9974,10 @@ export interface RankingFilterRankingFilter {
9974
9974
  'value': number;
9975
9975
  'localIdentifier'?: string;
9976
9976
  'applyOnResult'?: boolean;
9977
+ /**
9978
+ * When true, filter returns requested number of rows at most. Default is false.
9979
+ */
9980
+ 'strictLimitOfRows'?: boolean;
9977
9981
  }
9978
9982
  export type RankingFilterRankingFilterOperatorEnum = 'TOP' | 'BOTTOM';
9979
9983
  /**
@@ -81964,4 +81968,697 @@ export declare class WorkspacesSettingsApi extends BaseAPI implements Workspaces
81964
81968
  */
81965
81969
  workspaceResolveSettings(requestParameters: WorkspacesSettingsApiWorkspaceResolveSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedSetting[]>;
81966
81970
  }
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&#x3D;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 \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;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&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
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&#x3D;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 \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;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&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
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&#x3D;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 \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;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&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
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&#x3D;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 \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;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&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
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&#x3D;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 \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;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&#x3D;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 \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;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&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
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&#x3D;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 \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;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&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
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&#x3D;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 \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;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&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
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&#x3D;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 \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;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&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
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&#x3D;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 \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;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&#x3D;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 \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;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&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
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&#x3D;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 \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;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&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
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&#x3D;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 \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;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&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
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&#x3D;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 \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;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&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
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&#x3D;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 \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;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
+ }
81967
82664
  //# sourceMappingURL=api.d.ts.map