@salesforce/lds-adapters-cdp-document-processing 1.419.0 → 1.420.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/cdp-document-processing.js +8 -1
- package/dist/es/es2018/types/src/generated/adapters/createIdpConfiguration.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/updateIdpConfiguration.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/patchSsotDocumentProcessingConfigurationsByIdOrApiName.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/postSsotDocumentProcessingConfigurations.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/IdpConfigurationDetailsRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/IdpConfigurationInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/IdpConfigurationPatchInputRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +9 -2
- package/src/raml/api.raml +9 -0
|
@@ -608,7 +608,7 @@ const getIdpConfigurationsAdapterFactory = (luvio) => function documentProcessin
|
|
|
608
608
|
};
|
|
609
609
|
|
|
610
610
|
const TTL$3 = 500;
|
|
611
|
-
const VERSION$4 = "
|
|
611
|
+
const VERSION$4 = "ebd36487f80835fe72a1426120808b99";
|
|
612
612
|
function validate$7(obj, path = 'IdpConfigurationDetailsRepresentation') {
|
|
613
613
|
const v_error = (() => {
|
|
614
614
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -711,6 +711,11 @@ function validate$7(obj, path = 'IdpConfigurationDetailsRepresentation') {
|
|
|
711
711
|
if (typeof obj_schemaConfig !== 'string') {
|
|
712
712
|
return new TypeError('Expected "string" but received "' + typeof obj_schemaConfig + '" (at "' + path_schemaConfig + '")');
|
|
713
713
|
}
|
|
714
|
+
const obj_sourceDmoDeveloperName = obj.sourceDmoDeveloperName;
|
|
715
|
+
const path_sourceDmoDeveloperName = path + '.sourceDmoDeveloperName';
|
|
716
|
+
if (typeof obj_sourceDmoDeveloperName !== 'string') {
|
|
717
|
+
return new TypeError('Expected "string" but received "' + typeof obj_sourceDmoDeveloperName + '" (at "' + path_sourceDmoDeveloperName + '")');
|
|
718
|
+
}
|
|
714
719
|
})();
|
|
715
720
|
return v_error === undefined ? null : v_error;
|
|
716
721
|
}
|
|
@@ -810,6 +815,7 @@ const createIdpConfiguration_ConfigPropertyMetadata = [
|
|
|
810
815
|
generateParamConfigMetadata('name', true, 2 /* Body */, 0 /* String */),
|
|
811
816
|
generateParamConfigMetadata('configMetadata', true, 2 /* Body */, 4 /* Unsupported */),
|
|
812
817
|
generateParamConfigMetadata('schemaConfig', true, 2 /* Body */, 0 /* String */),
|
|
818
|
+
generateParamConfigMetadata('sourceDmoDeveloperName', true, 2 /* Body */, 0 /* String */),
|
|
813
819
|
];
|
|
814
820
|
const createIdpConfiguration_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$6, createIdpConfiguration_ConfigPropertyMetadata);
|
|
815
821
|
const createResourceParams$6 = /*#__PURE__*/ createResourceParams$8(createIdpConfiguration_ConfigPropertyMetadata);
|
|
@@ -1158,6 +1164,7 @@ const updateIdpConfiguration_ConfigPropertyMetadata = [
|
|
|
1158
1164
|
generateParamConfigMetadata('label', false, 2 /* Body */, 0 /* String */),
|
|
1159
1165
|
generateParamConfigMetadata('mlModel', false, 2 /* Body */, 0 /* String */),
|
|
1160
1166
|
generateParamConfigMetadata('schemaConfig', false, 2 /* Body */, 0 /* String */),
|
|
1167
|
+
generateParamConfigMetadata('sourceDmoDeveloperName', true, 2 /* Body */, 0 /* String */),
|
|
1161
1168
|
];
|
|
1162
1169
|
const updateIdpConfiguration_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$3, updateIdpConfiguration_ConfigPropertyMetadata);
|
|
1163
1170
|
const createResourceParams$3 = /*#__PURE__*/ createResourceParams$8(updateIdpConfiguration_ConfigPropertyMetadata);
|
|
@@ -18,6 +18,7 @@ export interface CreateIdpConfigurationConfig {
|
|
|
18
18
|
builderType: string;
|
|
19
19
|
};
|
|
20
20
|
schemaConfig: string;
|
|
21
|
+
sourceDmoDeveloperName: string;
|
|
21
22
|
}
|
|
22
23
|
export declare const createResourceParams: (config: CreateIdpConfigurationConfig) => resources_postSsotDocumentProcessingConfigurations_ResourceRequestConfig;
|
|
23
24
|
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateIdpConfigurationConfig>): adapter$45$utils_Untrusted<CreateIdpConfigurationConfig>;
|
|
@@ -12,6 +12,7 @@ export interface UpdateIdpConfigurationConfig {
|
|
|
12
12
|
label?: string;
|
|
13
13
|
mlModel?: string;
|
|
14
14
|
schemaConfig?: string;
|
|
15
|
+
sourceDmoDeveloperName: string;
|
|
15
16
|
}
|
|
16
17
|
export declare const createResourceParams: (config: UpdateIdpConfigurationConfig) => resources_patchSsotDocumentProcessingConfigurationsByIdOrApiName_ResourceRequestConfig;
|
|
17
18
|
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UpdateIdpConfigurationConfig>): adapter$45$utils_Untrusted<UpdateIdpConfigurationConfig>;
|
|
@@ -10,6 +10,7 @@ export interface ResourceRequestConfig {
|
|
|
10
10
|
label?: string;
|
|
11
11
|
mlModel?: string;
|
|
12
12
|
schemaConfig?: string;
|
|
13
|
+
sourceDmoDeveloperName: string;
|
|
13
14
|
};
|
|
14
15
|
}
|
|
15
16
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
package/dist/es/es2018/types/src/generated/resources/postSsotDocumentProcessingConfigurations.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export interface ResourceRequestConfig {
|
|
|
14
14
|
builderType: string;
|
|
15
15
|
};
|
|
16
16
|
schemaConfig: string;
|
|
17
|
+
sourceDmoDeveloperName: string;
|
|
17
18
|
};
|
|
18
19
|
}
|
|
19
20
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
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';
|
|
2
2
|
export declare const TTL = 500;
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "ebd36487f80835fe72a1426120808b99";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -46,6 +46,8 @@ export interface IdpConfigurationDetailsRepresentationNormalized {
|
|
|
46
46
|
runtimeStatus: string | null;
|
|
47
47
|
/** The schema of the data to be extracted */
|
|
48
48
|
schemaConfig: string;
|
|
49
|
+
/** The API name of the unstructured DMO used as input to the data extraction process */
|
|
50
|
+
sourceDmoDeveloperName: string;
|
|
49
51
|
}
|
|
50
52
|
/**
|
|
51
53
|
* Idp Configuration Details Representation
|
|
@@ -65,4 +67,5 @@ export interface IdpConfigurationDetailsRepresentation {
|
|
|
65
67
|
name: string;
|
|
66
68
|
runtimeStatus: string | null;
|
|
67
69
|
schemaConfig: string;
|
|
70
|
+
sourceDmoDeveloperName: string;
|
|
68
71
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
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';
|
|
2
2
|
export declare const TTL = 500;
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "84a86aa6549fd085b5563252ef155956";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export declare function normalize(input: IdpConfigurationInputRepresentation, existing: IdpConfigurationInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): IdpConfigurationInputRepresentationNormalized;
|
|
@@ -37,6 +37,8 @@ export interface IdpConfigurationInputRepresentationNormalized {
|
|
|
37
37
|
name: string;
|
|
38
38
|
/** The schema of the data to be extracted */
|
|
39
39
|
schemaConfig: string;
|
|
40
|
+
/** The API name of the unstructured DMO used as input to the data extraction process */
|
|
41
|
+
sourceDmoDeveloperName: string;
|
|
40
42
|
}
|
|
41
43
|
/**
|
|
42
44
|
* The input representation for Idp Configuration
|
|
@@ -57,4 +59,5 @@ export interface IdpConfigurationInputRepresentation {
|
|
|
57
59
|
mlModel: string;
|
|
58
60
|
name: string;
|
|
59
61
|
schemaConfig: string;
|
|
62
|
+
sourceDmoDeveloperName: string;
|
|
60
63
|
}
|
package/dist/es/es2018/types/src/generated/types/IdpConfigurationPatchInputRepresentation.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
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';
|
|
2
2
|
export declare const TTL = 500;
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "f965d15328e7f841b0d39c57d25d251d";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export declare function normalize(input: IdpConfigurationPatchInputRepresentation, existing: IdpConfigurationPatchInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): IdpConfigurationPatchInputRepresentationNormalized;
|
|
@@ -25,6 +25,8 @@ export interface IdpConfigurationPatchInputRepresentationNormalized {
|
|
|
25
25
|
mlModel?: string;
|
|
26
26
|
/** The schema of the data to be extracted */
|
|
27
27
|
schemaConfig?: string;
|
|
28
|
+
/** The API name of the unstructured DMO used as input to the data extraction process */
|
|
29
|
+
sourceDmoDeveloperName: string;
|
|
28
30
|
}
|
|
29
31
|
/**
|
|
30
32
|
* The update input representation for Idp Configuration
|
|
@@ -38,4 +40,5 @@ export interface IdpConfigurationPatchInputRepresentation {
|
|
|
38
40
|
label?: string;
|
|
39
41
|
mlModel?: string;
|
|
40
42
|
schemaConfig?: string;
|
|
43
|
+
sourceDmoDeveloperName: string;
|
|
41
44
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-cdp-document-processing",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.420.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/cdp-document-processing.js",
|
|
@@ -42,10 +42,10 @@
|
|
|
42
42
|
"test:unit:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@salesforce/lds-bindings": "^1.
|
|
45
|
+
"@salesforce/lds-bindings": "^1.420.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
48
|
+
"@salesforce/lds-compiler-plugins": "^1.420.0"
|
|
49
49
|
},
|
|
50
50
|
"nx": {
|
|
51
51
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -103,7 +103,7 @@ function createLink(ref) {
|
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
const TTL$5 = 500;
|
|
106
|
-
const VERSION$5 = "
|
|
106
|
+
const VERSION$5 = "ebd36487f80835fe72a1426120808b99";
|
|
107
107
|
function validate$c(obj, path = 'IdpConfigurationDetailsRepresentation') {
|
|
108
108
|
const v_error = (() => {
|
|
109
109
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -206,6 +206,11 @@ function validate$c(obj, path = 'IdpConfigurationDetailsRepresentation') {
|
|
|
206
206
|
if (typeof obj_schemaConfig !== 'string') {
|
|
207
207
|
return new TypeError('Expected "string" but received "' + typeof obj_schemaConfig + '" (at "' + path_schemaConfig + '")');
|
|
208
208
|
}
|
|
209
|
+
const obj_sourceDmoDeveloperName = obj.sourceDmoDeveloperName;
|
|
210
|
+
const path_sourceDmoDeveloperName = path + '.sourceDmoDeveloperName';
|
|
211
|
+
if (typeof obj_sourceDmoDeveloperName !== 'string') {
|
|
212
|
+
return new TypeError('Expected "string" but received "' + typeof obj_sourceDmoDeveloperName + '" (at "' + path_sourceDmoDeveloperName + '")');
|
|
213
|
+
}
|
|
209
214
|
})();
|
|
210
215
|
return v_error === undefined ? null : v_error;
|
|
211
216
|
}
|
|
@@ -305,6 +310,7 @@ const createIdpConfiguration_ConfigPropertyMetadata = [
|
|
|
305
310
|
generateParamConfigMetadata('name', true, 2 /* Body */, 0 /* String */),
|
|
306
311
|
generateParamConfigMetadata('configMetadata', true, 2 /* Body */, 4 /* Unsupported */),
|
|
307
312
|
generateParamConfigMetadata('schemaConfig', true, 2 /* Body */, 0 /* String */),
|
|
313
|
+
generateParamConfigMetadata('sourceDmoDeveloperName', true, 2 /* Body */, 0 /* String */),
|
|
308
314
|
];
|
|
309
315
|
const createIdpConfiguration_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$7, createIdpConfiguration_ConfigPropertyMetadata);
|
|
310
316
|
const createResourceParams$7 = /*#__PURE__*/ createResourceParams$8(createIdpConfiguration_ConfigPropertyMetadata);
|
|
@@ -2052,6 +2058,7 @@ const updateIdpConfiguration_ConfigPropertyMetadata = [
|
|
|
2052
2058
|
generateParamConfigMetadata('label', false, 2 /* Body */, 0 /* String */),
|
|
2053
2059
|
generateParamConfigMetadata('mlModel', false, 2 /* Body */, 0 /* String */),
|
|
2054
2060
|
generateParamConfigMetadata('schemaConfig', false, 2 /* Body */, 0 /* String */),
|
|
2061
|
+
generateParamConfigMetadata('sourceDmoDeveloperName', true, 2 /* Body */, 0 /* String */),
|
|
2055
2062
|
];
|
|
2056
2063
|
const updateIdpConfiguration_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName, updateIdpConfiguration_ConfigPropertyMetadata);
|
|
2057
2064
|
const createResourceParams = /*#__PURE__*/ createResourceParams$8(updateIdpConfiguration_ConfigPropertyMetadata);
|
|
@@ -2184,4 +2191,4 @@ withDefaultLuvio((luvio) => {
|
|
|
2184
2191
|
});
|
|
2185
2192
|
|
|
2186
2193
|
export { createIdpConfiguration, deleteIdpConfiguration, extractDataUsingIdpConfiguration, extractDataUsingIdpConfiguration_imperative, generateIdpConfigurationSchema, getIdpConfiguration, getIdpConfigurationNotifyChange, getIdpConfiguration_imperative, getIdpConfigurations, getIdpConfigurations_imperative, getIdpGlobalConfig, getIdpGlobalConfig_imperative, updateIdpConfiguration };
|
|
2187
|
-
// version: 1.
|
|
2194
|
+
// version: 1.420.0-576a1ea316
|
package/src/raml/api.raml
CHANGED
|
@@ -133,6 +133,9 @@ types:
|
|
|
133
133
|
description: Idp Configuration Details Representation
|
|
134
134
|
type: object
|
|
135
135
|
properties:
|
|
136
|
+
sourceDmoDeveloperName:
|
|
137
|
+
description: The API name of the unstructured DMO used as input to the data extraction process
|
|
138
|
+
type: string
|
|
136
139
|
schemaConfig:
|
|
137
140
|
description: The schema of the data to be extracted
|
|
138
141
|
type: string
|
|
@@ -209,6 +212,9 @@ types:
|
|
|
209
212
|
schemaConfig:
|
|
210
213
|
description: The schema of the data to be extracted
|
|
211
214
|
type: string
|
|
215
|
+
sourceDmoDeveloperName:
|
|
216
|
+
description: The API name of the unstructured DMO used as input to the data extraction process
|
|
217
|
+
type: string
|
|
212
218
|
IdpConfigurationPatchInputRepresentation:
|
|
213
219
|
description: The update input representation for Idp Configuration
|
|
214
220
|
type: object
|
|
@@ -237,6 +243,9 @@ types:
|
|
|
237
243
|
description: The schema of the data to be extracted
|
|
238
244
|
type: string
|
|
239
245
|
required: false
|
|
246
|
+
sourceDmoDeveloperName:
|
|
247
|
+
description: The API name of the unstructured DMO used as input to the data extraction process
|
|
248
|
+
type: string
|
|
240
249
|
IdpConfigurationRepresentation:
|
|
241
250
|
description: Idp Configuration Representation
|
|
242
251
|
type: IdpConfigurationBaseRepresentation
|