@rippling/rippling-sdk 0.2.0-alpha.31 → 0.2.0-alpha.33

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 (51) hide show
  1. package/client.d.mts +6 -0
  2. package/client.d.mts.map +1 -1
  3. package/client.d.ts +6 -0
  4. package/client.d.ts.map +1 -1
  5. package/client.js +6 -0
  6. package/client.js.map +1 -1
  7. package/client.mjs +6 -0
  8. package/client.mjs.map +1 -1
  9. package/package.json +1 -1
  10. package/resources/earnings-inputs.d.mts +76 -0
  11. package/resources/earnings-inputs.d.mts.map +1 -0
  12. package/resources/earnings-inputs.d.ts +76 -0
  13. package/resources/earnings-inputs.d.ts.map +1 -0
  14. package/resources/earnings-inputs.js +32 -0
  15. package/resources/earnings-inputs.js.map +1 -0
  16. package/resources/earnings-inputs.mjs +28 -0
  17. package/resources/earnings-inputs.mjs.map +1 -0
  18. package/resources/index.d.mts +1 -0
  19. package/resources/index.d.mts.map +1 -1
  20. package/resources/index.d.ts +1 -0
  21. package/resources/index.d.ts.map +1 -1
  22. package/resources/index.js +4 -2
  23. package/resources/index.js.map +1 -1
  24. package/resources/index.mjs +1 -0
  25. package/resources/index.mjs.map +1 -1
  26. package/resources/job-codes.d.mts +20 -0
  27. package/resources/job-codes.d.mts.map +1 -1
  28. package/resources/job-codes.d.ts +20 -0
  29. package/resources/job-codes.d.ts.map +1 -1
  30. package/resources/object-categories.d.mts +1 -1
  31. package/resources/object-categories.d.ts +1 -1
  32. package/resources/object-categories.js +1 -1
  33. package/resources/object-categories.mjs +1 -1
  34. package/resources/report-runs.d.mts +11 -11
  35. package/resources/report-runs.d.ts +11 -11
  36. package/resources/workflow-action-executions.d.mts +432 -2
  37. package/resources/workflow-action-executions.d.mts.map +1 -1
  38. package/resources/workflow-action-executions.d.ts +432 -2
  39. package/resources/workflow-action-executions.d.ts.map +1 -1
  40. package/src/client.ts +16 -0
  41. package/src/resources/earnings-inputs.ts +106 -0
  42. package/src/resources/index.ts +5 -0
  43. package/src/resources/job-codes.ts +24 -0
  44. package/src/resources/object-categories.ts +1 -1
  45. package/src/resources/report-runs.ts +32 -32
  46. package/src/resources/workflow-action-executions.ts +631 -1
  47. package/src/version.ts +1 -1
  48. package/version.d.mts +1 -1
  49. package/version.d.ts +1 -1
  50. package/version.js +1 -1
  51. package/version.mjs +1 -1
@@ -43,7 +43,13 @@ export interface WorkflowActionExecutionCreateParams {
43
43
  | 'send_teams'
44
44
  | 'assign_review'
45
45
  | 'send_report_sftp'
46
- | 'run_query';
46
+ | 'run_query'
47
+ | 'enroll_into_course'
48
+ | 'enroll_into_learning_path'
49
+ | 'report_email'
50
+ | 'send_document'
51
+ | 'accrue_leave'
52
+ | 'make_payment';
47
53
 
48
54
  /**
49
55
  * An action that sends an email.
@@ -84,6 +90,20 @@ export interface WorkflowActionExecutionCreateParams {
84
90
  | WorkflowActionExecutionCreateParams.SendReportSftpPasswordCsvPayload
85
91
  | WorkflowActionExecutionCreateParams.SendReportSftpSSHKeyExcelPayload
86
92
  | WorkflowActionExecutionCreateParams.SendReportSftpSSHKeyCsvPayload
93
+ | WorkflowActionExecutionCreateParams.EnrollIntoCourse1WeekPayload
94
+ | WorkflowActionExecutionCreateParams.EnrollIntoCourse2WeeksPayload
95
+ | WorkflowActionExecutionCreateParams.EnrollIntoCourse1MonthPayload
96
+ | WorkflowActionExecutionCreateParams.EnrollIntoCourse3MonthsPayload
97
+ | WorkflowActionExecutionCreateParams.EnrollIntoCourse6MonthsPayload
98
+ | WorkflowActionExecutionCreateParams.EnrollIntoCourse12MonthsPayload
99
+ | WorkflowActionExecutionCreateParams.EnrollIntoCourseCustomPayload
100
+ | WorkflowActionExecutionCreateParams.EnrollIntoLearningPathPayload
101
+ | WorkflowActionExecutionCreateParams.SendReportEmailExcelPayload
102
+ | WorkflowActionExecutionCreateParams.SendReportEmailCsvPayload
103
+ | WorkflowActionExecutionCreateParams.SendDocumentPayload
104
+ | WorkflowActionExecutionCreateParams.AccrueLeaveLeavePolicyPayload
105
+ | WorkflowActionExecutionCreateParams.AccrueLeaveCompanyLeaveTypePayload
106
+ | WorkflowActionExecutionCreateParams.MakePaymentPayload
87
107
  | WorkflowActionExecutionCreateParams.RunQueryPayload;
88
108
 
89
109
  workflow_definition_id?: string;
@@ -1415,6 +1435,616 @@ export namespace WorkflowActionExecutionCreateParams {
1415
1435
  time_zones?: 'UTC' | 'PRESERVE_TZ' | 'VIEWER_LOCALE' | null;
1416
1436
  }
1417
1437
 
1438
+ /**
1439
+ * Automatically enroll people into a course
1440
+ */
1441
+ export interface EnrollIntoCourse1WeekPayload {
1442
+ /**
1443
+ * Select a course to enroll people in
1444
+ */
1445
+ course_id: string;
1446
+
1447
+ due_date: '1_week';
1448
+
1449
+ /**
1450
+ * Select people to enroll in this course
1451
+ */
1452
+ role_ids: Array<string>;
1453
+
1454
+ /**
1455
+ * Skip enrollment if the employee already has a valid certificate for this course
1456
+ */
1457
+ skip_if_certified?: boolean | null;
1458
+ }
1459
+
1460
+ /**
1461
+ * Automatically enroll people into a course
1462
+ */
1463
+ export interface EnrollIntoCourse2WeeksPayload {
1464
+ /**
1465
+ * Select a course to enroll people in
1466
+ */
1467
+ course_id: string;
1468
+
1469
+ due_date: '2_weeks';
1470
+
1471
+ /**
1472
+ * Select people to enroll in this course
1473
+ */
1474
+ role_ids: Array<string>;
1475
+
1476
+ /**
1477
+ * Skip enrollment if the employee already has a valid certificate for this course
1478
+ */
1479
+ skip_if_certified?: boolean | null;
1480
+ }
1481
+
1482
+ /**
1483
+ * Automatically enroll people into a course
1484
+ */
1485
+ export interface EnrollIntoCourse1MonthPayload {
1486
+ /**
1487
+ * Select a course to enroll people in
1488
+ */
1489
+ course_id: string;
1490
+
1491
+ due_date: '1_month';
1492
+
1493
+ /**
1494
+ * Select people to enroll in this course
1495
+ */
1496
+ role_ids: Array<string>;
1497
+
1498
+ /**
1499
+ * Skip enrollment if the employee already has a valid certificate for this course
1500
+ */
1501
+ skip_if_certified?: boolean | null;
1502
+ }
1503
+
1504
+ /**
1505
+ * Automatically enroll people into a course
1506
+ */
1507
+ export interface EnrollIntoCourse3MonthsPayload {
1508
+ /**
1509
+ * Select a course to enroll people in
1510
+ */
1511
+ course_id: string;
1512
+
1513
+ due_date: '3_months';
1514
+
1515
+ /**
1516
+ * Select people to enroll in this course
1517
+ */
1518
+ role_ids: Array<string>;
1519
+
1520
+ /**
1521
+ * Skip enrollment if the employee already has a valid certificate for this course
1522
+ */
1523
+ skip_if_certified?: boolean | null;
1524
+ }
1525
+
1526
+ /**
1527
+ * Automatically enroll people into a course
1528
+ */
1529
+ export interface EnrollIntoCourse6MonthsPayload {
1530
+ /**
1531
+ * Select a course to enroll people in
1532
+ */
1533
+ course_id: string;
1534
+
1535
+ due_date: '6_months';
1536
+
1537
+ /**
1538
+ * Select people to enroll in this course
1539
+ */
1540
+ role_ids: Array<string>;
1541
+
1542
+ /**
1543
+ * Skip enrollment if the employee already has a valid certificate for this course
1544
+ */
1545
+ skip_if_certified?: boolean | null;
1546
+ }
1547
+
1548
+ /**
1549
+ * Automatically enroll people into a course
1550
+ */
1551
+ export interface EnrollIntoCourse12MonthsPayload {
1552
+ /**
1553
+ * Select a course to enroll people in
1554
+ */
1555
+ course_id: string;
1556
+
1557
+ due_date: '12_months';
1558
+
1559
+ /**
1560
+ * Select people to enroll in this course
1561
+ */
1562
+ role_ids: Array<string>;
1563
+
1564
+ /**
1565
+ * Skip enrollment if the employee already has a valid certificate for this course
1566
+ */
1567
+ skip_if_certified?: boolean | null;
1568
+ }
1569
+
1570
+ /**
1571
+ * Automatically enroll people into a course
1572
+ */
1573
+ export interface EnrollIntoCourseCustomPayload {
1574
+ /**
1575
+ * Select a course to enroll people in
1576
+ */
1577
+ course_id: string;
1578
+
1579
+ due_date: 'custom';
1580
+
1581
+ /**
1582
+ * Select people to enroll in this course
1583
+ */
1584
+ role_ids: Array<string>;
1585
+
1586
+ /**
1587
+ * Time unit
1588
+ */
1589
+ custom_due_duration?: 'day' | 'week' | 'month' | 'year' | null;
1590
+
1591
+ /**
1592
+ * Number of days/weeks/months/years
1593
+ */
1594
+ custom_due_value?: number | null;
1595
+
1596
+ /**
1597
+ * Skip enrollment if the employee already has a valid certificate for this course
1598
+ */
1599
+ skip_if_certified?: boolean | null;
1600
+ }
1601
+
1602
+ /**
1603
+ * Automatically enroll people into a learning path
1604
+ */
1605
+ export interface EnrollIntoLearningPathPayload {
1606
+ /**
1607
+ * Select a learning path to enroll people in
1608
+ */
1609
+ learning_path_id: string;
1610
+
1611
+ /**
1612
+ * Select people to enroll in this learning path
1613
+ */
1614
+ role_ids: Array<string>;
1615
+
1616
+ /**
1617
+ * Time unit
1618
+ */
1619
+ custom_due_unit?: 'day' | 'week' | 'month' | 'year' | null;
1620
+
1621
+ /**
1622
+ * Number of days/weeks/months/years
1623
+ */
1624
+ custom_due_value?: number | null;
1625
+
1626
+ /**
1627
+ * Number of days after completing one course before the next is due
1628
+ */
1629
+ days_between_courses?: number | null;
1630
+
1631
+ /**
1632
+ * Due date type
1633
+ */
1634
+ due_date_type?: 'global' | 'relative' | null;
1635
+
1636
+ /**
1637
+ * Due in
1638
+ */
1639
+ due_in?: '1_week' | '2_weeks' | '1_month' | '3_months' | '6_months' | '12_months' | 'custom' | null;
1640
+
1641
+ /**
1642
+ * Give credit for courses the employee has already completed
1643
+ */
1644
+ induct_completed_enrollments?: boolean | null;
1645
+
1646
+ /**
1647
+ * Skip enrollment if the employee already completed this learning path
1648
+ */
1649
+ skip_if_completed?: boolean | null;
1650
+ }
1651
+
1652
+ /**
1653
+ * Send Report via Email.
1654
+ * <helpdocslink href='https://help.rippling.com/article?articleId=382019482598'>Help
1655
+ * docs</helpdocslink>
1656
+ */
1657
+ export interface SendReportEmailExcelPayload {
1658
+ file_type: 'EXCEL';
1659
+
1660
+ /**
1661
+ * Not all report types are supported in workflows, like change and trend reports
1662
+ */
1663
+ report_id: string;
1664
+
1665
+ /**
1666
+ * Whose report view should be used to generate this report? (Only the workflow
1667
+ * owner's access level will be available if external emails are included.)
1668
+ */
1669
+ run_report_perms: 'RECIPIENT' | 'WORKFLOW_OWNER';
1670
+
1671
+ send_to: SendReportEmailExcelPayload.SendTo;
1672
+
1673
+ add_role_referenced_id_column?: boolean | null;
1674
+
1675
+ /**
1676
+ * CSV quoting
1677
+ */
1678
+ csv_quoting?: 1 | 0 | 2 | 3 | null;
1679
+
1680
+ /**
1681
+ * Currency field formatting
1682
+ */
1683
+ currency_fields?: 'WITH_CURRENCY_TYPE' | 'WITHOUT_CURRENCY_TYPE' | null;
1684
+
1685
+ /**
1686
+ * Date & time formatting
1687
+ */
1688
+ date_and_time_formatting?: 'ISO_FORMAT' | 'LOCALE_FORMAT' | null;
1689
+
1690
+ show_sub_totals?: boolean | null;
1691
+
1692
+ /**
1693
+ * Time zones
1694
+ */
1695
+ time_zones?: 'UTC' | 'PRESERVE_TZ' | 'VIEWER_LOCALE' | null;
1696
+ }
1697
+
1698
+ export namespace SendReportEmailExcelPayload {
1699
+ export interface SendTo {
1700
+ bcc?: SendTo.Recipient1 | SendTo.Recipient2 | null;
1701
+
1702
+ cc?: SendTo.Recipient1 | SendTo.Recipient2 | null;
1703
+
1704
+ to?: SendTo.Recipient1 | SendTo.Recipient2 | null;
1705
+ }
1706
+
1707
+ export namespace SendTo {
1708
+ export interface Recipient1 {
1709
+ supergroup: Array<string>;
1710
+
1711
+ /**
1712
+ * Email type
1713
+ */
1714
+ emailType?:
1715
+ | 'work_or_personal_email'
1716
+ | 'work_email_only'
1717
+ | 'personal_email_only'
1718
+ | 'work_and_personal_email'
1719
+ | null;
1720
+
1721
+ externalEmails?: Array<string> | null;
1722
+ }
1723
+
1724
+ export interface Recipient2 {
1725
+ externalEmails: Array<string>;
1726
+
1727
+ /**
1728
+ * Email type
1729
+ */
1730
+ emailType?:
1731
+ | 'work_or_personal_email'
1732
+ | 'work_email_only'
1733
+ | 'personal_email_only'
1734
+ | 'work_and_personal_email'
1735
+ | null;
1736
+
1737
+ supergroup?: Array<string> | null;
1738
+ }
1739
+
1740
+ export interface Recipient1 {
1741
+ supergroup: Array<string>;
1742
+
1743
+ /**
1744
+ * Email type
1745
+ */
1746
+ emailType?:
1747
+ | 'work_or_personal_email'
1748
+ | 'work_email_only'
1749
+ | 'personal_email_only'
1750
+ | 'work_and_personal_email'
1751
+ | null;
1752
+
1753
+ externalEmails?: Array<string> | null;
1754
+ }
1755
+
1756
+ export interface Recipient2 {
1757
+ externalEmails: Array<string>;
1758
+
1759
+ /**
1760
+ * Email type
1761
+ */
1762
+ emailType?:
1763
+ | 'work_or_personal_email'
1764
+ | 'work_email_only'
1765
+ | 'personal_email_only'
1766
+ | 'work_and_personal_email'
1767
+ | null;
1768
+
1769
+ supergroup?: Array<string> | null;
1770
+ }
1771
+
1772
+ export interface Recipient1 {
1773
+ supergroup: Array<string>;
1774
+
1775
+ /**
1776
+ * Email type
1777
+ */
1778
+ emailType?:
1779
+ | 'work_or_personal_email'
1780
+ | 'work_email_only'
1781
+ | 'personal_email_only'
1782
+ | 'work_and_personal_email'
1783
+ | null;
1784
+
1785
+ externalEmails?: Array<string> | null;
1786
+ }
1787
+
1788
+ export interface Recipient2 {
1789
+ externalEmails: Array<string>;
1790
+
1791
+ /**
1792
+ * Email type
1793
+ */
1794
+ emailType?:
1795
+ | 'work_or_personal_email'
1796
+ | 'work_email_only'
1797
+ | 'personal_email_only'
1798
+ | 'work_and_personal_email'
1799
+ | null;
1800
+
1801
+ supergroup?: Array<string> | null;
1802
+ }
1803
+ }
1804
+ }
1805
+
1806
+ /**
1807
+ * Send Report via Email.
1808
+ * <helpdocslink href='https://help.rippling.com/article?articleId=382019482598'>Help
1809
+ * docs</helpdocslink>
1810
+ */
1811
+ export interface SendReportEmailCsvPayload {
1812
+ file_type: 'CSV';
1813
+
1814
+ /**
1815
+ * Not all report types are supported in workflows, like change and trend reports
1816
+ */
1817
+ report_id: string;
1818
+
1819
+ /**
1820
+ * Whose report view should be used to generate this report? (Only the workflow
1821
+ * owner's access level will be available if external emails are included.)
1822
+ */
1823
+ run_report_perms: 'RECIPIENT' | 'WORKFLOW_OWNER';
1824
+
1825
+ send_to: SendReportEmailCsvPayload.SendTo;
1826
+
1827
+ add_role_referenced_id_column?: boolean | null;
1828
+
1829
+ /**
1830
+ * CSV quoting
1831
+ */
1832
+ csv_quoting?: 1 | 0 | 2 | 3 | null;
1833
+
1834
+ /**
1835
+ * Custom separator
1836
+ */
1837
+ csv_separator?: ',' | ';' | '\t' | '|' | null;
1838
+
1839
+ /**
1840
+ * Currency field formatting
1841
+ */
1842
+ currency_fields?: 'WITH_CURRENCY_TYPE' | 'WITHOUT_CURRENCY_TYPE' | null;
1843
+
1844
+ /**
1845
+ * Date & time formatting
1846
+ */
1847
+ date_and_time_formatting?: 'ISO_FORMAT' | 'LOCALE_FORMAT' | null;
1848
+
1849
+ show_sub_totals?: boolean | null;
1850
+
1851
+ /**
1852
+ * Time zones
1853
+ */
1854
+ time_zones?: 'UTC' | 'PRESERVE_TZ' | 'VIEWER_LOCALE' | null;
1855
+ }
1856
+
1857
+ export namespace SendReportEmailCsvPayload {
1858
+ export interface SendTo {
1859
+ bcc?: SendTo.Recipient1 | SendTo.Recipient2 | null;
1860
+
1861
+ cc?: SendTo.Recipient1 | SendTo.Recipient2 | null;
1862
+
1863
+ to?: SendTo.Recipient1 | SendTo.Recipient2 | null;
1864
+ }
1865
+
1866
+ export namespace SendTo {
1867
+ export interface Recipient1 {
1868
+ supergroup: Array<string>;
1869
+
1870
+ /**
1871
+ * Email type
1872
+ */
1873
+ emailType?:
1874
+ | 'work_or_personal_email'
1875
+ | 'work_email_only'
1876
+ | 'personal_email_only'
1877
+ | 'work_and_personal_email'
1878
+ | null;
1879
+
1880
+ externalEmails?: Array<string> | null;
1881
+ }
1882
+
1883
+ export interface Recipient2 {
1884
+ externalEmails: Array<string>;
1885
+
1886
+ /**
1887
+ * Email type
1888
+ */
1889
+ emailType?:
1890
+ | 'work_or_personal_email'
1891
+ | 'work_email_only'
1892
+ | 'personal_email_only'
1893
+ | 'work_and_personal_email'
1894
+ | null;
1895
+
1896
+ supergroup?: Array<string> | null;
1897
+ }
1898
+
1899
+ export interface Recipient1 {
1900
+ supergroup: Array<string>;
1901
+
1902
+ /**
1903
+ * Email type
1904
+ */
1905
+ emailType?:
1906
+ | 'work_or_personal_email'
1907
+ | 'work_email_only'
1908
+ | 'personal_email_only'
1909
+ | 'work_and_personal_email'
1910
+ | null;
1911
+
1912
+ externalEmails?: Array<string> | null;
1913
+ }
1914
+
1915
+ export interface Recipient2 {
1916
+ externalEmails: Array<string>;
1917
+
1918
+ /**
1919
+ * Email type
1920
+ */
1921
+ emailType?:
1922
+ | 'work_or_personal_email'
1923
+ | 'work_email_only'
1924
+ | 'personal_email_only'
1925
+ | 'work_and_personal_email'
1926
+ | null;
1927
+
1928
+ supergroup?: Array<string> | null;
1929
+ }
1930
+
1931
+ export interface Recipient1 {
1932
+ supergroup: Array<string>;
1933
+
1934
+ /**
1935
+ * Email type
1936
+ */
1937
+ emailType?:
1938
+ | 'work_or_personal_email'
1939
+ | 'work_email_only'
1940
+ | 'personal_email_only'
1941
+ | 'work_and_personal_email'
1942
+ | null;
1943
+
1944
+ externalEmails?: Array<string> | null;
1945
+ }
1946
+
1947
+ export interface Recipient2 {
1948
+ externalEmails: Array<string>;
1949
+
1950
+ /**
1951
+ * Email type
1952
+ */
1953
+ emailType?:
1954
+ | 'work_or_personal_email'
1955
+ | 'work_email_only'
1956
+ | 'personal_email_only'
1957
+ | 'work_and_personal_email'
1958
+ | null;
1959
+
1960
+ supergroup?: Array<string> | null;
1961
+ }
1962
+ }
1963
+ }
1964
+
1965
+ /**
1966
+ * Sends a document to employees
1967
+ * <helpdocslink href='https://help.rippling.com/article?articleId=5M7eDUNcGIZndtJQv99mjW'>Help
1968
+ * docs</helpdocslink>
1969
+ */
1970
+ export interface SendDocumentPayload {
1971
+ document: string;
1972
+
1973
+ /**
1974
+ * Maximum recipients: 500
1975
+ */
1976
+ recipients: Array<string>;
1977
+ }
1978
+
1979
+ /**
1980
+ * Adjust time off balance of a leave policy or a leave type
1981
+ * <helpdocslink href='https://help.rippling.com/article?articleId=807953794978'>Help
1982
+ * docs</helpdocslink>
1983
+ */
1984
+ export interface AccrueLeaveLeavePolicyPayload {
1985
+ /**
1986
+ * Choose how to adjust the employee's leave balance
1987
+ */
1988
+ balance_action_type: 'ADD_BALANCE' | 'DEDUCT_BALANCE';
1989
+
1990
+ balance_increment: number;
1991
+
1992
+ /**
1993
+ * The unit of time to accrue leave in
1994
+ */
1995
+ balance_unit: 'HOURS' | 'DAYS' | 'WEEKS';
1996
+
1997
+ leave_policy: string;
1998
+
1999
+ pto_type: 'LEAVE_POLICY';
2000
+
2001
+ recipients: Array<string>;
2002
+ }
2003
+
2004
+ /**
2005
+ * Adjust time off balance of a leave policy or a leave type
2006
+ * <helpdocslink href='https://help.rippling.com/article?articleId=807953794978'>Help
2007
+ * docs</helpdocslink>
2008
+ */
2009
+ export interface AccrueLeaveCompanyLeaveTypePayload {
2010
+ /**
2011
+ * Choose how to adjust the employee's leave balance
2012
+ */
2013
+ balance_action_type: 'ADD_BALANCE' | 'DEDUCT_BALANCE';
2014
+
2015
+ balance_increment: number;
2016
+
2017
+ /**
2018
+ * The unit of time to accrue leave in
2019
+ */
2020
+ balance_unit: 'HOURS' | 'DAYS' | 'WEEKS';
2021
+
2022
+ company_leave_type: string;
2023
+
2024
+ pto_type: 'COMPANY_LEAVE_TYPE';
2025
+
2026
+ recipients: Array<string>;
2027
+ }
2028
+
2029
+ /**
2030
+ * Send a payment to employee(s). This payment will be applied to the next upcoming
2031
+ * payroll run.
2032
+ * <helpdocslink href='https://help.rippling.com/article?articleId=2AcZ3Rsql2FVUy3ghiFCFt'>Help
2033
+ * docs</helpdocslink>
2034
+ */
2035
+ export interface MakePaymentPayload {
2036
+ /**
2037
+ * Set a max amount that can be earned under this workflow
2038
+ */
2039
+ apply_cap: boolean;
2040
+
2041
+ description: string;
2042
+
2043
+ payment_amount: number;
2044
+
2045
+ recipients: Array<string>;
2046
+ }
2047
+
1418
2048
  export interface RunQueryPayload {
1419
2049
  query: string;
1420
2050
 
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.2.0-alpha.31'; // x-release-please-version
1
+ export const VERSION = '0.2.0-alpha.33'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.2.0-alpha.31";
1
+ export declare const VERSION = "0.2.0-alpha.33";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.2.0-alpha.31";
1
+ export declare const VERSION = "0.2.0-alpha.33";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '0.2.0-alpha.31'; // x-release-please-version
4
+ exports.VERSION = '0.2.0-alpha.33'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.2.0-alpha.31'; // x-release-please-version
1
+ export const VERSION = '0.2.0-alpha.33'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map