@salesforce/lds-adapters-industries-omnidesigner 1.428.0-dev2 → 1.429.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.
|
@@ -1733,7 +1733,7 @@ const getDataraptorConfigAdapterFactory = (luvio) => function OmniDesigner__getD
|
|
|
1733
1733
|
buildCachedSnapshotCachePolicy$k, buildNetworkSnapshotCachePolicy$k);
|
|
1734
1734
|
};
|
|
1735
1735
|
|
|
1736
|
-
const VERSION$T = "
|
|
1736
|
+
const VERSION$T = "498ae1a54a660b8d62c1c54f54f5b2d9";
|
|
1737
1737
|
function validate$14(obj, path = 'OmniDesignerDRDetailRepresentation') {
|
|
1738
1738
|
const v_error = (() => {
|
|
1739
1739
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -1754,6 +1754,11 @@ function validate$14(obj, path = 'OmniDesignerDRDetailRepresentation') {
|
|
|
1754
1754
|
if (typeof obj_name !== 'string') {
|
|
1755
1755
|
return new TypeError('Expected "string" but received "' + typeof obj_name + '" (at "' + path_name + '")');
|
|
1756
1756
|
}
|
|
1757
|
+
const obj_namespace = obj.namespace;
|
|
1758
|
+
const path_namespace = path + '.namespace';
|
|
1759
|
+
if (typeof obj_namespace !== 'string') {
|
|
1760
|
+
return new TypeError('Expected "string" but received "' + typeof obj_namespace + '" (at "' + path_namespace + '")');
|
|
1761
|
+
}
|
|
1757
1762
|
const obj_type = obj.type;
|
|
1758
1763
|
const path_type = path + '.type';
|
|
1759
1764
|
if (typeof obj_type !== 'string') {
|
|
@@ -1785,6 +1790,10 @@ const select$1t = function OmniDesignerDRDetailRepresentationSelect() {
|
|
|
1785
1790
|
name: 'name',
|
|
1786
1791
|
kind: 'Scalar'
|
|
1787
1792
|
},
|
|
1793
|
+
{
|
|
1794
|
+
name: 'namespace',
|
|
1795
|
+
kind: 'Scalar'
|
|
1796
|
+
},
|
|
1788
1797
|
{
|
|
1789
1798
|
name: 'type',
|
|
1790
1799
|
kind: 'Scalar'
|
|
@@ -1812,6 +1821,11 @@ function equals$T(existing, incoming) {
|
|
|
1812
1821
|
if (!(existing_name === incoming_name)) {
|
|
1813
1822
|
return false;
|
|
1814
1823
|
}
|
|
1824
|
+
const existing_namespace = existing.namespace;
|
|
1825
|
+
const incoming_namespace = incoming.namespace;
|
|
1826
|
+
if (!(existing_namespace === incoming_namespace)) {
|
|
1827
|
+
return false;
|
|
1828
|
+
}
|
|
1815
1829
|
const existing_type = existing.type;
|
|
1816
1830
|
const incoming_type = incoming.type;
|
|
1817
1831
|
if (!(existing_type === incoming_type)) {
|
|
@@ -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 = "498ae1a54a660b8d62c1c54f54f5b2d9";
|
|
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: OmniDesignerDRDetailRepresentation, existing: OmniDesignerDRDetailRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): OmniDesignerDRDetailRepresentationNormalized;
|
|
@@ -20,6 +20,8 @@ export interface OmniDesignerDRDetailRepresentationNormalized {
|
|
|
20
20
|
isActive: string;
|
|
21
21
|
/** Name of the Dataraptor */
|
|
22
22
|
name: string;
|
|
23
|
+
/** Namespace of the Dataraptor */
|
|
24
|
+
namespace: string;
|
|
23
25
|
/** Type of Dataraptor */
|
|
24
26
|
type: string;
|
|
25
27
|
/** Version Number of Dataraptor */
|
|
@@ -35,6 +37,7 @@ export interface OmniDesignerDRDetailRepresentation {
|
|
|
35
37
|
id: string;
|
|
36
38
|
isActive: string;
|
|
37
39
|
name: string;
|
|
40
|
+
namespace: string;
|
|
38
41
|
type: string;
|
|
39
42
|
versionNumber: string;
|
|
40
43
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-omnidesigner",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.429.0",
|
|
4
4
|
"description": "APIs for Omni designer",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/industries-omnidesigner.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.429.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.429.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -1904,7 +1904,7 @@ const deleteOmniProcessElementAdapterFactory = (luvio) => {
|
|
|
1904
1904
|
};
|
|
1905
1905
|
};
|
|
1906
1906
|
|
|
1907
|
-
const VERSION$W = "
|
|
1907
|
+
const VERSION$W = "498ae1a54a660b8d62c1c54f54f5b2d9";
|
|
1908
1908
|
function validate$17(obj, path = 'OmniDesignerDRDetailRepresentation') {
|
|
1909
1909
|
const v_error = (() => {
|
|
1910
1910
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -1925,6 +1925,11 @@ function validate$17(obj, path = 'OmniDesignerDRDetailRepresentation') {
|
|
|
1925
1925
|
if (typeof obj_name !== 'string') {
|
|
1926
1926
|
return new TypeError('Expected "string" but received "' + typeof obj_name + '" (at "' + path_name + '")');
|
|
1927
1927
|
}
|
|
1928
|
+
const obj_namespace = obj.namespace;
|
|
1929
|
+
const path_namespace = path + '.namespace';
|
|
1930
|
+
if (typeof obj_namespace !== 'string') {
|
|
1931
|
+
return new TypeError('Expected "string" but received "' + typeof obj_namespace + '" (at "' + path_namespace + '")');
|
|
1932
|
+
}
|
|
1928
1933
|
const obj_type = obj.type;
|
|
1929
1934
|
const path_type = path + '.type';
|
|
1930
1935
|
if (typeof obj_type !== 'string') {
|
|
@@ -1956,6 +1961,10 @@ const select$1v = function OmniDesignerDRDetailRepresentationSelect() {
|
|
|
1956
1961
|
name: 'name',
|
|
1957
1962
|
kind: 'Scalar'
|
|
1958
1963
|
},
|
|
1964
|
+
{
|
|
1965
|
+
name: 'namespace',
|
|
1966
|
+
kind: 'Scalar'
|
|
1967
|
+
},
|
|
1959
1968
|
{
|
|
1960
1969
|
name: 'type',
|
|
1961
1970
|
kind: 'Scalar'
|
|
@@ -1983,6 +1992,11 @@ function equals$W(existing, incoming) {
|
|
|
1983
1992
|
if (!(existing_name === incoming_name)) {
|
|
1984
1993
|
return false;
|
|
1985
1994
|
}
|
|
1995
|
+
const existing_namespace = existing.namespace;
|
|
1996
|
+
const incoming_namespace = incoming.namespace;
|
|
1997
|
+
if (!(existing_namespace === incoming_namespace)) {
|
|
1998
|
+
return false;
|
|
1999
|
+
}
|
|
1986
2000
|
const existing_type = existing.type;
|
|
1987
2001
|
const incoming_type = incoming.type;
|
|
1988
2002
|
if (!(existing_type === incoming_type)) {
|
|
@@ -15582,4 +15596,4 @@ withDefaultLuvio((luvio) => {
|
|
|
15582
15596
|
});
|
|
15583
15597
|
|
|
15584
15598
|
export { buildBusinessProcessDataJson, buildJson, cardUpsertAttachment, cloneOmniProcess, cloneOmniProcessElement, deleteOmniProcessElement, fetchDataraptorList, fetchDataraptorList_imperative, fetchDecisionMatrix, fetchDecisionMatrix_imperative, fetchDocusignTemplates, fetchDocusignTemplates_imperative, fetchEmailDocuments, fetchEmailDocuments_imperative, fetchEntityInfo, fetchEntityInfo_imperative, fetchOmniProcessData, fetchOmniProcessData_imperative, fetchOmniProcessList, fetchOmniProcessList_imperative, getCardById, getCardByIdNotifyChange, getCardById_imperative, getCardList, getCardList_imperative, getDataraptorConfig, getDataraptorConfig_imperative, getDecisionTableForDocumentMatrix, getDecisionTableForDocumentMatrix_imperative, getDesignerCustomization, getDesignerCustomizationElementWarning, getDesignerCustomizationElementWarning_imperative, getDesignerCustomization_imperative, getDesignerElementCustomizations, getDesignerElementCustomizations_imperative, getDocusignTemplatesExternal, getDocusignTemplatesExternal_imperative, getDynamicElements, getDynamicElements_imperative, getEmailTemplates, getEmailTemplates_imperative, getEntityRecords, getExpressionGrammar, getExpressionGrammar_imperative, getFileBasedOsDetail, getFileBasedOsDetail_imperative, getFileBasedOsList, getFileBasedOsList_imperative, getFileCardDetail, getFileCardDetail_imperative, getIntegrationProcedureFetchRecord, getIntegrationProcedureFetchRecord_imperative, getNonOmniscriptLwc, getNonOmniscriptLwc_imperative, insertOmniProcessElement, integrationProcedureExecutionResult, moveOmniProcessElement, postClearDatamapperCache, postClearIntegrationProcedureCache, postExecuteDataMapper, postIntegrationProcedureConnectPost, postIntegrationProcedureExecute, saveCustomLabel, simulateDataraptor, uploadDocument, upsertDataraptor, upsertOmniProcess };
|
|
15585
|
-
// version: 1.
|
|
15599
|
+
// version: 1.429.0-327e0551f4
|
package/src/raml/api.raml
CHANGED