@appconda/sdk 1.0.601 → 1.0.605
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/client.d.ts +8 -0
- package/dist/client.js +75 -8
- package/dist/getAppcondaClient.d.ts +14 -3
- package/dist/getAppcondaClient.js +51 -59
- package/dist/getSDKForService.d.ts +3 -1
- package/dist/getSDKForService.js +4 -4
- package/dist/index.d.ts +5 -1
- package/dist/index.js +3 -1
- package/dist/modules/accounv1/schema.d.ts +1 -1
- package/dist/modules/accounv1/schema.js +2 -2
- package/dist/modules/accounv1/types.d.ts +1 -1
- package/dist/modules/accounv1/types.js +1 -1
- package/dist/modules/emploid/schema.d.ts +62 -8
- package/dist/modules/emploid/schema.js +64 -10
- package/dist/modules/emploid/service.d.ts +20 -3
- package/dist/modules/emploid/service.js +121 -1
- package/dist/modules/emploid/types.d.ts +67 -1
- package/dist/modules/emploid/types.js +1 -1
- package/dist/modules/organization/schema.d.ts +35 -1
- package/dist/modules/organization/schema.js +31 -2
- package/dist/modules/organization/service.d.ts +9 -2
- package/dist/modules/organization/service.js +29 -8
- package/dist/modules/organization/types.d.ts +45 -1
- package/dist/modules/organization/types.js +1 -1
- package/package.json +1 -1
- package/src/client.ts +96 -8
- package/src/getAppcondaClient.ts +69 -58
- package/src/getSDKForService.ts +7 -4
- package/src/index.ts +5 -2
- package/src/modules/accounv1/schema.ts +2 -2
- package/src/modules/accounv1/types.ts +2 -2
- package/src/modules/emploid/schema.ts +74 -10
- package/src/modules/emploid/service.ts +169 -3
- package/src/modules/emploid/types.ts +74 -1
- package/src/modules/organization/schema.ts +38 -2
- package/src/modules/organization/service.ts +67 -13
- package/src/modules/organization/types.ts +51 -2
- package/dist/inputFile.d.ts +0 -6
- package/dist/inputFile.js +0 -16
- package/dist/modules/agent/action.d.ts +0 -29
- package/dist/modules/agent/action.js +0 -53
- package/dist/modules/ai/node/actions.d.ts +0 -4
- package/dist/modules/ai/node/actions.js +0 -14
- package/dist/modules/builder/action.d.ts +0 -18
- package/dist/modules/builder/action.js +0 -214
- package/dist/modules/datasource/action.d.ts +0 -14
- package/dist/modules/datasource/action.js +0 -172
- package/dist/modules/emploid/action.d.ts +0 -73
- package/dist/modules/emploid/action.js +0 -984
- package/dist/modules/google/action.d.ts +0 -5
- package/dist/modules/google/action.js +0 -46
- package/dist/modules/hooks/lib/handler.d.ts +0 -3
- package/dist/modules/hooks/lib/handler.js +0 -23
- package/dist/modules/mail/action.d.ts +0 -3
- package/dist/modules/mail/action.js +0 -18
- package/dist/modules/notion/action.d.ts +0 -5
- package/dist/modules/notion/action.js +0 -46
- package/dist/modules/organization/action.d.ts +0 -7
- package/dist/modules/organization/action.js +0 -60
- package/dist/modules/scheduled-job/action.d.ts +0 -70
- package/dist/modules/scheduled-job/action.js +0 -173
- package/dist/modules/scheduled-job/lib/handler.d.ts +0 -3
- package/dist/modules/scheduled-job/lib/handler.js +0 -23
- package/dist/modules/task/action.d.ts +0 -64
- package/dist/modules/task/action.js +0 -758
- package/dist/modules/tenant/actions.d.ts +0 -10
- package/dist/modules/tenant/actions.js +0 -160
- package/dist/modules/waitlist/action.d.ts +0 -6
- package/dist/modules/waitlist/action.js +0 -78
|
@@ -81,23 +81,34 @@ export declare const ListDomainTopicsSchema: z.ZodObject<{
|
|
|
81
81
|
tenantId: z.ZodString;
|
|
82
82
|
occupationId: z.ZodString;
|
|
83
83
|
}, z.core.$strip>;
|
|
84
|
+
export declare const ScopeTypeSchema: z.ZodString;
|
|
84
85
|
export declare const CreateScopeSchema: z.ZodObject<{
|
|
85
86
|
tenantId: z.ZodString;
|
|
86
|
-
|
|
87
|
-
|
|
87
|
+
workerId: z.ZodString;
|
|
88
|
+
parentScopeId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
89
|
+
name: z.ZodOptional<z.ZodString>;
|
|
90
|
+
type: z.ZodOptional<z.ZodString>;
|
|
91
|
+
isFolderType: z.ZodOptional<z.ZodBoolean>;
|
|
88
92
|
description: z.ZodOptional<z.ZodString>;
|
|
89
93
|
}, z.core.$strip>;
|
|
94
|
+
export declare const GetScopeByTypeSchema: z.ZodObject<{
|
|
95
|
+
tenantId: z.ZodString;
|
|
96
|
+
workerId: z.ZodString;
|
|
97
|
+
type: z.ZodString;
|
|
98
|
+
}, z.core.$strip>;
|
|
90
99
|
export declare const UpdateScopeSchema: z.ZodObject<{
|
|
91
100
|
scopeId: z.ZodString;
|
|
92
|
-
|
|
101
|
+
parentScopeId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
102
|
+
name: z.ZodOptional<z.ZodString>;
|
|
93
103
|
description: z.ZodOptional<z.ZodString>;
|
|
104
|
+
isFolderType: z.ZodOptional<z.ZodBoolean>;
|
|
94
105
|
}, z.core.$strip>;
|
|
95
106
|
export declare const DeleteScopeSchema: z.ZodObject<{
|
|
96
107
|
scopeId: z.ZodString;
|
|
97
108
|
}, z.core.$strip>;
|
|
98
109
|
export declare const CreateJobDefinitionSchema: z.ZodObject<{
|
|
99
110
|
tenantId: z.ZodString;
|
|
100
|
-
|
|
111
|
+
workerId: z.ZodString;
|
|
101
112
|
scopeId: z.ZodString;
|
|
102
113
|
name: z.ZodString;
|
|
103
114
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -119,7 +130,7 @@ export declare const CreateJobDefinitionSchema: z.ZodObject<{
|
|
|
119
130
|
}, z.core.$strip>;
|
|
120
131
|
export declare const ListJobDefinitionSchema: z.ZodObject<{
|
|
121
132
|
tenantId: z.ZodString;
|
|
122
|
-
|
|
133
|
+
workerId: z.ZodOptional<z.ZodString>;
|
|
123
134
|
scopeId: z.ZodOptional<z.ZodString>;
|
|
124
135
|
}, z.core.$strip>;
|
|
125
136
|
export declare const UpdateJobDefinitionSchema: z.ZodObject<{
|
|
@@ -147,7 +158,7 @@ export declare const DeleteJobDefinitionSchema: z.ZodObject<{
|
|
|
147
158
|
}, z.core.$strip>;
|
|
148
159
|
export declare const CreateCompetencySchema: z.ZodObject<{
|
|
149
160
|
tenantId: z.ZodString;
|
|
150
|
-
|
|
161
|
+
workerId: z.ZodString;
|
|
151
162
|
scopeId: z.ZodString;
|
|
152
163
|
jobDefinitionId: z.ZodString;
|
|
153
164
|
name: z.ZodString;
|
|
@@ -156,7 +167,7 @@ export declare const CreateCompetencySchema: z.ZodObject<{
|
|
|
156
167
|
}, z.core.$strip>;
|
|
157
168
|
export declare const ListCompetenciesSchema: z.ZodObject<{
|
|
158
169
|
tenantId: z.ZodString;
|
|
159
|
-
|
|
170
|
+
workerId: z.ZodOptional<z.ZodString>;
|
|
160
171
|
scopeId: z.ZodOptional<z.ZodString>;
|
|
161
172
|
jobDefinitionId: z.ZodOptional<z.ZodString>;
|
|
162
173
|
}, z.core.$strip>;
|
|
@@ -325,7 +336,7 @@ export declare const DeleteAssistantChannelSchema: z.ZodObject<{
|
|
|
325
336
|
}, z.core.$strip>;
|
|
326
337
|
export declare const CreateWorkerSchema: z.ZodObject<{
|
|
327
338
|
tenantId: z.ZodString;
|
|
328
|
-
emploidId: z.ZodString
|
|
339
|
+
emploidId: z.ZodOptional<z.ZodString>;
|
|
329
340
|
name: z.ZodString;
|
|
330
341
|
description: z.ZodOptional<z.ZodString>;
|
|
331
342
|
avatar: z.ZodOptional<z.ZodString>;
|
|
@@ -911,6 +922,44 @@ export declare const ListWikiPagesSchema: z.ZodObject<{
|
|
|
911
922
|
tenantId: z.ZodString;
|
|
912
923
|
workspaceId: z.ZodString;
|
|
913
924
|
}, z.core.$strip>;
|
|
925
|
+
export declare const UploadEditorFileSchema: z.ZodObject<{
|
|
926
|
+
fileName: z.ZodString;
|
|
927
|
+
fileType: z.ZodOptional<z.ZodString>;
|
|
928
|
+
fileData: z.ZodString;
|
|
929
|
+
pageId: z.ZodOptional<z.ZodString>;
|
|
930
|
+
attachmentId: z.ZodOptional<z.ZodString>;
|
|
931
|
+
}, z.core.$strip>;
|
|
932
|
+
export declare const ResolveWikiFileViewSchema: z.ZodObject<{
|
|
933
|
+
fileId: z.ZodString;
|
|
934
|
+
}, z.core.$strip>;
|
|
935
|
+
export declare const ResolveScopeFileViewSchema: z.ZodObject<{
|
|
936
|
+
fileId: z.ZodString;
|
|
937
|
+
}, z.core.$strip>;
|
|
938
|
+
export declare const CreateWikiCommentSchema: z.ZodObject<{
|
|
939
|
+
pageId: z.ZodString;
|
|
940
|
+
content: z.ZodString;
|
|
941
|
+
creatorId: z.ZodString;
|
|
942
|
+
creatorName: z.ZodOptional<z.ZodString>;
|
|
943
|
+
creatorAvatarUrl: z.ZodOptional<z.ZodString>;
|
|
944
|
+
selection: z.ZodOptional<z.ZodString>;
|
|
945
|
+
parentCommentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
946
|
+
}, z.core.$strip>;
|
|
947
|
+
export declare const UpdateWikiCommentSchema: z.ZodObject<{
|
|
948
|
+
commentId: z.ZodString;
|
|
949
|
+
content: z.ZodOptional<z.ZodString>;
|
|
950
|
+
resolved: z.ZodOptional<z.ZodBoolean>;
|
|
951
|
+
resolvedById: z.ZodOptional<z.ZodString>;
|
|
952
|
+
resolvedByName: z.ZodOptional<z.ZodString>;
|
|
953
|
+
resolvedByAvatarUrl: z.ZodOptional<z.ZodString>;
|
|
954
|
+
}, z.core.$strip>;
|
|
955
|
+
export declare const DeleteWikiCommentSchema: z.ZodObject<{
|
|
956
|
+
commentId: z.ZodString;
|
|
957
|
+
}, z.core.$strip>;
|
|
958
|
+
export declare const ListWikiCommentsSchema: z.ZodObject<{
|
|
959
|
+
pageId: z.ZodString;
|
|
960
|
+
page: z.ZodOptional<z.ZodNumber>;
|
|
961
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
962
|
+
}, z.core.$strip>;
|
|
914
963
|
export declare const CreateDatasourceSchema: z.ZodObject<{
|
|
915
964
|
tenantId: z.ZodString;
|
|
916
965
|
entityId: z.ZodString;
|
|
@@ -1050,3 +1099,8 @@ export declare const PublishWorkerSchema: z.ZodObject<{
|
|
|
1050
1099
|
tenantId: z.ZodString;
|
|
1051
1100
|
workerId: z.ZodString;
|
|
1052
1101
|
}, z.core.$strip>;
|
|
1102
|
+
export declare const EnhanceTopicSchema: z.ZodObject<{
|
|
1103
|
+
entityName: z.ZodString;
|
|
1104
|
+
entityDescription: z.ZodString;
|
|
1105
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1106
|
+
}, z.core.$strip>;
|