eservices-core 1.0.516 → 1.0.517

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/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * eservices-core v1.0.516
2
+ * eservices-core v1.0.517
3
3
  * (c) 2023 ESERVICES
4
4
  */
5
5
  'use strict';
@@ -31,15 +31,32 @@ interface ObjectType {
31
31
  }
32
32
  interface IWizardProcessResponse {
33
33
  createdEntites: [];
34
- dataSets: [];
34
+ dataSets: {
35
+ entityName: string;
36
+ note: null;
37
+ records: {
38
+ primaryKey: Record<string, any>;
39
+ values: any[];
40
+ }[];
41
+ title: string;
42
+ typeName: any;
43
+ viewFields: string[];
44
+ }[];
35
45
  nextStepName: string;
36
46
  notes: any[];
37
47
  statusCode: number;
38
48
  statusName: string;
39
49
  token: string;
40
- validationResults: [];
50
+ validationResults: IValidationItem[];
41
51
  }
42
52
  export declare type IWizardFixedResponse = Omit<IWizardProcessResponse, 'createdEntites'> & {
43
53
  createdEntities: IWizardProcessResponse['createdEntites'];
44
54
  };
55
+ export interface IValidationItem {
56
+ message: string;
57
+ name: string;
58
+ statusCode: number;
59
+ statusName: string;
60
+ title: string;
61
+ }
45
62
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eservices-core",
3
- "version": "1.0.516",
3
+ "version": "1.0.517",
4
4
  "description": "Core library",
5
5
  "author": "",
6
6
  "scripts": {