@trigger.dev/core 3.2.2 → 3.3.0
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/commonjs/v3/apiClient/index.d.ts +45 -27
- package/dist/commonjs/v3/apiClient/index.js +28 -11
- package/dist/commonjs/v3/apiClient/index.js.map +1 -1
- package/dist/commonjs/v3/apiClient/runStream.d.ts +1 -0
- package/dist/commonjs/v3/apiClient/runStream.js.map +1 -1
- package/dist/commonjs/v3/apiClient/types.d.ts +1 -0
- package/dist/commonjs/v3/schemas/api.d.ts +432 -777
- package/dist/commonjs/v3/schemas/api.js +51 -2
- package/dist/commonjs/v3/schemas/api.js.map +1 -1
- package/dist/commonjs/v3/schemas/build.d.ts +0 -506
- package/dist/commonjs/v3/schemas/common.d.ts +22 -0
- package/dist/commonjs/v3/schemas/common.js +4 -0
- package/dist/commonjs/v3/schemas/common.js.map +1 -1
- package/dist/commonjs/v3/schemas/messages.d.ts +147 -1181
- package/dist/commonjs/v3/schemas/resources.d.ts +0 -380
- package/dist/commonjs/v3/schemas/schemas.d.ts +0 -468
- package/dist/commonjs/v3/schemas/schemas.js +0 -2
- package/dist/commonjs/v3/schemas/schemas.js.map +1 -1
- package/dist/commonjs/v3/types/tasks.d.ts +93 -16
- package/dist/commonjs/v3/types/tasks.js.map +1 -1
- package/dist/commonjs/version.js +1 -1
- package/dist/esm/v3/apiClient/index.d.ts +45 -27
- package/dist/esm/v3/apiClient/index.js +29 -12
- package/dist/esm/v3/apiClient/index.js.map +1 -1
- package/dist/esm/v3/apiClient/runStream.d.ts +1 -0
- package/dist/esm/v3/apiClient/runStream.js.map +1 -1
- package/dist/esm/v3/apiClient/types.d.ts +1 -0
- package/dist/esm/v3/schemas/api.d.ts +432 -777
- package/dist/esm/v3/schemas/api.js +49 -0
- package/dist/esm/v3/schemas/api.js.map +1 -1
- package/dist/esm/v3/schemas/build.d.ts +0 -506
- package/dist/esm/v3/schemas/common.d.ts +22 -0
- package/dist/esm/v3/schemas/common.js +4 -0
- package/dist/esm/v3/schemas/common.js.map +1 -1
- package/dist/esm/v3/schemas/messages.d.ts +147 -1181
- package/dist/esm/v3/schemas/resources.d.ts +0 -380
- package/dist/esm/v3/schemas/schemas.d.ts +0 -468
- package/dist/esm/v3/schemas/schemas.js +0 -2
- package/dist/esm/v3/schemas/schemas.js.map +1 -1
- package/dist/esm/v3/types/tasks.d.ts +93 -16
- package/dist/esm/v3/types/tasks.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/package.json +1 -1
|
@@ -1461,140 +1461,12 @@ export declare const QueueOptions: z.ZodObject<{
|
|
|
1461
1461
|
*
|
|
1462
1462
|
* If this property is omitted, the task can potentially use up the full concurrency of an environment. */
|
|
1463
1463
|
concurrencyLimit: z.ZodOptional<z.ZodNumber>;
|
|
1464
|
-
/** @deprecated This feature is coming soon */
|
|
1465
|
-
rateLimit: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1466
|
-
type: z.ZodLiteral<"fixed-window">;
|
|
1467
|
-
limit: z.ZodNumber;
|
|
1468
|
-
window: z.ZodUnion<[z.ZodObject<{
|
|
1469
|
-
seconds: z.ZodNumber;
|
|
1470
|
-
}, "strip", z.ZodTypeAny, {
|
|
1471
|
-
seconds: number;
|
|
1472
|
-
}, {
|
|
1473
|
-
seconds: number;
|
|
1474
|
-
}>, z.ZodObject<{
|
|
1475
|
-
minutes: z.ZodNumber;
|
|
1476
|
-
}, "strip", z.ZodTypeAny, {
|
|
1477
|
-
minutes: number;
|
|
1478
|
-
}, {
|
|
1479
|
-
minutes: number;
|
|
1480
|
-
}>, z.ZodObject<{
|
|
1481
|
-
hours: z.ZodNumber;
|
|
1482
|
-
}, "strip", z.ZodTypeAny, {
|
|
1483
|
-
hours: number;
|
|
1484
|
-
}, {
|
|
1485
|
-
hours: number;
|
|
1486
|
-
}>]>;
|
|
1487
|
-
}, "strip", z.ZodTypeAny, {
|
|
1488
|
-
type: "fixed-window";
|
|
1489
|
-
limit: number;
|
|
1490
|
-
window: {
|
|
1491
|
-
seconds: number;
|
|
1492
|
-
} | {
|
|
1493
|
-
minutes: number;
|
|
1494
|
-
} | {
|
|
1495
|
-
hours: number;
|
|
1496
|
-
};
|
|
1497
|
-
}, {
|
|
1498
|
-
type: "fixed-window";
|
|
1499
|
-
limit: number;
|
|
1500
|
-
window: {
|
|
1501
|
-
seconds: number;
|
|
1502
|
-
} | {
|
|
1503
|
-
minutes: number;
|
|
1504
|
-
} | {
|
|
1505
|
-
hours: number;
|
|
1506
|
-
};
|
|
1507
|
-
}>, z.ZodObject<{
|
|
1508
|
-
type: z.ZodLiteral<"sliding-window">;
|
|
1509
|
-
limit: z.ZodNumber;
|
|
1510
|
-
window: z.ZodUnion<[z.ZodObject<{
|
|
1511
|
-
seconds: z.ZodNumber;
|
|
1512
|
-
}, "strip", z.ZodTypeAny, {
|
|
1513
|
-
seconds: number;
|
|
1514
|
-
}, {
|
|
1515
|
-
seconds: number;
|
|
1516
|
-
}>, z.ZodObject<{
|
|
1517
|
-
minutes: z.ZodNumber;
|
|
1518
|
-
}, "strip", z.ZodTypeAny, {
|
|
1519
|
-
minutes: number;
|
|
1520
|
-
}, {
|
|
1521
|
-
minutes: number;
|
|
1522
|
-
}>, z.ZodObject<{
|
|
1523
|
-
hours: z.ZodNumber;
|
|
1524
|
-
}, "strip", z.ZodTypeAny, {
|
|
1525
|
-
hours: number;
|
|
1526
|
-
}, {
|
|
1527
|
-
hours: number;
|
|
1528
|
-
}>]>;
|
|
1529
|
-
}, "strip", z.ZodTypeAny, {
|
|
1530
|
-
type: "sliding-window";
|
|
1531
|
-
limit: number;
|
|
1532
|
-
window: {
|
|
1533
|
-
seconds: number;
|
|
1534
|
-
} | {
|
|
1535
|
-
minutes: number;
|
|
1536
|
-
} | {
|
|
1537
|
-
hours: number;
|
|
1538
|
-
};
|
|
1539
|
-
}, {
|
|
1540
|
-
type: "sliding-window";
|
|
1541
|
-
limit: number;
|
|
1542
|
-
window: {
|
|
1543
|
-
seconds: number;
|
|
1544
|
-
} | {
|
|
1545
|
-
minutes: number;
|
|
1546
|
-
} | {
|
|
1547
|
-
hours: number;
|
|
1548
|
-
};
|
|
1549
|
-
}>]>>;
|
|
1550
1464
|
}, "strip", z.ZodTypeAny, {
|
|
1551
1465
|
name?: string | undefined;
|
|
1552
1466
|
concurrencyLimit?: number | undefined;
|
|
1553
|
-
rateLimit?: {
|
|
1554
|
-
type: "fixed-window";
|
|
1555
|
-
limit: number;
|
|
1556
|
-
window: {
|
|
1557
|
-
seconds: number;
|
|
1558
|
-
} | {
|
|
1559
|
-
minutes: number;
|
|
1560
|
-
} | {
|
|
1561
|
-
hours: number;
|
|
1562
|
-
};
|
|
1563
|
-
} | {
|
|
1564
|
-
type: "sliding-window";
|
|
1565
|
-
limit: number;
|
|
1566
|
-
window: {
|
|
1567
|
-
seconds: number;
|
|
1568
|
-
} | {
|
|
1569
|
-
minutes: number;
|
|
1570
|
-
} | {
|
|
1571
|
-
hours: number;
|
|
1572
|
-
};
|
|
1573
|
-
} | undefined;
|
|
1574
1467
|
}, {
|
|
1575
1468
|
name?: string | undefined;
|
|
1576
1469
|
concurrencyLimit?: number | undefined;
|
|
1577
|
-
rateLimit?: {
|
|
1578
|
-
type: "fixed-window";
|
|
1579
|
-
limit: number;
|
|
1580
|
-
window: {
|
|
1581
|
-
seconds: number;
|
|
1582
|
-
} | {
|
|
1583
|
-
minutes: number;
|
|
1584
|
-
} | {
|
|
1585
|
-
hours: number;
|
|
1586
|
-
};
|
|
1587
|
-
} | {
|
|
1588
|
-
type: "sliding-window";
|
|
1589
|
-
limit: number;
|
|
1590
|
-
window: {
|
|
1591
|
-
seconds: number;
|
|
1592
|
-
} | {
|
|
1593
|
-
minutes: number;
|
|
1594
|
-
} | {
|
|
1595
|
-
hours: number;
|
|
1596
|
-
};
|
|
1597
|
-
} | undefined;
|
|
1598
1470
|
}>;
|
|
1599
1471
|
export type QueueOptions = z.infer<typeof QueueOptions>;
|
|
1600
1472
|
export declare const ScheduleMetadata: z.ZodObject<{
|
|
@@ -1647,140 +1519,12 @@ export declare const TaskMetadata: z.ZodObject<{
|
|
|
1647
1519
|
*
|
|
1648
1520
|
* If this property is omitted, the task can potentially use up the full concurrency of an environment. */
|
|
1649
1521
|
concurrencyLimit: z.ZodOptional<z.ZodNumber>;
|
|
1650
|
-
/** @deprecated This feature is coming soon */
|
|
1651
|
-
rateLimit: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1652
|
-
type: z.ZodLiteral<"fixed-window">;
|
|
1653
|
-
limit: z.ZodNumber;
|
|
1654
|
-
window: z.ZodUnion<[z.ZodObject<{
|
|
1655
|
-
seconds: z.ZodNumber;
|
|
1656
|
-
}, "strip", z.ZodTypeAny, {
|
|
1657
|
-
seconds: number;
|
|
1658
|
-
}, {
|
|
1659
|
-
seconds: number;
|
|
1660
|
-
}>, z.ZodObject<{
|
|
1661
|
-
minutes: z.ZodNumber;
|
|
1662
|
-
}, "strip", z.ZodTypeAny, {
|
|
1663
|
-
minutes: number;
|
|
1664
|
-
}, {
|
|
1665
|
-
minutes: number;
|
|
1666
|
-
}>, z.ZodObject<{
|
|
1667
|
-
hours: z.ZodNumber;
|
|
1668
|
-
}, "strip", z.ZodTypeAny, {
|
|
1669
|
-
hours: number;
|
|
1670
|
-
}, {
|
|
1671
|
-
hours: number;
|
|
1672
|
-
}>]>;
|
|
1673
|
-
}, "strip", z.ZodTypeAny, {
|
|
1674
|
-
type: "fixed-window";
|
|
1675
|
-
limit: number;
|
|
1676
|
-
window: {
|
|
1677
|
-
seconds: number;
|
|
1678
|
-
} | {
|
|
1679
|
-
minutes: number;
|
|
1680
|
-
} | {
|
|
1681
|
-
hours: number;
|
|
1682
|
-
};
|
|
1683
|
-
}, {
|
|
1684
|
-
type: "fixed-window";
|
|
1685
|
-
limit: number;
|
|
1686
|
-
window: {
|
|
1687
|
-
seconds: number;
|
|
1688
|
-
} | {
|
|
1689
|
-
minutes: number;
|
|
1690
|
-
} | {
|
|
1691
|
-
hours: number;
|
|
1692
|
-
};
|
|
1693
|
-
}>, z.ZodObject<{
|
|
1694
|
-
type: z.ZodLiteral<"sliding-window">;
|
|
1695
|
-
limit: z.ZodNumber;
|
|
1696
|
-
window: z.ZodUnion<[z.ZodObject<{
|
|
1697
|
-
seconds: z.ZodNumber;
|
|
1698
|
-
}, "strip", z.ZodTypeAny, {
|
|
1699
|
-
seconds: number;
|
|
1700
|
-
}, {
|
|
1701
|
-
seconds: number;
|
|
1702
|
-
}>, z.ZodObject<{
|
|
1703
|
-
minutes: z.ZodNumber;
|
|
1704
|
-
}, "strip", z.ZodTypeAny, {
|
|
1705
|
-
minutes: number;
|
|
1706
|
-
}, {
|
|
1707
|
-
minutes: number;
|
|
1708
|
-
}>, z.ZodObject<{
|
|
1709
|
-
hours: z.ZodNumber;
|
|
1710
|
-
}, "strip", z.ZodTypeAny, {
|
|
1711
|
-
hours: number;
|
|
1712
|
-
}, {
|
|
1713
|
-
hours: number;
|
|
1714
|
-
}>]>;
|
|
1715
|
-
}, "strip", z.ZodTypeAny, {
|
|
1716
|
-
type: "sliding-window";
|
|
1717
|
-
limit: number;
|
|
1718
|
-
window: {
|
|
1719
|
-
seconds: number;
|
|
1720
|
-
} | {
|
|
1721
|
-
minutes: number;
|
|
1722
|
-
} | {
|
|
1723
|
-
hours: number;
|
|
1724
|
-
};
|
|
1725
|
-
}, {
|
|
1726
|
-
type: "sliding-window";
|
|
1727
|
-
limit: number;
|
|
1728
|
-
window: {
|
|
1729
|
-
seconds: number;
|
|
1730
|
-
} | {
|
|
1731
|
-
minutes: number;
|
|
1732
|
-
} | {
|
|
1733
|
-
hours: number;
|
|
1734
|
-
};
|
|
1735
|
-
}>]>>;
|
|
1736
1522
|
}, "strip", z.ZodTypeAny, {
|
|
1737
1523
|
name?: string | undefined;
|
|
1738
1524
|
concurrencyLimit?: number | undefined;
|
|
1739
|
-
rateLimit?: {
|
|
1740
|
-
type: "fixed-window";
|
|
1741
|
-
limit: number;
|
|
1742
|
-
window: {
|
|
1743
|
-
seconds: number;
|
|
1744
|
-
} | {
|
|
1745
|
-
minutes: number;
|
|
1746
|
-
} | {
|
|
1747
|
-
hours: number;
|
|
1748
|
-
};
|
|
1749
|
-
} | {
|
|
1750
|
-
type: "sliding-window";
|
|
1751
|
-
limit: number;
|
|
1752
|
-
window: {
|
|
1753
|
-
seconds: number;
|
|
1754
|
-
} | {
|
|
1755
|
-
minutes: number;
|
|
1756
|
-
} | {
|
|
1757
|
-
hours: number;
|
|
1758
|
-
};
|
|
1759
|
-
} | undefined;
|
|
1760
1525
|
}, {
|
|
1761
1526
|
name?: string | undefined;
|
|
1762
1527
|
concurrencyLimit?: number | undefined;
|
|
1763
|
-
rateLimit?: {
|
|
1764
|
-
type: "fixed-window";
|
|
1765
|
-
limit: number;
|
|
1766
|
-
window: {
|
|
1767
|
-
seconds: number;
|
|
1768
|
-
} | {
|
|
1769
|
-
minutes: number;
|
|
1770
|
-
} | {
|
|
1771
|
-
hours: number;
|
|
1772
|
-
};
|
|
1773
|
-
} | {
|
|
1774
|
-
type: "sliding-window";
|
|
1775
|
-
limit: number;
|
|
1776
|
-
window: {
|
|
1777
|
-
seconds: number;
|
|
1778
|
-
} | {
|
|
1779
|
-
minutes: number;
|
|
1780
|
-
} | {
|
|
1781
|
-
hours: number;
|
|
1782
|
-
};
|
|
1783
|
-
} | undefined;
|
|
1784
1528
|
}>>;
|
|
1785
1529
|
retry: z.ZodOptional<z.ZodObject<{
|
|
1786
1530
|
/** The number of attempts before giving up */
|
|
@@ -1855,27 +1599,6 @@ export declare const TaskMetadata: z.ZodObject<{
|
|
|
1855
1599
|
queue?: {
|
|
1856
1600
|
name?: string | undefined;
|
|
1857
1601
|
concurrencyLimit?: number | undefined;
|
|
1858
|
-
rateLimit?: {
|
|
1859
|
-
type: "fixed-window";
|
|
1860
|
-
limit: number;
|
|
1861
|
-
window: {
|
|
1862
|
-
seconds: number;
|
|
1863
|
-
} | {
|
|
1864
|
-
minutes: number;
|
|
1865
|
-
} | {
|
|
1866
|
-
hours: number;
|
|
1867
|
-
};
|
|
1868
|
-
} | {
|
|
1869
|
-
type: "sliding-window";
|
|
1870
|
-
limit: number;
|
|
1871
|
-
window: {
|
|
1872
|
-
seconds: number;
|
|
1873
|
-
} | {
|
|
1874
|
-
minutes: number;
|
|
1875
|
-
} | {
|
|
1876
|
-
hours: number;
|
|
1877
|
-
};
|
|
1878
|
-
} | undefined;
|
|
1879
1602
|
} | undefined;
|
|
1880
1603
|
machine?: {
|
|
1881
1604
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -1901,27 +1624,6 @@ export declare const TaskMetadata: z.ZodObject<{
|
|
|
1901
1624
|
queue?: {
|
|
1902
1625
|
name?: string | undefined;
|
|
1903
1626
|
concurrencyLimit?: number | undefined;
|
|
1904
|
-
rateLimit?: {
|
|
1905
|
-
type: "fixed-window";
|
|
1906
|
-
limit: number;
|
|
1907
|
-
window: {
|
|
1908
|
-
seconds: number;
|
|
1909
|
-
} | {
|
|
1910
|
-
minutes: number;
|
|
1911
|
-
} | {
|
|
1912
|
-
hours: number;
|
|
1913
|
-
};
|
|
1914
|
-
} | {
|
|
1915
|
-
type: "sliding-window";
|
|
1916
|
-
limit: number;
|
|
1917
|
-
window: {
|
|
1918
|
-
seconds: number;
|
|
1919
|
-
} | {
|
|
1920
|
-
minutes: number;
|
|
1921
|
-
} | {
|
|
1922
|
-
hours: number;
|
|
1923
|
-
};
|
|
1924
|
-
} | undefined;
|
|
1925
1627
|
} | undefined;
|
|
1926
1628
|
machine?: {
|
|
1927
1629
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -1999,140 +1701,12 @@ export declare const TaskManifest: z.ZodObject<{
|
|
|
1999
1701
|
*
|
|
2000
1702
|
* If this property is omitted, the task can potentially use up the full concurrency of an environment. */
|
|
2001
1703
|
concurrencyLimit: z.ZodOptional<z.ZodNumber>;
|
|
2002
|
-
/** @deprecated This feature is coming soon */
|
|
2003
|
-
rateLimit: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2004
|
-
type: z.ZodLiteral<"fixed-window">;
|
|
2005
|
-
limit: z.ZodNumber;
|
|
2006
|
-
window: z.ZodUnion<[z.ZodObject<{
|
|
2007
|
-
seconds: z.ZodNumber;
|
|
2008
|
-
}, "strip", z.ZodTypeAny, {
|
|
2009
|
-
seconds: number;
|
|
2010
|
-
}, {
|
|
2011
|
-
seconds: number;
|
|
2012
|
-
}>, z.ZodObject<{
|
|
2013
|
-
minutes: z.ZodNumber;
|
|
2014
|
-
}, "strip", z.ZodTypeAny, {
|
|
2015
|
-
minutes: number;
|
|
2016
|
-
}, {
|
|
2017
|
-
minutes: number;
|
|
2018
|
-
}>, z.ZodObject<{
|
|
2019
|
-
hours: z.ZodNumber;
|
|
2020
|
-
}, "strip", z.ZodTypeAny, {
|
|
2021
|
-
hours: number;
|
|
2022
|
-
}, {
|
|
2023
|
-
hours: number;
|
|
2024
|
-
}>]>;
|
|
2025
|
-
}, "strip", z.ZodTypeAny, {
|
|
2026
|
-
type: "fixed-window";
|
|
2027
|
-
limit: number;
|
|
2028
|
-
window: {
|
|
2029
|
-
seconds: number;
|
|
2030
|
-
} | {
|
|
2031
|
-
minutes: number;
|
|
2032
|
-
} | {
|
|
2033
|
-
hours: number;
|
|
2034
|
-
};
|
|
2035
|
-
}, {
|
|
2036
|
-
type: "fixed-window";
|
|
2037
|
-
limit: number;
|
|
2038
|
-
window: {
|
|
2039
|
-
seconds: number;
|
|
2040
|
-
} | {
|
|
2041
|
-
minutes: number;
|
|
2042
|
-
} | {
|
|
2043
|
-
hours: number;
|
|
2044
|
-
};
|
|
2045
|
-
}>, z.ZodObject<{
|
|
2046
|
-
type: z.ZodLiteral<"sliding-window">;
|
|
2047
|
-
limit: z.ZodNumber;
|
|
2048
|
-
window: z.ZodUnion<[z.ZodObject<{
|
|
2049
|
-
seconds: z.ZodNumber;
|
|
2050
|
-
}, "strip", z.ZodTypeAny, {
|
|
2051
|
-
seconds: number;
|
|
2052
|
-
}, {
|
|
2053
|
-
seconds: number;
|
|
2054
|
-
}>, z.ZodObject<{
|
|
2055
|
-
minutes: z.ZodNumber;
|
|
2056
|
-
}, "strip", z.ZodTypeAny, {
|
|
2057
|
-
minutes: number;
|
|
2058
|
-
}, {
|
|
2059
|
-
minutes: number;
|
|
2060
|
-
}>, z.ZodObject<{
|
|
2061
|
-
hours: z.ZodNumber;
|
|
2062
|
-
}, "strip", z.ZodTypeAny, {
|
|
2063
|
-
hours: number;
|
|
2064
|
-
}, {
|
|
2065
|
-
hours: number;
|
|
2066
|
-
}>]>;
|
|
2067
|
-
}, "strip", z.ZodTypeAny, {
|
|
2068
|
-
type: "sliding-window";
|
|
2069
|
-
limit: number;
|
|
2070
|
-
window: {
|
|
2071
|
-
seconds: number;
|
|
2072
|
-
} | {
|
|
2073
|
-
minutes: number;
|
|
2074
|
-
} | {
|
|
2075
|
-
hours: number;
|
|
2076
|
-
};
|
|
2077
|
-
}, {
|
|
2078
|
-
type: "sliding-window";
|
|
2079
|
-
limit: number;
|
|
2080
|
-
window: {
|
|
2081
|
-
seconds: number;
|
|
2082
|
-
} | {
|
|
2083
|
-
minutes: number;
|
|
2084
|
-
} | {
|
|
2085
|
-
hours: number;
|
|
2086
|
-
};
|
|
2087
|
-
}>]>>;
|
|
2088
1704
|
}, "strip", z.ZodTypeAny, {
|
|
2089
1705
|
name?: string | undefined;
|
|
2090
1706
|
concurrencyLimit?: number | undefined;
|
|
2091
|
-
rateLimit?: {
|
|
2092
|
-
type: "fixed-window";
|
|
2093
|
-
limit: number;
|
|
2094
|
-
window: {
|
|
2095
|
-
seconds: number;
|
|
2096
|
-
} | {
|
|
2097
|
-
minutes: number;
|
|
2098
|
-
} | {
|
|
2099
|
-
hours: number;
|
|
2100
|
-
};
|
|
2101
|
-
} | {
|
|
2102
|
-
type: "sliding-window";
|
|
2103
|
-
limit: number;
|
|
2104
|
-
window: {
|
|
2105
|
-
seconds: number;
|
|
2106
|
-
} | {
|
|
2107
|
-
minutes: number;
|
|
2108
|
-
} | {
|
|
2109
|
-
hours: number;
|
|
2110
|
-
};
|
|
2111
|
-
} | undefined;
|
|
2112
1707
|
}, {
|
|
2113
1708
|
name?: string | undefined;
|
|
2114
1709
|
concurrencyLimit?: number | undefined;
|
|
2115
|
-
rateLimit?: {
|
|
2116
|
-
type: "fixed-window";
|
|
2117
|
-
limit: number;
|
|
2118
|
-
window: {
|
|
2119
|
-
seconds: number;
|
|
2120
|
-
} | {
|
|
2121
|
-
minutes: number;
|
|
2122
|
-
} | {
|
|
2123
|
-
hours: number;
|
|
2124
|
-
};
|
|
2125
|
-
} | {
|
|
2126
|
-
type: "sliding-window";
|
|
2127
|
-
limit: number;
|
|
2128
|
-
window: {
|
|
2129
|
-
seconds: number;
|
|
2130
|
-
} | {
|
|
2131
|
-
minutes: number;
|
|
2132
|
-
} | {
|
|
2133
|
-
hours: number;
|
|
2134
|
-
};
|
|
2135
|
-
} | undefined;
|
|
2136
1710
|
}>>;
|
|
2137
1711
|
retry: z.ZodOptional<z.ZodObject<{
|
|
2138
1712
|
/** The number of attempts before giving up */
|
|
@@ -2210,27 +1784,6 @@ export declare const TaskManifest: z.ZodObject<{
|
|
|
2210
1784
|
queue?: {
|
|
2211
1785
|
name?: string | undefined;
|
|
2212
1786
|
concurrencyLimit?: number | undefined;
|
|
2213
|
-
rateLimit?: {
|
|
2214
|
-
type: "fixed-window";
|
|
2215
|
-
limit: number;
|
|
2216
|
-
window: {
|
|
2217
|
-
seconds: number;
|
|
2218
|
-
} | {
|
|
2219
|
-
minutes: number;
|
|
2220
|
-
} | {
|
|
2221
|
-
hours: number;
|
|
2222
|
-
};
|
|
2223
|
-
} | {
|
|
2224
|
-
type: "sliding-window";
|
|
2225
|
-
limit: number;
|
|
2226
|
-
window: {
|
|
2227
|
-
seconds: number;
|
|
2228
|
-
} | {
|
|
2229
|
-
minutes: number;
|
|
2230
|
-
} | {
|
|
2231
|
-
hours: number;
|
|
2232
|
-
};
|
|
2233
|
-
} | undefined;
|
|
2234
1787
|
} | undefined;
|
|
2235
1788
|
machine?: {
|
|
2236
1789
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -2259,27 +1812,6 @@ export declare const TaskManifest: z.ZodObject<{
|
|
|
2259
1812
|
queue?: {
|
|
2260
1813
|
name?: string | undefined;
|
|
2261
1814
|
concurrencyLimit?: number | undefined;
|
|
2262
|
-
rateLimit?: {
|
|
2263
|
-
type: "fixed-window";
|
|
2264
|
-
limit: number;
|
|
2265
|
-
window: {
|
|
2266
|
-
seconds: number;
|
|
2267
|
-
} | {
|
|
2268
|
-
minutes: number;
|
|
2269
|
-
} | {
|
|
2270
|
-
hours: number;
|
|
2271
|
-
};
|
|
2272
|
-
} | {
|
|
2273
|
-
type: "sliding-window";
|
|
2274
|
-
limit: number;
|
|
2275
|
-
window: {
|
|
2276
|
-
seconds: number;
|
|
2277
|
-
} | {
|
|
2278
|
-
minutes: number;
|
|
2279
|
-
} | {
|
|
2280
|
-
hours: number;
|
|
2281
|
-
};
|
|
2282
|
-
} | undefined;
|
|
2283
1815
|
} | undefined;
|
|
2284
1816
|
machine?: {
|
|
2285
1817
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -115,8 +115,6 @@ export const QueueOptions = z.object({
|
|
|
115
115
|
*
|
|
116
116
|
* If this property is omitted, the task can potentially use up the full concurrency of an environment. */
|
|
117
117
|
concurrencyLimit: z.number().int().min(0).max(1000).optional(),
|
|
118
|
-
/** @deprecated This feature is coming soon */
|
|
119
|
-
rateLimit: RateLimitOptions.optional(),
|
|
120
118
|
});
|
|
121
119
|
export const ScheduleMetadata = z.object({
|
|
122
120
|
cron: z.string(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/v3/schemas/schemas.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/v3/schemas/schemas.ts"],"names":[],"mappings":"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"}
|