@salesforce/lds-adapters-cdp-personalization-service 1.332.0-dev3 → 1.332.0-dev5
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.
- package/dist/es/es2018/cdp-personalization-service.js +428 -133
- package/dist/es/es2018/types/src/generated/types/EsModelArtifactBaseFieldRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/EsModelArtifactRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/PersonalizationDataMlModelInputRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/PersonalizationDataMlModelRepresentation.d.ts +21 -10
- package/package.json +3 -3
- package/sfdc/index.js +402 -107
- package/src/raml/api.raml +63 -7
package/src/raml/api.raml
CHANGED
|
@@ -784,6 +784,37 @@ types:
|
|
|
784
784
|
description: Error message
|
|
785
785
|
type: string
|
|
786
786
|
required: false
|
|
787
|
+
EsModelArtifactBaseFieldRepresentation:
|
|
788
|
+
description: Es Model Artifact Base Field
|
|
789
|
+
type: object
|
|
790
|
+
properties:
|
|
791
|
+
dataType:
|
|
792
|
+
description: Field data type
|
|
793
|
+
type: string
|
|
794
|
+
label:
|
|
795
|
+
description: label
|
|
796
|
+
type: string
|
|
797
|
+
name:
|
|
798
|
+
description: name
|
|
799
|
+
type: string
|
|
800
|
+
EsModelArtifactRepresentation:
|
|
801
|
+
description: ES Model Artifact
|
|
802
|
+
type: object
|
|
803
|
+
properties:
|
|
804
|
+
id:
|
|
805
|
+
description: ID
|
|
806
|
+
type: string
|
|
807
|
+
label:
|
|
808
|
+
description: label
|
|
809
|
+
type: string
|
|
810
|
+
name:
|
|
811
|
+
description: name
|
|
812
|
+
type: string
|
|
813
|
+
outputFields:
|
|
814
|
+
description: Field data type
|
|
815
|
+
type: array
|
|
816
|
+
items:
|
|
817
|
+
type: EsModelArtifactBaseFieldRepresentation
|
|
787
818
|
PersonalizationDataMlModelCollectionRepresentation:
|
|
788
819
|
description: Represent Personalization Data Ml Model Collection
|
|
789
820
|
type: object
|
|
@@ -794,23 +825,48 @@ types:
|
|
|
794
825
|
items:
|
|
795
826
|
type: PersonalizationDataMlModelRepresentation
|
|
796
827
|
PersonalizationDataMlModelRepresentation:
|
|
797
|
-
description: Personalization Data Ml Model
|
|
828
|
+
description: Represent Personalization Data Ml Model
|
|
798
829
|
type: object
|
|
799
830
|
properties:
|
|
800
831
|
dataSpaceId:
|
|
801
|
-
description:
|
|
832
|
+
description: DataSpace Id
|
|
833
|
+
type: string
|
|
834
|
+
esModelDefinition:
|
|
835
|
+
description: ES model artifact definition
|
|
836
|
+
type: EsModelArtifactRepresentation
|
|
837
|
+
id:
|
|
838
|
+
description: The 18 character ID of the record
|
|
839
|
+
type: string
|
|
840
|
+
label:
|
|
841
|
+
description: label of the model mapping
|
|
802
842
|
type: string
|
|
803
|
-
|
|
804
|
-
description:
|
|
843
|
+
name:
|
|
844
|
+
description: Name of the model mapping
|
|
805
845
|
type: string
|
|
806
|
-
|
|
807
|
-
description: Personalization
|
|
846
|
+
personalizationInputs:
|
|
847
|
+
description: Personalization Input mappings to ES model
|
|
808
848
|
type: array
|
|
809
849
|
items:
|
|
810
|
-
type:
|
|
850
|
+
type: PersonalizationDataMlModelInputRepresentation
|
|
811
851
|
profileDataGraphId:
|
|
812
852
|
description: Profile Data Graph Id
|
|
813
853
|
type: string
|
|
854
|
+
PersonalizationDataMlModelInputRepresentation:
|
|
855
|
+
description: 'Represents Personalization Data Ml Model Input '
|
|
856
|
+
type: object
|
|
857
|
+
properties:
|
|
858
|
+
esModelInputFeatureId:
|
|
859
|
+
description: ID of the ML data model input feature
|
|
860
|
+
type: string
|
|
861
|
+
id:
|
|
862
|
+
description: ID of the personalization ML data model input feature
|
|
863
|
+
type: string
|
|
864
|
+
inputField:
|
|
865
|
+
description: CDP ES model Input Feature
|
|
866
|
+
type: EsModelArtifactBaseFieldRepresentation
|
|
867
|
+
personalisationField:
|
|
868
|
+
description: Path or Name to the personalization field
|
|
869
|
+
type: string
|
|
814
870
|
/personalization:
|
|
815
871
|
/personalization-points:
|
|
816
872
|
post:
|