@aws-sdk/client-bedrock-agentcore 3.1038.0 → 3.1040.0

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.
Files changed (88) hide show
  1. package/README.md +105 -7
  2. package/dist-cjs/index.js +275 -0
  3. package/dist-cjs/schemas/schemas_0.js +851 -99
  4. package/dist-es/BedrockAgentCore.js +34 -0
  5. package/dist-es/commands/CreateABTestCommand.js +16 -0
  6. package/dist-es/commands/DeleteABTestCommand.js +16 -0
  7. package/dist-es/commands/DeleteBatchEvaluationCommand.js +16 -0
  8. package/dist-es/commands/DeleteRecommendationCommand.js +16 -0
  9. package/dist-es/commands/GetABTestCommand.js +16 -0
  10. package/dist-es/commands/GetBatchEvaluationCommand.js +16 -0
  11. package/dist-es/commands/GetRecommendationCommand.js +16 -0
  12. package/dist-es/commands/ListABTestsCommand.js +16 -0
  13. package/dist-es/commands/ListBatchEvaluationsCommand.js +16 -0
  14. package/dist-es/commands/ListRecommendationsCommand.js +16 -0
  15. package/dist-es/commands/StartBatchEvaluationCommand.js +16 -0
  16. package/dist-es/commands/StartRecommendationCommand.js +16 -0
  17. package/dist-es/commands/StopBatchEvaluationCommand.js +16 -0
  18. package/dist-es/commands/UpdateABTestCommand.js +16 -0
  19. package/dist-es/commands/index.js +14 -0
  20. package/dist-es/index.js +1 -0
  21. package/dist-es/models/enums.js +60 -0
  22. package/dist-es/models/models_1.js +1 -0
  23. package/dist-es/pagination/ListABTestsPaginator.js +4 -0
  24. package/dist-es/pagination/ListBatchEvaluationsPaginator.js +4 -0
  25. package/dist-es/pagination/ListRecommendationsPaginator.js +4 -0
  26. package/dist-es/pagination/index.js +3 -0
  27. package/dist-es/schemas/schemas_0.js +843 -93
  28. package/dist-types/BedrockAgentCore.d.ts +122 -0
  29. package/dist-types/BedrockAgentCoreClient.d.ts +16 -2
  30. package/dist-types/commands/BatchCreateMemoryRecordsCommand.d.ts +10 -0
  31. package/dist-types/commands/BatchUpdateMemoryRecordsCommand.d.ts +10 -0
  32. package/dist-types/commands/CreateABTestCommand.d.ts +134 -0
  33. package/dist-types/commands/DeleteABTestCommand.d.ts +97 -0
  34. package/dist-types/commands/DeleteBatchEvaluationCommand.d.ts +97 -0
  35. package/dist-types/commands/DeleteRecommendationCommand.d.ts +93 -0
  36. package/dist-types/commands/GetABTestCommand.d.ts +165 -0
  37. package/dist-types/commands/GetBatchEvaluationCommand.d.ts +148 -0
  38. package/dist-types/commands/GetMemoryRecordCommand.d.ts +7 -2
  39. package/dist-types/commands/GetRecommendationCommand.d.ts +220 -0
  40. package/dist-types/commands/GetResourceOauth2TokenCommand.d.ts +7 -1
  41. package/dist-types/commands/ListABTestsCommand.d.ts +103 -0
  42. package/dist-types/commands/ListBatchEvaluationsCommand.d.ts +126 -0
  43. package/dist-types/commands/ListMemoryRecordsCommand.d.ts +25 -2
  44. package/dist-types/commands/ListRecommendationsCommand.d.ts +100 -0
  45. package/dist-types/commands/RetrieveMemoryRecordsCommand.d.ts +16 -6
  46. package/dist-types/commands/SearchRegistryRecordsCommand.d.ts +2 -1
  47. package/dist-types/commands/StartBatchEvaluationCommand.d.ts +172 -0
  48. package/dist-types/commands/StartRecommendationCommand.d.ts +300 -0
  49. package/dist-types/commands/StopBatchEvaluationCommand.d.ts +98 -0
  50. package/dist-types/commands/UpdateABTestCommand.d.ts +136 -0
  51. package/dist-types/commands/index.d.ts +14 -0
  52. package/dist-types/index.d.ts +1 -0
  53. package/dist-types/models/enums.d.ts +116 -0
  54. package/dist-types/models/models_0.d.ts +2595 -386
  55. package/dist-types/models/models_1.d.ts +147 -0
  56. package/dist-types/pagination/ListABTestsPaginator.d.ts +7 -0
  57. package/dist-types/pagination/ListBatchEvaluationsPaginator.d.ts +7 -0
  58. package/dist-types/pagination/ListRecommendationsPaginator.d.ts +7 -0
  59. package/dist-types/pagination/index.d.ts +3 -0
  60. package/dist-types/schemas/schemas_0.d.ts +99 -0
  61. package/dist-types/ts3.4/BedrockAgentCore.d.ts +262 -0
  62. package/dist-types/ts3.4/BedrockAgentCoreClient.d.ts +84 -0
  63. package/dist-types/ts3.4/commands/CreateABTestCommand.d.ts +47 -0
  64. package/dist-types/ts3.4/commands/DeleteABTestCommand.d.ts +47 -0
  65. package/dist-types/ts3.4/commands/DeleteBatchEvaluationCommand.d.ts +51 -0
  66. package/dist-types/ts3.4/commands/DeleteRecommendationCommand.d.ts +51 -0
  67. package/dist-types/ts3.4/commands/GetABTestCommand.d.ts +47 -0
  68. package/dist-types/ts3.4/commands/GetBatchEvaluationCommand.d.ts +51 -0
  69. package/dist-types/ts3.4/commands/GetRecommendationCommand.d.ts +51 -0
  70. package/dist-types/ts3.4/commands/ListABTestsCommand.d.ts +47 -0
  71. package/dist-types/ts3.4/commands/ListBatchEvaluationsCommand.d.ts +51 -0
  72. package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +51 -0
  73. package/dist-types/ts3.4/commands/SearchRegistryRecordsCommand.d.ts +2 -4
  74. package/dist-types/ts3.4/commands/StartBatchEvaluationCommand.d.ts +51 -0
  75. package/dist-types/ts3.4/commands/StartRecommendationCommand.d.ts +51 -0
  76. package/dist-types/ts3.4/commands/StopBatchEvaluationCommand.d.ts +51 -0
  77. package/dist-types/ts3.4/commands/UpdateABTestCommand.d.ts +47 -0
  78. package/dist-types/ts3.4/commands/index.d.ts +14 -0
  79. package/dist-types/ts3.4/index.d.ts +1 -0
  80. package/dist-types/ts3.4/models/enums.d.ts +73 -0
  81. package/dist-types/ts3.4/models/models_0.d.ts +801 -43
  82. package/dist-types/ts3.4/models/models_1.d.ts +40 -0
  83. package/dist-types/ts3.4/pagination/ListABTestsPaginator.d.ts +11 -0
  84. package/dist-types/ts3.4/pagination/ListBatchEvaluationsPaginator.d.ts +11 -0
  85. package/dist-types/ts3.4/pagination/ListRecommendationsPaginator.d.ts +11 -0
  86. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  87. package/dist-types/ts3.4/schemas/schemas_0.d.ts +99 -0
  88. package/package.json +7 -7
@@ -0,0 +1,136 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient";
4
+ import type { UpdateABTestRequest, UpdateABTestResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateABTestCommand}.
14
+ */
15
+ export interface UpdateABTestCommandInput extends UpdateABTestRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateABTestCommand}.
21
+ */
22
+ export interface UpdateABTestCommandOutput extends UpdateABTestResponse, __MetadataBearer {
23
+ }
24
+ declare const UpdateABTestCommand_base: {
25
+ new (input: UpdateABTestCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateABTestCommandInput, UpdateABTestCommandOutput, BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: UpdateABTestCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateABTestCommandInput, UpdateABTestCommandOutput, BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Updates an A/B test's configuration, including variants, traffic allocation, evaluation settings, or execution status.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { BedrockAgentCoreClient, UpdateABTestCommand } from "@aws-sdk/client-bedrock-agentcore"; // ES Modules import
35
+ * // const { BedrockAgentCoreClient, UpdateABTestCommand } = require("@aws-sdk/client-bedrock-agentcore"); // CommonJS import
36
+ * // import type { BedrockAgentCoreClientConfig } from "@aws-sdk/client-bedrock-agentcore";
37
+ * const config = {}; // type is BedrockAgentCoreClientConfig
38
+ * const client = new BedrockAgentCoreClient(config);
39
+ * const input = { // UpdateABTestRequest
40
+ * abTestId: "STRING_VALUE", // required
41
+ * clientToken: "STRING_VALUE",
42
+ * name: "STRING_VALUE",
43
+ * description: "STRING_VALUE",
44
+ * variants: [ // VariantList
45
+ * { // Variant
46
+ * name: "STRING_VALUE", // required
47
+ * weight: Number("int"), // required
48
+ * variantConfiguration: { // VariantConfiguration
49
+ * configurationBundle: { // ConfigurationBundleRef
50
+ * bundleArn: "STRING_VALUE", // required
51
+ * bundleVersion: "STRING_VALUE", // required
52
+ * },
53
+ * target: { // TargetRef
54
+ * name: "STRING_VALUE", // required
55
+ * },
56
+ * },
57
+ * },
58
+ * ],
59
+ * gatewayFilter: { // GatewayFilter
60
+ * targetPaths: [ // TargetPathList
61
+ * "STRING_VALUE",
62
+ * ],
63
+ * },
64
+ * evaluationConfig: { // ABTestEvaluationConfig Union: only one key present
65
+ * onlineEvaluationConfigArn: "STRING_VALUE",
66
+ * perVariantOnlineEvaluationConfig: [ // PerVariantOnlineEvaluationConfigList
67
+ * { // PerVariantOnlineEvaluationConfig
68
+ * name: "STRING_VALUE", // required
69
+ * onlineEvaluationConfigArn: "STRING_VALUE", // required
70
+ * },
71
+ * ],
72
+ * },
73
+ * roleArn: "STRING_VALUE",
74
+ * executionStatus: "PAUSED" || "RUNNING" || "STOPPED" || "NOT_STARTED",
75
+ * };
76
+ * const command = new UpdateABTestCommand(input);
77
+ * const response = await client.send(command);
78
+ * // { // UpdateABTestResponse
79
+ * // abTestId: "STRING_VALUE", // required
80
+ * // abTestArn: "STRING_VALUE", // required
81
+ * // status: "CREATING" || "ACTIVE" || "CREATE_FAILED" || "UPDATING" || "UPDATE_FAILED" || "DELETING" || "DELETE_FAILED" || "FAILED", // required
82
+ * // executionStatus: "PAUSED" || "RUNNING" || "STOPPED" || "NOT_STARTED", // required
83
+ * // updatedAt: new Date("TIMESTAMP"), // required
84
+ * // };
85
+ *
86
+ * ```
87
+ *
88
+ * @param UpdateABTestCommandInput - {@link UpdateABTestCommandInput}
89
+ * @returns {@link UpdateABTestCommandOutput}
90
+ * @see {@link UpdateABTestCommandInput} for command's `input` shape.
91
+ * @see {@link UpdateABTestCommandOutput} for command's `response` shape.
92
+ * @see {@link BedrockAgentCoreClientResolvedConfig | config} for BedrockAgentCoreClient's `config` shape.
93
+ *
94
+ * @throws {@link AccessDeniedException} (client fault)
95
+ * <p>The exception that occurs when you do not have sufficient permissions to perform an action. Verify that your IAM policy includes the necessary permissions for the operation you are trying to perform.</p>
96
+ *
97
+ * @throws {@link ConflictException} (client fault)
98
+ * <p>The exception that occurs when the request conflicts with the current state of the resource. This can happen when trying to modify a resource that is currently being modified by another request, or when trying to create a resource that already exists.</p>
99
+ *
100
+ * @throws {@link InternalServerException} (server fault)
101
+ * <p>The exception that occurs when the service encounters an unexpected internal error. This is a temporary condition that will resolve itself with retries. We recommend implementing exponential backoff retry logic in your application.</p>
102
+ *
103
+ * @throws {@link ResourceNotFoundException} (client fault)
104
+ * <p>The exception that occurs when the specified resource does not exist. This can happen when using an invalid identifier or when trying to access a resource that has been deleted.</p>
105
+ *
106
+ * @throws {@link ServiceQuotaExceededException} (client fault)
107
+ * <p>The exception that occurs when the request would cause a service quota to be exceeded. Review your service quotas and either reduce your request rate or request a quota increase.</p>
108
+ *
109
+ * @throws {@link ThrottlingException} (client fault)
110
+ * <p>The exception that occurs when the request was denied due to request throttling. This happens when you exceed the allowed request rate for an operation. Reduce the frequency of requests or implement exponential backoff retry logic in your application.</p>
111
+ *
112
+ * @throws {@link UnauthorizedException} (client fault)
113
+ * <p>This exception is thrown when the JWT bearer token is invalid or not found for OAuth bearer token based access</p>
114
+ *
115
+ * @throws {@link ValidationException} (client fault)
116
+ * <p>The exception that occurs when the input fails to satisfy the constraints specified by the service. Check the error message for details about which input parameter is invalid and correct your request.</p>
117
+ *
118
+ * @throws {@link BedrockAgentCoreServiceException}
119
+ * <p>Base exception class for all service exceptions from BedrockAgentCore service.</p>
120
+ *
121
+ *
122
+ * @public
123
+ */
124
+ export declare class UpdateABTestCommand extends UpdateABTestCommand_base {
125
+ /** @internal type navigation helper, not in runtime. */
126
+ protected static __types: {
127
+ api: {
128
+ input: UpdateABTestRequest;
129
+ output: UpdateABTestResponse;
130
+ };
131
+ sdk: {
132
+ input: UpdateABTestCommandInput;
133
+ output: UpdateABTestCommandOutput;
134
+ };
135
+ };
136
+ }
@@ -2,15 +2,22 @@ export * from "./BatchCreateMemoryRecordsCommand";
2
2
  export * from "./BatchDeleteMemoryRecordsCommand";
3
3
  export * from "./BatchUpdateMemoryRecordsCommand";
4
4
  export * from "./CompleteResourceTokenAuthCommand";
5
+ export * from "./CreateABTestCommand";
5
6
  export * from "./CreateEventCommand";
7
+ export * from "./DeleteABTestCommand";
8
+ export * from "./DeleteBatchEvaluationCommand";
6
9
  export * from "./DeleteEventCommand";
7
10
  export * from "./DeleteMemoryRecordCommand";
11
+ export * from "./DeleteRecommendationCommand";
8
12
  export * from "./EvaluateCommand";
13
+ export * from "./GetABTestCommand";
9
14
  export * from "./GetAgentCardCommand";
15
+ export * from "./GetBatchEvaluationCommand";
10
16
  export * from "./GetBrowserSessionCommand";
11
17
  export * from "./GetCodeInterpreterSessionCommand";
12
18
  export * from "./GetEventCommand";
13
19
  export * from "./GetMemoryRecordCommand";
20
+ export * from "./GetRecommendationCommand";
14
21
  export * from "./GetResourceApiKeyCommand";
15
22
  export * from "./GetResourceOauth2TokenCommand";
16
23
  export * from "./GetWorkloadAccessTokenCommand";
@@ -21,20 +28,27 @@ export * from "./InvokeAgentRuntimeCommandCommand";
21
28
  export * from "./InvokeBrowserCommand";
22
29
  export * from "./InvokeCodeInterpreterCommand";
23
30
  export * from "./InvokeHarnessCommand";
31
+ export * from "./ListABTestsCommand";
24
32
  export * from "./ListActorsCommand";
33
+ export * from "./ListBatchEvaluationsCommand";
25
34
  export * from "./ListBrowserSessionsCommand";
26
35
  export * from "./ListCodeInterpreterSessionsCommand";
27
36
  export * from "./ListEventsCommand";
28
37
  export * from "./ListMemoryExtractionJobsCommand";
29
38
  export * from "./ListMemoryRecordsCommand";
39
+ export * from "./ListRecommendationsCommand";
30
40
  export * from "./ListSessionsCommand";
31
41
  export * from "./RetrieveMemoryRecordsCommand";
32
42
  export * from "./SaveBrowserSessionProfileCommand";
33
43
  export * from "./SearchRegistryRecordsCommand";
44
+ export * from "./StartBatchEvaluationCommand";
34
45
  export * from "./StartBrowserSessionCommand";
35
46
  export * from "./StartCodeInterpreterSessionCommand";
36
47
  export * from "./StartMemoryExtractionJobCommand";
48
+ export * from "./StartRecommendationCommand";
49
+ export * from "./StopBatchEvaluationCommand";
37
50
  export * from "./StopBrowserSessionCommand";
38
51
  export * from "./StopCodeInterpreterSessionCommand";
39
52
  export * from "./StopRuntimeSessionCommand";
53
+ export * from "./UpdateABTestCommand";
40
54
  export * from "./UpdateBrowserStreamCommand";
@@ -14,4 +14,5 @@ export * from "./pagination";
14
14
  export * from "./models/enums";
15
15
  export * from "./models/errors";
16
16
  export * from "./models/models_0";
17
+ export * from "./models/models_1";
17
18
  export { BedrockAgentCoreServiceException } from "./models/BedrockAgentCoreServiceException";
@@ -1,3 +1,35 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const ABTestExecutionStatus: {
6
+ readonly NOT_STARTED: "NOT_STARTED";
7
+ readonly PAUSED: "PAUSED";
8
+ readonly RUNNING: "RUNNING";
9
+ readonly STOPPED: "STOPPED";
10
+ };
11
+ /**
12
+ * @public
13
+ */
14
+ export type ABTestExecutionStatus = (typeof ABTestExecutionStatus)[keyof typeof ABTestExecutionStatus];
15
+ /**
16
+ * @public
17
+ * @enum
18
+ */
19
+ export declare const ABTestStatus: {
20
+ readonly ACTIVE: "ACTIVE";
21
+ readonly CREATE_FAILED: "CREATE_FAILED";
22
+ readonly CREATING: "CREATING";
23
+ readonly DELETE_FAILED: "DELETE_FAILED";
24
+ readonly DELETING: "DELETING";
25
+ readonly FAILED: "FAILED";
26
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
27
+ readonly UPDATING: "UPDATING";
28
+ };
29
+ /**
30
+ * @public
31
+ */
32
+ export type ABTestStatus = (typeof ABTestStatus)[keyof typeof ABTestStatus];
1
33
  /**
2
34
  * @public
3
35
  * @enum
@@ -25,6 +57,24 @@ export declare const CommandExecutionStatus: {
25
57
  * @public
26
58
  */
27
59
  export type CommandExecutionStatus = (typeof CommandExecutionStatus)[keyof typeof CommandExecutionStatus];
60
+ /**
61
+ * @public
62
+ * @enum
63
+ */
64
+ export declare const CloudWatchLogsFilterOperator: {
65
+ readonly CONTAINS: "Contains";
66
+ readonly EQUALS: "Equals";
67
+ readonly GREATER_THAN: "GreaterThan";
68
+ readonly GREATER_THAN_OR_EQUAL: "GreaterThanOrEqual";
69
+ readonly LESS_THAN: "LessThan";
70
+ readonly LESS_THAN_OR_EQUAL: "LessThanOrEqual";
71
+ readonly NOT_CONTAINS: "NotContains";
72
+ readonly NOT_EQUALS: "NotEquals";
73
+ };
74
+ /**
75
+ * @public
76
+ */
77
+ export type CloudWatchLogsFilterOperator = (typeof CloudWatchLogsFilterOperator)[keyof typeof CloudWatchLogsFilterOperator];
28
78
  /**
29
79
  * @public
30
80
  * @enum
@@ -109,12 +159,58 @@ export declare const CodeInterpreterSessionStatus: {
109
159
  * @public
110
160
  */
111
161
  export type CodeInterpreterSessionStatus = (typeof CodeInterpreterSessionStatus)[keyof typeof CodeInterpreterSessionStatus];
162
+ /**
163
+ * @public
164
+ * @enum
165
+ */
166
+ export declare const BatchEvaluationStatus: {
167
+ readonly COMPLETED: "COMPLETED";
168
+ readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS";
169
+ readonly DELETING: "DELETING";
170
+ readonly FAILED: "FAILED";
171
+ readonly IN_PROGRESS: "IN_PROGRESS";
172
+ readonly PENDING: "PENDING";
173
+ readonly STOPPED: "STOPPED";
174
+ readonly STOPPING: "STOPPING";
175
+ };
176
+ /**
177
+ * @public
178
+ */
179
+ export type BatchEvaluationStatus = (typeof BatchEvaluationStatus)[keyof typeof BatchEvaluationStatus];
180
+ /**
181
+ * @public
182
+ * @enum
183
+ */
184
+ export declare const RecommendationStatus: {
185
+ readonly COMPLETED: "COMPLETED";
186
+ readonly DELETING: "DELETING";
187
+ readonly FAILED: "FAILED";
188
+ readonly IN_PROGRESS: "IN_PROGRESS";
189
+ readonly PENDING: "PENDING";
190
+ };
191
+ /**
192
+ * @public
193
+ */
194
+ export type RecommendationStatus = (typeof RecommendationStatus)[keyof typeof RecommendationStatus];
195
+ /**
196
+ * @public
197
+ * @enum
198
+ */
199
+ export declare const RecommendationType: {
200
+ readonly SYSTEM_PROMPT_RECOMMENDATION: "SYSTEM_PROMPT_RECOMMENDATION";
201
+ readonly TOOL_DESCRIPTION_RECOMMENDATION: "TOOL_DESCRIPTION_RECOMMENDATION";
202
+ };
203
+ /**
204
+ * @public
205
+ */
206
+ export type RecommendationType = (typeof RecommendationType)[keyof typeof RecommendationType];
112
207
  /**
113
208
  * @public
114
209
  * @enum
115
210
  */
116
211
  export declare const Oauth2FlowType: {
117
212
  readonly M2M: "M2M";
213
+ readonly ON_BEHALF_OF_TOKEN_EXCHANGE: "ON_BEHALF_OF_TOKEN_EXCHANGE";
118
214
  readonly USER_FEDERATION: "USER_FEDERATION";
119
215
  };
120
216
  /**
@@ -357,6 +453,26 @@ export declare const ExtractionJobStatus: {
357
453
  * @public
358
454
  */
359
455
  export type ExtractionJobStatus = (typeof ExtractionJobStatus)[keyof typeof ExtractionJobStatus];
456
+ /**
457
+ * @public
458
+ * @enum
459
+ */
460
+ export declare const MemoryRecordOperatorType: {
461
+ readonly AFTER: "AFTER";
462
+ readonly BEFORE: "BEFORE";
463
+ readonly CONTAINS: "CONTAINS";
464
+ readonly EQUALS_TO: "EQUALS_TO";
465
+ readonly EXISTS: "EXISTS";
466
+ readonly GREATER_THAN: "GREATER_THAN";
467
+ readonly GREATER_THAN_OR_EQUALS: "GREATER_THAN_OR_EQUALS";
468
+ readonly LESS_THAN: "LESS_THAN";
469
+ readonly LESS_THAN_OR_EQUALS: "LESS_THAN_OR_EQUALS";
470
+ readonly NOT_EXISTS: "NOT_EXISTS";
471
+ };
472
+ /**
473
+ * @public
474
+ */
475
+ export type MemoryRecordOperatorType = (typeof MemoryRecordOperatorType)[keyof typeof MemoryRecordOperatorType];
360
476
  /**
361
477
  * @public
362
478
  * @enum