carbon_ruby_sdk 0.2.38 → 0.2.40

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/README.md +310 -2
  4. data/lib/carbon_ruby_sdk/api/github_api.rb +825 -0
  5. data/lib/carbon_ruby_sdk/models/comments_input.rb +330 -0
  6. data/lib/carbon_ruby_sdk/models/comments_order_by.rb +36 -0
  7. data/lib/carbon_ruby_sdk/models/comments_response.rb +232 -0
  8. data/lib/carbon_ruby_sdk/models/commit.rb +282 -0
  9. data/lib/carbon_ruby_sdk/models/commit_user.rb +234 -0
  10. data/lib/carbon_ruby_sdk/models/commit_user_nullable.rb +234 -0
  11. data/lib/carbon_ruby_sdk/models/commits_input.rb +307 -0
  12. data/lib/carbon_ruby_sdk/models/commits_response.rb +232 -0
  13. data/lib/carbon_ruby_sdk/models/file_status.rb +41 -0
  14. data/lib/carbon_ruby_sdk/models/files_input.rb +307 -0
  15. data/lib/carbon_ruby_sdk/models/files_response.rb +232 -0
  16. data/lib/carbon_ruby_sdk/models/head_or_base.rb +248 -0
  17. data/lib/carbon_ruby_sdk/models/issue.rb +434 -0
  18. data/lib/carbon_ruby_sdk/models/issue_pr.rb +230 -0
  19. data/lib/carbon_ruby_sdk/models/issue_pr_nullable.rb +230 -0
  20. data/lib/carbon_ruby_sdk/models/issues_filter.rb +217 -0
  21. data/lib/carbon_ruby_sdk/models/issues_input.rb +325 -0
  22. data/lib/carbon_ruby_sdk/models/issues_order_by.rb +37 -0
  23. data/lib/carbon_ruby_sdk/models/issues_response.rb +232 -0
  24. data/lib/carbon_ruby_sdk/models/label.rb +234 -0
  25. data/lib/carbon_ruby_sdk/models/organization_user_files_to_sync_filters.rb +29 -1
  26. data/lib/carbon_ruby_sdk/models/pr_comment.rb +358 -0
  27. data/lib/carbon_ruby_sdk/models/pr_commit.rb +264 -0
  28. data/lib/carbon_ruby_sdk/models/pr_file.rb +342 -0
  29. data/lib/carbon_ruby_sdk/models/pr_order_by.rb +37 -0
  30. data/lib/carbon_ruby_sdk/models/pr_state.rb +36 -0
  31. data/lib/carbon_ruby_sdk/models/pr_state_input.rb +37 -0
  32. data/lib/carbon_ruby_sdk/models/pull_request.rb +438 -0
  33. data/lib/carbon_ruby_sdk/models/pull_request_extended.rb +536 -0
  34. data/lib/carbon_ruby_sdk/models/pull_request_filters.rb +239 -0
  35. data/lib/carbon_ruby_sdk/models/pull_request_response.rb +232 -0
  36. data/lib/carbon_ruby_sdk/models/pull_requests_input.rb +325 -0
  37. data/lib/carbon_ruby_sdk/models/sent_webhook_payload.rb +2 -2
  38. data/lib/carbon_ruby_sdk/models/team.rb +234 -0
  39. data/lib/carbon_ruby_sdk/models/tree.rb +234 -0
  40. data/lib/carbon_ruby_sdk/models/user.rb +234 -0
  41. data/lib/carbon_ruby_sdk/models/user_file.rb +11 -1
  42. data/lib/carbon_ruby_sdk/models/user_nullable.rb +234 -0
  43. data/lib/carbon_ruby_sdk/version.rb +1 -1
  44. data/lib/carbon_ruby_sdk.rb +38 -0
  45. data/spec/api/github_api_spec.rb +112 -0
  46. data/spec/models/comments_input_spec.rb +76 -0
  47. data/spec/models/comments_order_by_spec.rb +22 -0
  48. data/spec/models/comments_response_spec.rb +34 -0
  49. data/spec/models/commit_spec.rb +58 -0
  50. data/spec/models/commit_user_nullable_spec.rb +34 -0
  51. data/spec/models/commit_user_spec.rb +34 -0
  52. data/spec/models/commits_input_spec.rb +64 -0
  53. data/spec/models/commits_response_spec.rb +34 -0
  54. data/spec/models/file_status_spec.rb +22 -0
  55. data/spec/models/files_input_spec.rb +64 -0
  56. data/spec/models/files_response_spec.rb +34 -0
  57. data/spec/models/head_or_base_spec.rb +40 -0
  58. data/spec/models/issue_pr_nullable_spec.rb +34 -0
  59. data/spec/models/issue_pr_spec.rb +34 -0
  60. data/spec/models/issue_spec.rb +124 -0
  61. data/spec/models/issues_filter_spec.rb +28 -0
  62. data/spec/models/issues_input_spec.rb +76 -0
  63. data/spec/models/issues_order_by_spec.rb +22 -0
  64. data/spec/models/issues_response_spec.rb +34 -0
  65. data/spec/models/label_spec.rb +34 -0
  66. data/spec/models/organization_user_files_to_sync_filters_spec.rb +6 -0
  67. data/spec/models/pr_comment_spec.rb +94 -0
  68. data/spec/models/pr_commit_spec.rb +52 -0
  69. data/spec/models/pr_file_spec.rb +82 -0
  70. data/spec/models/pr_order_by_spec.rb +22 -0
  71. data/spec/models/pr_state_input_spec.rb +22 -0
  72. data/spec/models/pr_state_spec.rb +22 -0
  73. data/spec/models/pull_request_extended_spec.rb +166 -0
  74. data/spec/models/pull_request_filters_spec.rb +40 -0
  75. data/spec/models/pull_request_response_spec.rb +34 -0
  76. data/spec/models/pull_request_spec.rb +124 -0
  77. data/spec/models/pull_requests_input_spec.rb +76 -0
  78. data/spec/models/sent_webhook_payload_spec.rb +1 -1
  79. data/spec/models/team_spec.rb +34 -0
  80. data/spec/models/tree_spec.rb +34 -0
  81. data/spec/models/user_file_spec.rb +6 -0
  82. data/spec/models/user_nullable_spec.rb +34 -0
  83. data/spec/models/user_spec.rb +34 -0
  84. metadata +301 -193
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7a3a97dcfaa200bb7a9492bf406511491a7c70b8dabf45a07b3624cd29c1bf4b
4
- data.tar.gz: 61f80b424f9cdecbb215596688a7721c54b2d5eb85c6a3bfc2f24429ebaba84a
3
+ metadata.gz: 705280dcd518ae008b5f3c2879d4518babeea313da67dd438ffa517639e7c98a
4
+ data.tar.gz: ae9da6ced1a6d2145161d8871d45d749468e6d046f3b0b79eef114782e0415e6
5
5
  SHA512:
6
- metadata.gz: e1064513ed3bad2952e163bf7e54ce844cf4edd679c4d70302dcf3eb103381772db1ba67ec1530abd80ec62aad749b79fc51d784dc0b7538c0c90a49ee3499b1
7
- data.tar.gz: abd7e994d15d3d64accd3e95e153ace6f75ab9a422c88b947c90a1ec909ad9dad31cb856c10182205fad7ac606c69b757de227ff2eb467bc3c1eca110c5c2725
6
+ metadata.gz: c6df63a620c3d7ded7623ea0a7ed52e4c04249a9f06b1a23ff6ab80eaa83ceca00a8ba869d1b3cbc62473879de99e67d325f6219549d66e74869651f629330ac
7
+ data.tar.gz: b1f3ea0987cb89539e01dac95a13bfbc94d00b201639f53f5d95ca0e98082fd54f405a7ea456071a10dd44a7fa99adc11f575c464327af6bc024c169fa98d58d
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- carbon_ruby_sdk (0.2.38)
4
+ carbon_ruby_sdk (0.2.40)
5
5
  faraday (>= 1.0.1, < 3.0)
6
6
  faraday-multipart (~> 1.0, >= 1.0.4)
7
7
 
data/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  Connect external data to LLMs, no matter the source.
8
8
 
9
- [![npm](https://img.shields.io/badge/gem-v0.2.38-blue)](https://rubygems.org/gems/carbon_ruby_sdk/versions/0.2.38)
9
+ [![npm](https://img.shields.io/badge/gem-v0.2.40-blue)](https://rubygems.org/gems/carbon_ruby_sdk/versions/0.2.40)
10
10
 
11
11
  </div>
12
12
 
@@ -49,6 +49,13 @@ Connect external data to LLMs, no matter the source.
49
49
  * [`carbon.files.upload`](#carbonfilesupload)
50
50
  * [`carbon.files.upload_from_url`](#carbonfilesupload_from_url)
51
51
  * [`carbon.files.upload_text`](#carbonfilesupload_text)
52
+ * [`carbon.github.get_issue`](#carbongithubget_issue)
53
+ * [`carbon.github.get_issues`](#carbongithubget_issues)
54
+ * [`carbon.github.get_pr`](#carbongithubget_pr)
55
+ * [`carbon.github.get_pr_comments`](#carbongithubget_pr_comments)
56
+ * [`carbon.github.get_pr_commits`](#carbongithubget_pr_commits)
57
+ * [`carbon.github.get_pr_files`](#carbongithubget_pr_files)
58
+ * [`carbon.github.get_pull_requests`](#carbongithubget_pull_requests)
52
59
  * [`carbon.integrations.cancel`](#carbonintegrationscancel)
53
60
  * [`carbon.integrations.connect_data_source`](#carbonintegrationsconnect_data_source)
54
61
  * [`carbon.integrations.connect_freshdesk`](#carbonintegrationsconnect_freshdesk)
@@ -104,7 +111,7 @@ Connect external data to LLMs, no matter the source.
104
111
  Add to Gemfile:
105
112
 
106
113
  ```ruby
107
- gem 'carbon_ruby_sdk', '~> 0.2.38'
114
+ gem 'carbon_ruby_sdk', '~> 0.2.40'
108
115
  ```
109
116
 
110
117
  ## Getting Started<a id="getting-started"></a>
@@ -1724,6 +1731,307 @@ will be done.
1724
1731
  ---
1725
1732
 
1726
1733
 
1734
+ ### `carbon.github.get_issue`<a id="carbongithubget_issue"></a>
1735
+
1736
+ Issue
1737
+
1738
+ #### 🛠️ Usage<a id="🛠️-usage"></a>
1739
+
1740
+ ```ruby
1741
+ result = carbon.github.get_issue(
1742
+ issue_number: 1,
1743
+ include_remote_data: false,
1744
+ data_source_id: 1,
1745
+ repository: "string_example",
1746
+ )
1747
+ p result
1748
+ ```
1749
+
1750
+ #### ⚙️ Parameters<a id="⚙️-parameters"></a>
1751
+
1752
+ ##### issue_number: `Integer`<a id="issue_number-integer"></a>
1753
+ ##### include_remote_data: `Boolean`<a id="include_remote_data-boolean"></a>
1754
+ ##### data_source_id: `Integer`<a id="data_source_id-integer"></a>
1755
+ ##### repository: `String`<a id="repository-string"></a>
1756
+ #### 🔄 Return<a id="🔄-return"></a>
1757
+
1758
+ [Issue](./lib/carbon_ruby_sdk/models/issue.rb)
1759
+
1760
+ #### 🌐 Endpoint<a id="🌐-endpoint"></a>
1761
+
1762
+ `/integrations/data/github/issues/{issue_number}` `GET`
1763
+
1764
+ [🔙 **Back to Table of Contents**](#table-of-contents)
1765
+
1766
+ ---
1767
+
1768
+
1769
+ ### `carbon.github.get_issues`<a id="carbongithubget_issues"></a>
1770
+
1771
+ Issues
1772
+
1773
+ #### 🛠️ Usage<a id="🛠️-usage"></a>
1774
+
1775
+ ```ruby
1776
+ result = carbon.github.get_issues(
1777
+ data_source_id: 1,
1778
+ repository: "string_example",
1779
+ include_remote_data: false,
1780
+ page: 1,
1781
+ page_size: 30,
1782
+ next_cursor: "string_example",
1783
+ filters: {
1784
+ "state" => "closed",
1785
+ },
1786
+ order_by: "created",
1787
+ order_dir: "asc",
1788
+ )
1789
+ p result
1790
+ ```
1791
+
1792
+ #### ⚙️ Parameters<a id="⚙️-parameters"></a>
1793
+
1794
+ ##### data_source_id: `Integer`<a id="data_source_id-integer"></a>
1795
+ ##### repository: `String`<a id="repository-string"></a>
1796
+ Full name of the repository, denoted as {owner}/{repo}
1797
+
1798
+ ##### include_remote_data: `Boolean`<a id="include_remote_data-boolean"></a>
1799
+ ##### page: `Integer`<a id="page-integer"></a>
1800
+ ##### page_size: `Integer`<a id="page_size-integer"></a>
1801
+ ##### next_cursor: `String`<a id="next_cursor-string"></a>
1802
+ ##### filters: [`IssuesFilter`](./lib/carbon_ruby_sdk/models/issues_filter.rb)<a id="filters-issuesfilterlibcarbon_ruby_sdkmodelsissues_filterrb"></a>
1803
+ ##### order_by: [`IssuesOrderBy`](./lib/carbon_ruby_sdk/models/issues_order_by.rb)<a id="order_by-issuesorderbylibcarbon_ruby_sdkmodelsissues_order_byrb"></a>
1804
+ ##### order_dir: [`OrderDirV2Nullable`](./lib/carbon_ruby_sdk/models/order_dir_v2_nullable.rb)<a id="order_dir-orderdirv2nullablelibcarbon_ruby_sdkmodelsorder_dir_v2_nullablerb"></a>
1805
+ #### 🔄 Return<a id="🔄-return"></a>
1806
+
1807
+ [IssuesResponse](./lib/carbon_ruby_sdk/models/issues_response.rb)
1808
+
1809
+ #### 🌐 Endpoint<a id="🌐-endpoint"></a>
1810
+
1811
+ `/integrations/data/github/issues` `POST`
1812
+
1813
+ [🔙 **Back to Table of Contents**](#table-of-contents)
1814
+
1815
+ ---
1816
+
1817
+
1818
+ ### `carbon.github.get_pr`<a id="carbongithubget_pr"></a>
1819
+
1820
+ Get Pr
1821
+
1822
+ #### 🛠️ Usage<a id="🛠️-usage"></a>
1823
+
1824
+ ```ruby
1825
+ result = carbon.github.get_pr(
1826
+ pull_number: 1,
1827
+ include_remote_data: false,
1828
+ data_source_id: 1,
1829
+ repository: "string_example",
1830
+ )
1831
+ p result
1832
+ ```
1833
+
1834
+ #### ⚙️ Parameters<a id="⚙️-parameters"></a>
1835
+
1836
+ ##### pull_number: `Integer`<a id="pull_number-integer"></a>
1837
+ ##### include_remote_data: `Boolean`<a id="include_remote_data-boolean"></a>
1838
+ ##### data_source_id: `Integer`<a id="data_source_id-integer"></a>
1839
+ ##### repository: `String`<a id="repository-string"></a>
1840
+ #### 🔄 Return<a id="🔄-return"></a>
1841
+
1842
+ [PullRequestExtended](./lib/carbon_ruby_sdk/models/pull_request_extended.rb)
1843
+
1844
+ #### 🌐 Endpoint<a id="🌐-endpoint"></a>
1845
+
1846
+ `/integrations/data/github/pull_requests/{pull_number}` `GET`
1847
+
1848
+ [🔙 **Back to Table of Contents**](#table-of-contents)
1849
+
1850
+ ---
1851
+
1852
+
1853
+ ### `carbon.github.get_pr_comments`<a id="carbongithubget_pr_comments"></a>
1854
+
1855
+ Pr Comments
1856
+
1857
+ #### 🛠️ Usage<a id="🛠️-usage"></a>
1858
+
1859
+ ```ruby
1860
+ result = carbon.github.get_pr_comments(
1861
+ data_source_id: 1,
1862
+ repository: "string_example",
1863
+ pull_number: 1,
1864
+ include_remote_data: false,
1865
+ page: 1,
1866
+ page_size: 30,
1867
+ next_cursor: "string_example",
1868
+ order_by: "created",
1869
+ order_dir: "asc",
1870
+ )
1871
+ p result
1872
+ ```
1873
+
1874
+ #### ⚙️ Parameters<a id="⚙️-parameters"></a>
1875
+
1876
+ ##### data_source_id: `Integer`<a id="data_source_id-integer"></a>
1877
+ ##### repository: `String`<a id="repository-string"></a>
1878
+ Full name of the repository, denoted as {owner}/{repo}
1879
+
1880
+ ##### pull_number: `Integer`<a id="pull_number-integer"></a>
1881
+ ##### include_remote_data: `Boolean`<a id="include_remote_data-boolean"></a>
1882
+ ##### page: `Integer`<a id="page-integer"></a>
1883
+ ##### page_size: `Integer`<a id="page_size-integer"></a>
1884
+ ##### next_cursor: `String`<a id="next_cursor-string"></a>
1885
+ ##### order_by: [`CommentsOrderBy`](./lib/carbon_ruby_sdk/models/comments_order_by.rb)<a id="order_by-commentsorderbylibcarbon_ruby_sdkmodelscomments_order_byrb"></a>
1886
+ ##### order_dir: [`OrderDirV2Nullable`](./lib/carbon_ruby_sdk/models/order_dir_v2_nullable.rb)<a id="order_dir-orderdirv2nullablelibcarbon_ruby_sdkmodelsorder_dir_v2_nullablerb"></a>
1887
+ #### 🔄 Return<a id="🔄-return"></a>
1888
+
1889
+ [CommentsResponse](./lib/carbon_ruby_sdk/models/comments_response.rb)
1890
+
1891
+ #### 🌐 Endpoint<a id="🌐-endpoint"></a>
1892
+
1893
+ `/integrations/data/github/pull_requests/comments` `POST`
1894
+
1895
+ [🔙 **Back to Table of Contents**](#table-of-contents)
1896
+
1897
+ ---
1898
+
1899
+
1900
+ ### `carbon.github.get_pr_commits`<a id="carbongithubget_pr_commits"></a>
1901
+
1902
+ Pr Commits
1903
+
1904
+ #### 🛠️ Usage<a id="🛠️-usage"></a>
1905
+
1906
+ ```ruby
1907
+ result = carbon.github.get_pr_commits(
1908
+ data_source_id: 1,
1909
+ repository: "string_example",
1910
+ pull_number: 1,
1911
+ include_remote_data: false,
1912
+ page: 1,
1913
+ page_size: 30,
1914
+ next_cursor: "string_example",
1915
+ )
1916
+ p result
1917
+ ```
1918
+
1919
+ #### ⚙️ Parameters<a id="⚙️-parameters"></a>
1920
+
1921
+ ##### data_source_id: `Integer`<a id="data_source_id-integer"></a>
1922
+ ##### repository: `String`<a id="repository-string"></a>
1923
+ Full name of the repository, denoted as {owner}/{repo}
1924
+
1925
+ ##### pull_number: `Integer`<a id="pull_number-integer"></a>
1926
+ ##### include_remote_data: `Boolean`<a id="include_remote_data-boolean"></a>
1927
+ ##### page: `Integer`<a id="page-integer"></a>
1928
+ ##### page_size: `Integer`<a id="page_size-integer"></a>
1929
+ ##### next_cursor: `String`<a id="next_cursor-string"></a>
1930
+ #### 🔄 Return<a id="🔄-return"></a>
1931
+
1932
+ [CommitsResponse](./lib/carbon_ruby_sdk/models/commits_response.rb)
1933
+
1934
+ #### 🌐 Endpoint<a id="🌐-endpoint"></a>
1935
+
1936
+ `/integrations/data/github/pull_requests/commits` `POST`
1937
+
1938
+ [🔙 **Back to Table of Contents**](#table-of-contents)
1939
+
1940
+ ---
1941
+
1942
+
1943
+ ### `carbon.github.get_pr_files`<a id="carbongithubget_pr_files"></a>
1944
+
1945
+ Pr Files
1946
+
1947
+ #### 🛠️ Usage<a id="🛠️-usage"></a>
1948
+
1949
+ ```ruby
1950
+ result = carbon.github.get_pr_files(
1951
+ data_source_id: 1,
1952
+ repository: "string_example",
1953
+ pull_number: 1,
1954
+ include_remote_data: false,
1955
+ page: 1,
1956
+ page_size: 30,
1957
+ next_cursor: "string_example",
1958
+ )
1959
+ p result
1960
+ ```
1961
+
1962
+ #### ⚙️ Parameters<a id="⚙️-parameters"></a>
1963
+
1964
+ ##### data_source_id: `Integer`<a id="data_source_id-integer"></a>
1965
+ ##### repository: `String`<a id="repository-string"></a>
1966
+ Full name of the repository, denoted as {owner}/{repo}
1967
+
1968
+ ##### pull_number: `Integer`<a id="pull_number-integer"></a>
1969
+ ##### include_remote_data: `Boolean`<a id="include_remote_data-boolean"></a>
1970
+ ##### page: `Integer`<a id="page-integer"></a>
1971
+ ##### page_size: `Integer`<a id="page_size-integer"></a>
1972
+ ##### next_cursor: `String`<a id="next_cursor-string"></a>
1973
+ #### 🔄 Return<a id="🔄-return"></a>
1974
+
1975
+ [FilesResponse](./lib/carbon_ruby_sdk/models/files_response.rb)
1976
+
1977
+ #### 🌐 Endpoint<a id="🌐-endpoint"></a>
1978
+
1979
+ `/integrations/data/github/pull_requests/files` `POST`
1980
+
1981
+ [🔙 **Back to Table of Contents**](#table-of-contents)
1982
+
1983
+ ---
1984
+
1985
+
1986
+ ### `carbon.github.get_pull_requests`<a id="carbongithubget_pull_requests"></a>
1987
+
1988
+ Get Prs
1989
+
1990
+ #### 🛠️ Usage<a id="🛠️-usage"></a>
1991
+
1992
+ ```ruby
1993
+ result = carbon.github.get_pull_requests(
1994
+ data_source_id: 1,
1995
+ repository: "string_example",
1996
+ include_remote_data: false,
1997
+ page: 1,
1998
+ page_size: 30,
1999
+ next_cursor: "string_example",
2000
+ filters: {
2001
+ "state" => "closed",
2002
+ },
2003
+ order_by: "created",
2004
+ order_dir: "asc",
2005
+ )
2006
+ p result
2007
+ ```
2008
+
2009
+ #### ⚙️ Parameters<a id="⚙️-parameters"></a>
2010
+
2011
+ ##### data_source_id: `Integer`<a id="data_source_id-integer"></a>
2012
+ ##### repository: `String`<a id="repository-string"></a>
2013
+ Full name of the repository, denoted as {owner}/{repo}
2014
+
2015
+ ##### include_remote_data: `Boolean`<a id="include_remote_data-boolean"></a>
2016
+ ##### page: `Integer`<a id="page-integer"></a>
2017
+ ##### page_size: `Integer`<a id="page_size-integer"></a>
2018
+ ##### next_cursor: `String`<a id="next_cursor-string"></a>
2019
+ ##### filters: [`PullRequestFilters`](./lib/carbon_ruby_sdk/models/pull_request_filters.rb)<a id="filters-pullrequestfilterslibcarbon_ruby_sdkmodelspull_request_filtersrb"></a>
2020
+ ##### order_by: [`PROrderBy`](./lib/carbon_ruby_sdk/models/pr_order_by.rb)<a id="order_by-prorderbylibcarbon_ruby_sdkmodelspr_order_byrb"></a>
2021
+ ##### order_dir: [`OrderDirV2Nullable`](./lib/carbon_ruby_sdk/models/order_dir_v2_nullable.rb)<a id="order_dir-orderdirv2nullablelibcarbon_ruby_sdkmodelsorder_dir_v2_nullablerb"></a>
2022
+ #### 🔄 Return<a id="🔄-return"></a>
2023
+
2024
+ [PullRequestResponse](./lib/carbon_ruby_sdk/models/pull_request_response.rb)
2025
+
2026
+ #### 🌐 Endpoint<a id="🌐-endpoint"></a>
2027
+
2028
+ `/integrations/data/github/pull_requests` `POST`
2029
+
2030
+ [🔙 **Back to Table of Contents**](#table-of-contents)
2031
+
2032
+ ---
2033
+
2034
+
1727
2035
  ### `carbon.integrations.cancel`<a id="carbonintegrationscancel"></a>
1728
2036
 
1729
2037
  Cancel Data Source Items Sync