@camunda/camunda-api-zod-schemas 0.0.41 → 0.0.42
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/8.9/audit-log.d.ts +20 -20
- package/dist/8.9/audit-log.js +5 -5
- package/dist/8.9/user-task-audit-log.d.ts +10 -10
- package/package.json +1 -1
package/dist/8.9/audit-log.d.ts
CHANGED
|
@@ -120,17 +120,17 @@ declare const auditLogSchema: z.ZodObject<{
|
|
|
120
120
|
ADMIN: "ADMIN";
|
|
121
121
|
}>;
|
|
122
122
|
processDefinitionId: z.ZodNullable<z.ZodString>;
|
|
123
|
-
processDefinitionKey: z.ZodString
|
|
124
|
-
processInstanceKey: z.ZodString
|
|
123
|
+
processDefinitionKey: z.ZodNullable<z.ZodString>;
|
|
124
|
+
processInstanceKey: z.ZodNullable<z.ZodString>;
|
|
125
125
|
rootProcessInstanceKey: z.ZodNullable<z.ZodString>;
|
|
126
|
-
elementInstanceKey: z.ZodString
|
|
126
|
+
elementInstanceKey: z.ZodNullable<z.ZodString>;
|
|
127
127
|
jobKey: z.ZodNullable<z.ZodString>;
|
|
128
128
|
userTaskKey: z.ZodNullable<z.ZodString>;
|
|
129
129
|
decisionRequirementsId: z.ZodNullable<z.ZodString>;
|
|
130
130
|
decisionRequirementsKey: z.ZodNullable<z.ZodString>;
|
|
131
131
|
decisionDefinitionId: z.ZodNullable<z.ZodString>;
|
|
132
|
-
decisionDefinitionKey: z.ZodString
|
|
133
|
-
decisionEvaluationKey: z.ZodString
|
|
132
|
+
decisionDefinitionKey: z.ZodNullable<z.ZodString>;
|
|
133
|
+
decisionEvaluationKey: z.ZodNullable<z.ZodString>;
|
|
134
134
|
deploymentKey: z.ZodNullable<z.ZodString>;
|
|
135
135
|
formKey: z.ZodNullable<z.ZodString>;
|
|
136
136
|
resourceKey: z.ZodNullable<z.ZodString>;
|
|
@@ -1053,17 +1053,17 @@ declare const queryAuditLogsResponseBodySchema: z.ZodType<import('./common').Que
|
|
|
1053
1053
|
annotation: string | null;
|
|
1054
1054
|
category: "DEPLOYED_RESOURCES" | "USER_TASKS" | "ADMIN";
|
|
1055
1055
|
processDefinitionId: string | null;
|
|
1056
|
-
processDefinitionKey: string;
|
|
1057
|
-
processInstanceKey: string;
|
|
1056
|
+
processDefinitionKey: string | null;
|
|
1057
|
+
processInstanceKey: string | null;
|
|
1058
1058
|
rootProcessInstanceKey: string | null;
|
|
1059
|
-
elementInstanceKey: string;
|
|
1059
|
+
elementInstanceKey: string | null;
|
|
1060
1060
|
jobKey: string | null;
|
|
1061
1061
|
userTaskKey: string | null;
|
|
1062
1062
|
decisionRequirementsId: string | null;
|
|
1063
1063
|
decisionRequirementsKey: string | null;
|
|
1064
1064
|
decisionDefinitionId: string | null;
|
|
1065
|
-
decisionDefinitionKey: string;
|
|
1066
|
-
decisionEvaluationKey: string;
|
|
1065
|
+
decisionDefinitionKey: string | null;
|
|
1066
|
+
decisionEvaluationKey: string | null;
|
|
1067
1067
|
deploymentKey: string | null;
|
|
1068
1068
|
formKey: string | null;
|
|
1069
1069
|
resourceKey: string | null;
|
|
@@ -1086,17 +1086,17 @@ declare const queryAuditLogsResponseBodySchema: z.ZodType<import('./common').Que
|
|
|
1086
1086
|
annotation: string | null;
|
|
1087
1087
|
category: "DEPLOYED_RESOURCES" | "USER_TASKS" | "ADMIN";
|
|
1088
1088
|
processDefinitionId: string | null;
|
|
1089
|
-
processDefinitionKey: string;
|
|
1090
|
-
processInstanceKey: string;
|
|
1089
|
+
processDefinitionKey: string | null;
|
|
1090
|
+
processInstanceKey: string | null;
|
|
1091
1091
|
rootProcessInstanceKey: string | null;
|
|
1092
|
-
elementInstanceKey: string;
|
|
1092
|
+
elementInstanceKey: string | null;
|
|
1093
1093
|
jobKey: string | null;
|
|
1094
1094
|
userTaskKey: string | null;
|
|
1095
1095
|
decisionRequirementsId: string | null;
|
|
1096
1096
|
decisionRequirementsKey: string | null;
|
|
1097
1097
|
decisionDefinitionId: string | null;
|
|
1098
|
-
decisionDefinitionKey: string;
|
|
1099
|
-
decisionEvaluationKey: string;
|
|
1098
|
+
decisionDefinitionKey: string | null;
|
|
1099
|
+
decisionEvaluationKey: string | null;
|
|
1100
1100
|
deploymentKey: string | null;
|
|
1101
1101
|
formKey: string | null;
|
|
1102
1102
|
resourceKey: string | null;
|
|
@@ -1178,17 +1178,17 @@ declare const getAuditLogResponseBodySchema: z.ZodObject<{
|
|
|
1178
1178
|
ADMIN: "ADMIN";
|
|
1179
1179
|
}>;
|
|
1180
1180
|
processDefinitionId: z.ZodNullable<z.ZodString>;
|
|
1181
|
-
processDefinitionKey: z.ZodString
|
|
1182
|
-
processInstanceKey: z.ZodString
|
|
1181
|
+
processDefinitionKey: z.ZodNullable<z.ZodString>;
|
|
1182
|
+
processInstanceKey: z.ZodNullable<z.ZodString>;
|
|
1183
1183
|
rootProcessInstanceKey: z.ZodNullable<z.ZodString>;
|
|
1184
|
-
elementInstanceKey: z.ZodString
|
|
1184
|
+
elementInstanceKey: z.ZodNullable<z.ZodString>;
|
|
1185
1185
|
jobKey: z.ZodNullable<z.ZodString>;
|
|
1186
1186
|
userTaskKey: z.ZodNullable<z.ZodString>;
|
|
1187
1187
|
decisionRequirementsId: z.ZodNullable<z.ZodString>;
|
|
1188
1188
|
decisionRequirementsKey: z.ZodNullable<z.ZodString>;
|
|
1189
1189
|
decisionDefinitionId: z.ZodNullable<z.ZodString>;
|
|
1190
|
-
decisionDefinitionKey: z.ZodString
|
|
1191
|
-
decisionEvaluationKey: z.ZodString
|
|
1190
|
+
decisionDefinitionKey: z.ZodNullable<z.ZodString>;
|
|
1191
|
+
decisionEvaluationKey: z.ZodNullable<z.ZodString>;
|
|
1192
1192
|
deploymentKey: z.ZodNullable<z.ZodString>;
|
|
1193
1193
|
formKey: z.ZodNullable<z.ZodString>;
|
|
1194
1194
|
resourceKey: z.ZodNullable<z.ZodString>;
|
package/dist/8.9/audit-log.js
CHANGED
|
@@ -62,17 +62,17 @@ const auditLogSchema = z.object({
|
|
|
62
62
|
annotation: z.string().nullable(),
|
|
63
63
|
category: auditLogCategorySchema,
|
|
64
64
|
processDefinitionId: z.string().nullable(),
|
|
65
|
-
processDefinitionKey: z.string(),
|
|
66
|
-
processInstanceKey: z.string(),
|
|
65
|
+
processDefinitionKey: z.string().nullable(),
|
|
66
|
+
processInstanceKey: z.string().nullable(),
|
|
67
67
|
rootProcessInstanceKey: z.string().nullable(),
|
|
68
|
-
elementInstanceKey: z.string(),
|
|
68
|
+
elementInstanceKey: z.string().nullable(),
|
|
69
69
|
jobKey: z.string().nullable(),
|
|
70
70
|
userTaskKey: z.string().nullable(),
|
|
71
71
|
decisionRequirementsId: z.string().nullable(),
|
|
72
72
|
decisionRequirementsKey: z.string().nullable(),
|
|
73
73
|
decisionDefinitionId: z.string().nullable(),
|
|
74
|
-
decisionDefinitionKey: z.string(),
|
|
75
|
-
decisionEvaluationKey: z.string(),
|
|
74
|
+
decisionDefinitionKey: z.string().nullable(),
|
|
75
|
+
decisionEvaluationKey: z.string().nullable(),
|
|
76
76
|
deploymentKey: z.string().nullable(),
|
|
77
77
|
formKey: z.string().nullable(),
|
|
78
78
|
resourceKey: z.string().nullable(),
|
|
@@ -346,17 +346,17 @@ declare const queryUserTaskAuditLogsResponseBodySchema: z.ZodType<import('./comm
|
|
|
346
346
|
annotation: string | null;
|
|
347
347
|
category: "DEPLOYED_RESOURCES" | "USER_TASKS" | "ADMIN";
|
|
348
348
|
processDefinitionId: string | null;
|
|
349
|
-
processDefinitionKey: string;
|
|
350
|
-
processInstanceKey: string;
|
|
349
|
+
processDefinitionKey: string | null;
|
|
350
|
+
processInstanceKey: string | null;
|
|
351
351
|
rootProcessInstanceKey: string | null;
|
|
352
|
-
elementInstanceKey: string;
|
|
352
|
+
elementInstanceKey: string | null;
|
|
353
353
|
jobKey: string | null;
|
|
354
354
|
userTaskKey: string | null;
|
|
355
355
|
decisionRequirementsId: string | null;
|
|
356
356
|
decisionRequirementsKey: string | null;
|
|
357
357
|
decisionDefinitionId: string | null;
|
|
358
|
-
decisionDefinitionKey: string;
|
|
359
|
-
decisionEvaluationKey: string;
|
|
358
|
+
decisionDefinitionKey: string | null;
|
|
359
|
+
decisionEvaluationKey: string | null;
|
|
360
360
|
deploymentKey: string | null;
|
|
361
361
|
formKey: string | null;
|
|
362
362
|
resourceKey: string | null;
|
|
@@ -379,17 +379,17 @@ declare const queryUserTaskAuditLogsResponseBodySchema: z.ZodType<import('./comm
|
|
|
379
379
|
annotation: string | null;
|
|
380
380
|
category: "DEPLOYED_RESOURCES" | "USER_TASKS" | "ADMIN";
|
|
381
381
|
processDefinitionId: string | null;
|
|
382
|
-
processDefinitionKey: string;
|
|
383
|
-
processInstanceKey: string;
|
|
382
|
+
processDefinitionKey: string | null;
|
|
383
|
+
processInstanceKey: string | null;
|
|
384
384
|
rootProcessInstanceKey: string | null;
|
|
385
|
-
elementInstanceKey: string;
|
|
385
|
+
elementInstanceKey: string | null;
|
|
386
386
|
jobKey: string | null;
|
|
387
387
|
userTaskKey: string | null;
|
|
388
388
|
decisionRequirementsId: string | null;
|
|
389
389
|
decisionRequirementsKey: string | null;
|
|
390
390
|
decisionDefinitionId: string | null;
|
|
391
|
-
decisionDefinitionKey: string;
|
|
392
|
-
decisionEvaluationKey: string;
|
|
391
|
+
decisionDefinitionKey: string | null;
|
|
392
|
+
decisionEvaluationKey: string | null;
|
|
393
393
|
deploymentKey: string | null;
|
|
394
394
|
formKey: string | null;
|
|
395
395
|
resourceKey: string | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camunda/camunda-api-zod-schemas",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.42",
|
|
4
4
|
"license": "LicenseRef-Camunda-1.0",
|
|
5
5
|
"description": "Zod schemas and TypeScript types for Camunda 8 unified API",
|
|
6
6
|
"author": "Vinicius Goulart <vinicius.goulart@camunda.com>",
|