@wildix/xbees-connect 1.3.2 → 1.3.3
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-cjs/package.json +3 -3
- package/dist-cjs/src/Client.js +5 -2
- package/dist-cjs/src/enums/index.js +2 -1
- package/dist-es/package.json +3 -3
- package/dist-es/src/Client.js +5 -2
- package/dist-es/src/enums/index.js +2 -1
- package/dist-types/src/Client.d.ts +2 -1
- package/dist-types/src/enums/index.d.ts +2 -1
- package/dist-types/types/Client.d.ts +6 -2
- package/dist-types/types/Event.d.ts +6 -3
- package/dist-types/types/Payload.d.ts +8 -1
- package/dist-types/types/index.d.ts +1 -1
- package/package.json +4 -5
- /package/dist-cjs/types/{conversation.js → Conversation.js} +0 -0
- /package/dist-es/types/{conversation.js → Conversation.js} +0 -0
- /package/dist-types/types/{conversation.d.ts → Conversation.d.ts} +0 -0
package/dist-cjs/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/xbees-connect",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.3",
|
|
4
4
|
"description": "This library provides easy communication between x-bees and integrated web applications",
|
|
5
5
|
"author": "dimitri.chernykh <dimitri.chernykh@wildix.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
"types": "./dist-types/index.d.ts",
|
|
11
11
|
"module": "./dist-es/index.js",
|
|
12
12
|
"scripts": {
|
|
13
|
-
"build": "
|
|
13
|
+
"build": "bun run clean && bun run build:es && bun run build:cjs && bun run build:types",
|
|
14
14
|
"build:es": "tsc -p tsconfig.es.json",
|
|
15
15
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
16
16
|
"build:types": "tsc -p tsconfig.types.json",
|
|
17
17
|
"build:docs": "typedoc",
|
|
18
18
|
"lint": "eslint . && tsc --noEmit",
|
|
19
19
|
"lint:fix": "eslint . --fix",
|
|
20
|
-
"clean": "rimraf ./dist-*
|
|
20
|
+
"clean": "rimraf --glob './dist-*' '*.tsbuildinfo'",
|
|
21
21
|
"build:api-extractor": "api-extractor run --local"
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
package/dist-cjs/src/Client.js
CHANGED
|
@@ -478,8 +478,11 @@ class Client {
|
|
|
478
478
|
onContactRefresh(callback) {
|
|
479
479
|
return this.addEventListener(enums_1.EventType.CONTACT_REFRESH, callback);
|
|
480
480
|
}
|
|
481
|
-
|
|
482
|
-
return this.addEventListener(enums_1.EventType.
|
|
481
|
+
onStartRedirectToEntityPage(callback) {
|
|
482
|
+
return this.addEventListener(enums_1.EventType.START_REDIRECT_TO_ENTITY_PAGE, callback);
|
|
483
|
+
}
|
|
484
|
+
onCancelRedirectToEntityPage(callback) {
|
|
485
|
+
return this.addEventListener(enums_1.EventType.CANCEL_REDIRECT_TO_ENTITY_PAGE, callback);
|
|
483
486
|
}
|
|
484
487
|
}
|
|
485
488
|
exports.Client = Client;
|
|
@@ -15,7 +15,8 @@ var EventType;
|
|
|
15
15
|
EventType["VISIBILITY"] = "xBeesVisibility";
|
|
16
16
|
EventType["CONTACT_WEIGHT_UPDATE"] = "xBeesContactWeightUpdate";
|
|
17
17
|
EventType["CONTACT_REFRESH"] = "xBeesContactRefresh";
|
|
18
|
-
EventType["
|
|
18
|
+
EventType["START_REDIRECT_TO_ENTITY_PAGE"] = "xBeesStartRedirectToEntityPage";
|
|
19
|
+
EventType["CANCEL_REDIRECT_TO_ENTITY_PAGE"] = "xBeesCancelRedirectToEntityPage";
|
|
19
20
|
})(EventType || (exports.EventType = EventType = {}));
|
|
20
21
|
var ClientEventType;
|
|
21
22
|
(function (ClientEventType) {
|
package/dist-es/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/xbees-connect",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.3",
|
|
4
4
|
"description": "This library provides easy communication between x-bees and integrated web applications",
|
|
5
5
|
"author": "dimitri.chernykh <dimitri.chernykh@wildix.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
"types": "./dist-types/index.d.ts",
|
|
11
11
|
"module": "./dist-es/index.js",
|
|
12
12
|
"scripts": {
|
|
13
|
-
"build": "
|
|
13
|
+
"build": "bun run clean && bun run build:es && bun run build:cjs && bun run build:types",
|
|
14
14
|
"build:es": "tsc -p tsconfig.es.json",
|
|
15
15
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
16
16
|
"build:types": "tsc -p tsconfig.types.json",
|
|
17
17
|
"build:docs": "typedoc",
|
|
18
18
|
"lint": "eslint . && tsc --noEmit",
|
|
19
19
|
"lint:fix": "eslint . --fix",
|
|
20
|
-
"clean": "rimraf ./dist-*
|
|
20
|
+
"clean": "rimraf --glob './dist-*' '*.tsbuildinfo'",
|
|
21
21
|
"build:api-extractor": "api-extractor run --local"
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
package/dist-es/src/Client.js
CHANGED
|
@@ -472,7 +472,10 @@ export class Client {
|
|
|
472
472
|
onContactRefresh(callback) {
|
|
473
473
|
return this.addEventListener(EventType.CONTACT_REFRESH, callback);
|
|
474
474
|
}
|
|
475
|
-
|
|
476
|
-
return this.addEventListener(EventType.
|
|
475
|
+
onStartRedirectToEntityPage(callback) {
|
|
476
|
+
return this.addEventListener(EventType.START_REDIRECT_TO_ENTITY_PAGE, callback);
|
|
477
|
+
}
|
|
478
|
+
onCancelRedirectToEntityPage(callback) {
|
|
479
|
+
return this.addEventListener(EventType.CANCEL_REDIRECT_TO_ENTITY_PAGE, callback);
|
|
477
480
|
}
|
|
478
481
|
}
|
|
@@ -12,7 +12,8 @@ export var EventType;
|
|
|
12
12
|
EventType["VISIBILITY"] = "xBeesVisibility";
|
|
13
13
|
EventType["CONTACT_WEIGHT_UPDATE"] = "xBeesContactWeightUpdate";
|
|
14
14
|
EventType["CONTACT_REFRESH"] = "xBeesContactRefresh";
|
|
15
|
-
EventType["
|
|
15
|
+
EventType["START_REDIRECT_TO_ENTITY_PAGE"] = "xBeesStartRedirectToEntityPage";
|
|
16
|
+
EventType["CANCEL_REDIRECT_TO_ENTITY_PAGE"] = "xBeesCancelRedirectToEntityPage";
|
|
16
17
|
})(EventType || (EventType = {}));
|
|
17
18
|
export var ClientEventType;
|
|
18
19
|
(function (ClientEventType) {
|
|
@@ -112,5 +112,6 @@ export declare class Client implements ConnectClient {
|
|
|
112
112
|
}): void;
|
|
113
113
|
onContactWeightUpdate(callback: Callback<EventType.CONTACT_WEIGHT_UPDATE>): RemoveEventListener;
|
|
114
114
|
onContactRefresh(callback: Callback<EventType.CONTACT_REFRESH>): RemoveEventListener;
|
|
115
|
-
|
|
115
|
+
onStartRedirectToEntityPage(callback: Callback<EventType.START_REDIRECT_TO_ENTITY_PAGE>): RemoveEventListener;
|
|
116
|
+
onCancelRedirectToEntityPage(callback: Callback<EventType.CANCEL_REDIRECT_TO_ENTITY_PAGE>): RemoveEventListener;
|
|
116
117
|
}
|
|
@@ -11,7 +11,8 @@ export declare enum EventType {
|
|
|
11
11
|
VISIBILITY = "xBeesVisibility",
|
|
12
12
|
CONTACT_WEIGHT_UPDATE = "xBeesContactWeightUpdate",
|
|
13
13
|
CONTACT_REFRESH = "xBeesContactRefresh",
|
|
14
|
-
|
|
14
|
+
START_REDIRECT_TO_ENTITY_PAGE = "xBeesStartRedirectToEntityPage",
|
|
15
|
+
CANCEL_REDIRECT_TO_ENTITY_PAGE = "xBeesCancelRedirectToEntityPage"
|
|
15
16
|
}
|
|
16
17
|
export declare enum ClientEventType {
|
|
17
18
|
READY = "xBeesReady",
|
|
@@ -216,7 +216,11 @@ export interface ConnectClient {
|
|
|
216
216
|
*/
|
|
217
217
|
onContactRefresh: (callback: Callback<EventType.CONTACT_REFRESH>) => RemoveEventListener;
|
|
218
218
|
/**
|
|
219
|
-
*
|
|
219
|
+
* Saves data about redirect to entity page to integration storage
|
|
220
220
|
*/
|
|
221
|
-
|
|
221
|
+
onStartRedirectToEntityPage: (callback: Callback<EventType.START_REDIRECT_TO_ENTITY_PAGE>) => RemoveEventListener;
|
|
222
|
+
/**
|
|
223
|
+
* Removes data about redirect to entity page from integration storage
|
|
224
|
+
*/
|
|
225
|
+
onCancelRedirectToEntityPage: (callback: Callback<EventType.CANCEL_REDIRECT_TO_ENTITY_PAGE>) => RemoveEventListener;
|
|
222
226
|
}
|
|
@@ -2,10 +2,10 @@ import { ClientEventType, EventType } from '../src/enums';
|
|
|
2
2
|
import { AvailableContactData } from './AvailableContactData';
|
|
3
3
|
import { ContactQuery } from './Contact';
|
|
4
4
|
import { Message, MessageType } from './Message';
|
|
5
|
-
import { IPayloadAutoSuggestResult, IPayloadBatchContactsMatchResult, IPayloadBatchContactsMatchResultError, IPayloadCallStart, IPayloadCallStartedInfo, IPayloadContactMatchResult, IPayloadContactMatchResultNotFound, IPayloadContactResult, IPayloadContactWeightUpdate, IPayloadContextResult, IPayloadConversationResult, IPayloadCustomEvent, IPayloadDropdownVisibility, IPayloadGetFromStorage, IPayloadSaveToStorage, IPayloadSendAnalytics, IPayloadTechSupport, IPayloadThemeChange, IPayloadToast, IPayloadVersion, IPayloadViewPort } from './Payload';
|
|
5
|
+
import { IPayloadAutoSuggestResult, IPayloadBatchContactsMatchResult, IPayloadBatchContactsMatchResultError, IPayloadCallStart, IPayloadCallStartedInfo, IPayloadCancelRedirectToEntityPage, IPayloadContactMatchResult, IPayloadContactMatchResultNotFound, IPayloadContactResult, IPayloadContactWeightUpdate, IPayloadContextResult, IPayloadConversationResult, IPayloadCustomEvent, IPayloadDropdownVisibility, IPayloadGetFromStorage, IPayloadSaveToStorage, IPayloadSendAnalytics, IPayloadStartRedirectToEntityPage, IPayloadTechSupport, IPayloadThemeChange, IPayloadToast, IPayloadVersion, IPayloadViewPort } from './Payload';
|
|
6
6
|
import { SupportedPlatformVariant } from './Platform';
|
|
7
7
|
import { XBeesUser } from './XBeesUser';
|
|
8
|
-
export type EventPayload<T extends MessageType> = T extends EventType.GET_CONTACTS_AUTO_SUGGEST ? string : T extends ClientEventType.CONTACTS_AUTO_SUGGEST ? IPayloadAutoSuggestResult : T extends ClientEventType.CONTACT_LOOKUP_AND_MATCH | ClientEventType.CONTACT_CREATE_OR_UPDATE | ClientEventType.CONTACT_MATCH_UPDATE ? IPayloadContactMatchResult : T extends ClientEventType.CONTACT_LOOKUP_AND_MATCH_NOT_FOUND ? IPayloadContactMatchResultNotFound : T extends ClientEventType.LOOKUP_AND_MATCH_BATCH_ERROR ? IPayloadBatchContactsMatchResultError : T extends ClientEventType.CONTEXT ? IPayloadContextResult : T extends ClientEventType.CURRENT_CONTACT ? IPayloadContactResult : T extends ClientEventType.CURRENT_CONVERSATION ? IPayloadConversationResult : T extends EventType.ADD_CALL ? IPayloadCallStartedInfo : T extends ClientEventType.START_CALL ? IPayloadCallStart : T extends ClientEventType.READY ? IPayloadVersion : T extends ClientEventType.VIEW_PORT ? IPayloadViewPort : T extends ClientEventType.THEME ? IPayloadThemeChange : T extends EventType.USE_THEME ? IPayloadThemeChange : T extends ClientEventType.TOAST ? IPayloadToast : T extends ClientEventType.SEND_ANALYTICS ? IPayloadSendAnalytics : T extends ClientEventType.SEND_TECHNICAL_SUPPORT_INFORMATION ? IPayloadTechSupport : T extends EventType.PBX_TOKEN ? string : T extends ClientEventType.TOKEN ? string : T extends ClientEventType.TO_CLIPBOARD ? string : T extends EventType.GET_LOOK_UP_AND_MATCH ? ContactQuery : T extends EventType.GET_LOOK_UP_AND_MATCH_BATCH ? ContactQuery[] : T extends EventType.VISIBILITY ? boolean : T extends ClientEventType.USER ? XBeesUser : T extends ClientEventType.SAVE_TO_STORAGE ? IPayloadSaveToStorage : T extends ClientEventType.GET_FROM_STORAGE ? IPayloadGetFromStorage : T extends ClientEventType.REMOVE_FROM_STORAGE ? IPayloadGetFromStorage : T extends ClientEventType.AVAILABLE_CONTACT_DATA ? AvailableContactData | null : T extends ClientEventType.LOOK_UP_AND_MATCH_BATCH_CONTACTS ? IPayloadBatchContactsMatchResult : T extends ClientEventType.DROPDOWN_VISIBILITY ? IPayloadDropdownVisibility : T extends ClientEventType.CUSTOM_EVENT ? IPayloadCustomEvent : never;
|
|
8
|
+
export type EventPayload<T extends MessageType> = T extends EventType.GET_CONTACTS_AUTO_SUGGEST ? string : T extends ClientEventType.CONTACTS_AUTO_SUGGEST ? IPayloadAutoSuggestResult : T extends ClientEventType.CONTACT_LOOKUP_AND_MATCH | ClientEventType.CONTACT_CREATE_OR_UPDATE | ClientEventType.CONTACT_MATCH_UPDATE ? IPayloadContactMatchResult : T extends ClientEventType.CONTACT_LOOKUP_AND_MATCH_NOT_FOUND ? IPayloadContactMatchResultNotFound : T extends ClientEventType.LOOKUP_AND_MATCH_BATCH_ERROR ? IPayloadBatchContactsMatchResultError : T extends ClientEventType.CONTEXT ? IPayloadContextResult : T extends ClientEventType.CURRENT_CONTACT ? IPayloadContactResult : T extends ClientEventType.CURRENT_CONVERSATION ? IPayloadConversationResult : T extends EventType.ADD_CALL ? IPayloadCallStartedInfo : T extends ClientEventType.START_CALL ? IPayloadCallStart : T extends ClientEventType.READY ? IPayloadVersion : T extends ClientEventType.VIEW_PORT ? IPayloadViewPort : T extends ClientEventType.THEME ? IPayloadThemeChange : T extends EventType.USE_THEME ? IPayloadThemeChange : T extends ClientEventType.TOAST ? IPayloadToast : T extends ClientEventType.SEND_ANALYTICS ? IPayloadSendAnalytics : T extends ClientEventType.SEND_TECHNICAL_SUPPORT_INFORMATION ? IPayloadTechSupport : T extends EventType.PBX_TOKEN ? string : T extends ClientEventType.TOKEN ? string : T extends ClientEventType.TO_CLIPBOARD ? string : T extends EventType.GET_LOOK_UP_AND_MATCH ? ContactQuery : T extends EventType.GET_LOOK_UP_AND_MATCH_BATCH ? ContactQuery[] : T extends EventType.VISIBILITY ? boolean : T extends ClientEventType.USER ? XBeesUser : T extends ClientEventType.SAVE_TO_STORAGE ? IPayloadSaveToStorage : T extends ClientEventType.GET_FROM_STORAGE ? IPayloadGetFromStorage : T extends ClientEventType.REMOVE_FROM_STORAGE ? IPayloadGetFromStorage : T extends ClientEventType.AVAILABLE_CONTACT_DATA ? AvailableContactData | null : T extends ClientEventType.LOOK_UP_AND_MATCH_BATCH_CONTACTS ? IPayloadBatchContactsMatchResult : T extends ClientEventType.DROPDOWN_VISIBILITY ? IPayloadDropdownVisibility : T extends ClientEventType.CUSTOM_EVENT ? IPayloadCustomEvent : T extends EventType.START_REDIRECT_TO_ENTITY_PAGE ? IPayloadStartRedirectToEntityPage : T extends EventType.CANCEL_REDIRECT_TO_ENTITY_PAGE ? IPayloadCancelRedirectToEntityPage : never;
|
|
9
9
|
export type EventPayloadMap = {
|
|
10
10
|
[EventType.GET_CONTACTS_AUTO_SUGGEST]: string;
|
|
11
11
|
[EventType.GET_LOOK_UP_AND_MATCH]: ContactQuery;
|
|
@@ -17,6 +17,8 @@ export type EventPayloadMap = {
|
|
|
17
17
|
[EventType.REDIRECT_QUERY]: string;
|
|
18
18
|
[EventType.CONTACT_WEIGHT_UPDATE]: IPayloadContactWeightUpdate;
|
|
19
19
|
[EventType.CONTACT_REFRESH]: string;
|
|
20
|
+
[EventType.START_REDIRECT_TO_ENTITY_PAGE]: IPayloadStartRedirectToEntityPage;
|
|
21
|
+
[EventType.CANCEL_REDIRECT_TO_ENTITY_PAGE]: IPayloadCancelRedirectToEntityPage;
|
|
20
22
|
};
|
|
21
23
|
export type EventCallbackMap = {
|
|
22
24
|
[EventType.GET_CONTACTS_AUTO_SUGGEST]: (query: EventPayloadMap[EventType.GET_CONTACTS_AUTO_SUGGEST]) => void;
|
|
@@ -29,7 +31,8 @@ export type EventCallbackMap = {
|
|
|
29
31
|
[EventType.REDIRECT_QUERY]: (query: EventPayloadMap[EventType.REDIRECT_QUERY]) => void;
|
|
30
32
|
[EventType.CONTACT_WEIGHT_UPDATE]: (params: EventPayloadMap[EventType.CONTACT_WEIGHT_UPDATE]) => void;
|
|
31
33
|
[EventType.CONTACT_REFRESH]: (id: EventPayloadMap[EventType.CONTACT_REFRESH]) => void;
|
|
32
|
-
[EventType.
|
|
34
|
+
[EventType.START_REDIRECT_TO_ENTITY_PAGE]: (params: EventPayloadMap[EventType.START_REDIRECT_TO_ENTITY_PAGE]) => void;
|
|
35
|
+
[EventType.CANCEL_REDIRECT_TO_ENTITY_PAGE]: (params: EventPayloadMap[EventType.CANCEL_REDIRECT_TO_ENTITY_PAGE]) => void;
|
|
33
36
|
};
|
|
34
37
|
export type RawMessageEvent = MessageEvent<string | Message>;
|
|
35
38
|
export type ReadyExtendedProps = {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import ClientParams from '../src/helpers/ClientParams';
|
|
2
2
|
import { Contact, ContactQuery } from './Contact';
|
|
3
|
-
import { Conversation } from './
|
|
3
|
+
import { Conversation } from './Conversation';
|
|
4
4
|
import { JSONArray, JSONObject, JSONValue } from './Json';
|
|
5
5
|
import { SupportedPlatformVariant } from './Platform';
|
|
6
6
|
import { ToastSeverity } from './Toast';
|
|
@@ -88,4 +88,11 @@ export interface IPayloadContactWeightUpdate {
|
|
|
88
88
|
id: string;
|
|
89
89
|
query: ContactQuery;
|
|
90
90
|
}
|
|
91
|
+
export interface IPayloadStartRedirectToEntityPage {
|
|
92
|
+
conversationId: string;
|
|
93
|
+
pageName: string;
|
|
94
|
+
}
|
|
95
|
+
export interface IPayloadCancelRedirectToEntityPage {
|
|
96
|
+
conversationId: string;
|
|
97
|
+
}
|
|
91
98
|
export {};
|
|
@@ -7,7 +7,7 @@ export type { JSONArray, JSONObject } from './Json';
|
|
|
7
7
|
export type { Listener, RemoveEventListener } from './Listener';
|
|
8
8
|
export type { Message, MessageIFrameResponse, MessageType, ResponseMessage } from './Message';
|
|
9
9
|
export type { MessageSender } from './MessageSender';
|
|
10
|
-
export type { IPayloadAutoSuggestResult, IPayloadCallStart, IPayloadCallStartedInfo, IPayloadContactMatchResult, IPayloadContactMatchResultNotFound, IPayloadContactResult, IPayloadContextResult, IPayloadConversationResult, IPayloadSendAnalytics, IPayloadTechSupport, IPayloadThemeChange, IPayloadToast, IPayloadVersion, IPayloadViewPort, } from './Payload';
|
|
10
|
+
export type { IPayloadAutoSuggestResult, IPayloadCallStart, IPayloadCallStartedInfo, IPayloadContactMatchResult, IPayloadContactMatchResultNotFound, IPayloadContactResult, IPayloadContextResult, IPayloadConversationResult, IPayloadSendAnalytics, IPayloadTechSupport, IPayloadThemeChange, IPayloadToast, IPayloadVersion, IPayloadViewPort, IPayloadStartRedirectToEntityPage, IPayloadCancelRedirectToEntityPage, } from './Payload';
|
|
11
11
|
export { SupportedPlatformVariant } from './Platform';
|
|
12
12
|
export type { LookupAndMatchBatchContactsResolver, LookupAndMatchContactsResolver, Reject, SuggestContactsResolver, } from './Resolver';
|
|
13
13
|
export type { StorageEventCallback } from './Storage';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/xbees-connect",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.3",
|
|
4
4
|
"description": "This library provides easy communication between x-bees and integrated web applications",
|
|
5
5
|
"author": "dimitri.chernykh <dimitri.chernykh@wildix.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
"types": "./dist-types/index.d.ts",
|
|
11
11
|
"module": "./dist-es/index.js",
|
|
12
12
|
"scripts": {
|
|
13
|
-
"build": "
|
|
13
|
+
"build": "bun run clean && bun run build:es && bun run build:cjs && bun run build:types",
|
|
14
14
|
"build:es": "tsc -p tsconfig.es.json",
|
|
15
15
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
16
16
|
"build:types": "tsc -p tsconfig.types.json",
|
|
17
17
|
"build:docs": "typedoc",
|
|
18
18
|
"lint": "eslint . && tsc --noEmit",
|
|
19
19
|
"lint:fix": "eslint . --fix",
|
|
20
|
-
"clean": "rimraf ./dist-*
|
|
20
|
+
"clean": "rimraf --glob './dist-*' '*.tsbuildinfo'",
|
|
21
21
|
"build:api-extractor": "api-extractor run --local"
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
|
@@ -44,6 +44,5 @@
|
|
|
44
44
|
},
|
|
45
45
|
"engines": {
|
|
46
46
|
"node": ">=16"
|
|
47
|
-
}
|
|
48
|
-
"gitHead": "48c015637edde40795772b24bb89edec002f4bdc"
|
|
47
|
+
}
|
|
49
48
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|