@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
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
4
- import type { ListUploadJobsRequest, ListUploadJobsResponse } from "../models/models_0";
4
+ import type { ListUploadJobsRequest, ListUploadJobsResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
4
- import type { ListWorkflowsRequest, ListWorkflowsResponse } from "../models/models_0";
4
+ import type { ListWorkflowsRequest, ListWorkflowsResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
4
- import type { MergeProfilesRequest, MergeProfilesResponse } from "../models/models_0";
4
+ import type { MergeProfilesRequest, MergeProfilesResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
4
- import type { PutDomainObjectTypeRequest, PutDomainObjectTypeResponse } from "../models/models_0";
4
+ import type { PutDomainObjectTypeRequest, PutDomainObjectTypeResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -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
@@ -667,6 +691,43 @@ export declare const IncludeOptions: {
667
691
  * @public
668
692
  */
669
693
  export type IncludeOptions = (typeof IncludeOptions)[keyof typeof IncludeOptions];
694
+ /**
695
+ * @public
696
+ * @enum
697
+ */
698
+ export declare const SegmentSortDataType: {
699
+ readonly DATE: "DATE";
700
+ readonly NUMBER: "NUMBER";
701
+ readonly STRING: "STRING";
702
+ };
703
+ /**
704
+ * @public
705
+ */
706
+ export type SegmentSortDataType = (typeof SegmentSortDataType)[keyof typeof SegmentSortDataType];
707
+ /**
708
+ * @public
709
+ * @enum
710
+ */
711
+ export declare const SegmentSortOrder: {
712
+ readonly ASC: "ASC";
713
+ readonly DESC: "DESC";
714
+ };
715
+ /**
716
+ * @public
717
+ */
718
+ export type SegmentSortOrder = (typeof SegmentSortOrder)[keyof typeof SegmentSortOrder];
719
+ /**
720
+ * @public
721
+ * @enum
722
+ */
723
+ export declare const SortAttributeType: {
724
+ readonly CALCULATED: "CALCULATED";
725
+ readonly PROFILE: "PROFILE";
726
+ };
727
+ /**
728
+ * @public
729
+ */
730
+ export type SortAttributeType = (typeof SortAttributeType)[keyof typeof SortAttributeType];
670
731
  /**
671
732
  * @public
672
733
  * @enum
@@ -725,18 +786,6 @@ export declare const StandardIdentifier: {
725
786
  * @public
726
787
  */
727
788
  export type StandardIdentifier = (typeof StandardIdentifier)[keyof typeof StandardIdentifier];
728
- /**
729
- * @public
730
- * @enum
731
- */
732
- export declare const FeatureType: {
733
- readonly CATEGORICAL: "CATEGORICAL";
734
- readonly TEXTUAL: "TEXTUAL";
735
- };
736
- /**
737
- * @public
738
- */
739
- export type FeatureType = (typeof FeatureType)[keyof typeof FeatureType];
740
789
  /**
741
790
  * @public
742
791
  * @enum
@@ -816,7 +865,14 @@ export declare const TrainingMetricName: {
816
865
  readonly COVERAGE: "coverage";
817
866
  readonly FRESHNESS: "freshness";
818
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";
819
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";
820
876
  readonly RECALL: "recall";
821
877
  readonly SIMILARITY: "similarity";
822
878
  };