@myagentroam/protocol 0.9.74 → 0.9.76
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 +19 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2057,6 +2057,7 @@ export declare const marAgentNodeModelSummarySchema: z.ZodEffects<z.ZodObject<{
|
|
|
2057
2057
|
readonly defaultReasoningEffort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max", "ultra"]>>;
|
|
2058
2058
|
readonly titleGeneration: z.ZodDefault<z.ZodBoolean>;
|
|
2059
2059
|
readonly codeMode: z.ZodDefault<z.ZodBoolean>;
|
|
2060
|
+
readonly highDensityCompaction: z.ZodDefault<z.ZodBoolean>;
|
|
2060
2061
|
readonly hostedWebSearch: z.ZodBoolean;
|
|
2061
2062
|
readonly responsesTransport: z.ZodOptional<z.ZodDiscriminatedUnion<"transport", [z.ZodObject<{
|
|
2062
2063
|
transport: z.ZodLiteral<"WEBSOCKET">;
|
|
@@ -2092,6 +2093,7 @@ export declare const marAgentNodeModelSummarySchema: z.ZodEffects<z.ZodObject<{
|
|
|
2092
2093
|
reasoningEfforts: ("low" | "medium" | "high" | "xhigh" | "max" | "ultra")[];
|
|
2093
2094
|
titleGeneration: boolean;
|
|
2094
2095
|
codeMode: boolean;
|
|
2096
|
+
highDensityCompaction: boolean;
|
|
2095
2097
|
hostedWebSearch: boolean;
|
|
2096
2098
|
responsesPreviousResponseId: boolean;
|
|
2097
2099
|
apiKeyConfigured?: boolean | undefined;
|
|
@@ -2131,6 +2133,7 @@ export declare const marAgentNodeModelSummarySchema: z.ZodEffects<z.ZodObject<{
|
|
|
2131
2133
|
defaultReasoningEffort?: "low" | "medium" | "high" | "xhigh" | "max" | "ultra" | undefined;
|
|
2132
2134
|
titleGeneration?: boolean | undefined;
|
|
2133
2135
|
codeMode?: boolean | undefined;
|
|
2136
|
+
highDensityCompaction?: boolean | undefined;
|
|
2134
2137
|
responsesTransport?: {
|
|
2135
2138
|
transport: "WEBSOCKET";
|
|
2136
2139
|
} | {
|
|
@@ -2166,6 +2169,7 @@ export declare const marAgentModelSummarySchema: z.ZodEffects<z.ZodObject<{
|
|
|
2166
2169
|
defaultReasoningEffort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max", "ultra"]>>;
|
|
2167
2170
|
titleGeneration: z.ZodDefault<z.ZodBoolean>;
|
|
2168
2171
|
codeMode: z.ZodDefault<z.ZodBoolean>;
|
|
2172
|
+
highDensityCompaction: z.ZodDefault<z.ZodBoolean>;
|
|
2169
2173
|
hostedWebSearch: z.ZodBoolean;
|
|
2170
2174
|
responsesTransport: z.ZodOptional<z.ZodDiscriminatedUnion<"transport", [z.ZodObject<{
|
|
2171
2175
|
transport: z.ZodLiteral<"WEBSOCKET">;
|
|
@@ -2201,6 +2205,7 @@ export declare const marAgentModelSummarySchema: z.ZodEffects<z.ZodObject<{
|
|
|
2201
2205
|
reasoningEfforts: ("low" | "medium" | "high" | "xhigh" | "max" | "ultra")[];
|
|
2202
2206
|
titleGeneration: boolean;
|
|
2203
2207
|
codeMode: boolean;
|
|
2208
|
+
highDensityCompaction: boolean;
|
|
2204
2209
|
hostedWebSearch: boolean;
|
|
2205
2210
|
responsesPreviousResponseId: boolean;
|
|
2206
2211
|
access: "PUBLIC" | "RESTRICTED";
|
|
@@ -2242,6 +2247,7 @@ export declare const marAgentModelSummarySchema: z.ZodEffects<z.ZodObject<{
|
|
|
2242
2247
|
defaultReasoningEffort?: "low" | "medium" | "high" | "xhigh" | "max" | "ultra" | undefined;
|
|
2243
2248
|
titleGeneration?: boolean | undefined;
|
|
2244
2249
|
codeMode?: boolean | undefined;
|
|
2250
|
+
highDensityCompaction?: boolean | undefined;
|
|
2245
2251
|
responsesTransport?: {
|
|
2246
2252
|
transport: "WEBSOCKET";
|
|
2247
2253
|
} | {
|
|
@@ -2269,6 +2275,7 @@ export interface MarAgentModelSummary {
|
|
|
2269
2275
|
defaultReasoningEffort?: MarAgentReasoningEffort;
|
|
2270
2276
|
titleGeneration: boolean;
|
|
2271
2277
|
codeMode: boolean;
|
|
2278
|
+
highDensityCompaction: boolean;
|
|
2272
2279
|
hostedWebSearch: boolean;
|
|
2273
2280
|
responsesTransport?: MarAgentResponsesTransport;
|
|
2274
2281
|
responsesEncoding?: 'STANDARD' | 'LITE';
|
|
@@ -2657,6 +2664,7 @@ export declare const marAgentRuntimeModelConfigurationSchema: z.ZodEffects<z.Zod
|
|
|
2657
2664
|
defaultReasoningEffort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max", "ultra"]>>;
|
|
2658
2665
|
titleGeneration: z.ZodDefault<z.ZodBoolean>;
|
|
2659
2666
|
codeMode: z.ZodDefault<z.ZodBoolean>;
|
|
2667
|
+
highDensityCompaction: z.ZodDefault<z.ZodBoolean>;
|
|
2660
2668
|
hostedWebSearch: z.ZodBoolean;
|
|
2661
2669
|
responsesTransport: z.ZodOptional<z.ZodDiscriminatedUnion<"transport", [z.ZodObject<{
|
|
2662
2670
|
transport: z.ZodLiteral<"WEBSOCKET">;
|
|
@@ -2691,6 +2699,7 @@ export declare const marAgentRuntimeModelConfigurationSchema: z.ZodEffects<z.Zod
|
|
|
2691
2699
|
reasoningEfforts: ("low" | "medium" | "high" | "xhigh" | "max" | "ultra")[];
|
|
2692
2700
|
titleGeneration: boolean;
|
|
2693
2701
|
codeMode: boolean;
|
|
2702
|
+
highDensityCompaction: boolean;
|
|
2694
2703
|
hostedWebSearch: boolean;
|
|
2695
2704
|
responsesPreviousResponseId: boolean;
|
|
2696
2705
|
credential?: {
|
|
@@ -2790,6 +2799,7 @@ export declare const marAgentRuntimeModelConfigurationSchema: z.ZodEffects<z.Zod
|
|
|
2790
2799
|
defaultReasoningEffort?: "low" | "medium" | "high" | "xhigh" | "max" | "ultra" | undefined;
|
|
2791
2800
|
titleGeneration?: boolean | undefined;
|
|
2792
2801
|
codeMode?: boolean | undefined;
|
|
2802
|
+
highDensityCompaction?: boolean | undefined;
|
|
2793
2803
|
responsesTransport?: {
|
|
2794
2804
|
transport: "WEBSOCKET";
|
|
2795
2805
|
} | {
|
|
@@ -3213,6 +3223,7 @@ export declare const marAgentModelTransportTestInputSchema: z.ZodObject<{
|
|
|
3213
3223
|
defaultReasoningEffort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max", "ultra"]>>;
|
|
3214
3224
|
titleGeneration: z.ZodDefault<z.ZodBoolean>;
|
|
3215
3225
|
codeMode: z.ZodDefault<z.ZodBoolean>;
|
|
3226
|
+
highDensityCompaction: z.ZodDefault<z.ZodBoolean>;
|
|
3216
3227
|
hostedWebSearch: z.ZodBoolean;
|
|
3217
3228
|
responsesTransport: z.ZodOptional<z.ZodDiscriminatedUnion<"transport", [z.ZodObject<{
|
|
3218
3229
|
transport: z.ZodLiteral<"WEBSOCKET">;
|
|
@@ -3247,6 +3258,7 @@ export declare const marAgentModelTransportTestInputSchema: z.ZodObject<{
|
|
|
3247
3258
|
reasoningEfforts: ("low" | "medium" | "high" | "xhigh" | "max" | "ultra")[];
|
|
3248
3259
|
titleGeneration: boolean;
|
|
3249
3260
|
codeMode: boolean;
|
|
3261
|
+
highDensityCompaction: boolean;
|
|
3250
3262
|
hostedWebSearch: boolean;
|
|
3251
3263
|
responsesPreviousResponseId: boolean;
|
|
3252
3264
|
credential?: {
|
|
@@ -3346,6 +3358,7 @@ export declare const marAgentModelTransportTestInputSchema: z.ZodObject<{
|
|
|
3346
3358
|
defaultReasoningEffort?: "low" | "medium" | "high" | "xhigh" | "max" | "ultra" | undefined;
|
|
3347
3359
|
titleGeneration?: boolean | undefined;
|
|
3348
3360
|
codeMode?: boolean | undefined;
|
|
3361
|
+
highDensityCompaction?: boolean | undefined;
|
|
3349
3362
|
responsesTransport?: {
|
|
3350
3363
|
transport: "WEBSOCKET";
|
|
3351
3364
|
} | {
|
|
@@ -3471,6 +3484,7 @@ export declare const marAgentStoredModelConfigurationSchema: z.ZodEffects<z.ZodO
|
|
|
3471
3484
|
defaultReasoningEffort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max", "ultra"]>>;
|
|
3472
3485
|
titleGeneration: z.ZodDefault<z.ZodBoolean>;
|
|
3473
3486
|
codeMode: z.ZodDefault<z.ZodBoolean>;
|
|
3487
|
+
highDensityCompaction: z.ZodDefault<z.ZodBoolean>;
|
|
3474
3488
|
hostedWebSearch: z.ZodBoolean;
|
|
3475
3489
|
responsesTransport: z.ZodOptional<z.ZodDiscriminatedUnion<"transport", [z.ZodObject<{
|
|
3476
3490
|
transport: z.ZodLiteral<"WEBSOCKET">;
|
|
@@ -3512,6 +3526,7 @@ export declare const marAgentStoredModelConfigurationSchema: z.ZodEffects<z.ZodO
|
|
|
3512
3526
|
reasoningEfforts: ("low" | "medium" | "high" | "xhigh" | "max" | "ultra")[];
|
|
3513
3527
|
titleGeneration: boolean;
|
|
3514
3528
|
codeMode: boolean;
|
|
3529
|
+
highDensityCompaction: boolean;
|
|
3515
3530
|
hostedWebSearch: boolean;
|
|
3516
3531
|
responsesPreviousResponseId: boolean;
|
|
3517
3532
|
defaultReasoningEffort?: "low" | "medium" | "high" | "xhigh" | "max" | "ultra" | undefined;
|
|
@@ -3545,6 +3560,7 @@ export declare const marAgentStoredModelConfigurationSchema: z.ZodEffects<z.ZodO
|
|
|
3545
3560
|
defaultReasoningEffort?: "low" | "medium" | "high" | "xhigh" | "max" | "ultra" | undefined;
|
|
3546
3561
|
titleGeneration?: boolean | undefined;
|
|
3547
3562
|
codeMode?: boolean | undefined;
|
|
3563
|
+
highDensityCompaction?: boolean | undefined;
|
|
3548
3564
|
responsesTransport?: {
|
|
3549
3565
|
transport: "WEBSOCKET";
|
|
3550
3566
|
} | {
|
|
@@ -13108,6 +13124,7 @@ export declare const hostedConversationSnapshotSchema: z.ZodEffects<z.ZodObject<
|
|
|
13108
13124
|
readonly defaultReasoningEffort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "xhigh", "max", "ultra"]>>;
|
|
13109
13125
|
readonly titleGeneration: z.ZodDefault<z.ZodBoolean>;
|
|
13110
13126
|
readonly codeMode: z.ZodDefault<z.ZodBoolean>;
|
|
13127
|
+
readonly highDensityCompaction: z.ZodDefault<z.ZodBoolean>;
|
|
13111
13128
|
readonly hostedWebSearch: z.ZodBoolean;
|
|
13112
13129
|
readonly responsesTransport: z.ZodOptional<z.ZodDiscriminatedUnion<"transport", [z.ZodObject<{
|
|
13113
13130
|
transport: z.ZodLiteral<"WEBSOCKET">;
|
|
@@ -13143,6 +13160,7 @@ export declare const hostedConversationSnapshotSchema: z.ZodEffects<z.ZodObject<
|
|
|
13143
13160
|
reasoningEfforts: ("low" | "medium" | "high" | "xhigh" | "max" | "ultra")[];
|
|
13144
13161
|
titleGeneration: boolean;
|
|
13145
13162
|
codeMode: boolean;
|
|
13163
|
+
highDensityCompaction: boolean;
|
|
13146
13164
|
hostedWebSearch: boolean;
|
|
13147
13165
|
responsesPreviousResponseId: boolean;
|
|
13148
13166
|
apiKeyConfigured?: boolean | undefined;
|
|
@@ -13182,6 +13200,7 @@ export declare const hostedConversationSnapshotSchema: z.ZodEffects<z.ZodObject<
|
|
|
13182
13200
|
defaultReasoningEffort?: "low" | "medium" | "high" | "xhigh" | "max" | "ultra" | undefined;
|
|
13183
13201
|
titleGeneration?: boolean | undefined;
|
|
13184
13202
|
codeMode?: boolean | undefined;
|
|
13203
|
+
highDensityCompaction?: boolean | undefined;
|
|
13185
13204
|
responsesTransport?: {
|
|
13186
13205
|
transport: "WEBSOCKET";
|
|
13187
13206
|
} | {
|
package/dist/index.js
CHANGED
|
@@ -589,6 +589,7 @@ const marAgentModelShape = {
|
|
|
589
589
|
defaultReasoningEffort: marAgentReasoningEffortSchema.optional(),
|
|
590
590
|
titleGeneration: z.boolean().default(false),
|
|
591
591
|
codeMode: z.boolean().default(false),
|
|
592
|
+
highDensityCompaction: z.boolean().default(false),
|
|
592
593
|
hostedWebSearch: z.boolean(),
|
|
593
594
|
responsesTransport: marAgentResponsesTransportSchema.optional(),
|
|
594
595
|
responsesEncoding: z.enum(['STANDARD', 'LITE']).optional(),
|