@ketch-sdk/ketch-types 1.4.4 → 1.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +33 -10
- package/dist/index.js +31 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
1
2
|
/**
|
|
2
3
|
* Callback
|
|
3
4
|
*/
|
|
5
|
+
import { EventEmitter } from 'events';
|
|
4
6
|
export declare type Callback = (arg0: any) => void;
|
|
5
7
|
/**
|
|
6
8
|
* Status
|
|
@@ -92,10 +94,7 @@ export interface StorageProvider {
|
|
|
92
94
|
*/
|
|
93
95
|
removeItem(key: string): Promise<void>;
|
|
94
96
|
}
|
|
95
|
-
|
|
96
|
-
* Ketch host
|
|
97
|
-
*/
|
|
98
|
-
export interface Ketch {
|
|
97
|
+
export interface Ketch extends EventEmitter {
|
|
99
98
|
getConfig(): Promise<Configuration>;
|
|
100
99
|
/**
|
|
101
100
|
* Register a plugin with the given configuration
|
|
@@ -190,12 +189,6 @@ export interface Ketch {
|
|
|
190
189
|
* @param callback
|
|
191
190
|
*/
|
|
192
191
|
onRegionInfo(callback: Callback): Promise<void>;
|
|
193
|
-
emit(eventName: string | symbol, ...args: any[]): boolean;
|
|
194
|
-
addListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
|
|
195
|
-
removeListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
|
|
196
|
-
on(eventName: string | symbol, listener: (...args: any[]) => void): this;
|
|
197
|
-
once(eventName: string | symbol, listener: (...args: any[]) => void): this;
|
|
198
|
-
off(eventName: string | symbol, listener: (...args: any[]) => void): this;
|
|
199
192
|
}
|
|
200
193
|
/**
|
|
201
194
|
* ShowPreferenceOptions
|
|
@@ -221,6 +214,8 @@ export type ShowPreferenceOptions = {
|
|
|
221
214
|
};
|
|
222
215
|
/**
|
|
223
216
|
* ExperienceType is the type of experience that will be shown
|
|
217
|
+
*
|
|
218
|
+
* @enum
|
|
224
219
|
*/
|
|
225
220
|
export declare enum ExperienceType {
|
|
226
221
|
Consent = "experiences.consent",
|
|
@@ -228,6 +223,8 @@ export declare enum ExperienceType {
|
|
|
228
223
|
}
|
|
229
224
|
/**
|
|
230
225
|
* ConsentExperienceType is the type of consent experience that will be shown
|
|
226
|
+
*
|
|
227
|
+
* @enum
|
|
231
228
|
*/
|
|
232
229
|
export declare enum ConsentExperienceType {
|
|
233
230
|
Banner = "experiences.consent.banner",
|
|
@@ -262,6 +259,8 @@ export interface AppDiv {
|
|
|
262
259
|
* setConsent = consent was accepted/set
|
|
263
260
|
* invokeRight = the right was invoked
|
|
264
261
|
* close = the close/exit button was clicked
|
|
262
|
+
*
|
|
263
|
+
* @enum
|
|
265
264
|
*/
|
|
266
265
|
export declare enum ExperienceClosedReason {
|
|
267
266
|
SET_CONSENT = "setConsent",
|
|
@@ -271,6 +270,8 @@ export declare enum ExperienceClosedReason {
|
|
|
271
270
|
}
|
|
272
271
|
/**
|
|
273
272
|
* ExperienceDefault
|
|
273
|
+
*
|
|
274
|
+
* @enum
|
|
274
275
|
*/
|
|
275
276
|
export declare enum ExperienceDefault {
|
|
276
277
|
BANNER = 1,
|
|
@@ -278,6 +279,8 @@ export declare enum ExperienceDefault {
|
|
|
278
279
|
}
|
|
279
280
|
/**
|
|
280
281
|
* ExperienceButtonDestination
|
|
282
|
+
*
|
|
283
|
+
* @enum
|
|
281
284
|
*/
|
|
282
285
|
export declare enum ExperienceButtonDestination {
|
|
283
286
|
GOTO_MODAL = 1,
|
|
@@ -286,6 +289,8 @@ export declare enum ExperienceButtonDestination {
|
|
|
286
289
|
}
|
|
287
290
|
/**
|
|
288
291
|
* ExperiencePrimaryButtonAction
|
|
292
|
+
*
|
|
293
|
+
* @enum
|
|
289
294
|
*/
|
|
290
295
|
export declare enum ExperiencePrimaryButtonAction {
|
|
291
296
|
SAVE_CURRENT_STATE = 1,
|
|
@@ -293,6 +298,8 @@ export declare enum ExperiencePrimaryButtonAction {
|
|
|
293
298
|
}
|
|
294
299
|
/**
|
|
295
300
|
* MigrationOption
|
|
301
|
+
*
|
|
302
|
+
* @enum
|
|
296
303
|
*/
|
|
297
304
|
export declare enum MigrationOption {
|
|
298
305
|
MIGRATE_DEFAULT = 0,
|
|
@@ -303,6 +310,8 @@ export declare enum MigrationOption {
|
|
|
303
310
|
}
|
|
304
311
|
/**
|
|
305
312
|
* CookieDuration
|
|
313
|
+
*
|
|
314
|
+
* @enum
|
|
306
315
|
*/
|
|
307
316
|
export declare enum CookieDuration {
|
|
308
317
|
SESSION = 1,
|
|
@@ -310,6 +319,8 @@ export declare enum CookieDuration {
|
|
|
310
319
|
}
|
|
311
320
|
/**
|
|
312
321
|
* CookieProvenance
|
|
322
|
+
*
|
|
323
|
+
* @enum
|
|
313
324
|
*/
|
|
314
325
|
export declare enum CookieProvenance {
|
|
315
326
|
FIRST_PARTY = 1,
|
|
@@ -317,6 +328,8 @@ export declare enum CookieProvenance {
|
|
|
317
328
|
}
|
|
318
329
|
/**
|
|
319
330
|
* CookieCategory
|
|
331
|
+
*
|
|
332
|
+
* @enum
|
|
320
333
|
*/
|
|
321
334
|
export declare enum CookieCategory {
|
|
322
335
|
STRICTLY_NECESSARY = 1,
|
|
@@ -641,6 +654,8 @@ export interface CanonicalPurpose {
|
|
|
641
654
|
}
|
|
642
655
|
/**
|
|
643
656
|
* IdentityLocation is the location on the page from which to retrieve identity information
|
|
657
|
+
*
|
|
658
|
+
* @enum
|
|
644
659
|
*/
|
|
645
660
|
export declare enum IdentityType {
|
|
646
661
|
IDENTITY_TYPE_UNDEFINED = "",
|
|
@@ -654,6 +669,8 @@ export declare enum IdentityType {
|
|
|
654
669
|
}
|
|
655
670
|
/**
|
|
656
671
|
* IdentityFormat is the encoding of the string identity value
|
|
672
|
+
*
|
|
673
|
+
* @enum
|
|
657
674
|
*/
|
|
658
675
|
export declare enum IdentityFormat {
|
|
659
676
|
IDENTITY_FORMAT_UNDEFINED = "",
|
|
@@ -699,6 +716,8 @@ export interface PolicyDocument {
|
|
|
699
716
|
}
|
|
700
717
|
/**
|
|
701
718
|
* SwitchTextRenderLogic
|
|
719
|
+
*
|
|
720
|
+
* @enum
|
|
702
721
|
*/
|
|
703
722
|
export declare enum SwitchTextRenderLogic {
|
|
704
723
|
/**
|
|
@@ -929,6 +948,8 @@ export interface Experience {
|
|
|
929
948
|
}
|
|
930
949
|
/**
|
|
931
950
|
* BannerPosition
|
|
951
|
+
*
|
|
952
|
+
* @enum
|
|
932
953
|
*/
|
|
933
954
|
export declare enum BannerPosition {
|
|
934
955
|
BOTTOM = 1,
|
|
@@ -938,6 +959,8 @@ export declare enum BannerPosition {
|
|
|
938
959
|
}
|
|
939
960
|
/**
|
|
940
961
|
* ModalPosition
|
|
962
|
+
*
|
|
963
|
+
* @enum
|
|
941
964
|
*/
|
|
942
965
|
export declare enum ModalPosition {
|
|
943
966
|
CENTER = 1,
|
package/dist/index.js
CHANGED
|
@@ -16,6 +16,8 @@ function isTab(value) {
|
|
|
16
16
|
exports.isTab = isTab;
|
|
17
17
|
/**
|
|
18
18
|
* ExperienceType is the type of experience that will be shown
|
|
19
|
+
*
|
|
20
|
+
* @enum
|
|
19
21
|
*/
|
|
20
22
|
var ExperienceType;
|
|
21
23
|
(function (ExperienceType) {
|
|
@@ -24,6 +26,8 @@ var ExperienceType;
|
|
|
24
26
|
})(ExperienceType = exports.ExperienceType || (exports.ExperienceType = {}));
|
|
25
27
|
/**
|
|
26
28
|
* ConsentExperienceType is the type of consent experience that will be shown
|
|
29
|
+
*
|
|
30
|
+
* @enum
|
|
27
31
|
*/
|
|
28
32
|
var ConsentExperienceType;
|
|
29
33
|
(function (ConsentExperienceType) {
|
|
@@ -37,6 +41,8 @@ var ConsentExperienceType;
|
|
|
37
41
|
* setConsent = consent was accepted/set
|
|
38
42
|
* invokeRight = the right was invoked
|
|
39
43
|
* close = the close/exit button was clicked
|
|
44
|
+
*
|
|
45
|
+
* @enum
|
|
40
46
|
*/
|
|
41
47
|
var ExperienceClosedReason;
|
|
42
48
|
(function (ExperienceClosedReason) {
|
|
@@ -47,6 +53,8 @@ var ExperienceClosedReason;
|
|
|
47
53
|
})(ExperienceClosedReason = exports.ExperienceClosedReason || (exports.ExperienceClosedReason = {}));
|
|
48
54
|
/**
|
|
49
55
|
* ExperienceDefault
|
|
56
|
+
*
|
|
57
|
+
* @enum
|
|
50
58
|
*/
|
|
51
59
|
var ExperienceDefault;
|
|
52
60
|
(function (ExperienceDefault) {
|
|
@@ -55,6 +63,8 @@ var ExperienceDefault;
|
|
|
55
63
|
})(ExperienceDefault = exports.ExperienceDefault || (exports.ExperienceDefault = {}));
|
|
56
64
|
/**
|
|
57
65
|
* ExperienceButtonDestination
|
|
66
|
+
*
|
|
67
|
+
* @enum
|
|
58
68
|
*/
|
|
59
69
|
var ExperienceButtonDestination;
|
|
60
70
|
(function (ExperienceButtonDestination) {
|
|
@@ -64,6 +74,8 @@ var ExperienceButtonDestination;
|
|
|
64
74
|
})(ExperienceButtonDestination = exports.ExperienceButtonDestination || (exports.ExperienceButtonDestination = {}));
|
|
65
75
|
/**
|
|
66
76
|
* ExperiencePrimaryButtonAction
|
|
77
|
+
*
|
|
78
|
+
* @enum
|
|
67
79
|
*/
|
|
68
80
|
var ExperiencePrimaryButtonAction;
|
|
69
81
|
(function (ExperiencePrimaryButtonAction) {
|
|
@@ -72,6 +84,8 @@ var ExperiencePrimaryButtonAction;
|
|
|
72
84
|
})(ExperiencePrimaryButtonAction = exports.ExperiencePrimaryButtonAction || (exports.ExperiencePrimaryButtonAction = {}));
|
|
73
85
|
/**
|
|
74
86
|
* MigrationOption
|
|
87
|
+
*
|
|
88
|
+
* @enum
|
|
75
89
|
*/
|
|
76
90
|
var MigrationOption;
|
|
77
91
|
(function (MigrationOption) {
|
|
@@ -83,6 +97,8 @@ var MigrationOption;
|
|
|
83
97
|
})(MigrationOption = exports.MigrationOption || (exports.MigrationOption = {}));
|
|
84
98
|
/**
|
|
85
99
|
* CookieDuration
|
|
100
|
+
*
|
|
101
|
+
* @enum
|
|
86
102
|
*/
|
|
87
103
|
var CookieDuration;
|
|
88
104
|
(function (CookieDuration) {
|
|
@@ -91,6 +107,8 @@ var CookieDuration;
|
|
|
91
107
|
})(CookieDuration = exports.CookieDuration || (exports.CookieDuration = {}));
|
|
92
108
|
/**
|
|
93
109
|
* CookieProvenance
|
|
110
|
+
*
|
|
111
|
+
* @enum
|
|
94
112
|
*/
|
|
95
113
|
var CookieProvenance;
|
|
96
114
|
(function (CookieProvenance) {
|
|
@@ -99,6 +117,8 @@ var CookieProvenance;
|
|
|
99
117
|
})(CookieProvenance = exports.CookieProvenance || (exports.CookieProvenance = {}));
|
|
100
118
|
/**
|
|
101
119
|
* CookieCategory
|
|
120
|
+
*
|
|
121
|
+
* @enum
|
|
102
122
|
*/
|
|
103
123
|
var CookieCategory;
|
|
104
124
|
(function (CookieCategory) {
|
|
@@ -109,6 +129,8 @@ var CookieCategory;
|
|
|
109
129
|
})(CookieCategory = exports.CookieCategory || (exports.CookieCategory = {}));
|
|
110
130
|
/**
|
|
111
131
|
* IdentityLocation is the location on the page from which to retrieve identity information
|
|
132
|
+
*
|
|
133
|
+
* @enum
|
|
112
134
|
*/
|
|
113
135
|
var IdentityType;
|
|
114
136
|
(function (IdentityType) {
|
|
@@ -123,6 +145,8 @@ var IdentityType;
|
|
|
123
145
|
})(IdentityType = exports.IdentityType || (exports.IdentityType = {}));
|
|
124
146
|
/**
|
|
125
147
|
* IdentityFormat is the encoding of the string identity value
|
|
148
|
+
*
|
|
149
|
+
* @enum
|
|
126
150
|
*/
|
|
127
151
|
var IdentityFormat;
|
|
128
152
|
(function (IdentityFormat) {
|
|
@@ -135,6 +159,8 @@ var IdentityFormat;
|
|
|
135
159
|
})(IdentityFormat = exports.IdentityFormat || (exports.IdentityFormat = {}));
|
|
136
160
|
/**
|
|
137
161
|
* SwitchTextRenderLogic
|
|
162
|
+
*
|
|
163
|
+
* @enum
|
|
138
164
|
*/
|
|
139
165
|
var SwitchTextRenderLogic;
|
|
140
166
|
(function (SwitchTextRenderLogic) {
|
|
@@ -157,6 +183,8 @@ var SwitchTextRenderLogic;
|
|
|
157
183
|
})(SwitchTextRenderLogic = exports.SwitchTextRenderLogic || (exports.SwitchTextRenderLogic = {}));
|
|
158
184
|
/**
|
|
159
185
|
* BannerPosition
|
|
186
|
+
*
|
|
187
|
+
* @enum
|
|
160
188
|
*/
|
|
161
189
|
var BannerPosition;
|
|
162
190
|
(function (BannerPosition) {
|
|
@@ -167,6 +195,8 @@ var BannerPosition;
|
|
|
167
195
|
})(BannerPosition = exports.BannerPosition || (exports.BannerPosition = {}));
|
|
168
196
|
/**
|
|
169
197
|
* ModalPosition
|
|
198
|
+
*
|
|
199
|
+
* @enum
|
|
170
200
|
*/
|
|
171
201
|
var ModalPosition;
|
|
172
202
|
(function (ModalPosition) {
|
|
@@ -174,4 +204,4 @@ var ModalPosition;
|
|
|
174
204
|
ModalPosition[ModalPosition["LEFT_FULL_HEIGHT"] = 2] = "LEFT_FULL_HEIGHT";
|
|
175
205
|
ModalPosition[ModalPosition["RIGHT_FULL_HEIGHT"] = 3] = "RIGHT_FULL_HEIGHT";
|
|
176
206
|
})(ModalPosition = exports.ModalPosition || (exports.ModalPosition = {}));
|
|
177
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
207
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBeUJBOztHQUVHO0FBQ1UsUUFBQSxRQUFRLEdBQUcsQ0FBQyxhQUFhLEVBQUUsV0FBVyxFQUFFLGFBQWEsQ0FBVSxDQUFBO0FBWTVFOzs7O0dBSUc7QUFDSCxTQUFnQixLQUFLLENBQUMsS0FBYTtJQUNqQyxPQUFPLGdCQUFRLENBQUMsUUFBUSxDQUFDLEtBQVksQ0FBQyxDQUFBO0FBQ3hDLENBQUM7QUFGRCxzQkFFQztBQXVORDs7OztHQUlHO0FBQ0gsSUFBWSxjQUdYO0FBSEQsV0FBWSxjQUFjO0lBQ3hCLGlEQUErQixDQUFBO0lBQy9CLHVEQUFxQyxDQUFBO0FBQ3ZDLENBQUMsRUFIVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQUd6QjtBQUVEOzs7O0dBSUc7QUFDSCxJQUFZLHFCQUlYO0FBSkQsV0FBWSxxQkFBcUI7SUFDL0IsOERBQXFDLENBQUE7SUFDckMsNERBQW1DLENBQUE7SUFDbkMsd0RBQStCLENBQUE7QUFDakMsQ0FBQyxFQUpXLHFCQUFxQixHQUFyQiw2QkFBcUIsS0FBckIsNkJBQXFCLFFBSWhDO0FBMkJEOzs7Ozs7OztHQVFHO0FBQ0gsSUFBWSxzQkFLWDtBQUxELFdBQVksc0JBQXNCO0lBQ2hDLG9EQUEwQixDQUFBO0lBQzFCLHNEQUE0QixDQUFBO0lBQzVCLHlDQUFlLENBQUE7SUFDZix1REFBNkIsQ0FBQTtBQUMvQixDQUFDLEVBTFcsc0JBQXNCLEdBQXRCLDhCQUFzQixLQUF0Qiw4QkFBc0IsUUFLakM7QUFFRDs7OztHQUlHO0FBQ0gsSUFBWSxpQkFHWDtBQUhELFdBQVksaUJBQWlCO0lBQzNCLDZEQUFVLENBQUE7SUFDViwyREFBUyxDQUFBO0FBQ1gsQ0FBQyxFQUhXLGlCQUFpQixHQUFqQix5QkFBaUIsS0FBakIseUJBQWlCLFFBRzVCO0FBRUQ7Ozs7R0FJRztBQUNILElBQVks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
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name": "@ketch-sdk/ketch-types", "version": "1.4.
|
|
1
|
+
{"name": "@ketch-sdk/ketch-types", "version": "1.4.5", "description": "Ketch Types", "main": "./dist/index.js", "types": "./dist/index.d.ts", "type": "commonjs", "scripts": {"all": "npm run lint && npm run format-check && npm run test && npm run build && npm run docs", "build": "tsc -p .", "lint": "eslint src/**/*.ts", "test": "jest --runInBand --passWithNoTests", "format": "prettier --write \"**/*.{ts,tsx,yml,yaml}\"", "format-check": "prettier --check '**/*.ts'", "docs": "typedoc --githubPages true --excludeInternal src/index.ts"}, "repository": {"type": "git", "url": "git+https://github.com/ketch-sdk/ketch-types.git"}, "author": "Ketch Kloud, Inc. (https://www.ketch.com/)", "license": "MIT", "homepage": "https://github.com/ketch-sdk/ketch-types", "bugs": {"url": "https://github.com/ketch-sdk/ketch-types/issues"}, "devDependencies": {"@jest/globals": "^29.3.1", "@types/events": "^3.0.0", "@types/jest": "^29.2.6", "@typescript-eslint/eslint-plugin": "^5.49.0", "@typescript-eslint/parser": "^5.49.0", "eslint": "^8.32.0", "eslint-config-prettier": "^8.6.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-jest": "^27.2.1", "eslint-plugin-prettier": "^4.2.1", "jest": "^29.3.1", "jest-environment-jsdom": "^29.3.1", "jest-junit": "^15.0.0", "prettier": "^2.8.3", "ts-jest": "^29.0.5", "typedoc": "^0.23.24", "typescript": "^4.9.4"}, "dependencies": {"events": "^3.3.0"}, "files": ["./dist"]}
|