@salesforce/lds-adapters-industries-filebased-dataimport 1.252.0 → 1.256.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.
@@ -970,12 +970,12 @@ const createFileBasedDataImport_ConfigPropertyMetadata = [
970
970
  generateParamConfigMetadata('failedRecordContentDoc', false, 2 /* Body */, 0 /* String */),
971
971
  generateParamConfigMetadata('failedRecordCount', false, 2 /* Body */, 3 /* Integer */),
972
972
  generateParamConfigMetadata('id', false, 2 /* Body */, 0 /* String */),
973
- generateParamConfigMetadata('importOperationType', true, 2 /* Body */, 0 /* String */),
974
- generateParamConfigMetadata('importType', true, 2 /* Body */, 0 /* String */),
973
+ generateParamConfigMetadata('importOperationType', false, 2 /* Body */, 0 /* String */),
974
+ generateParamConfigMetadata('importType', false, 2 /* Body */, 0 /* String */),
975
975
  generateParamConfigMetadata('jobIdentifier', false, 2 /* Body */, 0 /* String */),
976
976
  generateParamConfigMetadata('sourceContentDocument', false, 2 /* Body */, 0 /* String */),
977
977
  generateParamConfigMetadata('sourceFileName', true, 2 /* Body */, 0 /* String */),
978
- generateParamConfigMetadata('status', true, 2 /* Body */, 0 /* String */),
978
+ generateParamConfigMetadata('status', false, 2 /* Body */, 0 /* String */),
979
979
  generateParamConfigMetadata('statusReason', false, 2 /* Body */, 0 /* String */),
980
980
  generateParamConfigMetadata('successfulRecordContentDoc', false, 2 /* Body */, 0 /* String */),
981
981
  generateParamConfigMetadata('successfulRecordCount', false, 2 /* Body */, 3 /* Integer */),
@@ -9,12 +9,12 @@ export interface CreateFileBasedDataImportConfig {
9
9
  failedRecordContentDoc?: string;
10
10
  failedRecordCount?: number;
11
11
  id?: string;
12
- importOperationType: string;
13
- importType: string;
12
+ importOperationType?: string;
13
+ importType?: string;
14
14
  jobIdentifier?: string;
15
15
  sourceContentDocument?: string;
16
16
  sourceFileName: string;
17
- status: string;
17
+ status?: string;
18
18
  statusReason?: string;
19
19
  successfulRecordContentDoc?: string;
20
20
  successfulRecordCount?: number;
@@ -5,12 +5,12 @@ export interface ResourceRequestConfig {
5
5
  failedRecordContentDoc?: string;
6
6
  failedRecordCount?: number;
7
7
  id?: string;
8
- importOperationType: string;
9
- importType: string;
8
+ importOperationType?: string;
9
+ importType?: string;
10
10
  jobIdentifier?: string;
11
11
  sourceContentDocument?: string;
12
12
  sourceFileName: string;
13
- status: string;
13
+ status?: string;
14
14
  statusReason?: string;
15
15
  successfulRecordContentDoc?: string;
16
16
  successfulRecordCount?: number;
@@ -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 = "1197a0e3cb801703060b57d54cdb1503";
2
+ export declare const VERSION = "0626af989694f2bbbe5ea1516530e6cb";
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: FileBasedDataImportInputRep, existing: FileBasedDataImportInputRepNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FileBasedDataImportInputRepNormalized;
@@ -21,9 +21,9 @@ export interface FileBasedDataImportInputRepNormalized {
21
21
  /** The sourceFileName of the file based data import functionality entity */
22
22
  id?: string;
23
23
  /** The importOperationType of the file based data import functionality entity */
24
- importOperationType: string;
24
+ importOperationType?: string;
25
25
  /** The importType of the file based data import functionality entity */
26
- importType: string;
26
+ importType?: string;
27
27
  /** The job identifier of the file based data import functionality entity */
28
28
  jobIdentifier?: string;
29
29
  /** The sourceContentDocument of the file based data import functionality entity */
@@ -31,7 +31,7 @@ export interface FileBasedDataImportInputRepNormalized {
31
31
  /** The sourceFileName of the file based data import functionality entity */
32
32
  sourceFileName: string;
33
33
  /** The status of the file based data import functionality entity */
34
- status: string;
34
+ status?: string;
35
35
  /** The status reason of the file based data import functionality entity */
36
36
  statusReason?: string;
37
37
  /** The successful record content doc of the file based data import functionality entity */
@@ -55,12 +55,12 @@ export interface FileBasedDataImportInputRep {
55
55
  failedRecordContentDoc?: string;
56
56
  failedRecordCount?: number;
57
57
  id?: string;
58
- importOperationType: string;
59
- importType: string;
58
+ importOperationType?: string;
59
+ importType?: string;
60
60
  jobIdentifier?: string;
61
61
  sourceContentDocument?: string;
62
62
  sourceFileName: string;
63
- status: string;
63
+ status?: string;
64
64
  statusReason?: string;
65
65
  successfulRecordContentDoc?: string;
66
66
  successfulRecordCount?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-industries-filebased-dataimport",
3
- "version": "1.252.0",
3
+ "version": "1.256.0",
4
4
  "description": "Resource Family for File Based Data Import Use cases",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "dist/es/es2018/industries-filebased-dataimport.js",
@@ -41,11 +41,11 @@
41
41
  "test:unit": "jest"
42
42
  },
43
43
  "dependencies": {
44
- "@salesforce/lds-bindings": "*"
44
+ "@salesforce/lds-bindings": "^1.256.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@salesforce/lds-karma": "*",
48
- "@salesforce/lds-compiler-plugins": "*"
47
+ "@salesforce/lds-compiler-plugins": "^1.256.0",
48
+ "@salesforce/lds-karma": "^1.256.0"
49
49
  },
50
50
  "nx": {
51
51
  "targets": {
package/sfdc/index.js CHANGED
@@ -716,12 +716,12 @@ const createFileBasedDataImport_ConfigPropertyMetadata = [
716
716
  generateParamConfigMetadata('failedRecordContentDoc', false, 2 /* Body */, 0 /* String */),
717
717
  generateParamConfigMetadata('failedRecordCount', false, 2 /* Body */, 3 /* Integer */),
718
718
  generateParamConfigMetadata('id', false, 2 /* Body */, 0 /* String */),
719
- generateParamConfigMetadata('importOperationType', true, 2 /* Body */, 0 /* String */),
720
- generateParamConfigMetadata('importType', true, 2 /* Body */, 0 /* String */),
719
+ generateParamConfigMetadata('importOperationType', false, 2 /* Body */, 0 /* String */),
720
+ generateParamConfigMetadata('importType', false, 2 /* Body */, 0 /* String */),
721
721
  generateParamConfigMetadata('jobIdentifier', false, 2 /* Body */, 0 /* String */),
722
722
  generateParamConfigMetadata('sourceContentDocument', false, 2 /* Body */, 0 /* String */),
723
723
  generateParamConfigMetadata('sourceFileName', true, 2 /* Body */, 0 /* String */),
724
- generateParamConfigMetadata('status', true, 2 /* Body */, 0 /* String */),
724
+ generateParamConfigMetadata('status', false, 2 /* Body */, 0 /* String */),
725
725
  generateParamConfigMetadata('statusReason', false, 2 /* Body */, 0 /* String */),
726
726
  generateParamConfigMetadata('successfulRecordContentDoc', false, 2 /* Body */, 0 /* String */),
727
727
  generateParamConfigMetadata('successfulRecordCount', false, 2 /* Body */, 3 /* Integer */),
@@ -3606,4 +3606,4 @@ withDefaultLuvio((luvio) => {
3606
3606
  });
3607
3607
 
3608
3608
  export { createFileBasedDataImport, deleteFileBasedDataImport, getAllFields, getAllFields_imperative, getCsvAutoMap, getCsvAutoMap_imperative, getCsvPreviewData, getCsvPreviewData_imperative, getDPEDefinitions, getDPEDefinitions_imperative, getFileBasedDataImportById, getFileBasedDataImportByIdNotifyChange, getFileBasedDataImportById_imperative, getFileBasedDataImports, getFileBasedDataImports_imperative, startAdvanceImport, startSimpleImport, updateFileBasedDataImport };
3609
- // version: 1.252.0-eca5ba0ae
3609
+ // version: 1.256.0-fb019fbad
package/src/raml/api.raml CHANGED
@@ -370,7 +370,7 @@ types:
370
370
  description: The sourceFileName of the file based data import functionality
371
371
  entity
372
372
  type: string
373
- importOperationType:
373
+ importOperationType?:
374
374
  description: The importOperationType of the file based data import functionality
375
375
  entity
376
376
  type: string
@@ -378,7 +378,7 @@ types:
378
378
  - INSERT
379
379
  - UPDATE
380
380
  - UPSERT
381
- importType:
381
+ importType?:
382
382
  description: The importType of the file based data import functionality entity
383
383
  type: string
384
384
  enum:
@@ -396,7 +396,7 @@ types:
396
396
  description: The sourceFileName of the file based data import functionality
397
397
  entity
398
398
  type: string
399
- status:
399
+ status?:
400
400
  description: The status of the file based data import functionality entity
401
401
  type: string
402
402
  enum: