@google/genai 1.11.0 → 1.13.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/genai.d.ts +170 -4
- package/dist/index.cjs +448 -27
- package/dist/index.mjs +448 -28
- package/dist/index.mjs.map +1 -1
- package/dist/node/index.cjs +448 -27
- package/dist/node/index.mjs +448 -28
- package/dist/node/index.mjs.map +1 -1
- package/dist/node/node.d.ts +170 -4
- package/dist/web/index.mjs +448 -28
- package/dist/web/index.mjs.map +1 -1
- package/dist/web/web.d.ts +170 -4
- package/package.json +17 -8
package/dist/web/web.d.ts
CHANGED
|
@@ -1041,6 +1041,8 @@ export declare interface ComputeTokensParameters {
|
|
|
1041
1041
|
|
|
1042
1042
|
/** Response for computing tokens. */
|
|
1043
1043
|
export declare class ComputeTokensResponse {
|
|
1044
|
+
/** Used to retain the full HTTP response. */
|
|
1045
|
+
sdkHttpResponse?: HttpResponse;
|
|
1044
1046
|
/** Lists of tokens info from the input. A ComputeTokensRequest could have multiple instances with a prompt in each instance. We also need to return lists of tokens info for the request with multiple instances. */
|
|
1045
1047
|
tokensInfo?: TokensInfo[];
|
|
1046
1048
|
}
|
|
@@ -1168,6 +1170,8 @@ export declare interface CountTokensParameters {
|
|
|
1168
1170
|
|
|
1169
1171
|
/** Response for counting tokens. */
|
|
1170
1172
|
export declare class CountTokensResponse {
|
|
1173
|
+
/** Used to retain the full HTTP response. */
|
|
1174
|
+
sdkHttpResponse?: HttpResponse;
|
|
1171
1175
|
/** Total number of tokens. */
|
|
1172
1176
|
totalTokens?: number;
|
|
1173
1177
|
/** Number of tokens in the cached part of the prompt (the cached content). */
|
|
@@ -1595,6 +1599,8 @@ export declare class DeleteModelResponse {
|
|
|
1595
1599
|
|
|
1596
1600
|
/** The return value of delete operation. */
|
|
1597
1601
|
export declare interface DeleteResourceJob {
|
|
1602
|
+
/** Used to retain the full HTTP response. */
|
|
1603
|
+
sdkHttpResponse?: HttpResponse;
|
|
1598
1604
|
name?: string;
|
|
1599
1605
|
done?: boolean;
|
|
1600
1606
|
error?: JobError;
|
|
@@ -1771,6 +1777,8 @@ export declare interface EditImageParameters {
|
|
|
1771
1777
|
|
|
1772
1778
|
/** Response for the request to edit an image. */
|
|
1773
1779
|
export declare class EditImageResponse {
|
|
1780
|
+
/** Used to retain the full HTTP response. */
|
|
1781
|
+
sdkHttpResponse?: HttpResponse;
|
|
1774
1782
|
/** Generated images. */
|
|
1775
1783
|
generatedImages?: GeneratedImage[];
|
|
1776
1784
|
}
|
|
@@ -1844,6 +1852,8 @@ export declare interface EmbedContentParameters {
|
|
|
1844
1852
|
|
|
1845
1853
|
/** Response for the embed_content method. */
|
|
1846
1854
|
export declare class EmbedContentResponse {
|
|
1855
|
+
/** Used to retain the full HTTP response. */
|
|
1856
|
+
sdkHttpResponse?: HttpResponse;
|
|
1847
1857
|
/** The embeddings for each request, in the same order as provided in
|
|
1848
1858
|
the batch request.
|
|
1849
1859
|
*/
|
|
@@ -2493,9 +2503,6 @@ export declare class GenerateContentResponse {
|
|
|
2493
2503
|
/** Timestamp when the request is made to the server.
|
|
2494
2504
|
*/
|
|
2495
2505
|
createTime?: string;
|
|
2496
|
-
/** Identifier for each response.
|
|
2497
|
-
*/
|
|
2498
|
-
responseId?: string;
|
|
2499
2506
|
/** The history of automatic function calling.
|
|
2500
2507
|
*/
|
|
2501
2508
|
automaticFunctionCallingHistory?: Content[];
|
|
@@ -2503,6 +2510,8 @@ export declare class GenerateContentResponse {
|
|
|
2503
2510
|
modelVersion?: string;
|
|
2504
2511
|
/** Output only. Content filter results for a prompt sent in the request. Note: Sent only in the first stream chunk. Only happens when no candidates were generated due to content violations. */
|
|
2505
2512
|
promptFeedback?: GenerateContentResponsePromptFeedback;
|
|
2513
|
+
/** Output only. response_id is used to identify each response. It is the encoding of the event_id. */
|
|
2514
|
+
responseId?: string;
|
|
2506
2515
|
/** Usage metadata about the response(s). */
|
|
2507
2516
|
usageMetadata?: GenerateContentResponseUsageMetadata;
|
|
2508
2517
|
/**
|
|
@@ -2779,6 +2788,8 @@ export declare interface GenerateImagesParameters {
|
|
|
2779
2788
|
|
|
2780
2789
|
/** The output images response. */
|
|
2781
2790
|
export declare class GenerateImagesResponse {
|
|
2791
|
+
/** Used to retain the full HTTP response. */
|
|
2792
|
+
sdkHttpResponse?: HttpResponse;
|
|
2782
2793
|
/** List of generated images.
|
|
2783
2794
|
*/
|
|
2784
2795
|
generatedImages?: GeneratedImage[];
|
|
@@ -2841,6 +2852,8 @@ export declare class GenerateVideosOperation implements Operation<GenerateVideos
|
|
|
2841
2852
|
error?: Record<string, unknown>;
|
|
2842
2853
|
/** The response if the operation is successful. */
|
|
2843
2854
|
response?: GenerateVideosResponse;
|
|
2855
|
+
/** The full HTTP response. */
|
|
2856
|
+
sdkHttpResponse?: HttpResponse;
|
|
2844
2857
|
/**
|
|
2845
2858
|
* Instantiates an Operation of the same type as the one being called with the fields set from the API response.
|
|
2846
2859
|
* @internal
|
|
@@ -4276,6 +4289,8 @@ export declare interface LiveMusicGenerationConfig {
|
|
|
4276
4289
|
muteDrums?: boolean;
|
|
4277
4290
|
/** Whether the audio output should contain only bass and drums. */
|
|
4278
4291
|
onlyBassAndDrums?: boolean;
|
|
4292
|
+
/** The mode of music generation. Default mode is QUALITY. */
|
|
4293
|
+
musicGenerationMode?: MusicGenerationMode;
|
|
4279
4294
|
}
|
|
4280
4295
|
|
|
4281
4296
|
/** The playback control signal to apply to the music generation. */
|
|
@@ -5019,6 +5034,45 @@ export declare class Models extends BaseModule {
|
|
|
5019
5034
|
private generateImagesInternal;
|
|
5020
5035
|
private editImageInternal;
|
|
5021
5036
|
private upscaleImageInternal;
|
|
5037
|
+
/**
|
|
5038
|
+
* Recontextualizes an image.
|
|
5039
|
+
*
|
|
5040
|
+
* There are two types of recontextualization currently supported:
|
|
5041
|
+
* 1) Imagen Product Recontext - Generate images of products in new scenes
|
|
5042
|
+
* and contexts.
|
|
5043
|
+
* 2) Virtual Try-On: Generate images of persons modeling fashion products.
|
|
5044
|
+
*
|
|
5045
|
+
* @param params - The parameters for recontextualizing an image.
|
|
5046
|
+
* @return The response from the API.
|
|
5047
|
+
*
|
|
5048
|
+
* @example
|
|
5049
|
+
* ```ts
|
|
5050
|
+
* const response1 = await ai.models.recontextImage({
|
|
5051
|
+
* model: 'imagen-product-recontext-preview-06-30',
|
|
5052
|
+
* source: {
|
|
5053
|
+
* prompt: 'In a modern kitchen setting.',
|
|
5054
|
+
* productImages: [productImage],
|
|
5055
|
+
* },
|
|
5056
|
+
* config: {
|
|
5057
|
+
* numberOfImages: 1,
|
|
5058
|
+
* },
|
|
5059
|
+
* });
|
|
5060
|
+
* console.log(response1?.generatedImages?.[0]?.image?.imageBytes);
|
|
5061
|
+
*
|
|
5062
|
+
* const response2 = await ai.models.recontextImage({
|
|
5063
|
+
* model: 'virtual-try-on-preview-08-04',
|
|
5064
|
+
* source: {
|
|
5065
|
+
* personImage: personImage,
|
|
5066
|
+
* productImages: [productImage],
|
|
5067
|
+
* },
|
|
5068
|
+
* config: {
|
|
5069
|
+
* numberOfImages: 1,
|
|
5070
|
+
* },
|
|
5071
|
+
* });
|
|
5072
|
+
* console.log(response2?.generatedImages?.[0]?.image?.imageBytes);
|
|
5073
|
+
* ```
|
|
5074
|
+
*/
|
|
5075
|
+
recontextImage(params: types.RecontextImageParameters): Promise<types.RecontextImageResponse>;
|
|
5022
5076
|
/**
|
|
5023
5077
|
* Fetches information about a model by name.
|
|
5024
5078
|
*
|
|
@@ -5133,6 +5187,29 @@ export declare interface MultiSpeakerVoiceConfig {
|
|
|
5133
5187
|
speakerVoiceConfigs?: SpeakerVoiceConfig[];
|
|
5134
5188
|
}
|
|
5135
5189
|
|
|
5190
|
+
/** The mode of music generation. */
|
|
5191
|
+
export declare enum MusicGenerationMode {
|
|
5192
|
+
/**
|
|
5193
|
+
* Rely on the server default generation mode.
|
|
5194
|
+
*/
|
|
5195
|
+
MUSIC_GENERATION_MODE_UNSPECIFIED = "MUSIC_GENERATION_MODE_UNSPECIFIED",
|
|
5196
|
+
/**
|
|
5197
|
+
* Steer text prompts to regions of latent space with higher quality
|
|
5198
|
+
music.
|
|
5199
|
+
*/
|
|
5200
|
+
QUALITY = "QUALITY",
|
|
5201
|
+
/**
|
|
5202
|
+
* Steer text prompts to regions of latent space with a larger
|
|
5203
|
+
diversity of music.
|
|
5204
|
+
*/
|
|
5205
|
+
DIVERSITY = "DIVERSITY",
|
|
5206
|
+
/**
|
|
5207
|
+
* Steer text prompts to regions of latent space more likely to
|
|
5208
|
+
generate music with vocals.
|
|
5209
|
+
*/
|
|
5210
|
+
VOCALIZATION = "VOCALIZATION"
|
|
5211
|
+
}
|
|
5212
|
+
|
|
5136
5213
|
/** A long-running operation. */
|
|
5137
5214
|
export declare interface Operation<T> {
|
|
5138
5215
|
/** The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`. */
|
|
@@ -5408,6 +5485,12 @@ export declare interface ProactivityConfig {
|
|
|
5408
5485
|
proactiveAudio?: boolean;
|
|
5409
5486
|
}
|
|
5410
5487
|
|
|
5488
|
+
/** An image of the product. */
|
|
5489
|
+
export declare interface ProductImage {
|
|
5490
|
+
/** An image of the product to be recontextualized. */
|
|
5491
|
+
productImage?: Image_2;
|
|
5492
|
+
}
|
|
5493
|
+
|
|
5411
5494
|
/** A RagChunk includes the content of a chunk of a RagFile, and associated metadata. */
|
|
5412
5495
|
export declare interface RagChunk {
|
|
5413
5496
|
/** If populated, represents where the chunk starts and ends in the document. */
|
|
@@ -5503,6 +5586,69 @@ export declare interface RealtimeInputConfig {
|
|
|
5503
5586
|
turnCoverage?: TurnCoverage;
|
|
5504
5587
|
}
|
|
5505
5588
|
|
|
5589
|
+
/** Configuration for recontextualizing an image. */
|
|
5590
|
+
export declare interface RecontextImageConfig {
|
|
5591
|
+
/** Used to override HTTP request options. */
|
|
5592
|
+
httpOptions?: HttpOptions;
|
|
5593
|
+
/** Abort signal which can be used to cancel the request.
|
|
5594
|
+
|
|
5595
|
+
NOTE: AbortSignal is a client-only operation. Using it to cancel an
|
|
5596
|
+
operation will not cancel the request in the service. You will still
|
|
5597
|
+
be charged usage for any applicable operations.
|
|
5598
|
+
*/
|
|
5599
|
+
abortSignal?: AbortSignal;
|
|
5600
|
+
/** Number of images to generate. */
|
|
5601
|
+
numberOfImages?: number;
|
|
5602
|
+
/** The number of sampling steps. A higher value has better image
|
|
5603
|
+
quality, while a lower value has better latency. */
|
|
5604
|
+
baseSteps?: number;
|
|
5605
|
+
/** Cloud Storage URI used to store the generated images. */
|
|
5606
|
+
outputGcsUri?: string;
|
|
5607
|
+
/** Random seed for image generation. */
|
|
5608
|
+
seed?: number;
|
|
5609
|
+
/** Filter level for safety filtering. */
|
|
5610
|
+
safetyFilterLevel?: SafetyFilterLevel;
|
|
5611
|
+
/** Whether allow to generate person images, and restrict to specific
|
|
5612
|
+
ages. */
|
|
5613
|
+
personGeneration?: PersonGeneration;
|
|
5614
|
+
/** MIME type of the generated image. */
|
|
5615
|
+
outputMimeType?: string;
|
|
5616
|
+
/** Compression quality of the generated image (for ``image/jpeg``
|
|
5617
|
+
only). */
|
|
5618
|
+
outputCompressionQuality?: number;
|
|
5619
|
+
/** Whether to use the prompt rewriting logic. */
|
|
5620
|
+
enhancePrompt?: boolean;
|
|
5621
|
+
}
|
|
5622
|
+
|
|
5623
|
+
/** The parameters for recontextualizing an image. */
|
|
5624
|
+
export declare interface RecontextImageParameters {
|
|
5625
|
+
/** ID of the model to use. For a list of models, see `Google models
|
|
5626
|
+
<https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models>`_. */
|
|
5627
|
+
model: string;
|
|
5628
|
+
/** A set of source input(s) for image recontextualization. */
|
|
5629
|
+
source: RecontextImageSource;
|
|
5630
|
+
/** Configuration for image recontextualization. */
|
|
5631
|
+
config?: RecontextImageConfig;
|
|
5632
|
+
}
|
|
5633
|
+
|
|
5634
|
+
/** The output images response. */
|
|
5635
|
+
export declare class RecontextImageResponse {
|
|
5636
|
+
/** List of generated images. */
|
|
5637
|
+
generatedImages?: GeneratedImage[];
|
|
5638
|
+
}
|
|
5639
|
+
|
|
5640
|
+
/** A set of source input(s) for image recontextualization. */
|
|
5641
|
+
export declare interface RecontextImageSource {
|
|
5642
|
+
/** A text prompt for guiding the model during image
|
|
5643
|
+
recontextualization. Not supported for Virtual Try-On. */
|
|
5644
|
+
prompt?: string;
|
|
5645
|
+
/** Image of the person or subject who will be wearing the
|
|
5646
|
+
product(s). */
|
|
5647
|
+
personImage?: Image_2;
|
|
5648
|
+
/** A list of product images. */
|
|
5649
|
+
productImages?: ProductImage[];
|
|
5650
|
+
}
|
|
5651
|
+
|
|
5506
5652
|
export declare type ReferenceImage = RawReferenceImage | MaskReferenceImage | ControlReferenceImage | StyleReferenceImage | SubjectReferenceImage;
|
|
5507
5653
|
|
|
5508
5654
|
/** Private class that represents a Reference image that is sent to API. */
|
|
@@ -6418,6 +6564,8 @@ export declare interface TuningExample {
|
|
|
6418
6564
|
|
|
6419
6565
|
/** A tuning job. */
|
|
6420
6566
|
export declare interface TuningJob {
|
|
6567
|
+
/** Used to retain the full HTTP response. */
|
|
6568
|
+
sdkHttpResponse?: HttpResponse;
|
|
6421
6569
|
/** Output only. Identifier. Resource name of a TuningJob. Format: `projects/{project}/locations/{location}/tuningJobs/{tuning_job}` */
|
|
6422
6570
|
name?: string;
|
|
6423
6571
|
/** Output only. The detailed state of the job. */
|
|
@@ -6466,6 +6614,8 @@ export declare interface TuningJob {
|
|
|
6466
6614
|
|
|
6467
6615
|
/** A long-running operation. */
|
|
6468
6616
|
export declare interface TuningOperation {
|
|
6617
|
+
/** Used to retain the full HTTP response. */
|
|
6618
|
+
sdkHttpResponse?: HttpResponse;
|
|
6469
6619
|
/** The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`. */
|
|
6470
6620
|
name?: string;
|
|
6471
6621
|
/** Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any. */
|
|
@@ -6626,6 +6776,7 @@ declare namespace types {
|
|
|
6626
6776
|
TurnCoverage,
|
|
6627
6777
|
FunctionResponseScheduling,
|
|
6628
6778
|
Scale,
|
|
6779
|
+
MusicGenerationMode,
|
|
6629
6780
|
LiveMusicPlaybackControl,
|
|
6630
6781
|
VideoMetadata,
|
|
6631
6782
|
Blob_2 as Blob,
|
|
@@ -6736,6 +6887,11 @@ declare namespace types {
|
|
|
6736
6887
|
EditImageConfig,
|
|
6737
6888
|
EditImageResponse,
|
|
6738
6889
|
UpscaleImageResponse,
|
|
6890
|
+
ProductImage,
|
|
6891
|
+
RecontextImageSource,
|
|
6892
|
+
RecontextImageConfig,
|
|
6893
|
+
RecontextImageParameters,
|
|
6894
|
+
RecontextImageResponse,
|
|
6739
6895
|
GetModelConfig,
|
|
6740
6896
|
GetModelParameters,
|
|
6741
6897
|
Endpoint,
|
|
@@ -7075,6 +7231,8 @@ export declare interface UpscaleImageParameters {
|
|
|
7075
7231
|
}
|
|
7076
7232
|
|
|
7077
7233
|
export declare class UpscaleImageResponse {
|
|
7234
|
+
/** Used to retain the full HTTP response. */
|
|
7235
|
+
sdkHttpResponse?: HttpResponse;
|
|
7078
7236
|
/** Generated images. */
|
|
7079
7237
|
generatedImages?: GeneratedImage[];
|
|
7080
7238
|
}
|
|
@@ -7110,7 +7268,15 @@ export declare enum UrlRetrievalStatus {
|
|
|
7110
7268
|
/**
|
|
7111
7269
|
* Url retrieval is failed due to error.
|
|
7112
7270
|
*/
|
|
7113
|
-
URL_RETRIEVAL_STATUS_ERROR = "URL_RETRIEVAL_STATUS_ERROR"
|
|
7271
|
+
URL_RETRIEVAL_STATUS_ERROR = "URL_RETRIEVAL_STATUS_ERROR",
|
|
7272
|
+
/**
|
|
7273
|
+
* Url retrieval is failed because the content is behind paywall.
|
|
7274
|
+
*/
|
|
7275
|
+
URL_RETRIEVAL_STATUS_PAYWALL = "URL_RETRIEVAL_STATUS_PAYWALL",
|
|
7276
|
+
/**
|
|
7277
|
+
* Url retrieval is failed because the content is unsafe.
|
|
7278
|
+
*/
|
|
7279
|
+
URL_RETRIEVAL_STATUS_UNSAFE = "URL_RETRIEVAL_STATUS_UNSAFE"
|
|
7114
7280
|
}
|
|
7115
7281
|
|
|
7116
7282
|
/** Usage metadata about response(s). */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@google/genai",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/node/index.mjs",
|
|
@@ -38,18 +38,25 @@
|
|
|
38
38
|
},
|
|
39
39
|
"scripts": {
|
|
40
40
|
"prepare": "npm run build-prod",
|
|
41
|
-
"build": "rollup -c &&
|
|
42
|
-
"build-prod": "rollup -c &&
|
|
41
|
+
"build": "rollup -c && npm-run-all --parallel api-extractor:dev:* && node scripts/ignore_missing_mcp_dep.js",
|
|
42
|
+
"build-prod": "rollup -c && npm-run-all --parallel api-extractor:prod:* && node scripts/ignore_missing_mcp_dep.js",
|
|
43
|
+
"api-extractor:dev:main": "api-extractor run --local --verbose",
|
|
44
|
+
"api-extractor:dev:node": "api-extractor run -c api-extractor.node.json --local --verbose",
|
|
45
|
+
"api-extractor:dev:web": "api-extractor run -c api-extractor.web.json --local --verbose",
|
|
46
|
+
"api-extractor:prod:main": "api-extractor run --verbose",
|
|
47
|
+
"api-extractor:prod:node": "api-extractor run -c api-extractor.node.json --verbose",
|
|
48
|
+
"api-extractor:prod:web": "api-extractor run -c api-extractor.web.json --verbose",
|
|
43
49
|
"unit-test": "tsc && jasmine dist/test/unit/**/*_test.js dist/test/unit/*_test.js",
|
|
44
50
|
"system-test": "tsc && jasmine dist/test/system/**/*_test.js",
|
|
45
|
-
"test-server-tests": "tsc && GOOGLE_CLOUD_PROJECT=googcloudproj GOOGLE_CLOUD_LOCATION=googcloudloc jasmine dist/test/system/node/*_test.js
|
|
46
|
-
"test-server-tests:record": "tsc && jasmine --fail-fast dist/test/system/node/*_test.js
|
|
51
|
+
"test-server-tests": "tsc && GOOGLE_CLOUD_PROJECT=googcloudproj GOOGLE_CLOUD_LOCATION=googcloudloc jasmine dist/test/system/node/*_test.js -- --test-server",
|
|
52
|
+
"test-server-tests:record": "tsc && jasmine --fail-fast dist/test/system/node/*_test.js -- --test-server --record",
|
|
47
53
|
"docs": "typedoc && node --loader ts-node/esm scripts/add_docsite_license_headers.ts",
|
|
48
54
|
"pages-main": "node --loader ts-node/esm scripts/generate_pages.ts main",
|
|
49
55
|
"pages-release": "node --loader ts-node/esm scripts/generate_pages.ts release",
|
|
50
56
|
"format": "prettier '**/*.ts' '**/*.mjs' '**/*.json' --write",
|
|
51
57
|
"lint": "eslint '**/*.ts'",
|
|
52
|
-
"lint-fix": "eslint --fix '**/*.ts'"
|
|
58
|
+
"lint-fix": "eslint --fix '**/*.ts'",
|
|
59
|
+
"coverage-report": "./test/generate_report.sh"
|
|
53
60
|
},
|
|
54
61
|
"engines": {
|
|
55
62
|
"node": ">=20.0.0"
|
|
@@ -71,21 +78,23 @@
|
|
|
71
78
|
],
|
|
72
79
|
"devDependencies": {
|
|
73
80
|
"@eslint/js": "9.20.0",
|
|
74
|
-
"@microsoft/api-extractor": "^7.
|
|
81
|
+
"@microsoft/api-extractor": "^7.52.9",
|
|
75
82
|
"@rollup/plugin-json": "^6.1.0",
|
|
76
83
|
"@types/jasmine": "^5.1.2",
|
|
77
84
|
"@types/node": "^20.9.0",
|
|
78
85
|
"@types/unist": "^3.0.3",
|
|
79
86
|
"@types/ws": "^8.5.14",
|
|
87
|
+
"c8": "^10.1.3",
|
|
80
88
|
"eslint": "8.57.0",
|
|
81
89
|
"gts": "^5.2.0",
|
|
82
90
|
"jasmine": "^5.5.0",
|
|
83
91
|
"jasmine-reporters": "^2.4.0",
|
|
92
|
+
"npm-run-all": "^4.1.5",
|
|
84
93
|
"nyc": "^17.1.0",
|
|
85
94
|
"prettier": "3.3.3",
|
|
86
95
|
"prettier-plugin-organize-imports": "^4.1.0",
|
|
87
96
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
88
|
-
"test-server-sdk": "^0.2.
|
|
97
|
+
"test-server-sdk": "^0.2.6",
|
|
89
98
|
"ts-node": "^10.9.2",
|
|
90
99
|
"tslib": "^2.8.1",
|
|
91
100
|
"tsx": "^4.19.4",
|