@salesforce/lds-adapters-platform-cdp-machine-learning 1.272.0 → 1.273.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.
- package/dist/es/es2018/platform-cdp-machine-learning.js +1538 -293
- package/dist/es/es2018/types/src/generated/adapters/createCdpMlConfiguredModel.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/updateCdpMlConfiguredModel.d.ts +12 -9
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/resources/patchSsotMachineLearningWorkspacesModelsByModelIdOrNameAndWorkspaceIdOrName.d.ts +12 -9
- package/dist/es/es2018/types/src/generated/resources/postSsotMachineLearningWorkspacesModelsByWorkspaceIdOrName.d.ts +12 -9
- package/dist/es/es2018/types/src/generated/types/CdpAssetBaseRepresentation.d.ts +7 -7
- package/dist/es/es2018/types/src/generated/types/CdpAssetReferenceInputRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/CdpAssetReferenceRepresentation.d.ts +13 -13
- package/dist/es/es2018/types/src/generated/types/CdpMlConfiguredModelInputRepresentation.d.ts +22 -19
- package/dist/es/es2018/types/src/generated/types/CdpMlConfiguredModelRepresentation.d.ts +15 -15
- package/dist/es/es2018/types/src/generated/types/CdpMlCustomizableFieldDefinitionInputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/CdpMlCustomizableFieldInputRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/CdpMlModelArtifactBaseRepresentation.d.ts +19 -19
- package/dist/es/es2018/types/src/generated/types/CdpMlModelArtifactCollectionRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/CdpMlModelParameterOverrideInputRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/CdpMlModelTypeRepresentation.d.ts +7 -7
- package/dist/es/es2018/types/src/generated/types/CdpMlWorkspaceCollectionRepresentation.d.ts +5 -5
- package/dist/es/es2018/types/src/generated/types/CdpMlWorkspaceDetailRepresentation.d.ts +27 -27
- package/dist/es/es2018/types/src/generated/types/CdpMlWorkspaceRepresentation.d.ts +23 -23
- package/dist/es/es2018/types/src/generated/types/CdpPaginatedResponseBaseRepresentation.d.ts +3 -3
- package/package.json +3 -3
- package/sfdc/index.js +1473 -228
- package/src/raml/api.raml +132 -78
- package/src/raml/luvio.raml +1 -1
- package/dist/es/es2018/types/src/generated/adapters/createCdpMlConfiguredModelCollection.d.ts +0 -25
package/dist/es/es2018/types/src/generated/types/CdpMlModelArtifactCollectionRepresentation.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CdpMlModelArtifactBaseRepresentation as CdpMlModelArtifactBaseRepresentation_CdpMlModelArtifactBaseRepresentation } from './CdpMlModelArtifactBaseRepresentation';
|
|
2
2
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
3
|
export declare const TTL = 1000;
|
|
4
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const VERSION = "31baba639dc891173a7ce2db82dae35f";
|
|
5
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
6
|
export declare const RepresentationType: string;
|
|
7
7
|
export declare function normalize(input: CdpMlModelArtifactCollectionRepresentation, existing: CdpMlModelArtifactCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpMlModelArtifactCollectionRepresentationNormalized;
|
|
@@ -21,7 +21,7 @@ export interface CdpMlModelArtifactCollectionRepresentationNormalized {
|
|
|
21
21
|
/** List of model artifacts */
|
|
22
22
|
modelArtifacts: Array<$64$luvio_engine_StoreLink>;
|
|
23
23
|
/** Next page url if it exists */
|
|
24
|
-
nextPageUrl: string;
|
|
24
|
+
nextPageUrl: string | null;
|
|
25
25
|
/** Total size of collection */
|
|
26
26
|
totalSize: number;
|
|
27
27
|
}
|
|
@@ -34,6 +34,6 @@ export interface CdpMlModelArtifactCollectionRepresentationNormalized {
|
|
|
34
34
|
export interface CdpMlModelArtifactCollectionRepresentation {
|
|
35
35
|
currentPageUrl: string;
|
|
36
36
|
modelArtifacts: Array<CdpMlModelArtifactBaseRepresentation_CdpMlModelArtifactBaseRepresentation>;
|
|
37
|
-
nextPageUrl: string;
|
|
37
|
+
nextPageUrl: string | null;
|
|
38
38
|
totalSize: number;
|
|
39
39
|
}
|
package/dist/es/es2018/types/src/generated/types/CdpMlModelParameterOverrideInputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "e2963734053da059e7c51dc0f0b25d3f";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: CdpMlModelParameterOverrideInputRepresentation, existing: CdpMlModelParameterOverrideInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpMlModelParameterOverrideInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: CdpMlModelParameterOverrideInputRepresentationNormalized, incoming: CdpMlModelParameterOverrideInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpMlModelParameterOverrideInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Input representation for a Cdp Ml Model Parameter Override
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface CdpMlModelParameterOverrideInputRepresentationNormalized {
|
|
17
|
+
/** Model parameter continuous value */
|
|
18
|
+
continuousValue?: number | null;
|
|
19
|
+
/** Model parameter discrete value */
|
|
20
|
+
discreteValue?: string | null;
|
|
21
|
+
/** Model parameter definition Id to which override is provided */
|
|
22
|
+
parameterName?: string | null;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Input representation for a Cdp Ml Model Parameter Override
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface CdpMlModelParameterOverrideInputRepresentation {
|
|
31
|
+
continuousValue?: number | null;
|
|
32
|
+
discreteValue?: string | null;
|
|
33
|
+
parameterName?: string | null;
|
|
34
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "cfb19a134ac064307b21c38c215c2e34";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export declare function normalize(input: CdpMlModelTypeRepresentation, existing: CdpMlModelTypeRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpMlModelTypeRepresentationNormalized;
|
|
@@ -15,11 +15,11 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
15
15
|
*/
|
|
16
16
|
export interface CdpMlModelTypeRepresentationNormalized {
|
|
17
17
|
/** Connector Type */
|
|
18
|
-
connectorType?: string;
|
|
18
|
+
connectorType?: string | null;
|
|
19
19
|
/** Model type */
|
|
20
|
-
modelType
|
|
20
|
+
modelType?: string | null;
|
|
21
21
|
/** Source type */
|
|
22
|
-
sourceType
|
|
22
|
+
sourceType?: string | null;
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* Cdp Ml Model Type
|
|
@@ -28,7 +28,7 @@ export interface CdpMlModelTypeRepresentationNormalized {
|
|
|
28
28
|
* (none)
|
|
29
29
|
*/
|
|
30
30
|
export interface CdpMlModelTypeRepresentation {
|
|
31
|
-
connectorType?: string;
|
|
32
|
-
modelType
|
|
33
|
-
sourceType
|
|
31
|
+
connectorType?: string | null;
|
|
32
|
+
modelType?: string | null;
|
|
33
|
+
sourceType?: string | null;
|
|
34
34
|
}
|
package/dist/es/es2018/types/src/generated/types/CdpMlWorkspaceCollectionRepresentation.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CdpMlWorkspaceRepresentation as CdpMlWorkspaceRepresentation_CdpMlWorkspaceRepresentation } from './CdpMlWorkspaceRepresentation';
|
|
2
2
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
3
|
export declare const TTL = 1000;
|
|
4
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const VERSION = "e6a8612718f37385e9d7622527f26c5c";
|
|
5
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
6
|
export declare const RepresentationType: string;
|
|
7
7
|
export declare function normalize(input: CdpMlWorkspaceCollectionRepresentation, existing: CdpMlWorkspaceCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpMlWorkspaceCollectionRepresentationNormalized;
|
|
@@ -17,9 +17,9 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
17
17
|
*/
|
|
18
18
|
export interface CdpMlWorkspaceCollectionRepresentationNormalized {
|
|
19
19
|
/** Current page url */
|
|
20
|
-
currentPageUrl
|
|
20
|
+
currentPageUrl?: string | null;
|
|
21
21
|
/** Next page url if it exists */
|
|
22
|
-
nextPageUrl
|
|
22
|
+
nextPageUrl?: string | null;
|
|
23
23
|
/** Total size of collection */
|
|
24
24
|
totalSize: number;
|
|
25
25
|
/** List of workspaces */
|
|
@@ -32,8 +32,8 @@ export interface CdpMlWorkspaceCollectionRepresentationNormalized {
|
|
|
32
32
|
* (none)
|
|
33
33
|
*/
|
|
34
34
|
export interface CdpMlWorkspaceCollectionRepresentation {
|
|
35
|
-
currentPageUrl
|
|
36
|
-
nextPageUrl
|
|
35
|
+
currentPageUrl?: string | null;
|
|
36
|
+
nextPageUrl?: string | null;
|
|
37
37
|
totalSize: number;
|
|
38
38
|
workspaces: Array<CdpMlWorkspaceRepresentation_CdpMlWorkspaceRepresentation>;
|
|
39
39
|
}
|
|
@@ -5,7 +5,7 @@ import { CdpMlModelOutcomeDefinitionRepresentation as CdpMlModelOutcomeDefinitio
|
|
|
5
5
|
import { CdpMlModelRefreshConfigRepresentation as CdpMlModelRefreshConfigRepresentation_CdpMlModelRefreshConfigRepresentation } from './CdpMlModelRefreshConfigRepresentation';
|
|
6
6
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
7
7
|
export declare const TTL = 1000;
|
|
8
|
-
export declare const VERSION = "
|
|
8
|
+
export declare const VERSION = "1cb47dd9b0cc811f1ad3318c7245d465";
|
|
9
9
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
10
10
|
export declare const RepresentationType: string;
|
|
11
11
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -34,49 +34,49 @@ export interface CdpMlWorkspaceDetailRepresentationNormalized {
|
|
|
34
34
|
/** The active setup, if it exists */
|
|
35
35
|
activeSetup?: CdpAssetReferenceRepresentation_CdpAssetReferenceRepresentation;
|
|
36
36
|
/** The version number of the active setup */
|
|
37
|
-
activeSetupVersionNumber?: number;
|
|
37
|
+
activeSetupVersionNumber?: number | null;
|
|
38
38
|
/** Created by */
|
|
39
39
|
createdBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
40
40
|
/** Created date */
|
|
41
|
-
createdDate?: string;
|
|
41
|
+
createdDate?: string | null;
|
|
42
42
|
/** Model description */
|
|
43
|
-
description?: string;
|
|
43
|
+
description?: string | null;
|
|
44
44
|
/** Histories URL */
|
|
45
|
-
historiesUrl?: string;
|
|
45
|
+
historiesUrl?: string | null;
|
|
46
46
|
/** The 18 character ID of the asset */
|
|
47
47
|
id?: string;
|
|
48
48
|
/** Label of the asset */
|
|
49
|
-
label?: string;
|
|
49
|
+
label?: string | null;
|
|
50
50
|
/** Last modified by */
|
|
51
51
|
lastModifiedBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
52
52
|
/** Last modified date */
|
|
53
|
-
lastModifiedDate?: string;
|
|
53
|
+
lastModifiedDate?: string | null;
|
|
54
54
|
/** The latest setup, if it exists */
|
|
55
55
|
latestSetup?: CdpAssetReferenceRepresentation_CdpAssetReferenceRepresentation;
|
|
56
56
|
/** Model count */
|
|
57
57
|
modelCount: number;
|
|
58
58
|
/** Model type */
|
|
59
|
-
modelType
|
|
59
|
+
modelType?: CdpMlModelTypeRepresentation_CdpMlModelTypeRepresentation;
|
|
60
60
|
/** Models URL */
|
|
61
|
-
modelsUrl?: string;
|
|
61
|
+
modelsUrl?: string | null;
|
|
62
62
|
/** Name of the asset */
|
|
63
63
|
name: string;
|
|
64
64
|
/** Namespace of the asset */
|
|
65
|
-
namespace?: string;
|
|
65
|
+
namespace?: string | null;
|
|
66
66
|
/** Model outcome definition */
|
|
67
67
|
outcomeDefinition?: CdpMlModelOutcomeDefinitionRepresentation_CdpMlModelOutcomeDefinitionRepresentation;
|
|
68
68
|
/** Model prediction type */
|
|
69
|
-
predictionType?: string;
|
|
69
|
+
predictionType?: string | null;
|
|
70
70
|
/** Model refresh config */
|
|
71
71
|
refreshConfig?: CdpMlModelRefreshConfigRepresentation_CdpMlModelRefreshConfigRepresentation;
|
|
72
72
|
/** Setup versions URL */
|
|
73
|
-
setupVersionsUrl?: string;
|
|
73
|
+
setupVersionsUrl?: string | null;
|
|
74
74
|
/** Model status */
|
|
75
75
|
status: string;
|
|
76
76
|
/** Model total inference count */
|
|
77
|
-
totalInferenceCount?: number;
|
|
77
|
+
totalInferenceCount?: number | null;
|
|
78
78
|
/** Model total warnings count */
|
|
79
|
-
totalWarningsCount?: number;
|
|
79
|
+
totalWarningsCount?: number | null;
|
|
80
80
|
/** Url */
|
|
81
81
|
url: string;
|
|
82
82
|
}
|
|
@@ -89,27 +89,27 @@ export interface CdpMlWorkspaceDetailRepresentationNormalized {
|
|
|
89
89
|
export interface CdpMlWorkspaceDetailRepresentation {
|
|
90
90
|
activations: Array<string>;
|
|
91
91
|
activeSetup?: CdpAssetReferenceRepresentation_CdpAssetReferenceRepresentation;
|
|
92
|
-
activeSetupVersionNumber?: number;
|
|
92
|
+
activeSetupVersionNumber?: number | null;
|
|
93
93
|
createdBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
94
|
-
createdDate?: string;
|
|
95
|
-
description?: string;
|
|
96
|
-
historiesUrl?: string;
|
|
94
|
+
createdDate?: string | null;
|
|
95
|
+
description?: string | null;
|
|
96
|
+
historiesUrl?: string | null;
|
|
97
97
|
id?: string;
|
|
98
|
-
label?: string;
|
|
98
|
+
label?: string | null;
|
|
99
99
|
lastModifiedBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
100
|
-
lastModifiedDate?: string;
|
|
100
|
+
lastModifiedDate?: string | null;
|
|
101
101
|
latestSetup?: CdpAssetReferenceRepresentation_CdpAssetReferenceRepresentation;
|
|
102
102
|
modelCount: number;
|
|
103
|
-
modelType
|
|
104
|
-
modelsUrl?: string;
|
|
103
|
+
modelType?: CdpMlModelTypeRepresentation_CdpMlModelTypeRepresentation;
|
|
104
|
+
modelsUrl?: string | null;
|
|
105
105
|
name: string;
|
|
106
|
-
namespace?: string;
|
|
106
|
+
namespace?: string | null;
|
|
107
107
|
outcomeDefinition?: CdpMlModelOutcomeDefinitionRepresentation_CdpMlModelOutcomeDefinitionRepresentation;
|
|
108
|
-
predictionType?: string;
|
|
108
|
+
predictionType?: string | null;
|
|
109
109
|
refreshConfig?: CdpMlModelRefreshConfigRepresentation_CdpMlModelRefreshConfigRepresentation;
|
|
110
|
-
setupVersionsUrl?: string;
|
|
110
|
+
setupVersionsUrl?: string | null;
|
|
111
111
|
status: string;
|
|
112
|
-
totalInferenceCount?: number;
|
|
113
|
-
totalWarningsCount?: number;
|
|
112
|
+
totalInferenceCount?: number | null;
|
|
113
|
+
totalWarningsCount?: number | null;
|
|
114
114
|
url: string;
|
|
115
115
|
}
|
|
@@ -4,7 +4,7 @@ import { CdpMlModelTypeRepresentation as CdpMlModelTypeRepresentation_CdpMlModel
|
|
|
4
4
|
import { CdpMlModelOutcomeDefinitionRepresentation as CdpMlModelOutcomeDefinitionRepresentation_CdpMlModelOutcomeDefinitionRepresentation } from './CdpMlModelOutcomeDefinitionRepresentation';
|
|
5
5
|
import { CdpMlModelRefreshConfigRepresentation as CdpMlModelRefreshConfigRepresentation_CdpMlModelRefreshConfigRepresentation } from './CdpMlModelRefreshConfigRepresentation';
|
|
6
6
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
7
|
-
export declare const VERSION = "
|
|
7
|
+
export declare const VERSION = "1d84dad95a36ee26a6b00773c7cc0adb";
|
|
8
8
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
9
9
|
export declare const RepresentationType: string;
|
|
10
10
|
export declare function normalize(input: CdpMlWorkspaceRepresentation, existing: CdpMlWorkspaceRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpMlWorkspaceRepresentationNormalized;
|
|
@@ -22,23 +22,23 @@ export interface CdpMlWorkspaceRepresentationNormalized {
|
|
|
22
22
|
/** The active setup, if it exists */
|
|
23
23
|
activeSetup?: CdpAssetReferenceRepresentation_CdpAssetReferenceRepresentation;
|
|
24
24
|
/** The version number of the active setup */
|
|
25
|
-
activeSetupVersionNumber?: number;
|
|
25
|
+
activeSetupVersionNumber?: number | null;
|
|
26
26
|
/** Created by */
|
|
27
27
|
createdBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
28
28
|
/** Created date */
|
|
29
|
-
createdDate?: string;
|
|
29
|
+
createdDate?: string | null;
|
|
30
30
|
/** Model description */
|
|
31
|
-
description?: string;
|
|
31
|
+
description?: string | null;
|
|
32
32
|
/** Histories URL */
|
|
33
|
-
historiesUrl?: string;
|
|
33
|
+
historiesUrl?: string | null;
|
|
34
34
|
/** The 18 character ID of the asset */
|
|
35
35
|
id?: string;
|
|
36
36
|
/** Label of the asset */
|
|
37
|
-
label?: string;
|
|
37
|
+
label?: string | null;
|
|
38
38
|
/** Last modified by */
|
|
39
39
|
lastModifiedBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
40
40
|
/** Last modified date */
|
|
41
|
-
lastModifiedDate?: string;
|
|
41
|
+
lastModifiedDate?: string | null;
|
|
42
42
|
/** The latest setup, if it exists */
|
|
43
43
|
latestSetup?: CdpAssetReferenceRepresentation_CdpAssetReferenceRepresentation;
|
|
44
44
|
/** Model count */
|
|
@@ -50,21 +50,21 @@ export interface CdpMlWorkspaceRepresentationNormalized {
|
|
|
50
50
|
/** Name of the asset */
|
|
51
51
|
name: string;
|
|
52
52
|
/** Namespace of the asset */
|
|
53
|
-
namespace
|
|
53
|
+
namespace?: string | null;
|
|
54
54
|
/** Model outcome definition */
|
|
55
55
|
outcomeDefinition?: CdpMlModelOutcomeDefinitionRepresentation_CdpMlModelOutcomeDefinitionRepresentation;
|
|
56
56
|
/** Model prediction type */
|
|
57
|
-
predictionType?: string;
|
|
57
|
+
predictionType?: string | null;
|
|
58
58
|
/** Model refresh config */
|
|
59
59
|
refreshConfig?: CdpMlModelRefreshConfigRepresentation_CdpMlModelRefreshConfigRepresentation;
|
|
60
60
|
/** Setup versions URL */
|
|
61
|
-
setupVersionsUrl?: string;
|
|
61
|
+
setupVersionsUrl?: string | null;
|
|
62
62
|
/** Model status */
|
|
63
63
|
status: string;
|
|
64
64
|
/** Model total inference count */
|
|
65
|
-
totalInferenceCount?: number;
|
|
65
|
+
totalInferenceCount?: number | null;
|
|
66
66
|
/** Model total warnings count */
|
|
67
|
-
totalWarningsCount?: number;
|
|
67
|
+
totalWarningsCount?: number | null;
|
|
68
68
|
/** Url */
|
|
69
69
|
url: string;
|
|
70
70
|
}
|
|
@@ -76,27 +76,27 @@ export interface CdpMlWorkspaceRepresentationNormalized {
|
|
|
76
76
|
*/
|
|
77
77
|
export interface CdpMlWorkspaceRepresentation {
|
|
78
78
|
activeSetup?: CdpAssetReferenceRepresentation_CdpAssetReferenceRepresentation;
|
|
79
|
-
activeSetupVersionNumber?: number;
|
|
79
|
+
activeSetupVersionNumber?: number | null;
|
|
80
80
|
createdBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
81
|
-
createdDate?: string;
|
|
82
|
-
description?: string;
|
|
83
|
-
historiesUrl?: string;
|
|
81
|
+
createdDate?: string | null;
|
|
82
|
+
description?: string | null;
|
|
83
|
+
historiesUrl?: string | null;
|
|
84
84
|
id?: string;
|
|
85
|
-
label?: string;
|
|
85
|
+
label?: string | null;
|
|
86
86
|
lastModifiedBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
87
|
-
lastModifiedDate?: string;
|
|
87
|
+
lastModifiedDate?: string | null;
|
|
88
88
|
latestSetup?: CdpAssetReferenceRepresentation_CdpAssetReferenceRepresentation;
|
|
89
89
|
modelCount: number;
|
|
90
90
|
modelType: CdpMlModelTypeRepresentation_CdpMlModelTypeRepresentation;
|
|
91
91
|
modelsUrl: string;
|
|
92
92
|
name: string;
|
|
93
|
-
namespace
|
|
93
|
+
namespace?: string | null;
|
|
94
94
|
outcomeDefinition?: CdpMlModelOutcomeDefinitionRepresentation_CdpMlModelOutcomeDefinitionRepresentation;
|
|
95
|
-
predictionType?: string;
|
|
95
|
+
predictionType?: string | null;
|
|
96
96
|
refreshConfig?: CdpMlModelRefreshConfigRepresentation_CdpMlModelRefreshConfigRepresentation;
|
|
97
|
-
setupVersionsUrl?: string;
|
|
97
|
+
setupVersionsUrl?: string | null;
|
|
98
98
|
status: string;
|
|
99
|
-
totalInferenceCount?: number;
|
|
100
|
-
totalWarningsCount?: number;
|
|
99
|
+
totalInferenceCount?: number | null;
|
|
100
|
+
totalWarningsCount?: number | null;
|
|
101
101
|
url: string;
|
|
102
102
|
}
|
package/dist/es/es2018/types/src/generated/types/CdpPaginatedResponseBaseRepresentation.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "3d82aa53dc46f972bda23be1d696f9bc";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export declare function normalize(input: CdpPaginatedResponseBaseRepresentation, existing: CdpPaginatedResponseBaseRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpPaginatedResponseBaseRepresentationNormalized;
|
|
@@ -17,7 +17,7 @@ export interface CdpPaginatedResponseBaseRepresentationNormalized {
|
|
|
17
17
|
/** Current page url */
|
|
18
18
|
currentPageUrl: string;
|
|
19
19
|
/** Next page url if it exists */
|
|
20
|
-
nextPageUrl: string;
|
|
20
|
+
nextPageUrl: string | null;
|
|
21
21
|
/** Total size of collection */
|
|
22
22
|
totalSize: number;
|
|
23
23
|
}
|
|
@@ -29,6 +29,6 @@ export interface CdpPaginatedResponseBaseRepresentationNormalized {
|
|
|
29
29
|
*/
|
|
30
30
|
export interface CdpPaginatedResponseBaseRepresentation {
|
|
31
31
|
currentPageUrl: string;
|
|
32
|
-
nextPageUrl: string;
|
|
32
|
+
nextPageUrl: string | null;
|
|
33
33
|
totalSize: number;
|
|
34
34
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-cdp-machine-learning",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.273.0",
|
|
4
4
|
"description": "machine learning for data cloud",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/platform-cdp-machine-learning.js",
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
"test:unit:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@salesforce/lds-bindings": "^1.
|
|
44
|
+
"@salesforce/lds-bindings": "^1.273.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
47
|
+
"@salesforce/lds-compiler-plugins": "^1.273.0"
|
|
48
48
|
},
|
|
49
49
|
"nx": {
|
|
50
50
|
"targets": {
|