@fairmint/canton-node-sdk 0.0.64 → 0.0.66
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/build/src/clients/ledger-json-api/operations/v2/commands/submit-and-wait-for-transaction-tree.d.ts +57 -6
- package/build/src/clients/ledger-json-api/operations/v2/commands/submit-and-wait-for-transaction-tree.d.ts.map +1 -1
- package/build/src/clients/ledger-json-api/operations/v2/commands/submit-and-wait-for-transaction-tree.js +34 -2
- package/build/src/clients/ledger-json-api/operations/v2/commands/submit-and-wait-for-transaction-tree.js.map +1 -1
- package/build/src/clients/ledger-json-api/operations/v2/commands/submit-and-wait-for-transaction.d.ts +5 -3
- package/build/src/clients/ledger-json-api/operations/v2/commands/submit-and-wait-for-transaction.d.ts.map +1 -1
- package/build/src/clients/ledger-json-api/operations/v2/commands/submit-and-wait-for-transaction.js +6 -3
- package/build/src/clients/ledger-json-api/operations/v2/commands/submit-and-wait-for-transaction.js.map +1 -1
- package/package.json +3 -3
|
@@ -1,15 +1,66 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import type { paths } from '../../../../../generated/canton/community/ledger/ledger-json-api/src/test/resources/json-api-docs/openapi';
|
|
3
3
|
declare const endpoint: "/v2/commands/submit-and-wait-for-transaction-tree";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
export declare const SubmitAndWaitForTransactionTreeParamsSchema: z.ZodObject<{
|
|
5
|
+
commands: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
6
|
+
CreateCommand: z.ZodObject<{
|
|
7
|
+
templateId: z.ZodString;
|
|
8
|
+
createArguments: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodRecord<z.ZodString, z.ZodAny>, z.ZodArray<z.ZodAny>]>>;
|
|
9
|
+
}, z.core.$strict>;
|
|
10
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
11
|
+
ExerciseCommand: z.ZodObject<{
|
|
12
|
+
templateId: z.ZodString;
|
|
13
|
+
contractId: z.ZodString;
|
|
14
|
+
choice: z.ZodString;
|
|
15
|
+
choiceArgument: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodRecord<z.ZodString, z.ZodAny>, z.ZodArray<z.ZodAny>]>>;
|
|
16
|
+
}, z.core.$strict>;
|
|
17
|
+
}, z.core.$strict>]>>;
|
|
18
|
+
commandId: z.ZodOptional<z.ZodString>;
|
|
19
|
+
actAs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
20
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
21
|
+
readAs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22
|
+
workflowId: z.ZodOptional<z.ZodString>;
|
|
23
|
+
deduplicationPeriod: z.ZodOptional<z.ZodAny>;
|
|
24
|
+
minLedgerTimeAbs: z.ZodOptional<z.ZodString>;
|
|
25
|
+
minLedgerTimeRel: z.ZodOptional<z.ZodAny>;
|
|
26
|
+
submissionId: z.ZodOptional<z.ZodString>;
|
|
27
|
+
disclosedContracts: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
28
|
+
synchronizerId: z.ZodOptional<z.ZodString>;
|
|
29
|
+
packageIdSelectionPreference: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
30
|
+
prefetchContractKeys: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
31
|
+
}, z.core.$strip>;
|
|
32
|
+
export type SubmitAndWaitForTransactionTreeParams = z.infer<typeof SubmitAndWaitForTransactionTreeParamsSchema>;
|
|
9
33
|
export type SubmitAndWaitForTransactionTreeResponse = paths[typeof endpoint]['post']['responses']['200']['content']['application/json'];
|
|
10
34
|
export declare const SubmitAndWaitForTransactionTree: {
|
|
11
35
|
new (client: import("../../../../../core").BaseClient): {
|
|
12
|
-
execute(params:
|
|
36
|
+
execute(params: {
|
|
37
|
+
commands: ({
|
|
38
|
+
CreateCommand: {
|
|
39
|
+
templateId: string;
|
|
40
|
+
createArguments: Record<string, string | number | boolean | any[] | Record<string, any> | null>;
|
|
41
|
+
};
|
|
42
|
+
} | {
|
|
43
|
+
ExerciseCommand: {
|
|
44
|
+
templateId: string;
|
|
45
|
+
contractId: string;
|
|
46
|
+
choice: string;
|
|
47
|
+
choiceArgument: Record<string, string | number | boolean | any[] | Record<string, any> | null>;
|
|
48
|
+
};
|
|
49
|
+
})[];
|
|
50
|
+
commandId?: string | undefined;
|
|
51
|
+
actAs?: string[] | undefined;
|
|
52
|
+
userId?: string | undefined;
|
|
53
|
+
readAs?: string[] | undefined;
|
|
54
|
+
workflowId?: string | undefined;
|
|
55
|
+
deduplicationPeriod?: any;
|
|
56
|
+
minLedgerTimeAbs?: string | undefined;
|
|
57
|
+
minLedgerTimeRel?: any;
|
|
58
|
+
submissionId?: string | undefined;
|
|
59
|
+
disclosedContracts?: any[] | undefined;
|
|
60
|
+
synchronizerId?: string | undefined;
|
|
61
|
+
packageIdSelectionPreference?: string[] | undefined;
|
|
62
|
+
prefetchContractKeys?: any[] | undefined;
|
|
63
|
+
}): Promise<{
|
|
13
64
|
transactionTree: import("../../../../../generated/canton/community/ledger/ledger-json-api/src/test/resources/json-api-docs/openapi").components["schemas"]["JsTransactionTree"];
|
|
14
65
|
}>;
|
|
15
66
|
client: import("../../../../../core").BaseClient;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"submit-and-wait-for-transaction-tree.d.ts","sourceRoot":"","sources":["../../../../../../../src/clients/ledger-json-api/operations/v2/commands/submit-and-wait-for-transaction-tree.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,2GAA2G,CAAC;
|
|
1
|
+
{"version":3,"file":"submit-and-wait-for-transaction-tree.d.ts","sourceRoot":"","sources":["../../../../../../../src/clients/ledger-json-api/operations/v2/commands/submit-and-wait-for-transaction-tree.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,2GAA2G,CAAC;AAGvI,QAAA,MAAM,QAAQ,EAAG,mDAA4D,CAAC;AAG9E,eAAO,MAAM,2CAA2C;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA6BtD,CAAC;AAGH,MAAM,MAAM,qCAAqC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2CAA2C,CAAC,CAAC;AAEhH,MAAM,MAAM,uCAAuC,GAAG,KAAK,CAAC,OAAO,QAAQ,CAAC,CAAC,MAAM,CAAC,CAAC,WAAW,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,CAAC,CAAC,kBAAkB,CAAC,CAAC;AAExI,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BAWmuuG,yIAAsB;;;;;;;;;;;;;CAAnyuG,CAAC"}
|
|
@@ -1,11 +1,43 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SubmitAndWaitForTransactionTree = void 0;
|
|
3
|
+
exports.SubmitAndWaitForTransactionTree = exports.SubmitAndWaitForTransactionTreeParamsSchema = void 0;
|
|
4
4
|
const core_1 = require("../../../../../core");
|
|
5
5
|
const zod_1 = require("zod");
|
|
6
|
+
const commands_1 = require("../../../schemas/api/commands");
|
|
6
7
|
const endpoint = '/v2/commands/submit-and-wait-for-transaction-tree';
|
|
8
|
+
// Zod schema for the input parameters
|
|
9
|
+
exports.SubmitAndWaitForTransactionTreeParamsSchema = zod_1.z.object({
|
|
10
|
+
/** Commands to submit and wait for transaction tree. */
|
|
11
|
+
commands: zod_1.z.array(commands_1.CommandSchema),
|
|
12
|
+
/** Unique identifier for the command (optional, will be auto-generated if not provided). */
|
|
13
|
+
commandId: zod_1.z.string().optional(),
|
|
14
|
+
/** Parties on whose behalf the command should be executed (optional, will use client's party ID if not provided). */
|
|
15
|
+
actAs: zod_1.z.array(zod_1.z.string()).optional(),
|
|
16
|
+
/** User ID submitting the command (optional if using authentication). */
|
|
17
|
+
userId: zod_1.z.string().optional(),
|
|
18
|
+
/** Parties to read as (optional). */
|
|
19
|
+
readAs: zod_1.z.array(zod_1.z.string()).optional(),
|
|
20
|
+
/** Workflow ID (optional). */
|
|
21
|
+
workflowId: zod_1.z.string().optional(),
|
|
22
|
+
/** Deduplication period (optional). */
|
|
23
|
+
deduplicationPeriod: zod_1.z.any().optional(),
|
|
24
|
+
/** Minimum ledger time absolute (optional). */
|
|
25
|
+
minLedgerTimeAbs: zod_1.z.string().optional(),
|
|
26
|
+
/** Minimum ledger time relative (optional). */
|
|
27
|
+
minLedgerTimeRel: zod_1.z.any().optional(),
|
|
28
|
+
/** Submission ID (optional). */
|
|
29
|
+
submissionId: zod_1.z.string().optional(),
|
|
30
|
+
/** Disclosed contracts (optional). */
|
|
31
|
+
disclosedContracts: zod_1.z.array(zod_1.z.any()).optional(),
|
|
32
|
+
/** Synchronizer ID (optional). */
|
|
33
|
+
synchronizerId: zod_1.z.string().optional(),
|
|
34
|
+
/** Package ID selection preference (optional). */
|
|
35
|
+
packageIdSelectionPreference: zod_1.z.array(zod_1.z.string()).optional(),
|
|
36
|
+
/** Prefetch contract keys (optional). */
|
|
37
|
+
prefetchContractKeys: zod_1.z.array(zod_1.z.any()).optional(),
|
|
38
|
+
});
|
|
7
39
|
exports.SubmitAndWaitForTransactionTree = (0, core_1.createApiOperation)({
|
|
8
|
-
paramsSchema:
|
|
40
|
+
paramsSchema: exports.SubmitAndWaitForTransactionTreeParamsSchema,
|
|
9
41
|
method: 'POST',
|
|
10
42
|
buildUrl: (_params, apiUrl) => `${apiUrl}${endpoint}`,
|
|
11
43
|
buildRequestData: (params, client) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"submit-and-wait-for-transaction-tree.js","sourceRoot":"","sources":["../../../../../../../src/clients/ledger-json-api/operations/v2/commands/submit-and-wait-for-transaction-tree.ts"],"names":[],"mappings":";;;AAAA,8CAAyD;AACzD,6BAAwB;
|
|
1
|
+
{"version":3,"file":"submit-and-wait-for-transaction-tree.js","sourceRoot":"","sources":["../../../../../../../src/clients/ledger-json-api/operations/v2/commands/submit-and-wait-for-transaction-tree.ts"],"names":[],"mappings":";;;AAAA,8CAAyD;AACzD,6BAAwB;AAExB,4DAA8D;AAE9D,MAAM,QAAQ,GAAG,mDAA4D,CAAC;AAE9E,sCAAsC;AACzB,QAAA,2CAA2C,GAAG,OAAC,CAAC,MAAM,CAAC;IAClE,wDAAwD;IACxD,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,wBAAa,CAAC;IAChC,4FAA4F;IAC5F,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,qHAAqH;IACrH,KAAK,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IACrC,yEAAyE;IACzE,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,qCAAqC;IACrC,MAAM,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IACtC,8BAA8B;IAC9B,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,uCAAuC;IACvC,mBAAmB,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACvC,+CAA+C;IAC/C,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACvC,+CAA+C;IAC/C,gBAAgB,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACpC,gCAAgC;IAChC,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,sCAAsC;IACtC,kBAAkB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE;IAC/C,kCAAkC;IAClC,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACrC,kDAAkD;IAClD,4BAA4B,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IAC5D,yCAAyC;IACzC,oBAAoB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE;CAClD,CAAC,CAAC;AAOU,QAAA,+BAA+B,GAAG,IAAA,yBAAkB,EAAiF;IAChJ,YAAY,EAAE,mDAA2C;IACzD,MAAM,EAAE,MAAM;IACd,QAAQ,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE,CAAC,GAAG,MAAM,GAAG,QAAQ,EAAE;IACrD,gBAAgB,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE;QACnC,OAAO;YACL,GAAG,MAAM;YACT,SAAS,EAAE,MAAM,CAAC,SAAS,IAAI,wCAAwC,IAAI,CAAC,GAAG,EAAE,EAAE;YACnF,KAAK,EAAE,MAAM,CAAC,KAAK,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,CAAC;SAC7C,CAAC;IACJ,CAAC;CACF,CAAC,CAAC"}
|
|
@@ -2,9 +2,11 @@ import { z } from 'zod';
|
|
|
2
2
|
import type { paths } from '../../../../../generated/canton/community/ledger/ledger-json-api/src/test/resources/json-api-docs/openapi';
|
|
3
3
|
declare const endpoint: "/v2/commands/submit-and-wait-for-transaction";
|
|
4
4
|
type BaseSubmitAndWaitForTransactionParams = paths[typeof endpoint]['post']['requestBody']['content']['application/json'];
|
|
5
|
-
export type SubmitAndWaitForTransactionParams = Omit<BaseSubmitAndWaitForTransactionParams, '
|
|
6
|
-
commandId
|
|
7
|
-
|
|
5
|
+
export type SubmitAndWaitForTransactionParams = Omit<BaseSubmitAndWaitForTransactionParams, 'commands'> & {
|
|
6
|
+
commands: Omit<BaseSubmitAndWaitForTransactionParams['commands'], 'commandId' | 'actAs'> & {
|
|
7
|
+
commandId?: string;
|
|
8
|
+
actAs?: string[];
|
|
9
|
+
};
|
|
8
10
|
};
|
|
9
11
|
export type SubmitAndWaitForTransactionResponse = paths[typeof endpoint]['post']['responses']['200']['content']['application/json'];
|
|
10
12
|
export declare const SubmitAndWaitForTransaction: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"submit-and-wait-for-transaction.d.ts","sourceRoot":"","sources":["../../../../../../../src/clients/ledger-json-api/operations/v2/commands/submit-and-wait-for-transaction.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,2GAA2G,CAAC;AAEvI,QAAA,MAAM,QAAQ,EAAG,8CAAuD,CAAC;AAGzE,KAAK,qCAAqC,GAAG,KAAK,CAAC,OAAO,QAAQ,CAAC,CAAC,MAAM,CAAC,CAAC,aAAa,CAAC,CAAC,SAAS,CAAC,CAAC,kBAAkB,CAAC,CAAC;AAG1H,MAAM,MAAM,iCAAiC,GAAG,IAAI,CAAC,qCAAqC,EAAE,WAAW,GAAG,OAAO,CAAC,GAAG;
|
|
1
|
+
{"version":3,"file":"submit-and-wait-for-transaction.d.ts","sourceRoot":"","sources":["../../../../../../../src/clients/ledger-json-api/operations/v2/commands/submit-and-wait-for-transaction.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,2GAA2G,CAAC;AAEvI,QAAA,MAAM,QAAQ,EAAG,8CAAuD,CAAC;AAGzE,KAAK,qCAAqC,GAAG,KAAK,CAAC,OAAO,QAAQ,CAAC,CAAC,MAAM,CAAC,CAAC,aAAa,CAAC,CAAC,SAAS,CAAC,CAAC,kBAAkB,CAAC,CAAC;AAG1H,MAAM,MAAM,iCAAiC,GAAG,IAAI,CAAC,qCAAqC,EAAE,UAAU,CAAC,GAAG;IACxG,QAAQ,EAAE,IAAI,CAAC,qCAAqC,CAAC,UAAU,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,GAAG;QACzF,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;KAClB,CAAC;CACH,CAAC;AAEF,MAAM,MAAM,mCAAmC,GAAG,KAAK,CAAC,OAAO,QAAQ,CAAC,CAAC,MAAM,CAAC,CAAC,WAAW,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,CAAC,CAAC,kBAAkB,CAAC,CAAC;AAEpI,eAAO,MAAM,2BAA2B;;;yBAc+lwG,yIAAsB;;;;;;;;;;;;;CAA3pwG,CAAC"}
|
package/build/src/clients/ledger-json-api/operations/v2/commands/submit-and-wait-for-transaction.js
CHANGED
|
@@ -10,9 +10,12 @@ exports.SubmitAndWaitForTransaction = (0, core_1.createApiOperation)({
|
|
|
10
10
|
buildUrl: (_params, apiUrl) => `${apiUrl}${endpoint}`,
|
|
11
11
|
buildRequestData: (params, client) => {
|
|
12
12
|
return {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
commands: {
|
|
14
|
+
...params.commands,
|
|
15
|
+
commandId: params.commands.commandId || `submit-and-wait-for-transaction-${Date.now()}`,
|
|
16
|
+
actAs: params.commands.actAs || [client.getPartyId()],
|
|
17
|
+
},
|
|
18
|
+
transactionFormat: params.transactionFormat,
|
|
16
19
|
};
|
|
17
20
|
},
|
|
18
21
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"submit-and-wait-for-transaction.js","sourceRoot":"","sources":["../../../../../../../src/clients/ledger-json-api/operations/v2/commands/submit-and-wait-for-transaction.ts"],"names":[],"mappings":";;;AAAA,8CAAyD;AACzD,6BAAwB;AAGxB,MAAM,QAAQ,GAAG,8CAAuD,CAAC;
|
|
1
|
+
{"version":3,"file":"submit-and-wait-for-transaction.js","sourceRoot":"","sources":["../../../../../../../src/clients/ledger-json-api/operations/v2/commands/submit-and-wait-for-transaction.ts"],"names":[],"mappings":";;;AAAA,8CAAyD;AACzD,6BAAwB;AAGxB,MAAM,QAAQ,GAAG,8CAAuD,CAAC;AAe5D,QAAA,2BAA2B,GAAG,IAAA,yBAAkB,EAAyE;IACpI,YAAY,EAAE,OAAC,CAAC,GAAG,EAAE;IACrB,MAAM,EAAE,MAAM;IACd,QAAQ,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE,CAAC,GAAG,MAAM,GAAG,QAAQ,EAAE;IACrD,gBAAgB,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE;QACnC,OAAO;YACL,QAAQ,EAAE;gBACR,GAAG,MAAM,CAAC,QAAQ;gBAClB,SAAS,EAAE,MAAM,CAAC,QAAQ,CAAC,SAAS,IAAI,mCAAmC,IAAI,CAAC,GAAG,EAAE,EAAE;gBACvF,KAAK,EAAE,MAAM,CAAC,QAAQ,CAAC,KAAK,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,CAAC;aACtD;YACD,iBAAiB,EAAE,MAAM,CAAC,iBAAiB;SAC5C,CAAC;IACJ,CAAC;CACF,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fairmint/canton-node-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.66",
|
|
4
4
|
"description": "Canton Node SDK",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"types": "build/src/index.d.ts",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"@types/jest": "30.0.0",
|
|
59
59
|
"@types/node": "24.1.0",
|
|
60
60
|
"@typescript-eslint/eslint-plugin": "8.38.0",
|
|
61
|
-
"@typescript-eslint/parser": "8.
|
|
61
|
+
"@typescript-eslint/parser": "8.39.0",
|
|
62
62
|
"eslint": "9.32.0",
|
|
63
63
|
"eslint-config-prettier": "10.1.8",
|
|
64
64
|
"eslint-plugin-import": "2.32.0",
|
|
@@ -80,6 +80,6 @@
|
|
|
80
80
|
"dotenv": "17.2.1",
|
|
81
81
|
"openapi-fetch": "^0.14.0",
|
|
82
82
|
"openapi-typescript": "^7.8.0",
|
|
83
|
-
"zod": "4.0.
|
|
83
|
+
"zod": "4.0.17"
|
|
84
84
|
}
|
|
85
85
|
}
|