@effect-app/vue 4.0.0-beta.176 → 4.0.0-beta.178
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/CHANGELOG.md +21 -0
- package/dist/makeClient.d.ts +11 -3
- package/dist/makeClient.d.ts.map +1 -1
- package/dist/makeClient.js +71 -30
- package/dist/mutate.d.ts +25 -2
- package/dist/mutate.d.ts.map +1 -1
- package/dist/mutate.js +91 -7
- package/examples/streamMutation.ts +83 -0
- package/package.json +2 -2
- package/src/makeClient.ts +87 -4
- package/src/mutate.ts +145 -7
- package/test/dist/stubs.d.ts +868 -118
- package/test/dist/stubs.d.ts.map +1 -1
- package/tsconfig.examples.json +20 -0
- package/tsconfig.json.bak +3 -0
package/test/dist/stubs.d.ts
CHANGED
|
@@ -464,6 +464,226 @@ export declare const TaggedRequestFor: <ModuleName extends string>(moduleName: M
|
|
|
464
464
|
readonly moduleName: ModuleName;
|
|
465
465
|
readonly type: "command";
|
|
466
466
|
};
|
|
467
|
+
readonly Stream: (<Self, Resources extends {
|
|
468
|
+
[x: string]: Record<string, unknown>;
|
|
469
|
+
} = never>() => {
|
|
470
|
+
<Tag extends string, Payload extends S.Struct.Fields, Success extends S.Top | S.Struct.Fields, Error extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any>>(tag: Tag, fields: Payload, config: Omit<C, "invalidatesQueries"> & {
|
|
471
|
+
success: Success;
|
|
472
|
+
error: Error;
|
|
473
|
+
}, invalidatesQueries?: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) extends infer T_1 ? T_1 extends (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) ? T_1 extends S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never> ? void : S.Schema.Type<T_1> : never : never, S.Schema.Type<C & {
|
|
474
|
+
success: Success;
|
|
475
|
+
error: Error;
|
|
476
|
+
} extends infer T_2 ? T_2 extends C & {
|
|
477
|
+
success: Success;
|
|
478
|
+
error: Error;
|
|
479
|
+
} ? T_2 extends {
|
|
480
|
+
error: infer E;
|
|
481
|
+
} ? E extends S.Top ? E : E extends import("effect/Schema").Struct.Fields ? S.Struct<E> : S.Void : never : never : never>> | undefined): S.EnhancedClass<Self, S.Struct<{
|
|
482
|
+
readonly _tag: S.tag<Tag>;
|
|
483
|
+
} & Payload>, {}> & {
|
|
484
|
+
readonly _tag: Tag;
|
|
485
|
+
readonly success: Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void;
|
|
486
|
+
readonly error: C & {
|
|
487
|
+
success: Success;
|
|
488
|
+
error: Error;
|
|
489
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
490
|
+
success: Success;
|
|
491
|
+
error: Error;
|
|
492
|
+
} ? T_1_1 extends {
|
|
493
|
+
error: infer E_1;
|
|
494
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never;
|
|
495
|
+
readonly config: Omit<Omit<C, "invalidatesQueries"> & {
|
|
496
|
+
success: Success;
|
|
497
|
+
error: Error;
|
|
498
|
+
} & Partial<{
|
|
499
|
+
readonly invalidatesQueries: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) extends infer T_1 ? T_1 extends (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) ? T_1 extends S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never> ? void : S.Schema.Type<T_1> : never : never, S.Schema.Type<C & {
|
|
500
|
+
success: Success;
|
|
501
|
+
error: Error;
|
|
502
|
+
} extends infer T_2_1 ? T_2_1 extends C & {
|
|
503
|
+
success: Success;
|
|
504
|
+
error: Error;
|
|
505
|
+
} ? T_2_1 extends {
|
|
506
|
+
error: infer E_2;
|
|
507
|
+
} ? E_2 extends S.Top ? E_2 : E_2 extends import("effect/Schema").Struct.Fields ? S.Struct<E_2> : S.Void : never : never : never>>;
|
|
508
|
+
readonly invalidationResources?: Resources;
|
|
509
|
+
}>, "error" | "success">;
|
|
510
|
+
readonly "~decodingServices": S.Codec.DecodingServices<Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void> | S.Codec.DecodingServices<C & {
|
|
511
|
+
success: Success;
|
|
512
|
+
error: Error;
|
|
513
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
514
|
+
success: Success;
|
|
515
|
+
error: Error;
|
|
516
|
+
} ? T_1_1 extends {
|
|
517
|
+
error: infer E_1;
|
|
518
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
519
|
+
readonly "~encodingServices": S.Codec.EncodingServices<Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void> | S.Codec.EncodingServices<C & {
|
|
520
|
+
success: Success;
|
|
521
|
+
error: Error;
|
|
522
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
523
|
+
success: Success;
|
|
524
|
+
error: Error;
|
|
525
|
+
} ? T_1_1 extends {
|
|
526
|
+
error: infer E_1;
|
|
527
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
528
|
+
readonly id: `${ModuleName}.${Tag}`;
|
|
529
|
+
readonly moduleName: ModuleName;
|
|
530
|
+
readonly type: "stream";
|
|
531
|
+
readonly "~invalidationResources"?: Resources;
|
|
532
|
+
};
|
|
533
|
+
<Tag extends string, Payload extends S.Struct.Fields, Success extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
534
|
+
error?: never;
|
|
535
|
+
}>(tag: Tag, fields: Payload, config: Omit<C, "invalidatesQueries"> & {
|
|
536
|
+
success: Success;
|
|
537
|
+
}, invalidatesQueries?: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) extends infer T_1 ? T_1 extends (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) ? T_1 extends S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never> ? void : S.Schema.Type<T_1> : never : never, S.Schema.Type<C & {
|
|
538
|
+
success: Success;
|
|
539
|
+
} extends infer T_2 ? T_2 extends C & {
|
|
540
|
+
success: Success;
|
|
541
|
+
} ? T_2 extends {
|
|
542
|
+
error: infer E;
|
|
543
|
+
} ? E extends S.Top ? E : E extends import("effect/Schema").Struct.Fields ? S.Struct<E> : S.Void : never : never : never>> | undefined): S.EnhancedClass<Self, S.Struct<{
|
|
544
|
+
readonly _tag: S.tag<Tag>;
|
|
545
|
+
} & Payload>, {}> & {
|
|
546
|
+
readonly _tag: Tag;
|
|
547
|
+
readonly success: Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void;
|
|
548
|
+
readonly error: C & {
|
|
549
|
+
success: Success;
|
|
550
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
551
|
+
success: Success;
|
|
552
|
+
} ? T_1_1 extends {
|
|
553
|
+
error: infer E_1;
|
|
554
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never;
|
|
555
|
+
readonly config: Omit<Omit<C, "invalidatesQueries"> & {
|
|
556
|
+
success: Success;
|
|
557
|
+
} & Partial<{
|
|
558
|
+
readonly invalidatesQueries: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) extends infer T_1 ? T_1 extends (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) ? T_1 extends S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never> ? void : S.Schema.Type<T_1> : never : never, S.Schema.Type<C & {
|
|
559
|
+
success: Success;
|
|
560
|
+
} extends infer T_2_1 ? T_2_1 extends C & {
|
|
561
|
+
success: Success;
|
|
562
|
+
} ? T_2_1 extends {
|
|
563
|
+
error: infer E_2;
|
|
564
|
+
} ? E_2 extends S.Top ? E_2 : E_2 extends import("effect/Schema").Struct.Fields ? S.Struct<E_2> : S.Void : never : never : never>>;
|
|
565
|
+
readonly invalidationResources?: Resources;
|
|
566
|
+
}>, "error" | "success">;
|
|
567
|
+
readonly "~decodingServices": S.Codec.DecodingServices<Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void> | S.Codec.DecodingServices<C & {
|
|
568
|
+
success: Success;
|
|
569
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
570
|
+
success: Success;
|
|
571
|
+
} ? T_1_1 extends {
|
|
572
|
+
error: infer E_1;
|
|
573
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
574
|
+
readonly "~encodingServices": S.Codec.EncodingServices<Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void> | S.Codec.EncodingServices<C & {
|
|
575
|
+
success: Success;
|
|
576
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
577
|
+
success: Success;
|
|
578
|
+
} ? T_1_1 extends {
|
|
579
|
+
error: infer E_1;
|
|
580
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
581
|
+
readonly id: `${ModuleName}.${Tag}`;
|
|
582
|
+
readonly moduleName: ModuleName;
|
|
583
|
+
readonly type: "stream";
|
|
584
|
+
readonly "~invalidationResources"?: Resources;
|
|
585
|
+
};
|
|
586
|
+
<Tag extends string, Payload extends S.Struct.Fields, Error extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
587
|
+
success?: never;
|
|
588
|
+
}>(tag: Tag, fields: Payload, config: Omit<C, "invalidatesQueries"> & {
|
|
589
|
+
error: Error;
|
|
590
|
+
}, invalidatesQueries?: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, void, S.Schema.Type<C & {
|
|
591
|
+
error: Error;
|
|
592
|
+
} extends infer T_1 ? T_1 extends C & {
|
|
593
|
+
error: Error;
|
|
594
|
+
} ? T_1 extends {
|
|
595
|
+
error: infer E;
|
|
596
|
+
} ? E extends S.Top ? E : E extends import("effect/Schema").Struct.Fields ? S.Struct<E> : S.Void : never : never : never>> | undefined): S.EnhancedClass<Self, S.Struct<{
|
|
597
|
+
readonly _tag: S.tag<Tag>;
|
|
598
|
+
} & Payload>, {}> & {
|
|
599
|
+
readonly _tag: Tag;
|
|
600
|
+
readonly success: S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never>;
|
|
601
|
+
readonly error: C & {
|
|
602
|
+
error: Error;
|
|
603
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
604
|
+
error: Error;
|
|
605
|
+
} ? T_1_1 extends {
|
|
606
|
+
error: infer E_1;
|
|
607
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never;
|
|
608
|
+
readonly config: Omit<Omit<C, "invalidatesQueries"> & {
|
|
609
|
+
error: Error;
|
|
610
|
+
} & Partial<{
|
|
611
|
+
readonly invalidatesQueries: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, void, S.Schema.Type<C & {
|
|
612
|
+
error: Error;
|
|
613
|
+
} extends infer T_2 ? T_2 extends C & {
|
|
614
|
+
error: Error;
|
|
615
|
+
} ? T_2 extends {
|
|
616
|
+
error: infer E_2;
|
|
617
|
+
} ? E_2 extends S.Top ? E_2 : E_2 extends import("effect/Schema").Struct.Fields ? S.Struct<E_2> : S.Void : never : never : never>>;
|
|
618
|
+
readonly invalidationResources?: Resources;
|
|
619
|
+
}>, "error" | "success">;
|
|
620
|
+
readonly "~decodingServices": S.Codec.DecodingServices<C & {
|
|
621
|
+
error: Error;
|
|
622
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
623
|
+
error: Error;
|
|
624
|
+
} ? T_1_1 extends {
|
|
625
|
+
error: infer E_1;
|
|
626
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
627
|
+
readonly "~encodingServices": S.Codec.EncodingServices<C & {
|
|
628
|
+
error: Error;
|
|
629
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
630
|
+
error: Error;
|
|
631
|
+
} ? T_1_1 extends {
|
|
632
|
+
error: infer E_1;
|
|
633
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
634
|
+
readonly id: `${ModuleName}.${Tag}`;
|
|
635
|
+
readonly moduleName: ModuleName;
|
|
636
|
+
readonly type: "stream";
|
|
637
|
+
readonly "~invalidationResources"?: Resources;
|
|
638
|
+
};
|
|
639
|
+
<Tag extends string, Payload extends S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
640
|
+
success?: never;
|
|
641
|
+
error?: never;
|
|
642
|
+
}>(tag: Tag, fields: Payload, config: Omit<C, "invalidatesQueries">, invalidatesQueries?: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, void, S.Schema.Type<C extends {
|
|
643
|
+
error: infer E;
|
|
644
|
+
} ? E extends S.Top ? E : E extends import("effect/Schema").Struct.Fields ? S.Struct<E> : S.Void : never>> | undefined): S.EnhancedClass<Self, S.Struct<{
|
|
645
|
+
readonly _tag: S.tag<Tag>;
|
|
646
|
+
} & Payload>, {}> & {
|
|
647
|
+
readonly _tag: Tag;
|
|
648
|
+
readonly success: S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never>;
|
|
649
|
+
readonly error: C extends {
|
|
650
|
+
error: infer E_1;
|
|
651
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never;
|
|
652
|
+
readonly config: Omit<Omit<C, "invalidatesQueries"> & Partial<{
|
|
653
|
+
readonly invalidatesQueries: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, void, S.Schema.Type<C extends {
|
|
654
|
+
error: infer E_2;
|
|
655
|
+
} ? E_2 extends S.Top ? E_2 : E_2 extends import("effect/Schema").Struct.Fields ? S.Struct<E_2> : S.Void : never>>;
|
|
656
|
+
readonly invalidationResources?: Resources;
|
|
657
|
+
}>, "error" | "success">;
|
|
658
|
+
readonly "~decodingServices": S.Codec.DecodingServices<C extends {
|
|
659
|
+
error: infer E_1;
|
|
660
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never>;
|
|
661
|
+
readonly "~encodingServices": S.Codec.EncodingServices<C extends {
|
|
662
|
+
error: infer E_1;
|
|
663
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never>;
|
|
664
|
+
readonly id: `${ModuleName}.${Tag}`;
|
|
665
|
+
readonly moduleName: ModuleName;
|
|
666
|
+
readonly type: "stream";
|
|
667
|
+
readonly "~invalidationResources"?: Resources;
|
|
668
|
+
};
|
|
669
|
+
<Tag extends string, Payload extends S.Struct.Fields>(tag: Tag, fields: Payload): S.EnhancedClass<Self, S.Struct<{
|
|
670
|
+
readonly _tag: S.tag<Tag>;
|
|
671
|
+
} & Payload>, {}> & {
|
|
672
|
+
readonly _tag: Tag;
|
|
673
|
+
readonly success: S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never>;
|
|
674
|
+
readonly error: never;
|
|
675
|
+
readonly config: Record<string, never>;
|
|
676
|
+
readonly "~decodingServices": never;
|
|
677
|
+
readonly "~encodingServices": never;
|
|
678
|
+
readonly id: `${ModuleName}.${Tag}`;
|
|
679
|
+
readonly moduleName: ModuleName;
|
|
680
|
+
readonly type: "stream";
|
|
681
|
+
readonly "~invalidationResources"?: never;
|
|
682
|
+
};
|
|
683
|
+
}) & {
|
|
684
|
+
readonly moduleName: ModuleName;
|
|
685
|
+
readonly type: "stream";
|
|
686
|
+
};
|
|
467
687
|
};
|
|
468
688
|
export declare const SomethingReq: {
|
|
469
689
|
readonly moduleName: "Something";
|
|
@@ -530,7 +750,227 @@ export declare const SomethingReq: {
|
|
|
530
750
|
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
531
751
|
readonly id: `Something.${Tag}`;
|
|
532
752
|
readonly moduleName: "Something";
|
|
533
|
-
readonly type: "query";
|
|
753
|
+
readonly type: "query";
|
|
754
|
+
readonly "~invalidationResources"?: Resources;
|
|
755
|
+
};
|
|
756
|
+
<Tag extends string, Payload extends S.Struct.Fields, Success extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
757
|
+
error?: never;
|
|
758
|
+
}>(tag: Tag, fields: Payload, config: Omit<C, "invalidatesQueries"> & {
|
|
759
|
+
success: Success;
|
|
760
|
+
}, invalidatesQueries?: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) extends infer T_1 ? T_1 extends (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) ? T_1 extends S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never> ? void : S.Schema.Type<T_1> : never : never, S.Schema.Type<C & {
|
|
761
|
+
success: Success;
|
|
762
|
+
} extends infer T_2 ? T_2 extends C & {
|
|
763
|
+
success: Success;
|
|
764
|
+
} ? T_2 extends {
|
|
765
|
+
error: infer E;
|
|
766
|
+
} ? E extends S.Top ? E : E extends import("effect/Schema").Struct.Fields ? S.Struct<E> : S.Void : never : never : never>> | undefined): S.EnhancedClass<Self, S.Struct<{
|
|
767
|
+
readonly _tag: S.tag<Tag>;
|
|
768
|
+
} & Payload>, {}> & {
|
|
769
|
+
readonly _tag: Tag;
|
|
770
|
+
readonly success: Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void;
|
|
771
|
+
readonly error: C & {
|
|
772
|
+
success: Success;
|
|
773
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
774
|
+
success: Success;
|
|
775
|
+
} ? T_1_1 extends {
|
|
776
|
+
error: infer E_1;
|
|
777
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never;
|
|
778
|
+
readonly config: Omit<Omit<C, "invalidatesQueries"> & {
|
|
779
|
+
success: Success;
|
|
780
|
+
} & Partial<{
|
|
781
|
+
readonly invalidatesQueries: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) extends infer T_1 ? T_1 extends (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) ? T_1 extends S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never> ? void : S.Schema.Type<T_1> : never : never, S.Schema.Type<C & {
|
|
782
|
+
success: Success;
|
|
783
|
+
} extends infer T_2_1 ? T_2_1 extends C & {
|
|
784
|
+
success: Success;
|
|
785
|
+
} ? T_2_1 extends {
|
|
786
|
+
error: infer E_2;
|
|
787
|
+
} ? E_2 extends S.Top ? E_2 : E_2 extends import("effect/Schema").Struct.Fields ? S.Struct<E_2> : S.Void : never : never : never>>;
|
|
788
|
+
readonly invalidationResources?: Resources;
|
|
789
|
+
}>, "error" | "success">;
|
|
790
|
+
readonly "~decodingServices": S.Codec.DecodingServices<Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void> | S.Codec.DecodingServices<C & {
|
|
791
|
+
success: Success;
|
|
792
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
793
|
+
success: Success;
|
|
794
|
+
} ? T_1_1 extends {
|
|
795
|
+
error: infer E_1;
|
|
796
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
797
|
+
readonly "~encodingServices": S.Codec.EncodingServices<Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void> | S.Codec.EncodingServices<C & {
|
|
798
|
+
success: Success;
|
|
799
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
800
|
+
success: Success;
|
|
801
|
+
} ? T_1_1 extends {
|
|
802
|
+
error: infer E_1;
|
|
803
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
804
|
+
readonly id: `Something.${Tag}`;
|
|
805
|
+
readonly moduleName: "Something";
|
|
806
|
+
readonly type: "query";
|
|
807
|
+
readonly "~invalidationResources"?: Resources;
|
|
808
|
+
};
|
|
809
|
+
<Tag extends string, Payload extends S.Struct.Fields, Error extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
810
|
+
success?: never;
|
|
811
|
+
}>(tag: Tag, fields: Payload, config: Omit<C, "invalidatesQueries"> & {
|
|
812
|
+
error: Error;
|
|
813
|
+
}, invalidatesQueries?: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, void, S.Schema.Type<C & {
|
|
814
|
+
error: Error;
|
|
815
|
+
} extends infer T_1 ? T_1 extends C & {
|
|
816
|
+
error: Error;
|
|
817
|
+
} ? T_1 extends {
|
|
818
|
+
error: infer E;
|
|
819
|
+
} ? E extends S.Top ? E : E extends import("effect/Schema").Struct.Fields ? S.Struct<E> : S.Void : never : never : never>> | undefined): S.EnhancedClass<Self, S.Struct<{
|
|
820
|
+
readonly _tag: S.tag<Tag>;
|
|
821
|
+
} & Payload>, {}> & {
|
|
822
|
+
readonly _tag: Tag;
|
|
823
|
+
readonly success: S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never>;
|
|
824
|
+
readonly error: C & {
|
|
825
|
+
error: Error;
|
|
826
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
827
|
+
error: Error;
|
|
828
|
+
} ? T_1_1 extends {
|
|
829
|
+
error: infer E_1;
|
|
830
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never;
|
|
831
|
+
readonly config: Omit<Omit<C, "invalidatesQueries"> & {
|
|
832
|
+
error: Error;
|
|
833
|
+
} & Partial<{
|
|
834
|
+
readonly invalidatesQueries: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, void, S.Schema.Type<C & {
|
|
835
|
+
error: Error;
|
|
836
|
+
} extends infer T_2 ? T_2 extends C & {
|
|
837
|
+
error: Error;
|
|
838
|
+
} ? T_2 extends {
|
|
839
|
+
error: infer E_2;
|
|
840
|
+
} ? E_2 extends S.Top ? E_2 : E_2 extends import("effect/Schema").Struct.Fields ? S.Struct<E_2> : S.Void : never : never : never>>;
|
|
841
|
+
readonly invalidationResources?: Resources;
|
|
842
|
+
}>, "error" | "success">;
|
|
843
|
+
readonly "~decodingServices": S.Codec.DecodingServices<C & {
|
|
844
|
+
error: Error;
|
|
845
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
846
|
+
error: Error;
|
|
847
|
+
} ? T_1_1 extends {
|
|
848
|
+
error: infer E_1;
|
|
849
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
850
|
+
readonly "~encodingServices": S.Codec.EncodingServices<C & {
|
|
851
|
+
error: Error;
|
|
852
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
853
|
+
error: Error;
|
|
854
|
+
} ? T_1_1 extends {
|
|
855
|
+
error: infer E_1;
|
|
856
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
857
|
+
readonly id: `Something.${Tag}`;
|
|
858
|
+
readonly moduleName: "Something";
|
|
859
|
+
readonly type: "query";
|
|
860
|
+
readonly "~invalidationResources"?: Resources;
|
|
861
|
+
};
|
|
862
|
+
<Tag extends string, Payload extends S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
863
|
+
success?: never;
|
|
864
|
+
error?: never;
|
|
865
|
+
}>(tag: Tag, fields: Payload, config: Omit<C, "invalidatesQueries">, invalidatesQueries?: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, void, S.Schema.Type<C extends {
|
|
866
|
+
error: infer E;
|
|
867
|
+
} ? E extends S.Top ? E : E extends import("effect/Schema").Struct.Fields ? S.Struct<E> : S.Void : never>> | undefined): S.EnhancedClass<Self, S.Struct<{
|
|
868
|
+
readonly _tag: S.tag<Tag>;
|
|
869
|
+
} & Payload>, {}> & {
|
|
870
|
+
readonly _tag: Tag;
|
|
871
|
+
readonly success: S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never>;
|
|
872
|
+
readonly error: C extends {
|
|
873
|
+
error: infer E_1;
|
|
874
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never;
|
|
875
|
+
readonly config: Omit<Omit<C, "invalidatesQueries"> & Partial<{
|
|
876
|
+
readonly invalidatesQueries: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, void, S.Schema.Type<C extends {
|
|
877
|
+
error: infer E_2;
|
|
878
|
+
} ? E_2 extends S.Top ? E_2 : E_2 extends import("effect/Schema").Struct.Fields ? S.Struct<E_2> : S.Void : never>>;
|
|
879
|
+
readonly invalidationResources?: Resources;
|
|
880
|
+
}>, "error" | "success">;
|
|
881
|
+
readonly "~decodingServices": S.Codec.DecodingServices<C extends {
|
|
882
|
+
error: infer E_1;
|
|
883
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never>;
|
|
884
|
+
readonly "~encodingServices": S.Codec.EncodingServices<C extends {
|
|
885
|
+
error: infer E_1;
|
|
886
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never>;
|
|
887
|
+
readonly id: `Something.${Tag}`;
|
|
888
|
+
readonly moduleName: "Something";
|
|
889
|
+
readonly type: "query";
|
|
890
|
+
readonly "~invalidationResources"?: Resources;
|
|
891
|
+
};
|
|
892
|
+
<Tag extends string, Payload extends S.Struct.Fields>(tag: Tag, fields: Payload): S.EnhancedClass<Self, S.Struct<{
|
|
893
|
+
readonly _tag: S.tag<Tag>;
|
|
894
|
+
} & Payload>, {}> & {
|
|
895
|
+
readonly _tag: Tag;
|
|
896
|
+
readonly success: S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never>;
|
|
897
|
+
readonly error: never;
|
|
898
|
+
readonly config: Record<string, never>;
|
|
899
|
+
readonly "~decodingServices": never;
|
|
900
|
+
readonly "~encodingServices": never;
|
|
901
|
+
readonly id: `Something.${Tag}`;
|
|
902
|
+
readonly moduleName: "Something";
|
|
903
|
+
readonly type: "query";
|
|
904
|
+
readonly "~invalidationResources"?: never;
|
|
905
|
+
};
|
|
906
|
+
}) & {
|
|
907
|
+
readonly moduleName: "Something";
|
|
908
|
+
readonly type: "query";
|
|
909
|
+
};
|
|
910
|
+
readonly Command: (<Self, Resources extends {
|
|
911
|
+
[x: string]: Record<string, unknown>;
|
|
912
|
+
} = never>() => {
|
|
913
|
+
<Tag extends string, Payload extends S.Struct.Fields, Success extends S.Top | S.Struct.Fields, Error extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any>>(tag: Tag, fields: Payload, config: Omit<C, "invalidatesQueries"> & {
|
|
914
|
+
success: Success;
|
|
915
|
+
error: Error;
|
|
916
|
+
}, invalidatesQueries?: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) extends infer T_1 ? T_1 extends (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) ? T_1 extends S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never> ? void : S.Schema.Type<T_1> : never : never, S.Schema.Type<C & {
|
|
917
|
+
success: Success;
|
|
918
|
+
error: Error;
|
|
919
|
+
} extends infer T_2 ? T_2 extends C & {
|
|
920
|
+
success: Success;
|
|
921
|
+
error: Error;
|
|
922
|
+
} ? T_2 extends {
|
|
923
|
+
error: infer E;
|
|
924
|
+
} ? E extends S.Top ? E : E extends import("effect/Schema").Struct.Fields ? S.Struct<E> : S.Void : never : never : never>> | undefined): S.EnhancedClass<Self, S.Struct<{
|
|
925
|
+
readonly _tag: S.tag<Tag>;
|
|
926
|
+
} & Payload>, {}> & {
|
|
927
|
+
readonly _tag: Tag;
|
|
928
|
+
readonly success: Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void;
|
|
929
|
+
readonly error: C & {
|
|
930
|
+
success: Success;
|
|
931
|
+
error: Error;
|
|
932
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
933
|
+
success: Success;
|
|
934
|
+
error: Error;
|
|
935
|
+
} ? T_1_1 extends {
|
|
936
|
+
error: infer E_1;
|
|
937
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never;
|
|
938
|
+
readonly config: Omit<Omit<C, "invalidatesQueries"> & {
|
|
939
|
+
success: Success;
|
|
940
|
+
error: Error;
|
|
941
|
+
} & Partial<{
|
|
942
|
+
readonly invalidatesQueries: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) extends infer T_1 ? T_1 extends (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) ? T_1 extends S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never> ? void : S.Schema.Type<T_1> : never : never, S.Schema.Type<C & {
|
|
943
|
+
success: Success;
|
|
944
|
+
error: Error;
|
|
945
|
+
} extends infer T_2_1 ? T_2_1 extends C & {
|
|
946
|
+
success: Success;
|
|
947
|
+
error: Error;
|
|
948
|
+
} ? T_2_1 extends {
|
|
949
|
+
error: infer E_2;
|
|
950
|
+
} ? E_2 extends S.Top ? E_2 : E_2 extends import("effect/Schema").Struct.Fields ? S.Struct<E_2> : S.Void : never : never : never>>;
|
|
951
|
+
readonly invalidationResources?: Resources;
|
|
952
|
+
}>, "error" | "success">;
|
|
953
|
+
readonly "~decodingServices": S.Codec.DecodingServices<Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void> | S.Codec.DecodingServices<C & {
|
|
954
|
+
success: Success;
|
|
955
|
+
error: Error;
|
|
956
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
957
|
+
success: Success;
|
|
958
|
+
error: Error;
|
|
959
|
+
} ? T_1_1 extends {
|
|
960
|
+
error: infer E_1;
|
|
961
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
962
|
+
readonly "~encodingServices": S.Codec.EncodingServices<Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void> | S.Codec.EncodingServices<C & {
|
|
963
|
+
success: Success;
|
|
964
|
+
error: Error;
|
|
965
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
966
|
+
success: Success;
|
|
967
|
+
error: Error;
|
|
968
|
+
} ? T_1_1 extends {
|
|
969
|
+
error: infer E_1;
|
|
970
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
971
|
+
readonly id: `Something.${Tag}`;
|
|
972
|
+
readonly moduleName: "Something";
|
|
973
|
+
readonly type: "command";
|
|
534
974
|
readonly "~invalidationResources"?: Resources;
|
|
535
975
|
};
|
|
536
976
|
<Tag extends string, Payload extends S.Struct.Fields, Success extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
@@ -583,7 +1023,7 @@ export declare const SomethingReq: {
|
|
|
583
1023
|
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
584
1024
|
readonly id: `Something.${Tag}`;
|
|
585
1025
|
readonly moduleName: "Something";
|
|
586
|
-
readonly type: "
|
|
1026
|
+
readonly type: "command";
|
|
587
1027
|
readonly "~invalidationResources"?: Resources;
|
|
588
1028
|
};
|
|
589
1029
|
<Tag extends string, Payload extends S.Struct.Fields, Error extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
@@ -636,7 +1076,7 @@ export declare const SomethingReq: {
|
|
|
636
1076
|
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
637
1077
|
readonly id: `Something.${Tag}`;
|
|
638
1078
|
readonly moduleName: "Something";
|
|
639
|
-
readonly type: "
|
|
1079
|
+
readonly type: "command";
|
|
640
1080
|
readonly "~invalidationResources"?: Resources;
|
|
641
1081
|
};
|
|
642
1082
|
<Tag extends string, Payload extends S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
@@ -666,7 +1106,7 @@ export declare const SomethingReq: {
|
|
|
666
1106
|
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never>;
|
|
667
1107
|
readonly id: `Something.${Tag}`;
|
|
668
1108
|
readonly moduleName: "Something";
|
|
669
|
-
readonly type: "
|
|
1109
|
+
readonly type: "command";
|
|
670
1110
|
readonly "~invalidationResources"?: Resources;
|
|
671
1111
|
};
|
|
672
1112
|
<Tag extends string, Payload extends S.Struct.Fields>(tag: Tag, fields: Payload): S.EnhancedClass<Self, S.Struct<{
|
|
@@ -680,14 +1120,14 @@ export declare const SomethingReq: {
|
|
|
680
1120
|
readonly "~encodingServices": never;
|
|
681
1121
|
readonly id: `Something.${Tag}`;
|
|
682
1122
|
readonly moduleName: "Something";
|
|
683
|
-
readonly type: "
|
|
1123
|
+
readonly type: "command";
|
|
684
1124
|
readonly "~invalidationResources"?: never;
|
|
685
1125
|
};
|
|
686
1126
|
}) & {
|
|
687
1127
|
readonly moduleName: "Something";
|
|
688
|
-
readonly type: "
|
|
1128
|
+
readonly type: "command";
|
|
689
1129
|
};
|
|
690
|
-
readonly
|
|
1130
|
+
readonly Stream: (<Self, Resources extends {
|
|
691
1131
|
[x: string]: Record<string, unknown>;
|
|
692
1132
|
} = never>() => {
|
|
693
1133
|
<Tag extends string, Payload extends S.Struct.Fields, Success extends S.Top | S.Struct.Fields, Error extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any>>(tag: Tag, fields: Payload, config: Omit<C, "invalidatesQueries"> & {
|
|
@@ -750,7 +1190,7 @@ export declare const SomethingReq: {
|
|
|
750
1190
|
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
751
1191
|
readonly id: `Something.${Tag}`;
|
|
752
1192
|
readonly moduleName: "Something";
|
|
753
|
-
readonly type: "
|
|
1193
|
+
readonly type: "stream";
|
|
754
1194
|
readonly "~invalidationResources"?: Resources;
|
|
755
1195
|
};
|
|
756
1196
|
<Tag extends string, Payload extends S.Struct.Fields, Success extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
@@ -803,7 +1243,7 @@ export declare const SomethingReq: {
|
|
|
803
1243
|
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
804
1244
|
readonly id: `Something.${Tag}`;
|
|
805
1245
|
readonly moduleName: "Something";
|
|
806
|
-
readonly type: "
|
|
1246
|
+
readonly type: "stream";
|
|
807
1247
|
readonly "~invalidationResources"?: Resources;
|
|
808
1248
|
};
|
|
809
1249
|
<Tag extends string, Payload extends S.Struct.Fields, Error extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
@@ -856,7 +1296,7 @@ export declare const SomethingReq: {
|
|
|
856
1296
|
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
857
1297
|
readonly id: `Something.${Tag}`;
|
|
858
1298
|
readonly moduleName: "Something";
|
|
859
|
-
readonly type: "
|
|
1299
|
+
readonly type: "stream";
|
|
860
1300
|
readonly "~invalidationResources"?: Resources;
|
|
861
1301
|
};
|
|
862
1302
|
<Tag extends string, Payload extends S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
@@ -886,7 +1326,7 @@ export declare const SomethingReq: {
|
|
|
886
1326
|
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never>;
|
|
887
1327
|
readonly id: `Something.${Tag}`;
|
|
888
1328
|
readonly moduleName: "Something";
|
|
889
|
-
readonly type: "
|
|
1329
|
+
readonly type: "stream";
|
|
890
1330
|
readonly "~invalidationResources"?: Resources;
|
|
891
1331
|
};
|
|
892
1332
|
<Tag extends string, Payload extends S.Struct.Fields>(tag: Tag, fields: Payload): S.EnhancedClass<Self, S.Struct<{
|
|
@@ -900,12 +1340,12 @@ export declare const SomethingReq: {
|
|
|
900
1340
|
readonly "~encodingServices": never;
|
|
901
1341
|
readonly id: `Something.${Tag}`;
|
|
902
1342
|
readonly moduleName: "Something";
|
|
903
|
-
readonly type: "
|
|
1343
|
+
readonly type: "stream";
|
|
904
1344
|
readonly "~invalidationResources"?: never;
|
|
905
1345
|
};
|
|
906
1346
|
}) & {
|
|
907
1347
|
readonly moduleName: "Something";
|
|
908
|
-
readonly type: "
|
|
1348
|
+
readonly type: "stream";
|
|
909
1349
|
};
|
|
910
1350
|
};
|
|
911
1351
|
declare const SomethingGetSomething2_base: S.EnhancedClass<SomethingGetSomething2, S.Struct<{
|
|
@@ -1037,64 +1477,284 @@ declare const SomethingDoSomething_base: S.EnhancedClass<SomethingDoSomething, S
|
|
|
1037
1477
|
readonly invalidationResources?: {
|
|
1038
1478
|
Something: SomethingInvalidationResources;
|
|
1039
1479
|
};
|
|
1040
|
-
}>, "error" | "success">;
|
|
1041
|
-
readonly "~decodingServices": never;
|
|
1042
|
-
readonly "~encodingServices": never;
|
|
1043
|
-
readonly id: "Something.DoSomething";
|
|
1044
|
-
readonly moduleName: "Something";
|
|
1045
|
-
readonly type: "command";
|
|
1046
|
-
readonly "~invalidationResources"?: {
|
|
1047
|
-
Something: SomethingInvalidationResources;
|
|
1048
|
-
};
|
|
1049
|
-
};
|
|
1050
|
-
declare class SomethingDoSomething extends SomethingDoSomething_base {
|
|
1051
|
-
}
|
|
1052
|
-
declare const SomethingGetStructNullable_base: S.EnhancedClass<SomethingGetStructNullable, S.Struct<{
|
|
1053
|
-
readonly _tag: S.tag<"GetStructNullable">;
|
|
1054
|
-
}>, {}> & {
|
|
1055
|
-
readonly _tag: "GetStructNullable";
|
|
1056
|
-
readonly success: S.Struct<{
|
|
1057
|
-
readonly a: import("effect/Schema").NullOr<S.String> & {
|
|
1058
|
-
withDefault: S.withConstructorDefault<import("effect/Schema").NullOr<S.String>>;
|
|
1059
|
-
withDecodingDefaultType: S.withDecodingDefaultType<import("effect/Schema").NullOr<S.String>>;
|
|
1480
|
+
}>, "error" | "success">;
|
|
1481
|
+
readonly "~decodingServices": never;
|
|
1482
|
+
readonly "~encodingServices": never;
|
|
1483
|
+
readonly id: "Something.DoSomething";
|
|
1484
|
+
readonly moduleName: "Something";
|
|
1485
|
+
readonly type: "command";
|
|
1486
|
+
readonly "~invalidationResources"?: {
|
|
1487
|
+
Something: SomethingInvalidationResources;
|
|
1488
|
+
};
|
|
1489
|
+
};
|
|
1490
|
+
declare class SomethingDoSomething extends SomethingDoSomething_base {
|
|
1491
|
+
}
|
|
1492
|
+
declare const SomethingGetStructNullable_base: S.EnhancedClass<SomethingGetStructNullable, S.Struct<{
|
|
1493
|
+
readonly _tag: S.tag<"GetStructNullable">;
|
|
1494
|
+
}>, {}> & {
|
|
1495
|
+
readonly _tag: "GetStructNullable";
|
|
1496
|
+
readonly success: S.Struct<{
|
|
1497
|
+
readonly a: import("effect/Schema").NullOr<S.String> & {
|
|
1498
|
+
withDefault: S.withConstructorDefault<import("effect/Schema").NullOr<S.String>>;
|
|
1499
|
+
withDecodingDefaultType: S.withDecodingDefaultType<import("effect/Schema").NullOr<S.String>>;
|
|
1500
|
+
};
|
|
1501
|
+
}>;
|
|
1502
|
+
readonly error: never;
|
|
1503
|
+
readonly config: Omit<Omit<RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
1504
|
+
error?: never;
|
|
1505
|
+
}, "invalidatesQueries"> & {
|
|
1506
|
+
success: S.Struct<{
|
|
1507
|
+
readonly a: import("effect/Schema").NullOr<S.String> & {
|
|
1508
|
+
withDefault: S.withConstructorDefault<import("effect/Schema").NullOr<S.String>>;
|
|
1509
|
+
withDecodingDefaultType: S.withDecodingDefaultType<import("effect/Schema").NullOr<S.String>>;
|
|
1510
|
+
};
|
|
1511
|
+
}>;
|
|
1512
|
+
} & Partial<{
|
|
1513
|
+
readonly invalidatesQueries: import("effect-app/client").InvalidationCallback<never, void, {
|
|
1514
|
+
readonly a: string | null;
|
|
1515
|
+
}, never>;
|
|
1516
|
+
readonly invalidationResources?: never;
|
|
1517
|
+
}>, "error" | "success">;
|
|
1518
|
+
readonly "~decodingServices": never;
|
|
1519
|
+
readonly "~encodingServices": never;
|
|
1520
|
+
readonly id: "Something.GetStructNullable";
|
|
1521
|
+
readonly moduleName: "Something";
|
|
1522
|
+
readonly type: "query";
|
|
1523
|
+
readonly "~invalidationResources"?: never;
|
|
1524
|
+
};
|
|
1525
|
+
declare class SomethingGetStructNullable extends SomethingGetStructNullable_base {
|
|
1526
|
+
}
|
|
1527
|
+
export declare const Something: {
|
|
1528
|
+
GetSomething2: typeof SomethingGetSomething2;
|
|
1529
|
+
GetSomething2WithDependencies: typeof SomethingGetSomething2WithDependencies;
|
|
1530
|
+
GetSomething3: typeof SomethingGetSomething3;
|
|
1531
|
+
GetSomething4: typeof SomethingGetSomething4;
|
|
1532
|
+
DoSomething: typeof SomethingDoSomething;
|
|
1533
|
+
GetStructNullable: typeof SomethingGetStructNullable;
|
|
1534
|
+
};
|
|
1535
|
+
export declare const SomethingElseReq: {
|
|
1536
|
+
readonly moduleName: "SomethingElse";
|
|
1537
|
+
readonly Query: (<Self, Resources extends {
|
|
1538
|
+
[x: string]: Record<string, unknown>;
|
|
1539
|
+
} = never>() => {
|
|
1540
|
+
<Tag extends string, Payload extends S.Struct.Fields, Success extends S.Top | S.Struct.Fields, Error extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any>>(tag: Tag, fields: Payload, config: Omit<C, "invalidatesQueries"> & {
|
|
1541
|
+
success: Success;
|
|
1542
|
+
error: Error;
|
|
1543
|
+
}, invalidatesQueries?: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) extends infer T_1 ? T_1 extends (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) ? T_1 extends S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never> ? void : S.Schema.Type<T_1> : never : never, S.Schema.Type<C & {
|
|
1544
|
+
success: Success;
|
|
1545
|
+
error: Error;
|
|
1546
|
+
} extends infer T_2 ? T_2 extends C & {
|
|
1547
|
+
success: Success;
|
|
1548
|
+
error: Error;
|
|
1549
|
+
} ? T_2 extends {
|
|
1550
|
+
error: infer E;
|
|
1551
|
+
} ? E extends S.Top ? E : E extends import("effect/Schema").Struct.Fields ? S.Struct<E> : S.Void : never : never : never>> | undefined): S.EnhancedClass<Self, S.Struct<{
|
|
1552
|
+
readonly _tag: S.tag<Tag>;
|
|
1553
|
+
} & Payload>, {}> & {
|
|
1554
|
+
readonly _tag: Tag;
|
|
1555
|
+
readonly success: Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void;
|
|
1556
|
+
readonly error: C & {
|
|
1557
|
+
success: Success;
|
|
1558
|
+
error: Error;
|
|
1559
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
1560
|
+
success: Success;
|
|
1561
|
+
error: Error;
|
|
1562
|
+
} ? T_1_1 extends {
|
|
1563
|
+
error: infer E_1;
|
|
1564
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never;
|
|
1565
|
+
readonly config: Omit<Omit<C, "invalidatesQueries"> & {
|
|
1566
|
+
success: Success;
|
|
1567
|
+
error: Error;
|
|
1568
|
+
} & Partial<{
|
|
1569
|
+
readonly invalidatesQueries: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) extends infer T_1 ? T_1 extends (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) ? T_1 extends S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never> ? void : S.Schema.Type<T_1> : never : never, S.Schema.Type<C & {
|
|
1570
|
+
success: Success;
|
|
1571
|
+
error: Error;
|
|
1572
|
+
} extends infer T_2_1 ? T_2_1 extends C & {
|
|
1573
|
+
success: Success;
|
|
1574
|
+
error: Error;
|
|
1575
|
+
} ? T_2_1 extends {
|
|
1576
|
+
error: infer E_2;
|
|
1577
|
+
} ? E_2 extends S.Top ? E_2 : E_2 extends import("effect/Schema").Struct.Fields ? S.Struct<E_2> : S.Void : never : never : never>>;
|
|
1578
|
+
readonly invalidationResources?: Resources;
|
|
1579
|
+
}>, "error" | "success">;
|
|
1580
|
+
readonly "~decodingServices": S.Codec.DecodingServices<Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void> | S.Codec.DecodingServices<C & {
|
|
1581
|
+
success: Success;
|
|
1582
|
+
error: Error;
|
|
1583
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
1584
|
+
success: Success;
|
|
1585
|
+
error: Error;
|
|
1586
|
+
} ? T_1_1 extends {
|
|
1587
|
+
error: infer E_1;
|
|
1588
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
1589
|
+
readonly "~encodingServices": S.Codec.EncodingServices<Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void> | S.Codec.EncodingServices<C & {
|
|
1590
|
+
success: Success;
|
|
1591
|
+
error: Error;
|
|
1592
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
1593
|
+
success: Success;
|
|
1594
|
+
error: Error;
|
|
1595
|
+
} ? T_1_1 extends {
|
|
1596
|
+
error: infer E_1;
|
|
1597
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
1598
|
+
readonly id: `SomethingElse.${Tag}`;
|
|
1599
|
+
readonly moduleName: "SomethingElse";
|
|
1600
|
+
readonly type: "query";
|
|
1601
|
+
readonly "~invalidationResources"?: Resources;
|
|
1602
|
+
};
|
|
1603
|
+
<Tag extends string, Payload extends S.Struct.Fields, Success extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
1604
|
+
error?: never;
|
|
1605
|
+
}>(tag: Tag, fields: Payload, config: Omit<C, "invalidatesQueries"> & {
|
|
1606
|
+
success: Success;
|
|
1607
|
+
}, invalidatesQueries?: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) extends infer T_1 ? T_1 extends (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) ? T_1 extends S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never> ? void : S.Schema.Type<T_1> : never : never, S.Schema.Type<C & {
|
|
1608
|
+
success: Success;
|
|
1609
|
+
} extends infer T_2 ? T_2 extends C & {
|
|
1610
|
+
success: Success;
|
|
1611
|
+
} ? T_2 extends {
|
|
1612
|
+
error: infer E;
|
|
1613
|
+
} ? E extends S.Top ? E : E extends import("effect/Schema").Struct.Fields ? S.Struct<E> : S.Void : never : never : never>> | undefined): S.EnhancedClass<Self, S.Struct<{
|
|
1614
|
+
readonly _tag: S.tag<Tag>;
|
|
1615
|
+
} & Payload>, {}> & {
|
|
1616
|
+
readonly _tag: Tag;
|
|
1617
|
+
readonly success: Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void;
|
|
1618
|
+
readonly error: C & {
|
|
1619
|
+
success: Success;
|
|
1620
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
1621
|
+
success: Success;
|
|
1622
|
+
} ? T_1_1 extends {
|
|
1623
|
+
error: infer E_1;
|
|
1624
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never;
|
|
1625
|
+
readonly config: Omit<Omit<C, "invalidatesQueries"> & {
|
|
1626
|
+
success: Success;
|
|
1627
|
+
} & Partial<{
|
|
1628
|
+
readonly invalidatesQueries: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) extends infer T_1 ? T_1 extends (Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void) ? T_1 extends S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never> ? void : S.Schema.Type<T_1> : never : never, S.Schema.Type<C & {
|
|
1629
|
+
success: Success;
|
|
1630
|
+
} extends infer T_2_1 ? T_2_1 extends C & {
|
|
1631
|
+
success: Success;
|
|
1632
|
+
} ? T_2_1 extends {
|
|
1633
|
+
error: infer E_2;
|
|
1634
|
+
} ? E_2 extends S.Top ? E_2 : E_2 extends import("effect/Schema").Struct.Fields ? S.Struct<E_2> : S.Void : never : never : never>>;
|
|
1635
|
+
readonly invalidationResources?: Resources;
|
|
1636
|
+
}>, "error" | "success">;
|
|
1637
|
+
readonly "~decodingServices": S.Codec.DecodingServices<Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void> | S.Codec.DecodingServices<C & {
|
|
1638
|
+
success: Success;
|
|
1639
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
1640
|
+
success: Success;
|
|
1641
|
+
} ? T_1_1 extends {
|
|
1642
|
+
error: infer E_1;
|
|
1643
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
1644
|
+
readonly "~encodingServices": S.Codec.EncodingServices<Success extends S.Top ? Success : Success extends import("effect/Schema").Struct.Fields ? S.Struct<Success> : S.Void> | S.Codec.EncodingServices<C & {
|
|
1645
|
+
success: Success;
|
|
1646
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
1647
|
+
success: Success;
|
|
1648
|
+
} ? T_1_1 extends {
|
|
1649
|
+
error: infer E_1;
|
|
1650
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
1651
|
+
readonly id: `SomethingElse.${Tag}`;
|
|
1652
|
+
readonly moduleName: "SomethingElse";
|
|
1653
|
+
readonly type: "query";
|
|
1654
|
+
readonly "~invalidationResources"?: Resources;
|
|
1655
|
+
};
|
|
1656
|
+
<Tag extends string, Payload extends S.Struct.Fields, Error extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
1657
|
+
success?: never;
|
|
1658
|
+
}>(tag: Tag, fields: Payload, config: Omit<C, "invalidatesQueries"> & {
|
|
1659
|
+
error: Error;
|
|
1660
|
+
}, invalidatesQueries?: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, void, S.Schema.Type<C & {
|
|
1661
|
+
error: Error;
|
|
1662
|
+
} extends infer T_1 ? T_1 extends C & {
|
|
1663
|
+
error: Error;
|
|
1664
|
+
} ? T_1 extends {
|
|
1665
|
+
error: infer E;
|
|
1666
|
+
} ? E extends S.Top ? E : E extends import("effect/Schema").Struct.Fields ? S.Struct<E> : S.Void : never : never : never>> | undefined): S.EnhancedClass<Self, S.Struct<{
|
|
1667
|
+
readonly _tag: S.tag<Tag>;
|
|
1668
|
+
} & Payload>, {}> & {
|
|
1669
|
+
readonly _tag: Tag;
|
|
1670
|
+
readonly success: S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never>;
|
|
1671
|
+
readonly error: C & {
|
|
1672
|
+
error: Error;
|
|
1673
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
1674
|
+
error: Error;
|
|
1675
|
+
} ? T_1_1 extends {
|
|
1676
|
+
error: infer E_1;
|
|
1677
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never;
|
|
1678
|
+
readonly config: Omit<Omit<C, "invalidatesQueries"> & {
|
|
1679
|
+
error: Error;
|
|
1680
|
+
} & Partial<{
|
|
1681
|
+
readonly invalidatesQueries: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, void, S.Schema.Type<C & {
|
|
1682
|
+
error: Error;
|
|
1683
|
+
} extends infer T_2 ? T_2 extends C & {
|
|
1684
|
+
error: Error;
|
|
1685
|
+
} ? T_2 extends {
|
|
1686
|
+
error: infer E_2;
|
|
1687
|
+
} ? E_2 extends S.Top ? E_2 : E_2 extends import("effect/Schema").Struct.Fields ? S.Struct<E_2> : S.Void : never : never : never>>;
|
|
1688
|
+
readonly invalidationResources?: Resources;
|
|
1689
|
+
}>, "error" | "success">;
|
|
1690
|
+
readonly "~decodingServices": S.Codec.DecodingServices<C & {
|
|
1691
|
+
error: Error;
|
|
1692
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
1693
|
+
error: Error;
|
|
1694
|
+
} ? T_1_1 extends {
|
|
1695
|
+
error: infer E_1;
|
|
1696
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
1697
|
+
readonly "~encodingServices": S.Codec.EncodingServices<C & {
|
|
1698
|
+
error: Error;
|
|
1699
|
+
} extends infer T_1_1 ? T_1_1 extends C & {
|
|
1700
|
+
error: Error;
|
|
1701
|
+
} ? T_1_1 extends {
|
|
1702
|
+
error: infer E_1;
|
|
1703
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
1704
|
+
readonly id: `SomethingElse.${Tag}`;
|
|
1705
|
+
readonly moduleName: "SomethingElse";
|
|
1706
|
+
readonly type: "query";
|
|
1707
|
+
readonly "~invalidationResources"?: Resources;
|
|
1060
1708
|
};
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
readonly
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
readonly
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
}
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1709
|
+
<Tag extends string, Payload extends S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
1710
|
+
success?: never;
|
|
1711
|
+
error?: never;
|
|
1712
|
+
}>(tag: Tag, fields: Payload, config: Omit<C, "invalidatesQueries">, invalidatesQueries?: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, void, S.Schema.Type<C extends {
|
|
1713
|
+
error: infer E;
|
|
1714
|
+
} ? E extends S.Top ? E : E extends import("effect/Schema").Struct.Fields ? S.Struct<E> : S.Void : never>> | undefined): S.EnhancedClass<Self, S.Struct<{
|
|
1715
|
+
readonly _tag: S.tag<Tag>;
|
|
1716
|
+
} & Payload>, {}> & {
|
|
1717
|
+
readonly _tag: Tag;
|
|
1718
|
+
readonly success: S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never>;
|
|
1719
|
+
readonly error: C extends {
|
|
1720
|
+
error: infer E_1;
|
|
1721
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never;
|
|
1722
|
+
readonly config: Omit<Omit<C, "invalidatesQueries"> & Partial<{
|
|
1723
|
+
readonly invalidatesQueries: import("effect-app/client").InvalidationCallback<Resources, keyof Payload extends never ? void : import("effect/Schema").Struct.Type_<Payload, import("effect/Schema").Struct.TypeOptionalKeys<Payload>, import("effect/Schema").Struct.TypeMutableKeys<Payload>> extends infer T ? { [K in keyof T]: T[K]; } : never, void, S.Schema.Type<C extends {
|
|
1724
|
+
error: infer E_2;
|
|
1725
|
+
} ? E_2 extends S.Top ? E_2 : E_2 extends import("effect/Schema").Struct.Fields ? S.Struct<E_2> : S.Void : never>>;
|
|
1726
|
+
readonly invalidationResources?: Resources;
|
|
1727
|
+
}>, "error" | "success">;
|
|
1728
|
+
readonly "~decodingServices": S.Codec.DecodingServices<C extends {
|
|
1729
|
+
error: infer E_1;
|
|
1730
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never>;
|
|
1731
|
+
readonly "~encodingServices": S.Codec.EncodingServices<C extends {
|
|
1732
|
+
error: infer E_1;
|
|
1733
|
+
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never>;
|
|
1734
|
+
readonly id: `SomethingElse.${Tag}`;
|
|
1735
|
+
readonly moduleName: "SomethingElse";
|
|
1736
|
+
readonly type: "query";
|
|
1737
|
+
readonly "~invalidationResources"?: Resources;
|
|
1738
|
+
};
|
|
1739
|
+
<Tag extends string, Payload extends S.Struct.Fields>(tag: Tag, fields: Payload): S.EnhancedClass<Self, S.Struct<{
|
|
1740
|
+
readonly _tag: S.tag<Tag>;
|
|
1741
|
+
} & Payload>, {}> & {
|
|
1742
|
+
readonly _tag: Tag;
|
|
1743
|
+
readonly success: S.decodeTo<S.Any, S.declare<unknown, unknown>, never, never>;
|
|
1744
|
+
readonly error: never;
|
|
1745
|
+
readonly config: Record<string, never>;
|
|
1746
|
+
readonly "~decodingServices": never;
|
|
1747
|
+
readonly "~encodingServices": never;
|
|
1748
|
+
readonly id: `SomethingElse.${Tag}`;
|
|
1749
|
+
readonly moduleName: "SomethingElse";
|
|
1750
|
+
readonly type: "query";
|
|
1751
|
+
readonly "~invalidationResources"?: never;
|
|
1752
|
+
};
|
|
1753
|
+
}) & {
|
|
1754
|
+
readonly moduleName: "SomethingElse";
|
|
1755
|
+
readonly type: "query";
|
|
1756
|
+
};
|
|
1757
|
+
readonly Command: (<Self, Resources extends {
|
|
1098
1758
|
[x: string]: Record<string, unknown>;
|
|
1099
1759
|
} = never>() => {
|
|
1100
1760
|
<Tag extends string, Payload extends S.Struct.Fields, Success extends S.Top | S.Struct.Fields, Error extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any>>(tag: Tag, fields: Payload, config: Omit<C, "invalidatesQueries"> & {
|
|
@@ -1157,7 +1817,7 @@ export declare const SomethingElseReq: {
|
|
|
1157
1817
|
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
1158
1818
|
readonly id: `SomethingElse.${Tag}`;
|
|
1159
1819
|
readonly moduleName: "SomethingElse";
|
|
1160
|
-
readonly type: "
|
|
1820
|
+
readonly type: "command";
|
|
1161
1821
|
readonly "~invalidationResources"?: Resources;
|
|
1162
1822
|
};
|
|
1163
1823
|
<Tag extends string, Payload extends S.Struct.Fields, Success extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
@@ -1210,7 +1870,7 @@ export declare const SomethingElseReq: {
|
|
|
1210
1870
|
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
1211
1871
|
readonly id: `SomethingElse.${Tag}`;
|
|
1212
1872
|
readonly moduleName: "SomethingElse";
|
|
1213
|
-
readonly type: "
|
|
1873
|
+
readonly type: "command";
|
|
1214
1874
|
readonly "~invalidationResources"?: Resources;
|
|
1215
1875
|
};
|
|
1216
1876
|
<Tag extends string, Payload extends S.Struct.Fields, Error extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
@@ -1263,7 +1923,7 @@ export declare const SomethingElseReq: {
|
|
|
1263
1923
|
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
1264
1924
|
readonly id: `SomethingElse.${Tag}`;
|
|
1265
1925
|
readonly moduleName: "SomethingElse";
|
|
1266
|
-
readonly type: "
|
|
1926
|
+
readonly type: "command";
|
|
1267
1927
|
readonly "~invalidationResources"?: Resources;
|
|
1268
1928
|
};
|
|
1269
1929
|
<Tag extends string, Payload extends S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
@@ -1293,7 +1953,7 @@ export declare const SomethingElseReq: {
|
|
|
1293
1953
|
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never>;
|
|
1294
1954
|
readonly id: `SomethingElse.${Tag}`;
|
|
1295
1955
|
readonly moduleName: "SomethingElse";
|
|
1296
|
-
readonly type: "
|
|
1956
|
+
readonly type: "command";
|
|
1297
1957
|
readonly "~invalidationResources"?: Resources;
|
|
1298
1958
|
};
|
|
1299
1959
|
<Tag extends string, Payload extends S.Struct.Fields>(tag: Tag, fields: Payload): S.EnhancedClass<Self, S.Struct<{
|
|
@@ -1307,14 +1967,14 @@ export declare const SomethingElseReq: {
|
|
|
1307
1967
|
readonly "~encodingServices": never;
|
|
1308
1968
|
readonly id: `SomethingElse.${Tag}`;
|
|
1309
1969
|
readonly moduleName: "SomethingElse";
|
|
1310
|
-
readonly type: "
|
|
1970
|
+
readonly type: "command";
|
|
1311
1971
|
readonly "~invalidationResources"?: never;
|
|
1312
1972
|
};
|
|
1313
1973
|
}) & {
|
|
1314
1974
|
readonly moduleName: "SomethingElse";
|
|
1315
|
-
readonly type: "
|
|
1975
|
+
readonly type: "command";
|
|
1316
1976
|
};
|
|
1317
|
-
readonly
|
|
1977
|
+
readonly Stream: (<Self, Resources extends {
|
|
1318
1978
|
[x: string]: Record<string, unknown>;
|
|
1319
1979
|
} = never>() => {
|
|
1320
1980
|
<Tag extends string, Payload extends S.Struct.Fields, Success extends S.Top | S.Struct.Fields, Error extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any>>(tag: Tag, fields: Payload, config: Omit<C, "invalidatesQueries"> & {
|
|
@@ -1377,7 +2037,7 @@ export declare const SomethingElseReq: {
|
|
|
1377
2037
|
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
1378
2038
|
readonly id: `SomethingElse.${Tag}`;
|
|
1379
2039
|
readonly moduleName: "SomethingElse";
|
|
1380
|
-
readonly type: "
|
|
2040
|
+
readonly type: "stream";
|
|
1381
2041
|
readonly "~invalidationResources"?: Resources;
|
|
1382
2042
|
};
|
|
1383
2043
|
<Tag extends string, Payload extends S.Struct.Fields, Success extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
@@ -1430,7 +2090,7 @@ export declare const SomethingElseReq: {
|
|
|
1430
2090
|
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
1431
2091
|
readonly id: `SomethingElse.${Tag}`;
|
|
1432
2092
|
readonly moduleName: "SomethingElse";
|
|
1433
|
-
readonly type: "
|
|
2093
|
+
readonly type: "stream";
|
|
1434
2094
|
readonly "~invalidationResources"?: Resources;
|
|
1435
2095
|
};
|
|
1436
2096
|
<Tag extends string, Payload extends S.Struct.Fields, Error extends S.Top | S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
@@ -1483,7 +2143,7 @@ export declare const SomethingElseReq: {
|
|
|
1483
2143
|
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never : never : never>;
|
|
1484
2144
|
readonly id: `SomethingElse.${Tag}`;
|
|
1485
2145
|
readonly moduleName: "SomethingElse";
|
|
1486
|
-
readonly type: "
|
|
2146
|
+
readonly type: "stream";
|
|
1487
2147
|
readonly "~invalidationResources"?: Resources;
|
|
1488
2148
|
};
|
|
1489
2149
|
<Tag extends string, Payload extends S.Struct.Fields, C extends RpcContextMap.GetContextConfig<{}> & Record<string, any> & {
|
|
@@ -1513,7 +2173,7 @@ export declare const SomethingElseReq: {
|
|
|
1513
2173
|
} ? E_1 extends S.Top ? E_1 : E_1 extends import("effect/Schema").Struct.Fields ? S.Struct<E_1> : S.Void : never>;
|
|
1514
2174
|
readonly id: `SomethingElse.${Tag}`;
|
|
1515
2175
|
readonly moduleName: "SomethingElse";
|
|
1516
|
-
readonly type: "
|
|
2176
|
+
readonly type: "stream";
|
|
1517
2177
|
readonly "~invalidationResources"?: Resources;
|
|
1518
2178
|
};
|
|
1519
2179
|
<Tag extends string, Payload extends S.Struct.Fields>(tag: Tag, fields: Payload): S.EnhancedClass<Self, S.Struct<{
|
|
@@ -1527,12 +2187,12 @@ export declare const SomethingElseReq: {
|
|
|
1527
2187
|
readonly "~encodingServices": never;
|
|
1528
2188
|
readonly id: `SomethingElse.${Tag}`;
|
|
1529
2189
|
readonly moduleName: "SomethingElse";
|
|
1530
|
-
readonly type: "
|
|
2190
|
+
readonly type: "stream";
|
|
1531
2191
|
readonly "~invalidationResources"?: never;
|
|
1532
2192
|
};
|
|
1533
2193
|
}) & {
|
|
1534
2194
|
readonly moduleName: "SomethingElse";
|
|
1535
|
-
readonly type: "
|
|
2195
|
+
readonly type: "stream";
|
|
1536
2196
|
};
|
|
1537
2197
|
};
|
|
1538
2198
|
declare const SomethingElseGetSomething2_base: S.EnhancedClass<SomethingElseGetSomething2, S.Struct<{
|
|
@@ -1857,7 +2517,7 @@ export declare const useClient: (options?: {
|
|
|
1857
2517
|
config?: Record<string, any>;
|
|
1858
2518
|
readonly id: string;
|
|
1859
2519
|
readonly moduleName: string;
|
|
1860
|
-
readonly type: "command" | "query";
|
|
2520
|
+
readonly type: "command" | "query" | "stream";
|
|
1861
2521
|
readonly "~decodingServices"?: unknown;
|
|
1862
2522
|
}, infer Id extends string> ? Request["type"] extends "query" ? import("effect-app/client").RequestHandlerWithInput<I_1, A, E, R_1, Request, Id> : never : T_1 extends import("effect-app/client").RequestHandler<infer A_1, infer E_1, infer R_2, infer Request_1 extends S.Top & {
|
|
1863
2523
|
readonly make: (...args: any[]) => any;
|
|
@@ -1868,7 +2528,7 @@ export declare const useClient: (options?: {
|
|
|
1868
2528
|
config?: Record<string, any>;
|
|
1869
2529
|
readonly id: string;
|
|
1870
2530
|
readonly moduleName: string;
|
|
1871
|
-
readonly type: "command" | "query";
|
|
2531
|
+
readonly type: "command" | "query" | "stream";
|
|
1872
2532
|
readonly "~decodingServices"?: unknown;
|
|
1873
2533
|
}, infer Id_1 extends string> ? Request_1["type"] extends "query" ? import("effect-app/client").RequestHandler<A_1, E_1, R_2, Request_1, Id_1> : never : never : never : never) extends never ? {} : import("../src/makeClient.js").QueryRequestWithExtensions<import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_1 ? T_1 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_1 extends import("effect-app/client").RequestHandlerWithInput<infer I_1, infer A, infer E, infer R_1, infer Request extends S.Top & {
|
|
1874
2534
|
readonly make: (...args: any[]) => any;
|
|
@@ -1879,7 +2539,7 @@ export declare const useClient: (options?: {
|
|
|
1879
2539
|
config?: Record<string, any>;
|
|
1880
2540
|
readonly id: string;
|
|
1881
2541
|
readonly moduleName: string;
|
|
1882
|
-
readonly type: "command" | "query";
|
|
2542
|
+
readonly type: "command" | "query" | "stream";
|
|
1883
2543
|
readonly "~decodingServices"?: unknown;
|
|
1884
2544
|
}, infer Id extends string> ? Request["type"] extends "query" ? import("effect-app/client").RequestHandlerWithInput<I_1, A, E, R_1, Request, Id> : never : T_1 extends import("effect-app/client").RequestHandler<infer A_1, infer E_1, infer R_2, infer Request_1 extends S.Top & {
|
|
1885
2545
|
readonly make: (...args: any[]) => any;
|
|
@@ -1890,7 +2550,7 @@ export declare const useClient: (options?: {
|
|
|
1890
2550
|
config?: Record<string, any>;
|
|
1891
2551
|
readonly id: string;
|
|
1892
2552
|
readonly moduleName: string;
|
|
1893
|
-
readonly type: "command" | "query";
|
|
2553
|
+
readonly type: "command" | "query" | "stream";
|
|
1894
2554
|
readonly "~decodingServices"?: unknown;
|
|
1895
2555
|
}, infer Id_1 extends string> ? Request_1["type"] extends "query" ? import("effect-app/client").RequestHandler<A_1, E_1, R_2, Request_1, Id_1> : never : never : never : never> & import("../src/makeClient.js").Queries<WithToast | (ApiClientFactory | Commander | (I18n | Toast.Toast)), import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_1 ? T_1 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_1 extends import("effect-app/client").RequestHandlerWithInput<infer I_1, infer A, infer E, infer R_1, infer Request extends S.Top & {
|
|
1896
2556
|
readonly make: (...args: any[]) => any;
|
|
@@ -1901,7 +2561,7 @@ export declare const useClient: (options?: {
|
|
|
1901
2561
|
config?: Record<string, any>;
|
|
1902
2562
|
readonly id: string;
|
|
1903
2563
|
readonly moduleName: string;
|
|
1904
|
-
readonly type: "command" | "query";
|
|
2564
|
+
readonly type: "command" | "query" | "stream";
|
|
1905
2565
|
readonly "~decodingServices"?: unknown;
|
|
1906
2566
|
}, infer Id extends string> ? Request["type"] extends "query" ? import("effect-app/client").RequestHandlerWithInput<I_1, A, E, R_1, Request, Id> : never : T_1 extends import("effect-app/client").RequestHandler<infer A_1, infer E_1, infer R_2, infer Request_1 extends S.Top & {
|
|
1907
2567
|
readonly make: (...args: any[]) => any;
|
|
@@ -1912,7 +2572,7 @@ export declare const useClient: (options?: {
|
|
|
1912
2572
|
config?: Record<string, any>;
|
|
1913
2573
|
readonly id: string;
|
|
1914
2574
|
readonly moduleName: string;
|
|
1915
|
-
readonly type: "command" | "query";
|
|
2575
|
+
readonly type: "command" | "query" | "stream";
|
|
1916
2576
|
readonly "~decodingServices"?: unknown;
|
|
1917
2577
|
}, infer Id_1 extends string> ? Request_1["type"] extends "query" ? import("effect-app/client").RequestHandler<A_1, E_1, R_2, Request_1, Id_1> : never : never : never : never> & import("../src/makeClient.js").QueryProjection<WithToast | (ApiClientFactory | Commander | (I18n | Toast.Toast)), import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_1 ? T_1 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_1 extends import("effect-app/client").RequestHandlerWithInput<infer I_1, infer A, infer E, infer R_1, infer Request extends S.Top & {
|
|
1918
2578
|
readonly make: (...args: any[]) => any;
|
|
@@ -1923,7 +2583,7 @@ export declare const useClient: (options?: {
|
|
|
1923
2583
|
config?: Record<string, any>;
|
|
1924
2584
|
readonly id: string;
|
|
1925
2585
|
readonly moduleName: string;
|
|
1926
|
-
readonly type: "command" | "query";
|
|
2586
|
+
readonly type: "command" | "query" | "stream";
|
|
1927
2587
|
readonly "~decodingServices"?: unknown;
|
|
1928
2588
|
}, infer Id extends string> ? Request["type"] extends "query" ? import("effect-app/client").RequestHandlerWithInput<I_1, A, E, R_1, Request, Id> : never : T_1 extends import("effect-app/client").RequestHandler<infer A_1, infer E_1, infer R_2, infer Request_1 extends S.Top & {
|
|
1929
2589
|
readonly make: (...args: any[]) => any;
|
|
@@ -1934,7 +2594,7 @@ export declare const useClient: (options?: {
|
|
|
1934
2594
|
config?: Record<string, any>;
|
|
1935
2595
|
readonly id: string;
|
|
1936
2596
|
readonly moduleName: string;
|
|
1937
|
-
readonly type: "command" | "query";
|
|
2597
|
+
readonly type: "command" | "query" | "stream";
|
|
1938
2598
|
readonly "~decodingServices"?: unknown;
|
|
1939
2599
|
}, infer Id_1 extends string> ? Request_1["type"] extends "query" ? import("effect-app/client").RequestHandler<A_1, E_1, R_2, Request_1, Id_1> : never : never : never : never>) & ((import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_2 ? T_2 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_2 extends import("effect-app/client").RequestHandlerWithInput<infer I_2, infer A_2, infer E_2, infer R_3, infer Request_2 extends S.Top & {
|
|
1940
2600
|
readonly make: (...args: any[]) => any;
|
|
@@ -1945,7 +2605,7 @@ export declare const useClient: (options?: {
|
|
|
1945
2605
|
config?: Record<string, any>;
|
|
1946
2606
|
readonly id: string;
|
|
1947
2607
|
readonly moduleName: string;
|
|
1948
|
-
readonly type: "command" | "query";
|
|
2608
|
+
readonly type: "command" | "query" | "stream";
|
|
1949
2609
|
readonly "~decodingServices"?: unknown;
|
|
1950
2610
|
}, infer Id_2 extends string> ? Request_2["type"] extends "command" ? import("effect-app/client").RequestHandlerWithInput<I_2, A_2, E_2, R_3, Request_2, Id_2> : never : T_2 extends import("effect-app/client").RequestHandler<infer A_3, infer E_3, infer R_4, infer Request_3 extends S.Top & {
|
|
1951
2611
|
readonly make: (...args: any[]) => any;
|
|
@@ -1956,7 +2616,7 @@ export declare const useClient: (options?: {
|
|
|
1956
2616
|
config?: Record<string, any>;
|
|
1957
2617
|
readonly id: string;
|
|
1958
2618
|
readonly moduleName: string;
|
|
1959
|
-
readonly type: "command" | "query";
|
|
2619
|
+
readonly type: "command" | "query" | "stream";
|
|
1960
2620
|
readonly "~decodingServices"?: unknown;
|
|
1961
2621
|
}, infer Id_3 extends string> ? Request_3["type"] extends "command" ? import("effect-app/client").RequestHandler<A_3, E_3, R_4, Request_3, Id_3> : never : never : never : never) extends never ? {} : import("../src/makeClient.js").CommandRequestWithExtensions<WithToast | (ApiClientFactory | Commander | (I18n | Toast.Toast)), import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_2 ? T_2 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_2 extends import("effect-app/client").RequestHandlerWithInput<infer I_2, infer A_2, infer E_2, infer R_3, infer Request_2 extends S.Top & {
|
|
1962
2622
|
readonly make: (...args: any[]) => any;
|
|
@@ -1967,7 +2627,7 @@ export declare const useClient: (options?: {
|
|
|
1967
2627
|
config?: Record<string, any>;
|
|
1968
2628
|
readonly id: string;
|
|
1969
2629
|
readonly moduleName: string;
|
|
1970
|
-
readonly type: "command" | "query";
|
|
2630
|
+
readonly type: "command" | "query" | "stream";
|
|
1971
2631
|
readonly "~decodingServices"?: unknown;
|
|
1972
2632
|
}, infer Id_2 extends string> ? Request_2["type"] extends "command" ? import("effect-app/client").RequestHandlerWithInput<I_2, A_2, E_2, R_3, Request_2, Id_2> : never : T_2 extends import("effect-app/client").RequestHandler<infer A_3, infer E_3, infer R_4, infer Request_3 extends S.Top & {
|
|
1973
2633
|
readonly make: (...args: any[]) => any;
|
|
@@ -1978,7 +2638,7 @@ export declare const useClient: (options?: {
|
|
|
1978
2638
|
config?: Record<string, any>;
|
|
1979
2639
|
readonly id: string;
|
|
1980
2640
|
readonly moduleName: string;
|
|
1981
|
-
readonly type: "command" | "query";
|
|
2641
|
+
readonly type: "command" | "query" | "stream";
|
|
1982
2642
|
readonly "~decodingServices"?: unknown;
|
|
1983
2643
|
}, infer Id_3 extends string> ? Request_3["type"] extends "command" ? import("effect-app/client").RequestHandler<A_3, E_3, R_4, Request_3, Id_3> : never : never : never : never>) & ((import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_2 ? T_2 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_2 extends import("effect-app/client").RequestHandlerWithInput<infer I_2, infer A_2, infer E_2, infer R_3, infer Request_2 extends S.Top & {
|
|
1984
2644
|
readonly make: (...args: any[]) => any;
|
|
@@ -1989,7 +2649,7 @@ export declare const useClient: (options?: {
|
|
|
1989
2649
|
config?: Record<string, any>;
|
|
1990
2650
|
readonly id: string;
|
|
1991
2651
|
readonly moduleName: string;
|
|
1992
|
-
readonly type: "command" | "query";
|
|
2652
|
+
readonly type: "command" | "query" | "stream";
|
|
1993
2653
|
readonly "~decodingServices"?: unknown;
|
|
1994
2654
|
}, infer Id_2 extends string> ? Request_2["type"] extends "command" ? import("effect-app/client").RequestHandlerWithInput<I_2, A_2, E_2, R_3, Request_2, Id_2> : never : T_2 extends import("effect-app/client").RequestHandler<infer A_3, infer E_3, infer R_4, infer Request_3 extends S.Top & {
|
|
1995
2655
|
readonly make: (...args: any[]) => any;
|
|
@@ -2000,7 +2660,7 @@ export declare const useClient: (options?: {
|
|
|
2000
2660
|
config?: Record<string, any>;
|
|
2001
2661
|
readonly id: string;
|
|
2002
2662
|
readonly moduleName: string;
|
|
2003
|
-
readonly type: "command" | "query";
|
|
2663
|
+
readonly type: "command" | "query" | "stream";
|
|
2004
2664
|
readonly "~decodingServices"?: unknown;
|
|
2005
2665
|
}, infer Id_3 extends string> ? Request_3["type"] extends "command" ? import("effect-app/client").RequestHandler<A_3, E_3, R_4, Request_3, Id_3> : never : never : never : never) extends never ? {} : {
|
|
2006
2666
|
mutate: import("../src/makeClient.js").MutationWithExtensions<WithToast | (ApiClientFactory | Commander | (I18n | Toast.Toast)), import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_2 ? T_2 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_2 extends import("effect-app/client").RequestHandlerWithInput<infer I_2, infer A_2, infer E_2, infer R_3, infer Request_2 extends S.Top & {
|
|
@@ -2012,7 +2672,7 @@ export declare const useClient: (options?: {
|
|
|
2012
2672
|
config?: Record<string, any>;
|
|
2013
2673
|
readonly id: string;
|
|
2014
2674
|
readonly moduleName: string;
|
|
2015
|
-
readonly type: "command" | "query";
|
|
2675
|
+
readonly type: "command" | "query" | "stream";
|
|
2016
2676
|
readonly "~decodingServices"?: unknown;
|
|
2017
2677
|
}, infer Id_2 extends string> ? Request_2["type"] extends "command" ? import("effect-app/client").RequestHandlerWithInput<I_2, A_2, E_2, R_3, Request_2, Id_2> : never : T_2 extends import("effect-app/client").RequestHandler<infer A_3, infer E_3, infer R_4, infer Request_3 extends S.Top & {
|
|
2018
2678
|
readonly make: (...args: any[]) => any;
|
|
@@ -2023,11 +2683,57 @@ export declare const useClient: (options?: {
|
|
|
2023
2683
|
config?: Record<string, any>;
|
|
2024
2684
|
readonly id: string;
|
|
2025
2685
|
readonly moduleName: string;
|
|
2026
|
-
readonly type: "command" | "query";
|
|
2686
|
+
readonly type: "command" | "query" | "stream";
|
|
2027
2687
|
readonly "~decodingServices"?: unknown;
|
|
2028
2688
|
}, infer Id_3 extends string> ? Request_3["type"] extends "command" ? import("effect-app/client").RequestHandler<A_3, E_3, R_4, Request_3, Id_3> : never : never : never : never>;
|
|
2689
|
+
}) & ((import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_3 ? T_3 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_3 extends import("effect-app/client").RequestStreamHandlerWithInput<infer I_3, infer A_4, infer E_4, infer R_5, infer Request_4 extends S.Top & {
|
|
2690
|
+
readonly make: (...args: any[]) => any;
|
|
2691
|
+
_tag: string;
|
|
2692
|
+
fields: S.Struct.Fields;
|
|
2693
|
+
success: S.Top;
|
|
2694
|
+
error: S.Top;
|
|
2695
|
+
config?: Record<string, any>;
|
|
2696
|
+
readonly id: string;
|
|
2697
|
+
readonly moduleName: string;
|
|
2698
|
+
readonly type: "command" | "query" | "stream";
|
|
2699
|
+
readonly "~decodingServices"?: unknown;
|
|
2700
|
+
}, infer Id_4 extends string> ? Request_4["type"] extends "stream" ? import("effect-app/client").RequestStreamHandlerWithInput<I_3, A_4, E_4, R_5, Request_4, Id_4> : never : T_3 extends import("effect-app/client").RequestStreamHandler<infer A_5, infer E_5, infer R_6, infer Request_5 extends S.Top & {
|
|
2701
|
+
readonly make: (...args: any[]) => any;
|
|
2702
|
+
_tag: string;
|
|
2703
|
+
fields: S.Struct.Fields;
|
|
2704
|
+
success: S.Top;
|
|
2705
|
+
error: S.Top;
|
|
2706
|
+
config?: Record<string, any>;
|
|
2707
|
+
readonly id: string;
|
|
2708
|
+
readonly moduleName: string;
|
|
2709
|
+
readonly type: "command" | "query" | "stream";
|
|
2710
|
+
readonly "~decodingServices"?: unknown;
|
|
2711
|
+
}, infer Id_5 extends string> ? Request_5["type"] extends "stream" ? import("effect-app/client").RequestStreamHandler<A_5, E_5, R_6, Request_5, Id_5> : never : never : never : never) extends never ? {} : {
|
|
2712
|
+
mutateStream: import("../src/makeClient.js").StreamMutationWithExtensions<import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_3 ? T_3 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_3 extends import("effect-app/client").RequestStreamHandlerWithInput<infer I_3, infer A_4, infer E_4, infer R_5, infer Request_4 extends S.Top & {
|
|
2713
|
+
readonly make: (...args: any[]) => any;
|
|
2714
|
+
_tag: string;
|
|
2715
|
+
fields: S.Struct.Fields;
|
|
2716
|
+
success: S.Top;
|
|
2717
|
+
error: S.Top;
|
|
2718
|
+
config?: Record<string, any>;
|
|
2719
|
+
readonly id: string;
|
|
2720
|
+
readonly moduleName: string;
|
|
2721
|
+
readonly type: "command" | "query" | "stream";
|
|
2722
|
+
readonly "~decodingServices"?: unknown;
|
|
2723
|
+
}, infer Id_4 extends string> ? Request_4["type"] extends "stream" ? import("effect-app/client").RequestStreamHandlerWithInput<I_3, A_4, E_4, R_5, Request_4, Id_4> : never : T_3 extends import("effect-app/client").RequestStreamHandler<infer A_5, infer E_5, infer R_6, infer Request_5 extends S.Top & {
|
|
2724
|
+
readonly make: (...args: any[]) => any;
|
|
2725
|
+
_tag: string;
|
|
2726
|
+
fields: S.Struct.Fields;
|
|
2727
|
+
success: S.Top;
|
|
2728
|
+
error: S.Top;
|
|
2729
|
+
config?: Record<string, any>;
|
|
2730
|
+
readonly id: string;
|
|
2731
|
+
readonly moduleName: string;
|
|
2732
|
+
readonly type: "command" | "query" | "stream";
|
|
2733
|
+
readonly "~decodingServices"?: unknown;
|
|
2734
|
+
}, infer Id_5 extends string> ? Request_5["type"] extends "stream" ? import("effect-app/client").RequestStreamHandler<A_5, E_5, R_6, Request_5, Id_5> : never : never : never : never>;
|
|
2029
2735
|
}) & {
|
|
2030
|
-
Input: import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends import("effect-app/client").RequestHandlerWithInput<infer
|
|
2736
|
+
Input: import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends import("effect-app/client").RequestHandlerWithInput<infer I_4, any, any, any, any, any> ? I_4 : never;
|
|
2031
2737
|
}; } & {
|
|
2032
2738
|
helpers: { [Key in keyof import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>> as (import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_1 ? T_1 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_1 extends import("effect-app/client").RequestHandlerWithInput<infer I_1, infer A, infer E, infer R_1, infer Request extends S.Top & {
|
|
2033
2739
|
readonly make: (...args: any[]) => any;
|
|
@@ -2038,7 +2744,7 @@ export declare const useClient: (options?: {
|
|
|
2038
2744
|
config?: Record<string, any>;
|
|
2039
2745
|
readonly id: string;
|
|
2040
2746
|
readonly moduleName: string;
|
|
2041
|
-
readonly type: "command" | "query";
|
|
2747
|
+
readonly type: "command" | "query" | "stream";
|
|
2042
2748
|
readonly "~decodingServices"?: unknown;
|
|
2043
2749
|
}, infer Id extends string> ? Request_2["type"] extends "command" ? import("effect-app/client").RequestHandlerWithInput<I_2, A_2, E_2, R_3, Request_2, Id_2> : never : T_1 extends import("effect-app/client").RequestHandler<infer A_1, infer E_1, infer R_2, infer Request_1 extends S.Top & {
|
|
2044
2750
|
readonly make: (...args: any[]) => any;
|
|
@@ -2049,7 +2755,7 @@ export declare const useClient: (options?: {
|
|
|
2049
2755
|
config?: Record<string, any>;
|
|
2050
2756
|
readonly id: string;
|
|
2051
2757
|
readonly moduleName: string;
|
|
2052
|
-
readonly type: "command" | "query";
|
|
2758
|
+
readonly type: "command" | "query" | "stream";
|
|
2053
2759
|
readonly "~decodingServices"?: unknown;
|
|
2054
2760
|
}, infer Id_1 extends string> ? Request_3["type"] extends "command" ? import("effect-app/client").RequestHandler<A_3, E_3, R_4, Request_3, Id_3> : never : never : never : never) extends never ? never : `${import("../src/makeClient.js").ToCamel<string & Key>}Request`]: import("../src/makeClient.js").CommandRequestWithExtensions<WithToast | (ApiClientFactory | Commander | (I18n | Toast.Toast)), import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_1 ? T_1 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_1 extends import("effect-app/client").RequestHandlerWithInput<infer I_1, infer A, infer E, infer R_1, infer Request extends S.Top & {
|
|
2055
2761
|
readonly make: (...args: any[]) => any;
|
|
@@ -2060,7 +2766,7 @@ export declare const useClient: (options?: {
|
|
|
2060
2766
|
config?: Record<string, any>;
|
|
2061
2767
|
readonly id: string;
|
|
2062
2768
|
readonly moduleName: string;
|
|
2063
|
-
readonly type: "command" | "query";
|
|
2769
|
+
readonly type: "command" | "query" | "stream";
|
|
2064
2770
|
readonly "~decodingServices"?: unknown;
|
|
2065
2771
|
}, infer Id extends string> ? Request_2["type"] extends "command" ? import("effect-app/client").RequestHandlerWithInput<I_2, A_2, E_2, R_3, Request_2, Id_2> : never : T_1 extends import("effect-app/client").RequestHandler<infer A_1, infer E_1, infer R_2, infer Request_1 extends S.Top & {
|
|
2066
2772
|
readonly make: (...args: any[]) => any;
|
|
@@ -2071,7 +2777,7 @@ export declare const useClient: (options?: {
|
|
|
2071
2777
|
config?: Record<string, any>;
|
|
2072
2778
|
readonly id: string;
|
|
2073
2779
|
readonly moduleName: string;
|
|
2074
|
-
readonly type: "command" | "query";
|
|
2780
|
+
readonly type: "command" | "query" | "stream";
|
|
2075
2781
|
readonly "~decodingServices"?: unknown;
|
|
2076
2782
|
}, infer Id_1 extends string> ? Request_3["type"] extends "command" ? import("effect-app/client").RequestHandler<A_3, E_3, R_4, Request_3, Id_3> : never : never : never : never>; } & { [Key in keyof import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>> as (import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_1 ? T_1 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_1 extends import("effect-app/client").RequestHandlerWithInput<infer I_1, infer A, infer E, infer R_1, infer Request extends S.Top & {
|
|
2077
2783
|
readonly make: (...args: any[]) => any;
|
|
@@ -2082,7 +2788,7 @@ export declare const useClient: (options?: {
|
|
|
2082
2788
|
config?: Record<string, any>;
|
|
2083
2789
|
readonly id: string;
|
|
2084
2790
|
readonly moduleName: string;
|
|
2085
|
-
readonly type: "command" | "query";
|
|
2791
|
+
readonly type: "command" | "query" | "stream";
|
|
2086
2792
|
readonly "~decodingServices"?: unknown;
|
|
2087
2793
|
}, infer Id extends string> ? Request_2["type"] extends "command" ? import("effect-app/client").RequestHandlerWithInput<I_2, A_2, E_2, R_3, Request_2, Id_2> : never : T_1 extends import("effect-app/client").RequestHandler<infer A_1, infer E_1, infer R_2, infer Request_1 extends S.Top & {
|
|
2088
2794
|
readonly make: (...args: any[]) => any;
|
|
@@ -2093,7 +2799,7 @@ export declare const useClient: (options?: {
|
|
|
2093
2799
|
config?: Record<string, any>;
|
|
2094
2800
|
readonly id: string;
|
|
2095
2801
|
readonly moduleName: string;
|
|
2096
|
-
readonly type: "command" | "query";
|
|
2802
|
+
readonly type: "command" | "query" | "stream";
|
|
2097
2803
|
readonly "~decodingServices"?: unknown;
|
|
2098
2804
|
}, infer Id_1 extends string> ? Request_3["type"] extends "command" ? import("effect-app/client").RequestHandler<A_3, E_3, R_4, Request_3, Id_3> : never : never : never : never) extends never ? never : `${import("../src/makeClient.js").ToCamel<string & Key>}Mutation`]: import("../src/makeClient.js").MutationWithExtensions<WithToast | (ApiClientFactory | Commander | (I18n | Toast.Toast)), import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_1 ? T_1 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_1 extends import("effect-app/client").RequestHandlerWithInput<infer I_1, infer A, infer E, infer R_1, infer Request extends S.Top & {
|
|
2099
2805
|
readonly make: (...args: any[]) => any;
|
|
@@ -2104,7 +2810,7 @@ export declare const useClient: (options?: {
|
|
|
2104
2810
|
config?: Record<string, any>;
|
|
2105
2811
|
readonly id: string;
|
|
2106
2812
|
readonly moduleName: string;
|
|
2107
|
-
readonly type: "command" | "query";
|
|
2813
|
+
readonly type: "command" | "query" | "stream";
|
|
2108
2814
|
readonly "~decodingServices"?: unknown;
|
|
2109
2815
|
}, infer Id extends string> ? Request_2["type"] extends "command" ? import("effect-app/client").RequestHandlerWithInput<I_2, A_2, E_2, R_3, Request_2, Id_2> : never : T_1 extends import("effect-app/client").RequestHandler<infer A_1, infer E_1, infer R_2, infer Request_1 extends S.Top & {
|
|
2110
2816
|
readonly make: (...args: any[]) => any;
|
|
@@ -2115,9 +2821,53 @@ export declare const useClient: (options?: {
|
|
|
2115
2821
|
config?: Record<string, any>;
|
|
2116
2822
|
readonly id: string;
|
|
2117
2823
|
readonly moduleName: string;
|
|
2118
|
-
readonly type: "command" | "query";
|
|
2824
|
+
readonly type: "command" | "query" | "stream";
|
|
2119
2825
|
readonly "~decodingServices"?: unknown;
|
|
2120
|
-
}, infer Id_1 extends string> ? Request_3["type"] extends "command" ? import("effect-app/client").RequestHandler<A_3, E_3, R_4, Request_3, Id_3> : never : never : never : never>; } & { [Key in keyof import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>> as (import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_1 ? T_1 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_1 extends import("effect-app/client").
|
|
2826
|
+
}, infer Id_1 extends string> ? Request_3["type"] extends "command" ? import("effect-app/client").RequestHandler<A_3, E_3, R_4, Request_3, Id_3> : never : never : never : never>; } & { [Key in keyof import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>> as (import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_1 ? T_1 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_1 extends import("effect-app/client").RequestStreamHandlerWithInput<infer I_1, infer A, infer E, infer R_1, infer Request extends S.Top & {
|
|
2827
|
+
readonly make: (...args: any[]) => any;
|
|
2828
|
+
_tag: string;
|
|
2829
|
+
fields: S.Struct.Fields;
|
|
2830
|
+
success: S.Top;
|
|
2831
|
+
error: S.Top;
|
|
2832
|
+
config?: Record<string, any>;
|
|
2833
|
+
readonly id: string;
|
|
2834
|
+
readonly moduleName: string;
|
|
2835
|
+
readonly type: "command" | "query" | "stream";
|
|
2836
|
+
readonly "~decodingServices"?: unknown;
|
|
2837
|
+
}, infer Id extends string> ? Request_4["type"] extends "stream" ? import("effect-app/client").RequestStreamHandlerWithInput<I_3, A_4, E_4, R_5, Request_4, Id_4> : never : T_1 extends import("effect-app/client").RequestStreamHandler<infer A_1, infer E_1, infer R_2, infer Request_1 extends S.Top & {
|
|
2838
|
+
readonly make: (...args: any[]) => any;
|
|
2839
|
+
_tag: string;
|
|
2840
|
+
fields: S.Struct.Fields;
|
|
2841
|
+
success: S.Top;
|
|
2842
|
+
error: S.Top;
|
|
2843
|
+
config?: Record<string, any>;
|
|
2844
|
+
readonly id: string;
|
|
2845
|
+
readonly moduleName: string;
|
|
2846
|
+
readonly type: "command" | "query" | "stream";
|
|
2847
|
+
readonly "~decodingServices"?: unknown;
|
|
2848
|
+
}, infer Id_1 extends string> ? Request_5["type"] extends "stream" ? import("effect-app/client").RequestStreamHandler<A_5, E_5, R_6, Request_5, Id_5> : never : never : never : never) extends never ? never : `${import("../src/makeClient.js").ToCamel<string & Key>}Stream`]: import("../src/makeClient.js").StreamMutationWithExtensions<import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_1 ? T_1 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_1 extends import("effect-app/client").RequestStreamHandlerWithInput<infer I_1, infer A, infer E, infer R_1, infer Request extends S.Top & {
|
|
2849
|
+
readonly make: (...args: any[]) => any;
|
|
2850
|
+
_tag: string;
|
|
2851
|
+
fields: S.Struct.Fields;
|
|
2852
|
+
success: S.Top;
|
|
2853
|
+
error: S.Top;
|
|
2854
|
+
config?: Record<string, any>;
|
|
2855
|
+
readonly id: string;
|
|
2856
|
+
readonly moduleName: string;
|
|
2857
|
+
readonly type: "command" | "query" | "stream";
|
|
2858
|
+
readonly "~decodingServices"?: unknown;
|
|
2859
|
+
}, infer Id extends string> ? Request_4["type"] extends "stream" ? import("effect-app/client").RequestStreamHandlerWithInput<I_3, A_4, E_4, R_5, Request_4, Id_4> : never : T_1 extends import("effect-app/client").RequestStreamHandler<infer A_1, infer E_1, infer R_2, infer Request_1 extends S.Top & {
|
|
2860
|
+
readonly make: (...args: any[]) => any;
|
|
2861
|
+
_tag: string;
|
|
2862
|
+
fields: S.Struct.Fields;
|
|
2863
|
+
success: S.Top;
|
|
2864
|
+
error: S.Top;
|
|
2865
|
+
config?: Record<string, any>;
|
|
2866
|
+
readonly id: string;
|
|
2867
|
+
readonly moduleName: string;
|
|
2868
|
+
readonly type: "command" | "query" | "stream";
|
|
2869
|
+
readonly "~decodingServices"?: unknown;
|
|
2870
|
+
}, infer Id_1 extends string> ? Request_5["type"] extends "stream" ? import("effect-app/client").RequestStreamHandler<A_5, E_5, R_6, Request_5, Id_5> : never : never : never : never>; } & { [Key in keyof import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>> as (import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_1 ? T_1 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_1 extends import("effect-app/client").RequestHandlerWithInput<infer I_1, infer A, infer E, infer R_1, infer Request extends S.Top & {
|
|
2121
2871
|
readonly make: (...args: any[]) => any;
|
|
2122
2872
|
_tag: string;
|
|
2123
2873
|
fields: S.Struct.Fields;
|
|
@@ -2126,7 +2876,7 @@ export declare const useClient: (options?: {
|
|
|
2126
2876
|
config?: Record<string, any>;
|
|
2127
2877
|
readonly id: string;
|
|
2128
2878
|
readonly moduleName: string;
|
|
2129
|
-
readonly type: "command" | "query";
|
|
2879
|
+
readonly type: "command" | "query" | "stream";
|
|
2130
2880
|
readonly "~decodingServices"?: unknown;
|
|
2131
2881
|
}, infer Id extends string> ? Request["type"] extends "query" ? import("effect-app/client").RequestHandlerWithInput<I_1, A, E, R_1, Request, Id> : never : T_1 extends import("effect-app/client").RequestHandler<infer A_1, infer E_1, infer R_2, infer Request_1 extends S.Top & {
|
|
2132
2882
|
readonly make: (...args: any[]) => any;
|
|
@@ -2137,7 +2887,7 @@ export declare const useClient: (options?: {
|
|
|
2137
2887
|
config?: Record<string, any>;
|
|
2138
2888
|
readonly id: string;
|
|
2139
2889
|
readonly moduleName: string;
|
|
2140
|
-
readonly type: "command" | "query";
|
|
2890
|
+
readonly type: "command" | "query" | "stream";
|
|
2141
2891
|
readonly "~decodingServices"?: unknown;
|
|
2142
2892
|
}, infer Id_1 extends string> ? Request_1["type"] extends "query" ? import("effect-app/client").RequestHandler<A_1, E_1, R_2, Request_1, Id_1> : never : never : never : never) extends never ? never : `${import("../src/makeClient.js").ToCamel<string & Key>}Query`]: import("../src/makeClient.js").Queries<WithToast | (ApiClientFactory | Commander | (I18n | Toast.Toast)), import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_1 ? T_1 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_1 extends import("effect-app/client").RequestHandlerWithInput<infer I_1, infer A, infer E, infer R_1, infer Request extends S.Top & {
|
|
2143
2893
|
readonly make: (...args: any[]) => any;
|
|
@@ -2148,7 +2898,7 @@ export declare const useClient: (options?: {
|
|
|
2148
2898
|
config?: Record<string, any>;
|
|
2149
2899
|
readonly id: string;
|
|
2150
2900
|
readonly moduleName: string;
|
|
2151
|
-
readonly type: "command" | "query";
|
|
2901
|
+
readonly type: "command" | "query" | "stream";
|
|
2152
2902
|
readonly "~decodingServices"?: unknown;
|
|
2153
2903
|
}, infer Id extends string> ? Request["type"] extends "query" ? import("effect-app/client").RequestHandlerWithInput<I_1, A, E, R_1, Request, Id> : never : T_1 extends import("effect-app/client").RequestHandler<infer A_1, infer E_1, infer R_2, infer Request_1 extends S.Top & {
|
|
2154
2904
|
readonly make: (...args: any[]) => any;
|
|
@@ -2159,7 +2909,7 @@ export declare const useClient: (options?: {
|
|
|
2159
2909
|
config?: Record<string, any>;
|
|
2160
2910
|
readonly id: string;
|
|
2161
2911
|
readonly moduleName: string;
|
|
2162
|
-
readonly type: "command" | "query";
|
|
2912
|
+
readonly type: "command" | "query" | "stream";
|
|
2163
2913
|
readonly "~decodingServices"?: unknown;
|
|
2164
2914
|
}, infer Id_1 extends string> ? Request_1["type"] extends "query" ? import("effect-app/client").RequestHandler<A_1, E_1, R_2, Request_1, Id_1> : never : never : never : never>["query"]; } & { [Key in keyof import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>> as (import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_1 ? T_1 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_1 extends import("effect-app/client").RequestHandlerWithInput<infer I_1, infer A, infer E, infer R_1, infer Request extends S.Top & {
|
|
2165
2915
|
readonly make: (...args: any[]) => any;
|
|
@@ -2170,7 +2920,7 @@ export declare const useClient: (options?: {
|
|
|
2170
2920
|
config?: Record<string, any>;
|
|
2171
2921
|
readonly id: string;
|
|
2172
2922
|
readonly moduleName: string;
|
|
2173
|
-
readonly type: "command" | "query";
|
|
2923
|
+
readonly type: "command" | "query" | "stream";
|
|
2174
2924
|
readonly "~decodingServices"?: unknown;
|
|
2175
2925
|
}, infer Id extends string> ? Request["type"] extends "query" ? import("effect-app/client").RequestHandlerWithInput<I_1, A, E, R_1, Request, Id> : never : T_1 extends import("effect-app/client").RequestHandler<infer A_1, infer E_1, infer R_2, infer Request_1 extends S.Top & {
|
|
2176
2926
|
readonly make: (...args: any[]) => any;
|
|
@@ -2181,7 +2931,7 @@ export declare const useClient: (options?: {
|
|
|
2181
2931
|
config?: Record<string, any>;
|
|
2182
2932
|
readonly id: string;
|
|
2183
2933
|
readonly moduleName: string;
|
|
2184
|
-
readonly type: "command" | "query";
|
|
2934
|
+
readonly type: "command" | "query" | "stream";
|
|
2185
2935
|
readonly "~decodingServices"?: unknown;
|
|
2186
2936
|
}, infer Id_1 extends string> ? Request_1["type"] extends "query" ? import("effect-app/client").RequestHandler<A_1, E_1, R_2, Request_1, Id_1> : never : never : never : never) extends never ? never : `${import("../src/makeClient.js").ToCamel<string & Key>}SuspenseQuery`]: import("../src/makeClient.js").Queries<WithToast | (ApiClientFactory | Commander | (I18n | Toast.Toast)), import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] extends infer T_1 ? T_1 extends import("effect-app/client").RequestHandlers<never, never, M, import("effect-app/client").ExtractModuleName<M>>[Key] ? T_1 extends import("effect-app/client").RequestHandlerWithInput<infer I_1, infer A, infer E, infer R_1, infer Request extends S.Top & {
|
|
2187
2937
|
readonly make: (...args: any[]) => any;
|
|
@@ -2192,7 +2942,7 @@ export declare const useClient: (options?: {
|
|
|
2192
2942
|
config?: Record<string, any>;
|
|
2193
2943
|
readonly id: string;
|
|
2194
2944
|
readonly moduleName: string;
|
|
2195
|
-
readonly type: "command" | "query";
|
|
2945
|
+
readonly type: "command" | "query" | "stream";
|
|
2196
2946
|
readonly "~decodingServices"?: unknown;
|
|
2197
2947
|
}, infer Id extends string> ? Request["type"] extends "query" ? import("effect-app/client").RequestHandlerWithInput<I_1, A, E, R_1, Request, Id> : never : T_1 extends import("effect-app/client").RequestHandler<infer A_1, infer E_1, infer R_2, infer Request_1 extends S.Top & {
|
|
2198
2948
|
readonly make: (...args: any[]) => any;
|
|
@@ -2203,10 +2953,10 @@ export declare const useClient: (options?: {
|
|
|
2203
2953
|
config?: Record<string, any>;
|
|
2204
2954
|
readonly id: string;
|
|
2205
2955
|
readonly moduleName: string;
|
|
2206
|
-
readonly type: "command" | "query";
|
|
2956
|
+
readonly type: "command" | "query" | "stream";
|
|
2207
2957
|
readonly "~decodingServices"?: unknown;
|
|
2208
2958
|
}, infer Id_1 extends string> ? Request_1["type"] extends "query" ? import("effect-app/client").RequestHandler<A_1, E_1, R_2, Request_1, Id_1> : never : never : never : never>["suspense"]; };
|
|
2209
2959
|
};
|
|
2210
2960
|
};
|
|
2211
2961
|
export {};
|
|
2212
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
2962
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3R1YnMuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3N0dWJzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBRSxLQUFLLG9CQUFvQixFQUFFLE1BQU0sb0NBQW9DLENBQUE7QUFHOUUsT0FBTyxFQUFVLEtBQUssRUFBMEIsQ0FBQyxFQUFFLE1BQU0sWUFBWSxDQUFBO0FBQ3JFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBaUIsTUFBTSxtQkFBbUIsQ0FBQTtBQUNuRSxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sZ0JBQWdCLENBQUE7QUFJOUMsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLHFCQUFxQixDQUFBO0FBQy9DLE9BQU8sRUFBRSxJQUFJLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQTtBQUVyQyxPQUFPLEVBQUUsS0FBSyxjQUFjLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQTtBQUV4RCxPQUFPLEtBQUssS0FBSyxNQUFNLGlCQUFpQixDQUFBO0FBQ3hDLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQTtBQStDL0MsZUFBTyxNQUFNLFlBQVksY0FBYyxNQUFNLENBQUMsTUFBTSxFQUFFLE1BQU0sQ0FBQyxHQUFHLE1BQU0sQ0FBQyxNQUFNLEVBQUUsb0JBQW9CLEVBQUUsQ0FBQyxLQWUvRixVQUFVLENBQUMsY0FBYyxDQUFDLE1BQU0sQ0FBQyxDQUFDLFNBQVMsQ0FBQyxDQUNsRCxDQUFBO0FBRUQsZUFBTyxNQUFNLGFBQWEsY0FBYyxNQUFNLENBQUMsTUFBTSxFQUFFLE1BQU0sQ0FBQyxHQUFHLE1BQU0sQ0FBQyxNQUFNLEVBQUUsb0JBQW9CLEVBQUUsQ0FBQyxvQ0FDL0IsQ0FBQTtBQUV4RSxlQUFPLE1BQU0sZUFBZSxhQUNoQjtJQUFFLFFBQVEsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxNQUFNLEVBQUUsTUFBTSxDQUFDLEdBQUcsTUFBTSxDQUFDLE1BQU0sRUFBRSxvQkFBb0IsRUFBRSxDQUFDLENBQUM7SUFBQyxNQUFNLEVBQUUsR0FBRyxFQUFFLENBQUE7Q0FBRSxnR0FTeEcsQ0FBQTs7Ozs7Ozs7QUFFRCxxQkFBYSxpQkFBa0IsU0FBUSxzQkFBeUI7Q0FBRztBQUNuRSxlQUFPLE1BQVEsZ0JBQWdCOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztDQUFxQyxDQUFBO0FBRXBFLGVBQU8sTUFBTSxZQUFZOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztDQUFnQyxDQUFBOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUl6RCxjQUFNLHNCQUF1QixTQUFRLDJCQUVGO0NBQUc7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRXRDLGNBQU0sc0JBQXVCLFNBQVEsMkJBRUY7Q0FBRzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUV0QyxjQUFNLHNCQUNKLFNBQVEsMkJBQThGO0NBQ3RHOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRUYsY0FBTSxzQ0FDSixTQUFRLDJDQU1OO0NBQ0Y7QUFFRixLQUFLLDhCQUE4QixHQUFHO0lBQ3BDLGFBQWEsRUFBRSxPQUFPLHNCQUFzQixDQUFBO0lBQzVDLDZCQUE2QixFQUFFLE9BQU8sc0NBQXNDLENBQUE7SUFDNUUsYUFBYSxFQUFFLE9BQU8sc0JBQXNCLENBQUE7Q0FDN0MsQ0FBQTs7Ozs7Ozs7Ozs7Ozs7O3VCQUljLDhCQUE4Qjs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFGN0MsY0FBTSxvQkFBcUIsU0FBUSx5QkFvQmpDO0NBQUc7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFHTCxjQUFNLDBCQUEyQixTQUFRLCtCQUV2QztDQUFHO0FBRUwsZUFBTyxNQUFNLFNBQVM7SUFDcEIsYUFBYTtJQUNiLDZCQUE2QjtJQUM3QixhQUFhO0lBQ2IsYUFBYTtJQUNiLFdBQVc7SUFDWCxpQkFBaUI7Q0FDbEIsQ0FBQTtBQUVELGVBQU8sTUFBTSxnQkFBZ0I7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0NBQW9DLENBQUE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBR2pFLGNBQU0sMEJBQTJCLFNBQVEsK0JBRU47Q0FBRzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUV0QyxjQUFNLDBDQUNKLFNBQVEsK0NBS047Q0FDRjtBQUVGLGVBQU8sTUFBTSxhQUFhO0lBQ3hCLGFBQWE7SUFDYiw2QkFBNkI7Q0FDOUIsQ0FBQTtBQUVELGVBQU8sTUFBTSxTQUFTLGFBQ1Y7SUFBRSxRQUFRLENBQUMsRUFBRSxNQUFNLENBQUMsTUFBTSxFQUFFLE1BQU0sQ0FBQyxHQUFHLE1BQU0sQ0FBQyxNQUFNLEVBQUUsb0JBQW9CLEVBQUUsQ0FBQyxDQUFDO0lBQUMsTUFBTSxFQUFFLEdBQUcsRUFBRSxDQUFBO0NBQUU7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztDQW9DeEcsQ0FBQSJ9
|