seatsio 81.19.0 → 81.20.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/src/Charts/Charts.d.ts +1 -1
- package/dist/src/EventLog/EventLog.d.ts +1 -1
- package/dist/src/Events/Events.d.ts +1 -1
- package/dist/src/Reports/ChartReports.d.ts +7 -7
- package/dist/src/Reports/EventReports.d.ts +11 -11
- package/dist/src/Users/Users.d.ts +1 -1
- package/dist/src/Workspaces/Workspaces.d.ts +3 -3
- package/dist/src/index.d.ts +60 -0
- package/dist/src/index.js +76 -0
- package/package.json +3 -2
|
@@ -34,7 +34,7 @@ export declare class Charts {
|
|
|
34
34
|
listAllTags(): Promise<any>;
|
|
35
35
|
addTag(key: string, tag: string): Promise<import("axios").AxiosResponse<any, any>>;
|
|
36
36
|
removeTag(key: string, tag: string): Promise<import("axios").AxiosResponse<any, any>>;
|
|
37
|
-
listAll(chartListParams?: ChartListParams | null): import("
|
|
37
|
+
listAll(chartListParams?: ChartListParams | null): import("..").AsyncIterator<Chart>;
|
|
38
38
|
listFirstPage(chartListParams?: ChartListParams | null, pageSize?: number | null): Promise<Page<Chart>>;
|
|
39
39
|
listPageAfter(afterId: number, chartListParams?: ChartListParams | null, pageSize?: number | null): Promise<Page<Chart>>;
|
|
40
40
|
listPageBefore(beforeId: number, chartListParams?: ChartListParams | null, pageSize?: number | null): Promise<Page<Chart>>;
|
|
@@ -7,7 +7,7 @@ export declare class EventLog {
|
|
|
7
7
|
client: Axios;
|
|
8
8
|
seatsioClient: SeatsioClient;
|
|
9
9
|
constructor(client: Axios, seatsioClient: SeatsioClient);
|
|
10
|
-
listAll(): import("
|
|
10
|
+
listAll(): import("..").AsyncIterator<EventLogItem>;
|
|
11
11
|
listFirstPage(pageSize?: number | null): Promise<Page<EventLogItem>>;
|
|
12
12
|
listPageAfter(afterId: number, pageSize?: number | null): Promise<Page<EventLogItem>>;
|
|
13
13
|
listPageBefore(beforeId: number, pageSize?: number | null): Promise<Page<EventLogItem>>;
|
|
@@ -27,7 +27,7 @@ export declare class Events {
|
|
|
27
27
|
retrieve(eventKey: string): Promise<Event>;
|
|
28
28
|
update(eventKey: string, params: UpdateEventParams): Promise<import("axios").AxiosResponse<any, any>>;
|
|
29
29
|
delete(eventKey: string): Promise<import("axios").AxiosResponse<any, any>>;
|
|
30
|
-
listAll(requestParameters?: {}): import("
|
|
30
|
+
listAll(requestParameters?: {}): import("..").AsyncIterator<Event>;
|
|
31
31
|
listFirstPage(pageSize?: number | null): Promise<Page<Event>>;
|
|
32
32
|
listPageAfter(afterId: number, pageSize?: number | null): Promise<Page<Event>>;
|
|
33
33
|
listPageBefore(beforeId: number, pageSize?: number | null): Promise<Page<Event>>;
|
|
@@ -6,17 +6,17 @@ export declare class Versions {
|
|
|
6
6
|
export declare class ChartReports {
|
|
7
7
|
client: Axios;
|
|
8
8
|
constructor(client: Axios);
|
|
9
|
-
byLabel(chartKey: string, bookWholeTables?: string, version?: string): Promise<import("
|
|
10
|
-
byObjectType(chartKey: string, bookWholeTables?: string, version?: string): Promise<import("
|
|
9
|
+
byLabel(chartKey: string, bookWholeTables?: string, version?: string): Promise<import("..").Dict<import("..").ChartObjectInfo[]>>;
|
|
10
|
+
byObjectType(chartKey: string, bookWholeTables?: string, version?: string): Promise<import("..").Dict<import("..").ChartObjectInfo[]>>;
|
|
11
11
|
summaryByObjectType(chartKey: string, bookWholeTables?: string, version?: string): Promise<any>;
|
|
12
|
-
byCategoryLabel(chartKey: string, bookWholeTables?: string, version?: string): Promise<import("
|
|
12
|
+
byCategoryLabel(chartKey: string, bookWholeTables?: string, version?: string): Promise<import("..").Dict<import("..").ChartObjectInfo[]>>;
|
|
13
13
|
summaryByCategoryLabel(chartKey: string, bookWholeTables?: string, version?: string): Promise<any>;
|
|
14
|
-
byCategoryKey(chartKey: string, bookWholeTables?: string, version?: string): Promise<import("
|
|
14
|
+
byCategoryKey(chartKey: string, bookWholeTables?: string, version?: string): Promise<import("..").Dict<import("..").ChartObjectInfo[]>>;
|
|
15
15
|
summaryByCategoryKey(chartKey: string, bookWholeTables?: string, version?: string): Promise<any>;
|
|
16
|
-
bySection(chartKey: string, bookWholeTables?: string, version?: string): Promise<import("
|
|
17
|
-
byZone(chartKey: string, bookWholeTables?: string, version?: string): Promise<import("
|
|
16
|
+
bySection(chartKey: string, bookWholeTables?: string, version?: string): Promise<import("..").Dict<import("..").ChartObjectInfo[]>>;
|
|
17
|
+
byZone(chartKey: string, bookWholeTables?: string, version?: string): Promise<import("..").Dict<import("..").ChartObjectInfo[]>>;
|
|
18
18
|
summaryBySection(chartKey: string, bookWholeTables?: string, version?: string): Promise<any>;
|
|
19
19
|
summaryByZone(chartKey: string, bookWholeTables?: string, version?: string): Promise<any>;
|
|
20
|
-
fetchReport(reportType: string, chartKey: string, bookWholeTables?: string, version?: string): Promise<import("
|
|
20
|
+
fetchReport(reportType: string, chartKey: string, bookWholeTables?: string, version?: string): Promise<import("..").Dict<import("..").ChartObjectInfo[]>>;
|
|
21
21
|
fetchSummaryReport(reportType: string, chartKey: string, bookWholeTables?: string, version?: string): Promise<any>;
|
|
22
22
|
}
|
|
@@ -3,33 +3,33 @@ import { CategoryKey } from '../Charts/Category';
|
|
|
3
3
|
export declare class EventReports {
|
|
4
4
|
client: Axios;
|
|
5
5
|
constructor(client: Axios);
|
|
6
|
-
byStatus(eventKey: string, status?: string | null): Promise<import("
|
|
6
|
+
byStatus(eventKey: string, status?: string | null): Promise<import("..").Dict<import("..").EventObjectInfo[]>>;
|
|
7
7
|
summaryByStatus(eventKey: string): Promise<any>;
|
|
8
8
|
deepSummaryByStatus(eventKey: string): Promise<any>;
|
|
9
|
-
byObjectType(eventKey: string, objectType?: string | null): Promise<import("
|
|
9
|
+
byObjectType(eventKey: string, objectType?: string | null): Promise<import("..").Dict<import("..").EventObjectInfo[]>>;
|
|
10
10
|
summaryByObjectType(eventKey: string): Promise<any>;
|
|
11
11
|
deepSummaryByObjectType(eventKey: string): Promise<any>;
|
|
12
|
-
byCategoryLabel(eventKey: string, categoryLabel?: string | null): Promise<import("
|
|
12
|
+
byCategoryLabel(eventKey: string, categoryLabel?: string | null): Promise<import("..").Dict<import("..").EventObjectInfo[]>>;
|
|
13
13
|
summaryByCategoryLabel(eventKey: string): Promise<any>;
|
|
14
14
|
deepSummaryByCategoryLabel(eventKey: string): Promise<any>;
|
|
15
|
-
byCategoryKey(eventKey: string, categoryKey?: CategoryKey | null): Promise<import("
|
|
15
|
+
byCategoryKey(eventKey: string, categoryKey?: CategoryKey | null): Promise<import("..").Dict<import("..").EventObjectInfo[]>>;
|
|
16
16
|
summaryByCategoryKey(eventKey: string): Promise<any>;
|
|
17
17
|
deepSummaryByCategoryKey(eventKey: string): Promise<any>;
|
|
18
|
-
byLabel(eventKey: string, label?: string | null): Promise<import("
|
|
19
|
-
byOrderId(eventKey: string, orderId?: string | null): Promise<import("
|
|
20
|
-
bySection(eventKey: string, section?: string | null): Promise<import("
|
|
18
|
+
byLabel(eventKey: string, label?: string | null): Promise<import("..").Dict<import("..").EventObjectInfo[]>>;
|
|
19
|
+
byOrderId(eventKey: string, orderId?: string | null): Promise<import("..").Dict<import("..").EventObjectInfo[]>>;
|
|
20
|
+
bySection(eventKey: string, section?: string | null): Promise<import("..").Dict<import("..").EventObjectInfo[]>>;
|
|
21
21
|
summaryBySection(eventKey: string): Promise<any>;
|
|
22
22
|
deepSummaryBySection(eventKey: string): Promise<any>;
|
|
23
|
-
byZone(eventKey: string, zone?: string | null): Promise<import("
|
|
23
|
+
byZone(eventKey: string, zone?: string | null): Promise<import("..").Dict<import("..").EventObjectInfo[]>>;
|
|
24
24
|
summaryByZone(eventKey: string): Promise<any>;
|
|
25
25
|
deepSummaryByZone(eventKey: string): Promise<any>;
|
|
26
|
-
byAvailability(eventKey: string, availability?: string | null): Promise<import("
|
|
27
|
-
byAvailabilityReason(eventKey: string, availabilityReason?: string | null): Promise<import("
|
|
26
|
+
byAvailability(eventKey: string, availability?: string | null): Promise<import("..").Dict<import("..").EventObjectInfo[]>>;
|
|
27
|
+
byAvailabilityReason(eventKey: string, availabilityReason?: string | null): Promise<import("..").Dict<import("..").EventObjectInfo[]>>;
|
|
28
28
|
summaryByAvailability(eventKey: string): Promise<any>;
|
|
29
29
|
summaryByAvailabilityReason(eventKey: string): Promise<any>;
|
|
30
30
|
deepSummaryByAvailability(eventKey: string): Promise<any>;
|
|
31
31
|
deepSummaryByAvailabilityReason(eventKey: string): Promise<any>;
|
|
32
|
-
byChannel(eventKey: string, channel?: string | null): Promise<import("
|
|
32
|
+
byChannel(eventKey: string, channel?: string | null): Promise<import("..").Dict<import("..").EventObjectInfo[]>>;
|
|
33
33
|
summaryByChannel(eventKey: string): Promise<any>;
|
|
34
34
|
deepSummaryByChannel(eventKey: string): Promise<any>;
|
|
35
35
|
static reportUrl(reportType: string, eventKey: string, filter: string | number | null): string;
|
|
@@ -10,7 +10,7 @@ export declare class Users {
|
|
|
10
10
|
retrieve(id: number): Promise<User>;
|
|
11
11
|
activate(id: number): Promise<import("axios").AxiosResponse<any, any>>;
|
|
12
12
|
deactivate(id: number): Promise<import("axios").AxiosResponse<any, any>>;
|
|
13
|
-
listAll(role?: string | null): import("
|
|
13
|
+
listAll(role?: string | null): import("..").AsyncIterator<User>;
|
|
14
14
|
listFirstPage(role?: string | null, pageSize?: number | null): Promise<Page<User>>;
|
|
15
15
|
listPageAfter(afterId: number, role?: string | null, pageSize?: number | null): Promise<Page<User>>;
|
|
16
16
|
listPageBefore(beforeId: number, role?: string | null, pageSize?: number | null): Promise<Page<User>>;
|
|
@@ -12,15 +12,15 @@ export declare class Workspaces {
|
|
|
12
12
|
activate(key: string): Promise<import("axios").AxiosResponse<any, any>>;
|
|
13
13
|
deactivate(key: string): Promise<import("axios").AxiosResponse<any, any>>;
|
|
14
14
|
retrieve(key: string): Promise<Workspace>;
|
|
15
|
-
listAll(filter?: string | null): import("
|
|
15
|
+
listAll(filter?: string | null): import("..").AsyncIterator<Workspace>;
|
|
16
16
|
listFirstPage(filter?: string | null, pageSize?: number | null): Promise<Page<Workspace>>;
|
|
17
17
|
listPageAfter(afterId: number, filter?: string | null, pageSize?: number | null): Promise<Page<Workspace>>;
|
|
18
18
|
listPageBefore(beforeId: number, filter?: string | null, pageSize?: number | null): Promise<Page<Workspace>>;
|
|
19
|
-
listActive(filter?: string | null): import("
|
|
19
|
+
listActive(filter?: string | null): import("..").AsyncIterator<Workspace>;
|
|
20
20
|
listActiveFirstPage(filter?: string | null, pageSize?: number | null): Promise<Page<Workspace>>;
|
|
21
21
|
listActivePageAfter(afterId: number, filter?: string | null, pageSize?: number | null): Promise<Page<Workspace>>;
|
|
22
22
|
listActivePageBefore(beforeId: number, filter?: string | null, pageSize?: number | null): Promise<Page<Workspace>>;
|
|
23
|
-
listInactive(filter?: string | null): import("
|
|
23
|
+
listInactive(filter?: string | null): import("..").AsyncIterator<Workspace>;
|
|
24
24
|
listInactiveFirstPage(filter?: string | null, pageSize?: number | null): Promise<Page<Workspace>>;
|
|
25
25
|
listInactivePageAfter(afterId: number, filter?: string | null, pageSize?: number | null): Promise<Page<Workspace>>;
|
|
26
26
|
listInactivePageBefore(beforeId: number, filter?: string | null, pageSize?: number | null): Promise<Page<Workspace>>;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
export * from './AsyncIterator';
|
|
2
|
+
export * from './Dict';
|
|
3
|
+
export * from './Lister';
|
|
4
|
+
export * from './LocalDate';
|
|
5
|
+
export * from './Page';
|
|
6
|
+
export * from './PageFetcher';
|
|
7
|
+
export * from './Region';
|
|
8
|
+
export * from './SeatsioClient';
|
|
9
|
+
export * from './Accounts/Account';
|
|
10
|
+
export * from './Accounts/Accounts';
|
|
11
|
+
export * from './Accounts/AccountSettings';
|
|
12
|
+
export * from './Accounts/ChartValidationSettings';
|
|
13
|
+
export * from './Accounts/DefaultRendererSettings';
|
|
14
|
+
export * from './Charts/Category';
|
|
15
|
+
export * from './Charts/CategoryUpdateParams';
|
|
16
|
+
export * from './Charts/Chart';
|
|
17
|
+
export * from './Charts/ChartListParams';
|
|
18
|
+
export * from './Charts/ChartObjectInfo';
|
|
19
|
+
export * from './Charts/Charts';
|
|
20
|
+
export * from './Charts/ChartValidation';
|
|
21
|
+
export * from './Charts/Zone';
|
|
22
|
+
export * from './Common/Floor';
|
|
23
|
+
export * from './Common/IDs';
|
|
24
|
+
export * from './Common/LabelAndType';
|
|
25
|
+
export * from './Common/Labels';
|
|
26
|
+
export * from './EventLog/EventLog';
|
|
27
|
+
export * from './EventLog/EventLogItem';
|
|
28
|
+
export * from './Events/AbstractEventParams';
|
|
29
|
+
export * from './Events/BestAvailableObjects';
|
|
30
|
+
export * from './Events/BestAvailableParams';
|
|
31
|
+
export * from './Events/ChangeObjectStatusResult';
|
|
32
|
+
export * from './Events/Channel';
|
|
33
|
+
export * from './Events/Channels';
|
|
34
|
+
export * from './Events/CreateEventParams';
|
|
35
|
+
export * from './Events/Event';
|
|
36
|
+
export * from './Events/EventDeserializer';
|
|
37
|
+
export * from './Events/EventObjectInfo';
|
|
38
|
+
export * from './Events/Events';
|
|
39
|
+
export * from './Events/ForSaleConfig';
|
|
40
|
+
export * from './Events/ObjectProperties';
|
|
41
|
+
export * from './Events/StatusChange';
|
|
42
|
+
export * from './Events/StatusChangeOrigin';
|
|
43
|
+
export * from './Events/StatusChangeRequest';
|
|
44
|
+
export * from './Events/StatusChangesParams';
|
|
45
|
+
export * from './Events/TableBookingConfig';
|
|
46
|
+
export * from './Events/UpdateEventParams';
|
|
47
|
+
export * from './HoldTokens/HoldToken';
|
|
48
|
+
export * from './HoldTokens/HoldTokens';
|
|
49
|
+
export * from './Invitations/Invitation';
|
|
50
|
+
export * from './Invitations/Invitations';
|
|
51
|
+
export * from './Reports/ChartReports';
|
|
52
|
+
export * from './Reports/EventReports';
|
|
53
|
+
export * from './Reports/UsageReports';
|
|
54
|
+
export * from './Seasons/Season';
|
|
55
|
+
export * from './Seasons/SeasonParams';
|
|
56
|
+
export * from './Seasons/Seasons';
|
|
57
|
+
export * from './Users/User';
|
|
58
|
+
export * from './Users/Users';
|
|
59
|
+
export * from './Workspaces/Workspace';
|
|
60
|
+
export * from './Workspaces/Workspaces';
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./AsyncIterator"), exports);
|
|
18
|
+
__exportStar(require("./Dict"), exports);
|
|
19
|
+
__exportStar(require("./Lister"), exports);
|
|
20
|
+
__exportStar(require("./LocalDate"), exports);
|
|
21
|
+
__exportStar(require("./Page"), exports);
|
|
22
|
+
__exportStar(require("./PageFetcher"), exports);
|
|
23
|
+
__exportStar(require("./Region"), exports);
|
|
24
|
+
__exportStar(require("./SeatsioClient"), exports);
|
|
25
|
+
__exportStar(require("./Accounts/Account"), exports);
|
|
26
|
+
__exportStar(require("./Accounts/Accounts"), exports);
|
|
27
|
+
__exportStar(require("./Accounts/AccountSettings"), exports);
|
|
28
|
+
__exportStar(require("./Accounts/ChartValidationSettings"), exports);
|
|
29
|
+
__exportStar(require("./Accounts/DefaultRendererSettings"), exports);
|
|
30
|
+
__exportStar(require("./Charts/Category"), exports);
|
|
31
|
+
__exportStar(require("./Charts/CategoryUpdateParams"), exports);
|
|
32
|
+
__exportStar(require("./Charts/Chart"), exports);
|
|
33
|
+
__exportStar(require("./Charts/ChartListParams"), exports);
|
|
34
|
+
__exportStar(require("./Charts/ChartObjectInfo"), exports);
|
|
35
|
+
__exportStar(require("./Charts/Charts"), exports);
|
|
36
|
+
__exportStar(require("./Charts/ChartValidation"), exports);
|
|
37
|
+
__exportStar(require("./Charts/Zone"), exports);
|
|
38
|
+
__exportStar(require("./Common/Floor"), exports);
|
|
39
|
+
__exportStar(require("./Common/IDs"), exports);
|
|
40
|
+
__exportStar(require("./Common/LabelAndType"), exports);
|
|
41
|
+
__exportStar(require("./Common/Labels"), exports);
|
|
42
|
+
__exportStar(require("./EventLog/EventLog"), exports);
|
|
43
|
+
__exportStar(require("./EventLog/EventLogItem"), exports);
|
|
44
|
+
__exportStar(require("./Events/AbstractEventParams"), exports);
|
|
45
|
+
__exportStar(require("./Events/BestAvailableObjects"), exports);
|
|
46
|
+
__exportStar(require("./Events/BestAvailableParams"), exports);
|
|
47
|
+
__exportStar(require("./Events/ChangeObjectStatusResult"), exports);
|
|
48
|
+
__exportStar(require("./Events/Channel"), exports);
|
|
49
|
+
__exportStar(require("./Events/Channels"), exports);
|
|
50
|
+
__exportStar(require("./Events/CreateEventParams"), exports);
|
|
51
|
+
__exportStar(require("./Events/Event"), exports);
|
|
52
|
+
__exportStar(require("./Events/EventDeserializer"), exports);
|
|
53
|
+
__exportStar(require("./Events/EventObjectInfo"), exports);
|
|
54
|
+
__exportStar(require("./Events/Events"), exports);
|
|
55
|
+
__exportStar(require("./Events/ForSaleConfig"), exports);
|
|
56
|
+
__exportStar(require("./Events/ObjectProperties"), exports);
|
|
57
|
+
__exportStar(require("./Events/StatusChange"), exports);
|
|
58
|
+
__exportStar(require("./Events/StatusChangeOrigin"), exports);
|
|
59
|
+
__exportStar(require("./Events/StatusChangeRequest"), exports);
|
|
60
|
+
__exportStar(require("./Events/StatusChangesParams"), exports);
|
|
61
|
+
__exportStar(require("./Events/TableBookingConfig"), exports);
|
|
62
|
+
__exportStar(require("./Events/UpdateEventParams"), exports);
|
|
63
|
+
__exportStar(require("./HoldTokens/HoldToken"), exports);
|
|
64
|
+
__exportStar(require("./HoldTokens/HoldTokens"), exports);
|
|
65
|
+
__exportStar(require("./Invitations/Invitation"), exports);
|
|
66
|
+
__exportStar(require("./Invitations/Invitations"), exports);
|
|
67
|
+
__exportStar(require("./Reports/ChartReports"), exports);
|
|
68
|
+
__exportStar(require("./Reports/EventReports"), exports);
|
|
69
|
+
__exportStar(require("./Reports/UsageReports"), exports);
|
|
70
|
+
__exportStar(require("./Seasons/Season"), exports);
|
|
71
|
+
__exportStar(require("./Seasons/SeasonParams"), exports);
|
|
72
|
+
__exportStar(require("./Seasons/Seasons"), exports);
|
|
73
|
+
__exportStar(require("./Users/User"), exports);
|
|
74
|
+
__exportStar(require("./Users/Users"), exports);
|
|
75
|
+
__exportStar(require("./Workspaces/Workspace"), exports);
|
|
76
|
+
__exportStar(require("./Workspaces/Workspaces"), exports);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "seatsio",
|
|
3
|
-
"version": "81.
|
|
3
|
+
"version": "81.20.0",
|
|
4
4
|
"main": "dist/src/index.js",
|
|
5
5
|
"types": "dist/src/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"scripts": {
|
|
12
12
|
"lint": "eslint './src/**/*.ts' './tests/**/*.ts'",
|
|
13
13
|
"test": "jest --maxWorkers=8 --verbose",
|
|
14
|
-
"build": "ctix build --mode bundle
|
|
14
|
+
"build": "ctix build --mode bundle && tsc --outDir dist --declaration"
|
|
15
15
|
},
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"eslint-plugin-promise": "6.6.0",
|
|
36
36
|
"jest": "29.7.0",
|
|
37
37
|
"jest-cli": "29.7.0",
|
|
38
|
+
"prettier": "3.3.3",
|
|
38
39
|
"semver": "7.6.3",
|
|
39
40
|
"ts-jest": "29.2.5",
|
|
40
41
|
"typescript": "5.5.4",
|