@appconda/sdk 1.0.607 → 1.0.609
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 +103 -1
- package/dist/modules/emploid/schema.js +81 -3
- package/dist/modules/emploid/service.d.ts +18 -2
- package/dist/modules/emploid/service.js +32 -2
- package/dist/modules/emploid/types.d.ts +53 -0
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +90 -2
- package/src/modules/emploid/service.ts +106 -3
- package/src/modules/emploid/types.ts +70 -0
|
@@ -102,6 +102,8 @@ export declare const UpdateScopeSchema: z.ZodObject<{
|
|
|
102
102
|
name: z.ZodOptional<z.ZodString>;
|
|
103
103
|
description: z.ZodOptional<z.ZodString>;
|
|
104
104
|
isFolderType: z.ZodOptional<z.ZodBoolean>;
|
|
105
|
+
content: z.ZodOptional<z.ZodAny>;
|
|
106
|
+
markdownContent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
105
107
|
}, z.core.$strip>;
|
|
106
108
|
export declare const DeleteScopeSchema: z.ZodObject<{
|
|
107
109
|
scopeId: z.ZodString;
|
|
@@ -135,7 +137,7 @@ export declare const ListJobDefinitionSchema: z.ZodObject<{
|
|
|
135
137
|
}, z.core.$strip>;
|
|
136
138
|
export declare const UpdateJobDefinitionSchema: z.ZodObject<{
|
|
137
139
|
id: z.ZodString;
|
|
138
|
-
name: z.ZodString
|
|
140
|
+
name: z.ZodOptional<z.ZodString>;
|
|
139
141
|
description: z.ZodOptional<z.ZodString>;
|
|
140
142
|
category: z.ZodOptional<z.ZodEnum<{
|
|
141
143
|
technical: "technical";
|
|
@@ -152,6 +154,9 @@ export declare const UpdateJobDefinitionSchema: z.ZodObject<{
|
|
|
152
154
|
active: "active";
|
|
153
155
|
inactive: "inactive";
|
|
154
156
|
}>>;
|
|
157
|
+
scopeId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
158
|
+
content: z.ZodOptional<z.ZodAny>;
|
|
159
|
+
markdownContent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
155
160
|
}, z.core.$strip>;
|
|
156
161
|
export declare const DeleteJobDefinitionSchema: z.ZodObject<{
|
|
157
162
|
id: z.ZodString;
|
|
@@ -821,6 +826,103 @@ export declare const DeleteCollectionFieldSchema: z.ZodObject<{
|
|
|
821
826
|
collectionId: z.ZodString;
|
|
822
827
|
fieldId: z.ZodString;
|
|
823
828
|
}, z.core.$strip>;
|
|
829
|
+
export declare const ListCollectionAutomationRulesSchema: z.ZodObject<{
|
|
830
|
+
tenantId: z.ZodString;
|
|
831
|
+
collectionId: z.ZodOptional<z.ZodString>;
|
|
832
|
+
dataModelId: z.ZodOptional<z.ZodString>;
|
|
833
|
+
}, z.core.$strip>;
|
|
834
|
+
export declare const CreateCollectionAutomationRuleSchema: z.ZodObject<{
|
|
835
|
+
tenantId: z.ZodString;
|
|
836
|
+
dataModelId: z.ZodString;
|
|
837
|
+
collectionId: z.ZodString;
|
|
838
|
+
name: z.ZodString;
|
|
839
|
+
description: z.ZodOptional<z.ZodString>;
|
|
840
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
841
|
+
trigger: z.ZodEnum<{
|
|
842
|
+
created: "created";
|
|
843
|
+
updated: "updated";
|
|
844
|
+
linked: "linked";
|
|
845
|
+
unlinked: "unlinked";
|
|
846
|
+
schedule: "schedule";
|
|
847
|
+
}>;
|
|
848
|
+
actions: z.ZodArray<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
|
|
849
|
+
}, z.core.$strip>;
|
|
850
|
+
export declare const UpdateCollectionAutomationRuleSchema: z.ZodObject<{
|
|
851
|
+
tenantId: z.ZodString;
|
|
852
|
+
collectionId: z.ZodString;
|
|
853
|
+
ruleId: z.ZodString;
|
|
854
|
+
name: z.ZodOptional<z.ZodString>;
|
|
855
|
+
description: z.ZodOptional<z.ZodString>;
|
|
856
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
857
|
+
trigger: z.ZodOptional<z.ZodEnum<{
|
|
858
|
+
created: "created";
|
|
859
|
+
updated: "updated";
|
|
860
|
+
linked: "linked";
|
|
861
|
+
unlinked: "unlinked";
|
|
862
|
+
schedule: "schedule";
|
|
863
|
+
}>>;
|
|
864
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>>;
|
|
865
|
+
}, z.core.$strip>;
|
|
866
|
+
export declare const DeleteCollectionAutomationRuleSchema: z.ZodObject<{
|
|
867
|
+
tenantId: z.ZodString;
|
|
868
|
+
collectionId: z.ZodString;
|
|
869
|
+
ruleId: z.ZodString;
|
|
870
|
+
}, z.core.$strip>;
|
|
871
|
+
export declare const ListCollectionRelationsSchema: z.ZodObject<{
|
|
872
|
+
tenantId: z.ZodString;
|
|
873
|
+
collectionId: z.ZodString;
|
|
874
|
+
}, z.core.$strip>;
|
|
875
|
+
export declare const CreateCollectionRelationSchema: z.ZodObject<{
|
|
876
|
+
tenantId: z.ZodString;
|
|
877
|
+
dataModelId: z.ZodString;
|
|
878
|
+
collectionId: z.ZodString;
|
|
879
|
+
targetCollectionId: z.ZodString;
|
|
880
|
+
displayName: z.ZodString;
|
|
881
|
+
description: z.ZodOptional<z.ZodString>;
|
|
882
|
+
cardinality: z.ZodOptional<z.ZodEnum<{
|
|
883
|
+
one: "one";
|
|
884
|
+
many: "many";
|
|
885
|
+
}>>;
|
|
886
|
+
inverseCardinality: z.ZodOptional<z.ZodEnum<{
|
|
887
|
+
one: "one";
|
|
888
|
+
many: "many";
|
|
889
|
+
}>>;
|
|
890
|
+
inverseDisplayName: z.ZodOptional<z.ZodString>;
|
|
891
|
+
}, z.core.$strip>;
|
|
892
|
+
export declare const UpdateCollectionRelationSchema: z.ZodObject<{
|
|
893
|
+
tenantId: z.ZodString;
|
|
894
|
+
collectionId: z.ZodString;
|
|
895
|
+
fieldId: z.ZodString;
|
|
896
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
897
|
+
description: z.ZodOptional<z.ZodString>;
|
|
898
|
+
cardinality: z.ZodOptional<z.ZodEnum<{
|
|
899
|
+
one: "one";
|
|
900
|
+
many: "many";
|
|
901
|
+
}>>;
|
|
902
|
+
inverseCardinality: z.ZodOptional<z.ZodEnum<{
|
|
903
|
+
one: "one";
|
|
904
|
+
many: "many";
|
|
905
|
+
}>>;
|
|
906
|
+
targetDisplayName: z.ZodOptional<z.ZodString>;
|
|
907
|
+
}, z.core.$strip>;
|
|
908
|
+
export declare const DeleteCollectionRelationSchema: z.ZodObject<{
|
|
909
|
+
tenantId: z.ZodString;
|
|
910
|
+
collectionId: z.ZodString;
|
|
911
|
+
fieldId: z.ZodString;
|
|
912
|
+
actor: z.ZodOptional<z.ZodString>;
|
|
913
|
+
}, z.core.$strip>;
|
|
914
|
+
export declare const ListRelationCandidatesSchema: z.ZodObject<{
|
|
915
|
+
tenantId: z.ZodString;
|
|
916
|
+
collectionId: z.ZodString;
|
|
917
|
+
fieldId: z.ZodString;
|
|
918
|
+
query: z.ZodOptional<z.ZodString>;
|
|
919
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
920
|
+
}, z.core.$strip>;
|
|
921
|
+
export declare const GetRecordRelationsSchema: z.ZodObject<{
|
|
922
|
+
tenantId: z.ZodString;
|
|
923
|
+
collectionId: z.ZodString;
|
|
924
|
+
recordId: z.ZodString;
|
|
925
|
+
}, z.core.$strip>;
|
|
824
926
|
export declare const ReorderCollectionFieldsSchema: z.ZodObject<{
|
|
825
927
|
tenantId: z.ZodString;
|
|
826
928
|
collectionId: z.ZodString;
|