sf-i-reporting 1.0.124 → 1.0.126

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/dataObjects.d.ts CHANGED
@@ -1,47 +1,47 @@
1
- export interface DataObject {
2
- type: string;
3
- name: string;
4
- size: string;
5
- label: string;
6
- selectlabel: string;
7
- subselectlabel: string;
8
- hint: string;
9
- id: string;
10
- value: any;
11
- options: string[];
12
- collapse: string;
13
- apiid: string;
14
- apiidselect: string;
15
- apiidsubselect: string;
16
- mode: string;
17
- maxselect: string;
18
- searchstring: string | string[];
19
- selectprojection: string;
20
- ignoredprojections: string | string[];
21
- savenameseparate: string;
22
- dependencies: string[];
23
- allowedextensions: string;
24
- extract: string;
25
- maxsize: string;
26
- allowdownload: string;
27
- selectfields: string[];
28
- mandatory: any;
29
- copytoreopen: boolean;
30
- displayinhistory: boolean;
31
- hideinadmin: boolean;
32
- elementsjson: string;
33
- customreporting: boolean;
34
- }
35
- export declare function createDataObject(element: any, iter?: number): DataObject;
36
- export interface AddButtonObject {
37
- id: string;
38
- type: string;
39
- label: string;
40
- schema: string;
41
- direction: string;
42
- customreporting: boolean;
43
- children: DataObject[][];
44
- }
45
- export declare function createAddButtonObject(element: any): AddButtonObject;
46
- export declare function isAddButtonObject(element: any): element is AddButtonObject;
1
+ export interface DataObject {
2
+ type: string;
3
+ name: string;
4
+ size: string;
5
+ label: string;
6
+ selectlabel: string;
7
+ subselectlabel: string;
8
+ hint: string;
9
+ id: string;
10
+ value: any;
11
+ options: string[];
12
+ collapse: string;
13
+ apiid: string;
14
+ apiidselect: string;
15
+ apiidsubselect: string;
16
+ mode: string;
17
+ maxselect: string;
18
+ searchstring: string | string[];
19
+ selectprojection: string;
20
+ ignoredprojections: string | string[];
21
+ savenameseparate: string;
22
+ dependencies: string[];
23
+ allowedextensions: string;
24
+ extract: string;
25
+ maxsize: string;
26
+ allowdownload: string;
27
+ selectfields: string[];
28
+ mandatory: any;
29
+ copytoreopen: boolean;
30
+ displayinhistory: boolean;
31
+ hideinadmin: boolean;
32
+ elementsjson: string;
33
+ customreporting: boolean;
34
+ }
35
+ export declare function createDataObject(element: any, iter?: number): DataObject;
36
+ export interface AddButtonObject {
37
+ id: string;
38
+ type: string;
39
+ label: string;
40
+ schema: string;
41
+ direction: string;
42
+ customreporting: boolean;
43
+ children: DataObject[][];
44
+ }
45
+ export declare function createAddButtonObject(element: any): AddButtonObject;
46
+ export declare function isAddButtonObject(element: any): element is AddButtonObject;
47
47
  //# sourceMappingURL=dataObjects.d.ts.map
package/dataObjects.js CHANGED
@@ -1,95 +1,95 @@
1
- export function createDataObject(element, iter) {
2
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37;
3
- if (iter == null) {
4
- return {
5
- type: element.type,
6
- name: (_a = element.name) !== null && _a !== void 0 ? _a : "",
7
- size: (_b = element.size) !== null && _b !== void 0 ? _b : "",
8
- label: (_c = element.label) !== null && _c !== void 0 ? _c : "",
9
- selectlabel: (_d = element.selectlabel) !== null && _d !== void 0 ? _d : "",
10
- subselectlabel: (_e = element.subselectlabel) !== null && _e !== void 0 ? _e : "",
11
- hint: (_f = element.hint) !== null && _f !== void 0 ? _f : "",
12
- id: (_g = element.id) !== null && _g !== void 0 ? _g : "",
13
- value: (_h = element.value) !== null && _h !== void 0 ? _h : "",
14
- options: (_j = element.options) !== null && _j !== void 0 ? _j : ["Yes", "No"],
15
- collapse: (_k = element.collapse) !== null && _k !== void 0 ? _k : "true",
16
- mode: (_l = element.mode) !== null && _l !== void 0 ? _l : "",
17
- maxselect: (_m = element.maxselect) !== null && _m !== void 0 ? _m : "",
18
- apiid: (_o = element.apiid) !== null && _o !== void 0 ? _o : "",
19
- apiidselect: (_p = element.apiidselect) !== null && _p !== void 0 ? _p : "",
20
- apiidsubselect: (_q = element.apiidsubselect) !== null && _q !== void 0 ? _q : "",
21
- searchstring: (_r = element.searchstring) !== null && _r !== void 0 ? _r : "",
22
- selectprojection: (_s = element.selectprojection) !== null && _s !== void 0 ? _s : "",
23
- ignoredprojections: (_t = element.ignoredprojections) !== null && _t !== void 0 ? _t : "",
24
- savenameseparate: (_u = element.savenameseparate) !== null && _u !== void 0 ? _u : "no",
25
- dependencies: (_v = element.dependencies) !== null && _v !== void 0 ? _v : [],
26
- allowedextensions: (_w = element.allowedextensions) !== null && _w !== void 0 ? _w : "",
27
- extract: (_x = element.extract) !== null && _x !== void 0 ? _x : "",
28
- maxsize: (_y = element.maxsize) !== null && _y !== void 0 ? _y : "",
29
- allowdownload: (_z = element.allowdownload) !== null && _z !== void 0 ? _z : "",
30
- selectfields: (_0 = element.selectfields) !== null && _0 !== void 0 ? _0 : [],
31
- mandatory: (_1 = element.mandatory) !== null && _1 !== void 0 ? _1 : null,
32
- copytoreopen: ((_2 = element.copytoreopen) !== null && _2 !== void 0 ? _2 : "") == "yes",
33
- displayinhistory: ((_3 = element.displayinhistory) !== null && _3 !== void 0 ? _3 : "") == "yes",
34
- hideinadmin: ((_4 = element.hideinadmin) !== null && _4 !== void 0 ? _4 : "") == "yes",
35
- elementsjson: (_5 = element.elementsjson) !== null && _5 !== void 0 ? _5 : "",
36
- customreporting: ((_6 = element.customreporting) !== null && _6 !== void 0 ? _6 : "") == "yes"
37
- };
38
- }
39
- else {
40
- let dependencies = (_7 = element.dependencies) !== null && _7 !== void 0 ? _7 : [];
41
- for (let [i, dependency] of dependencies.entries()) {
42
- dependencies[i] = dependency.replace(/{iter}/g, "-" + iter + "");
43
- }
44
- return {
45
- type: element.type,
46
- name: ((_8 = element.name) !== null && _8 !== void 0 ? _8 : "").replace(/{iter}/g, iter + ""),
47
- size: (_9 = element.size) !== null && _9 !== void 0 ? _9 : "",
48
- label: ((_10 = element.label) !== null && _10 !== void 0 ? _10 : "").replace(/{iter}/g, iter + ""),
49
- selectlabel: ((_11 = element.selectlabel) !== null && _11 !== void 0 ? _11 : "").replace(/{iter}/g, iter + ""),
50
- subselectlabel: ((_12 = element.subselectlabel) !== null && _12 !== void 0 ? _12 : "").replace(/{iter}/g, iter + ""),
51
- hint: ((_13 = element.hint) !== null && _13 !== void 0 ? _13 : "").replace(/{iter}/g, iter + ""),
52
- id: ((_14 = element.id) !== null && _14 !== void 0 ? _14 : "").replace(/{iter}/g, "-" + iter + ""),
53
- options: (_15 = element.options) !== null && _15 !== void 0 ? _15 : ["Yes", "No"],
54
- value: (_16 = element.value) !== null && _16 !== void 0 ? _16 : "",
55
- collapse: (_17 = element.collapse) !== null && _17 !== void 0 ? _17 : "true",
56
- mode: (_18 = element.mode) !== null && _18 !== void 0 ? _18 : "",
57
- maxselect: (_19 = element.maxselect) !== null && _19 !== void 0 ? _19 : "",
58
- apiid: (_20 = element.apiid) !== null && _20 !== void 0 ? _20 : "",
59
- apiidselect: (_21 = element.apiidselect) !== null && _21 !== void 0 ? _21 : "",
60
- apiidsubselect: (_22 = element.apiidsubselect) !== null && _22 !== void 0 ? _22 : "",
61
- searchstring: (_23 = element.searchstring) !== null && _23 !== void 0 ? _23 : "",
62
- selectprojection: (_24 = element.selectprojection) !== null && _24 !== void 0 ? _24 : "",
63
- ignoredprojections: (_25 = element.ignoredprojections) !== null && _25 !== void 0 ? _25 : "",
64
- savenameseparate: (_26 = element.savenameseparate) !== null && _26 !== void 0 ? _26 : "no",
65
- dependencies: dependencies,
66
- allowedextensions: (_27 = element.allowedextensions) !== null && _27 !== void 0 ? _27 : "",
67
- extract: (_28 = element.extract) !== null && _28 !== void 0 ? _28 : "",
68
- maxsize: (_29 = element.maxsize) !== null && _29 !== void 0 ? _29 : "",
69
- allowdownload: (_30 = element.allowdownload) !== null && _30 !== void 0 ? _30 : "",
70
- selectfields: (_31 = element.selectfields) !== null && _31 !== void 0 ? _31 : [],
71
- mandatory: (_32 = element.mandatory) !== null && _32 !== void 0 ? _32 : null,
72
- copytoreopen: ((_33 = element.copytoreopen) !== null && _33 !== void 0 ? _33 : "") == "yes",
73
- displayinhistory: ((_34 = element.displayinhistory) !== null && _34 !== void 0 ? _34 : "") == "yes",
74
- hideinadmin: ((_35 = element.hideinadmin) !== null && _35 !== void 0 ? _35 : "") == "yes",
75
- elementsjson: (_36 = element.elementsjson) !== null && _36 !== void 0 ? _36 : "",
76
- customreporting: ((_37 = element.customreporting) !== null && _37 !== void 0 ? _37 : "") == "yes"
77
- };
78
- }
79
- }
80
- export function createAddButtonObject(element) {
81
- var _a, _b;
82
- return {
83
- id: element.id,
84
- type: "",
85
- label: element.label,
86
- schema: element.schema,
87
- direction: (_a = element.direction) !== null && _a !== void 0 ? _a : "column",
88
- customreporting: ((_b = element.customreporting) !== null && _b !== void 0 ? _b : "") == "yes",
89
- children: []
90
- };
91
- }
92
- export function isAddButtonObject(element) {
93
- return 'schema' in element;
94
- }
1
+ export function createDataObject(element, iter) {
2
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37;
3
+ if (iter == null) {
4
+ return {
5
+ type: element.type,
6
+ name: (_a = element.name) !== null && _a !== void 0 ? _a : "",
7
+ size: (_b = element.size) !== null && _b !== void 0 ? _b : "",
8
+ label: (_c = element.label) !== null && _c !== void 0 ? _c : "",
9
+ selectlabel: (_d = element.selectlabel) !== null && _d !== void 0 ? _d : "",
10
+ subselectlabel: (_e = element.subselectlabel) !== null && _e !== void 0 ? _e : "",
11
+ hint: (_f = element.hint) !== null && _f !== void 0 ? _f : "",
12
+ id: (_g = element.id) !== null && _g !== void 0 ? _g : "",
13
+ value: (_h = element.value) !== null && _h !== void 0 ? _h : "",
14
+ options: (_j = element.options) !== null && _j !== void 0 ? _j : ["Yes", "No"],
15
+ collapse: (_k = element.collapse) !== null && _k !== void 0 ? _k : "true",
16
+ mode: (_l = element.mode) !== null && _l !== void 0 ? _l : "",
17
+ maxselect: (_m = element.maxselect) !== null && _m !== void 0 ? _m : "",
18
+ apiid: (_o = element.apiid) !== null && _o !== void 0 ? _o : "",
19
+ apiidselect: (_p = element.apiidselect) !== null && _p !== void 0 ? _p : "",
20
+ apiidsubselect: (_q = element.apiidsubselect) !== null && _q !== void 0 ? _q : "",
21
+ searchstring: (_r = element.searchstring) !== null && _r !== void 0 ? _r : "",
22
+ selectprojection: (_s = element.selectprojection) !== null && _s !== void 0 ? _s : "",
23
+ ignoredprojections: (_t = element.ignoredprojections) !== null && _t !== void 0 ? _t : "",
24
+ savenameseparate: (_u = element.savenameseparate) !== null && _u !== void 0 ? _u : "no",
25
+ dependencies: (_v = element.dependencies) !== null && _v !== void 0 ? _v : [],
26
+ allowedextensions: (_w = element.allowedextensions) !== null && _w !== void 0 ? _w : "",
27
+ extract: (_x = element.extract) !== null && _x !== void 0 ? _x : "",
28
+ maxsize: (_y = element.maxsize) !== null && _y !== void 0 ? _y : "",
29
+ allowdownload: (_z = element.allowdownload) !== null && _z !== void 0 ? _z : "",
30
+ selectfields: (_0 = element.selectfields) !== null && _0 !== void 0 ? _0 : [],
31
+ mandatory: (_1 = element.mandatory) !== null && _1 !== void 0 ? _1 : null,
32
+ copytoreopen: ((_2 = element.copytoreopen) !== null && _2 !== void 0 ? _2 : "") == "yes",
33
+ displayinhistory: ((_3 = element.displayinhistory) !== null && _3 !== void 0 ? _3 : "") == "yes",
34
+ hideinadmin: ((_4 = element.hideinadmin) !== null && _4 !== void 0 ? _4 : "") == "yes",
35
+ elementsjson: (_5 = element.elementsjson) !== null && _5 !== void 0 ? _5 : "",
36
+ customreporting: ((_6 = element.customreporting) !== null && _6 !== void 0 ? _6 : "") == "yes"
37
+ };
38
+ }
39
+ else {
40
+ let dependencies = (_7 = element.dependencies) !== null && _7 !== void 0 ? _7 : [];
41
+ for (let [i, dependency] of dependencies.entries()) {
42
+ dependencies[i] = dependency.replace(/{iter}/g, "-" + iter + "");
43
+ }
44
+ return {
45
+ type: element.type,
46
+ name: ((_8 = element.name) !== null && _8 !== void 0 ? _8 : "").replace(/{iter}/g, iter + ""),
47
+ size: (_9 = element.size) !== null && _9 !== void 0 ? _9 : "",
48
+ label: ((_10 = element.label) !== null && _10 !== void 0 ? _10 : "").replace(/{iter}/g, iter + ""),
49
+ selectlabel: ((_11 = element.selectlabel) !== null && _11 !== void 0 ? _11 : "").replace(/{iter}/g, iter + ""),
50
+ subselectlabel: ((_12 = element.subselectlabel) !== null && _12 !== void 0 ? _12 : "").replace(/{iter}/g, iter + ""),
51
+ hint: ((_13 = element.hint) !== null && _13 !== void 0 ? _13 : "").replace(/{iter}/g, iter + ""),
52
+ id: ((_14 = element.id) !== null && _14 !== void 0 ? _14 : "").replace(/{iter}/g, "-" + iter + ""),
53
+ options: (_15 = element.options) !== null && _15 !== void 0 ? _15 : ["Yes", "No"],
54
+ value: (_16 = element.value) !== null && _16 !== void 0 ? _16 : "",
55
+ collapse: (_17 = element.collapse) !== null && _17 !== void 0 ? _17 : "true",
56
+ mode: (_18 = element.mode) !== null && _18 !== void 0 ? _18 : "",
57
+ maxselect: (_19 = element.maxselect) !== null && _19 !== void 0 ? _19 : "",
58
+ apiid: (_20 = element.apiid) !== null && _20 !== void 0 ? _20 : "",
59
+ apiidselect: (_21 = element.apiidselect) !== null && _21 !== void 0 ? _21 : "",
60
+ apiidsubselect: (_22 = element.apiidsubselect) !== null && _22 !== void 0 ? _22 : "",
61
+ searchstring: (_23 = element.searchstring) !== null && _23 !== void 0 ? _23 : "",
62
+ selectprojection: (_24 = element.selectprojection) !== null && _24 !== void 0 ? _24 : "",
63
+ ignoredprojections: (_25 = element.ignoredprojections) !== null && _25 !== void 0 ? _25 : "",
64
+ savenameseparate: (_26 = element.savenameseparate) !== null && _26 !== void 0 ? _26 : "no",
65
+ dependencies: dependencies,
66
+ allowedextensions: (_27 = element.allowedextensions) !== null && _27 !== void 0 ? _27 : "",
67
+ extract: (_28 = element.extract) !== null && _28 !== void 0 ? _28 : "",
68
+ maxsize: (_29 = element.maxsize) !== null && _29 !== void 0 ? _29 : "",
69
+ allowdownload: (_30 = element.allowdownload) !== null && _30 !== void 0 ? _30 : "",
70
+ selectfields: (_31 = element.selectfields) !== null && _31 !== void 0 ? _31 : [],
71
+ mandatory: (_32 = element.mandatory) !== null && _32 !== void 0 ? _32 : null,
72
+ copytoreopen: ((_33 = element.copytoreopen) !== null && _33 !== void 0 ? _33 : "") == "yes",
73
+ displayinhistory: ((_34 = element.displayinhistory) !== null && _34 !== void 0 ? _34 : "") == "yes",
74
+ hideinadmin: ((_35 = element.hideinadmin) !== null && _35 !== void 0 ? _35 : "") == "yes",
75
+ elementsjson: (_36 = element.elementsjson) !== null && _36 !== void 0 ? _36 : "",
76
+ customreporting: ((_37 = element.customreporting) !== null && _37 !== void 0 ? _37 : "") == "yes"
77
+ };
78
+ }
79
+ }
80
+ export function createAddButtonObject(element) {
81
+ var _a, _b;
82
+ return {
83
+ id: element.id,
84
+ type: "",
85
+ label: element.label,
86
+ schema: element.schema,
87
+ direction: (_a = element.direction) !== null && _a !== void 0 ? _a : "column",
88
+ customreporting: ((_b = element.customreporting) !== null && _b !== void 0 ? _b : "") == "yes",
89
+ children: []
90
+ };
91
+ }
92
+ export function isAddButtonObject(element) {
93
+ return 'schema' in element;
94
+ }
95
95
  //# sourceMappingURL=dataObjects.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"dataObjects.js","sourceRoot":"","sources":["src/dataObjects.ts"],"names":[],"mappings":"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","sourcesContent":["export interface DataObject {\r\n type: string,\r\n name: string,\r\n size: string,\r\n label: string,\r\n selectlabel: string,\r\n subselectlabel: string,\r\n hint: string,\r\n id: string,\r\n value: any,\r\n options: string[],\r\n collapse: string,\r\n apiid: string,\r\n apiidselect: string,\r\n apiidsubselect: string,\r\n mode: string,\r\n maxselect: string,\r\n searchstring: string | string[],\r\n selectprojection: string,\r\n ignoredprojections: string | string[],\r\n savenameseparate: string,\r\n dependencies: string[],\r\n allowedextensions: string,\r\n extract: string,\r\n maxsize: string,\r\n allowdownload: string,\r\n selectfields: string[]\r\n mandatory: any,\r\n copytoreopen: boolean,\r\n displayinhistory: boolean,\r\n hideinadmin: boolean,\r\n elementsjson: string,\r\n customreporting: boolean\r\n}\r\n\r\nexport function createDataObject(element: any, iter?: number): DataObject {\r\n if(iter == null){\r\n return{\r\n type: element.type,\r\n name: element.name ?? \"\",\r\n size: element.size ?? \"\",\r\n label: element.label ?? \"\",\r\n selectlabel: element.selectlabel ?? \"\",\r\n subselectlabel: element.subselectlabel ?? \"\",\r\n hint: element.hint ?? \"\",\r\n id: element.id ?? \"\",\r\n value: element.value ?? \"\",\r\n options: element.options ?? [\"Yes\",\"No\"],\r\n collapse: element.collapse ?? \"true\",\r\n mode: element.mode ?? \"\",\r\n maxselect: element.maxselect ?? \"\",\r\n apiid: element.apiid ?? \"\",\r\n apiidselect: element.apiidselect ?? \"\",\r\n apiidsubselect: element.apiidsubselect ?? \"\",\r\n searchstring: element.searchstring ?? \"\",\r\n selectprojection: element.selectprojection ?? \"\",\r\n ignoredprojections: element.ignoredprojections ?? \"\",\r\n savenameseparate: element.savenameseparate ?? \"no\",\r\n dependencies: element.dependencies ?? [],\r\n allowedextensions: element.allowedextensions ?? \"\",\r\n extract: element.extract ?? \"\",\r\n maxsize: element.maxsize ?? \"\",\r\n allowdownload: element.allowdownload ?? \"\",\r\n selectfields: element.selectfields ?? [],\r\n mandatory: element.mandatory ?? null,\r\n copytoreopen: (element.copytoreopen ?? \"\") == \"yes\",\r\n displayinhistory: (element.displayinhistory ?? \"\") == \"yes\",\r\n hideinadmin: (element.hideinadmin ?? \"\") == \"yes\",\r\n elementsjson: element.elementsjson ?? \"\",\r\n customreporting: (element.customreporting ?? \"\") == \"yes\"\r\n }\r\n }else{\r\n let dependencies = element.dependencies ?? []\r\n for(let [i,dependency] of dependencies.entries()){\r\n dependencies[i] = dependency.replace(/{iter}/g,\"-\" + iter + \"\")\r\n }\r\n return{\r\n type: element.type,\r\n name: (element.name ?? \"\").replace(/{iter}/g,iter + \"\"),\r\n size: element.size ?? \"\",\r\n label: (element.label ?? \"\").replace(/{iter}/g,iter + \"\"),\r\n selectlabel: (element.selectlabel ?? \"\").replace(/{iter}/g,iter + \"\"),\r\n subselectlabel: (element.subselectlabel ?? \"\").replace(/{iter}/g,iter + \"\"),\r\n hint: (element.hint ?? \"\").replace(/{iter}/g,iter + \"\"),\r\n id: (element.id ?? \"\").replace(/{iter}/g,\"-\" + iter + \"\"),\r\n options: element.options ?? [\"Yes\",\"No\"],\r\n value: element.value ?? \"\",\r\n collapse: element.collapse ?? \"true\",\r\n mode: element.mode ?? \"\",\r\n maxselect: element.maxselect ?? \"\",\r\n apiid: element.apiid ?? \"\",\r\n apiidselect: element.apiidselect ?? \"\",\r\n apiidsubselect: element.apiidsubselect ?? \"\",\r\n searchstring: element.searchstring ?? \"\",\r\n selectprojection: element.selectprojection ?? \"\",\r\n ignoredprojections: element.ignoredprojections ?? \"\",\r\n savenameseparate: element.savenameseparate ?? \"no\",\r\n dependencies: dependencies,\r\n allowedextensions: element.allowedextensions ?? \"\",\r\n extract: element.extract ?? \"\",\r\n maxsize: element.maxsize ?? \"\",\r\n allowdownload: element.allowdownload ?? \"\",\r\n selectfields: element.selectfields ?? [],\r\n mandatory: element.mandatory ?? null,\r\n copytoreopen: (element.copytoreopen ?? \"\") == \"yes\",\r\n displayinhistory: (element.displayinhistory ?? \"\") == \"yes\",\r\n hideinadmin: (element.hideinadmin ?? \"\") == \"yes\",\r\n elementsjson: element.elementsjson ?? \"\",\r\n customreporting: (element.customreporting ?? \"\") == \"yes\"\r\n }\r\n }\r\n}\r\n\r\nexport interface AddButtonObject {\r\n id: string,\r\n type: string,\r\n label: string,\r\n schema: string,\r\n direction: string,\r\n customreporting: boolean,\r\n children: DataObject[][]\r\n}\r\n\r\nexport function createAddButtonObject(element: any): AddButtonObject {\r\n return{\r\n id: element.id,\r\n type: \"\",\r\n label: element.label,\r\n schema: element.schema,\r\n direction: element.direction ?? \"column\",\r\n customreporting: (element.customreporting ?? \"\") == \"yes\",\r\n children: []\r\n }\r\n}\r\n\r\nexport function isAddButtonObject(element: any): element is AddButtonObject {\r\n return 'schema' in element;\r\n}\r\n\r\n"]}
1
+ {"version":3,"file":"dataObjects.js","sourceRoot":"","sources":["src/dataObjects.ts"],"names":[],"mappings":"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","sourcesContent":["export interface DataObject {\r\n type: string,\r\n name: string,\r\n size: string,\r\n label: string,\r\n selectlabel: string,\r\n subselectlabel: string,\r\n hint: string,\r\n id: string,\r\n value: any,\r\n options: string[],\r\n collapse: string,\r\n apiid: string,\r\n apiidselect: string,\r\n apiidsubselect: string,\r\n mode: string,\r\n maxselect: string,\r\n searchstring: string | string[],\r\n selectprojection: string,\r\n ignoredprojections: string | string[],\r\n savenameseparate: string,\r\n dependencies: string[],\r\n allowedextensions: string,\r\n extract: string,\r\n maxsize: string,\r\n allowdownload: string,\r\n selectfields: string[]\r\n mandatory: any,\r\n copytoreopen: boolean,\r\n displayinhistory: boolean,\r\n hideinadmin: boolean,\r\n elementsjson: string,\r\n customreporting: boolean\r\n}\r\n\r\nexport function createDataObject(element: any, iter?: number): DataObject {\r\n if(iter == null){\r\n return{\r\n type: element.type,\r\n name: element.name ?? \"\",\r\n size: element.size ?? \"\",\r\n label: element.label ?? \"\",\r\n selectlabel: element.selectlabel ?? \"\",\r\n subselectlabel: element.subselectlabel ?? \"\",\r\n hint: element.hint ?? \"\",\r\n id: element.id ?? \"\",\r\n value: element.value ?? \"\",\r\n options: element.options ?? [\"Yes\",\"No\"],\r\n collapse: element.collapse ?? \"true\",\r\n mode: element.mode ?? \"\",\r\n maxselect: element.maxselect ?? \"\",\r\n apiid: element.apiid ?? \"\",\r\n apiidselect: element.apiidselect ?? \"\",\r\n apiidsubselect: element.apiidsubselect ?? \"\",\r\n searchstring: element.searchstring ?? \"\",\r\n selectprojection: element.selectprojection ?? \"\",\r\n ignoredprojections: element.ignoredprojections ?? \"\",\r\n savenameseparate: element.savenameseparate ?? \"no\",\r\n dependencies: element.dependencies ?? [],\r\n allowedextensions: element.allowedextensions ?? \"\",\r\n extract: element.extract ?? \"\",\r\n maxsize: element.maxsize ?? \"\",\r\n allowdownload: element.allowdownload ?? \"\",\r\n selectfields: element.selectfields ?? [],\r\n mandatory: element.mandatory ?? null,\r\n copytoreopen: (element.copytoreopen ?? \"\") == \"yes\",\r\n displayinhistory: (element.displayinhistory ?? \"\") == \"yes\",\r\n hideinadmin: (element.hideinadmin ?? \"\") == \"yes\",\r\n elementsjson: element.elementsjson ?? \"\",\r\n customreporting: (element.customreporting ?? \"\") == \"yes\"\r\n }\r\n }else{\r\n let dependencies = element.dependencies ?? []\r\n for(let [i,dependency] of dependencies.entries()){\r\n dependencies[i] = dependency.replace(/{iter}/g,\"-\" + iter + \"\")\r\n }\r\n return{\r\n type: element.type,\r\n name: (element.name ?? \"\").replace(/{iter}/g,iter + \"\"),\r\n size: element.size ?? \"\",\r\n label: (element.label ?? \"\").replace(/{iter}/g,iter + \"\"),\r\n selectlabel: (element.selectlabel ?? \"\").replace(/{iter}/g,iter + \"\"),\r\n subselectlabel: (element.subselectlabel ?? \"\").replace(/{iter}/g,iter + \"\"),\r\n hint: (element.hint ?? \"\").replace(/{iter}/g,iter + \"\"),\r\n id: (element.id ?? \"\").replace(/{iter}/g,\"-\" + iter + \"\"),\r\n options: element.options ?? [\"Yes\",\"No\"],\r\n value: element.value ?? \"\",\r\n collapse: element.collapse ?? \"true\",\r\n mode: element.mode ?? \"\",\r\n maxselect: element.maxselect ?? \"\",\r\n apiid: element.apiid ?? \"\",\r\n apiidselect: element.apiidselect ?? \"\",\r\n apiidsubselect: element.apiidsubselect ?? \"\",\r\n searchstring: element.searchstring ?? \"\",\r\n selectprojection: element.selectprojection ?? \"\",\r\n ignoredprojections: element.ignoredprojections ?? \"\",\r\n savenameseparate: element.savenameseparate ?? \"no\",\r\n dependencies: dependencies,\r\n allowedextensions: element.allowedextensions ?? \"\",\r\n extract: element.extract ?? \"\",\r\n maxsize: element.maxsize ?? \"\",\r\n allowdownload: element.allowdownload ?? \"\",\r\n selectfields: element.selectfields ?? [],\r\n mandatory: element.mandatory ?? null,\r\n copytoreopen: (element.copytoreopen ?? \"\") == \"yes\",\r\n displayinhistory: (element.displayinhistory ?? \"\") == \"yes\",\r\n hideinadmin: (element.hideinadmin ?? \"\") == \"yes\",\r\n elementsjson: element.elementsjson ?? \"\",\r\n customreporting: (element.customreporting ?? \"\") == \"yes\"\r\n }\r\n }\r\n}\r\n\r\nexport interface AddButtonObject {\r\n id: string,\r\n type: string,\r\n label: string,\r\n schema: string,\r\n direction: string,\r\n customreporting: boolean,\r\n children: DataObject[][]\r\n}\r\n\r\nexport function createAddButtonObject(element: any): AddButtonObject {\r\n return{\r\n id: element.id,\r\n type: \"\",\r\n label: element.label,\r\n schema: element.schema,\r\n direction: element.direction ?? \"column\",\r\n customreporting: (element.customreporting ?? \"\") == \"yes\",\r\n children: []\r\n }\r\n}\r\n\r\nexport function isAddButtonObject(element: any): element is AddButtonObject {\r\n return 'schema' in element;\r\n}\r\n\r\n"]}
package/dev/index.html CHANGED
@@ -366,11 +366,12 @@
366
366
  <sf-i-reporting apiid="jra3sghasmaxn5aiq7rtv6pjzq0oeuaw.lambda-url.us-east-1.on.aws" mode="downloader"
367
367
  name="Downloader">
368
368
  </sf-i-reporting> -->
369
- <sf-i-reporting class="reporting-reporting" id="reporting-reporting-0"
369
+ <!-- <sf-i-reporting class="reporting-reporting" id="reporting-reporting-0"
370
370
  mode="edit" flow="reporting" name="RCM Resource Reporting" formviewclass="flex-wrap" showterminate="true"
371
371
  projectid="41ab3c86-ccc0-4c0e-8e31-cd079a07a710"></sf-i-reporting>
372
- <div class="mb-20"></div>
373
-
372
+ <div class="mb-20"></div> -->
373
+ <!-- <sf-i-reporting id="sf-i-reporting-licenses" mode="admin" formviewclass="flex-wrap" name="License Details" flow="list" apiiduploader="1peg5170d3" apiid="lbtsbsctcdsyah4qdszkv4rctq0tnvel.lambda-url.us-east-1.on.aws" projectid="41ab3c86-ccc0-4c0e-8e31-cd079a07a710" projectname="ABC Global" ignoreprojections="[&quot;countryname&quot;,&quot;party3&quot;,&quot;tenure&quot;,&quot;terms&quot;,&quot;remarks&quot;,&quot;context&quot;,&quot;licensetypename&quot;,&quot;licensetypeid&quot;,&quot;dateofexecution&quot;,&quot;dateofexpiry&quot;,&quot;dateofrenewal&quot;,&quot;licensedocuments&quot;,&quot;lastMoodifiedTime&quot;,&quot;published&quot;,&quot;party3&quot;,&quot;customreporting&quot;,&quot;comments&quot;,&quot;approved&quot;,&quot;lastupdated&quot;,&quot;dateofcompletion&quot;,&quot;reportformatschema&quot;,&quot;reportformatvalues&quot;,&quot;history&quot;,&quot;reporters&quot;,&quot;approvers&quot;,&quot;functionheads&quot;,&quot;auditors&quot;,&quot;viewers&quot;,&quot;entityid&quot;,&quot;locationid&quot;,&quot;countryid&quot;,&quot;tags&quot;,&quot;docs&quot;,&quot;functions&quot;,&quot;makercheckers&quot;,&quot;documents&quot;,&quot;statute&quot;,&quot;compliance&quot;,&quot;riskarea&quot;,&quot;risk&quot;,&quot;obligationtype&quot;,&quot;jurisdiction&quot;,&quot;frequency&quot;,&quot;subcategory&quot;]" usermap="{&quot;roles&quot;:{&quot;viewer&quot;:{},&quot;approver&quot;:{},&quot;reporter&quot;:{},&quot;functionhead&quot;:{},&quot;auditor&quot;:{}},&quot;Australia (ABC Global-Country);8f04fd68-652e-4066-93d1-c99f1088cac6&quot;:{&quot;ABC Limited - Australia (ABC Global-Australia-Entity);c637557d-e0f9-4117-a2f6-f661024a9f6c&quot;:{&quot;Australia Federal (ABC Global-Australia-ABC Limited - Australia-Location);121335d3-e3fc-4139-a6b7-38d4587cd0e3&quot;:{&quot;tags&quot;:[&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Oceania (ABC Global-Tags);fe63abac-2eba-478c-9f92-a7436cdebef9;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;Australia (ABC Global-Country);8f04fd68-652e-4066-93d1-c99f1088cac6&quot;,&quot;ABC Limited - Australia (ABC Global-Australia-Entity);c637557d-e0f9-4117-a2f6-f661024a9f6c&quot;,&quot;Australia Federal (ABC Global-Australia-ABC Limited - Australia-Location);121335d3-e3fc-4139-a6b7-38d4587cd0e3&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;]}}},&quot;Canada (ABC Global-Country);58c90fb5-9d1d-46bc-9b1a-2cf3e353eed0&quot;:{&quot;ABC Limited - Canada (ABC Global-Canada-Entity);ed9795ff-166e-4f78-983c-2312c3042017&quot;:{&quot;Canada Federal (ABC Global-Canada-ABC Canada Limited-Location);47fe7508-47fe-44bf-9b94-2db1c31866d3&quot;:{&quot;tags&quot;:[&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Northern America (ABC Global-Tags);3945b6f1-f70c-4d01-90b2-c9596402aaee;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Reporter 2;e2bbcf7b-a044-4164-a84f-7507ec8f00b8&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;Canada (ABC Global-Country);58c90fb5-9d1d-46bc-9b1a-2cf3e353eed0&quot;,&quot;ABC Limited - Canada (ABC Global-Canada-Entity);ed9795ff-166e-4f78-983c-2312c3042017&quot;,&quot;Canada Federal (ABC Global-Canada-ABC Canada Limited-Location);47fe7508-47fe-44bf-9b94-2db1c31866d3&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Operations (ABC Global-Function);d5c14313-f94e-4f02-bcaf-7959032296af&quot;,&quot;Admin (ABC Global-Function);313f6a70-4b5f-4182-8855-1e5ec59aaf53&quot;,&quot;IT (ABC Global-Function);7ca3a611-cde2-4705-a630-9e55f4daa26e&quot;]}}},&quot;Germany (ABC Global-Country);ca6c98f5-f70f-47a3-b7b8-0da5fb684f4c&quot;:{&quot;ABC GmbH - Germany (ABC Global-Germany-Entity;9ea26d76-891f-4d42-944e-ec7cc75b8dbc&quot;:{&quot;Berlin (ABC Global-Germany-ABC GmbH - Germany-Location);1b28308e-1f6b-49bd-bc58-2d2daa4fd76f&quot;:{&quot;tags&quot;:[&quot;IT (ABC Global-Function);7ca3a611-cde2-4705-a630-9e55f4daa26e&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Europe (ABC Global-Tags);9f77c0c7-7e05-4707-ab9b-9f31ad27f8e8;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;Germany (ABC Global-Country);ca6c98f5-f70f-47a3-b7b8-0da5fb684f4c&quot;,&quot;ABC GmbH - Germany (ABC Global-Germany-Entity;9ea26d76-891f-4d42-944e-ec7cc75b8dbc&quot;,&quot;Berlin (ABC Global-Germany-ABC GmbH - Germany-Location);1b28308e-1f6b-49bd-bc58-2d2daa4fd76f&quot;]}}},&quot;India (ABC Global-Country);07d73b44-648d-4301-82c4-d6df43397824&quot;:{&quot;ABC Limited - India (ABC Global-India-Entity);c989a44e-7d3d-427e-b712-90eacf585075&quot;:{&quot;Mumbai (ABC Global-India-ABC Limited - India-Location);38dc8c53-643f-4fee-83fe-f15239606277&quot;:{&quot;tags&quot;:[&quot;Admin (ABC Global-Function);313f6a70-4b5f-4182-8855-1e5ec59aaf53&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Southeast Asia (ABC Global-Tags);d6e372a8-8bff-4de2-8dc0-f80094c49a7d;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;India (ABC Global-Country);07d73b44-648d-4301-82c4-d6df43397824&quot;,&quot;ABC Limited - India (ABC Global-India-Entity);c989a44e-7d3d-427e-b712-90eacf585075&quot;,&quot;Mumbai (ABC Global-India-ABC Limited - India-Location);38dc8c53-643f-4fee-83fe-f15239606277&quot;,&quot;IT (ABC Global-Function);7ca3a611-cde2-4705-a630-9e55f4daa26e&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Local Reporter 2;e2bbcf7b-a044-4164-a84f-7507ec8f00b8&quot;,&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Cyber (ABC Global-Tags);19c8b676-1e17-40f7-a9c6-232ba2cf3476;Landscape&quot;,&quot;External Reporting (ABC Global-Tags);7c6d5bfa-2de3-486f-85d1-488ea6868f57;SOP&quot;,&quot;Production (ABC Global-Function);af9c1cd4-909f-444d-80c2-dd297ca1b8b1&quot;,&quot;Payroll (ABC Global-Function);52f5563a-5a58-4c80-8a4c-dacbfef14d16&quot;,&quot;Operations (ABC Global-Function);d5c14313-f94e-4f02-bcaf-7959032296af&quot;,&quot;Advertising Conditions (ABC Global-Tags);2cd4f501-1dcf-4f76-be0b-779a0721ad2f;SOP&quot;,&quot;Safety Measures (ABC Global-Tags);c5b639f8-eea1-47e3-8bf2-dec2ea13170f;SOP&quot;,&quot;Packaging/Labelling (ABC Global-Tags);b7d2346d-c006-48fc-8870-b8d3c17a1c32;SOP&quot;,&quot;Finance (ABC Global-Function);6847ff49-09f1-4c26-9c84-ae923758c9eb&quot;]},&quot;Pune (ABC Global-India-ABC Limited - India-Location);4fb7b672-5cce-443f-869b-6b35247d6331&quot;:{&quot;tags&quot;:[&quot;Admin (ABC Global-Function);313f6a70-4b5f-4182-8855-1e5ec59aaf53&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Southeast Asia (ABC Global-Tags);d6e372a8-8bff-4de2-8dc0-f80094c49a7d;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 2;e2bbcf7b-a044-4164-a84f-7507ec8f00b8&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;India (ABC Global-Country);07d73b44-648d-4301-82c4-d6df43397824&quot;,&quot;ABC Limited - India (ABC Global-India-Entity);c989a44e-7d3d-427e-b712-90eacf585075&quot;,&quot;Pune (ABC Global-India-ABC Limited - India-Location);4fb7b672-5cce-443f-869b-6b35247d6331&quot;,&quot;IT (ABC Global-Function);7ca3a611-cde2-4705-a630-9e55f4daa26e&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Payroll (ABC Global-Function);52f5563a-5a58-4c80-8a4c-dacbfef14d16&quot;,&quot;Marketing (ABC Global-Function);07240150-320f-45b0-a51b-d786667981f0&quot;,&quot;Advertising Conditions (ABC Global-Tags);2cd4f501-1dcf-4f76-be0b-779a0721ad2f;SOP&quot;,&quot;Operations (ABC Global-Function);d5c14313-f94e-4f02-bcaf-7959032296af&quot;,&quot;External Reporting (ABC Global-Tags);7c6d5bfa-2de3-486f-85d1-488ea6868f57;SOP&quot;,&quot;Production (ABC Global-Function);af9c1cd4-909f-444d-80c2-dd297ca1b8b1&quot;,&quot;Production Standards (ABC Global-Tags);c0424874-28b3-41e7-b637-a38a5cafe2ed;SOP&quot;,&quot;License (ABC Global-Tags);fb393f58-9fa8-40f5-8879-120f4fd6b2da;SOP&quot;,&quot;Prohibitory (ABC Global-Tags);2255003a-fcd6-4c1b-ab1d-04cce193b719;SOP&quot;,&quot;Safety Measures (ABC Global-Tags);c5b639f8-eea1-47e3-8bf2-dec2ea13170f;SOP&quot;,&quot;Packaging/Labelling (ABC Global-Tags);b7d2346d-c006-48fc-8870-b8d3c17a1c32;SOP&quot;,&quot;FSSAI (ABC Global-Function);35002808-bcd0-4ab4-9058-fef1a87a9f2b&quot;,&quot;Conditions of Sale (ABC Global-Tags);dc03a0cf-fce4-48ce-ae19-e42c61174b62;SOP&quot;,&quot;Finance (ABC Global-Function);6847ff49-09f1-4c26-9c84-ae923758c9eb&quot;]},&quot;Telangana (ABC Global-India-ABC Limited - India-Location);a2b6ef9c-2d3e-4a82-b22e-221962d48ba4&quot;:{&quot;tags&quot;:[&quot;IT (ABC Global-Function);7ca3a611-cde2-4705-a630-9e55f4daa26e&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Southeast Asia (ABC Global-Tags);d6e372a8-8bff-4de2-8dc0-f80094c49a7d;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;India (ABC Global-Country);07d73b44-648d-4301-82c4-d6df43397824&quot;,&quot;ABC Limited - India (ABC Global-India-Entity);c989a44e-7d3d-427e-b712-90eacf585075&quot;,&quot;Telangana (ABC Global-India-ABC Limited - India-Location);a2b6ef9c-2d3e-4a82-b22e-221962d48ba4&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;Local Reporter 2;e2bbcf7b-a044-4164-a84f-7507ec8f00b8&quot;,&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Payroll (ABC Global-Function);52f5563a-5a58-4c80-8a4c-dacbfef14d16&quot;,&quot;Admin (ABC Global-Function);313f6a70-4b5f-4182-8855-1e5ec59aaf53&quot;,&quot;Operations (ABC Global-Function);d5c14313-f94e-4f02-bcaf-7959032296af&quot;,&quot;Packaging/Labelling (ABC Global-Tags);b7d2346d-c006-48fc-8870-b8d3c17a1c32;SOP&quot;,&quot;Finance (ABC Global-Function);6847ff49-09f1-4c26-9c84-ae923758c9eb&quot;]}}},&quot;Mauritius (ABC Global-Country);08ef2081-d33f-4876-be86-f811fd9dc572&quot;:{&quot;ABC Capital Ltd (ABC Global-Mauritius-Entity);6f19dce2-7cbe-48d3-b427-c8272a9b9dae&quot;:{&quot;Port Louis (ABC Global-Mauritius-ABC Capital Ltd-Location);606b5624-0528-4b61-9503-6b3bd9729622&quot;:{&quot;tags&quot;:[&quot;Finance (ABC Global-Function);6847ff49-09f1-4c26-9c84-ae923758c9eb&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Mauritius (ABC Global-Country);08ef2081-d33f-4876-be86-f811fd9dc572&quot;,&quot;ABC Capital Ltd (ABC Global-Mauritius-Entity);6f19dce2-7cbe-48d3-b427-c8272a9b9dae&quot;,&quot;Port Louis (ABC Global-Mauritius-ABC Capital Ltd-Location);606b5624-0528-4b61-9503-6b3bd9729622&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;]}}},&quot;Singapore (ABC Global-Country);8ee18117-0cca-49be-80f4-1f712d871fef&quot;:{&quot;ABC Pte Ltd (ABC Global-Singapore-Entity);50797394-7f3f-40a5-8dc3-ca360596e394&quot;:{&quot;Raffles Place (ABC Global-Singapore-ABC Pte Ltd-Location);405732fc-7a4b-4df1-9b5e-fa508db9fced&quot;:{&quot;tags&quot;:[&quot;IT (ABC Global-Function);7ca3a611-cde2-4705-a630-9e55f4daa26e&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Southeast Asia (ABC Global-Tags);d6e372a8-8bff-4de2-8dc0-f80094c49a7d;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;Singapore (ABC Global-Country);8ee18117-0cca-49be-80f4-1f712d871fef&quot;,&quot;ABC Pte Ltd (ABC Global-Singapore-Entity);50797394-7f3f-40a5-8dc3-ca360596e394&quot;,&quot;Raffles Place (ABC Global-Singapore-ABC Pte Ltd-Location);405732fc-7a4b-4df1-9b5e-fa508db9fced&quot;,&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Admin (ABC Global-Function);313f6a70-4b5f-4182-8855-1e5ec59aaf53&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;Payroll (ABC Global-Function);52f5563a-5a58-4c80-8a4c-dacbfef14d16&quot;,&quot;Finance (ABC Global-Function);6847ff49-09f1-4c26-9c84-ae923758c9eb&quot;]}},&quot;DEF Pte Ltd (ABC Global-Singapore-Entity);910f911e-a687-4021-951d-77f401931b83&quot;:{&quot;Marina Bay (ABC Global-Singapore-DEF Pte Ltd-Location);c5fadbbf-cfd0-43bd-b685-6881874a34d6&quot;:{&quot;tags&quot;:[&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Southeast Asia (ABC Global-Tags);d6e372a8-8bff-4de2-8dc0-f80094c49a7d;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Singapore (ABC Global-Country);8ee18117-0cca-49be-80f4-1f712d871fef&quot;,&quot;DEF Pte Ltd (ABC Global-Singapore-Entity);910f911e-a687-4021-951d-77f401931b83&quot;,&quot;Marina Bay (ABC Global-Singapore-DEF Pte Ltd-Location);c5fadbbf-cfd0-43bd-b685-6881874a34d6&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;Payroll (ABC Global-Function);52f5563a-5a58-4c80-8a4c-dacbfef14d16&quot;,&quot;Admin (ABC Global-Function);313f6a70-4b5f-4182-8855-1e5ec59aaf53&quot;]},&quot;Raffles Place (ABC Global-Singapore-DEF Pte Ltd-Location);6d90d660-934a-4202-973c-3cbd8a7b7c44&quot;:{&quot;tags&quot;:[&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Southeast Asia (ABC Global-Tags);d6e372a8-8bff-4de2-8dc0-f80094c49a7d;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 2;e2bbcf7b-a044-4164-a84f-7507ec8f00b8&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Singapore (ABC Global-Country);8ee18117-0cca-49be-80f4-1f712d871fef&quot;,&quot;DEF Pte Ltd (ABC Global-Singapore-Entity);910f911e-a687-4021-951d-77f401931b83&quot;,&quot;Raffles Place (ABC Global-Singapore-DEF Pte Ltd-Location);6d90d660-934a-4202-973c-3cbd8a7b7c44&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;]},&quot;Tanjong Pagar (ABC Global-Singapore-DEF Pte Ltd-Location);5624f7f0-fed2-45c2-ae65-9424e47aba3f&quot;:{&quot;tags&quot;:[&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Southeast Asia (ABC Global-Tags);d6e372a8-8bff-4de2-8dc0-f80094c49a7d;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;Singapore (ABC Global-Country);8ee18117-0cca-49be-80f4-1f712d871fef&quot;,&quot;DEF Pte Ltd (ABC Global-Singapore-Entity);910f911e-a687-4021-951d-77f401931b83&quot;,&quot;Tanjong Pagar (ABC Global-Singapore-DEF Pte Ltd-Location);5624f7f0-fed2-45c2-ae65-9424e47aba3f&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;]},&quot;Tras Street (ABC Global-Singapore-DEF Pte Ltd-Location);94542aab-0fde-4d2c-a704-4a13dc21d2ca&quot;:{&quot;tags&quot;:[&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Southeast Asia (ABC Global-Tags);d6e372a8-8bff-4de2-8dc0-f80094c49a7d;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;Singapore (ABC Global-Country);8ee18117-0cca-49be-80f4-1f712d871fef&quot;,&quot;DEF Pte Ltd (ABC Global-Singapore-Entity);910f911e-a687-4021-951d-77f401931b83&quot;,&quot;Tras Street (ABC Global-Singapore-DEF Pte Ltd-Location);94542aab-0fde-4d2c-a704-4a13dc21d2ca&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;]}}},&quot;United Kingdom (ABC Global-Country);cfdeb388-e806-4cad-81b6-f1ddfd10e293&quot;:{&quot;ABC Limited - UK (ABC Global-United Kingdom-Entity);a0269f03-479d-49b7-b080-94f287cc7c98&quot;:{&quot;UK Federal (ABC Global-United Kingdom-ABC Limited - UK-Location);08c0a303-4355-4444-9ba0-7050d4fdcf72&quot;:{&quot;tags&quot;:[&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Europe (ABC Global-Tags);9f77c0c7-7e05-4707-ab9b-9f31ad27f8e8;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;United Kingdom (ABC Global-Country);cfdeb388-e806-4cad-81b6-f1ddfd10e293&quot;,&quot;ABC Limited - UK (ABC Global-United Kingdom-Entity);a0269f03-479d-49b7-b080-94f287cc7c98&quot;,&quot;UK Federal (ABC Global-United Kingdom-ABC Limited - UK-Location);08c0a303-4355-4444-9ba0-7050d4fdcf72&quot;,&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;Admin (ABC Global-Function);313f6a70-4b5f-4182-8855-1e5ec59aaf53&quot;,&quot;IT (ABC Global-Function);7ca3a611-cde2-4705-a630-9e55f4daa26e&quot;]}}},&quot;United States of America (ABC Global-Country);2e8b229e-ad6e-43fb-8767-65dc248abd54&quot;:{&quot;ABC Inc - USA (ABC Global-United States of America-Entity);16d72bae-10cf-4fa3-b609-eee8e309e0a8&quot;:{&quot;US Federal (ABC Global-United States of America-ABC Inc - USA-Location);af851ebd-222c-4cb6-ad53-b65ba40b3ecc&quot;:{&quot;tags&quot;:[&quot;Admin (ABC Global-Function);313f6a70-4b5f-4182-8855-1e5ec59aaf53&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Northern America (ABC Global-Tags);3945b6f1-f70c-4d01-90b2-c9596402aaee;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;United States of America (ABC Global-Country);2e8b229e-ad6e-43fb-8767-65dc248abd54&quot;,&quot;ABC Inc - USA (ABC Global-United States of America-Entity);16d72bae-10cf-4fa3-b609-eee8e309e0a8&quot;,&quot;US Federal (ABC Global-United States of America-ABC Inc - USA-Location);af851ebd-222c-4cb6-ad53-b65ba40b3ecc&quot;,&quot;IT (ABC Global-Function);7ca3a611-cde2-4705-a630-9e55f4daa26e&quot;,&quot;Marketing (ABC Global-Function);07240150-320f-45b0-a51b-d786667981f0&quot;,&quot;Prohibitory (ABC Global-Tags);2255003a-fcd6-4c1b-ab1d-04cce193b719;SOP&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Operations (ABC Global-Function);d5c14313-f94e-4f02-bcaf-7959032296af&quot;]}}}}"></sf-i-reporting> -->
374
+ <sf-i-reporting id="sf-i-reporting-rcmresources" mode="admin" formviewclass="flex-wrap" name="RCM Resource Details" flow="list" apiiduploader="1peg5170d3" apiid="jra3sghasmaxn5aiq7rtv6pjzq0oeuaw.lambda-url.us-east-1.on.aws" projectid="41ab3c86-ccc0-4c0e-8e31-cd079a07a710" projectname="ABC Global" ignoreprojections="[&quot;countryname&quot;,&quot;party3&quot;,&quot;tenure&quot;,&quot;terms&quot;,&quot;remarks&quot;,&quot;context&quot;,&quot;licensetypename&quot;,&quot;licensetypeid&quot;,&quot;dateofexecution&quot;,&quot;dateofexpiry&quot;,&quot;dateofrenewal&quot;,&quot;licensedocuments&quot;,&quot;lastMoodifiedTime&quot;,&quot;published&quot;,&quot;party3&quot;,&quot;customreporting&quot;,&quot;comments&quot;,&quot;approved&quot;,&quot;lastupdated&quot;,&quot;dateofcompletion&quot;,&quot;reportformatschema&quot;,&quot;reportformatvalues&quot;,&quot;history&quot;,&quot;reporters&quot;,&quot;approvers&quot;,&quot;functionheads&quot;,&quot;auditors&quot;,&quot;viewers&quot;,&quot;entityid&quot;,&quot;locationid&quot;,&quot;countryid&quot;,&quot;tags&quot;,&quot;docs&quot;,&quot;functions&quot;,&quot;makercheckers&quot;,&quot;documents&quot;,&quot;statute&quot;,&quot;compliance&quot;,&quot;riskarea&quot;,&quot;risk&quot;,&quot;obligationtype&quot;,&quot;jurisdiction&quot;,&quot;entityname&quot;,&quot;subcategory&quot;,&quot;locations&quot;,&quot;categoryid&quot;,&quot;categoryname&quot;,&quot;subcategoryid&quot;,&quot;subcategoryname&quot;,&quot;projects&quot;,&quot;Source Report&quot;]" usermap="{&quot;roles&quot;:{&quot;viewer&quot;:{},&quot;approver&quot;:{},&quot;reporter&quot;:{},&quot;functionhead&quot;:{},&quot;auditor&quot;:{}},&quot;Australia (ABC Global-Country);8f04fd68-652e-4066-93d1-c99f1088cac6&quot;:{&quot;ABC Limited - Australia (ABC Global-Australia-Entity);c637557d-e0f9-4117-a2f6-f661024a9f6c&quot;:{&quot;Australia Federal (ABC Global-Australia-ABC Limited - Australia-Location);121335d3-e3fc-4139-a6b7-38d4587cd0e3&quot;:{&quot;tags&quot;:[&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Oceania (ABC Global-Tags);fe63abac-2eba-478c-9f92-a7436cdebef9;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;Australia (ABC Global-Country);8f04fd68-652e-4066-93d1-c99f1088cac6&quot;,&quot;ABC Limited - Australia (ABC Global-Australia-Entity);c637557d-e0f9-4117-a2f6-f661024a9f6c&quot;,&quot;Australia Federal (ABC Global-Australia-ABC Limited - Australia-Location);121335d3-e3fc-4139-a6b7-38d4587cd0e3&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;]}}},&quot;Canada (ABC Global-Country);58c90fb5-9d1d-46bc-9b1a-2cf3e353eed0&quot;:{&quot;ABC Limited - Canada (ABC Global-Canada-Entity);ed9795ff-166e-4f78-983c-2312c3042017&quot;:{&quot;Canada Federal (ABC Global-Canada-ABC Canada Limited-Location);47fe7508-47fe-44bf-9b94-2db1c31866d3&quot;:{&quot;tags&quot;:[&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Northern America (ABC Global-Tags);3945b6f1-f70c-4d01-90b2-c9596402aaee;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Reporter 2;e2bbcf7b-a044-4164-a84f-7507ec8f00b8&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;Canada (ABC Global-Country);58c90fb5-9d1d-46bc-9b1a-2cf3e353eed0&quot;,&quot;ABC Limited - Canada (ABC Global-Canada-Entity);ed9795ff-166e-4f78-983c-2312c3042017&quot;,&quot;Canada Federal (ABC Global-Canada-ABC Canada Limited-Location);47fe7508-47fe-44bf-9b94-2db1c31866d3&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Operations (ABC Global-Function);d5c14313-f94e-4f02-bcaf-7959032296af&quot;,&quot;Admin (ABC Global-Function);313f6a70-4b5f-4182-8855-1e5ec59aaf53&quot;,&quot;IT (ABC Global-Function);7ca3a611-cde2-4705-a630-9e55f4daa26e&quot;]}}},&quot;Germany (ABC Global-Country);ca6c98f5-f70f-47a3-b7b8-0da5fb684f4c&quot;:{&quot;ABC GmbH - Germany (ABC Global-Germany-Entity;9ea26d76-891f-4d42-944e-ec7cc75b8dbc&quot;:{&quot;Berlin (ABC Global-Germany-ABC GmbH - Germany-Location);1b28308e-1f6b-49bd-bc58-2d2daa4fd76f&quot;:{&quot;tags&quot;:[&quot;IT (ABC Global-Function);7ca3a611-cde2-4705-a630-9e55f4daa26e&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Europe (ABC Global-Tags);9f77c0c7-7e05-4707-ab9b-9f31ad27f8e8;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;Germany (ABC Global-Country);ca6c98f5-f70f-47a3-b7b8-0da5fb684f4c&quot;,&quot;ABC GmbH - Germany (ABC Global-Germany-Entity;9ea26d76-891f-4d42-944e-ec7cc75b8dbc&quot;,&quot;Berlin (ABC Global-Germany-ABC GmbH - Germany-Location);1b28308e-1f6b-49bd-bc58-2d2daa4fd76f&quot;]}}},&quot;India (ABC Global-Country);07d73b44-648d-4301-82c4-d6df43397824&quot;:{&quot;ABC Limited - India (ABC Global-India-Entity);c989a44e-7d3d-427e-b712-90eacf585075&quot;:{&quot;Mumbai (ABC Global-India-ABC Limited - India-Location);38dc8c53-643f-4fee-83fe-f15239606277&quot;:{&quot;tags&quot;:[&quot;Admin (ABC Global-Function);313f6a70-4b5f-4182-8855-1e5ec59aaf53&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Southeast Asia (ABC Global-Tags);d6e372a8-8bff-4de2-8dc0-f80094c49a7d;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;India (ABC Global-Country);07d73b44-648d-4301-82c4-d6df43397824&quot;,&quot;ABC Limited - India (ABC Global-India-Entity);c989a44e-7d3d-427e-b712-90eacf585075&quot;,&quot;Mumbai (ABC Global-India-ABC Limited - India-Location);38dc8c53-643f-4fee-83fe-f15239606277&quot;,&quot;IT (ABC Global-Function);7ca3a611-cde2-4705-a630-9e55f4daa26e&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Local Reporter 2;e2bbcf7b-a044-4164-a84f-7507ec8f00b8&quot;,&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Cyber (ABC Global-Tags);19c8b676-1e17-40f7-a9c6-232ba2cf3476;Landscape&quot;,&quot;External Reporting (ABC Global-Tags);7c6d5bfa-2de3-486f-85d1-488ea6868f57;SOP&quot;,&quot;Production (ABC Global-Function);af9c1cd4-909f-444d-80c2-dd297ca1b8b1&quot;,&quot;Payroll (ABC Global-Function);52f5563a-5a58-4c80-8a4c-dacbfef14d16&quot;,&quot;Operations (ABC Global-Function);d5c14313-f94e-4f02-bcaf-7959032296af&quot;,&quot;Advertising Conditions (ABC Global-Tags);2cd4f501-1dcf-4f76-be0b-779a0721ad2f;SOP&quot;,&quot;Safety Measures (ABC Global-Tags);c5b639f8-eea1-47e3-8bf2-dec2ea13170f;SOP&quot;,&quot;Packaging/Labelling (ABC Global-Tags);b7d2346d-c006-48fc-8870-b8d3c17a1c32;SOP&quot;,&quot;Finance (ABC Global-Function);6847ff49-09f1-4c26-9c84-ae923758c9eb&quot;]},&quot;Pune (ABC Global-India-ABC Limited - India-Location);4fb7b672-5cce-443f-869b-6b35247d6331&quot;:{&quot;tags&quot;:[&quot;Admin (ABC Global-Function);313f6a70-4b5f-4182-8855-1e5ec59aaf53&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Southeast Asia (ABC Global-Tags);d6e372a8-8bff-4de2-8dc0-f80094c49a7d;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 2;e2bbcf7b-a044-4164-a84f-7507ec8f00b8&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;India (ABC Global-Country);07d73b44-648d-4301-82c4-d6df43397824&quot;,&quot;ABC Limited - India (ABC Global-India-Entity);c989a44e-7d3d-427e-b712-90eacf585075&quot;,&quot;Pune (ABC Global-India-ABC Limited - India-Location);4fb7b672-5cce-443f-869b-6b35247d6331&quot;,&quot;IT (ABC Global-Function);7ca3a611-cde2-4705-a630-9e55f4daa26e&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Payroll (ABC Global-Function);52f5563a-5a58-4c80-8a4c-dacbfef14d16&quot;,&quot;Marketing (ABC Global-Function);07240150-320f-45b0-a51b-d786667981f0&quot;,&quot;Advertising Conditions (ABC Global-Tags);2cd4f501-1dcf-4f76-be0b-779a0721ad2f;SOP&quot;,&quot;Operations (ABC Global-Function);d5c14313-f94e-4f02-bcaf-7959032296af&quot;,&quot;External Reporting (ABC Global-Tags);7c6d5bfa-2de3-486f-85d1-488ea6868f57;SOP&quot;,&quot;Production (ABC Global-Function);af9c1cd4-909f-444d-80c2-dd297ca1b8b1&quot;,&quot;Production Standards (ABC Global-Tags);c0424874-28b3-41e7-b637-a38a5cafe2ed;SOP&quot;,&quot;License (ABC Global-Tags);fb393f58-9fa8-40f5-8879-120f4fd6b2da;SOP&quot;,&quot;Prohibitory (ABC Global-Tags);2255003a-fcd6-4c1b-ab1d-04cce193b719;SOP&quot;,&quot;Safety Measures (ABC Global-Tags);c5b639f8-eea1-47e3-8bf2-dec2ea13170f;SOP&quot;,&quot;Packaging/Labelling (ABC Global-Tags);b7d2346d-c006-48fc-8870-b8d3c17a1c32;SOP&quot;,&quot;FSSAI (ABC Global-Function);35002808-bcd0-4ab4-9058-fef1a87a9f2b&quot;,&quot;Conditions of Sale (ABC Global-Tags);dc03a0cf-fce4-48ce-ae19-e42c61174b62;SOP&quot;,&quot;Finance (ABC Global-Function);6847ff49-09f1-4c26-9c84-ae923758c9eb&quot;]},&quot;Telangana (ABC Global-India-ABC Limited - India-Location);a2b6ef9c-2d3e-4a82-b22e-221962d48ba4&quot;:{&quot;tags&quot;:[&quot;IT (ABC Global-Function);7ca3a611-cde2-4705-a630-9e55f4daa26e&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Southeast Asia (ABC Global-Tags);d6e372a8-8bff-4de2-8dc0-f80094c49a7d;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;India (ABC Global-Country);07d73b44-648d-4301-82c4-d6df43397824&quot;,&quot;ABC Limited - India (ABC Global-India-Entity);c989a44e-7d3d-427e-b712-90eacf585075&quot;,&quot;Telangana (ABC Global-India-ABC Limited - India-Location);a2b6ef9c-2d3e-4a82-b22e-221962d48ba4&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;Local Reporter 2;e2bbcf7b-a044-4164-a84f-7507ec8f00b8&quot;,&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Payroll (ABC Global-Function);52f5563a-5a58-4c80-8a4c-dacbfef14d16&quot;,&quot;Admin (ABC Global-Function);313f6a70-4b5f-4182-8855-1e5ec59aaf53&quot;,&quot;Operations (ABC Global-Function);d5c14313-f94e-4f02-bcaf-7959032296af&quot;,&quot;Packaging/Labelling (ABC Global-Tags);b7d2346d-c006-48fc-8870-b8d3c17a1c32;SOP&quot;,&quot;Finance (ABC Global-Function);6847ff49-09f1-4c26-9c84-ae923758c9eb&quot;]}}},&quot;Mauritius (ABC Global-Country);08ef2081-d33f-4876-be86-f811fd9dc572&quot;:{&quot;ABC Capital Ltd (ABC Global-Mauritius-Entity);6f19dce2-7cbe-48d3-b427-c8272a9b9dae&quot;:{&quot;Port Louis (ABC Global-Mauritius-ABC Capital Ltd-Location);606b5624-0528-4b61-9503-6b3bd9729622&quot;:{&quot;tags&quot;:[&quot;Finance (ABC Global-Function);6847ff49-09f1-4c26-9c84-ae923758c9eb&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Mauritius (ABC Global-Country);08ef2081-d33f-4876-be86-f811fd9dc572&quot;,&quot;ABC Capital Ltd (ABC Global-Mauritius-Entity);6f19dce2-7cbe-48d3-b427-c8272a9b9dae&quot;,&quot;Port Louis (ABC Global-Mauritius-ABC Capital Ltd-Location);606b5624-0528-4b61-9503-6b3bd9729622&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;]}}},&quot;Singapore (ABC Global-Country);8ee18117-0cca-49be-80f4-1f712d871fef&quot;:{&quot;ABC Pte Ltd (ABC Global-Singapore-Entity);50797394-7f3f-40a5-8dc3-ca360596e394&quot;:{&quot;Raffles Place (ABC Global-Singapore-ABC Pte Ltd-Location);405732fc-7a4b-4df1-9b5e-fa508db9fced&quot;:{&quot;tags&quot;:[&quot;IT (ABC Global-Function);7ca3a611-cde2-4705-a630-9e55f4daa26e&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Southeast Asia (ABC Global-Tags);d6e372a8-8bff-4de2-8dc0-f80094c49a7d;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;Singapore (ABC Global-Country);8ee18117-0cca-49be-80f4-1f712d871fef&quot;,&quot;ABC Pte Ltd (ABC Global-Singapore-Entity);50797394-7f3f-40a5-8dc3-ca360596e394&quot;,&quot;Raffles Place (ABC Global-Singapore-ABC Pte Ltd-Location);405732fc-7a4b-4df1-9b5e-fa508db9fced&quot;,&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Admin (ABC Global-Function);313f6a70-4b5f-4182-8855-1e5ec59aaf53&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;Payroll (ABC Global-Function);52f5563a-5a58-4c80-8a4c-dacbfef14d16&quot;,&quot;Finance (ABC Global-Function);6847ff49-09f1-4c26-9c84-ae923758c9eb&quot;]}},&quot;DEF Pte Ltd (ABC Global-Singapore-Entity);910f911e-a687-4021-951d-77f401931b83&quot;:{&quot;Marina Bay (ABC Global-Singapore-DEF Pte Ltd-Location);c5fadbbf-cfd0-43bd-b685-6881874a34d6&quot;:{&quot;tags&quot;:[&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Southeast Asia (ABC Global-Tags);d6e372a8-8bff-4de2-8dc0-f80094c49a7d;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Singapore (ABC Global-Country);8ee18117-0cca-49be-80f4-1f712d871fef&quot;,&quot;DEF Pte Ltd (ABC Global-Singapore-Entity);910f911e-a687-4021-951d-77f401931b83&quot;,&quot;Marina Bay (ABC Global-Singapore-DEF Pte Ltd-Location);c5fadbbf-cfd0-43bd-b685-6881874a34d6&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;Payroll (ABC Global-Function);52f5563a-5a58-4c80-8a4c-dacbfef14d16&quot;,&quot;Admin (ABC Global-Function);313f6a70-4b5f-4182-8855-1e5ec59aaf53&quot;]},&quot;Raffles Place (ABC Global-Singapore-DEF Pte Ltd-Location);6d90d660-934a-4202-973c-3cbd8a7b7c44&quot;:{&quot;tags&quot;:[&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Southeast Asia (ABC Global-Tags);d6e372a8-8bff-4de2-8dc0-f80094c49a7d;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 2;e2bbcf7b-a044-4164-a84f-7507ec8f00b8&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Singapore (ABC Global-Country);8ee18117-0cca-49be-80f4-1f712d871fef&quot;,&quot;DEF Pte Ltd (ABC Global-Singapore-Entity);910f911e-a687-4021-951d-77f401931b83&quot;,&quot;Raffles Place (ABC Global-Singapore-DEF Pte Ltd-Location);6d90d660-934a-4202-973c-3cbd8a7b7c44&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;]},&quot;Tanjong Pagar (ABC Global-Singapore-DEF Pte Ltd-Location);5624f7f0-fed2-45c2-ae65-9424e47aba3f&quot;:{&quot;tags&quot;:[&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Southeast Asia (ABC Global-Tags);d6e372a8-8bff-4de2-8dc0-f80094c49a7d;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;Singapore (ABC Global-Country);8ee18117-0cca-49be-80f4-1f712d871fef&quot;,&quot;DEF Pte Ltd (ABC Global-Singapore-Entity);910f911e-a687-4021-951d-77f401931b83&quot;,&quot;Tanjong Pagar (ABC Global-Singapore-DEF Pte Ltd-Location);5624f7f0-fed2-45c2-ae65-9424e47aba3f&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;]},&quot;Tras Street (ABC Global-Singapore-DEF Pte Ltd-Location);94542aab-0fde-4d2c-a704-4a13dc21d2ca&quot;:{&quot;tags&quot;:[&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Southeast Asia (ABC Global-Tags);d6e372a8-8bff-4de2-8dc0-f80094c49a7d;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;Singapore (ABC Global-Country);8ee18117-0cca-49be-80f4-1f712d871fef&quot;,&quot;DEF Pte Ltd (ABC Global-Singapore-Entity);910f911e-a687-4021-951d-77f401931b83&quot;,&quot;Tras Street (ABC Global-Singapore-DEF Pte Ltd-Location);94542aab-0fde-4d2c-a704-4a13dc21d2ca&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;]}}},&quot;United Kingdom (ABC Global-Country);cfdeb388-e806-4cad-81b6-f1ddfd10e293&quot;:{&quot;ABC Limited - UK (ABC Global-United Kingdom-Entity);a0269f03-479d-49b7-b080-94f287cc7c98&quot;:{&quot;UK Federal (ABC Global-United Kingdom-ABC Limited - UK-Location);08c0a303-4355-4444-9ba0-7050d4fdcf72&quot;:{&quot;tags&quot;:[&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Europe (ABC Global-Tags);9f77c0c7-7e05-4707-ab9b-9f31ad27f8e8;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;United Kingdom (ABC Global-Country);cfdeb388-e806-4cad-81b6-f1ddfd10e293&quot;,&quot;ABC Limited - UK (ABC Global-United Kingdom-Entity);a0269f03-479d-49b7-b080-94f287cc7c98&quot;,&quot;UK Federal (ABC Global-United Kingdom-ABC Limited - UK-Location);08c0a303-4355-4444-9ba0-7050d4fdcf72&quot;,&quot;Corp Sec (ABC Global-Function);2c4bfb82-bd9a-4589-b27a-423cc72ea56a&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;Admin (ABC Global-Function);313f6a70-4b5f-4182-8855-1e5ec59aaf53&quot;,&quot;IT (ABC Global-Function);7ca3a611-cde2-4705-a630-9e55f4daa26e&quot;]}}},&quot;United States of America (ABC Global-Country);2e8b229e-ad6e-43fb-8767-65dc248abd54&quot;:{&quot;ABC Inc - USA (ABC Global-United States of America-Entity);16d72bae-10cf-4fa3-b609-eee8e309e0a8&quot;:{&quot;US Federal (ABC Global-United States of America-ABC Inc - USA-Location);af851ebd-222c-4cb6-ad53-b65ba40b3ecc&quot;:{&quot;tags&quot;:[&quot;Admin (ABC Global-Function);313f6a70-4b5f-4182-8855-1e5ec59aaf53&quot;,&quot;Statutory (ABC Global-Tags);8ff789fa-de57-44d9-baa4-9ca5bc18c800;Compliance Type&quot;,&quot;Northern America (ABC Global-Tags);3945b6f1-f70c-4d01-90b2-c9596402aaee;International Region&quot;,&quot;Legal (ABC Global-Tags);c520687f-2a6d-4f48-b9a1-1e31b8729d05;Landscape&quot;,&quot;Local Reporter 1;e9684b5d-ddbc-46d3-ae07-51706bf75410&quot;,&quot;Local Approver 1;c44dcd04-aebb-4417-ba6b-fac170efd5d0&quot;,&quot;Chief Compliance Officer;5fe96caa-1a44-4a2d-921a-920d29433eca&quot;,&quot;Compliance Officer;9e46dba0-9750-47bd-8d77-385cd17681da&quot;,&quot;Auditor J1;bda0d59b-058b-4098-b0fc-54aa54aa5998&quot;,&quot;Viewer J1;344c84d2-5976-47ff-949b-49f6fa9627eb&quot;,&quot;Viewer J3;b3820d70-5e58-41e5-ad9e-95b3794ed434&quot;,&quot;Not Required (ABC Global-MakerChecker);fef0402d-4578-4b9f-ab53-f8404ec5aefb&quot;,&quot;United States of America (ABC Global-Country);2e8b229e-ad6e-43fb-8767-65dc248abd54&quot;,&quot;ABC Inc - USA (ABC Global-United States of America-Entity);16d72bae-10cf-4fa3-b609-eee8e309e0a8&quot;,&quot;US Federal (ABC Global-United States of America-ABC Inc - USA-Location);af851ebd-222c-4cb6-ad53-b65ba40b3ecc&quot;,&quot;IT (ABC Global-Function);7ca3a611-cde2-4705-a630-9e55f4daa26e&quot;,&quot;Marketing (ABC Global-Function);07240150-320f-45b0-a51b-d786667981f0&quot;,&quot;Prohibitory (ABC Global-Tags);2255003a-fcd6-4c1b-ab1d-04cce193b719;SOP&quot;,&quot;Human Resource (ABC Global-Function);215026f6-0d73-49b3-b193-4b95184201f8&quot;,&quot;Operations (ABC Global-Function);d5c14313-f94e-4f02-bcaf-7959032296af&quot;]}}}}"></sf-i-reporting>
374
375
  <script>
375
376
  </script>
376
377
  </body>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sf-i-reporting",
3
3
  "private": false,
4
- "version": "1.0.124",
4
+ "version": "1.0.126",
5
5
  "description": "Superflows Reporting Component",
6
6
  "main": "sf-i-reporting.js",
7
7
  "module": "sf-i-reporting.js",
@@ -51,8 +51,14 @@
51
51
  "license": "MIT",
52
52
  "repository": "superflows-dev/sf-i-reporting",
53
53
  "dependencies": {
54
+ "docxtemplater": "^3.68.3",
55
+ "file-saver": "^2.0.5",
54
56
  "fs": "^0.0.1-security",
57
+ "html2canvas": "^1.4.1",
58
+ "jspdf": "^4.2.0",
55
59
  "lit": "^2.8.0",
60
+ "pdfmake": "^0.3.0-beta.5",
61
+ "pizzip": "^3.2.0",
56
62
  "sf-checklist": "^1.0.17",
57
63
  "sf-i-bricks": "^1.0.10",
58
64
  "sf-i-elastic-text": "^1.0.17",
@@ -67,8 +73,11 @@
67
73
  "@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
68
74
  "@custom-elements-manifest/analyzer": "^0.6.3",
69
75
  "@open-wc/testing": "^3.1.7",
70
- "@rollup/plugin-node-resolve": "^13.3.0",
71
76
  "@rollup/plugin-replace": "^4.0.0",
77
+ "@types/file-saver": "^2.0.7",
78
+ "@types/html2pdf.js": "^0.10.0",
79
+ "@types/pdfmake": "^0.3.2",
80
+ "@types/pizzip": "^3.0.5",
72
81
  "@typescript-eslint/eslint-plugin": "^5.25.0",
73
82
  "@typescript-eslint/parser": "^5.25.0",
74
83
  "@web/dev-server": "^0.1.31",
@@ -77,13 +86,14 @@
77
86
  "@web/test-runner-playwright": "^0.8.8",
78
87
  "@webcomponents/webcomponentsjs": "^2.6.0",
79
88
  "eslint": "^8.57.1",
89
+ "html2pdf.js": "^0.14.0",
80
90
  "lit-analyzer": "^1.2.1",
81
91
  "prettier": "^2.6.2",
82
92
  "rimraf": "^3.0.2",
83
93
  "rollup": "^2.73.0",
84
94
  "rollup-plugin-summary": "^1.4.3",
85
95
  "rollup-plugin-terser": "^7.0.2",
86
- "typescript": "~4.7.4"
96
+ "typescript": "^5.9.3"
87
97
  },
88
98
  "customElements": "custom-elements.json"
89
99
  }