@aws-sdk/client-customer-profiles 3.1030.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 (55) hide show
  1. package/README.md +28 -0
  2. package/dist-cjs/index.js +76 -4
  3. package/dist-cjs/schemas/schemas_0.js +122 -24
  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 +15 -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 +113 -16
  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/DeleteRecommenderSchemaCommand.d.ts +88 -0
  20. package/dist-types/commands/GetRecommenderCommand.d.ts +11 -0
  21. package/dist-types/commands/GetRecommenderFilterCommand.d.ts +1 -0
  22. package/dist-types/commands/GetRecommenderSchemaCommand.d.ts +101 -0
  23. package/dist-types/commands/ListRecommenderFiltersCommand.d.ts +1 -0
  24. package/dist-types/commands/ListRecommenderSchemasCommand.d.ts +107 -0
  25. package/dist-types/commands/ListRecommendersCommand.d.ts +11 -0
  26. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  27. package/dist-types/commands/ListUploadJobsCommand.d.ts +1 -1
  28. package/dist-types/commands/ListWorkflowsCommand.d.ts +1 -1
  29. package/dist-types/commands/MergeProfilesCommand.d.ts +1 -1
  30. package/dist-types/commands/UpdateRecommenderCommand.d.ts +5 -0
  31. package/dist-types/commands/index.d.ts +4 -0
  32. package/dist-types/models/enums.d.ts +31 -12
  33. package/dist-types/models/models_0.d.ts +238 -338
  34. package/dist-types/models/models_1.d.ts +338 -1
  35. package/dist-types/pagination/ListRecommenderSchemasPaginator.d.ts +7 -0
  36. package/dist-types/pagination/index.d.ts +1 -0
  37. package/dist-types/schemas/schemas_0.d.ts +14 -0
  38. package/dist-types/ts3.4/CustomerProfiles.d.ts +75 -0
  39. package/dist-types/ts3.4/CustomerProfilesClient.d.ts +24 -0
  40. package/dist-types/ts3.4/commands/CreateRecommenderSchemaCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/DeleteRecommenderSchemaCommand.d.ts +51 -0
  42. package/dist-types/ts3.4/commands/GetRecommenderSchemaCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/ListRecommenderSchemasCommand.d.ts +51 -0
  44. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -4
  45. package/dist-types/ts3.4/commands/ListUploadJobsCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +1 -1
  47. package/dist-types/ts3.4/commands/MergeProfilesCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  49. package/dist-types/ts3.4/models/enums.d.ts +18 -5
  50. package/dist-types/ts3.4/models/models_0.d.ts +57 -76
  51. package/dist-types/ts3.4/models/models_1.d.ts +80 -0
  52. package/dist-types/ts3.4/pagination/ListRecommenderSchemasPaginator.d.ts +11 -0
  53. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  54. package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -0
  55. package/package.json +33 -33
@@ -54,6 +54,11 @@ declare const UpdateRecommenderCommand_base: {
54
54
  * InferenceConfig: { // InferenceConfig
55
55
  * MinProvisionedTPS: Number("int"),
56
56
  * },
57
+ * IncludedColumns: { // IncludedColumns
58
+ * "<keys>": [ // ColumnNamesList
59
+ * "STRING_VALUE",
60
+ * ],
61
+ * },
57
62
  * },
58
63
  * };
59
64
  * const command = new UpdateRecommenderCommand(input);
@@ -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";
@@ -627,6 +627,30 @@ export declare const RecommenderRecipeName: {
627
627
  * @public
628
628
  */
629
629
  export type RecommenderRecipeName = (typeof RecommenderRecipeName)[keyof typeof RecommenderRecipeName];
630
+ /**
631
+ * @public
632
+ * @enum
633
+ */
634
+ export declare const FeatureType: {
635
+ readonly CATEGORICAL: "CATEGORICAL";
636
+ readonly TEXTUAL: "TEXTUAL";
637
+ };
638
+ /**
639
+ * @public
640
+ */
641
+ export type FeatureType = (typeof FeatureType)[keyof typeof FeatureType];
642
+ /**
643
+ * @public
644
+ * @enum
645
+ */
646
+ export declare const RecommenderSchemaStatus: {
647
+ readonly ACTIVE: "ACTIVE";
648
+ readonly DELETING: "DELETING";
649
+ };
650
+ /**
651
+ * @public
652
+ */
653
+ export type RecommenderSchemaStatus = (typeof RecommenderSchemaStatus)[keyof typeof RecommenderSchemaStatus];
630
654
  /**
631
655
  * @public
632
656
  * @enum
@@ -762,18 +786,6 @@ export declare const StandardIdentifier: {
762
786
  * @public
763
787
  */
764
788
  export type StandardIdentifier = (typeof StandardIdentifier)[keyof typeof StandardIdentifier];
765
- /**
766
- * @public
767
- * @enum
768
- */
769
- export declare const FeatureType: {
770
- readonly CATEGORICAL: "CATEGORICAL";
771
- readonly TEXTUAL: "TEXTUAL";
772
- };
773
- /**
774
- * @public
775
- */
776
- export type FeatureType = (typeof FeatureType)[keyof typeof FeatureType];
777
789
  /**
778
790
  * @public
779
791
  * @enum
@@ -853,7 +865,14 @@ export declare const TrainingMetricName: {
853
865
  readonly COVERAGE: "coverage";
854
866
  readonly FRESHNESS: "freshness";
855
867
  readonly HIT: "hit";
868
+ readonly MEAN_RECIPROCAL_RANK_AT_25: "mean_reciprocal_rank_at_25";
869
+ readonly NORMALIZED_DISCOUNTED_CUMULATIVE_GAIN_AT_10: "normalized_discounted_cumulative_gain_at_10";
870
+ readonly NORMALIZED_DISCOUNTED_CUMULATIVE_GAIN_AT_25: "normalized_discounted_cumulative_gain_at_25";
871
+ readonly NORMALIZED_DISCOUNTED_CUMULATIVE_GAIN_AT_5: "normalized_discounted_cumulative_gain_at_5";
856
872
  readonly POPULARITY: "popularity";
873
+ readonly PRECISION_AT_10: "precision_at_10";
874
+ readonly PRECISION_AT_25: "precision_at_25";
875
+ readonly PRECISION_AT_5: "precision_at_5";
857
876
  readonly RECALL: "recall";
858
877
  readonly SIMILARITY: "similarity";
859
878
  };