@appconda/sdk 1.0.610 → 1.0.612
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/modules/emploid/schema.d.ts +59 -0
- package/dist/modules/emploid/schema.js +60 -1
- package/dist/modules/emploid/service.d.ts +11 -2
- package/dist/modules/emploid/service.js +28 -1
- package/dist/modules/emploid/types.d.ts +36 -0
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +68 -0
- package/src/modules/emploid/service.ts +92 -2
- package/src/modules/emploid/types.ts +42 -0
|
@@ -868,6 +868,65 @@ export declare const DeleteCollectionAutomationRuleSchema: z.ZodObject<{
|
|
|
868
868
|
collectionId: z.ZodString;
|
|
869
869
|
ruleId: z.ZodString;
|
|
870
870
|
}, z.core.$strip>;
|
|
871
|
+
export declare const ListCollectionViewsSchema: z.ZodObject<{
|
|
872
|
+
tenantId: z.ZodString;
|
|
873
|
+
collectionId: z.ZodString;
|
|
874
|
+
}, z.core.$strip>;
|
|
875
|
+
export declare const CreateCollectionViewSchema: z.ZodObject<{
|
|
876
|
+
tenantId: z.ZodString;
|
|
877
|
+
dataModelId: z.ZodString;
|
|
878
|
+
collectionId: z.ZodString;
|
|
879
|
+
name: z.ZodString;
|
|
880
|
+
type: z.ZodString;
|
|
881
|
+
config: z.ZodObject<{}, z.core.$catchall<z.ZodAny>>;
|
|
882
|
+
}, z.core.$strip>;
|
|
883
|
+
export declare const UpdateCollectionViewSchema: z.ZodObject<{
|
|
884
|
+
tenantId: z.ZodString;
|
|
885
|
+
collectionId: z.ZodString;
|
|
886
|
+
viewId: z.ZodString;
|
|
887
|
+
name: z.ZodOptional<z.ZodString>;
|
|
888
|
+
type: z.ZodOptional<z.ZodString>;
|
|
889
|
+
config: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
890
|
+
}, z.core.$strip>;
|
|
891
|
+
export declare const DeleteCollectionViewSchema: z.ZodObject<{
|
|
892
|
+
tenantId: z.ZodString;
|
|
893
|
+
collectionId: z.ZodString;
|
|
894
|
+
viewId: z.ZodString;
|
|
895
|
+
}, z.core.$strip>;
|
|
896
|
+
export declare const ListCollectionButtonsSchema: z.ZodObject<{
|
|
897
|
+
tenantId: z.ZodString;
|
|
898
|
+
collectionId: z.ZodOptional<z.ZodString>;
|
|
899
|
+
dataModelId: z.ZodOptional<z.ZodString>;
|
|
900
|
+
}, z.core.$strip>;
|
|
901
|
+
export declare const CreateCollectionButtonSchema: z.ZodObject<{
|
|
902
|
+
tenantId: z.ZodString;
|
|
903
|
+
dataModelId: z.ZodString;
|
|
904
|
+
collectionId: z.ZodString;
|
|
905
|
+
name: z.ZodString;
|
|
906
|
+
description: z.ZodOptional<z.ZodString>;
|
|
907
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
908
|
+
actions: z.ZodArray<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
909
|
+
}, z.core.$strip>;
|
|
910
|
+
export declare const UpdateCollectionButtonSchema: z.ZodObject<{
|
|
911
|
+
tenantId: z.ZodString;
|
|
912
|
+
collectionId: z.ZodString;
|
|
913
|
+
buttonId: z.ZodString;
|
|
914
|
+
name: z.ZodOptional<z.ZodString>;
|
|
915
|
+
description: z.ZodOptional<z.ZodString>;
|
|
916
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
917
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>>;
|
|
918
|
+
}, z.core.$strip>;
|
|
919
|
+
export declare const DeleteCollectionButtonSchema: z.ZodObject<{
|
|
920
|
+
tenantId: z.ZodString;
|
|
921
|
+
collectionId: z.ZodString;
|
|
922
|
+
buttonId: z.ZodString;
|
|
923
|
+
}, z.core.$strip>;
|
|
924
|
+
export declare const ExecuteCollectionButtonSchema: z.ZodObject<{
|
|
925
|
+
tenantId: z.ZodString;
|
|
926
|
+
collectionId: z.ZodString;
|
|
927
|
+
buttonId: z.ZodString;
|
|
928
|
+
recordId: z.ZodString;
|
|
929
|
+
}, z.core.$strip>;
|
|
871
930
|
export declare const ListCollectionRelationsSchema: z.ZodObject<{
|
|
872
931
|
tenantId: z.ZodString;
|
|
873
932
|
collectionId: z.ZodString;
|