@appconda/sdk 1.0.626 → 1.0.629
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 +14 -0
- package/dist/modules/emploid/schema.js +15 -1
- package/dist/modules/emploid/service.d.ts +4 -1
- package/dist/modules/emploid/service.js +28 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +16 -0
- package/src/modules/emploid/service.ts +45 -1
|
@@ -734,11 +734,25 @@ export declare const ListCollectionsSchema: z.ZodObject<{
|
|
|
734
734
|
tenantId: z.ZodString;
|
|
735
735
|
dataModelId: z.ZodOptional<z.ZodString>;
|
|
736
736
|
}, z.core.$strip>;
|
|
737
|
+
export declare const GetCollectionByIdSchema: z.ZodObject<{
|
|
738
|
+
id: z.ZodString;
|
|
739
|
+
}, z.core.$strip>;
|
|
737
740
|
export declare const CreateRecordSchema: z.ZodObject<{
|
|
738
741
|
tenantId: z.ZodString;
|
|
739
742
|
collectionId: z.ZodString;
|
|
740
743
|
data: z.ZodObject<{}, z.core.$catchall<z.ZodAny>>;
|
|
741
744
|
}, z.core.$strip>;
|
|
745
|
+
export declare const UploadCollectionFileSchema: z.ZodObject<{
|
|
746
|
+
tenantId: z.ZodString;
|
|
747
|
+
name: z.ZodString;
|
|
748
|
+
base64: z.ZodString;
|
|
749
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
750
|
+
collectionId: z.ZodOptional<z.ZodString>;
|
|
751
|
+
itemId: z.ZodOptional<z.ZodString>;
|
|
752
|
+
}, z.core.$strip>;
|
|
753
|
+
export declare const ResolveCollectionFileViewSchema: z.ZodObject<{
|
|
754
|
+
itemId: z.ZodString;
|
|
755
|
+
}, z.core.$strip>;
|
|
742
756
|
export declare const GetRecordByIdSchema: z.ZodObject<{
|
|
743
757
|
tenantId: z.ZodString;
|
|
744
758
|
collectionId: z.ZodString;
|