@ketch-sdk/ketch-types 1.6.0 → 1.7.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/dist/index.d.ts +32 -54
- package/dist/index.js +24 -7
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -17,24 +17,14 @@ export type Consent = {
|
|
|
17
17
|
export type Identities = {
|
|
18
18
|
[key: string]: string;
|
|
19
19
|
};
|
|
20
|
-
/**
|
|
21
|
-
* All Tabs
|
|
22
|
-
*
|
|
23
|
-
* @deprecated Future version will become a TypeScript enum
|
|
24
|
-
*/
|
|
25
|
-
export declare const ALL_TABS: readonly ["overviewTab", "rightsTab", "consentsTab"];
|
|
26
|
-
/**
|
|
27
|
-
* TabTuple
|
|
28
|
-
*
|
|
29
|
-
* @deprecated Future version will become a TypeScript enum
|
|
30
|
-
*/
|
|
31
|
-
export type TabTuple = typeof ALL_TABS;
|
|
32
20
|
/**
|
|
33
21
|
* Tab
|
|
34
|
-
*
|
|
35
|
-
* @deprecated Future version will become a TypeScript enum
|
|
36
22
|
*/
|
|
37
|
-
export
|
|
23
|
+
export declare enum Tab {
|
|
24
|
+
Overview = "overviewTab",
|
|
25
|
+
Rights = "rightsTab",
|
|
26
|
+
Consents = "consentsTab"
|
|
27
|
+
}
|
|
38
28
|
/**
|
|
39
29
|
* Determines if the Given value is a Tab
|
|
40
30
|
*
|
|
@@ -185,6 +175,19 @@ export interface StorageProvider {
|
|
|
185
175
|
*/
|
|
186
176
|
removeItem(key: string): Promise<void>;
|
|
187
177
|
}
|
|
178
|
+
/**
|
|
179
|
+
* Storage policy setting
|
|
180
|
+
*/
|
|
181
|
+
export declare enum StorageOriginPolicy {
|
|
182
|
+
/**
|
|
183
|
+
* Storage saved cross-origin.
|
|
184
|
+
*/
|
|
185
|
+
CrossOrigin = "cross-origin",
|
|
186
|
+
/**
|
|
187
|
+
* Storage is same-origin only.
|
|
188
|
+
*/
|
|
189
|
+
SameOrigin = "same-origin,"
|
|
190
|
+
}
|
|
188
191
|
export interface Ketch {
|
|
189
192
|
/**
|
|
190
193
|
* Register a plugin with the given configuration
|
|
@@ -203,15 +206,10 @@ export interface Ketch {
|
|
|
203
206
|
/**
|
|
204
207
|
* Register a storage provider
|
|
205
208
|
*
|
|
209
|
+
* @param policy The storage origin policy
|
|
206
210
|
* @param provider The provider implementation
|
|
207
211
|
*/
|
|
208
|
-
registerStorageProvider(provider: StorageProvider): Promise<void>;
|
|
209
|
-
/**
|
|
210
|
-
* Determines if consent has already been resolved.
|
|
211
|
-
*
|
|
212
|
-
* @deprecated future versions will become asynchronous
|
|
213
|
-
*/
|
|
214
|
-
hasConsent(): boolean;
|
|
212
|
+
registerStorageProvider(policy: StorageOriginPolicy, provider: StorageProvider): Promise<void>;
|
|
215
213
|
/**
|
|
216
214
|
* Returns the Consent
|
|
217
215
|
*/
|
|
@@ -220,36 +218,25 @@ export interface Ketch {
|
|
|
220
218
|
* Sets the consent
|
|
221
219
|
*
|
|
222
220
|
* @param consent
|
|
223
|
-
* @deprecated Future versions will not return the Consent promise
|
|
224
221
|
*/
|
|
225
|
-
setConsent(consent: Consent): Promise<
|
|
226
|
-
/**
|
|
227
|
-
* Set a flag to show the consent experience
|
|
228
|
-
*
|
|
229
|
-
* @deprecated Will be removed in a future version
|
|
230
|
-
*/
|
|
231
|
-
setShowConsentExperience(): Promise<void>;
|
|
222
|
+
setConsent(consent: Consent): Promise<void>;
|
|
232
223
|
/**
|
|
233
224
|
* Show the consent experience
|
|
234
|
-
*
|
|
235
|
-
* @deprecated Future versions will not return Consent in the Promise
|
|
236
225
|
*/
|
|
237
|
-
|
|
226
|
+
showConsent(): Promise<void>;
|
|
238
227
|
/**
|
|
239
228
|
* Show the preference experience
|
|
240
229
|
*
|
|
241
230
|
* @param params The parameters for the experience
|
|
242
|
-
* @deprecated Future versions will not return Consent in the Promise
|
|
243
231
|
*/
|
|
244
|
-
|
|
232
|
+
showPreferences(params?: ShowPreferenceOptions): Promise<void>;
|
|
245
233
|
/**
|
|
246
234
|
* Notify that the experience was closed
|
|
247
235
|
*
|
|
248
236
|
* @param reason Reason the experience was closed
|
|
249
|
-
* @deprecated This method will be moved to an experience interface.
|
|
250
|
-
* versions will not return Consent in the Promise
|
|
237
|
+
* @deprecated This method will be moved to an experience interface.
|
|
251
238
|
*/
|
|
252
|
-
experienceClosed(reason: ExperienceClosedReason): Promise<
|
|
239
|
+
experienceClosed(reason: ExperienceClosedReason): Promise<void>;
|
|
253
240
|
/**
|
|
254
241
|
* Invokes a right
|
|
255
242
|
*
|
|
@@ -285,9 +272,8 @@ export interface Ketch {
|
|
|
285
272
|
*
|
|
286
273
|
* @param eventName The name of the event.
|
|
287
274
|
* @param listener The callback function
|
|
288
|
-
* @deprecated Future versions will become asynchronous
|
|
289
275
|
*/
|
|
290
|
-
addListener(eventName: string | symbol, listener: (...args: any[]) => void):
|
|
276
|
+
addListener(eventName: string | symbol, listener: (...args: any[]) => void): Promise<void>;
|
|
291
277
|
/**
|
|
292
278
|
* Adds the `listener` function to the end of the listeners array for the
|
|
293
279
|
* event named `eventName`. No checks are made to see if the `listener` has
|
|
@@ -303,10 +289,8 @@ export interface Ketch {
|
|
|
303
289
|
*
|
|
304
290
|
* @param eventName The name of the event.
|
|
305
291
|
* @param listener The callback function
|
|
306
|
-
*
|
|
307
|
-
* @deprecated Future versions will become asynchronous
|
|
308
292
|
*/
|
|
309
|
-
on(eventName: string | symbol, listener: (...args: any[]) => void):
|
|
293
|
+
on(eventName: string | symbol, listener: (...args: any[]) => void): Promise<void>;
|
|
310
294
|
/**
|
|
311
295
|
* Adds a **one-time**`listener` function for the event named `eventName`. The
|
|
312
296
|
* next time `eventName` is triggered, this listener is removed and then invoked.
|
|
@@ -317,10 +301,8 @@ export interface Ketch {
|
|
|
317
301
|
*
|
|
318
302
|
* @param eventName The name of the event.
|
|
319
303
|
* @param listener The callback function
|
|
320
|
-
*
|
|
321
|
-
* @deprecated Future versions will become asynchronous
|
|
322
304
|
*/
|
|
323
|
-
once(eventName: string | symbol, listener: (...args: any[]) => void):
|
|
305
|
+
once(eventName: string | symbol, listener: (...args: any[]) => void): Promise<void>;
|
|
324
306
|
/**
|
|
325
307
|
* Removes the specified `listener` from the listener array for the event
|
|
326
308
|
* named `eventName`.
|
|
@@ -348,17 +330,15 @@ export interface Ketch {
|
|
|
348
330
|
*
|
|
349
331
|
* @param eventName The name of the event.
|
|
350
332
|
* @param listener The callback function
|
|
351
|
-
* @deprecated Future versions will become asynchronous
|
|
352
333
|
*/
|
|
353
|
-
removeListener(eventName: string | symbol, listener: (...args: any[]) => void):
|
|
334
|
+
removeListener(eventName: string | symbol, listener: (...args: any[]) => void): Promise<void>;
|
|
354
335
|
/**
|
|
355
336
|
* Alias for `emitter.removeListener()`.
|
|
356
337
|
*
|
|
357
338
|
* @param eventName The name of the event.
|
|
358
339
|
* @param listener The callback function
|
|
359
|
-
* @deprecated Future versions will become asynchronous
|
|
360
340
|
*/
|
|
361
|
-
off(eventName: string | symbol, listener: (...args: any[]) => void):
|
|
341
|
+
off(eventName: string | symbol, listener: (...args: any[]) => void): Promise<void>;
|
|
362
342
|
/**
|
|
363
343
|
* Removes all listeners, or those of the specified `eventName`.
|
|
364
344
|
*
|
|
@@ -367,9 +347,8 @@ export interface Ketch {
|
|
|
367
347
|
* component or module (e.g. sockets or file streams).
|
|
368
348
|
*
|
|
369
349
|
* @param eventName The name of the event.
|
|
370
|
-
* @deprecated Future versions will become asynchronous
|
|
371
350
|
*/
|
|
372
|
-
removeAllListeners(eventName?: string | symbol):
|
|
351
|
+
removeAllListeners(eventName?: string | symbol): Promise<void>;
|
|
373
352
|
/**
|
|
374
353
|
* Synchronously calls each of the listeners registered for the event named
|
|
375
354
|
* `eventName`, in the order they were registered, passing the supplied arguments
|
|
@@ -379,9 +358,8 @@ export interface Ketch {
|
|
|
379
358
|
*
|
|
380
359
|
* @param eventName The name of the event.
|
|
381
360
|
* @param args The arguments for the event.
|
|
382
|
-
* @deprecated Future versions will become asynchronous
|
|
383
361
|
*/
|
|
384
|
-
emit(eventName: string | symbol, ...args: any[]):
|
|
362
|
+
emit(eventName: string | symbol, ...args: any[]): Promise<void>;
|
|
385
363
|
}
|
|
386
364
|
/**
|
|
387
365
|
* ShowPreferenceOptions
|
package/dist/index.js
CHANGED
|
@@ -1,21 +1,38 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ModalPosition = exports.BannerPosition = exports.SwitchTextRenderLogic = exports.IdentityFormat = exports.IdentityType = exports.CookieCategory = exports.CookieProvenance = exports.CookieDuration = exports.MigrationOption = exports.ExperiencePrimaryButtonAction = exports.ExperienceButtonDestination = exports.ExperienceDefault = exports.ExperienceClosedReason = exports.ConsentExperienceType = exports.ExperienceType = exports.isTab = exports.
|
|
3
|
+
exports.ModalPosition = exports.BannerPosition = exports.SwitchTextRenderLogic = exports.IdentityFormat = exports.IdentityType = exports.CookieCategory = exports.CookieProvenance = exports.CookieDuration = exports.MigrationOption = exports.ExperiencePrimaryButtonAction = exports.ExperienceButtonDestination = exports.ExperienceDefault = exports.ExperienceClosedReason = exports.ConsentExperienceType = exports.ExperienceType = exports.StorageOriginPolicy = exports.isTab = exports.Tab = void 0;
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* @deprecated Future version will become a TypeScript enum
|
|
5
|
+
* Tab
|
|
8
6
|
*/
|
|
9
|
-
|
|
7
|
+
var Tab;
|
|
8
|
+
(function (Tab) {
|
|
9
|
+
Tab["Overview"] = "overviewTab";
|
|
10
|
+
Tab["Rights"] = "rightsTab";
|
|
11
|
+
Tab["Consents"] = "consentsTab";
|
|
12
|
+
})(Tab = exports.Tab || (exports.Tab = {}));
|
|
10
13
|
/**
|
|
11
14
|
* Determines if the Given value is a Tab
|
|
12
15
|
*
|
|
13
16
|
* @param value
|
|
14
17
|
*/
|
|
15
18
|
function isTab(value) {
|
|
16
|
-
return
|
|
19
|
+
return value in Tab;
|
|
17
20
|
}
|
|
18
21
|
exports.isTab = isTab;
|
|
22
|
+
/**
|
|
23
|
+
* Storage policy setting
|
|
24
|
+
*/
|
|
25
|
+
var StorageOriginPolicy;
|
|
26
|
+
(function (StorageOriginPolicy) {
|
|
27
|
+
/**
|
|
28
|
+
* Storage saved cross-origin.
|
|
29
|
+
*/
|
|
30
|
+
StorageOriginPolicy["CrossOrigin"] = "cross-origin";
|
|
31
|
+
/**
|
|
32
|
+
* Storage is same-origin only.
|
|
33
|
+
*/
|
|
34
|
+
StorageOriginPolicy["SameOrigin"] = "same-origin,";
|
|
35
|
+
})(StorageOriginPolicy = exports.StorageOriginPolicy || (exports.StorageOriginPolicy = {}));
|
|
19
36
|
/**
|
|
20
37
|
* ExperienceType is the type of experience that will be shown
|
|
21
38
|
*
|
|
@@ -207,4 +224,4 @@ var ModalPosition;
|
|
|
207
224
|
ModalPosition[ModalPosition["LEFT_FULL_HEIGHT"] = 2] = "LEFT_FULL_HEIGHT";
|
|
208
225
|
ModalPosition[ModalPosition["RIGHT_FULL_HEIGHT"] = 3] = "RIGHT_FULL_HEIGHT";
|
|
209
226
|
})(ModalPosition = exports.ModalPosition || (exports.ModalPosition = {}));
|
|
210
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
227
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBa0JBOztHQUVHO0FBQ0gsSUFBWSxHQUlYO0FBSkQsV0FBWSxHQUFHO0lBQ2IsK0JBQXdCLENBQUE7SUFDeEIsMkJBQW9CLENBQUE7SUFDcEIsK0JBQXdCLENBQUE7QUFDMUIsQ0FBQyxFQUpXLEdBQUcsR0FBSCxXQUFHLEtBQUgsV0FBRyxRQUlkO0FBRUQ7Ozs7R0FJRztBQUNILFNBQWdCLEtBQUssQ0FBQyxLQUFhO0lBQ2pDLE9BQU8sS0FBSyxJQUFJLEdBQUcsQ0FBQTtBQUNyQixDQUFDO0FBRkQsc0JBRUM7QUF5S0Q7O0dBRUc7QUFDSCxJQUFZLG1CQVVYO0FBVkQsV0FBWSxtQkFBbUI7SUFDN0I7O09BRUc7SUFDSCxtREFBNEIsQ0FBQTtJQUU1Qjs7T0FFRztJQUNILGtEQUEyQixDQUFBO0FBQzdCLENBQUMsRUFWVyxtQkFBbUIsR0FBbkIsMkJBQW1CLEtBQW5CLDJCQUFtQixRQVU5QjtBQXVPRDs7OztHQUlHO0FBQ0gsSUFBWSxjQUdYO0FBSEQsV0FBWSxjQUFjO0lBQ3hCLGlEQUErQixDQUFBO0lBQy9CLHVEQUFxQyxDQUFBO0FBQ3ZDLENBQUMsRUFIVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQUd6QjtBQUVEOzs7O0dBSUc7QUFDSCxJQUFZLHFCQUlYO0FBSkQsV0FBWSxxQkFBcUI7SUFDL0IsOERBQXFDLENBQUE7SUFDckMsNERBQW1DLENBQUE7SUFDbkMsd0RBQStCLENBQUE7QUFDakMsQ0FBQyxFQUpXLHFCQUFxQixHQUFyQiw2QkFBcUIsS0FBckIsNkJBQXFCLFFBSWhDO0FBbUJEOzs7Ozs7Ozs7R0FTRztBQUNILElBQVksc0JBS1g7QUFMRCxXQUFZLHNCQUFzQjtJQUNoQyxvREFBMEIsQ0FBQTtJQUMxQixzREFBNEIsQ0FBQTtJQUM1Qix5Q0FBZSxDQUFBO0lBQ2YsdURBQTZCLENBQUE7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
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name": "@ketch-sdk/ketch-types", "version": "1.
|
|
1
|
+
{"name": "@ketch-sdk/ketch-types", "version": "1.7.0", "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": {"@types/events": "^3.0.0", "@types/jest": "^29.4.0", "@typescript-eslint/eslint-plugin": "^5.50.0", "@typescript-eslint/parser": "^5.50.0", "eslint": "^8.33.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.4.1", "jest-environment-jsdom": "^29.4.1", "jest-junit": "^15.0.0", "prettier": "^2.8.3", "ts-jest": "^29.0.5", "typedoc": "^0.23.24", "typescript": "^4.9.5"}, "files": ["./dist"]}
|