@transcend-io/privacy-types 1.1.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/LICENSE +21 -0
- package/README.md +39 -0
- package/build/actions.d.ts +43 -0
- package/build/actions.d.ts.map +1 -0
- package/build/actions.js +36 -0
- package/build/actions.js.map +1 -0
- package/build/index.d.ts +3 -0
- package/build/index.d.ts.map +1 -0
- package/build/index.js +15 -0
- package/build/index.js.map +1 -0
- package/build/objects.d.ts +67 -0
- package/build/objects.d.ts.map +1 -0
- package/build/objects.js +67 -0
- package/build/objects.js.map +1 -0
- package/build/tests/index.test.d.ts +2 -0
- package/build/tests/index.test.d.ts.map +1 -0
- package/build/tests/index.test.js +12 -0
- package/build/tests/index.test.js.map +1 -0
- package/build/tsbuildinfo +1 -0
- package/package.json +50 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021 Transcend
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
|
|
2
|
+
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
|
3
|
+
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
4
|
+
|
|
5
|
+
## Table of Contents
|
|
6
|
+
|
|
7
|
+
- [Overview](#overview)
|
|
8
|
+
- [Typescript Build](#typescript-build)
|
|
9
|
+
- [Lint](#lint)
|
|
10
|
+
|
|
11
|
+
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
|
12
|
+
|
|
13
|
+
## Overview
|
|
14
|
+
|
|
15
|
+
Core enums and types that can be useful when interacting with Transcend's public APIs.
|
|
16
|
+
|
|
17
|
+
## Typescript Build
|
|
18
|
+
|
|
19
|
+
Build this package only:
|
|
20
|
+
|
|
21
|
+
```sh
|
|
22
|
+
yarn run tsc
|
|
23
|
+
yarn run tsc --watch # Watch mode
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Create a fresh build:
|
|
27
|
+
|
|
28
|
+
```sh
|
|
29
|
+
yarn clean && yarn run tsc
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Lint
|
|
33
|
+
|
|
34
|
+
Lint the typescript files in this package:
|
|
35
|
+
|
|
36
|
+
```sh
|
|
37
|
+
yarn lint
|
|
38
|
+
```
|
|
39
|
+
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The type of requests that allow for opt-in/opt-out
|
|
3
|
+
*/
|
|
4
|
+
export declare const RequestActionOpt: {
|
|
5
|
+
/** Opt out of automated decision making */
|
|
6
|
+
AutomatedDecisionMakingOptOut: "AUTOMATED_DECISION_MAKING_OPT_OUT";
|
|
7
|
+
/** Opt out of all communication */
|
|
8
|
+
ContactOptOut: "CONTACT_OPT_OUT";
|
|
9
|
+
/** Opt-out of the sale of personal data */
|
|
10
|
+
SaleOptOut: "SALE_OPT_OUT";
|
|
11
|
+
/** Opt out of tracking */
|
|
12
|
+
TrackingOptOut: "TRACKING_OPT_OUT";
|
|
13
|
+
};
|
|
14
|
+
/** Type override */
|
|
15
|
+
export declare type RequestActionOpt = typeof RequestActionOpt[keyof typeof RequestActionOpt];
|
|
16
|
+
/**
|
|
17
|
+
* The types of requests that Data Subject can make
|
|
18
|
+
*/
|
|
19
|
+
export declare const RequestAction: {
|
|
20
|
+
/** Data Download request */
|
|
21
|
+
Access: "ACCESS";
|
|
22
|
+
/** Erase the profile from the system */
|
|
23
|
+
Erasure: "ERASURE";
|
|
24
|
+
/** Run an account deletion instead of a fully compliant deletion */
|
|
25
|
+
AccountDeletion: "ACCOUNT_DELETION";
|
|
26
|
+
/** Make an update to an inaccurate record */
|
|
27
|
+
Rectification: "RECTIFICATION";
|
|
28
|
+
/** Restrict processing */
|
|
29
|
+
Restriction: "RESTRICTION";
|
|
30
|
+
/** Check for data (after an erasure request) */
|
|
31
|
+
DataCheck: "DATA_CHECK";
|
|
32
|
+
/** Opt out of automated decision making */
|
|
33
|
+
AutomatedDecisionMakingOptOut: "AUTOMATED_DECISION_MAKING_OPT_OUT";
|
|
34
|
+
/** Opt out of all communication */
|
|
35
|
+
ContactOptOut: "CONTACT_OPT_OUT";
|
|
36
|
+
/** Opt-out of the sale of personal data */
|
|
37
|
+
SaleOptOut: "SALE_OPT_OUT";
|
|
38
|
+
/** Opt out of tracking */
|
|
39
|
+
TrackingOptOut: "TRACKING_OPT_OUT";
|
|
40
|
+
};
|
|
41
|
+
/** Type override */
|
|
42
|
+
export declare type RequestAction = typeof RequestAction[keyof typeof RequestAction];
|
|
43
|
+
//# sourceMappingURL=actions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"actions.d.ts","sourceRoot":"","sources":["../src/actions.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,eAAO,MAAM,gBAAgB;IAC3B,2CAA2C;;IAE3C,mCAAmC;;IAEnC,2CAA2C;;IAE3C,0BAA0B;;CAE1B,CAAC;AAEH,oBAAoB;AACpB,oBAAY,gBAAgB,GAC1B,OAAO,gBAAgB,CAAC,MAAM,OAAO,gBAAgB,CAAC,CAAC;AAEzD;;GAEG;AACH,eAAO,MAAM,aAAa;IAExB,4BAA4B;;IAE5B,wCAAwC;;IAExC,oEAAoE;;IAEpE,6CAA6C;;IAE7C,0BAA0B;;IAE1B,gDAAgD;;IA7BhD,2CAA2C;;IAE3C,mCAAmC;;IAEnC,2CAA2C;;IAE3C,0BAA0B;;CAyB1B,CAAC;AAEH,oBAAoB;AACpB,oBAAY,aAAa,GAAG,OAAO,aAAa,CAAC,MAAM,OAAO,aAAa,CAAC,CAAC"}
|
package/build/actions.js
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RequestAction = exports.RequestActionOpt = void 0;
|
|
4
|
+
const type_utils_1 = require("@transcend-io/type-utils");
|
|
5
|
+
/**
|
|
6
|
+
* The type of requests that allow for opt-in/opt-out
|
|
7
|
+
*/
|
|
8
|
+
exports.RequestActionOpt = (0, type_utils_1.makeEnum)({
|
|
9
|
+
/** Opt out of automated decision making */
|
|
10
|
+
AutomatedDecisionMakingOptOut: 'AUTOMATED_DECISION_MAKING_OPT_OUT',
|
|
11
|
+
/** Opt out of all communication */
|
|
12
|
+
ContactOptOut: 'CONTACT_OPT_OUT',
|
|
13
|
+
/** Opt-out of the sale of personal data */
|
|
14
|
+
SaleOptOut: 'SALE_OPT_OUT',
|
|
15
|
+
/** Opt out of tracking */
|
|
16
|
+
TrackingOptOut: 'TRACKING_OPT_OUT',
|
|
17
|
+
});
|
|
18
|
+
/**
|
|
19
|
+
* The types of requests that Data Subject can make
|
|
20
|
+
*/
|
|
21
|
+
exports.RequestAction = (0, type_utils_1.makeEnum)({
|
|
22
|
+
...exports.RequestActionOpt,
|
|
23
|
+
/** Data Download request */
|
|
24
|
+
Access: 'ACCESS',
|
|
25
|
+
/** Erase the profile from the system */
|
|
26
|
+
Erasure: 'ERASURE',
|
|
27
|
+
/** Run an account deletion instead of a fully compliant deletion */
|
|
28
|
+
AccountDeletion: 'ACCOUNT_DELETION',
|
|
29
|
+
/** Make an update to an inaccurate record */
|
|
30
|
+
Rectification: 'RECTIFICATION',
|
|
31
|
+
/** Restrict processing */
|
|
32
|
+
Restriction: 'RESTRICTION',
|
|
33
|
+
/** Check for data (after an erasure request) */
|
|
34
|
+
DataCheck: 'DATA_CHECK',
|
|
35
|
+
});
|
|
36
|
+
//# sourceMappingURL=actions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"actions.js","sourceRoot":"","sources":["../src/actions.ts"],"names":[],"mappings":";;;AAAA,yDAAoD;AAEpD;;GAEG;AACU,QAAA,gBAAgB,GAAG,IAAA,qBAAQ,EAAC;IACvC,2CAA2C;IAC3C,6BAA6B,EAAE,mCAAmC;IAClE,mCAAmC;IACnC,aAAa,EAAE,iBAAiB;IAChC,2CAA2C;IAC3C,UAAU,EAAE,cAAc;IAC1B,0BAA0B;IAC1B,cAAc,EAAE,kBAAkB;CACnC,CAAC,CAAC;AAMH;;GAEG;AACU,QAAA,aAAa,GAAG,IAAA,qBAAQ,EAAC;IACpC,GAAG,wBAAgB;IACnB,4BAA4B;IAC5B,MAAM,EAAE,QAAQ;IAChB,wCAAwC;IACxC,OAAO,EAAE,SAAS;IAClB,oEAAoE;IACpE,eAAe,EAAE,kBAAkB;IACnC,6CAA6C;IAC7C,aAAa,EAAE,eAAe;IAC9B,0BAA0B;IAC1B,WAAW,EAAE,aAAa;IAC1B,gDAAgD;IAChD,SAAS,EAAE,YAAY;CACxB,CAAC,CAAC"}
|
package/build/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC"}
|
package/build/index.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
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 __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
+
};
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
__exportStar(require("./actions"), exports);
|
|
14
|
+
__exportStar(require("./objects"), exports);
|
|
15
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,4CAA0B;AAC1B,4CAA0B"}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
/** The purpose of processing data */
|
|
2
|
+
export declare const ProcessingPurpose: {
|
|
3
|
+
/** Provide a service that the user explicitly requests and that is part of the product's basic service or functionality */
|
|
4
|
+
Essential: "ESSENTIAL";
|
|
5
|
+
/** Provide a service that the user explicitly requests but that is not a necessary part of the product's basic service */
|
|
6
|
+
AdditionalFunctionality: "ADDITIONAL_FUNCTIONALITY";
|
|
7
|
+
/** To show ads that are either targeted to the specific user or not targeted */
|
|
8
|
+
Advertising: "ADVERTISING";
|
|
9
|
+
/** To contact the user to offer products, services, or other promotions */
|
|
10
|
+
Marketing: "MARKETING";
|
|
11
|
+
/** For understanding the product’s audience, improving the product, inform company strategy, or general research */
|
|
12
|
+
Analytics: "ANALYTICS";
|
|
13
|
+
/** For providing user with a personalized experience */
|
|
14
|
+
Personalization: "PERSONALIZATION";
|
|
15
|
+
/** For product operation and security, enforcement of terms of service, fraud prevention, protecting users and property, etc. */
|
|
16
|
+
OperationSecurity: "OPERATION_SECURITY";
|
|
17
|
+
/** For compliance with legal obligations */
|
|
18
|
+
Legal: "LEGAL";
|
|
19
|
+
/** For data that was transferred as part of a change in circumstance (e.g. a merger or acquisition) */
|
|
20
|
+
Transfer: "TRANSFER";
|
|
21
|
+
/** For selling the data to third parties */
|
|
22
|
+
Sale: "SALE";
|
|
23
|
+
/** For personnel training, recruitment, payroll, management, etc. */
|
|
24
|
+
HR: "HR";
|
|
25
|
+
/** Other specific purpose not covered above */
|
|
26
|
+
Other: "OTHER";
|
|
27
|
+
/** The purpose is not explicitly stated or is unclear */
|
|
28
|
+
Unspecified: "UNSPECIFIED";
|
|
29
|
+
};
|
|
30
|
+
/** Type override */
|
|
31
|
+
export declare type ProcessingPurpose = typeof ProcessingPurpose[keyof typeof ProcessingPurpose];
|
|
32
|
+
/** The category of personal data that is processed */
|
|
33
|
+
export declare const DataCategoryType: {
|
|
34
|
+
/** Financial information */
|
|
35
|
+
Financial: "FINANCIAL";
|
|
36
|
+
/** Health information */
|
|
37
|
+
Health: "HEALTH";
|
|
38
|
+
/** Contact information */
|
|
39
|
+
Contact: "CONTACT";
|
|
40
|
+
/** Geo-location information */
|
|
41
|
+
Location: "LOCATION";
|
|
42
|
+
/** Demographic Information */
|
|
43
|
+
Demographic: "DEMOGRAPHIC";
|
|
44
|
+
/** Identifiers that uniquely identify a person */
|
|
45
|
+
Id: "ID";
|
|
46
|
+
/** The user's online activities on the first party website/app or other websites/apps */
|
|
47
|
+
OnlineActivity: "ONLINE_ACTIVITY";
|
|
48
|
+
/** The user’s profile on the first-party website/app and its contents */
|
|
49
|
+
UserProfile: "USER_PROFILE";
|
|
50
|
+
/** User profile and data from a social media website/app or other third party service */
|
|
51
|
+
SocialMedia: "SOCIAL_MEDIA";
|
|
52
|
+
/** Connection information for the current browsing session, e.g. device IDs, MAC addresses, IP addresses, etc. */
|
|
53
|
+
Connection: "CONNECTION";
|
|
54
|
+
/** Cookies and tracking elements */
|
|
55
|
+
Tracking: "TRACKING";
|
|
56
|
+
/** Computer or device information */
|
|
57
|
+
Device: "DEVICE";
|
|
58
|
+
/** Any data that is collected through surveys */
|
|
59
|
+
Survey: "SURVEY";
|
|
60
|
+
/** A specific type of information not covered by the above categories */
|
|
61
|
+
Other: "OTHER";
|
|
62
|
+
/** The type of information is not explicitly stated or unclear */
|
|
63
|
+
Unspecified: "UNSPECIFIED";
|
|
64
|
+
};
|
|
65
|
+
/** Type override */
|
|
66
|
+
export declare type DataCategoryType = typeof DataCategoryType[keyof typeof DataCategoryType];
|
|
67
|
+
//# sourceMappingURL=objects.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"objects.d.ts","sourceRoot":"","sources":["../src/objects.ts"],"names":[],"mappings":"AAEA,qCAAqC;AACrC,eAAO,MAAM,iBAAiB;IAC5B,2HAA2H;;IAE3H,0HAA0H;;IAE1H,gFAAgF;;IAEhF,2EAA2E;;IAE3E,oHAAoH;;IAEpH,wDAAwD;;IAExD,iIAAiI;;IAEjI,4CAA4C;;IAE5C,uGAAuG;;IAEvG,4CAA4C;;IAE5C,qEAAqE;;IAErE,+CAA+C;;IAE/C,yDAAyD;;CAEzD,CAAC;AAEH,oBAAoB;AACpB,oBAAY,iBAAiB,GAC3B,OAAO,iBAAiB,CAAC,MAAM,OAAO,iBAAiB,CAAC,CAAC;AAE3D,sDAAsD;AACtD,eAAO,MAAM,gBAAgB;IAC3B,4BAA4B;;IAE5B,yBAAyB;;IAEzB,0BAA0B;;IAE1B,+BAA+B;;IAE/B,8BAA8B;;IAE9B,kDAAkD;;IAElD,yFAAyF;;IAEzF,yEAAyE;;IAEzE,yFAAyF;;IAEzF,kHAAkH;;IAElH,oCAAoC;;IAEpC,qCAAqC;;IAErC,iDAAiD;;IAEjD,yEAAyE;;IAEzE,kEAAkE;;CAElE,CAAC;AAEH,oBAAoB;AACpB,oBAAY,gBAAgB,GAC1B,OAAO,gBAAgB,CAAC,MAAM,OAAO,gBAAgB,CAAC,CAAC"}
|
package/build/objects.js
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DataCategoryType = exports.ProcessingPurpose = void 0;
|
|
4
|
+
const type_utils_1 = require("@transcend-io/type-utils");
|
|
5
|
+
/** The purpose of processing data */
|
|
6
|
+
exports.ProcessingPurpose = (0, type_utils_1.makeEnum)({
|
|
7
|
+
/** Provide a service that the user explicitly requests and that is part of the product's basic service or functionality */
|
|
8
|
+
Essential: 'ESSENTIAL',
|
|
9
|
+
/** Provide a service that the user explicitly requests but that is not a necessary part of the product's basic service */
|
|
10
|
+
AdditionalFunctionality: 'ADDITIONAL_FUNCTIONALITY',
|
|
11
|
+
/** To show ads that are either targeted to the specific user or not targeted */
|
|
12
|
+
Advertising: 'ADVERTISING',
|
|
13
|
+
/** To contact the user to offer products, services, or other promotions */
|
|
14
|
+
Marketing: 'MARKETING',
|
|
15
|
+
/** For understanding the product’s audience, improving the product, inform company strategy, or general research */
|
|
16
|
+
Analytics: 'ANALYTICS',
|
|
17
|
+
/** For providing user with a personalized experience */
|
|
18
|
+
Personalization: 'PERSONALIZATION',
|
|
19
|
+
/** For product operation and security, enforcement of terms of service, fraud prevention, protecting users and property, etc. */
|
|
20
|
+
OperationSecurity: 'OPERATION_SECURITY',
|
|
21
|
+
/** For compliance with legal obligations */
|
|
22
|
+
Legal: 'LEGAL',
|
|
23
|
+
/** For data that was transferred as part of a change in circumstance (e.g. a merger or acquisition) */
|
|
24
|
+
Transfer: 'TRANSFER',
|
|
25
|
+
/** For selling the data to third parties */
|
|
26
|
+
Sale: 'SALE',
|
|
27
|
+
/** For personnel training, recruitment, payroll, management, etc. */
|
|
28
|
+
HR: 'HR',
|
|
29
|
+
/** Other specific purpose not covered above */
|
|
30
|
+
Other: 'OTHER',
|
|
31
|
+
/** The purpose is not explicitly stated or is unclear */
|
|
32
|
+
Unspecified: 'UNSPECIFIED',
|
|
33
|
+
});
|
|
34
|
+
/** The category of personal data that is processed */
|
|
35
|
+
exports.DataCategoryType = (0, type_utils_1.makeEnum)({
|
|
36
|
+
/** Financial information */
|
|
37
|
+
Financial: 'FINANCIAL',
|
|
38
|
+
/** Health information */
|
|
39
|
+
Health: 'HEALTH',
|
|
40
|
+
/** Contact information */
|
|
41
|
+
Contact: 'CONTACT',
|
|
42
|
+
/** Geo-location information */
|
|
43
|
+
Location: 'LOCATION',
|
|
44
|
+
/** Demographic Information */
|
|
45
|
+
Demographic: 'DEMOGRAPHIC',
|
|
46
|
+
/** Identifiers that uniquely identify a person */
|
|
47
|
+
Id: 'ID',
|
|
48
|
+
/** The user's online activities on the first party website/app or other websites/apps */
|
|
49
|
+
OnlineActivity: 'ONLINE_ACTIVITY',
|
|
50
|
+
/** The user’s profile on the first-party website/app and its contents */
|
|
51
|
+
UserProfile: 'USER_PROFILE',
|
|
52
|
+
/** User profile and data from a social media website/app or other third party service */
|
|
53
|
+
SocialMedia: 'SOCIAL_MEDIA',
|
|
54
|
+
/** Connection information for the current browsing session, e.g. device IDs, MAC addresses, IP addresses, etc. */
|
|
55
|
+
Connection: 'CONNECTION',
|
|
56
|
+
/** Cookies and tracking elements */
|
|
57
|
+
Tracking: 'TRACKING',
|
|
58
|
+
/** Computer or device information */
|
|
59
|
+
Device: 'DEVICE',
|
|
60
|
+
/** Any data that is collected through surveys */
|
|
61
|
+
Survey: 'SURVEY',
|
|
62
|
+
/** A specific type of information not covered by the above categories */
|
|
63
|
+
Other: 'OTHER',
|
|
64
|
+
/** The type of information is not explicitly stated or unclear */
|
|
65
|
+
Unspecified: 'UNSPECIFIED',
|
|
66
|
+
});
|
|
67
|
+
//# sourceMappingURL=objects.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"objects.js","sourceRoot":"","sources":["../src/objects.ts"],"names":[],"mappings":";;;AAAA,yDAAoD;AAEpD,qCAAqC;AACxB,QAAA,iBAAiB,GAAG,IAAA,qBAAQ,EAAC;IACxC,2HAA2H;IAC3H,SAAS,EAAE,WAAW;IACtB,0HAA0H;IAC1H,uBAAuB,EAAE,0BAA0B;IACnD,gFAAgF;IAChF,WAAW,EAAE,aAAa;IAC1B,2EAA2E;IAC3E,SAAS,EAAE,WAAW;IACtB,oHAAoH;IACpH,SAAS,EAAE,WAAW;IACtB,wDAAwD;IACxD,eAAe,EAAE,iBAAiB;IAClC,iIAAiI;IACjI,iBAAiB,EAAE,oBAAoB;IACvC,4CAA4C;IAC5C,KAAK,EAAE,OAAO;IACd,uGAAuG;IACvG,QAAQ,EAAE,UAAU;IACpB,4CAA4C;IAC5C,IAAI,EAAE,MAAM;IACZ,qEAAqE;IACrE,EAAE,EAAE,IAAI;IACR,+CAA+C;IAC/C,KAAK,EAAE,OAAO;IACd,yDAAyD;IACzD,WAAW,EAAE,aAAa;CAC3B,CAAC,CAAC;AAMH,sDAAsD;AACzC,QAAA,gBAAgB,GAAG,IAAA,qBAAQ,EAAC;IACvC,4BAA4B;IAC5B,SAAS,EAAE,WAAW;IACtB,yBAAyB;IACzB,MAAM,EAAE,QAAQ;IAChB,0BAA0B;IAC1B,OAAO,EAAE,SAAS;IAClB,+BAA+B;IAC/B,QAAQ,EAAE,UAAU;IACpB,8BAA8B;IAC9B,WAAW,EAAE,aAAa;IAC1B,kDAAkD;IAClD,EAAE,EAAE,IAAI;IACR,yFAAyF;IACzF,cAAc,EAAE,iBAAiB;IACjC,yEAAyE;IACzE,WAAW,EAAE,cAAc;IAC3B,yFAAyF;IACzF,WAAW,EAAE,cAAc;IAC3B,kHAAkH;IAClH,UAAU,EAAE,YAAY;IACxB,oCAAoC;IACpC,QAAQ,EAAE,UAAU;IACpB,qCAAqC;IACrC,MAAM,EAAE,QAAQ;IAChB,iDAAiD;IACjD,MAAM,EAAE,QAAQ;IAChB,yEAAyE;IACzE,KAAK,EAAE,OAAO;IACd,kEAAkE;IAClE,WAAW,EAAE,aAAa;CAC3B,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.test.d.ts","sourceRoot":"","sources":["../../src/tests/index.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
// external
|
|
4
|
+
const chai_1 = require("chai");
|
|
5
|
+
// global
|
|
6
|
+
const index_1 = require("../index");
|
|
7
|
+
describe('RequestAction contains ACCESS', () => {
|
|
8
|
+
it('should test', () => {
|
|
9
|
+
(0, chai_1.expect)(Object.values(index_1.RequestAction)).contains('ACCESS');
|
|
10
|
+
});
|
|
11
|
+
});
|
|
12
|
+
//# sourceMappingURL=index.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.test.js","sourceRoot":"","sources":["../../src/tests/index.test.ts"],"names":[],"mappings":";;AAAA,WAAW;AACX,+BAA8B;AAE9B,SAAS;AACT,oCAAyC;AAEzC,QAAQ,CAAC,+BAA+B,EAAE,GAAG,EAAE;IAC7C,EAAE,CAAC,aAAa,EAAE,GAAG,EAAE;QACrB,IAAA,aAAM,EAAC,MAAM,CAAC,MAAM,CAAC,qBAAa,CAAC,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;IAC1D,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es5.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2015.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2016.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2017.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2018.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2019.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2020.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2021.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.esnext.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.dom.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2015.core.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2015.collection.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2015.generator.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2015.promise.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2017.object.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2017.string.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2017.intl.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2018.intl.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2018.promise.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2019.array.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2019.object.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2019.string.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2020.promise.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2020.string.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2020.intl.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2021.promise.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2021.string.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip/node_modules/typescript/lib/lib.esnext.intl.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/types.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/apply.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/JoinSemilattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/BoundedJoinSemilattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/MeetSemilattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/BoundedMeetSemilattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/BoundedLattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Lattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/HKT.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Contravariant.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Bounded.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Predicate.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Magma.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Functor.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Apply.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Pointed.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Applicative.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Zero.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Alternative.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Chain.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Extend.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Refinement.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Bifunctor.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Separated.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Filterable.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Monad.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Foldable.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/NaturalTransformation.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/FromEither.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/MonadThrow.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Comonad.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/FoldableWithIndex.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/FunctorWithIndex.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Show.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Traversable.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/TraversableWithIndex.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/ReadonlyNonEmptyArray.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Witherable.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Option.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Compactable.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/FilterableWithIndex.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Unfoldable.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/ReadonlyRecord.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Semigroup.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Endomorphism.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Monoid.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Eq.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Ordering.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Ord.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/DistributiveLattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/BoundedDistributiveLattice.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/HeytingAlgebra.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/BooleanAlgebra.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Semiring.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Ring.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/function.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Alt.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/ChainRec.d.ts","../.yarn/cache/fp-ts-npm-2.11.5-022974db67-68a4884527.zip/node_modules/fp-ts/lib/Either.d.ts","../.yarn/__virtual__/io-ts-virtual-f19c082d2b/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.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/codecTools/decodeCodec.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/codecTools/dictionary.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/codecTools/FixedLengthString.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/codecTools/FixedLengthArray.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/codecTools/partialRecord.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/codecTools/isCodecError.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/codecTools/NonEmptyString.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/codecTools/index.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/enum.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/enums.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/getEntries.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/getKeys.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/getValues.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/groupBy.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/gql.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/invert.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/valuesOf.d.ts","../.yarn/cache/@transcend-io-type-utils-npm-1.0.4-208c8e7303-2e73b11679.zip/node_modules/@transcend-io/type-utils/build/index.d.ts","../src/actions.ts","../src/objects.ts","../src/index.ts","../.yarn/cache/@types-chai-npm-4.2.22-557883092e-dca66a263b.zip/node_modules/@types/chai/index.d.ts","../src/tests/index.test.ts","../.yarn/cache/@types-mocha-npm-9.0.0-cd77a42cf3-73e6edaba0.zip/node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","eb75e89d63b3b72dd9ca8b0cac801cecae5be352307c004adeaa60bc9d6df51f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"e54c8715a4954cfdc66cd69489f2b725c09ebf37492dbd91cff0a1688b1159e8","affectsGlobalScope":true},{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","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":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},"e389ee7c771cf8ad98971d1870b7a61114ce0b5a2108eccdfefae7ad7be420b4","a73e627df516439f25253452148b5638a5f16bb6d277dcef445486f95412e72c","7cacb7d6043be447426a3811ef40e5d81fca99289f991788a29494b3e528b3d5","3d69864968e13d13514d37303bcef6a965c5a3da370976ba4f2c96bbfca6f73a","9ec22bf34167a1e1ee4d2a44f88891bfa3a827d703758e045e46ad27c6f2bb04","1b4bf557e7c1b1400ea1d2021bf4a0aa94398b3949358c7520b38c7c6f3d5111","ce937afee0c311b592a028607381005375d5beba79b82750ee90190f210172f2","3d9abd8024a7cb9890821962ba50208546504ebe48ebac0be774b2c3996bf787","54a098c654bd4a1b420702693a923df4a2e767c82fc4461550ff32b43f965511","2d709defe18dac3e57730e01d6e563c1846427651bd8ef6ab08c8881a3536217","f6b0e59475d7c6c1c225855f46ac3bba062ac2d44d59226de618443ef85a9654","fa03d0db2493b6ee355167e3bfd3f19b4509b65150c9066a1d792506d8573d9d","b5bbca15e6517dcdb1c7107aaa078c149d92136c8d68b9aa25096fa8b22781a2","a77721ec3c859e9c8d2ce6bddc490d58100a45f04b3316c345f437d56c4865e1","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","78db54686963ef99712dd3b4f93182c97182e3d91503b7e9815c22490d39a553","e9ccb6c7e77319b0334d80ff4e0c3f5e14cebd765f62c84aa352343a673d26b6","454ea50cf3c255e2d7d9fccf485772a9414006e0eb0969b99867e4a97d02ddf9","c877c86f7150ec777c4a65a607f107760219199dbf5df9252e18db451fb201fd","5633abad5689d73cbc7dbc0a5657f071e7d74d7c719eb7d40bed84c8b065c5f7","bce2dafbf5c006978705d79a97bc02b3d69ffca1f5485f8ed5668e34fdfce283","45c3ea1a4ad18f5a15a3ccb6fc878c8eacc28ee7e6df70ab44d7accb8dde8acc","c4b821deefba05645c7b4ed17c08a691d9ad49bec79cb3eaa063c2965d344709","66da6541c596adf5757bd7dd75905c3995de2b852577a2ff9dd0367ba97689c7","ecc8a298c316ea0c05b2b47b132a00e5a161c7db80b00c45896f68d71714027d","53830d72bedcb50a122a50ddf4c934be579e76de5e92821c9d4cedca297a9b5a","e4c7507161ddfa6d4962241b05fda540c1dc095163cc622d17f2fce8d95d03ef","c18776b908ca93db4e977b670812955ce96dda262cf2b113e9eceaf7bc9fee11","ae8c14075c604187b8af08af2dec7b0ff40fa7b30195d819e236041c52ca90bd","0fa0f4fde2da84c277baee2a62a2f4e1c28aae411134208f1ea2a7ae2600d6a9","d81aa2e7a65beb57e825203b09b3aa337bbcd4733a58e5ae8322cd6f365a497d","efab59dcda3eb2ab3aab35fff20da6bedbb35d7a8bcbf3847001af82af8d2484","9f10e27d6256caba22c9465637e97320416427bf16525e184ed9b55a75b62f81","ef64385a31cbe6c519751668eddc7fb4c61bc989bfeba688b5446470d7c263fa","1c5c43e1b377b340caf960be4f6f2ee3f1d8202690b52d45b6d65c7f31bc2b3e","2935812f68f0cad10a04cbd0e0dcd976efe5508f397af55b93b8d5b8cc407f95","122d4e87de1b35cec914e89b8ba598ee5433be50e4e9ae869217b7ef1da05624","b92707d0b115b799b9b98902197bd71c8df1182579ba710ace25196dd11437c6","80d13e760090f6b5fee5eb60c290e015efb70ea1b56d89617cc153c664a4c63c","e2b6db433156c6eeff0267f69fed7e136ba8081307f28cf335cf14a8c849c516","9682c86df92833243526a7e3e45a56c5a03d7cf6311f7441607c9b8340773971","dd7e666ac74f15727cc32255aed6918bf46806e84a479a28494f432b1bc36cf8","298ee055b6199b5303b03d8e8e684540390fd32c17a37e204d6a6ffe5ed4190c","d49c2c4c41d698679e54d8731144e9359202d2a4bdc64f8245cfa87a470dc2d0","293cd9c3b9c50ac607dc22ceb4acacac7d7ed83941f7d642768fdc7c7d471866","4249f7f4c4f0fe5eb48576ec6425a477753e4f4f5a9f7afe75b38c7c366b566a","c970788a6064983eeee31f24f374f32e345a52860c7ad750a38a8f874cae22c1","a1ddcf2125b1e71dd93f6f4851a835dbfd4eb7d7e34db49263bd6f5a6087959d","86d4eaf6be3efc9fbb92b919372eb6d84fee39c7487f27adacb83bc73ed7a59d","40b4de816d21273238a97efbc72f850b746fb38af45a653e1d90e704a5fb34d5","352d7401628d76f538b0227967a4b32b40a8f6fe586799c55b358f45ef0dbf35","c78ff79308cfe341567006a4c889707c6ad26567e2c68a646a7a00e9ad03dc23","943a513f830fe1e8176ff0a9b25f844ac44bbd661cd398f14a94a6f932ef21fc","c1ae286b5a6a25fb8cf41cf8500ce18c15829aadf7eb7dc36af7bc168d8a0668",{"version":"0c9d1fd5b43d5e88c277f7f53cffc87778190f2f9a1f57743559421f04fc730b","affectsGlobalScope":true},"d8c9b9c9f63cfd6bead1bea1b613de88b542d7e60007f0a55d2dd9f197f45edf",{"version":"e8bf92aabac2b11e1bf60a0161039cd6f5f0cd9713863ca2289dd7b10eddece8","affectsGlobalScope":true}],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","rootDir":"../src","sourceMap":true,"strict":true,"target":6,"tsBuildInfoFile":"./tsbuildinfo"},"fileIdsList":[[100,103],[45],[104],[105,106,107,108,109,110,111],[45,46,112,113,114,115,116,117,118,119,120,121],[53,56,58,68,81,83,87,89,91,93,100,103],[53,56,61,62,68,81,83,87,89,91,93,101,103],[53,56,58,59,60,68,81,83,87,89,90,91,93,103],[53,56,58,68,81,83,87,88,89,91,93,103],[53,56,68,81,83,87,89,91,93,103],[96],[93],[51,93,94],[47],[48,50],[49],[53,56,59,68,81,83,87,89,91,93,103],[53,56,64,68,81,83,87,89,91,93,103],[53,56,65,68,81,83,87,89,91,93,103],[53,56,58,68,81,83,87,89,91,93,103],[52,93],[53,56,58,59,60,61,64,65,66,67,68,69,70,71,72,73,74,78,79,81,82,83,84,87,88,89,90,91,93,100,101,102],[53,56,68,81,83,87,88,90,91,93,103],[53,54,56,68,81,83,87,88,89,90,93,103],[53,56,58,66,68,81,83,84,87,89,91,93,103],[53,56,68,69,77,81,83,87,89,91,93,103],[53,56,61,68,70,81,83,87,89,90,91,93,103],[53,56,68,71,81,83,87,89,90,91,93,103],[53,56,64,66,68,72,81,83,87,89,91,93,100,103],[95],[47,49],[56,89],[53,56,61,64,68,81,83,87,89,91,93,103],[53,56,68,70,81,83,87,89,91,93,103],[55,87,88,89],[53,56,58,59,60,61,62,63,64,65,66,68,69,70,71,73,74,78,79,81,82,84,87,88,89,90,91,93,100,101,103],[53,54,56,68,81,83,87,88,89,90,91,92,103],[88,90,91],[53,54,68,81,83,87,88,89,90,91,93,103],[53,56,58,59,60,61,64,66,68,70,71,75,76,77,78,79,80,83,87,88,89,91,93,100,101,103],[53,56,57,58,61,66,68,69,71,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,93,103],[83,103],[98],[57,87,93],[53,56,58,67,81,83,87,89,91,93,103],[87],[53,56,58,61,68,71,81,83,87,89,91,93,103],[53,56,61,68,76,77,79,81,83,87,89,91,93,103],[53,56,61,68,69,79,81,83,84,87,89,91,93,103],[53,56,60,68,81,83,87,89,91,93,103],[88,90,97,98,99],[122],[123,124],[125,126]],"referencedMap":[[104,1],[46,2],[108,3],[107,3],[111,3],[105,3],[106,3],[112,4],[109,3],[113,2],[115,2],[116,2],[122,5],[121,3],[101,6],[63,7],[61,8],[59,9],[67,10],[97,11],[55,12],[95,13],[48,14],[51,15],[50,16],[64,17],[102,18],[75,19],[84,20],[54,10],[94,21],[103,22],[89,23],[91,24],[65,20],[69,25],[85,26],[71,27],[76,28],[73,29],[58,10],[77,20],[96,30],[52,31],[57,32],[70,33],[74,34],[90,35],[72,10],[83,36],[93,37],[92,38],[60,10],[56,39],[81,40],[87,41],[66,42],[99,43],[88,44],[68,45],[78,46],[79,47],[80,48],[86,10],[82,49],[62,50],[100,51],[123,52],[125,53],[124,52],[127,54]],"exportedModulesMap":[[104,1],[46,2],[108,3],[107,3],[111,3],[105,3],[106,3],[112,4],[109,3],[113,2],[115,2],[116,2],[122,5],[121,3],[101,6],[63,7],[61,8],[59,9],[67,10],[97,11],[55,12],[95,13],[48,14],[51,15],[50,16],[64,17],[102,18],[75,19],[84,20],[54,10],[94,21],[103,22],[89,23],[91,24],[65,20],[69,25],[85,26],[71,27],[76,28],[73,29],[58,10],[77,20],[96,30],[52,31],[57,32],[70,33],[74,34],[90,35],[72,10],[83,36],[93,37],[92,38],[60,10],[56,39],[81,40],[87,41],[66,42],[99,43],[88,44],[68,45],[78,46],[79,47],[80,48],[86,10],[82,49],[62,50],[100,51],[123,52],[125,53],[124,52],[127,54]],"semanticDiagnosticsPerFile":[104,46,108,107,111,105,106,112,110,109,113,114,115,116,117,119,118,122,120,45,121,126,128,53,101,63,61,59,67,97,55,95,48,51,50,64,102,75,84,54,94,103,89,91,65,69,85,71,76,73,58,77,96,47,52,57,49,70,74,90,72,83,93,92,60,56,81,87,66,99,88,98,68,78,79,80,86,82,62,100,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,41,42,43,1,9,44,123,125,124,127]},"version":"4.4.4"}
|
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"author": "Transcend Inc.",
|
|
3
|
+
"name": "@transcend-io/privacy-types",
|
|
4
|
+
"description": "Core enums and types that can be useful when interacting with Transcend's public APIs.",
|
|
5
|
+
"version": "1.1.0",
|
|
6
|
+
"homepage": "https://github.com/transcend-io/privacy-types",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/transcend-io/privacy-types.git"
|
|
10
|
+
},
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"main": "build/index",
|
|
13
|
+
"files": [
|
|
14
|
+
"build/**/*",
|
|
15
|
+
"package.json"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"update:sdks": "yarn set version from sources && yarn sdks base",
|
|
19
|
+
"update:deps": "yarn upgrade-interactive && yarn update:sdks",
|
|
20
|
+
"build": "yarn pnpify tsc --build",
|
|
21
|
+
"clean": "yarn pnpify tsc --build --clean",
|
|
22
|
+
"lint": "yarn pnpify eslint src --ext .ts",
|
|
23
|
+
"prepublish": "yarn build",
|
|
24
|
+
"test": "yarn pnpify mocha './src/**/*.test.ts'"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@transcend-io/type-utils": "^1.0.4"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@types/chai": "^4.2.22",
|
|
31
|
+
"@types/mocha": "^9.0.0",
|
|
32
|
+
"@typescript-eslint/eslint-plugin": "^5.1.0",
|
|
33
|
+
"@typescript-eslint/parser": "^5.1.0",
|
|
34
|
+
"@yarnpkg/pnpify": "^3.1.0-rc.2",
|
|
35
|
+
"@yarnpkg/sdks": "^2.5.0-rc.2",
|
|
36
|
+
"chai": "^4.3.4",
|
|
37
|
+
"depcheck": "^1.4.2",
|
|
38
|
+
"eslint": "^7.30.0",
|
|
39
|
+
"eslint-config-airbnb-base": "^14.2.1",
|
|
40
|
+
"eslint-import-resolver-typescript": "^2.5.0",
|
|
41
|
+
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
42
|
+
"eslint-plugin-import": "2.25.2",
|
|
43
|
+
"eslint-plugin-jsdoc": "^36.1.1",
|
|
44
|
+
"mocha": "^8.2.1",
|
|
45
|
+
"prettier": "^2.4.1",
|
|
46
|
+
"ts-node": "^10.4.0",
|
|
47
|
+
"typescript": "^4.4.4"
|
|
48
|
+
},
|
|
49
|
+
"packageManager": "yarn@sources"
|
|
50
|
+
}
|