@socotra/ec-react-schemas 2.25.3-next.6 → 2.25.3-next.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +164 -0
- package/dist/index.es.js +13752 -7177
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +14 -11
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { default as default_2 } from 'zod/v4';
|
|
1
2
|
import { z } from 'zod/v4';
|
|
2
3
|
import { z as z_2 } from 'zod';
|
|
3
4
|
|
|
@@ -687,6 +688,116 @@ export declare const autoRenewalPlanSchema: z.ZodObject<{
|
|
|
687
688
|
renewalTransactionType: z.ZodOptional<z.ZodString>;
|
|
688
689
|
}, z.core.$strip>;
|
|
689
690
|
|
|
691
|
+
export declare type AuxDataKeySetResponse = default_2.infer<typeof auxDataKeySetResponseSchema>;
|
|
692
|
+
|
|
693
|
+
export declare const AuxDataKeySetResponseSchema: default_2.ZodObject<{
|
|
694
|
+
keys: default_2.ZodOptional<default_2.ZodArray<default_2.ZodObject<{
|
|
695
|
+
key: default_2.ZodString;
|
|
696
|
+
uiType: default_2.ZodEnum<{
|
|
697
|
+
readonly: "readonly";
|
|
698
|
+
normal: "normal";
|
|
699
|
+
hidden: "hidden";
|
|
700
|
+
}>;
|
|
701
|
+
auxDataSettingsName: default_2.ZodOptional<default_2.ZodString>;
|
|
702
|
+
}, default_2.core.$strip>>>;
|
|
703
|
+
offset: default_2.ZodInt;
|
|
704
|
+
count: default_2.ZodInt;
|
|
705
|
+
}, default_2.core.$strip>;
|
|
706
|
+
|
|
707
|
+
declare const auxDataKeySetResponseSchema: z_2.ZodObject<{
|
|
708
|
+
offset: z_2.ZodInt;
|
|
709
|
+
count: z_2.ZodInt;
|
|
710
|
+
keys: z_2.ZodArray<z_2.ZodObject<{
|
|
711
|
+
key: z_2.ZodString;
|
|
712
|
+
uiType: z_2.ZodEnum<{
|
|
713
|
+
readonly: "readonly";
|
|
714
|
+
normal: "normal";
|
|
715
|
+
hidden: "hidden";
|
|
716
|
+
}>;
|
|
717
|
+
auxDataSettingsName: z_2.ZodOptional<z_2.ZodString>;
|
|
718
|
+
}, z_2.core.$strip>>;
|
|
719
|
+
}, z_2.core.$strip>;
|
|
720
|
+
|
|
721
|
+
export declare type AuxDataResponse = default_2.infer<typeof auxDataResponseSchema>;
|
|
722
|
+
|
|
723
|
+
export declare const AuxDataResponseSchema: default_2.ZodObject<{
|
|
724
|
+
locator: default_2.ZodString;
|
|
725
|
+
key: default_2.ZodString;
|
|
726
|
+
uiType: default_2.ZodEnum<{
|
|
727
|
+
readonly: "readonly";
|
|
728
|
+
normal: "normal";
|
|
729
|
+
hidden: "hidden";
|
|
730
|
+
}>;
|
|
731
|
+
value: default_2.ZodString;
|
|
732
|
+
modificationTimestamp: default_2.ZodISODateTime;
|
|
733
|
+
expirationTimestamp: default_2.ZodOptional<default_2.ZodISODateTime>;
|
|
734
|
+
auxDataSettingsName: default_2.ZodOptional<default_2.ZodString>;
|
|
735
|
+
}, default_2.core.$strip>;
|
|
736
|
+
|
|
737
|
+
declare const auxDataResponseSchema: z_2.ZodObject<{
|
|
738
|
+
locator: z_2.ZodString;
|
|
739
|
+
key: z_2.ZodString;
|
|
740
|
+
uiType: z_2.ZodEnum<{
|
|
741
|
+
readonly: "readonly";
|
|
742
|
+
normal: "normal";
|
|
743
|
+
hidden: "hidden";
|
|
744
|
+
}>;
|
|
745
|
+
value: z_2.ZodString;
|
|
746
|
+
modificationTimestamp: z_2.ZodISODateTime;
|
|
747
|
+
expirationTimestamp: z_2.ZodOptional<z_2.ZodISODateTime>;
|
|
748
|
+
auxDataSettingsName: z_2.ZodOptional<z_2.ZodString>;
|
|
749
|
+
}, z_2.core.$strip>;
|
|
750
|
+
|
|
751
|
+
export declare type AuxDataSet = default_2.infer<typeof auxDataSetSchema>;
|
|
752
|
+
|
|
753
|
+
export declare type AuxDataSetCreateRequest = default_2.infer<typeof auxDataSetCreateRequestSchema>;
|
|
754
|
+
|
|
755
|
+
export declare const AuxDataSetCreateRequestSchema: default_2.ZodObject<{
|
|
756
|
+
auxDataSettingsName: default_2.ZodOptional<default_2.ZodString>;
|
|
757
|
+
auxData: default_2.ZodArray<default_2.ZodObject<{
|
|
758
|
+
uiType: default_2.ZodEnum<{
|
|
759
|
+
readonly: "readonly";
|
|
760
|
+
normal: "normal";
|
|
761
|
+
hidden: "hidden";
|
|
762
|
+
}>;
|
|
763
|
+
key: default_2.ZodString;
|
|
764
|
+
value: default_2.ZodString;
|
|
765
|
+
}, default_2.core.$strip>>;
|
|
766
|
+
}, default_2.core.$strip>;
|
|
767
|
+
|
|
768
|
+
declare const auxDataSetCreateRequestSchema: z_2.ZodObject<{
|
|
769
|
+
auxDataSettingsName: z_2.ZodOptional<z_2.ZodString>;
|
|
770
|
+
auxData: z_2.ZodArray<z_2.ZodObject<{
|
|
771
|
+
uiType: z_2.ZodEnum<{
|
|
772
|
+
readonly: "readonly";
|
|
773
|
+
normal: "normal";
|
|
774
|
+
hidden: "hidden";
|
|
775
|
+
}>;
|
|
776
|
+
key: z_2.ZodString;
|
|
777
|
+
value: z_2.ZodString;
|
|
778
|
+
}, z_2.core.$strip>>;
|
|
779
|
+
}, z_2.core.$strip>;
|
|
780
|
+
|
|
781
|
+
export declare const AuxDataSetSchema: default_2.ZodObject<{
|
|
782
|
+
uiType: default_2.ZodEnum<{
|
|
783
|
+
readonly: "readonly";
|
|
784
|
+
normal: "normal";
|
|
785
|
+
hidden: "hidden";
|
|
786
|
+
}>;
|
|
787
|
+
key: default_2.ZodString;
|
|
788
|
+
value: default_2.ZodString;
|
|
789
|
+
}, default_2.core.$strip>;
|
|
790
|
+
|
|
791
|
+
declare const auxDataSetSchema: z_2.ZodObject<{
|
|
792
|
+
uiType: z_2.ZodEnum<{
|
|
793
|
+
readonly: "readonly";
|
|
794
|
+
normal: "normal";
|
|
795
|
+
hidden: "hidden";
|
|
796
|
+
}>;
|
|
797
|
+
key: z_2.ZodString;
|
|
798
|
+
value: z_2.ZodString;
|
|
799
|
+
}, z_2.core.$strip>;
|
|
800
|
+
|
|
690
801
|
declare type BaseElementCreateRequest = z.infer<typeof BaseElementCreateRequestSchema> & {
|
|
691
802
|
elements?: BaseElementCreateRequest[];
|
|
692
803
|
};
|
|
@@ -3695,6 +3806,28 @@ export declare const dayOfWeekEnumSchema: z.ZodEnum<{
|
|
|
3695
3806
|
sunday: "sunday";
|
|
3696
3807
|
}>;
|
|
3697
3808
|
|
|
3809
|
+
export declare type DeleteAuxDataData = default_2.infer<typeof deleteAuxDataDataSchema>;
|
|
3810
|
+
|
|
3811
|
+
export declare const DeleteAuxDataDataSchema: default_2.ZodObject<{
|
|
3812
|
+
body: default_2.ZodOptional<default_2.ZodNever>;
|
|
3813
|
+
path: default_2.ZodObject<{
|
|
3814
|
+
tenantLocator: default_2.ZodUUID;
|
|
3815
|
+
locator: default_2.ZodString;
|
|
3816
|
+
key: default_2.ZodString;
|
|
3817
|
+
}, default_2.core.$strip>;
|
|
3818
|
+
query: default_2.ZodOptional<default_2.ZodNever>;
|
|
3819
|
+
}, default_2.core.$strip>;
|
|
3820
|
+
|
|
3821
|
+
declare const deleteAuxDataDataSchema: z_2.ZodObject<{
|
|
3822
|
+
body: z_2.ZodOptional<z_2.ZodNever>;
|
|
3823
|
+
path: z_2.ZodObject<{
|
|
3824
|
+
tenantLocator: z_2.ZodUUID;
|
|
3825
|
+
locator: z_2.ZodString;
|
|
3826
|
+
key: z_2.ZodString;
|
|
3827
|
+
}, z_2.core.$strip>;
|
|
3828
|
+
query: z_2.ZodOptional<z_2.ZodNever>;
|
|
3829
|
+
}, z_2.core.$strip>;
|
|
3830
|
+
|
|
3698
3831
|
export declare type DeleteChangeInstructionCreateRequest = z.infer<typeof deleteChangeInstructionCreateRequestSchema>;
|
|
3699
3832
|
|
|
3700
3833
|
export declare const deleteChangeInstructionCreateRequestSchema: z.ZodObject<{
|
|
@@ -5428,6 +5561,37 @@ export declare function genericListResponseSchema<ItemType extends z.ZodTypeAny>
|
|
|
5428
5561
|
items: z.ZodArray<ItemType>;
|
|
5429
5562
|
}, z.core.$strip>;
|
|
5430
5563
|
|
|
5564
|
+
export declare type GetAuxDataSizeData = default_2.infer<typeof getAuxDataSizeDataSchema>;
|
|
5565
|
+
|
|
5566
|
+
export declare const GetAuxDataSizeDataSchema: default_2.ZodObject<{
|
|
5567
|
+
body: default_2.ZodOptional<default_2.ZodNever>;
|
|
5568
|
+
path: default_2.ZodObject<{
|
|
5569
|
+
tenantLocator: default_2.ZodUUID;
|
|
5570
|
+
}, default_2.core.$strip>;
|
|
5571
|
+
query: default_2.ZodOptional<default_2.ZodNever>;
|
|
5572
|
+
}, default_2.core.$strip>;
|
|
5573
|
+
|
|
5574
|
+
declare const getAuxDataSizeDataSchema: z_2.ZodObject<{
|
|
5575
|
+
body: z_2.ZodOptional<z_2.ZodNever>;
|
|
5576
|
+
path: z_2.ZodObject<{
|
|
5577
|
+
tenantLocator: z_2.ZodUUID;
|
|
5578
|
+
}, z_2.core.$strip>;
|
|
5579
|
+
query: z_2.ZodOptional<z_2.ZodNever>;
|
|
5580
|
+
}, z_2.core.$strip>;
|
|
5581
|
+
|
|
5582
|
+
export declare type GetAuxDataSizeResponse = default_2.infer<typeof getAuxDataSizeResponseSchema>;
|
|
5583
|
+
|
|
5584
|
+
export declare const GetAuxDataSizeResponseSchema: default_2.ZodObject<{
|
|
5585
|
+
dataSizeKb: default_2.ZodInt;
|
|
5586
|
+
}, default_2.core.$strip>;
|
|
5587
|
+
|
|
5588
|
+
/**
|
|
5589
|
+
* OK
|
|
5590
|
+
*/
|
|
5591
|
+
declare const getAuxDataSizeResponseSchema: z_2.ZodObject<{
|
|
5592
|
+
dataSizeKb: z_2.ZodInt;
|
|
5593
|
+
}, z_2.core.$strip>;
|
|
5594
|
+
|
|
5431
5595
|
export declare const GUIDZ: z.ZodGUID;
|
|
5432
5596
|
|
|
5433
5597
|
export declare type IdentityProviderCreateRequest = z.infer<typeof IdentityProviderCreateRequestSchema>;
|