@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.
Files changed (69) hide show
  1. package/dist/client.d.ts +8 -0
  2. package/dist/client.js +75 -8
  3. package/dist/getAppcondaClient.d.ts +14 -3
  4. package/dist/getAppcondaClient.js +51 -59
  5. package/dist/getSDKForService.d.ts +3 -1
  6. package/dist/getSDKForService.js +4 -4
  7. package/dist/index.d.ts +5 -1
  8. package/dist/index.js +3 -1
  9. package/dist/modules/accounv1/schema.d.ts +1 -1
  10. package/dist/modules/accounv1/schema.js +2 -2
  11. package/dist/modules/accounv1/types.d.ts +1 -1
  12. package/dist/modules/accounv1/types.js +1 -1
  13. package/dist/modules/emploid/schema.d.ts +62 -8
  14. package/dist/modules/emploid/schema.js +64 -10
  15. package/dist/modules/emploid/service.d.ts +20 -3
  16. package/dist/modules/emploid/service.js +121 -1
  17. package/dist/modules/emploid/types.d.ts +67 -1
  18. package/dist/modules/emploid/types.js +1 -1
  19. package/dist/modules/organization/schema.d.ts +35 -1
  20. package/dist/modules/organization/schema.js +31 -2
  21. package/dist/modules/organization/service.d.ts +9 -2
  22. package/dist/modules/organization/service.js +29 -8
  23. package/dist/modules/organization/types.d.ts +45 -1
  24. package/dist/modules/organization/types.js +1 -1
  25. package/package.json +1 -1
  26. package/src/client.ts +96 -8
  27. package/src/getAppcondaClient.ts +69 -58
  28. package/src/getSDKForService.ts +7 -4
  29. package/src/index.ts +5 -2
  30. package/src/modules/accounv1/schema.ts +2 -2
  31. package/src/modules/accounv1/types.ts +2 -2
  32. package/src/modules/emploid/schema.ts +74 -10
  33. package/src/modules/emploid/service.ts +169 -3
  34. package/src/modules/emploid/types.ts +74 -1
  35. package/src/modules/organization/schema.ts +38 -2
  36. package/src/modules/organization/service.ts +67 -13
  37. package/src/modules/organization/types.ts +51 -2
  38. package/dist/inputFile.d.ts +0 -6
  39. package/dist/inputFile.js +0 -16
  40. package/dist/modules/agent/action.d.ts +0 -29
  41. package/dist/modules/agent/action.js +0 -53
  42. package/dist/modules/ai/node/actions.d.ts +0 -4
  43. package/dist/modules/ai/node/actions.js +0 -14
  44. package/dist/modules/builder/action.d.ts +0 -18
  45. package/dist/modules/builder/action.js +0 -214
  46. package/dist/modules/datasource/action.d.ts +0 -14
  47. package/dist/modules/datasource/action.js +0 -172
  48. package/dist/modules/emploid/action.d.ts +0 -73
  49. package/dist/modules/emploid/action.js +0 -984
  50. package/dist/modules/google/action.d.ts +0 -5
  51. package/dist/modules/google/action.js +0 -46
  52. package/dist/modules/hooks/lib/handler.d.ts +0 -3
  53. package/dist/modules/hooks/lib/handler.js +0 -23
  54. package/dist/modules/mail/action.d.ts +0 -3
  55. package/dist/modules/mail/action.js +0 -18
  56. package/dist/modules/notion/action.d.ts +0 -5
  57. package/dist/modules/notion/action.js +0 -46
  58. package/dist/modules/organization/action.d.ts +0 -7
  59. package/dist/modules/organization/action.js +0 -60
  60. package/dist/modules/scheduled-job/action.d.ts +0 -70
  61. package/dist/modules/scheduled-job/action.js +0 -173
  62. package/dist/modules/scheduled-job/lib/handler.d.ts +0 -3
  63. package/dist/modules/scheduled-job/lib/handler.js +0 -23
  64. package/dist/modules/task/action.d.ts +0 -64
  65. package/dist/modules/task/action.js +0 -758
  66. package/dist/modules/tenant/actions.d.ts +0 -10
  67. package/dist/modules/tenant/actions.js +0 -160
  68. package/dist/modules/waitlist/action.d.ts +0 -6
  69. 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
- emploidId: z.ZodString;
87
- name: z.ZodString;
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
- name: z.ZodString;
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
- emploidId: z.ZodString;
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
- emploidId: z.ZodOptional<z.ZodString>;
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
- emploidId: z.ZodString;
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
- emploidId: z.ZodOptional<z.ZodString>;
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>;