@appconda/sdk 1.0.556 → 1.0.557

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@appconda/sdk",
3
3
  "homepage": "https://appconda.io/support",
4
4
  "description": "Appconda is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API",
5
- "version": "1.0.556",
5
+ "version": "1.0.557",
6
6
  "license": "BSD-3-Clause",
7
7
  "main": "dist/index.js",
8
8
  "types": "dist/index.d.ts",
@@ -98,7 +98,7 @@ export const ListDomainTopicsSchema = z.object({
98
98
 
99
99
  export const CreateScopeSchema = z.object({
100
100
  tenantId: z.string(),
101
- emploidId: z.string(),
101
+ workerId: z.string(),
102
102
  name: z.string(),
103
103
  description: z.string().optional()
104
104
  });
@@ -115,7 +115,7 @@ export const DeleteScopeSchema = z.object({
115
115
 
116
116
  export const CreateJobDefinitionSchema = z.object({
117
117
  tenantId: z.string(),
118
- emploidId: z.string(),
118
+ workerId: z.string(),
119
119
  scopeId: z.string(),
120
120
  name: z.string(),
121
121
  description: z.string().optional(),
@@ -126,7 +126,7 @@ export const CreateJobDefinitionSchema = z.object({
126
126
 
127
127
  export const ListJobDefinitionSchema = z.object({
128
128
  tenantId: z.string(),
129
- emploidId: z.string().optional(),
129
+ workerId: z.string().optional(),
130
130
  scopeId: z.string().optional()
131
131
  });
132
132
 
@@ -145,7 +145,7 @@ export const DeleteJobDefinitionSchema = z.object({
145
145
 
146
146
  export const CreateCompetencySchema = z.object({
147
147
  tenantId: z.string(),
148
- emploidId: z.string(),
148
+ workerId: z.string(),
149
149
  scopeId: z.string(),
150
150
  jobDefinitionId: z.string(),
151
151
  name: z.string(),
@@ -155,7 +155,7 @@ export const CreateCompetencySchema = z.object({
155
155
 
156
156
  export const ListCompetenciesSchema = z.object({
157
157
  tenantId: z.string(),
158
- emploidId: z.string().optional(),
158
+ workerId: z.string().optional(),
159
159
  scopeId: z.string().optional(),
160
160
  jobDefinitionId: z.string().optional()
161
161
  });
@@ -18,7 +18,7 @@ export type TPaginatedEmploidsResult = {
18
18
 
19
19
  export type TScope = {
20
20
  id: string;
21
- emploidId: string;
21
+ workerId: string;
22
22
  name: string;
23
23
  description: string;
24
24
  }