@marketrix.ai/widget 3.3.132 → 3.3.133
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/sdk/index.d.ts +192 -0
- package/dist/src/sdk/index.d.ts.map +1 -1
- package/dist/src/sdk/routes.d.ts +192 -0
- package/dist/src/sdk/routes.d.ts.map +1 -1
- package/dist/src/sdk/schema.d.ts +200 -9
- package/dist/src/sdk/schema.d.ts.map +1 -1
- package/dist/widget.mjs +67 -67
- package/dist/widget.mjs.map +1 -1
- package/package.json +1 -1
package/dist/src/sdk/index.d.ts
CHANGED
|
@@ -6879,6 +6879,27 @@ export declare const sdk: {
|
|
|
6879
6879
|
run_id: number;
|
|
6880
6880
|
status: "failed";
|
|
6881
6881
|
error?: string | undefined;
|
|
6882
|
+
} | {
|
|
6883
|
+
type: "reaction/completed";
|
|
6884
|
+
reaction_id: number;
|
|
6885
|
+
run_id: number;
|
|
6886
|
+
application_id: number;
|
|
6887
|
+
} | {
|
|
6888
|
+
type: "reaction/failed";
|
|
6889
|
+
reaction_id: number;
|
|
6890
|
+
run_id: number;
|
|
6891
|
+
application_id: number;
|
|
6892
|
+
error?: string | undefined;
|
|
6893
|
+
} | {
|
|
6894
|
+
type: "reaction/progress";
|
|
6895
|
+
reaction_id: number;
|
|
6896
|
+
run_id: number;
|
|
6897
|
+
application_id: number;
|
|
6898
|
+
result_id: number;
|
|
6899
|
+
persona_id: number | null;
|
|
6900
|
+
completed_personas: number;
|
|
6901
|
+
total_personas: number;
|
|
6902
|
+
failed_personas: number;
|
|
6882
6903
|
}, unknown, void>, import("@orpc/shared").AsyncIteratorClass<{
|
|
6883
6904
|
type: "simulation/updated";
|
|
6884
6905
|
simulation_id: number;
|
|
@@ -7015,6 +7036,27 @@ export declare const sdk: {
|
|
|
7015
7036
|
run_id: number;
|
|
7016
7037
|
status: "failed";
|
|
7017
7038
|
error?: string | undefined;
|
|
7039
|
+
} | {
|
|
7040
|
+
type: "reaction/completed";
|
|
7041
|
+
reaction_id: number;
|
|
7042
|
+
run_id: number;
|
|
7043
|
+
application_id: number;
|
|
7044
|
+
} | {
|
|
7045
|
+
type: "reaction/failed";
|
|
7046
|
+
reaction_id: number;
|
|
7047
|
+
run_id: number;
|
|
7048
|
+
application_id: number;
|
|
7049
|
+
error?: string | undefined;
|
|
7050
|
+
} | {
|
|
7051
|
+
type: "reaction/progress";
|
|
7052
|
+
reaction_id: number;
|
|
7053
|
+
run_id: number;
|
|
7054
|
+
application_id: number;
|
|
7055
|
+
result_id: number;
|
|
7056
|
+
persona_id: number | null;
|
|
7057
|
+
completed_personas: number;
|
|
7058
|
+
total_personas: number;
|
|
7059
|
+
failed_personas: number;
|
|
7018
7060
|
}, unknown, void>>, Record<never, never>>;
|
|
7019
7061
|
workosWebhook: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
7020
7062
|
event: import("zod").ZodString;
|
|
@@ -7226,6 +7268,9 @@ export declare const sdk: {
|
|
|
7226
7268
|
simulations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7227
7269
|
description: import("zod").ZodString;
|
|
7228
7270
|
selected: import("zod").ZodBoolean;
|
|
7271
|
+
simulation_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7272
|
+
task_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7273
|
+
status: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7229
7274
|
}, import("zod/v4/core").$strip>>;
|
|
7230
7275
|
persona_ids: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber>>;
|
|
7231
7276
|
results: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -7247,8 +7292,54 @@ export declare const sdk: {
|
|
|
7247
7292
|
score: import("zod").ZodNumber;
|
|
7248
7293
|
justification: import("zod").ZodString;
|
|
7249
7294
|
}, import("zod/v4/core").$strip>>;
|
|
7295
|
+
simulation_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7296
|
+
task_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7297
|
+
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
7298
|
+
pending: "pending";
|
|
7299
|
+
completed: "completed";
|
|
7300
|
+
failed: "failed";
|
|
7301
|
+
}>>;
|
|
7302
|
+
replay_evidence: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7303
|
+
simulations: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7304
|
+
simulation_id: import("zod").ZodNumber;
|
|
7305
|
+
task_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7306
|
+
step_count: import("zod").ZodNumber;
|
|
7307
|
+
summary: import("zod").ZodString;
|
|
7308
|
+
}, import("zod/v4/core").$strip>>>;
|
|
7309
|
+
moments: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7310
|
+
sim_index: import("zod").ZodNumber;
|
|
7311
|
+
step_index: import("zod").ZodNumber;
|
|
7312
|
+
label: import("zod").ZodString;
|
|
7313
|
+
}, import("zod/v4/core").$strip>>>;
|
|
7314
|
+
context_refs: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7315
|
+
type: import("zod").ZodEnum<{
|
|
7316
|
+
doc: "doc";
|
|
7317
|
+
sim: "sim";
|
|
7318
|
+
session: "session";
|
|
7319
|
+
}>;
|
|
7320
|
+
id: import("zod").ZodString;
|
|
7321
|
+
label: import("zod").ZodString;
|
|
7322
|
+
}, import("zod/v4/core").$strip>>>;
|
|
7323
|
+
}, import("zod/v4/core").$strip>>>;
|
|
7324
|
+
error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7325
|
+
persona_snapshot: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7326
|
+
name: import("zod").ZodString;
|
|
7327
|
+
initials: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7328
|
+
segment_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7329
|
+
traits: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7330
|
+
age_range: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7331
|
+
}, import("zod/v4/core").$strip>>>;
|
|
7250
7332
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
7251
7333
|
}, import("zod/v4/core").$strip>>>;
|
|
7334
|
+
status: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
7335
|
+
completed: "completed";
|
|
7336
|
+
failed: "failed";
|
|
7337
|
+
running: "running";
|
|
7338
|
+
}>>>;
|
|
7339
|
+
processing_started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
7340
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
7341
|
+
failed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
7342
|
+
error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7252
7343
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
7253
7344
|
}, import("zod/v4/core").$strip>>>;
|
|
7254
7345
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
@@ -7303,6 +7394,9 @@ export declare const sdk: {
|
|
|
7303
7394
|
simulations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7304
7395
|
description: import("zod").ZodString;
|
|
7305
7396
|
selected: import("zod").ZodBoolean;
|
|
7397
|
+
simulation_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7398
|
+
task_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7399
|
+
status: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7306
7400
|
}, import("zod/v4/core").$strip>>;
|
|
7307
7401
|
persona_ids: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber>>;
|
|
7308
7402
|
results: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -7324,8 +7418,54 @@ export declare const sdk: {
|
|
|
7324
7418
|
score: import("zod").ZodNumber;
|
|
7325
7419
|
justification: import("zod").ZodString;
|
|
7326
7420
|
}, import("zod/v4/core").$strip>>;
|
|
7421
|
+
simulation_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7422
|
+
task_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7423
|
+
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
7424
|
+
pending: "pending";
|
|
7425
|
+
completed: "completed";
|
|
7426
|
+
failed: "failed";
|
|
7427
|
+
}>>;
|
|
7428
|
+
replay_evidence: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7429
|
+
simulations: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7430
|
+
simulation_id: import("zod").ZodNumber;
|
|
7431
|
+
task_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7432
|
+
step_count: import("zod").ZodNumber;
|
|
7433
|
+
summary: import("zod").ZodString;
|
|
7434
|
+
}, import("zod/v4/core").$strip>>>;
|
|
7435
|
+
moments: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7436
|
+
sim_index: import("zod").ZodNumber;
|
|
7437
|
+
step_index: import("zod").ZodNumber;
|
|
7438
|
+
label: import("zod").ZodString;
|
|
7439
|
+
}, import("zod/v4/core").$strip>>>;
|
|
7440
|
+
context_refs: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7441
|
+
type: import("zod").ZodEnum<{
|
|
7442
|
+
doc: "doc";
|
|
7443
|
+
sim: "sim";
|
|
7444
|
+
session: "session";
|
|
7445
|
+
}>;
|
|
7446
|
+
id: import("zod").ZodString;
|
|
7447
|
+
label: import("zod").ZodString;
|
|
7448
|
+
}, import("zod/v4/core").$strip>>>;
|
|
7449
|
+
}, import("zod/v4/core").$strip>>>;
|
|
7450
|
+
error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7451
|
+
persona_snapshot: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7452
|
+
name: import("zod").ZodString;
|
|
7453
|
+
initials: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7454
|
+
segment_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7455
|
+
traits: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7456
|
+
age_range: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7457
|
+
}, import("zod/v4/core").$strip>>>;
|
|
7327
7458
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
7328
7459
|
}, import("zod/v4/core").$strip>>>;
|
|
7460
|
+
status: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
7461
|
+
completed: "completed";
|
|
7462
|
+
failed: "failed";
|
|
7463
|
+
running: "running";
|
|
7464
|
+
}>>>;
|
|
7465
|
+
processing_started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
7466
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
7467
|
+
failed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
7468
|
+
error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7329
7469
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
7330
7470
|
}, import("zod/v4/core").$strip>>>;
|
|
7331
7471
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
@@ -7351,6 +7491,9 @@ export declare const sdk: {
|
|
|
7351
7491
|
suggestedSimulations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7352
7492
|
description: import("zod").ZodString;
|
|
7353
7493
|
selected: import("zod").ZodBoolean;
|
|
7494
|
+
simulation_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7495
|
+
task_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7496
|
+
status: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7354
7497
|
}, import("zod/v4/core").$strip>>;
|
|
7355
7498
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
7356
7499
|
insightReactionRun: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
@@ -7385,6 +7528,9 @@ export declare const sdk: {
|
|
|
7385
7528
|
simulations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7386
7529
|
description: import("zod").ZodString;
|
|
7387
7530
|
selected: import("zod").ZodBoolean;
|
|
7531
|
+
simulation_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7532
|
+
task_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7533
|
+
status: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7388
7534
|
}, import("zod/v4/core").$strip>>;
|
|
7389
7535
|
persona_ids: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber>>;
|
|
7390
7536
|
results: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -7406,8 +7552,54 @@ export declare const sdk: {
|
|
|
7406
7552
|
score: import("zod").ZodNumber;
|
|
7407
7553
|
justification: import("zod").ZodString;
|
|
7408
7554
|
}, import("zod/v4/core").$strip>>;
|
|
7555
|
+
simulation_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7556
|
+
task_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7557
|
+
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
7558
|
+
pending: "pending";
|
|
7559
|
+
completed: "completed";
|
|
7560
|
+
failed: "failed";
|
|
7561
|
+
}>>;
|
|
7562
|
+
replay_evidence: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7563
|
+
simulations: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7564
|
+
simulation_id: import("zod").ZodNumber;
|
|
7565
|
+
task_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7566
|
+
step_count: import("zod").ZodNumber;
|
|
7567
|
+
summary: import("zod").ZodString;
|
|
7568
|
+
}, import("zod/v4/core").$strip>>>;
|
|
7569
|
+
moments: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7570
|
+
sim_index: import("zod").ZodNumber;
|
|
7571
|
+
step_index: import("zod").ZodNumber;
|
|
7572
|
+
label: import("zod").ZodString;
|
|
7573
|
+
}, import("zod/v4/core").$strip>>>;
|
|
7574
|
+
context_refs: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7575
|
+
type: import("zod").ZodEnum<{
|
|
7576
|
+
doc: "doc";
|
|
7577
|
+
sim: "sim";
|
|
7578
|
+
session: "session";
|
|
7579
|
+
}>;
|
|
7580
|
+
id: import("zod").ZodString;
|
|
7581
|
+
label: import("zod").ZodString;
|
|
7582
|
+
}, import("zod/v4/core").$strip>>>;
|
|
7583
|
+
}, import("zod/v4/core").$strip>>>;
|
|
7584
|
+
error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7585
|
+
persona_snapshot: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7586
|
+
name: import("zod").ZodString;
|
|
7587
|
+
initials: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7588
|
+
segment_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7589
|
+
traits: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7590
|
+
age_range: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7591
|
+
}, import("zod/v4/core").$strip>>>;
|
|
7409
7592
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
7410
7593
|
}, import("zod/v4/core").$strip>>>;
|
|
7594
|
+
status: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
7595
|
+
completed: "completed";
|
|
7596
|
+
failed: "failed";
|
|
7597
|
+
running: "running";
|
|
7598
|
+
}>>>;
|
|
7599
|
+
processing_started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
7600
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
7601
|
+
failed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
7602
|
+
error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7411
7603
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
7412
7604
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
7413
7605
|
} & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/sdk/index.ts"],"names":[],"mappings":"AA4BA;;;GAGG;AACH,eAAO,MAAM,YAAY,GAAI,QAAQ,MAAM,SAQ1C,CAAC;AAoBF,eAAO,MAAM,GAAG
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/sdk/index.ts"],"names":[],"mappings":"AA4BA;;;GAGG;AACH,eAAO,MAAM,YAAY,GAAI,QAAQ,MAAM,SAQ1C,CAAC;AAoBF,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAhBQ,MAAM;;;wBAZO,MAAM;CAmCzC,CAAC;AAGH,cAAc,UAAU,CAAC;AAGzB,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC"}
|
package/dist/src/sdk/routes.d.ts
CHANGED
|
@@ -6909,6 +6909,27 @@ declare const contract: {
|
|
|
6909
6909
|
run_id: number;
|
|
6910
6910
|
status: "failed";
|
|
6911
6911
|
error?: string | undefined;
|
|
6912
|
+
} | {
|
|
6913
|
+
type: "reaction/completed";
|
|
6914
|
+
reaction_id: number;
|
|
6915
|
+
run_id: number;
|
|
6916
|
+
application_id: number;
|
|
6917
|
+
} | {
|
|
6918
|
+
type: "reaction/failed";
|
|
6919
|
+
reaction_id: number;
|
|
6920
|
+
run_id: number;
|
|
6921
|
+
application_id: number;
|
|
6922
|
+
error?: string | undefined;
|
|
6923
|
+
} | {
|
|
6924
|
+
type: "reaction/progress";
|
|
6925
|
+
reaction_id: number;
|
|
6926
|
+
run_id: number;
|
|
6927
|
+
application_id: number;
|
|
6928
|
+
result_id: number;
|
|
6929
|
+
persona_id: number | null;
|
|
6930
|
+
completed_personas: number;
|
|
6931
|
+
total_personas: number;
|
|
6932
|
+
failed_personas: number;
|
|
6912
6933
|
}, unknown, void>, import("@orpc/shared").AsyncIteratorClass<{
|
|
6913
6934
|
type: "simulation/updated";
|
|
6914
6935
|
simulation_id: number;
|
|
@@ -7045,6 +7066,27 @@ declare const contract: {
|
|
|
7045
7066
|
run_id: number;
|
|
7046
7067
|
status: "failed";
|
|
7047
7068
|
error?: string | undefined;
|
|
7069
|
+
} | {
|
|
7070
|
+
type: "reaction/completed";
|
|
7071
|
+
reaction_id: number;
|
|
7072
|
+
run_id: number;
|
|
7073
|
+
application_id: number;
|
|
7074
|
+
} | {
|
|
7075
|
+
type: "reaction/failed";
|
|
7076
|
+
reaction_id: number;
|
|
7077
|
+
run_id: number;
|
|
7078
|
+
application_id: number;
|
|
7079
|
+
error?: string | undefined;
|
|
7080
|
+
} | {
|
|
7081
|
+
type: "reaction/progress";
|
|
7082
|
+
reaction_id: number;
|
|
7083
|
+
run_id: number;
|
|
7084
|
+
application_id: number;
|
|
7085
|
+
result_id: number;
|
|
7086
|
+
persona_id: number | null;
|
|
7087
|
+
completed_personas: number;
|
|
7088
|
+
total_personas: number;
|
|
7089
|
+
failed_personas: number;
|
|
7048
7090
|
}, unknown, void>>, Record<never, never>, Record<never, never>>;
|
|
7049
7091
|
/** @docs-only — raw Express handler; requires webhook signature verification */
|
|
7050
7092
|
workosWebhook: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
@@ -7258,6 +7300,9 @@ declare const contract: {
|
|
|
7258
7300
|
simulations: z.ZodArray<z.ZodObject<{
|
|
7259
7301
|
description: z.ZodString;
|
|
7260
7302
|
selected: z.ZodBoolean;
|
|
7303
|
+
simulation_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
7304
|
+
task_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7305
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7261
7306
|
}, z.core.$strip>>;
|
|
7262
7307
|
persona_ids: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
7263
7308
|
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -7279,8 +7324,54 @@ declare const contract: {
|
|
|
7279
7324
|
score: z.ZodNumber;
|
|
7280
7325
|
justification: z.ZodString;
|
|
7281
7326
|
}, z.core.$strip>>;
|
|
7327
|
+
simulation_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
7328
|
+
task_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7329
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
7330
|
+
pending: "pending";
|
|
7331
|
+
completed: "completed";
|
|
7332
|
+
failed: "failed";
|
|
7333
|
+
}>>;
|
|
7334
|
+
replay_evidence: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7335
|
+
simulations: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7336
|
+
simulation_id: z.ZodNumber;
|
|
7337
|
+
task_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7338
|
+
step_count: z.ZodNumber;
|
|
7339
|
+
summary: z.ZodString;
|
|
7340
|
+
}, z.core.$strip>>>;
|
|
7341
|
+
moments: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7342
|
+
sim_index: z.ZodNumber;
|
|
7343
|
+
step_index: z.ZodNumber;
|
|
7344
|
+
label: z.ZodString;
|
|
7345
|
+
}, z.core.$strip>>>;
|
|
7346
|
+
context_refs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7347
|
+
type: z.ZodEnum<{
|
|
7348
|
+
doc: "doc";
|
|
7349
|
+
sim: "sim";
|
|
7350
|
+
session: "session";
|
|
7351
|
+
}>;
|
|
7352
|
+
id: z.ZodString;
|
|
7353
|
+
label: z.ZodString;
|
|
7354
|
+
}, z.core.$strip>>>;
|
|
7355
|
+
}, z.core.$strip>>>;
|
|
7356
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7357
|
+
persona_snapshot: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7358
|
+
name: z.ZodString;
|
|
7359
|
+
initials: z.ZodOptional<z.ZodString>;
|
|
7360
|
+
segment_name: z.ZodOptional<z.ZodString>;
|
|
7361
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7362
|
+
age_range: z.ZodOptional<z.ZodString>;
|
|
7363
|
+
}, z.core.$strip>>>;
|
|
7282
7364
|
created_at: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
7283
7365
|
}, z.core.$strip>>>;
|
|
7366
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
7367
|
+
completed: "completed";
|
|
7368
|
+
failed: "failed";
|
|
7369
|
+
running: "running";
|
|
7370
|
+
}>>>;
|
|
7371
|
+
processing_started_at: z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>;
|
|
7372
|
+
completed_at: z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>;
|
|
7373
|
+
failed_at: z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>;
|
|
7374
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7284
7375
|
created_at: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
7285
7376
|
}, z.core.$strip>>>;
|
|
7286
7377
|
created_at: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
@@ -7335,6 +7426,9 @@ declare const contract: {
|
|
|
7335
7426
|
simulations: z.ZodArray<z.ZodObject<{
|
|
7336
7427
|
description: z.ZodString;
|
|
7337
7428
|
selected: z.ZodBoolean;
|
|
7429
|
+
simulation_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
7430
|
+
task_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7431
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7338
7432
|
}, z.core.$strip>>;
|
|
7339
7433
|
persona_ids: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
7340
7434
|
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -7356,8 +7450,54 @@ declare const contract: {
|
|
|
7356
7450
|
score: z.ZodNumber;
|
|
7357
7451
|
justification: z.ZodString;
|
|
7358
7452
|
}, z.core.$strip>>;
|
|
7453
|
+
simulation_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
7454
|
+
task_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7455
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
7456
|
+
pending: "pending";
|
|
7457
|
+
completed: "completed";
|
|
7458
|
+
failed: "failed";
|
|
7459
|
+
}>>;
|
|
7460
|
+
replay_evidence: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7461
|
+
simulations: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7462
|
+
simulation_id: z.ZodNumber;
|
|
7463
|
+
task_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7464
|
+
step_count: z.ZodNumber;
|
|
7465
|
+
summary: z.ZodString;
|
|
7466
|
+
}, z.core.$strip>>>;
|
|
7467
|
+
moments: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7468
|
+
sim_index: z.ZodNumber;
|
|
7469
|
+
step_index: z.ZodNumber;
|
|
7470
|
+
label: z.ZodString;
|
|
7471
|
+
}, z.core.$strip>>>;
|
|
7472
|
+
context_refs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7473
|
+
type: z.ZodEnum<{
|
|
7474
|
+
doc: "doc";
|
|
7475
|
+
sim: "sim";
|
|
7476
|
+
session: "session";
|
|
7477
|
+
}>;
|
|
7478
|
+
id: z.ZodString;
|
|
7479
|
+
label: z.ZodString;
|
|
7480
|
+
}, z.core.$strip>>>;
|
|
7481
|
+
}, z.core.$strip>>>;
|
|
7482
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7483
|
+
persona_snapshot: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7484
|
+
name: z.ZodString;
|
|
7485
|
+
initials: z.ZodOptional<z.ZodString>;
|
|
7486
|
+
segment_name: z.ZodOptional<z.ZodString>;
|
|
7487
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7488
|
+
age_range: z.ZodOptional<z.ZodString>;
|
|
7489
|
+
}, z.core.$strip>>>;
|
|
7359
7490
|
created_at: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
7360
7491
|
}, z.core.$strip>>>;
|
|
7492
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
7493
|
+
completed: "completed";
|
|
7494
|
+
failed: "failed";
|
|
7495
|
+
running: "running";
|
|
7496
|
+
}>>>;
|
|
7497
|
+
processing_started_at: z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>;
|
|
7498
|
+
completed_at: z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>;
|
|
7499
|
+
failed_at: z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>;
|
|
7500
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7361
7501
|
created_at: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
7362
7502
|
}, z.core.$strip>>>;
|
|
7363
7503
|
created_at: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
@@ -7383,6 +7523,9 @@ declare const contract: {
|
|
|
7383
7523
|
suggestedSimulations: z.ZodArray<z.ZodObject<{
|
|
7384
7524
|
description: z.ZodString;
|
|
7385
7525
|
selected: z.ZodBoolean;
|
|
7526
|
+
simulation_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
7527
|
+
task_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7528
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7386
7529
|
}, z.core.$strip>>;
|
|
7387
7530
|
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
7388
7531
|
insightReactionRun: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
@@ -7417,6 +7560,9 @@ declare const contract: {
|
|
|
7417
7560
|
simulations: z.ZodArray<z.ZodObject<{
|
|
7418
7561
|
description: z.ZodString;
|
|
7419
7562
|
selected: z.ZodBoolean;
|
|
7563
|
+
simulation_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
7564
|
+
task_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7565
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7420
7566
|
}, z.core.$strip>>;
|
|
7421
7567
|
persona_ids: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
7422
7568
|
results: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -7438,8 +7584,54 @@ declare const contract: {
|
|
|
7438
7584
|
score: z.ZodNumber;
|
|
7439
7585
|
justification: z.ZodString;
|
|
7440
7586
|
}, z.core.$strip>>;
|
|
7587
|
+
simulation_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
7588
|
+
task_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7589
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
7590
|
+
pending: "pending";
|
|
7591
|
+
completed: "completed";
|
|
7592
|
+
failed: "failed";
|
|
7593
|
+
}>>;
|
|
7594
|
+
replay_evidence: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7595
|
+
simulations: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7596
|
+
simulation_id: z.ZodNumber;
|
|
7597
|
+
task_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7598
|
+
step_count: z.ZodNumber;
|
|
7599
|
+
summary: z.ZodString;
|
|
7600
|
+
}, z.core.$strip>>>;
|
|
7601
|
+
moments: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7602
|
+
sim_index: z.ZodNumber;
|
|
7603
|
+
step_index: z.ZodNumber;
|
|
7604
|
+
label: z.ZodString;
|
|
7605
|
+
}, z.core.$strip>>>;
|
|
7606
|
+
context_refs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7607
|
+
type: z.ZodEnum<{
|
|
7608
|
+
doc: "doc";
|
|
7609
|
+
sim: "sim";
|
|
7610
|
+
session: "session";
|
|
7611
|
+
}>;
|
|
7612
|
+
id: z.ZodString;
|
|
7613
|
+
label: z.ZodString;
|
|
7614
|
+
}, z.core.$strip>>>;
|
|
7615
|
+
}, z.core.$strip>>>;
|
|
7616
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7617
|
+
persona_snapshot: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7618
|
+
name: z.ZodString;
|
|
7619
|
+
initials: z.ZodOptional<z.ZodString>;
|
|
7620
|
+
segment_name: z.ZodOptional<z.ZodString>;
|
|
7621
|
+
traits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7622
|
+
age_range: z.ZodOptional<z.ZodString>;
|
|
7623
|
+
}, z.core.$strip>>>;
|
|
7441
7624
|
created_at: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
7442
7625
|
}, z.core.$strip>>>;
|
|
7626
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
7627
|
+
completed: "completed";
|
|
7628
|
+
failed: "failed";
|
|
7629
|
+
running: "running";
|
|
7630
|
+
}>>>;
|
|
7631
|
+
processing_started_at: z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>;
|
|
7632
|
+
completed_at: z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>;
|
|
7633
|
+
failed_at: z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>;
|
|
7634
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7443
7635
|
created_at: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
7444
7636
|
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
7445
7637
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../../../src/sdk/routes.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AAGH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AA8IxB,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAsFZ,+DAA+D
|
|
1
|
+
{"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../../../src/sdk/routes.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AAGH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AA8IxB,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAsFZ,+DAA+D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA+2E/D,gFAAgF;;;;;;;IAahF,gFAAgF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkLjF,CAAC;AAEF,OAAO,EAAE,QAAQ,EAAE,CAAC"}
|