@aws-sdk/client-customer-profiles 3.1029.0 → 3.1031.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 (59) hide show
  1. package/README.md +28 -0
  2. package/dist-cjs/index.js +92 -4
  3. package/dist-cjs/schemas/schemas_0.js +148 -31
  4. package/dist-es/CustomerProfiles.js +10 -0
  5. package/dist-es/commands/CreateRecommenderSchemaCommand.js +16 -0
  6. package/dist-es/commands/DeleteRecommenderSchemaCommand.js +16 -0
  7. package/dist-es/commands/GetRecommenderSchemaCommand.js +16 -0
  8. package/dist-es/commands/ListRecommenderSchemasCommand.js +16 -0
  9. package/dist-es/commands/index.js +4 -0
  10. package/dist-es/models/enums.js +28 -4
  11. package/dist-es/pagination/ListRecommenderSchemasPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/schemas/schemas_0.js +139 -23
  14. package/dist-types/CustomerProfiles.d.ts +35 -0
  15. package/dist-types/CustomerProfilesClient.d.ts +6 -2
  16. package/dist-types/commands/CreateRecommenderCommand.d.ts +6 -0
  17. package/dist-types/commands/CreateRecommenderFilterCommand.d.ts +1 -0
  18. package/dist-types/commands/CreateRecommenderSchemaCommand.d.ts +117 -0
  19. package/dist-types/commands/CreateSegmentDefinitionCommand.d.ts +10 -0
  20. package/dist-types/commands/DeleteRecommenderSchemaCommand.d.ts +88 -0
  21. package/dist-types/commands/GetRecommenderCommand.d.ts +11 -0
  22. package/dist-types/commands/GetRecommenderFilterCommand.d.ts +1 -0
  23. package/dist-types/commands/GetRecommenderSchemaCommand.d.ts +101 -0
  24. package/dist-types/commands/GetSegmentDefinitionCommand.d.ts +10 -0
  25. package/dist-types/commands/ListRecommenderFiltersCommand.d.ts +1 -0
  26. package/dist-types/commands/ListRecommenderSchemasCommand.d.ts +107 -0
  27. package/dist-types/commands/ListRecommendersCommand.d.ts +11 -0
  28. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  29. package/dist-types/commands/ListUploadJobsCommand.d.ts +1 -1
  30. package/dist-types/commands/ListWorkflowsCommand.d.ts +1 -1
  31. package/dist-types/commands/MergeProfilesCommand.d.ts +1 -1
  32. package/dist-types/commands/PutDomainObjectTypeCommand.d.ts +1 -1
  33. package/dist-types/commands/UpdateRecommenderCommand.d.ts +5 -0
  34. package/dist-types/commands/index.d.ts +4 -0
  35. package/dist-types/models/enums.d.ts +68 -12
  36. package/dist-types/models/models_0.d.ts +286 -414
  37. package/dist-types/models/models_1.d.ts +414 -2
  38. package/dist-types/pagination/ListRecommenderSchemasPaginator.d.ts +7 -0
  39. package/dist-types/pagination/index.d.ts +1 -0
  40. package/dist-types/schemas/schemas_0.d.ts +16 -0
  41. package/dist-types/ts3.4/CustomerProfiles.d.ts +75 -0
  42. package/dist-types/ts3.4/CustomerProfilesClient.d.ts +24 -0
  43. package/dist-types/ts3.4/commands/CreateRecommenderSchemaCommand.d.ts +51 -0
  44. package/dist-types/ts3.4/commands/DeleteRecommenderSchemaCommand.d.ts +51 -0
  45. package/dist-types/ts3.4/commands/GetRecommenderSchemaCommand.d.ts +51 -0
  46. package/dist-types/ts3.4/commands/ListRecommenderSchemasCommand.d.ts +51 -0
  47. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -4
  48. package/dist-types/ts3.4/commands/ListUploadJobsCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/MergeProfilesCommand.d.ts +1 -1
  51. package/dist-types/ts3.4/commands/PutDomainObjectTypeCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  53. package/dist-types/ts3.4/models/enums.d.ts +37 -5
  54. package/dist-types/ts3.4/models/models_0.d.ts +71 -93
  55. package/dist-types/ts3.4/models/models_1.d.ts +98 -0
  56. package/dist-types/ts3.4/pagination/ListRecommenderSchemasPaginator.d.ts +11 -0
  57. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  58. package/dist-types/ts3.4/schemas/schemas_0.d.ts +16 -0
  59. package/package.json +33 -33
@@ -92,6 +92,10 @@ import {
92
92
  CreateRecommenderFilterCommandInput,
93
93
  CreateRecommenderFilterCommandOutput,
94
94
  } from "./commands/CreateRecommenderFilterCommand";
95
+ import {
96
+ CreateRecommenderSchemaCommandInput,
97
+ CreateRecommenderSchemaCommandOutput,
98
+ } from "./commands/CreateRecommenderSchemaCommand";
95
99
  import {
96
100
  CreateSegmentDefinitionCommandInput,
97
101
  CreateSegmentDefinitionCommandOutput,
@@ -160,6 +164,10 @@ import {
160
164
  DeleteRecommenderFilterCommandInput,
161
165
  DeleteRecommenderFilterCommandOutput,
162
166
  } from "./commands/DeleteRecommenderFilterCommand";
167
+ import {
168
+ DeleteRecommenderSchemaCommandInput,
169
+ DeleteRecommenderSchemaCommandOutput,
170
+ } from "./commands/DeleteRecommenderSchemaCommand";
163
171
  import {
164
172
  DeleteSegmentDefinitionCommandInput,
165
173
  DeleteSegmentDefinitionCommandOutput,
@@ -244,6 +252,10 @@ import {
244
252
  GetRecommenderFilterCommandInput,
245
253
  GetRecommenderFilterCommandOutput,
246
254
  } from "./commands/GetRecommenderFilterCommand";
255
+ import {
256
+ GetRecommenderSchemaCommandInput,
257
+ GetRecommenderSchemaCommandOutput,
258
+ } from "./commands/GetRecommenderSchemaCommand";
247
259
  import {
248
260
  GetSegmentDefinitionCommandInput,
249
261
  GetSegmentDefinitionCommandOutput,
@@ -356,6 +368,10 @@ import {
356
368
  ListRecommenderRecipesCommandInput,
357
369
  ListRecommenderRecipesCommandOutput,
358
370
  } from "./commands/ListRecommenderRecipesCommand";
371
+ import {
372
+ ListRecommenderSchemasCommandInput,
373
+ ListRecommenderSchemasCommandOutput,
374
+ } from "./commands/ListRecommenderSchemasCommand";
359
375
  import {
360
376
  ListRecommendersCommandInput,
361
377
  ListRecommendersCommandOutput,
@@ -472,6 +488,7 @@ export type ServiceInputTypes =
472
488
  | CreateProfileCommandInput
473
489
  | CreateRecommenderCommandInput
474
490
  | CreateRecommenderFilterCommandInput
491
+ | CreateRecommenderSchemaCommandInput
475
492
  | CreateSegmentDefinitionCommandInput
476
493
  | CreateSegmentEstimateCommandInput
477
494
  | CreateSegmentSnapshotCommandInput
@@ -489,6 +506,7 @@ export type ServiceInputTypes =
489
506
  | DeleteProfileObjectTypeCommandInput
490
507
  | DeleteRecommenderCommandInput
491
508
  | DeleteRecommenderFilterCommandInput
509
+ | DeleteRecommenderSchemaCommandInput
492
510
  | DeleteSegmentDefinitionCommandInput
493
511
  | DeleteWorkflowCommandInput
494
512
  | DetectProfileObjectTypeCommandInput
@@ -510,6 +528,7 @@ export type ServiceInputTypes =
510
528
  | GetProfileRecommendationsCommandInput
511
529
  | GetRecommenderCommandInput
512
530
  | GetRecommenderFilterCommandInput
531
+ | GetRecommenderSchemaCommandInput
513
532
  | GetSegmentDefinitionCommandInput
514
533
  | GetSegmentEstimateCommandInput
515
534
  | GetSegmentMembershipCommandInput
@@ -538,6 +557,7 @@ export type ServiceInputTypes =
538
557
  | ListProfileObjectsCommandInput
539
558
  | ListRecommenderFiltersCommandInput
540
559
  | ListRecommenderRecipesCommandInput
560
+ | ListRecommenderSchemasCommandInput
541
561
  | ListRecommendersCommandInput
542
562
  | ListRuleBasedMatchesCommandInput
543
563
  | ListSegmentDefinitionsCommandInput
@@ -575,6 +595,7 @@ export type ServiceOutputTypes =
575
595
  | CreateProfileCommandOutput
576
596
  | CreateRecommenderCommandOutput
577
597
  | CreateRecommenderFilterCommandOutput
598
+ | CreateRecommenderSchemaCommandOutput
578
599
  | CreateSegmentDefinitionCommandOutput
579
600
  | CreateSegmentEstimateCommandOutput
580
601
  | CreateSegmentSnapshotCommandOutput
@@ -592,6 +613,7 @@ export type ServiceOutputTypes =
592
613
  | DeleteProfileObjectTypeCommandOutput
593
614
  | DeleteRecommenderCommandOutput
594
615
  | DeleteRecommenderFilterCommandOutput
616
+ | DeleteRecommenderSchemaCommandOutput
595
617
  | DeleteSegmentDefinitionCommandOutput
596
618
  | DeleteWorkflowCommandOutput
597
619
  | DetectProfileObjectTypeCommandOutput
@@ -613,6 +635,7 @@ export type ServiceOutputTypes =
613
635
  | GetProfileRecommendationsCommandOutput
614
636
  | GetRecommenderCommandOutput
615
637
  | GetRecommenderFilterCommandOutput
638
+ | GetRecommenderSchemaCommandOutput
616
639
  | GetSegmentDefinitionCommandOutput
617
640
  | GetSegmentEstimateCommandOutput
618
641
  | GetSegmentMembershipCommandOutput
@@ -641,6 +664,7 @@ export type ServiceOutputTypes =
641
664
  | ListProfileObjectsCommandOutput
642
665
  | ListRecommenderFiltersCommandOutput
643
666
  | ListRecommenderRecipesCommandOutput
667
+ | ListRecommenderSchemasCommandOutput
644
668
  | ListRecommendersCommandOutput
645
669
  | ListRuleBasedMatchesCommandOutput
646
670
  | ListSegmentDefinitionsCommandOutput
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CustomerProfilesClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CustomerProfilesClient";
8
+ import {
9
+ CreateRecommenderSchemaRequest,
10
+ CreateRecommenderSchemaResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateRecommenderSchemaCommandInput
15
+ extends CreateRecommenderSchemaRequest {}
16
+ export interface CreateRecommenderSchemaCommandOutput
17
+ extends CreateRecommenderSchemaResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateRecommenderSchemaCommand_base: {
20
+ new (
21
+ input: CreateRecommenderSchemaCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateRecommenderSchemaCommandInput,
24
+ CreateRecommenderSchemaCommandOutput,
25
+ CustomerProfilesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateRecommenderSchemaCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateRecommenderSchemaCommandInput,
33
+ CreateRecommenderSchemaCommandOutput,
34
+ CustomerProfilesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateRecommenderSchemaCommand extends CreateRecommenderSchemaCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateRecommenderSchemaRequest;
44
+ output: CreateRecommenderSchemaResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateRecommenderSchemaCommandInput;
48
+ output: CreateRecommenderSchemaCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CustomerProfilesClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CustomerProfilesClient";
8
+ import {
9
+ DeleteRecommenderSchemaRequest,
10
+ DeleteRecommenderSchemaResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteRecommenderSchemaCommandInput
15
+ extends DeleteRecommenderSchemaRequest {}
16
+ export interface DeleteRecommenderSchemaCommandOutput
17
+ extends DeleteRecommenderSchemaResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteRecommenderSchemaCommand_base: {
20
+ new (
21
+ input: DeleteRecommenderSchemaCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteRecommenderSchemaCommandInput,
24
+ DeleteRecommenderSchemaCommandOutput,
25
+ CustomerProfilesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteRecommenderSchemaCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteRecommenderSchemaCommandInput,
33
+ DeleteRecommenderSchemaCommandOutput,
34
+ CustomerProfilesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteRecommenderSchemaCommand extends DeleteRecommenderSchemaCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteRecommenderSchemaRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: DeleteRecommenderSchemaCommandInput;
48
+ output: DeleteRecommenderSchemaCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CustomerProfilesClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CustomerProfilesClient";
8
+ import {
9
+ GetRecommenderSchemaRequest,
10
+ GetRecommenderSchemaResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetRecommenderSchemaCommandInput
15
+ extends GetRecommenderSchemaRequest {}
16
+ export interface GetRecommenderSchemaCommandOutput
17
+ extends GetRecommenderSchemaResponse,
18
+ __MetadataBearer {}
19
+ declare const GetRecommenderSchemaCommand_base: {
20
+ new (
21
+ input: GetRecommenderSchemaCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetRecommenderSchemaCommandInput,
24
+ GetRecommenderSchemaCommandOutput,
25
+ CustomerProfilesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetRecommenderSchemaCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetRecommenderSchemaCommandInput,
33
+ GetRecommenderSchemaCommandOutput,
34
+ CustomerProfilesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetRecommenderSchemaCommand extends GetRecommenderSchemaCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetRecommenderSchemaRequest;
44
+ output: GetRecommenderSchemaResponse;
45
+ };
46
+ sdk: {
47
+ input: GetRecommenderSchemaCommandInput;
48
+ output: GetRecommenderSchemaCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CustomerProfilesClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CustomerProfilesClient";
8
+ import {
9
+ ListRecommenderSchemasRequest,
10
+ ListRecommenderSchemasResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListRecommenderSchemasCommandInput
15
+ extends ListRecommenderSchemasRequest {}
16
+ export interface ListRecommenderSchemasCommandOutput
17
+ extends ListRecommenderSchemasResponse,
18
+ __MetadataBearer {}
19
+ declare const ListRecommenderSchemasCommand_base: {
20
+ new (
21
+ input: ListRecommenderSchemasCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListRecommenderSchemasCommandInput,
24
+ ListRecommenderSchemasCommandOutput,
25
+ CustomerProfilesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListRecommenderSchemasCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListRecommenderSchemasCommandInput,
33
+ ListRecommenderSchemasCommandOutput,
34
+ CustomerProfilesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListRecommenderSchemasCommand extends ListRecommenderSchemasCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListRecommenderSchemasRequest;
44
+ output: ListRecommenderSchemasResponse;
45
+ };
46
+ sdk: {
47
+ input: ListRecommenderSchemasCommandInput;
48
+ output: ListRecommenderSchemasCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../CustomerProfilesClient";
8
- import {
9
- ListTagsForResourceRequest,
10
- ListTagsForResourceResponse,
11
- } from "../models/models_0";
8
+ import { ListTagsForResourceRequest } from "../models/models_0";
9
+ import { ListTagsForResourceResponse } from "../models/models_1";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface ListTagsForResourceCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  ListUploadJobsRequest,
10
10
  ListUploadJobsResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface ListUploadJobsCommandInput extends ListUploadJobsRequest {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  ListWorkflowsRequest,
10
10
  ListWorkflowsResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface ListWorkflowsCommandInput extends ListWorkflowsRequest {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  MergeProfilesRequest,
10
10
  MergeProfilesResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface MergeProfilesCommandInput extends MergeProfilesRequest {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  PutDomainObjectTypeRequest,
10
10
  PutDomainObjectTypeResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface PutDomainObjectTypeCommandInput
@@ -10,6 +10,7 @@ export * from "./CreateIntegrationWorkflowCommand";
10
10
  export * from "./CreateProfileCommand";
11
11
  export * from "./CreateRecommenderCommand";
12
12
  export * from "./CreateRecommenderFilterCommand";
13
+ export * from "./CreateRecommenderSchemaCommand";
13
14
  export * from "./CreateSegmentDefinitionCommand";
14
15
  export * from "./CreateSegmentEstimateCommand";
15
16
  export * from "./CreateSegmentSnapshotCommand";
@@ -27,6 +28,7 @@ export * from "./DeleteProfileObjectCommand";
27
28
  export * from "./DeleteProfileObjectTypeCommand";
28
29
  export * from "./DeleteRecommenderCommand";
29
30
  export * from "./DeleteRecommenderFilterCommand";
31
+ export * from "./DeleteRecommenderSchemaCommand";
30
32
  export * from "./DeleteSegmentDefinitionCommand";
31
33
  export * from "./DeleteWorkflowCommand";
32
34
  export * from "./DetectProfileObjectTypeCommand";
@@ -48,6 +50,7 @@ export * from "./GetProfileObjectTypeTemplateCommand";
48
50
  export * from "./GetProfileRecommendationsCommand";
49
51
  export * from "./GetRecommenderCommand";
50
52
  export * from "./GetRecommenderFilterCommand";
53
+ export * from "./GetRecommenderSchemaCommand";
51
54
  export * from "./GetSegmentDefinitionCommand";
52
55
  export * from "./GetSegmentEstimateCommand";
53
56
  export * from "./GetSegmentMembershipCommand";
@@ -76,6 +79,7 @@ export * from "./ListProfileObjectTypesCommand";
76
79
  export * from "./ListProfileObjectsCommand";
77
80
  export * from "./ListRecommenderFiltersCommand";
78
81
  export * from "./ListRecommenderRecipesCommand";
82
+ export * from "./ListRecommenderSchemasCommand";
79
83
  export * from "./ListRecommendersCommand";
80
84
  export * from "./ListRuleBasedMatchesCommand";
81
85
  export * from "./ListSegmentDefinitionsCommand";
@@ -386,6 +386,17 @@ export declare const RecommenderRecipeName: {
386
386
  };
387
387
  export type RecommenderRecipeName =
388
388
  (typeof RecommenderRecipeName)[keyof typeof RecommenderRecipeName];
389
+ export declare const FeatureType: {
390
+ readonly CATEGORICAL: "CATEGORICAL";
391
+ readonly TEXTUAL: "TEXTUAL";
392
+ };
393
+ export type FeatureType = (typeof FeatureType)[keyof typeof FeatureType];
394
+ export declare const RecommenderSchemaStatus: {
395
+ readonly ACTIVE: "ACTIVE";
396
+ readonly DELETING: "DELETING";
397
+ };
398
+ export type RecommenderSchemaStatus =
399
+ (typeof RecommenderSchemaStatus)[keyof typeof RecommenderSchemaStatus];
389
400
  export declare const DateDimensionType: {
390
401
  readonly AFTER: "AFTER";
391
402
  readonly BEFORE: "BEFORE";
@@ -408,6 +419,25 @@ export declare const IncludeOptions: {
408
419
  };
409
420
  export type IncludeOptions =
410
421
  (typeof IncludeOptions)[keyof typeof IncludeOptions];
422
+ export declare const SegmentSortDataType: {
423
+ readonly DATE: "DATE";
424
+ readonly NUMBER: "NUMBER";
425
+ readonly STRING: "STRING";
426
+ };
427
+ export type SegmentSortDataType =
428
+ (typeof SegmentSortDataType)[keyof typeof SegmentSortDataType];
429
+ export declare const SegmentSortOrder: {
430
+ readonly ASC: "ASC";
431
+ readonly DESC: "DESC";
432
+ };
433
+ export type SegmentSortOrder =
434
+ (typeof SegmentSortOrder)[keyof typeof SegmentSortOrder];
435
+ export declare const SortAttributeType: {
436
+ readonly CALCULATED: "CALCULATED";
437
+ readonly PROFILE: "PROFILE";
438
+ };
439
+ export type SortAttributeType =
440
+ (typeof SortAttributeType)[keyof typeof SortAttributeType];
411
441
  export declare const DataFormat: {
412
442
  readonly CSV: "CSV";
413
443
  readonly JSONL: "JSONL";
@@ -447,11 +477,6 @@ export declare const StandardIdentifier: {
447
477
  };
448
478
  export type StandardIdentifier =
449
479
  (typeof StandardIdentifier)[keyof typeof StandardIdentifier];
450
- export declare const FeatureType: {
451
- readonly CATEGORICAL: "CATEGORICAL";
452
- readonly TEXTUAL: "TEXTUAL";
453
- };
454
- export type FeatureType = (typeof FeatureType)[keyof typeof FeatureType];
455
480
  export declare const EventStreamDestinationStatus: {
456
481
  readonly HEALTHY: "HEALTHY";
457
482
  readonly UNHEALTHY: "UNHEALTHY";
@@ -496,7 +521,14 @@ export declare const TrainingMetricName: {
496
521
  readonly COVERAGE: "coverage";
497
522
  readonly FRESHNESS: "freshness";
498
523
  readonly HIT: "hit";
524
+ readonly MEAN_RECIPROCAL_RANK_AT_25: "mean_reciprocal_rank_at_25";
525
+ readonly NORMALIZED_DISCOUNTED_CUMULATIVE_GAIN_AT_10: "normalized_discounted_cumulative_gain_at_10";
526
+ readonly NORMALIZED_DISCOUNTED_CUMULATIVE_GAIN_AT_25: "normalized_discounted_cumulative_gain_at_25";
527
+ readonly NORMALIZED_DISCOUNTED_CUMULATIVE_GAIN_AT_5: "normalized_discounted_cumulative_gain_at_5";
499
528
  readonly POPULARITY: "popularity";
529
+ readonly PRECISION_AT_10: "precision_at_10";
530
+ readonly PRECISION_AT_25: "precision_at_25";
531
+ readonly PRECISION_AT_5: "precision_at_5";
500
532
  readonly RECALL: "recall";
501
533
  readonly SIMILARITY: "similarity";
502
534
  };