@transcend-io/airgap.js-types 8.21.0 → 8.22.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.
- package/build/iab.d.ts +133 -0
- package/build/iab.d.ts.map +1 -0
- package/build/iab.js +90 -0
- package/build/iab.js.map +1 -0
- package/build/index.d.ts +1 -0
- package/build/index.d.ts.map +1 -1
- package/build/index.js +1 -0
- package/build/index.js.map +1 -1
- package/build/tsbuildinfo +1 -1
- package/build/ui.d.ts +21 -0
- package/build/ui.d.ts.map +1 -1
- package/build/ui.js +11 -1
- package/build/ui.js.map +1 -1
- package/package.json +2 -3
package/build/iab.d.ts
ADDED
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import * as t from 'io-ts';
|
|
2
|
+
/**
|
|
3
|
+
* TCF purpose configuration
|
|
4
|
+
*/
|
|
5
|
+
export declare const TcfPurpose: t.TypeC<{
|
|
6
|
+
id: t.NumberC;
|
|
7
|
+
name: t.StringC;
|
|
8
|
+
description: t.StringC;
|
|
9
|
+
descriptionLegal: t.StringC;
|
|
10
|
+
}>;
|
|
11
|
+
/**
|
|
12
|
+
* Type override
|
|
13
|
+
*/
|
|
14
|
+
export declare type TcfPurpose = t.TypeOf<typeof TcfPurpose>;
|
|
15
|
+
/**
|
|
16
|
+
* TCF stack configuration
|
|
17
|
+
*/
|
|
18
|
+
export declare const TcfStack: t.TypeC<{
|
|
19
|
+
id: t.NumberC;
|
|
20
|
+
purposes: t.ArrayC<t.NumberC>;
|
|
21
|
+
specialFeatures: t.ArrayC<t.NumberC>;
|
|
22
|
+
name: t.StringC;
|
|
23
|
+
description: t.StringC;
|
|
24
|
+
}>;
|
|
25
|
+
/**
|
|
26
|
+
* Type override
|
|
27
|
+
*/
|
|
28
|
+
export declare type TcfStack = t.TypeOf<typeof TcfStack>;
|
|
29
|
+
/**
|
|
30
|
+
* TCF stack configuration
|
|
31
|
+
*/
|
|
32
|
+
export declare const TcfVendor: t.IntersectionC<[t.TypeC<{
|
|
33
|
+
id: t.NumberC;
|
|
34
|
+
name: t.StringC;
|
|
35
|
+
purposes: t.ArrayC<t.NumberC>;
|
|
36
|
+
legIntPurposes: t.ArrayC<t.NumberC>;
|
|
37
|
+
flexiblePurposes: t.ArrayC<t.NumberC>;
|
|
38
|
+
specialPurposes: t.ArrayC<t.NumberC>;
|
|
39
|
+
features: t.ArrayC<t.NumberC>;
|
|
40
|
+
specialFeatures: t.ArrayC<t.NumberC>;
|
|
41
|
+
policyUrl: t.StringC;
|
|
42
|
+
cookieMaxAgeSeconds: t.UnionC<[t.NumberC, t.NullC]>;
|
|
43
|
+
usesCookies: t.BooleanC;
|
|
44
|
+
}>, t.PartialC<{
|
|
45
|
+
deletedDate: t.StringC;
|
|
46
|
+
overflow: t.TypeC<{
|
|
47
|
+
httpGetLimit: t.NumberC;
|
|
48
|
+
}>;
|
|
49
|
+
cookieRefresh: t.BooleanC;
|
|
50
|
+
usesNonCookieAccess: t.BooleanC;
|
|
51
|
+
deviceStorageDisclosureUrl: t.StringC;
|
|
52
|
+
}>]>;
|
|
53
|
+
/**
|
|
54
|
+
* Type override
|
|
55
|
+
*/
|
|
56
|
+
export declare type TcfVendor = t.TypeOf<typeof TcfVendor>;
|
|
57
|
+
export declare const TcfVendorListVersion: t.TypeC<{
|
|
58
|
+
gvlSpecificationVersion: t.NumberC;
|
|
59
|
+
vendorListVersion: t.NumberC;
|
|
60
|
+
tcfPolicyVersion: t.NumberC;
|
|
61
|
+
lastUpdated: t.StringC;
|
|
62
|
+
}>;
|
|
63
|
+
/**
|
|
64
|
+
* Type override
|
|
65
|
+
*/
|
|
66
|
+
export declare type TcfVendorListVersion = t.TypeOf<typeof TcfVendorListVersion>;
|
|
67
|
+
/**
|
|
68
|
+
* Contentful fields common between SaaSCategories and Catalogs
|
|
69
|
+
*/
|
|
70
|
+
export declare const TcfV2VendorList: t.IntersectionC<[t.TypeC<{
|
|
71
|
+
gvlSpecificationVersion: t.NumberC;
|
|
72
|
+
vendorListVersion: t.NumberC;
|
|
73
|
+
tcfPolicyVersion: t.NumberC;
|
|
74
|
+
lastUpdated: t.StringC;
|
|
75
|
+
}>, t.TypeC<{
|
|
76
|
+
purposes: t.RecordC<t.StringC, t.TypeC<{
|
|
77
|
+
id: t.NumberC;
|
|
78
|
+
name: t.StringC;
|
|
79
|
+
description: t.StringC;
|
|
80
|
+
descriptionLegal: t.StringC;
|
|
81
|
+
}>>;
|
|
82
|
+
specialPurposes: t.RecordC<t.StringC, t.TypeC<{
|
|
83
|
+
id: t.NumberC;
|
|
84
|
+
name: t.StringC;
|
|
85
|
+
description: t.StringC;
|
|
86
|
+
descriptionLegal: t.StringC;
|
|
87
|
+
}>>;
|
|
88
|
+
features: t.RecordC<t.StringC, t.TypeC<{
|
|
89
|
+
id: t.NumberC;
|
|
90
|
+
name: t.StringC;
|
|
91
|
+
description: t.StringC;
|
|
92
|
+
descriptionLegal: t.StringC;
|
|
93
|
+
}>>;
|
|
94
|
+
specialFeatures: t.RecordC<t.StringC, t.TypeC<{
|
|
95
|
+
id: t.NumberC;
|
|
96
|
+
name: t.StringC;
|
|
97
|
+
description: t.StringC;
|
|
98
|
+
descriptionLegal: t.StringC;
|
|
99
|
+
}>>;
|
|
100
|
+
stacks: t.RecordC<t.StringC, t.TypeC<{
|
|
101
|
+
id: t.NumberC;
|
|
102
|
+
purposes: t.ArrayC<t.NumberC>;
|
|
103
|
+
specialFeatures: t.ArrayC<t.NumberC>;
|
|
104
|
+
name: t.StringC;
|
|
105
|
+
description: t.StringC;
|
|
106
|
+
}>>;
|
|
107
|
+
vendors: t.RecordC<t.StringC, t.IntersectionC<[t.TypeC<{
|
|
108
|
+
id: t.NumberC;
|
|
109
|
+
name: t.StringC;
|
|
110
|
+
purposes: t.ArrayC<t.NumberC>;
|
|
111
|
+
legIntPurposes: t.ArrayC<t.NumberC>;
|
|
112
|
+
flexiblePurposes: t.ArrayC<t.NumberC>;
|
|
113
|
+
specialPurposes: t.ArrayC<t.NumberC>;
|
|
114
|
+
features: t.ArrayC<t.NumberC>;
|
|
115
|
+
specialFeatures: t.ArrayC<t.NumberC>;
|
|
116
|
+
policyUrl: t.StringC;
|
|
117
|
+
cookieMaxAgeSeconds: t.UnionC<[t.NumberC, t.NullC]>;
|
|
118
|
+
usesCookies: t.BooleanC;
|
|
119
|
+
}>, t.PartialC<{
|
|
120
|
+
deletedDate: t.StringC;
|
|
121
|
+
overflow: t.TypeC<{
|
|
122
|
+
httpGetLimit: t.NumberC;
|
|
123
|
+
}>;
|
|
124
|
+
cookieRefresh: t.BooleanC;
|
|
125
|
+
usesNonCookieAccess: t.BooleanC;
|
|
126
|
+
deviceStorageDisclosureUrl: t.StringC;
|
|
127
|
+
}>]>>;
|
|
128
|
+
}>]>;
|
|
129
|
+
/**
|
|
130
|
+
* Overload StoredContentfulEntry as a type
|
|
131
|
+
*/
|
|
132
|
+
export declare type TcfV2VendorList = t.TypeOf<typeof TcfV2VendorList>;
|
|
133
|
+
//# sourceMappingURL=iab.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"iab.d.ts","sourceRoot":"","sources":["../src/iab.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAE3B;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;EAKrB,CAAC;AAEH;;GAEG;AACH,oBAAY,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,UAAU,CAAC,CAAC;AAErD;;GAEG;AACH,eAAO,MAAM,QAAQ;;;;;;EAMnB,CAAC;AAEH;;GAEG;AACH,oBAAY,QAAQ,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,QAAQ,CAAC,CAAC;AAEjD;;GAEG;AACH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;IAuBpB,CAAC;AAEH;;GAEG;AACH,oBAAY,SAAS,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,SAAS,CAAC,CAAC;AAEnD,eAAO,MAAM,oBAAoB;;;;;EAK/B,CAAC;AACH;;GAEG;AACH,oBAAY,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAEzE;;GAEG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAU1B,CAAC;AAEH;;GAEG;AACH,oBAAY,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,eAAe,CAAC,CAAC"}
|
package/build/iab.js
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
exports.TcfV2VendorList = exports.TcfVendorListVersion = exports.TcfVendor = exports.TcfStack = exports.TcfPurpose = void 0;
|
|
23
|
+
const t = __importStar(require("io-ts"));
|
|
24
|
+
/**
|
|
25
|
+
* TCF purpose configuration
|
|
26
|
+
*/
|
|
27
|
+
exports.TcfPurpose = t.type({
|
|
28
|
+
id: t.number,
|
|
29
|
+
name: t.string,
|
|
30
|
+
description: t.string,
|
|
31
|
+
descriptionLegal: t.string,
|
|
32
|
+
});
|
|
33
|
+
/**
|
|
34
|
+
* TCF stack configuration
|
|
35
|
+
*/
|
|
36
|
+
exports.TcfStack = t.type({
|
|
37
|
+
id: t.number,
|
|
38
|
+
purposes: t.array(t.number),
|
|
39
|
+
specialFeatures: t.array(t.number),
|
|
40
|
+
name: t.string,
|
|
41
|
+
description: t.string,
|
|
42
|
+
});
|
|
43
|
+
/**
|
|
44
|
+
* TCF stack configuration
|
|
45
|
+
*/
|
|
46
|
+
exports.TcfVendor = t.intersection([
|
|
47
|
+
t.type({
|
|
48
|
+
id: t.number,
|
|
49
|
+
name: t.string,
|
|
50
|
+
purposes: t.array(t.number),
|
|
51
|
+
legIntPurposes: t.array(t.number),
|
|
52
|
+
flexiblePurposes: t.array(t.number),
|
|
53
|
+
specialPurposes: t.array(t.number),
|
|
54
|
+
features: t.array(t.number),
|
|
55
|
+
specialFeatures: t.array(t.number),
|
|
56
|
+
policyUrl: t.string,
|
|
57
|
+
cookieMaxAgeSeconds: t.union([t.number, t.null]),
|
|
58
|
+
usesCookies: t.boolean,
|
|
59
|
+
}),
|
|
60
|
+
t.partial({
|
|
61
|
+
deletedDate: t.string,
|
|
62
|
+
overflow: t.type({
|
|
63
|
+
httpGetLimit: t.number,
|
|
64
|
+
}),
|
|
65
|
+
cookieRefresh: t.boolean,
|
|
66
|
+
usesNonCookieAccess: t.boolean,
|
|
67
|
+
deviceStorageDisclosureUrl: t.string,
|
|
68
|
+
}),
|
|
69
|
+
]);
|
|
70
|
+
exports.TcfVendorListVersion = t.type({
|
|
71
|
+
gvlSpecificationVersion: t.number,
|
|
72
|
+
vendorListVersion: t.number,
|
|
73
|
+
tcfPolicyVersion: t.number,
|
|
74
|
+
lastUpdated: t.string,
|
|
75
|
+
});
|
|
76
|
+
/**
|
|
77
|
+
* Contentful fields common between SaaSCategories and Catalogs
|
|
78
|
+
*/
|
|
79
|
+
exports.TcfV2VendorList = t.intersection([
|
|
80
|
+
exports.TcfVendorListVersion,
|
|
81
|
+
t.type({
|
|
82
|
+
purposes: t.record(t.string, exports.TcfPurpose),
|
|
83
|
+
specialPurposes: t.record(t.string, exports.TcfPurpose),
|
|
84
|
+
features: t.record(t.string, exports.TcfPurpose),
|
|
85
|
+
specialFeatures: t.record(t.string, exports.TcfPurpose),
|
|
86
|
+
stacks: t.record(t.string, exports.TcfStack),
|
|
87
|
+
vendors: t.record(t.string, exports.TcfVendor),
|
|
88
|
+
}),
|
|
89
|
+
]);
|
|
90
|
+
//# sourceMappingURL=iab.js.map
|
package/build/iab.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"iab.js","sourceRoot":"","sources":["../src/iab.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAE3B;;GAEG;AACU,QAAA,UAAU,GAAG,CAAC,CAAC,IAAI,CAAC;IAC/B,EAAE,EAAE,CAAC,CAAC,MAAM;IACZ,IAAI,EAAE,CAAC,CAAC,MAAM;IACd,WAAW,EAAE,CAAC,CAAC,MAAM;IACrB,gBAAgB,EAAE,CAAC,CAAC,MAAM;CAC3B,CAAC,CAAC;AAOH;;GAEG;AACU,QAAA,QAAQ,GAAG,CAAC,CAAC,IAAI,CAAC;IAC7B,EAAE,EAAE,CAAC,CAAC,MAAM;IACZ,QAAQ,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC;IAC3B,eAAe,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC;IAClC,IAAI,EAAE,CAAC,CAAC,MAAM;IACd,WAAW,EAAE,CAAC,CAAC,MAAM;CACtB,CAAC,CAAC;AAOH;;GAEG;AACU,QAAA,SAAS,GAAG,CAAC,CAAC,YAAY,CAAC;IACtC,CAAC,CAAC,IAAI,CAAC;QACL,EAAE,EAAE,CAAC,CAAC,MAAM;QACZ,IAAI,EAAE,CAAC,CAAC,MAAM;QACd,QAAQ,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC;QAC3B,cAAc,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC;QACjC,gBAAgB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC;QACnC,eAAe,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC;QAClC,QAAQ,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC;QAC3B,eAAe,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC;QAClC,SAAS,EAAE,CAAC,CAAC,MAAM;QACnB,mBAAmB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC;QAChD,WAAW,EAAE,CAAC,CAAC,OAAO;KACvB,CAAC;IACF,CAAC,CAAC,OAAO,CAAC;QACR,WAAW,EAAE,CAAC,CAAC,MAAM;QACrB,QAAQ,EAAE,CAAC,CAAC,IAAI,CAAC;YACf,YAAY,EAAE,CAAC,CAAC,MAAM;SACvB,CAAC;QACF,aAAa,EAAE,CAAC,CAAC,OAAO;QACxB,mBAAmB,EAAE,CAAC,CAAC,OAAO;QAC9B,0BAA0B,EAAE,CAAC,CAAC,MAAM;KACrC,CAAC;CACH,CAAC,CAAC;AAOU,QAAA,oBAAoB,GAAG,CAAC,CAAC,IAAI,CAAC;IACzC,uBAAuB,EAAE,CAAC,CAAC,MAAM;IACjC,iBAAiB,EAAE,CAAC,CAAC,MAAM;IAC3B,gBAAgB,EAAE,CAAC,CAAC,MAAM;IAC1B,WAAW,EAAE,CAAC,CAAC,MAAM;CACtB,CAAC,CAAC;AAMH;;GAEG;AACU,QAAA,eAAe,GAAG,CAAC,CAAC,YAAY,CAAC;IAC5C,4BAAoB;IACpB,CAAC,CAAC,IAAI,CAAC;QACL,QAAQ,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,kBAAU,CAAC;QACxC,eAAe,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,kBAAU,CAAC;QAC/C,QAAQ,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,kBAAU,CAAC;QACxC,eAAe,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,kBAAU,CAAC;QAC/C,MAAM,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,gBAAQ,CAAC;QACpC,OAAO,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,iBAAS,CAAC;KACvC,CAAC;CACH,CAAC,CAAC"}
|
package/build/index.d.ts
CHANGED
package/build/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,MAAM,CAAC;AACrB,cAAc,SAAS,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,MAAM,CAAC;AACrB,cAAc,SAAS,CAAC"}
|
package/build/index.js
CHANGED
|
@@ -11,6 +11,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
11
11
|
};
|
|
12
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
13
|
__exportStar(require("./core"), exports);
|
|
14
|
+
__exportStar(require("./iab"), exports);
|
|
14
15
|
__exportStar(require("./ui"), exports);
|
|
15
16
|
__exportStar(require("./enums"), exports);
|
|
16
17
|
//# sourceMappingURL=index.js.map
|
package/build/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yCAAuB;AACvB,uCAAqB;AACrB,0CAAwB"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yCAAuB;AACvB,wCAAsB;AACtB,uCAAqB;AACrB,0CAAwB"}
|
package/build/tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es5.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2016.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2017.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2018.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2019.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2020.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2021.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.esnext.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.dom.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.core.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.collection.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.generator.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.promise.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2017.object.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2017.string.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2017.intl.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2018.intl.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2018.promise.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2019.array.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2019.object.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2019.string.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2020.promise.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2020.string.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2020.intl.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2021.promise.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2021.string.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2021.intl.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.esnext.intl.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/JoinSemilattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/BoundedJoinSemilattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/MeetSemilattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/BoundedMeetSemilattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/BoundedLattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Lattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/HKT.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Contravariant.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Bounded.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Predicate.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Magma.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Functor.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Apply.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Pointed.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Applicative.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Zero.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Alternative.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Chain.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Extend.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Refinement.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Bifunctor.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Separated.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Filterable.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Monad.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Foldable.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/NaturalTransformation.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/FromEither.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/MonadThrow.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Comonad.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/FoldableWithIndex.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/FunctorWithIndex.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Show.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Traversable.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/TraversableWithIndex.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/ReadonlyNonEmptyArray.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Witherable.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Option.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Compactable.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/FilterableWithIndex.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Unfoldable.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/ReadonlyRecord.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Semigroup.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Endomorphism.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Monoid.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Eq.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Ordering.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Ord.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/DistributiveLattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/BoundedDistributiveLattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/HeytingAlgebra.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/BooleanAlgebra.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Semiring.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Ring.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/function.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Alt.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/ChainRec.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Either.d.ts","../.yarn/__virtual__/io-ts-virtual-981fdbc7ba/0/cache/io-ts-npm-2.2.16-b76df10271-1b5855682e.zip/node_modules/io-ts/lib/index.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/types.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/apply.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/codecTools/decodeCodec.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/codecTools/dictionary.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/codecTools/FixedLengthString.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/codecTools/FixedLengthArray.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/codecTools/partialRecord.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/codecTools/isCodecError.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/codecTools/NonEmptyString.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/codecTools/index.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/enum.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/enums.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/getEntries.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/getKeys.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/getValues.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/groupBy.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/gql.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/invert.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/valuesOf.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/index.d.ts","../src/enums/purpose.ts","../src/enums/privacyRegime.ts","../src/enums/viewState.ts","../src/enums/index.ts","../src/core.ts","../.yarn/cache/@transcend-io-internationalization-npm-1.4.1-eb70c32e56-4301c20b3d.zip/node_modules/@transcend-io/internationalization/build/enums.d.ts","../.yarn/cache/@transcend-io-internationalization-npm-1.4.1-eb70c32e56-4301c20b3d.zip/node_modules/@transcend-io/internationalization/build/types.d.ts","../.yarn/cache/@transcend-io-internationalization-npm-1.4.1-eb70c32e56-4301c20b3d.zip/node_modules/@transcend-io/internationalization/build/typeGuards.d.ts","../.yarn/cache/@transcend-io-internationalization-npm-1.4.1-eb70c32e56-4301c20b3d.zip/node_modules/@transcend-io/internationalization/build/defineMessages.d.ts","../.yarn/cache/@transcend-io-internationalization-npm-1.4.1-eb70c32e56-4301c20b3d.zip/node_modules/@transcend-io/internationalization/build/index.d.ts","../src/ui.ts","../src/index.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/assert.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/assert/strict.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/globals.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/async_hooks.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/buffer.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/child_process.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/cluster.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/console.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/constants.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/crypto.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/dgram.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/diagnostics_channel.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/dns.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/dns/promises.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/domain.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/events.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/fs.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/fs/promises.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/http.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/http2.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/https.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/inspector.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/module.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/net.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/os.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/path.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/perf_hooks.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/process.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/punycode.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/querystring.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/readline.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/repl.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/stream.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/stream/promises.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/stream/consumers.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/stream/web.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/string_decoder.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/timers.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/timers/promises.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/tls.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/trace_events.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/tty.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/url.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/util.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/v8.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/vm.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/wasi.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/worker_threads.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/zlib.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/globals.global.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/index.d.ts","../.yarn/cache/@types-keyv-npm-3.1.3-8864e3cbf3-b5f8aa592c.zip/node_modules/@types/keyv/index.d.ts","../.yarn/cache/@types-http-cache-semantics-npm-4.0.1-90863c7a3e-1048aacf62.zip/node_modules/@types/http-cache-semantics/index.d.ts","../.yarn/cache/@types-responselike-npm-1.0.0-85dd08af42-e99fc7cc62.zip/node_modules/@types/responselike/index.d.ts","../.yarn/cache/@types-cacheable-request-npm-6.0.2-894b6992d5-667d25808d.zip/node_modules/@types/cacheable-request/index.d.ts","../.yarn/cache/@types-emscripten-npm-1.39.5-ef4c55ba8e-cb92a99148.zip/node_modules/@types/emscripten/index.d.ts","../.yarn/cache/@types-json-schema-npm-7.0.9-361918cff3-259d0e25f1.zip/node_modules/@types/json-schema/index.d.ts","../.yarn/cache/@types-json5-npm-0.0.29-f63a7916bd-e60b153664.zip/node_modules/@types/json5/index.d.ts","../.yarn/cache/@types-minimatch-npm-3.0.5-802bb0797f-c41d136f67.zip/node_modules/@types/minimatch/index.d.ts","../.yarn/cache/@types-parse-json-npm-4.0.0-298522afa6-fd6bce2b67.zip/node_modules/@types/parse-json/index.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/classes/semver.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/parse.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/valid.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/clean.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/inc.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/diff.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/major.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/minor.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/patch.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/prerelease.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/compare.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/rcompare.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/compare-loose.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/compare-build.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/sort.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/rsort.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/gt.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/lt.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/eq.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/neq.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/gte.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/lte.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/cmp.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/coerce.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/classes/comparator.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/classes/range.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/satisfies.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/max-satisfying.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/min-satisfying.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/to-comparators.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/min-version.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/valid.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/outside.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/gtr.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/ltr.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/intersects.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/simplify.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/subset.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/internals/identifiers.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/index.d.ts","../.yarn/cache/@types-treeify-npm-1.0.0-b5e04e9cd3-1b2397030d.zip/node_modules/@types/treeify/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"e8c9f4e445a489991ca1a4232667de3ac36b07ba75ea335971fbeacf2d26fe67","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"7cacb7d6043be447426a3811ef40e5d81fca99289f991788a29494b3e528b3d5","3d69864968e13d13514d37303bcef6a965c5a3da370976ba4f2c96bbfca6f73a","9ec22bf34167a1e1ee4d2a44f88891bfa3a827d703758e045e46ad27c6f2bb04","1b4bf557e7c1b1400ea1d2021bf4a0aa94398b3949358c7520b38c7c6f3d5111","ce937afee0c311b592a028607381005375d5beba79b82750ee90190f210172f2","3d9abd8024a7cb9890821962ba50208546504ebe48ebac0be774b2c3996bf787","54a098c654bd4a1b420702693a923df4a2e767c82fc4461550ff32b43f965511","2d709defe18dac3e57730e01d6e563c1846427651bd8ef6ab08c8881a3536217","f6b0e59475d7c6c1c225855f46ac3bba062ac2d44d59226de618443ef85a9654","fa03d0db2493b6ee355167e3bfd3f19b4509b65150c9066a1d792506d8573d9d","b5bbca15e6517dcdb1c7107aaa078c149d92136c8d68b9aa25096fa8b22781a2","71f423707ae91a0efb99fd4341d5533e28b3253fa08342d579fdb9ddd1133056","5387eae5f9e2fa7d79786367cc69b61194b03bc5d401a9f034c87961454bf855","df40c429713283ada7dfe6030f85b126fa95a96f17fcbf4c8dd4b8e88ac7887e","16584246b33ca3ce1b234ceedc3d36b6c1e45f771448ef7ec2ff94f6cfd5a2f5","32f4a90406b42d5f00683a5c71a5e86294d054dc64e77bd94261dc3ab6fa87a7","21b0709d364e3c825cde113653e62a1813f694f34ce4d5a546d9653b0be95ece","1fe7c3717b5da4a72ef8221c3ed1743d06f7a4f14b8576b035e8ec8a27603ca7","6ee39c4fb749b48fef9ce908cba025fc774b40790c5f2c0d19ed70e55d688fb6","9485c1d322817a7d5abdd834e353a41d0e389fce2e56285c431182216e39ba8e","77b5bb559d0a4caa41bbff73c1fa7b2bd18e847341820b8bd78751f7312aa500","9427fb6b360ef922bbc0577b0e637d9a04875b400d8ae6e859eb828a92829257","7b6aa3f80957705d10c33cb6113decc323017313d8c64553f50a269ce0c3500f","23284153ead0384c87c29852612d5e6cef16d1179d4c6986e72a058929375b64","ddb30a43bffd1707dd4f531f7d6132c3b02ccc86d57e46d19d120edf4fa8e1c0","1ac910e17343640bf14e69ad9a078c37b453a1b46a1de1d5221d460d26d67d7a","ff73b5f74a4306a93fa3ec2eb32785f682d6bcb5955963c45c3f2152874d63fb","25c318c9a9e87a1163cabfc325c6b85b14b8cfb4a01679ef4211217cb843f174","eaa71b96b8cf3d21cf3c670a990f5d38dd4998291013ff47b07f9df8aedb09fb","a5d1b67b1ab0ff989665bdbb5be7399345594bd6922ea2db6a65cf8b3ad36a7c","f44163882d44b85c852186182e9301187fc674148957a4a0f2fc7a438bd6db4e","76fcf413abafd0023a294377cc079acfd6c7835aeb52fbc88d87b0176b4be7f1","3d6b3bf8322cc547cca607243117085cde9de05814ecf6ed46cb850dff44acca","5509d07a6a598798b9a03a97e9a01ce9a949ef6914cbcb16314b9e62e74b7dd0","5342ccabb910d7ed1e0c0968ac4a0bb2207e9c3285fa70000ecda2a9dc8e3c2e","5a5f821f9bf287fa83f18ae6d9b1d074f6d7dd1f472827078a31c762acf607fe","517f87d6abd7657426bcf5933e0a54770dc6d1a967c6bfc0da40c4c6ecb4adc9","e8815e5db5a33c95b721f38ae2c37c238a36ab190532d068f3897a8676aca31e","0dd156a63d802afb0466de6dbc4d89b2573793c11b6e221ff559462bb09b51ba","82e44a5b26bcbe7b4b99b6e33f72286f11387d55814f113ee3bd001c01312340","c03e836ee50ad9b0ec0c582b642786f894394605238e2b58cee2b877a3baeff0","e9ccb6c7e77319b0334d80ff4e0c3f5e14cebd765f62c84aa352343a673d26b6","454ea50cf3c255e2d7d9fccf485772a9414006e0eb0969b99867e4a97d02ddf9","c877c86f7150ec777c4a65a607f107760219199dbf5df9252e18db451fb201fd","5633abad5689d73cbc7dbc0a5657f071e7d74d7c719eb7d40bed84c8b065c5f7","bce2dafbf5c006978705d79a97bc02b3d69ffca1f5485f8ed5668e34fdfce283","45c3ea1a4ad18f5a15a3ccb6fc878c8eacc28ee7e6df70ab44d7accb8dde8acc","c4b821deefba05645c7b4ed17c08a691d9ad49bec79cb3eaa063c2965d344709","66da6541c596adf5757bd7dd75905c3995de2b852577a2ff9dd0367ba97689c7","ecc8a298c316ea0c05b2b47b132a00e5a161c7db80b00c45896f68d71714027d","53830d72bedcb50a122a50ddf4c934be579e76de5e92821c9d4cedca297a9b5a","e4c7507161ddfa6d4962241b05fda540c1dc095163cc622d17f2fce8d95d03ef","c18776b908ca93db4e977b670812955ce96dda262cf2b113e9eceaf7bc9fee11","ae8c14075c604187b8af08af2dec7b0ff40fa7b30195d819e236041c52ca90bd","0fa0f4fde2da84c277baee2a62a2f4e1c28aae411134208f1ea2a7ae2600d6a9","d81aa2e7a65beb57e825203b09b3aa337bbcd4733a58e5ae8322cd6f365a497d","efab59dcda3eb2ab3aab35fff20da6bedbb35d7a8bcbf3847001af82af8d2484","9f10e27d6256caba22c9465637e97320416427bf16525e184ed9b55a75b62f81","e389ee7c771cf8ad98971d1870b7a61114ce0b5a2108eccdfefae7ad7be420b4","a73e627df516439f25253452148b5638a5f16bb6d277dcef445486f95412e72c","ef64385a31cbe6c519751668eddc7fb4c61bc989bfeba688b5446470d7c263fa","1c5c43e1b377b340caf960be4f6f2ee3f1d8202690b52d45b6d65c7f31bc2b3e","2935812f68f0cad10a04cbd0e0dcd976efe5508f397af55b93b8d5b8cc407f95","122d4e87de1b35cec914e89b8ba598ee5433be50e4e9ae869217b7ef1da05624","b92707d0b115b799b9b98902197bd71c8df1182579ba710ace25196dd11437c6","80d13e760090f6b5fee5eb60c290e015efb70ea1b56d89617cc153c664a4c63c","e2b6db433156c6eeff0267f69fed7e136ba8081307f28cf335cf14a8c849c516","9682c86df92833243526a7e3e45a56c5a03d7cf6311f7441607c9b8340773971","dd7e666ac74f15727cc32255aed6918bf46806e84a479a28494f432b1bc36cf8","298ee055b6199b5303b03d8e8e684540390fd32c17a37e204d6a6ffe5ed4190c","d49c2c4c41d698679e54d8731144e9359202d2a4bdc64f8245cfa87a470dc2d0","293cd9c3b9c50ac607dc22ceb4acacac7d7ed83941f7d642768fdc7c7d471866","4249f7f4c4f0fe5eb48576ec6425a477753e4f4f5a9f7afe75b38c7c366b566a","c970788a6064983eeee31f24f374f32e345a52860c7ad750a38a8f874cae22c1","a1ddcf2125b1e71dd93f6f4851a835dbfd4eb7d7e34db49263bd6f5a6087959d","86d4eaf6be3efc9fbb92b919372eb6d84fee39c7487f27adacb83bc73ed7a59d","40b4de816d21273238a97efbc72f850b746fb38af45a653e1d90e704a5fb34d5","352d7401628d76f538b0227967a4b32b40a8f6fe586799c55b358f45ef0dbf35","35edef228beb370155ec0c0b7c4f2bacb1d4cf03f1bd2cd8f6981420b22ae012","26b5a2b52be0fa5c3de6aff5a05d3b1bd0c64d7a7049fa4d09c2051cb3e0f752","c2d9edbeaed67824f4bceab45e21015640030b662a6388fbde0d1b2a32581d24","e4a8a4d007f62c30aa1f60b0047be1ba53d0b8dbd57be6e480b7887a0706bd62","c63a6305c9c368ad2f8d7342964a2692a69d16c64e84761ef6faf08e3221a57b","18ae28366cd55987e769a4b8802e5ec39a0a096312d875387be964fa2fce0c8e","a5326a7180631a1d94ff8c87686db76d89f39debe5c8b11b51957c4e31de16e4","2f946a2ec9dc22f3da272300bef5c23efa93a64c109f4d19c32635bf4bf13f8f","e890e954db34a17f243ca60f97f92bb460b668a0a192abe15de2a77984b649b6","4010ad5ef4adbc319c1d30c686708e42c172c8044bf9cd33b089b4241457ca47","d07590a407c1375e22364eb510613667b6b86bf6a5897c546fca87156965211f","144c78b49bce3baff90004d332cf4db56f6ad22d0dc7876142ab54171570d974","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","ad4b60488fb1e562bf375dac9299815f7028bf667d9b5887b2d01d501b7d1ddd","246341c3a7a2638cf830d690e69de1e6085a102c6a30596435b050e6ac86c11a","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"aa8fe22e10f78a67b2ffbcc614b45fe258ff9e71d53ddb56e75fa7883c530270","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","a361a26932d73497a174a6d48c53cfedb55f735f20e8638fdf7b25cdeaac9ca4","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"902cd98bf46e95caf4118a0733fb801e9e90eec3edaed6abdad77124afec9ca2","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"e51bee3200733b1f58818b5a9ea90fcd61c5b8afa3a0378391991f3696826a65","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e6ef68f677c1b63967d87568043b8af9d2dfd71d5873acd1de3abeb1db606741","82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562",{"version":"835ddde1592ee7de17e7785b27a098437fe4961a9ec96cdeafdb536217123bc8","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","86d425f7fcd8d100dafa6286cc289af88cbb639ecbdbd25c3018a8f0f7b09fe5","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","d0f6d36b2d86f934560c48d8bfdc7ab60c67cfb2ab6dc1916706aa68e83d6dc2","e2c3fb7ba470548053dabb65521b89846fffad3a103ddc72b5115d8caa23ce8e"],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","preserveConstEnums":true,"rootDir":"../src","sourceMap":true,"strict":true,"target":6,"tsBuildInfoFile":"./tsbuildinfo"},"fileIdsList":[[99,102,179],[130,179],[179],[129,130,131,132,179],[129,179],[104,179],[103,179],[106,107,108,109,110,111,112,179],[104,105,113,114,115,116,117,118,119,120,121,122,179],[151,154,178,179,186,187,188,189],[151,179,186],[136,179],[139,179],[140,145,179],[141,151,152,159,168,178,179],[141,142,151,159,179],[143,179],[144,145,152,160,179],[145,168,175,179],[146,148,151,159,179],[147,179],[148,149,179],[150,151,179],[151,179],[151,152,153,168,178,179],[151,152,153,168,179],[154,159,168,178,179],[151,152,154,155,159,168,175,178,179],[154,156,168,175,178,179],[136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185],[151,157,179],[158,178,179],[148,151,159,168,179],[160,179],[161,179],[139,162,179],[163,177,179,183],[164,179],[165,179],[151,166,179],[166,167,179,181],[151,168,169,170,179],[168,170,179],[168,169,179],[171,179],[172,179],[151,173,174,179],[173,174,179],[145,159,175,179],[176,179],[159,177,179],[140,154,165,178,179],[145,179],[168,179,180],[179,181],[179,182],[140,145,151,153,162,168,178,179,181,183],[168,179,184],[154,168,179,186],[179,196,235],[179,196,220,235],[179,235],[179,196],[179,196,221,235],[179,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234],[179,221,235],[52,55,57,67,80,82,86,88,90,92,99,102,179],[52,55,60,61,67,80,82,86,88,90,92,100,102,179],[52,55,57,58,59,67,80,82,86,88,89,90,92,102,179],[52,55,57,67,80,82,86,87,88,90,92,102,179],[52,55,67,80,82,86,88,90,92,102,179],[95,179],[92,179],[50,92,93,179],[46,179],[47,49,179],[48,179],[52,55,58,67,80,82,86,88,90,92,102,179],[52,55,63,67,80,82,86,88,90,92,102,179],[52,55,64,67,80,82,86,88,90,92,102,179],[52,55,57,67,80,82,86,88,90,92,102,179],[51,92,179],[52,55,57,58,59,60,63,64,65,66,67,68,69,70,71,72,73,77,78,80,81,82,83,86,87,88,89,90,92,99,100,101,179],[52,55,67,80,82,86,87,89,90,92,102,179],[52,53,55,67,80,82,86,87,88,89,92,102,179],[52,55,57,65,67,80,82,83,86,88,90,92,102,179],[52,55,67,68,76,80,82,86,88,90,92,102,179],[52,55,60,67,69,80,82,86,88,89,90,92,102,179],[52,55,67,70,80,82,86,88,89,90,92,102,179],[52,55,63,65,67,71,80,82,86,88,90,92,99,102,179],[94,179],[46,48,179],[55,88,179],[52,55,60,63,67,80,82,86,88,90,92,102,179],[52,55,67,69,80,82,86,88,90,92,102,179],[54,86,87,88,179],[52,55,57,58,59,60,61,62,63,64,65,67,68,69,70,72,73,77,78,80,81,83,86,87,88,89,90,92,99,100,102,179],[52,53,55,67,80,82,86,87,88,89,90,91,102,179],[87,89,90,179],[52,53,67,80,82,86,87,88,89,90,92,102,179],[52,55,57,58,59,60,63,65,67,69,70,74,75,76,77,78,79,82,86,87,88,90,92,99,100,102,179],[52,55,56,57,60,65,67,68,70,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,92,102,179],[82,102,179],[97,179],[56,86,92,179],[52,55,57,66,80,82,86,88,90,92,102,179],[86,179],[52,55,57,60,67,70,80,82,86,88,90,92,102,179],[52,55,60,67,75,76,78,80,82,86,88,90,92,102,179],[52,55,60,67,68,78,80,82,83,86,88,90,92,102,179],[52,55,59,67,80,82,86,88,90,92,102,179],[87,89,96,97,98,179],[103,123,127,179],[124,125,126,179],[123,179],[127,128,134,179],[103,123,127,128,133,179]],"referencedMap":[[103,1],[132,2],[129,3],[133,4],[131,5],[130,5],[105,6],[109,7],[108,7],[112,7],[106,7],[107,7],[113,8],[111,3],[110,7],[114,6],[115,3],[116,6],[117,6],[118,3],[120,3],[119,3],[123,9],[121,3],[104,3],[122,7],[190,10],[191,3],[188,3],[192,3],[193,3],[187,11],[194,3],[136,12],[137,12],[139,13],[140,14],[141,15],[142,16],[143,17],[144,18],[145,19],[146,20],[147,21],[148,22],[149,22],[150,23],[151,24],[152,25],[153,26],[138,3],[185,3],[154,27],[155,28],[156,29],[186,30],[157,31],[158,32],[159,33],[160,34],[161,35],[162,36],[163,37],[164,38],[165,39],[166,40],[167,41],[168,42],[170,43],[169,44],[171,45],[172,46],[173,47],[174,48],[175,49],[176,50],[177,51],[178,52],[179,53],[180,54],[181,55],[182,56],[183,57],[184,58],[195,3],[189,59],[220,60],[221,61],[196,62],[199,62],[218,60],[219,60],[209,63],[208,63],[206,60],[201,60],[214,60],[212,60],[216,60],[200,60],[213,60],[217,60],[202,60],[203,60],[215,60],[197,60],[204,60],[205,60],[207,60],[211,60],[222,64],[210,60],[198,60],[235,65],[234,3],[229,64],[231,66],[230,64],[223,64],[224,64],[226,64],[228,64],[232,66],[233,66],[225,66],[227,66],[236,3],[52,3],[100,67],[62,68],[60,69],[58,70],[66,71],[96,72],[54,73],[94,74],[47,75],[50,76],[49,77],[63,78],[101,79],[74,80],[83,81],[53,71],[93,82],[102,83],[88,84],[90,85],[64,81],[68,86],[84,87],[70,88],[75,89],[72,90],[57,71],[76,81],[95,91],[46,3],[51,92],[56,93],[48,3],[69,94],[73,95],[89,96],[71,71],[82,97],[92,98],[91,99],[59,71],[55,100],[80,101],[86,102],[65,103],[98,104],[87,105],[97,3],[67,106],[77,107],[78,108],[79,109],[85,71],[81,110],[61,111],[99,112],[10,3],[12,3],[11,3],[2,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[3,3],[4,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[32,3],[33,3],[34,3],[35,3],[7,3],[40,3],[36,3],[37,3],[38,3],[39,3],[8,3],[44,3],[41,3],[42,3],[43,3],[1,3],[9,3],[45,3],[128,113],[127,114],[125,3],[124,115],[126,115],[135,116],[134,117]],"exportedModulesMap":[[103,1],[132,2],[129,3],[133,4],[131,5],[130,5],[105,6],[109,7],[108,7],[112,7],[106,7],[107,7],[113,8],[111,3],[110,7],[114,6],[115,3],[116,6],[117,6],[118,3],[120,3],[119,3],[123,9],[121,3],[104,3],[122,7],[190,10],[191,3],[188,3],[192,3],[193,3],[187,11],[194,3],[136,12],[137,12],[139,13],[140,14],[141,15],[142,16],[143,17],[144,18],[145,19],[146,20],[147,21],[148,22],[149,22],[150,23],[151,24],[152,25],[153,26],[138,3],[185,3],[154,27],[155,28],[156,29],[186,30],[157,31],[158,32],[159,33],[160,34],[161,35],[162,36],[163,37],[164,38],[165,39],[166,40],[167,41],[168,42],[170,43],[169,44],[171,45],[172,46],[173,47],[174,48],[175,49],[176,50],[177,51],[178,52],[179,53],[180,54],[181,55],[182,56],[183,57],[184,58],[195,3],[189,59],[220,60],[221,61],[196,62],[199,62],[218,60],[219,60],[209,63],[208,63],[206,60],[201,60],[214,60],[212,60],[216,60],[200,60],[213,60],[217,60],[202,60],[203,60],[215,60],[197,60],[204,60],[205,60],[207,60],[211,60],[222,64],[210,60],[198,60],[235,65],[234,3],[229,64],[231,66],[230,64],[223,64],[224,64],[226,64],[228,64],[232,66],[233,66],[225,66],[227,66],[236,3],[52,3],[100,67],[62,68],[60,69],[58,70],[66,71],[96,72],[54,73],[94,74],[47,75],[50,76],[49,77],[63,78],[101,79],[74,80],[83,81],[53,71],[93,82],[102,83],[88,84],[90,85],[64,81],[68,86],[84,87],[70,88],[75,89],[72,90],[57,71],[76,81],[95,91],[46,3],[51,92],[56,93],[48,3],[69,94],[73,95],[89,96],[71,71],[82,97],[92,98],[91,99],[59,71],[55,100],[80,101],[86,102],[65,103],[98,104],[87,105],[97,3],[67,106],[77,107],[78,108],[79,109],[85,71],[81,110],[61,111],[99,112],[10,3],[12,3],[11,3],[2,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[3,3],[4,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[32,3],[33,3],[34,3],[35,3],[7,3],[40,3],[36,3],[37,3],[38,3],[39,3],[8,3],[44,3],[41,3],[42,3],[43,3],[1,3],[9,3],[45,3],[128,113],[127,114],[125,3],[124,115],[126,115],[135,116],[134,117]],"semanticDiagnosticsPerFile":[103,132,129,133,131,130,105,109,108,112,106,107,113,111,110,114,115,116,117,118,120,119,123,121,104,122,190,191,188,192,193,187,194,136,137,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,138,185,154,155,156,186,157,158,159,160,161,162,163,164,165,166,167,168,170,169,171,172,173,174,175,176,177,178,179,180,181,182,183,184,195,189,220,221,196,199,218,219,209,208,206,201,214,212,216,200,213,217,202,203,215,197,204,205,207,211,222,210,198,235,234,229,231,230,223,224,226,228,232,233,225,227,236,52,100,62,60,58,66,96,54,94,47,50,49,63,101,74,83,53,93,102,88,90,64,68,84,70,75,72,57,76,95,46,51,56,48,69,73,89,71,82,92,91,59,55,80,86,65,98,87,97,67,77,78,79,85,81,61,99,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,40,36,37,38,39,8,44,41,42,43,1,9,45,128,127,125,124,126,135,134]},"version":"4.5.5"}
|
|
1
|
+
{"program":{"fileNames":["../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es5.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2016.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2017.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2018.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2019.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2020.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2021.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.esnext.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.dom.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.core.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.collection.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.generator.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.promise.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2017.object.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2017.string.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2017.intl.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2018.intl.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2018.promise.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2019.array.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2019.object.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2019.string.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2020.promise.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2020.string.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2020.intl.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2021.promise.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2021.string.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.es2021.intl.d.ts","../.yarn/cache/typescript-patch-1413b5712d-858c61fa63.zip/node_modules/typescript/lib/lib.esnext.intl.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/JoinSemilattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/BoundedJoinSemilattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/MeetSemilattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/BoundedMeetSemilattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/BoundedLattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Lattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/HKT.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Contravariant.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Bounded.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Predicate.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Magma.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Functor.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Apply.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Pointed.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Applicative.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Zero.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Alternative.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Chain.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Extend.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Refinement.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Bifunctor.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Separated.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Filterable.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Monad.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Foldable.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/NaturalTransformation.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/FromEither.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/MonadThrow.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Comonad.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/FoldableWithIndex.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/FunctorWithIndex.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Show.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Traversable.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/TraversableWithIndex.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/ReadonlyNonEmptyArray.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Witherable.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Option.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Compactable.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/FilterableWithIndex.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Unfoldable.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/ReadonlyRecord.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Semigroup.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Endomorphism.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Monoid.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Eq.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Ordering.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Ord.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/DistributiveLattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/BoundedDistributiveLattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/HeytingAlgebra.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/BooleanAlgebra.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Semiring.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Ring.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/function.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Alt.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/ChainRec.d.ts","../.yarn/cache/fp-ts-npm-2.11.8-1b278a55a3-481b824797.zip/node_modules/fp-ts/lib/Either.d.ts","../.yarn/__virtual__/io-ts-virtual-981fdbc7ba/0/cache/io-ts-npm-2.2.16-b76df10271-1b5855682e.zip/node_modules/io-ts/lib/index.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/types.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/apply.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/codecTools/decodeCodec.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/codecTools/dictionary.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/codecTools/FixedLengthString.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/codecTools/FixedLengthArray.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/codecTools/partialRecord.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/codecTools/isCodecError.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/codecTools/NonEmptyString.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/codecTools/index.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/enum.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/enums.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/getEntries.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/getKeys.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/getValues.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/groupBy.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/gql.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/invert.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/valuesOf.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.5-53d562f965-4d1bb97518.zip/node_modules/@transcend-io/type-utils/build/index.d.ts","../src/enums/purpose.ts","../src/enums/privacyRegime.ts","../src/enums/viewState.ts","../src/enums/index.ts","../src/core.ts","../src/iab.ts","../.yarn/cache/@transcend-io-internationalization-npm-1.4.1-eb70c32e56-4301c20b3d.zip/node_modules/@transcend-io/internationalization/build/enums.d.ts","../.yarn/cache/@transcend-io-internationalization-npm-1.4.1-eb70c32e56-4301c20b3d.zip/node_modules/@transcend-io/internationalization/build/types.d.ts","../.yarn/cache/@transcend-io-internationalization-npm-1.4.1-eb70c32e56-4301c20b3d.zip/node_modules/@transcend-io/internationalization/build/typeGuards.d.ts","../.yarn/cache/@transcend-io-internationalization-npm-1.4.1-eb70c32e56-4301c20b3d.zip/node_modules/@transcend-io/internationalization/build/defineMessages.d.ts","../.yarn/cache/@transcend-io-internationalization-npm-1.4.1-eb70c32e56-4301c20b3d.zip/node_modules/@transcend-io/internationalization/build/index.d.ts","../src/ui.ts","../src/index.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/assert.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/assert/strict.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/globals.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/async_hooks.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/buffer.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/child_process.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/cluster.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/console.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/constants.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/crypto.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/dgram.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/diagnostics_channel.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/dns.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/dns/promises.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/domain.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/events.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/fs.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/fs/promises.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/http.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/http2.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/https.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/inspector.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/module.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/net.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/os.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/path.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/perf_hooks.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/process.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/punycode.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/querystring.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/readline.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/repl.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/stream.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/stream/promises.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/stream/consumers.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/stream/web.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/string_decoder.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/timers.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/timers/promises.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/tls.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/trace_events.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/tty.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/url.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/util.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/v8.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/vm.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/wasi.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/worker_threads.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/zlib.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/globals.global.d.ts","../.yarn/cache/@types-node-npm-16.11.6-3a38cc239a-6e19634766.zip/node_modules/@types/node/index.d.ts","../.yarn/cache/@types-keyv-npm-3.1.3-8864e3cbf3-b5f8aa592c.zip/node_modules/@types/keyv/index.d.ts","../.yarn/cache/@types-http-cache-semantics-npm-4.0.1-90863c7a3e-1048aacf62.zip/node_modules/@types/http-cache-semantics/index.d.ts","../.yarn/cache/@types-responselike-npm-1.0.0-85dd08af42-e99fc7cc62.zip/node_modules/@types/responselike/index.d.ts","../.yarn/cache/@types-cacheable-request-npm-6.0.2-894b6992d5-667d25808d.zip/node_modules/@types/cacheable-request/index.d.ts","../.yarn/cache/@types-emscripten-npm-1.39.5-ef4c55ba8e-cb92a99148.zip/node_modules/@types/emscripten/index.d.ts","../.yarn/cache/@types-json-schema-npm-7.0.9-361918cff3-259d0e25f1.zip/node_modules/@types/json-schema/index.d.ts","../.yarn/cache/@types-json5-npm-0.0.29-f63a7916bd-e60b153664.zip/node_modules/@types/json5/index.d.ts","../.yarn/cache/@types-minimatch-npm-3.0.5-802bb0797f-c41d136f67.zip/node_modules/@types/minimatch/index.d.ts","../.yarn/cache/@types-parse-json-npm-4.0.0-298522afa6-fd6bce2b67.zip/node_modules/@types/parse-json/index.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/classes/semver.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/parse.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/valid.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/clean.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/inc.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/diff.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/major.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/minor.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/patch.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/prerelease.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/compare.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/rcompare.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/compare-loose.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/compare-build.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/sort.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/rsort.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/gt.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/lt.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/eq.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/neq.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/gte.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/lte.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/cmp.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/coerce.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/classes/comparator.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/classes/range.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/functions/satisfies.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/max-satisfying.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/min-satisfying.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/to-comparators.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/min-version.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/valid.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/outside.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/gtr.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/ltr.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/intersects.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/simplify.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/ranges/subset.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/internals/identifiers.d.ts","../.yarn/cache/@types-semver-npm-7.3.9-eb0d8b7243-60bfcfdfa7.zip/node_modules/@types/semver/index.d.ts","../.yarn/cache/@types-treeify-npm-1.0.0-b5e04e9cd3-1b2397030d.zip/node_modules/@types/treeify/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"e8c9f4e445a489991ca1a4232667de3ac36b07ba75ea335971fbeacf2d26fe67","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"7cacb7d6043be447426a3811ef40e5d81fca99289f991788a29494b3e528b3d5","3d69864968e13d13514d37303bcef6a965c5a3da370976ba4f2c96bbfca6f73a","9ec22bf34167a1e1ee4d2a44f88891bfa3a827d703758e045e46ad27c6f2bb04","1b4bf557e7c1b1400ea1d2021bf4a0aa94398b3949358c7520b38c7c6f3d5111","ce937afee0c311b592a028607381005375d5beba79b82750ee90190f210172f2","3d9abd8024a7cb9890821962ba50208546504ebe48ebac0be774b2c3996bf787","54a098c654bd4a1b420702693a923df4a2e767c82fc4461550ff32b43f965511","2d709defe18dac3e57730e01d6e563c1846427651bd8ef6ab08c8881a3536217","f6b0e59475d7c6c1c225855f46ac3bba062ac2d44d59226de618443ef85a9654","fa03d0db2493b6ee355167e3bfd3f19b4509b65150c9066a1d792506d8573d9d","b5bbca15e6517dcdb1c7107aaa078c149d92136c8d68b9aa25096fa8b22781a2","71f423707ae91a0efb99fd4341d5533e28b3253fa08342d579fdb9ddd1133056","5387eae5f9e2fa7d79786367cc69b61194b03bc5d401a9f034c87961454bf855","df40c429713283ada7dfe6030f85b126fa95a96f17fcbf4c8dd4b8e88ac7887e","16584246b33ca3ce1b234ceedc3d36b6c1e45f771448ef7ec2ff94f6cfd5a2f5","32f4a90406b42d5f00683a5c71a5e86294d054dc64e77bd94261dc3ab6fa87a7","21b0709d364e3c825cde113653e62a1813f694f34ce4d5a546d9653b0be95ece","1fe7c3717b5da4a72ef8221c3ed1743d06f7a4f14b8576b035e8ec8a27603ca7","6ee39c4fb749b48fef9ce908cba025fc774b40790c5f2c0d19ed70e55d688fb6","9485c1d322817a7d5abdd834e353a41d0e389fce2e56285c431182216e39ba8e","77b5bb559d0a4caa41bbff73c1fa7b2bd18e847341820b8bd78751f7312aa500","9427fb6b360ef922bbc0577b0e637d9a04875b400d8ae6e859eb828a92829257","7b6aa3f80957705d10c33cb6113decc323017313d8c64553f50a269ce0c3500f","23284153ead0384c87c29852612d5e6cef16d1179d4c6986e72a058929375b64","ddb30a43bffd1707dd4f531f7d6132c3b02ccc86d57e46d19d120edf4fa8e1c0","1ac910e17343640bf14e69ad9a078c37b453a1b46a1de1d5221d460d26d67d7a","ff73b5f74a4306a93fa3ec2eb32785f682d6bcb5955963c45c3f2152874d63fb","25c318c9a9e87a1163cabfc325c6b85b14b8cfb4a01679ef4211217cb843f174","eaa71b96b8cf3d21cf3c670a990f5d38dd4998291013ff47b07f9df8aedb09fb","a5d1b67b1ab0ff989665bdbb5be7399345594bd6922ea2db6a65cf8b3ad36a7c","f44163882d44b85c852186182e9301187fc674148957a4a0f2fc7a438bd6db4e","76fcf413abafd0023a294377cc079acfd6c7835aeb52fbc88d87b0176b4be7f1","3d6b3bf8322cc547cca607243117085cde9de05814ecf6ed46cb850dff44acca","5509d07a6a598798b9a03a97e9a01ce9a949ef6914cbcb16314b9e62e74b7dd0","5342ccabb910d7ed1e0c0968ac4a0bb2207e9c3285fa70000ecda2a9dc8e3c2e","5a5f821f9bf287fa83f18ae6d9b1d074f6d7dd1f472827078a31c762acf607fe","517f87d6abd7657426bcf5933e0a54770dc6d1a967c6bfc0da40c4c6ecb4adc9","e8815e5db5a33c95b721f38ae2c37c238a36ab190532d068f3897a8676aca31e","0dd156a63d802afb0466de6dbc4d89b2573793c11b6e221ff559462bb09b51ba","82e44a5b26bcbe7b4b99b6e33f72286f11387d55814f113ee3bd001c01312340","c03e836ee50ad9b0ec0c582b642786f894394605238e2b58cee2b877a3baeff0","e9ccb6c7e77319b0334d80ff4e0c3f5e14cebd765f62c84aa352343a673d26b6","454ea50cf3c255e2d7d9fccf485772a9414006e0eb0969b99867e4a97d02ddf9","c877c86f7150ec777c4a65a607f107760219199dbf5df9252e18db451fb201fd","5633abad5689d73cbc7dbc0a5657f071e7d74d7c719eb7d40bed84c8b065c5f7","bce2dafbf5c006978705d79a97bc02b3d69ffca1f5485f8ed5668e34fdfce283","45c3ea1a4ad18f5a15a3ccb6fc878c8eacc28ee7e6df70ab44d7accb8dde8acc","c4b821deefba05645c7b4ed17c08a691d9ad49bec79cb3eaa063c2965d344709","66da6541c596adf5757bd7dd75905c3995de2b852577a2ff9dd0367ba97689c7","ecc8a298c316ea0c05b2b47b132a00e5a161c7db80b00c45896f68d71714027d","53830d72bedcb50a122a50ddf4c934be579e76de5e92821c9d4cedca297a9b5a","e4c7507161ddfa6d4962241b05fda540c1dc095163cc622d17f2fce8d95d03ef","c18776b908ca93db4e977b670812955ce96dda262cf2b113e9eceaf7bc9fee11","ae8c14075c604187b8af08af2dec7b0ff40fa7b30195d819e236041c52ca90bd","0fa0f4fde2da84c277baee2a62a2f4e1c28aae411134208f1ea2a7ae2600d6a9","d81aa2e7a65beb57e825203b09b3aa337bbcd4733a58e5ae8322cd6f365a497d","efab59dcda3eb2ab3aab35fff20da6bedbb35d7a8bcbf3847001af82af8d2484","9f10e27d6256caba22c9465637e97320416427bf16525e184ed9b55a75b62f81","e389ee7c771cf8ad98971d1870b7a61114ce0b5a2108eccdfefae7ad7be420b4","a73e627df516439f25253452148b5638a5f16bb6d277dcef445486f95412e72c","ef64385a31cbe6c519751668eddc7fb4c61bc989bfeba688b5446470d7c263fa","1c5c43e1b377b340caf960be4f6f2ee3f1d8202690b52d45b6d65c7f31bc2b3e","2935812f68f0cad10a04cbd0e0dcd976efe5508f397af55b93b8d5b8cc407f95","122d4e87de1b35cec914e89b8ba598ee5433be50e4e9ae869217b7ef1da05624","b92707d0b115b799b9b98902197bd71c8df1182579ba710ace25196dd11437c6","80d13e760090f6b5fee5eb60c290e015efb70ea1b56d89617cc153c664a4c63c","e2b6db433156c6eeff0267f69fed7e136ba8081307f28cf335cf14a8c849c516","9682c86df92833243526a7e3e45a56c5a03d7cf6311f7441607c9b8340773971","dd7e666ac74f15727cc32255aed6918bf46806e84a479a28494f432b1bc36cf8","298ee055b6199b5303b03d8e8e684540390fd32c17a37e204d6a6ffe5ed4190c","d49c2c4c41d698679e54d8731144e9359202d2a4bdc64f8245cfa87a470dc2d0","293cd9c3b9c50ac607dc22ceb4acacac7d7ed83941f7d642768fdc7c7d471866","4249f7f4c4f0fe5eb48576ec6425a477753e4f4f5a9f7afe75b38c7c366b566a","c970788a6064983eeee31f24f374f32e345a52860c7ad750a38a8f874cae22c1","a1ddcf2125b1e71dd93f6f4851a835dbfd4eb7d7e34db49263bd6f5a6087959d","86d4eaf6be3efc9fbb92b919372eb6d84fee39c7487f27adacb83bc73ed7a59d","40b4de816d21273238a97efbc72f850b746fb38af45a653e1d90e704a5fb34d5","352d7401628d76f538b0227967a4b32b40a8f6fe586799c55b358f45ef0dbf35","35edef228beb370155ec0c0b7c4f2bacb1d4cf03f1bd2cd8f6981420b22ae012","26b5a2b52be0fa5c3de6aff5a05d3b1bd0c64d7a7049fa4d09c2051cb3e0f752","c2d9edbeaed67824f4bceab45e21015640030b662a6388fbde0d1b2a32581d24","e4a8a4d007f62c30aa1f60b0047be1ba53d0b8dbd57be6e480b7887a0706bd62","c63a6305c9c368ad2f8d7342964a2692a69d16c64e84761ef6faf08e3221a57b","fd71d9b48136757bd11871872a9c81045150b551630ecd1e28204c8035e65d40","18ae28366cd55987e769a4b8802e5ec39a0a096312d875387be964fa2fce0c8e","a5326a7180631a1d94ff8c87686db76d89f39debe5c8b11b51957c4e31de16e4","2f946a2ec9dc22f3da272300bef5c23efa93a64c109f4d19c32635bf4bf13f8f","e890e954db34a17f243ca60f97f92bb460b668a0a192abe15de2a77984b649b6","4010ad5ef4adbc319c1d30c686708e42c172c8044bf9cd33b089b4241457ca47","04cdc3ad20bef79c8c41a3d131999ddb747ee0613902a1c9cf2cc752d671bafd","02a8495971585c1efac7ad91b32bb3116d6d96ae8f5a55332abcb049e0c44df7","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","ad4b60488fb1e562bf375dac9299815f7028bf667d9b5887b2d01d501b7d1ddd","246341c3a7a2638cf830d690e69de1e6085a102c6a30596435b050e6ac86c11a","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"aa8fe22e10f78a67b2ffbcc614b45fe258ff9e71d53ddb56e75fa7883c530270","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","a361a26932d73497a174a6d48c53cfedb55f735f20e8638fdf7b25cdeaac9ca4","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"902cd98bf46e95caf4118a0733fb801e9e90eec3edaed6abdad77124afec9ca2","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"e51bee3200733b1f58818b5a9ea90fcd61c5b8afa3a0378391991f3696826a65","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e6ef68f677c1b63967d87568043b8af9d2dfd71d5873acd1de3abeb1db606741","82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562",{"version":"835ddde1592ee7de17e7785b27a098437fe4961a9ec96cdeafdb536217123bc8","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","86d425f7fcd8d100dafa6286cc289af88cbb639ecbdbd25c3018a8f0f7b09fe5","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","d0f6d36b2d86f934560c48d8bfdc7ab60c67cfb2ab6dc1916706aa68e83d6dc2","e2c3fb7ba470548053dabb65521b89846fffad3a103ddc72b5115d8caa23ce8e"],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","preserveConstEnums":true,"rootDir":"../src","sourceMap":true,"strict":true,"target":6,"tsBuildInfoFile":"./tsbuildinfo"},"fileIdsList":[[99,102,180],[131,180],[180],[130,131,132,133,180],[130,180],[104,180],[103,180],[106,107,108,109,110,111,112,180],[104,105,113,114,115,116,117,118,119,120,121,122,180],[152,155,179,180,187,188,189,190],[152,180,187],[137,180],[140,180],[141,146,180],[142,152,153,160,169,179,180],[142,143,152,160,180],[144,180],[145,146,153,161,180],[146,169,176,180],[147,149,152,160,180],[148,180],[149,150,180],[151,152,180],[152,180],[152,153,154,169,179,180],[152,153,154,169,180],[155,160,169,179,180],[152,153,155,156,160,169,176,179,180],[155,157,169,176,179,180],[137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186],[152,158,180],[159,179,180],[149,152,160,169,180],[161,180],[162,180],[140,163,180],[164,178,180,184],[165,180],[166,180],[152,167,180],[167,168,180,182],[152,169,170,171,180],[169,171,180],[169,170,180],[172,180],[173,180],[152,174,175,180],[174,175,180],[146,160,176,180],[177,180],[160,178,180],[141,155,166,179,180],[146,180],[169,180,181],[180,182],[180,183],[141,146,152,154,163,169,179,180,182,184],[169,180,185],[155,169,180,187],[180,197,236],[180,197,221,236],[180,236],[180,197],[180,197,222,236],[180,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235],[180,222,236],[52,55,57,67,80,82,86,88,90,92,99,102,180],[52,55,60,61,67,80,82,86,88,90,92,100,102,180],[52,55,57,58,59,67,80,82,86,88,89,90,92,102,180],[52,55,57,67,80,82,86,87,88,90,92,102,180],[52,55,67,80,82,86,88,90,92,102,180],[95,180],[92,180],[50,92,93,180],[46,180],[47,49,180],[48,180],[52,55,58,67,80,82,86,88,90,92,102,180],[52,55,63,67,80,82,86,88,90,92,102,180],[52,55,64,67,80,82,86,88,90,92,102,180],[52,55,57,67,80,82,86,88,90,92,102,180],[51,92,180],[52,55,57,58,59,60,63,64,65,66,67,68,69,70,71,72,73,77,78,80,81,82,83,86,87,88,89,90,92,99,100,101,180],[52,55,67,80,82,86,87,89,90,92,102,180],[52,53,55,67,80,82,86,87,88,89,92,102,180],[52,55,57,65,67,80,82,83,86,88,90,92,102,180],[52,55,67,68,76,80,82,86,88,90,92,102,180],[52,55,60,67,69,80,82,86,88,89,90,92,102,180],[52,55,67,70,80,82,86,88,89,90,92,102,180],[52,55,63,65,67,71,80,82,86,88,90,92,99,102,180],[94,180],[46,48,180],[55,88,180],[52,55,60,63,67,80,82,86,88,90,92,102,180],[52,55,67,69,80,82,86,88,90,92,102,180],[54,86,87,88,180],[52,55,57,58,59,60,61,62,63,64,65,67,68,69,70,72,73,77,78,80,81,83,86,87,88,89,90,92,99,100,102,180],[52,53,55,67,80,82,86,87,88,89,90,91,102,180],[87,89,90,180],[52,53,67,80,82,86,87,88,89,90,92,102,180],[52,55,57,58,59,60,63,65,67,69,70,74,75,76,77,78,79,82,86,87,88,90,92,99,100,102,180],[52,55,56,57,60,65,67,68,70,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,92,102,180],[82,102,180],[97,180],[56,86,92,180],[52,55,57,66,80,82,86,88,90,92,102,180],[86,180],[52,55,57,60,67,70,80,82,86,88,90,92,102,180],[52,55,60,67,75,76,78,80,82,86,88,90,92,102,180],[52,55,60,67,68,78,80,82,83,86,88,90,92,102,180],[52,55,59,67,80,82,86,88,90,92,102,180],[87,89,96,97,98,180],[103,123,127,180],[124,125,126,180],[123,180],[127,128,129,135,180],[103,123,127,128,134,180]],"referencedMap":[[103,1],[133,2],[130,3],[134,4],[132,5],[131,5],[105,6],[109,7],[108,7],[112,7],[106,7],[107,7],[113,8],[111,3],[110,7],[114,6],[115,3],[116,6],[117,6],[118,3],[120,3],[119,3],[123,9],[121,3],[104,3],[122,7],[191,10],[192,3],[189,3],[193,3],[194,3],[188,11],[195,3],[137,12],[138,12],[140,13],[141,14],[142,15],[143,16],[144,17],[145,18],[146,19],[147,20],[148,21],[149,22],[150,22],[151,23],[152,24],[153,25],[154,26],[139,3],[186,3],[155,27],[156,28],[157,29],[187,30],[158,31],[159,32],[160,33],[161,34],[162,35],[163,36],[164,37],[165,38],[166,39],[167,40],[168,41],[169,42],[171,43],[170,44],[172,45],[173,46],[174,47],[175,48],[176,49],[177,50],[178,51],[179,52],[180,53],[181,54],[182,55],[183,56],[184,57],[185,58],[196,3],[190,59],[221,60],[222,61],[197,62],[200,62],[219,60],[220,60],[210,63],[209,63],[207,60],[202,60],[215,60],[213,60],[217,60],[201,60],[214,60],[218,60],[203,60],[204,60],[216,60],[198,60],[205,60],[206,60],[208,60],[212,60],[223,64],[211,60],[199,60],[236,65],[235,3],[230,64],[232,66],[231,64],[224,64],[225,64],[227,64],[229,64],[233,66],[234,66],[226,66],[228,66],[237,3],[52,3],[100,67],[62,68],[60,69],[58,70],[66,71],[96,72],[54,73],[94,74],[47,75],[50,76],[49,77],[63,78],[101,79],[74,80],[83,81],[53,71],[93,82],[102,83],[88,84],[90,85],[64,81],[68,86],[84,87],[70,88],[75,89],[72,90],[57,71],[76,81],[95,91],[46,3],[51,92],[56,93],[48,3],[69,94],[73,95],[89,96],[71,71],[82,97],[92,98],[91,99],[59,71],[55,100],[80,101],[86,102],[65,103],[98,104],[87,105],[97,3],[67,106],[77,107],[78,108],[79,109],[85,71],[81,110],[61,111],[99,112],[10,3],[12,3],[11,3],[2,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[3,3],[4,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[32,3],[33,3],[34,3],[35,3],[7,3],[40,3],[36,3],[37,3],[38,3],[39,3],[8,3],[44,3],[41,3],[42,3],[43,3],[1,3],[9,3],[45,3],[128,113],[127,114],[125,3],[124,115],[126,115],[129,7],[136,116],[135,117]],"exportedModulesMap":[[103,1],[133,2],[130,3],[134,4],[132,5],[131,5],[105,6],[109,7],[108,7],[112,7],[106,7],[107,7],[113,8],[111,3],[110,7],[114,6],[115,3],[116,6],[117,6],[118,3],[120,3],[119,3],[123,9],[121,3],[104,3],[122,7],[191,10],[192,3],[189,3],[193,3],[194,3],[188,11],[195,3],[137,12],[138,12],[140,13],[141,14],[142,15],[143,16],[144,17],[145,18],[146,19],[147,20],[148,21],[149,22],[150,22],[151,23],[152,24],[153,25],[154,26],[139,3],[186,3],[155,27],[156,28],[157,29],[187,30],[158,31],[159,32],[160,33],[161,34],[162,35],[163,36],[164,37],[165,38],[166,39],[167,40],[168,41],[169,42],[171,43],[170,44],[172,45],[173,46],[174,47],[175,48],[176,49],[177,50],[178,51],[179,52],[180,53],[181,54],[182,55],[183,56],[184,57],[185,58],[196,3],[190,59],[221,60],[222,61],[197,62],[200,62],[219,60],[220,60],[210,63],[209,63],[207,60],[202,60],[215,60],[213,60],[217,60],[201,60],[214,60],[218,60],[203,60],[204,60],[216,60],[198,60],[205,60],[206,60],[208,60],[212,60],[223,64],[211,60],[199,60],[236,65],[235,3],[230,64],[232,66],[231,64],[224,64],[225,64],[227,64],[229,64],[233,66],[234,66],[226,66],[228,66],[237,3],[52,3],[100,67],[62,68],[60,69],[58,70],[66,71],[96,72],[54,73],[94,74],[47,75],[50,76],[49,77],[63,78],[101,79],[74,80],[83,81],[53,71],[93,82],[102,83],[88,84],[90,85],[64,81],[68,86],[84,87],[70,88],[75,89],[72,90],[57,71],[76,81],[95,91],[46,3],[51,92],[56,93],[48,3],[69,94],[73,95],[89,96],[71,71],[82,97],[92,98],[91,99],[59,71],[55,100],[80,101],[86,102],[65,103],[98,104],[87,105],[97,3],[67,106],[77,107],[78,108],[79,109],[85,71],[81,110],[61,111],[99,112],[10,3],[12,3],[11,3],[2,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[3,3],[4,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[32,3],[33,3],[34,3],[35,3],[7,3],[40,3],[36,3],[37,3],[38,3],[39,3],[8,3],[44,3],[41,3],[42,3],[43,3],[1,3],[9,3],[45,3],[128,113],[127,114],[125,3],[124,115],[126,115],[129,7],[136,116],[135,117]],"semanticDiagnosticsPerFile":[103,133,130,134,132,131,105,109,108,112,106,107,113,111,110,114,115,116,117,118,120,119,123,121,104,122,191,192,189,193,194,188,195,137,138,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,139,186,155,156,157,187,158,159,160,161,162,163,164,165,166,167,168,169,171,170,172,173,174,175,176,177,178,179,180,181,182,183,184,185,196,190,221,222,197,200,219,220,210,209,207,202,215,213,217,201,214,218,203,204,216,198,205,206,208,212,223,211,199,236,235,230,232,231,224,225,227,229,233,234,226,228,237,52,100,62,60,58,66,96,54,94,47,50,49,63,101,74,83,53,93,102,88,90,64,68,84,70,75,72,57,76,95,46,51,56,48,69,73,89,71,82,92,91,59,55,80,86,65,98,87,97,67,77,78,79,85,81,61,99,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,40,36,37,38,39,8,44,41,42,43,1,9,45,128,127,125,124,126,129,136,135]},"version":"4.5.5"}
|
package/build/ui.d.ts
CHANGED
|
@@ -296,6 +296,27 @@ export declare const ConsentManagerConfigInput: t.PartialC<{
|
|
|
296
296
|
}>;
|
|
297
297
|
/** Type override */
|
|
298
298
|
export declare type ConsentManagerConfigInput = t.TypeOf<typeof ConsentManagerConfigInput>;
|
|
299
|
+
export declare const TCFConfig: t.TypeC<{
|
|
300
|
+
/** Path to vendor-list.json */
|
|
301
|
+
vendorList: t.StringC;
|
|
302
|
+
/** Custom CSS stylesheet */
|
|
303
|
+
css: t.StringC;
|
|
304
|
+
/** Path to localizations directory */
|
|
305
|
+
messages: t.StringC;
|
|
306
|
+
}>;
|
|
307
|
+
/** Type override */
|
|
308
|
+
export declare type TCFConfig = t.TypeOf<typeof TCFConfig>;
|
|
309
|
+
/** Input for Consent manager UI configuration */
|
|
310
|
+
export declare const TCFConfigInput: t.PartialC<{
|
|
311
|
+
/** Path to vendor-list.json */
|
|
312
|
+
vendorList: t.StringC;
|
|
313
|
+
/** Custom CSS stylesheet */
|
|
314
|
+
css: t.StringC;
|
|
315
|
+
/** Path to localizations directory */
|
|
316
|
+
messages: t.StringC;
|
|
317
|
+
}>;
|
|
318
|
+
/** Type override */
|
|
319
|
+
export declare type TCFConfigInput = t.TypeOf<typeof TCFConfigInput>;
|
|
299
320
|
/**
|
|
300
321
|
* Properties exposed on `self` by the Transcend Smart Quarantine
|
|
301
322
|
*/
|
package/build/ui.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ui.d.ts","sourceRoot":"","sources":["../src/ui.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ui.d.ts","sourceRoot":"","sources":["../src/ui.ts"],"names":[],"mappings":"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"}
|
package/build/ui.js
CHANGED
|
@@ -19,7 +19,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
19
19
|
return result;
|
|
20
20
|
};
|
|
21
21
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
-
exports.DEFAULT_VIEW_STATE_BY_PRIVACY_REGIME = exports.ConsentManagerConfigInput = exports.ConsentManagerConfig = exports.PrivacyRegimeToInitialViewState = exports.PrivacyRegimeToInitialViewStateInput = exports.ConsentManagerBreakpoints = exports.ConsentManagerTheme = void 0;
|
|
22
|
+
exports.DEFAULT_VIEW_STATE_BY_PRIVACY_REGIME = exports.TCFConfigInput = exports.TCFConfig = exports.ConsentManagerConfigInput = exports.ConsentManagerConfig = exports.PrivacyRegimeToInitialViewState = exports.PrivacyRegimeToInitialViewStateInput = exports.ConsentManagerBreakpoints = exports.ConsentManagerTheme = void 0;
|
|
23
23
|
// external
|
|
24
24
|
const t = __importStar(require("io-ts"));
|
|
25
25
|
// main
|
|
@@ -68,6 +68,16 @@ exports.ConsentManagerConfig = t.type({
|
|
|
68
68
|
});
|
|
69
69
|
/** Input for Consent manager UI configuration */
|
|
70
70
|
exports.ConsentManagerConfigInput = t.partial(exports.ConsentManagerConfig.props);
|
|
71
|
+
exports.TCFConfig = t.type({
|
|
72
|
+
/** Path to vendor-list.json */
|
|
73
|
+
vendorList: t.string,
|
|
74
|
+
/** Custom CSS stylesheet */
|
|
75
|
+
css: t.string,
|
|
76
|
+
/** Path to localizations directory */
|
|
77
|
+
messages: t.string,
|
|
78
|
+
});
|
|
79
|
+
/** Input for Consent manager UI configuration */
|
|
80
|
+
exports.TCFConfigInput = t.partial(exports.TCFConfig.props);
|
|
71
81
|
exports.DEFAULT_VIEW_STATE_BY_PRIVACY_REGIME = {
|
|
72
82
|
// EU
|
|
73
83
|
GDPR: enums_1.InitialViewState.QuickOptions,
|
package/build/ui.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ui.js","sourceRoot":"","sources":["../src/ui.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,WAAW;AACX,yCAA2B;AAE3B,OAAO;AACP,yDAA+D;AAG/D,QAAQ;AACR,mCAKiB;AA6CjB;;GAEG;AACU,QAAA,mBAAmB,GAAG,CAAC,CAAC,IAAI,CAAC;IACxC,oBAAoB;IACpB,YAAY,EAAE,CAAC,CAAC,MAAM;IACtB,iBAAiB;IACjB,SAAS,EAAE,CAAC,CAAC,MAAM;CACpB,CAAC,CAAC;AAKH;;;GAGG;AACU,QAAA,yBAAyB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC9C,8CAA8C;IAC9C,MAAM,EAAE,CAAC,CAAC,MAAM;IAChB,+CAA+C;IAC/C,OAAO,EAAE,CAAC,CAAC,MAAM;CAClB,CAAC,CAAC;AAOU,QAAA,oCAAoC,GAAG,CAAC,CAAC,OAAO,CAC3D,IAAA,sBAAS,EAAC,yBAAiB,EAAE,GAAG,EAAE,CAAC,IAAA,qBAAQ,EAAC,wBAAgB,CAAC,CAAC,CAC/D,CAAC;AAOW,QAAA,+BAA+B,GAAG,CAAC,CAAC,MAAM,CACrD,IAAA,qBAAQ,EAAC,yBAAiB,CAAC,EAC3B,IAAA,qBAAQ,EAAC,wBAAgB,CAAC,CAC3B,CAAC;AAOF,uCAAuC;AAC1B,QAAA,oBAAoB,GAAG,CAAC,CAAC,IAAI,CAAC;IACzC,uBAAuB;IACvB,KAAK,EAAE,2BAAmB;IAC1B,sCAAsC;IACtC,WAAW,EAAE,iCAAyB;IACtC,4CAA4C;IAC5C,aAAa,EAAE,CAAC,CAAC,MAAM;IACvB,8CAA8C;IAC9C,eAAe,EAAE,CAAC,CAAC,MAAM;IACzB,4BAA4B;IAC5B,GAAG,EAAE,CAAC,CAAC,MAAM;IACb,sCAAsC;IACtC,QAAQ,EAAE,CAAC,CAAC,MAAM;IAClB,sDAAsD;IACtD,+BAA+B,EAAE,uCAA+B;IAChE,iEAAiE;IACjE,kBAAkB,EAAE,IAAA,qBAAQ,EAAC,0BAAkB,CAAC;CACjD,CAAC,CAAC;AAKH,iDAAiD;AACpC,QAAA,yBAAyB,GAAG,CAAC,CAAC,OAAO,CAAC,4BAAoB,CAAC,KAAK,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"ui.js","sourceRoot":"","sources":["../src/ui.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,WAAW;AACX,yCAA2B;AAE3B,OAAO;AACP,yDAA+D;AAG/D,QAAQ;AACR,mCAKiB;AA6CjB;;GAEG;AACU,QAAA,mBAAmB,GAAG,CAAC,CAAC,IAAI,CAAC;IACxC,oBAAoB;IACpB,YAAY,EAAE,CAAC,CAAC,MAAM;IACtB,iBAAiB;IACjB,SAAS,EAAE,CAAC,CAAC,MAAM;CACpB,CAAC,CAAC;AAKH;;;GAGG;AACU,QAAA,yBAAyB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC9C,8CAA8C;IAC9C,MAAM,EAAE,CAAC,CAAC,MAAM;IAChB,+CAA+C;IAC/C,OAAO,EAAE,CAAC,CAAC,MAAM;CAClB,CAAC,CAAC;AAOU,QAAA,oCAAoC,GAAG,CAAC,CAAC,OAAO,CAC3D,IAAA,sBAAS,EAAC,yBAAiB,EAAE,GAAG,EAAE,CAAC,IAAA,qBAAQ,EAAC,wBAAgB,CAAC,CAAC,CAC/D,CAAC;AAOW,QAAA,+BAA+B,GAAG,CAAC,CAAC,MAAM,CACrD,IAAA,qBAAQ,EAAC,yBAAiB,CAAC,EAC3B,IAAA,qBAAQ,EAAC,wBAAgB,CAAC,CAC3B,CAAC;AAOF,uCAAuC;AAC1B,QAAA,oBAAoB,GAAG,CAAC,CAAC,IAAI,CAAC;IACzC,uBAAuB;IACvB,KAAK,EAAE,2BAAmB;IAC1B,sCAAsC;IACtC,WAAW,EAAE,iCAAyB;IACtC,4CAA4C;IAC5C,aAAa,EAAE,CAAC,CAAC,MAAM;IACvB,8CAA8C;IAC9C,eAAe,EAAE,CAAC,CAAC,MAAM;IACzB,4BAA4B;IAC5B,GAAG,EAAE,CAAC,CAAC,MAAM;IACb,sCAAsC;IACtC,QAAQ,EAAE,CAAC,CAAC,MAAM;IAClB,sDAAsD;IACtD,+BAA+B,EAAE,uCAA+B;IAChE,iEAAiE;IACjE,kBAAkB,EAAE,IAAA,qBAAQ,EAAC,0BAAkB,CAAC;CACjD,CAAC,CAAC;AAKH,iDAAiD;AACpC,QAAA,yBAAyB,GAAG,CAAC,CAAC,OAAO,CAAC,4BAAoB,CAAC,KAAK,CAAC,CAAC;AAOlE,QAAA,SAAS,GAAG,CAAC,CAAC,IAAI,CAAC;IAC9B,+BAA+B;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM;IACpB,4BAA4B;IAC5B,GAAG,EAAE,CAAC,CAAC,MAAM;IACb,sCAAsC;IACtC,QAAQ,EAAE,CAAC,CAAC,MAAM;CACnB,CAAC,CAAC;AAKH,iDAAiD;AACpC,QAAA,cAAc,GAAG,CAAC,CAAC,OAAO,CAAC,iBAAS,CAAC,KAAK,CAAC,CAAC;AAa5C,QAAA,oCAAoC,GAC/C;IACE,KAAK;IACL,IAAI,EAAE,wBAAgB,CAAC,YAAY;IACnC,SAAS;IACT,IAAI,EAAE,wBAAgB,CAAC,YAAY;IACnC,iBAAiB;IACjB,IAAI,EAAE,wBAAgB,CAAC,MAAM;IAC7B,eAAe;IACf,IAAI,EAAE,wBAAgB,CAAC,MAAM;IAC7B,eAAe;IACf,GAAG,EAAE,wBAAgB,CAAC,MAAM;IAC5B,aAAa;IACb,YAAY,EAAE,wBAAgB,CAAC,MAAM;IACrC,QAAQ;IACR,OAAO,EAAE,wBAAgB,CAAC,MAAM;CACjC,CAAC"}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"author": "Transcend Inc.",
|
|
3
3
|
"name": "@transcend-io/airgap.js-types",
|
|
4
4
|
"description": "TypeScript types for airgap.js interoperability with custom consent UIs",
|
|
5
|
-
"version": "8.
|
|
5
|
+
"version": "8.22.0",
|
|
6
6
|
"homepage": "https://github.com/transcend-io/airgap.js-types",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -26,8 +26,7 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@transcend-io/type-utils": "^1.0.5",
|
|
28
28
|
"fp-ts": "^2.11.8",
|
|
29
|
-
"io-ts": "^2.2.16"
|
|
30
|
-
"tslib": "^2.3.1"
|
|
29
|
+
"io-ts": "^2.2.16"
|
|
31
30
|
},
|
|
32
31
|
"devDependencies": {
|
|
33
32
|
"@transcend-io/internationalization": "^1.4.1",
|