@uniformdev/webhooks 19.135.0 → 19.135.1-alpha.11
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/index.d.mts +412 -3
- package/dist/index.d.ts +412 -3
- package/dist/index.esm.js +136 -6
- package/dist/index.js +142 -6
- package/dist/index.mjs +136 -6
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -148,8 +148,8 @@ type Definition<TSchema extends ZodTypeAny = ZodTypeAny> = DefinitionOptions<TSc
|
|
|
148
148
|
_definition: true;
|
|
149
149
|
example: z.TypeOf<TSchema>;
|
|
150
150
|
};
|
|
151
|
-
declare const isDefinition: (obj: any) => obj is Definition
|
|
152
|
-
declare const definition: <TSchema extends
|
|
151
|
+
declare const isDefinition: (obj: any) => obj is Definition;
|
|
152
|
+
declare const definition: <TSchema extends ZodTypeAny = z.ZodTypeAny>(options: DefinitionOptions<TSchema>, example: z.infer<TSchema>) => Definition<TSchema>;
|
|
153
153
|
|
|
154
154
|
declare const CompositionChangedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
155
155
|
id: z.ZodString;
|
|
@@ -1174,68 +1174,151 @@ declare const ProjectMapDeletedEventName: string;
|
|
|
1174
1174
|
declare const ProjectMapNodeDeleteDefinition: Definition<z.ZodObject<{
|
|
1175
1175
|
project_id: z.ZodString;
|
|
1176
1176
|
project_map_id: z.ZodString;
|
|
1177
|
+
name: z.ZodString;
|
|
1177
1178
|
id: z.ZodString;
|
|
1178
1179
|
path: z.ZodString;
|
|
1179
1180
|
composition_id: z.ZodOptional<z.ZodString>;
|
|
1181
|
+
locales: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1182
|
+
name: z.ZodString;
|
|
1183
|
+
inherited: z.ZodBoolean;
|
|
1184
|
+
path: z.ZodString;
|
|
1185
|
+
}, "strip", z.ZodTypeAny, {
|
|
1186
|
+
name: string;
|
|
1187
|
+
path: string;
|
|
1188
|
+
inherited: boolean;
|
|
1189
|
+
}, {
|
|
1190
|
+
name: string;
|
|
1191
|
+
path: string;
|
|
1192
|
+
inherited: boolean;
|
|
1193
|
+
}>>>;
|
|
1180
1194
|
}, "strip", z.ZodTypeAny, {
|
|
1181
1195
|
id: string;
|
|
1196
|
+
name: string;
|
|
1182
1197
|
path: string;
|
|
1183
1198
|
project_id: string;
|
|
1184
1199
|
project_map_id: string;
|
|
1185
1200
|
composition_id?: string | undefined;
|
|
1201
|
+
locales?: Record<string, {
|
|
1202
|
+
name: string;
|
|
1203
|
+
path: string;
|
|
1204
|
+
inherited: boolean;
|
|
1205
|
+
}> | undefined;
|
|
1186
1206
|
}, {
|
|
1187
1207
|
id: string;
|
|
1208
|
+
name: string;
|
|
1188
1209
|
path: string;
|
|
1189
1210
|
project_id: string;
|
|
1190
1211
|
project_map_id: string;
|
|
1191
1212
|
composition_id?: string | undefined;
|
|
1213
|
+
locales?: Record<string, {
|
|
1214
|
+
name: string;
|
|
1215
|
+
path: string;
|
|
1216
|
+
inherited: boolean;
|
|
1217
|
+
}> | undefined;
|
|
1192
1218
|
}>>;
|
|
1193
1219
|
type ProjectMapNodeDeletedPayload = z.infer<(typeof ProjectMapNodeDeleteDefinition)['schema']>;
|
|
1194
1220
|
declare const ProjectMapNodeDeletedEventName: string;
|
|
1195
1221
|
|
|
1196
1222
|
declare const ProjectMapNodeInsertDefinition: Definition<z.ZodObject<{
|
|
1197
1223
|
id: z.ZodString;
|
|
1224
|
+
name: z.ZodString;
|
|
1198
1225
|
project_map_id: z.ZodString;
|
|
1199
1226
|
project_id: z.ZodString;
|
|
1200
1227
|
path: z.ZodString;
|
|
1201
1228
|
composition_id: z.ZodOptional<z.ZodString>;
|
|
1229
|
+
locales: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1230
|
+
name: z.ZodString;
|
|
1231
|
+
inherited: z.ZodBoolean;
|
|
1232
|
+
path: z.ZodString;
|
|
1233
|
+
}, "strip", z.ZodTypeAny, {
|
|
1234
|
+
name: string;
|
|
1235
|
+
path: string;
|
|
1236
|
+
inherited: boolean;
|
|
1237
|
+
}, {
|
|
1238
|
+
name: string;
|
|
1239
|
+
path: string;
|
|
1240
|
+
inherited: boolean;
|
|
1241
|
+
}>>>;
|
|
1202
1242
|
}, "strip", z.ZodTypeAny, {
|
|
1203
1243
|
id: string;
|
|
1244
|
+
name: string;
|
|
1204
1245
|
path: string;
|
|
1205
1246
|
project_id: string;
|
|
1206
1247
|
project_map_id: string;
|
|
1207
1248
|
composition_id?: string | undefined;
|
|
1249
|
+
locales?: Record<string, {
|
|
1250
|
+
name: string;
|
|
1251
|
+
path: string;
|
|
1252
|
+
inherited: boolean;
|
|
1253
|
+
}> | undefined;
|
|
1208
1254
|
}, {
|
|
1209
1255
|
id: string;
|
|
1256
|
+
name: string;
|
|
1210
1257
|
path: string;
|
|
1211
1258
|
project_id: string;
|
|
1212
1259
|
project_map_id: string;
|
|
1213
1260
|
composition_id?: string | undefined;
|
|
1261
|
+
locales?: Record<string, {
|
|
1262
|
+
name: string;
|
|
1263
|
+
path: string;
|
|
1264
|
+
inherited: boolean;
|
|
1265
|
+
}> | undefined;
|
|
1214
1266
|
}>>;
|
|
1215
1267
|
type ProjectMapNodeInsertedPayload = z.infer<(typeof ProjectMapNodeInsertDefinition)['schema']>;
|
|
1216
1268
|
declare const ProjectMapNodeInsertedEventName: string;
|
|
1217
1269
|
|
|
1218
1270
|
declare const ProjectMapNodeUpdateDefinition: Definition<z.ZodObject<{
|
|
1219
1271
|
id: z.ZodString;
|
|
1272
|
+
name: z.ZodString;
|
|
1220
1273
|
project_map_id: z.ZodString;
|
|
1221
1274
|
project_id: z.ZodString;
|
|
1222
1275
|
path: z.ZodString;
|
|
1223
1276
|
composition_id: z.ZodOptional<z.ZodString>;
|
|
1224
1277
|
previous_path: z.ZodString;
|
|
1278
|
+
locales: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1279
|
+
name: z.ZodString;
|
|
1280
|
+
inherited: z.ZodBoolean;
|
|
1281
|
+
path: z.ZodString;
|
|
1282
|
+
previous_path: z.ZodString;
|
|
1283
|
+
}, "strip", z.ZodTypeAny, {
|
|
1284
|
+
name: string;
|
|
1285
|
+
path: string;
|
|
1286
|
+
inherited: boolean;
|
|
1287
|
+
previous_path: string;
|
|
1288
|
+
}, {
|
|
1289
|
+
name: string;
|
|
1290
|
+
path: string;
|
|
1291
|
+
inherited: boolean;
|
|
1292
|
+
previous_path: string;
|
|
1293
|
+
}>>>;
|
|
1225
1294
|
}, "strip", z.ZodTypeAny, {
|
|
1226
1295
|
id: string;
|
|
1296
|
+
name: string;
|
|
1227
1297
|
path: string;
|
|
1228
1298
|
project_id: string;
|
|
1229
1299
|
project_map_id: string;
|
|
1230
1300
|
previous_path: string;
|
|
1231
1301
|
composition_id?: string | undefined;
|
|
1302
|
+
locales?: Record<string, {
|
|
1303
|
+
name: string;
|
|
1304
|
+
path: string;
|
|
1305
|
+
inherited: boolean;
|
|
1306
|
+
previous_path: string;
|
|
1307
|
+
}> | undefined;
|
|
1232
1308
|
}, {
|
|
1233
1309
|
id: string;
|
|
1310
|
+
name: string;
|
|
1234
1311
|
path: string;
|
|
1235
1312
|
project_id: string;
|
|
1236
1313
|
project_map_id: string;
|
|
1237
1314
|
previous_path: string;
|
|
1238
1315
|
composition_id?: string | undefined;
|
|
1316
|
+
locales?: Record<string, {
|
|
1317
|
+
name: string;
|
|
1318
|
+
path: string;
|
|
1319
|
+
inherited: boolean;
|
|
1320
|
+
previous_path: string;
|
|
1321
|
+
}> | undefined;
|
|
1239
1322
|
}>>;
|
|
1240
1323
|
type ProjectMapNodeUpdatedPayload = z.infer<(typeof ProjectMapNodeUpdateDefinition)['schema']>;
|
|
1241
1324
|
declare const ProjectMapNodeUpdatedEventName: string;
|
|
@@ -1591,4 +1674,330 @@ declare const ArchivedReleaseLaunchStartedDefinition: Definition<zod.ZodObject<{
|
|
|
1591
1674
|
autoLaunchScheduleTimeZone?: string | undefined;
|
|
1592
1675
|
}>>;
|
|
1593
1676
|
|
|
1594
|
-
|
|
1677
|
+
declare const WorkflowReferenceSchema: z.ZodObject<{
|
|
1678
|
+
workflowId: z.ZodString;
|
|
1679
|
+
workflowName: z.ZodString;
|
|
1680
|
+
stageId: z.ZodString;
|
|
1681
|
+
stageName: z.ZodString;
|
|
1682
|
+
}, "strict", z.ZodTypeAny, {
|
|
1683
|
+
workflowId: string;
|
|
1684
|
+
workflowName: string;
|
|
1685
|
+
stageId: string;
|
|
1686
|
+
stageName: string;
|
|
1687
|
+
}, {
|
|
1688
|
+
workflowId: string;
|
|
1689
|
+
workflowName: string;
|
|
1690
|
+
stageId: string;
|
|
1691
|
+
stageName: string;
|
|
1692
|
+
}>;
|
|
1693
|
+
declare const WorkflowIdentitySchema: z.ZodObject<{
|
|
1694
|
+
id: z.ZodString;
|
|
1695
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1696
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1697
|
+
}, "strict", z.ZodTypeAny, {
|
|
1698
|
+
id: string;
|
|
1699
|
+
name?: string | undefined;
|
|
1700
|
+
email?: string | undefined;
|
|
1701
|
+
}, {
|
|
1702
|
+
id: string;
|
|
1703
|
+
name?: string | undefined;
|
|
1704
|
+
email?: string | undefined;
|
|
1705
|
+
}>;
|
|
1706
|
+
declare const WorkflowEntitySchema: z.ZodObject<{
|
|
1707
|
+
type: z.ZodEnum<["entry", "component"]>;
|
|
1708
|
+
name: z.ZodString;
|
|
1709
|
+
id: z.ZodString;
|
|
1710
|
+
releaseId: z.ZodOptional<z.ZodString>;
|
|
1711
|
+
url: z.ZodString;
|
|
1712
|
+
}, "strict", z.ZodTypeAny, {
|
|
1713
|
+
id: string;
|
|
1714
|
+
name: string;
|
|
1715
|
+
type: "entry" | "component";
|
|
1716
|
+
url: string;
|
|
1717
|
+
releaseId?: string | undefined;
|
|
1718
|
+
}, {
|
|
1719
|
+
id: string;
|
|
1720
|
+
name: string;
|
|
1721
|
+
type: "entry" | "component";
|
|
1722
|
+
url: string;
|
|
1723
|
+
releaseId?: string | undefined;
|
|
1724
|
+
}>;
|
|
1725
|
+
declare const WorkflowTransitionPayloadSchema: z.ZodObject<{
|
|
1726
|
+
entity: z.ZodObject<{
|
|
1727
|
+
type: z.ZodEnum<["entry", "component"]>;
|
|
1728
|
+
name: z.ZodString;
|
|
1729
|
+
id: z.ZodString;
|
|
1730
|
+
releaseId: z.ZodOptional<z.ZodString>;
|
|
1731
|
+
url: z.ZodString;
|
|
1732
|
+
}, "strict", z.ZodTypeAny, {
|
|
1733
|
+
id: string;
|
|
1734
|
+
name: string;
|
|
1735
|
+
type: "entry" | "component";
|
|
1736
|
+
url: string;
|
|
1737
|
+
releaseId?: string | undefined;
|
|
1738
|
+
}, {
|
|
1739
|
+
id: string;
|
|
1740
|
+
name: string;
|
|
1741
|
+
type: "entry" | "component";
|
|
1742
|
+
url: string;
|
|
1743
|
+
releaseId?: string | undefined;
|
|
1744
|
+
}>;
|
|
1745
|
+
newStage: z.ZodObject<{
|
|
1746
|
+
workflowId: z.ZodString;
|
|
1747
|
+
workflowName: z.ZodString;
|
|
1748
|
+
stageId: z.ZodString;
|
|
1749
|
+
stageName: z.ZodString;
|
|
1750
|
+
}, "strict", z.ZodTypeAny, {
|
|
1751
|
+
workflowId: string;
|
|
1752
|
+
workflowName: string;
|
|
1753
|
+
stageId: string;
|
|
1754
|
+
stageName: string;
|
|
1755
|
+
}, {
|
|
1756
|
+
workflowId: string;
|
|
1757
|
+
workflowName: string;
|
|
1758
|
+
stageId: string;
|
|
1759
|
+
stageName: string;
|
|
1760
|
+
}>;
|
|
1761
|
+
previousStage: z.ZodOptional<z.ZodObject<{
|
|
1762
|
+
workflowId: z.ZodString;
|
|
1763
|
+
workflowName: z.ZodString;
|
|
1764
|
+
stageId: z.ZodString;
|
|
1765
|
+
stageName: z.ZodString;
|
|
1766
|
+
}, "strict", z.ZodTypeAny, {
|
|
1767
|
+
workflowId: string;
|
|
1768
|
+
workflowName: string;
|
|
1769
|
+
stageId: string;
|
|
1770
|
+
stageName: string;
|
|
1771
|
+
}, {
|
|
1772
|
+
workflowId: string;
|
|
1773
|
+
workflowName: string;
|
|
1774
|
+
stageId: string;
|
|
1775
|
+
stageName: string;
|
|
1776
|
+
}>>;
|
|
1777
|
+
initiator: z.ZodObject<{
|
|
1778
|
+
id: z.ZodString;
|
|
1779
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1780
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1781
|
+
}, "strict", z.ZodTypeAny, {
|
|
1782
|
+
id: string;
|
|
1783
|
+
name?: string | undefined;
|
|
1784
|
+
email?: string | undefined;
|
|
1785
|
+
}, {
|
|
1786
|
+
id: string;
|
|
1787
|
+
name?: string | undefined;
|
|
1788
|
+
email?: string | undefined;
|
|
1789
|
+
}>;
|
|
1790
|
+
timestamp: z.ZodString;
|
|
1791
|
+
project: z.ZodObject<{
|
|
1792
|
+
id: z.ZodString;
|
|
1793
|
+
url: z.ZodString;
|
|
1794
|
+
}, "strip", z.ZodTypeAny, {
|
|
1795
|
+
id: string;
|
|
1796
|
+
url: string;
|
|
1797
|
+
}, {
|
|
1798
|
+
id: string;
|
|
1799
|
+
url: string;
|
|
1800
|
+
}>;
|
|
1801
|
+
}, "strict", z.ZodTypeAny, {
|
|
1802
|
+
project: {
|
|
1803
|
+
id: string;
|
|
1804
|
+
url: string;
|
|
1805
|
+
};
|
|
1806
|
+
timestamp: string;
|
|
1807
|
+
entity: {
|
|
1808
|
+
id: string;
|
|
1809
|
+
name: string;
|
|
1810
|
+
type: "entry" | "component";
|
|
1811
|
+
url: string;
|
|
1812
|
+
releaseId?: string | undefined;
|
|
1813
|
+
};
|
|
1814
|
+
newStage: {
|
|
1815
|
+
workflowId: string;
|
|
1816
|
+
workflowName: string;
|
|
1817
|
+
stageId: string;
|
|
1818
|
+
stageName: string;
|
|
1819
|
+
};
|
|
1820
|
+
initiator: {
|
|
1821
|
+
id: string;
|
|
1822
|
+
name?: string | undefined;
|
|
1823
|
+
email?: string | undefined;
|
|
1824
|
+
};
|
|
1825
|
+
previousStage?: {
|
|
1826
|
+
workflowId: string;
|
|
1827
|
+
workflowName: string;
|
|
1828
|
+
stageId: string;
|
|
1829
|
+
stageName: string;
|
|
1830
|
+
} | undefined;
|
|
1831
|
+
}, {
|
|
1832
|
+
project: {
|
|
1833
|
+
id: string;
|
|
1834
|
+
url: string;
|
|
1835
|
+
};
|
|
1836
|
+
timestamp: string;
|
|
1837
|
+
entity: {
|
|
1838
|
+
id: string;
|
|
1839
|
+
name: string;
|
|
1840
|
+
type: "entry" | "component";
|
|
1841
|
+
url: string;
|
|
1842
|
+
releaseId?: string | undefined;
|
|
1843
|
+
};
|
|
1844
|
+
newStage: {
|
|
1845
|
+
workflowId: string;
|
|
1846
|
+
workflowName: string;
|
|
1847
|
+
stageId: string;
|
|
1848
|
+
stageName: string;
|
|
1849
|
+
};
|
|
1850
|
+
initiator: {
|
|
1851
|
+
id: string;
|
|
1852
|
+
name?: string | undefined;
|
|
1853
|
+
email?: string | undefined;
|
|
1854
|
+
};
|
|
1855
|
+
previousStage?: {
|
|
1856
|
+
workflowId: string;
|
|
1857
|
+
workflowName: string;
|
|
1858
|
+
stageId: string;
|
|
1859
|
+
stageName: string;
|
|
1860
|
+
} | undefined;
|
|
1861
|
+
}>;
|
|
1862
|
+
|
|
1863
|
+
declare const WorkflowTransitionDefinition: Definition<z.ZodObject<{
|
|
1864
|
+
entity: z.ZodObject<{
|
|
1865
|
+
type: z.ZodEnum<["entry", "component"]>;
|
|
1866
|
+
name: z.ZodString;
|
|
1867
|
+
id: z.ZodString;
|
|
1868
|
+
releaseId: z.ZodOptional<z.ZodString>;
|
|
1869
|
+
url: z.ZodString;
|
|
1870
|
+
}, "strict", z.ZodTypeAny, {
|
|
1871
|
+
id: string;
|
|
1872
|
+
name: string;
|
|
1873
|
+
type: "entry" | "component";
|
|
1874
|
+
url: string;
|
|
1875
|
+
releaseId?: string | undefined;
|
|
1876
|
+
}, {
|
|
1877
|
+
id: string;
|
|
1878
|
+
name: string;
|
|
1879
|
+
type: "entry" | "component";
|
|
1880
|
+
url: string;
|
|
1881
|
+
releaseId?: string | undefined;
|
|
1882
|
+
}>;
|
|
1883
|
+
newStage: z.ZodObject<{
|
|
1884
|
+
workflowId: z.ZodString;
|
|
1885
|
+
workflowName: z.ZodString;
|
|
1886
|
+
stageId: z.ZodString;
|
|
1887
|
+
stageName: z.ZodString;
|
|
1888
|
+
}, "strict", z.ZodTypeAny, {
|
|
1889
|
+
workflowId: string;
|
|
1890
|
+
workflowName: string;
|
|
1891
|
+
stageId: string;
|
|
1892
|
+
stageName: string;
|
|
1893
|
+
}, {
|
|
1894
|
+
workflowId: string;
|
|
1895
|
+
workflowName: string;
|
|
1896
|
+
stageId: string;
|
|
1897
|
+
stageName: string;
|
|
1898
|
+
}>;
|
|
1899
|
+
previousStage: z.ZodOptional<z.ZodObject<{
|
|
1900
|
+
workflowId: z.ZodString;
|
|
1901
|
+
workflowName: z.ZodString;
|
|
1902
|
+
stageId: z.ZodString;
|
|
1903
|
+
stageName: z.ZodString;
|
|
1904
|
+
}, "strict", z.ZodTypeAny, {
|
|
1905
|
+
workflowId: string;
|
|
1906
|
+
workflowName: string;
|
|
1907
|
+
stageId: string;
|
|
1908
|
+
stageName: string;
|
|
1909
|
+
}, {
|
|
1910
|
+
workflowId: string;
|
|
1911
|
+
workflowName: string;
|
|
1912
|
+
stageId: string;
|
|
1913
|
+
stageName: string;
|
|
1914
|
+
}>>;
|
|
1915
|
+
initiator: z.ZodObject<{
|
|
1916
|
+
id: z.ZodString;
|
|
1917
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1918
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1919
|
+
}, "strict", z.ZodTypeAny, {
|
|
1920
|
+
id: string;
|
|
1921
|
+
name?: string | undefined;
|
|
1922
|
+
email?: string | undefined;
|
|
1923
|
+
}, {
|
|
1924
|
+
id: string;
|
|
1925
|
+
name?: string | undefined;
|
|
1926
|
+
email?: string | undefined;
|
|
1927
|
+
}>;
|
|
1928
|
+
timestamp: z.ZodString;
|
|
1929
|
+
project: z.ZodObject<{
|
|
1930
|
+
id: z.ZodString;
|
|
1931
|
+
url: z.ZodString;
|
|
1932
|
+
}, "strip", z.ZodTypeAny, {
|
|
1933
|
+
id: string;
|
|
1934
|
+
url: string;
|
|
1935
|
+
}, {
|
|
1936
|
+
id: string;
|
|
1937
|
+
url: string;
|
|
1938
|
+
}>;
|
|
1939
|
+
}, "strict", z.ZodTypeAny, {
|
|
1940
|
+
project: {
|
|
1941
|
+
id: string;
|
|
1942
|
+
url: string;
|
|
1943
|
+
};
|
|
1944
|
+
timestamp: string;
|
|
1945
|
+
entity: {
|
|
1946
|
+
id: string;
|
|
1947
|
+
name: string;
|
|
1948
|
+
type: "entry" | "component";
|
|
1949
|
+
url: string;
|
|
1950
|
+
releaseId?: string | undefined;
|
|
1951
|
+
};
|
|
1952
|
+
newStage: {
|
|
1953
|
+
workflowId: string;
|
|
1954
|
+
workflowName: string;
|
|
1955
|
+
stageId: string;
|
|
1956
|
+
stageName: string;
|
|
1957
|
+
};
|
|
1958
|
+
initiator: {
|
|
1959
|
+
id: string;
|
|
1960
|
+
name?: string | undefined;
|
|
1961
|
+
email?: string | undefined;
|
|
1962
|
+
};
|
|
1963
|
+
previousStage?: {
|
|
1964
|
+
workflowId: string;
|
|
1965
|
+
workflowName: string;
|
|
1966
|
+
stageId: string;
|
|
1967
|
+
stageName: string;
|
|
1968
|
+
} | undefined;
|
|
1969
|
+
}, {
|
|
1970
|
+
project: {
|
|
1971
|
+
id: string;
|
|
1972
|
+
url: string;
|
|
1973
|
+
};
|
|
1974
|
+
timestamp: string;
|
|
1975
|
+
entity: {
|
|
1976
|
+
id: string;
|
|
1977
|
+
name: string;
|
|
1978
|
+
type: "entry" | "component";
|
|
1979
|
+
url: string;
|
|
1980
|
+
releaseId?: string | undefined;
|
|
1981
|
+
};
|
|
1982
|
+
newStage: {
|
|
1983
|
+
workflowId: string;
|
|
1984
|
+
workflowName: string;
|
|
1985
|
+
stageId: string;
|
|
1986
|
+
stageName: string;
|
|
1987
|
+
};
|
|
1988
|
+
initiator: {
|
|
1989
|
+
id: string;
|
|
1990
|
+
name?: string | undefined;
|
|
1991
|
+
email?: string | undefined;
|
|
1992
|
+
};
|
|
1993
|
+
previousStage?: {
|
|
1994
|
+
workflowId: string;
|
|
1995
|
+
workflowName: string;
|
|
1996
|
+
stageId: string;
|
|
1997
|
+
stageName: string;
|
|
1998
|
+
} | undefined;
|
|
1999
|
+
}>>;
|
|
2000
|
+
type WorkflowTransitionPayload = z.infer<(typeof WorkflowTransitionDefinition)['schema']>;
|
|
2001
|
+
declare const WorkflowTransitionEventName: string;
|
|
2002
|
+
|
|
2003
|
+
export { ArchivedReleaseLaunchStartedDefinition, CompositionChangedDefinition, CompositionChangedEventName, type CompositionChangedPayload, CompositionDeletePayloadSchema, CompositionDeletedDefinition, CompositionDeletedEventName, type CompositionDeletedPayload, type CompositionPayload, CompositionPayloadSchema, CompositionPublishedDefinition, CompositionPublishedEventName, type CompositionPublishedPayload, CompositionReleaseChangedDefinition, CompositionReleaseChangedEventName, type CompositionReleaseChangedPayload, CompositionReleaseDeletedDefinition, CompositionReleaseDeletedEventName, type CompositionReleaseDeletedPayload, CompositionReleasePublishedDefinition, CompositionReleasePublishedEventName, type CompositionReleasePublishedPayload, CompositionTriggerPayloadSchema, type Definition, type DefinitionOptions, EntryChangedDefinition, EntryChangedEventName, type EntryChangedPayload, EntryDeletePayloadSchema, EntryDeletedDefinition, EntryDeletedEventName, type EntryDeletedPayload, type EntryPayload, EntryPayloadSchema, EntryPublishedDefinition, EntryPublishedEventName, type EntryPublishedPayload, EntryReleaseChangedDefinition, EntryReleaseChangedEventName, type EntryReleaseChangedPayload, EntryReleaseDeletedDefinition, EntryReleaseDeletedEventName, type EntryReleaseDeletedPayload, EntryReleasePublishedDefinition, EntryReleasePublishedEventName, type EntryReleasePublishedPayload, EntryTriggerPayloadSchema, ManifestPublishedDefinition, ManifestPublishedEventName, type ManifestPublishedPayload, ProjectMapDeleteDefinition, ProjectMapDeletedEventName, type ProjectMapDeletedPayload, ProjectMapNodeDeleteDefinition, ProjectMapNodeDeletedEventName, type ProjectMapNodeDeletedPayload, ProjectMapNodeInsertDefinition, ProjectMapNodeInsertedEventName, type ProjectMapNodeInsertedPayload, ProjectMapNodeUpdateDefinition, ProjectMapNodeUpdatedEventName, type ProjectMapNodeUpdatedPayload, ProjectMapUpdateDefinition, ProjectMapUpdatedEventName, type ProjectMapUpdatedPayload, RedirectDeleteDefinition, RedirectDeletedEventName, type RedirectDeletedPayload, RedirectInsertDefinition, RedirectInsertedEventName, type RedirectInsertedPayload, RedirectUpdateDefinition, RedirectUpdatedEventName, type RedirectUpdatedPayload, ReleaseChangedDefinition, ReleaseChangedEventName, type ReleaseChangedPayload, type ReleaseCompositionPayload, ReleaseCompositionPayloadSchema, ReleaseDeletedDefinition, ReleaseDeletedEventName, type ReleaseDeletedPayload, type ReleaseEntryPayload, ReleaseEntryPayloadSchema, ReleaseLaunchStartedDefinition, ReleaseLaunchStartedEventName, type ReleaseLaunchStartedPayload, ReleaseLaunchedDefinition, ReleaseLaunchedEventName, type ReleaseLaunchedPayload, type ReleasePayload, ReleasePayloadSchema, WorkflowEntitySchema, WorkflowIdentitySchema, WorkflowReferenceSchema, WorkflowTransitionDefinition, WorkflowTransitionEventName, type WorkflowTransitionPayload, WorkflowTransitionPayloadSchema, definition, isDefinition };
|