@redotech/redo-api-schema 2.2.238 → 2.2.245

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/lib/openapi.d.ts CHANGED
@@ -12,21 +12,21 @@ type OneOf<T extends any[]> = T extends [infer Only] ? Only : T extends [infer A
12
12
  export interface paths {
13
13
  "/invoices/{invoiceId}/items.csv": {
14
14
  /**
15
- * Get invoice
15
+ * Invoice (CSV)
16
16
  * @description Get an invoice as a CSV.
17
17
  */
18
18
  get: operations["Invoice csv get"];
19
19
  };
20
20
  "/invoices/pending/items.csv": {
21
21
  /**
22
- * Get pending invoice
22
+ * Pending Invoice (CSV)
23
23
  * @description Get an invoice as a CSV.
24
24
  */
25
25
  get: operations["Invoice pending csv get"];
26
26
  };
27
27
  "/returns/{returnId}": {
28
28
  /**
29
- * Get return
29
+ * Return
30
30
  * @description Get return.
31
31
  */
32
32
  get: operations["Return get"];
@@ -38,12 +38,12 @@ export interface paths {
38
38
  };
39
39
  "/returns/{returnId}/comments": {
40
40
  /**
41
- * List return comments
41
+ * List Return Comments
42
42
  * @description List return comments.
43
43
  */
44
44
  get: operations["Return comments get"];
45
45
  /**
46
- * Create return comment
46
+ * Create Return Comment
47
47
  * @description Create return comment.
48
48
  */
49
49
  post: operations["Return comment create"];
@@ -55,7 +55,7 @@ export interface paths {
55
55
  };
56
56
  "/returns/{returnId}/process": {
57
57
  /**
58
- * Process return
58
+ * Process Return
59
59
  * @description **BETA**: This endpoint is in beta and subject to change.
60
60
  *
61
61
  * Trigger processing of a return with specified products.
@@ -69,68 +69,68 @@ export interface paths {
69
69
  };
70
70
  "/returns/{returnId}/status": {
71
71
  /**
72
- * Get return status
72
+ * Return Status
73
73
  * @description Get return status.
74
74
  */
75
75
  get: operations["Return status get"];
76
76
  /**
77
- * Update return status
77
+ * Update Return Status
78
78
  * @description Update return status.
79
79
  */
80
80
  put: operations["Return status update"];
81
81
  };
82
82
  "/stores/{storeId}/admin": {
83
83
  /**
84
- * Navigate to merchant admin
84
+ * Navigate to Merchant Admin
85
85
  * @description Navigate to the merchant admin page.
86
86
  */
87
87
  get: operations["Merchant admin navigate"];
88
88
  };
89
89
  "/stores/{storeId}/checkout-buttons-ui": {
90
90
  /**
91
- * Retrieve some rendered HTML and CSS for checkout buttons options for enabling and disabling coverage
92
- * @description Generate HTML and CSS for checkout buttons
91
+ * Checkout Buttons UI
92
+ * @description Generate rendered HTML and CSS for checkout buttons.
93
93
  */
94
94
  get: operations["Checkout buttons UI"];
95
95
  };
96
96
  "/stores/{storeId}/coverage-info": {
97
97
  /**
98
- * Navigate to coverage info
98
+ * Navigate to Coverage Info
99
99
  * @description Navigate to the coverage info page.
100
100
  */
101
101
  get: operations["Coverage info navigate"];
102
102
  };
103
103
  "/stores/{storeId}/coverage-products": {
104
104
  /**
105
- * Get coverage products
105
+ * Coverage Products
106
106
  * @description Get available coverage products.
107
107
  */
108
108
  post: operations["Coverage products"];
109
109
  };
110
110
  "/stores/{storeId}/customer-portal": {
111
111
  /**
112
- * Navigate to customer portal
112
+ * Navigate to Customer Portal
113
113
  * @description Navigate to the customer portal.
114
114
  */
115
115
  get: operations["Customer portal navigate"];
116
116
  };
117
117
  "/stores/{storeId}/customer-subscriptions": {
118
118
  /**
119
- * Update customer subscriptions
119
+ * Update Customer Subscriptions
120
120
  * @description Update customer subscription status for SMS and email marketing and transactional messages. If the customer with that phone number or email does not exist, it will be created.
121
121
  */
122
122
  post: operations["Customer subscriptions update"];
123
123
  };
124
124
  "/stores/{storeId}/invoices": {
125
125
  /**
126
- * Get invoice
126
+ * List Invoices
127
127
  * @description Get a list of invoices.
128
128
  */
129
129
  get: operations["Invoice list"];
130
130
  };
131
131
  "/stores/{storeId}/returns": {
132
132
  /**
133
- * List returns
133
+ * List Returns
134
134
  * @description List returns, sorted by most recent to least recent.
135
135
  */
136
136
  get: operations["Returns list"];
@@ -142,7 +142,7 @@ export interface paths {
142
142
  };
143
143
  "/stores/{storeId}/shipments/{shipmentId}/documents/{documentType}": {
144
144
  /**
145
- * Download shipment document
145
+ * Download Shipment Document
146
146
  * @description Get a shipment document (label, commercial invoice, etc).
147
147
  */
148
148
  get: operations["Shipment document download"];
@@ -154,7 +154,7 @@ export interface paths {
154
154
  };
155
155
  "/stores/{storeId}/shipments/buy": {
156
156
  /**
157
- * Purchase shipping label
157
+ * Purchase Shipping Label
158
158
  * @description Purchase a shipping label based on origin, destination, carrier, service, and parcel information.
159
159
  */
160
160
  post: operations["Shipment buy"];
@@ -166,7 +166,7 @@ export interface paths {
166
166
  };
167
167
  "/stores/{storeId}/shipments/rates": {
168
168
  /**
169
- * Get shipping rates
169
+ * Shipping Rates
170
170
  * @description Get available shipping rates based on origin, destination, and parcel information.
171
171
  */
172
172
  post: operations["Shipment rates"];
@@ -178,19 +178,19 @@ export interface paths {
178
178
  };
179
179
  "/stores/{storeId}/storefront/events": {
180
180
  /**
181
- * Receive storefront events
181
+ * Receive Storefront Events
182
182
  * @description Processes events from storefronts using Shopify pixel event schema
183
183
  */
184
184
  post: operations["Storefront Event"];
185
185
  };
186
186
  "/stores/{storeId}/webhooks": {
187
187
  /**
188
- * List webhooks
188
+ * List Webhooks
189
189
  * @description List webhooks for store.
190
190
  */
191
191
  get: operations["Webhooks list"];
192
192
  /**
193
- * Create or update webhook
193
+ * Create or Update Webhook
194
194
  * @description Create webhook for store. Or if webhook already exists with `externalId`, update it.
195
195
  */
196
196
  post: operations["Webhook create"];
@@ -202,24 +202,24 @@ export interface paths {
202
202
  };
203
203
  "/webhooks/{webhookId}": {
204
204
  /**
205
- * Get webhook
205
+ * Webhook
206
206
  * @description Get a webhook.
207
207
  */
208
208
  get: operations["Webhook get"];
209
209
  /**
210
- * Update webhook
210
+ * Update Webhook
211
211
  * @description Update a webhook.
212
212
  */
213
213
  put: operations["Webhook update"];
214
214
  /**
215
- * Delete webhook
215
+ * Delete Webhook
216
216
  * @description Delete a webhook.
217
217
  */
218
218
  delete: operations["Webhook delete"];
219
219
  };
220
220
  "/webhooks/{webhookId}/replay": {
221
221
  /**
222
- * Replay webhook
222
+ * Replay Webhook
223
223
  * @description Replay a webhook.
224
224
  */
225
225
  post: operations["Webhook replay"];
@@ -1395,7 +1395,7 @@ export type external = Record<string, never>;
1395
1395
  export interface operations {
1396
1396
 
1397
1397
  /**
1398
- * Get invoice
1398
+ * Invoice (CSV)
1399
1399
  * @description Get an invoice as a CSV.
1400
1400
  */
1401
1401
  "Invoice csv get": {
@@ -1420,7 +1420,7 @@ export interface operations {
1420
1420
  };
1421
1421
  };
1422
1422
  /**
1423
- * Get pending invoice
1423
+ * Pending Invoice (CSV)
1424
1424
  * @description Get an invoice as a CSV.
1425
1425
  */
1426
1426
  "Invoice pending csv get": {
@@ -1440,7 +1440,7 @@ export interface operations {
1440
1440
  };
1441
1441
  };
1442
1442
  /**
1443
- * Get return
1443
+ * Return
1444
1444
  * @description Get return.
1445
1445
  */
1446
1446
  "Return get": {
@@ -1468,7 +1468,7 @@ export interface operations {
1468
1468
  };
1469
1469
  };
1470
1470
  /**
1471
- * List return comments
1471
+ * List Return Comments
1472
1472
  * @description List return comments.
1473
1473
  */
1474
1474
  "Return comments get": {
@@ -1493,7 +1493,7 @@ export interface operations {
1493
1493
  };
1494
1494
  };
1495
1495
  /**
1496
- * Create return comment
1496
+ * Create Return Comment
1497
1497
  * @description Create return comment.
1498
1498
  */
1499
1499
  "Return comment create": {
@@ -1527,7 +1527,7 @@ export interface operations {
1527
1527
  };
1528
1528
  };
1529
1529
  /**
1530
- * Process return
1530
+ * Process Return
1531
1531
  * @description **BETA**: This endpoint is in beta and subject to change.
1532
1532
  *
1533
1533
  * Trigger processing of a return with specified products.
@@ -1591,7 +1591,7 @@ export interface operations {
1591
1591
  };
1592
1592
  };
1593
1593
  /**
1594
- * Get return status
1594
+ * Return Status
1595
1595
  * @description Get return status.
1596
1596
  */
1597
1597
  "Return status get": {
@@ -1618,7 +1618,7 @@ export interface operations {
1618
1618
  };
1619
1619
  };
1620
1620
  /**
1621
- * Update return status
1621
+ * Update Return Status
1622
1622
  * @description Update return status.
1623
1623
  */
1624
1624
  "Return status update": {
@@ -1648,7 +1648,7 @@ export interface operations {
1648
1648
  };
1649
1649
  };
1650
1650
  /**
1651
- * Navigate to merchant admin
1651
+ * Navigate to Merchant Admin
1652
1652
  * @description Navigate to the merchant admin page.
1653
1653
  */
1654
1654
  "Merchant admin navigate": {
@@ -1665,8 +1665,8 @@ export interface operations {
1665
1665
  };
1666
1666
  };
1667
1667
  /**
1668
- * Retrieve some rendered HTML and CSS for checkout buttons options for enabling and disabling coverage
1669
- * @description Generate HTML and CSS for checkout buttons
1668
+ * Checkout Buttons UI
1669
+ * @description Generate rendered HTML and CSS for checkout buttons.
1670
1670
  */
1671
1671
  "Checkout buttons UI": {
1672
1672
  parameters: {
@@ -1695,7 +1695,7 @@ export interface operations {
1695
1695
  };
1696
1696
  };
1697
1697
  /**
1698
- * Navigate to coverage info
1698
+ * Navigate to Coverage Info
1699
1699
  * @description Navigate to the coverage info page.
1700
1700
  */
1701
1701
  "Coverage info navigate": {
@@ -1712,7 +1712,7 @@ export interface operations {
1712
1712
  };
1713
1713
  };
1714
1714
  /**
1715
- * Get coverage products
1715
+ * Coverage Products
1716
1716
  * @description Get available coverage products.
1717
1717
  */
1718
1718
  "Coverage products": {
@@ -1795,7 +1795,7 @@ export interface operations {
1795
1795
  };
1796
1796
  };
1797
1797
  /**
1798
- * Navigate to customer portal
1798
+ * Navigate to Customer Portal
1799
1799
  * @description Navigate to the customer portal.
1800
1800
  */
1801
1801
  "Customer portal navigate": {
@@ -1818,7 +1818,7 @@ export interface operations {
1818
1818
  };
1819
1819
  };
1820
1820
  /**
1821
- * Update customer subscriptions
1821
+ * Update Customer Subscriptions
1822
1822
  * @description Update customer subscription status for SMS and email marketing and transactional messages. If the customer with that phone number or email does not exist, it will be created.
1823
1823
  */
1824
1824
  "Customer subscriptions update": {
@@ -1863,7 +1863,7 @@ export interface operations {
1863
1863
  };
1864
1864
  };
1865
1865
  /**
1866
- * Get invoice
1866
+ * List Invoices
1867
1867
  * @description Get a list of invoices.
1868
1868
  */
1869
1869
  "Invoice list": {
@@ -1890,7 +1890,7 @@ export interface operations {
1890
1890
  };
1891
1891
  };
1892
1892
  /**
1893
- * List returns
1893
+ * List Returns
1894
1894
  * @description List returns, sorted by most recent to least recent.
1895
1895
  */
1896
1896
  "Returns list": {
@@ -1931,7 +1931,7 @@ export interface operations {
1931
1931
  };
1932
1932
  };
1933
1933
  /**
1934
- * Download shipment document
1934
+ * Download Shipment Document
1935
1935
  * @description Get a shipment document (label, commercial invoice, etc).
1936
1936
  */
1937
1937
  "Shipment document download": {
@@ -1959,7 +1959,7 @@ export interface operations {
1959
1959
  };
1960
1960
  };
1961
1961
  /**
1962
- * Purchase shipping label
1962
+ * Purchase Shipping Label
1963
1963
  * @description Purchase a shipping label based on origin, destination, carrier, service, and parcel information.
1964
1964
  */
1965
1965
  "Shipment buy": {
@@ -2006,7 +2006,7 @@ export interface operations {
2006
2006
  };
2007
2007
  };
2008
2008
  /**
2009
- * Get shipping rates
2009
+ * Shipping Rates
2010
2010
  * @description Get available shipping rates based on origin, destination, and parcel information.
2011
2011
  */
2012
2012
  "Shipment rates": {
@@ -2047,7 +2047,7 @@ export interface operations {
2047
2047
  };
2048
2048
  };
2049
2049
  /**
2050
- * Receive storefront events
2050
+ * Receive Storefront Events
2051
2051
  * @description Processes events from storefronts using Shopify pixel event schema
2052
2052
  */
2053
2053
  "Storefront Event": {
@@ -2081,7 +2081,7 @@ export interface operations {
2081
2081
  };
2082
2082
  };
2083
2083
  /**
2084
- * List webhooks
2084
+ * List Webhooks
2085
2085
  * @description List webhooks for store.
2086
2086
  */
2087
2087
  "Webhooks list": {
@@ -2108,7 +2108,7 @@ export interface operations {
2108
2108
  };
2109
2109
  };
2110
2110
  /**
2111
- * Create or update webhook
2111
+ * Create or Update Webhook
2112
2112
  * @description Create webhook for store. Or if webhook already exists with `externalId`, update it.
2113
2113
  */
2114
2114
  "Webhook create": {
@@ -2150,7 +2150,7 @@ export interface operations {
2150
2150
  };
2151
2151
  };
2152
2152
  /**
2153
- * Get webhook
2153
+ * Webhook
2154
2154
  * @description Get a webhook.
2155
2155
  */
2156
2156
  "Webhook get": {
@@ -2171,7 +2171,7 @@ export interface operations {
2171
2171
  };
2172
2172
  };
2173
2173
  /**
2174
- * Update webhook
2174
+ * Update Webhook
2175
2175
  * @description Update a webhook.
2176
2176
  */
2177
2177
  "Webhook update": {
@@ -2201,7 +2201,7 @@ export interface operations {
2201
2201
  };
2202
2202
  };
2203
2203
  /**
2204
- * Delete webhook
2204
+ * Delete Webhook
2205
2205
  * @description Delete a webhook.
2206
2206
  */
2207
2207
  "Webhook delete": {
@@ -2218,7 +2218,7 @@ export interface operations {
2218
2218
  };
2219
2219
  };
2220
2220
  /**
2221
- * Replay webhook
2221
+ * Replay Webhook
2222
2222
  * @description Replay a webhook.
2223
2223
  */
2224
2224
  "Webhook replay": {
package/lib/openapi.yaml CHANGED
@@ -1599,9 +1599,9 @@ paths:
1599
1599
  description: Error
1600
1600
  security:
1601
1601
  - Bearer: []
1602
- summary: Get pending invoice
1602
+ summary: Pending Invoice (CSV)
1603
1603
  tags:
1604
- - Invoice
1604
+ - Invoices
1605
1605
  summary: Pending invoice
1606
1606
  /invoices/{invoiceId}/items.csv:
1607
1607
  description: Return invoice CSV file.
@@ -1626,9 +1626,9 @@ paths:
1626
1626
  description: Error
1627
1627
  security:
1628
1628
  - Bearer: []
1629
- summary: Get invoice
1629
+ summary: Invoice (CSV)
1630
1630
  tags:
1631
- - Invoice
1631
+ - Invoices
1632
1632
  summary: Invoice
1633
1633
  /returns/{returnId}:
1634
1634
  description: Return.
@@ -1658,7 +1658,7 @@ paths:
1658
1658
  description: Error
1659
1659
  security:
1660
1660
  - Bearer: []
1661
- summary: Get return
1661
+ summary: Return
1662
1662
  tags:
1663
1663
  - Returns
1664
1664
  parameters:
@@ -1685,7 +1685,7 @@ paths:
1685
1685
  - comments
1686
1686
  type: object
1687
1687
  description: Success
1688
- summary: List return comments
1688
+ summary: List Return Comments
1689
1689
  tags:
1690
1690
  - Returns
1691
1691
  parameters:
@@ -1724,7 +1724,7 @@ paths:
1724
1724
  description: Error
1725
1725
  security:
1726
1726
  - Bearer: []
1727
- summary: Create return comment
1727
+ summary: Create Return Comment
1728
1728
  tags:
1729
1729
  - Returns
1730
1730
  summary: Return comment
@@ -1806,7 +1806,7 @@ paths:
1806
1806
  description: Error
1807
1807
  security:
1808
1808
  - Bearer: []
1809
- summary: Process return
1809
+ summary: Process Return
1810
1810
  tags:
1811
1811
  - Returns
1812
1812
  summary: Process return
@@ -1837,7 +1837,7 @@ paths:
1837
1837
  description: Error
1838
1838
  security:
1839
1839
  - Bearer: []
1840
- summary: Get return status
1840
+ summary: Return Status
1841
1841
  tags:
1842
1842
  - Returns
1843
1843
  put:
@@ -1867,7 +1867,7 @@ paths:
1867
1867
  description: Error
1868
1868
  security:
1869
1869
  - Bearer: []
1870
- summary: Update return status
1870
+ summary: Update Return Status
1871
1871
  tags:
1872
1872
  - Returns
1873
1873
  summary: Return status
@@ -1881,14 +1881,14 @@ paths:
1881
1881
  responses:
1882
1882
  '302':
1883
1883
  description: Redirect
1884
- summary: Navigate to merchant admin
1884
+ summary: Navigate to Merchant Admin
1885
1885
  tags:
1886
- - Merchant admin
1886
+ - Merchant Admin
1887
1887
  summary: Merchant admin
1888
1888
  /stores/{storeId}/checkout-buttons-ui:
1889
- description: Generate HTML and CSS for checkout buttons
1889
+ description: Generate HTML and CSS for checkout buttons to enable or disable returns coverage.
1890
1890
  get:
1891
- description: Generate HTML and CSS for checkout buttons
1891
+ description: Generate rendered HTML and CSS for checkout buttons.
1892
1892
  operationId: Checkout buttons UI
1893
1893
  parameters:
1894
1894
  - $ref: '#/components/parameters/store-id.param'
@@ -1907,10 +1907,9 @@ paths:
1907
1907
  title: Checkout buttons HTML
1908
1908
  type: string
1909
1909
  description: Success
1910
- summary: Retrieve some rendered HTML and CSS for checkout buttons options for enabling and disabling coverage
1910
+ summary: Checkout Buttons UI
1911
1911
  tags:
1912
- - Checkout buttons
1913
- - UI
1912
+ - Checkout Buttons
1914
1913
  summary: Checkout buttons UI
1915
1914
  /stores/{storeId}/coverage-info:
1916
1915
  description: Navigate to the coverage info page.
@@ -1922,9 +1921,9 @@ paths:
1922
1921
  responses:
1923
1922
  '302':
1924
1923
  description: Redirect
1925
- summary: Navigate to coverage info
1924
+ summary: Navigate to Coverage Info
1926
1925
  tags:
1927
- - Coverage info
1926
+ - Coverage Info
1928
1927
  summary: Coverage info
1929
1928
  /stores/{storeId}/coverage-products:
1930
1929
  description: Available coverage products.
@@ -2011,9 +2010,9 @@ paths:
2011
2010
  schema:
2012
2011
  $ref: '#/components/schemas/error.schema'
2013
2012
  description: Error
2014
- summary: Get coverage products
2013
+ summary: Coverage Products
2015
2014
  tags:
2016
- - Coverage products
2015
+ - Coverage Products
2017
2016
  summary: Coverage products
2018
2017
  /stores/{storeId}/customer-portal:
2019
2018
  description: Navigate to the customer portal.
@@ -2035,9 +2034,9 @@ paths:
2035
2034
  responses:
2036
2035
  '302':
2037
2036
  description: Redirect
2038
- summary: Navigate to customer portal
2037
+ summary: Navigate to Customer Portal
2039
2038
  tags:
2040
- - Customer portal
2039
+ - Customer Portal
2041
2040
  summary: Customer portal
2042
2041
  /stores/{storeId}/customer-subscriptions:
2043
2042
  description: Update customer subscription preferences for marketing and transactional messages.
@@ -2084,9 +2083,9 @@ paths:
2084
2083
  description: Error
2085
2084
  security:
2086
2085
  - Bearer: []
2087
- summary: Update customer subscriptions
2086
+ summary: Update Customer Subscriptions
2088
2087
  tags:
2089
- - Customer subscriptions
2088
+ - Customer Subscriptions
2090
2089
  summary: Customer subscriptions
2091
2090
  /stores/{storeId}/invoices:
2092
2091
  description: Return a list of invoices.
@@ -2117,9 +2116,9 @@ paths:
2117
2116
  description: Error
2118
2117
  security:
2119
2118
  - Bearer: []
2120
- summary: Get invoice
2119
+ summary: List Invoices
2121
2120
  tags:
2122
- - Invoice
2121
+ - Invoices
2123
2122
  summary: Invoice
2124
2123
  /stores/{storeId}/returns:
2125
2124
  description: List of returns for store.
@@ -2163,7 +2162,7 @@ paths:
2163
2162
  description: Error
2164
2163
  security:
2165
2164
  - Bearer: []
2166
- summary: List returns
2165
+ summary: List Returns
2167
2166
  tags:
2168
2167
  - Returns
2169
2168
  parameters:
@@ -2235,7 +2234,7 @@ paths:
2235
2234
  description: Error
2236
2235
  security:
2237
2236
  - Bearer: []
2238
- summary: Purchase shipping label
2237
+ summary: Purchase Shipping Label
2239
2238
  tags:
2240
2239
  - Shipping
2241
2240
  summary: Shipment Buy
@@ -2296,7 +2295,7 @@ paths:
2296
2295
  description: Error
2297
2296
  security:
2298
2297
  - Bearer: []
2299
- summary: Get shipping rates
2298
+ summary: Shipping Rates
2300
2299
  tags:
2301
2300
  - Shipping
2302
2301
  summary: Shipment Rates
@@ -2328,7 +2327,7 @@ paths:
2328
2327
  description: Error
2329
2328
  security:
2330
2329
  - Bearer: []
2331
- summary: Download shipment document
2330
+ summary: Download Shipment Document
2332
2331
  tags:
2333
2332
  - Shipping
2334
2333
  parameters:
@@ -2363,7 +2362,7 @@ paths:
2363
2362
  description: Error
2364
2363
  security:
2365
2364
  - Bearer: []
2366
- summary: Receive storefront events
2365
+ summary: Receive Storefront Events
2367
2366
  tags:
2368
2367
  - Storefront
2369
2368
  /stores/{storeId}/webhooks:
@@ -2391,7 +2390,7 @@ paths:
2391
2390
  schema:
2392
2391
  $ref: '#/components/schemas/error.schema'
2393
2392
  description: Error
2394
- summary: List webhooks
2393
+ summary: List Webhooks
2395
2394
  tags:
2396
2395
  - Webhooks
2397
2396
  parameters:
@@ -2435,7 +2434,7 @@ paths:
2435
2434
  description: Error
2436
2435
  security:
2437
2436
  - Bearer: []
2438
- summary: Create or update webhook
2437
+ summary: Create or Update Webhook
2439
2438
  tags:
2440
2439
  - Webhooks
2441
2440
  summary: Webhooks
@@ -2450,7 +2449,7 @@ paths:
2450
2449
  description: Deleted
2451
2450
  security:
2452
2451
  - Bearer: []
2453
- summary: Delete webhook
2452
+ summary: Delete Webhook
2454
2453
  tags:
2455
2454
  - Webhooks
2456
2455
  description: Webhook.
@@ -2471,7 +2470,7 @@ paths:
2471
2470
  - webhook
2472
2471
  type: object
2473
2472
  description: Success
2474
- summary: Get webhook
2473
+ summary: Webhook
2475
2474
  tags:
2476
2475
  - Webhooks
2477
2476
  put:
@@ -2499,7 +2498,7 @@ paths:
2499
2498
  schema:
2500
2499
  $ref: '#/components/schemas/error.schema'
2501
2500
  description: Error
2502
- summary: Update webhook
2501
+ summary: Update Webhook
2503
2502
  tags:
2504
2503
  - Webhooks
2505
2504
  summary: Webhook
@@ -2531,7 +2530,7 @@ paths:
2531
2530
  schema:
2532
2531
  $ref: '#/components/schemas/error.schema'
2533
2532
  description: Error
2534
- summary: Replay webhook
2533
+ summary: Replay Webhook
2535
2534
  tags:
2536
2535
  - Webhooks
2537
2536
  summary: Webhook replay
package/package.json CHANGED
@@ -31,5 +31,5 @@
31
31
  ]
32
32
  }
33
33
  },
34
- "version": "2.2.238"
34
+ "version": "2.2.245"
35
35
  }