@salesforce/lds-adapters-cdp-document-processing 1.380.0-dev1 → 1.380.0-dev3
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 +3 -3
- package/dist/es/es2018/types/src/generated/adapters/updateIdpConfiguration.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/resources/patchSsotDocumentProcessingConfigurationsByIdOrApiName.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/IdpConfigurationPatchInputRepresentation.d.ts +7 -7
- package/package.json +3 -3
- package/sfdc/index.js +4 -4
- package/src/raml/api.raml +3 -0
|
@@ -1153,9 +1153,9 @@ function createResourceRequest$3(config) {
|
|
|
1153
1153
|
const adapterName$3 = 'updateIdpConfiguration';
|
|
1154
1154
|
const updateIdpConfiguration_ConfigPropertyMetadata = [
|
|
1155
1155
|
generateParamConfigMetadata('idOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
1156
|
-
generateParamConfigMetadata('activationStatus',
|
|
1157
|
-
generateParamConfigMetadata('description',
|
|
1158
|
-
generateParamConfigMetadata('label',
|
|
1156
|
+
generateParamConfigMetadata('activationStatus', false, 2 /* Body */, 0 /* String */),
|
|
1157
|
+
generateParamConfigMetadata('description', false, 2 /* Body */, 0 /* String */),
|
|
1158
|
+
generateParamConfigMetadata('label', false, 2 /* Body */, 0 /* String */),
|
|
1159
1159
|
];
|
|
1160
1160
|
const updateIdpConfiguration_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$3, updateIdpConfiguration_ConfigPropertyMetadata);
|
|
1161
1161
|
const createResourceParams$3 = /*#__PURE__*/ createResourceParams$8(updateIdpConfiguration_ConfigPropertyMetadata);
|
|
@@ -7,9 +7,9 @@ export declare const updateIdpConfiguration_ConfigPropertyMetadata: $64$luvio_en
|
|
|
7
7
|
export declare const updateIdpConfiguration_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
8
|
export interface UpdateIdpConfigurationConfig {
|
|
9
9
|
idOrApiName: string;
|
|
10
|
-
activationStatus
|
|
11
|
-
description
|
|
12
|
-
label
|
|
10
|
+
activationStatus?: string;
|
|
11
|
+
description?: string;
|
|
12
|
+
label?: string;
|
|
13
13
|
}
|
|
14
14
|
export declare const createResourceParams: (config: UpdateIdpConfigurationConfig) => resources_patchSsotDocumentProcessingConfigurationsByIdOrApiName_ResourceRequestConfig;
|
|
15
15
|
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UpdateIdpConfigurationConfig>): adapter$45$utils_Untrusted<UpdateIdpConfigurationConfig>;
|
|
@@ -5,9 +5,9 @@ export interface ResourceRequestConfig {
|
|
|
5
5
|
idOrApiName: string;
|
|
6
6
|
};
|
|
7
7
|
body: {
|
|
8
|
-
activationStatus
|
|
9
|
-
description
|
|
10
|
-
label
|
|
8
|
+
activationStatus?: string;
|
|
9
|
+
description?: string;
|
|
10
|
+
label?: string;
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
13
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
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 = "e8177f5972851fdea7b85bf3e8790f9b";
|
|
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;
|
|
@@ -16,11 +16,11 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
16
16
|
*/
|
|
17
17
|
export interface IdpConfigurationPatchInputRepresentationNormalized {
|
|
18
18
|
/** The updated activation status - Activated/Deactivated */
|
|
19
|
-
activationStatus
|
|
19
|
+
activationStatus?: string;
|
|
20
20
|
/** The updated description of the IDP configuration to be created */
|
|
21
|
-
description
|
|
21
|
+
description?: string;
|
|
22
22
|
/** The updated label of the IDP configuration to be created */
|
|
23
|
-
label
|
|
23
|
+
label?: string;
|
|
24
24
|
}
|
|
25
25
|
/**
|
|
26
26
|
* The update input representation for Idp Configuration
|
|
@@ -29,7 +29,7 @@ export interface IdpConfigurationPatchInputRepresentationNormalized {
|
|
|
29
29
|
* (none)
|
|
30
30
|
*/
|
|
31
31
|
export interface IdpConfigurationPatchInputRepresentation {
|
|
32
|
-
activationStatus
|
|
33
|
-
description
|
|
34
|
-
label
|
|
32
|
+
activationStatus?: string;
|
|
33
|
+
description?: string;
|
|
34
|
+
label?: string;
|
|
35
35
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-cdp-document-processing",
|
|
3
|
-
"version": "1.380.0-
|
|
3
|
+
"version": "1.380.0-dev3",
|
|
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.380.0-
|
|
45
|
+
"@salesforce/lds-bindings": "^1.380.0-dev3"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@salesforce/lds-compiler-plugins": "^1.380.0-
|
|
48
|
+
"@salesforce/lds-compiler-plugins": "^1.380.0-dev3"
|
|
49
49
|
},
|
|
50
50
|
"nx": {
|
|
51
51
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -2044,9 +2044,9 @@ function createResourceRequest(config) {
|
|
|
2044
2044
|
const adapterName = 'updateIdpConfiguration';
|
|
2045
2045
|
const updateIdpConfiguration_ConfigPropertyMetadata = [
|
|
2046
2046
|
generateParamConfigMetadata('idOrApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
2047
|
-
generateParamConfigMetadata('activationStatus',
|
|
2048
|
-
generateParamConfigMetadata('description',
|
|
2049
|
-
generateParamConfigMetadata('label',
|
|
2047
|
+
generateParamConfigMetadata('activationStatus', false, 2 /* Body */, 0 /* String */),
|
|
2048
|
+
generateParamConfigMetadata('description', false, 2 /* Body */, 0 /* String */),
|
|
2049
|
+
generateParamConfigMetadata('label', false, 2 /* Body */, 0 /* String */),
|
|
2050
2050
|
];
|
|
2051
2051
|
const updateIdpConfiguration_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName, updateIdpConfiguration_ConfigPropertyMetadata);
|
|
2052
2052
|
const createResourceParams = /*#__PURE__*/ createResourceParams$8(updateIdpConfiguration_ConfigPropertyMetadata);
|
|
@@ -2179,4 +2179,4 @@ withDefaultLuvio((luvio) => {
|
|
|
2179
2179
|
});
|
|
2180
2180
|
|
|
2181
2181
|
export { createIdpConfiguration, deleteIdpConfiguration, extractDataUsingIdpConfiguration, extractDataUsingIdpConfiguration_imperative, generateIdpConfigurationSchema, getIdpConfiguration, getIdpConfigurationNotifyChange, getIdpConfiguration_imperative, getIdpConfigurations, getIdpConfigurations_imperative, getIdpGlobalConfig, getIdpGlobalConfig_imperative, updateIdpConfiguration };
|
|
2182
|
-
// version: 1.380.0-
|
|
2182
|
+
// version: 1.380.0-dev3-4d1fd7819b
|
package/src/raml/api.raml
CHANGED
|
@@ -217,12 +217,15 @@ types:
|
|
|
217
217
|
enum:
|
|
218
218
|
- Activated
|
|
219
219
|
- Deactivated
|
|
220
|
+
required: false
|
|
220
221
|
description:
|
|
221
222
|
description: The updated description of the IDP configuration to be created
|
|
222
223
|
type: string
|
|
224
|
+
required: false
|
|
223
225
|
label:
|
|
224
226
|
description: The updated label of the IDP configuration to be created
|
|
225
227
|
type: string
|
|
228
|
+
required: false
|
|
226
229
|
IdpConfigurationRepresentation:
|
|
227
230
|
description: Idp Configuration Representation
|
|
228
231
|
type: IdpConfigurationBaseRepresentation
|