@unified-api/typescript-sdk 1.0.0 → 1.0.2

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 (196) hide show
  1. package/README.md +54 -700
  2. package/dist/sdk/accounting.d.ts +0 -40
  3. package/dist/sdk/accounting.js +44 -696
  4. package/dist/sdk/link.d.ts +31 -0
  5. package/dist/sdk/link.js +503 -0
  6. package/dist/sdk/models/operations/{createaccountingpayment.d.ts → createpaymentlink.d.ts} +7 -7
  7. package/dist/sdk/models/operations/createpaymentlink.js +95 -0
  8. package/dist/sdk/models/operations/createpaymentpayment.d.ts +28 -0
  9. package/dist/sdk/models/operations/{createaccountingpayment.js → createpaymentpayment.js} +20 -20
  10. package/dist/sdk/models/operations/getpaymentlink.d.ts +35 -0
  11. package/dist/sdk/models/operations/getpaymentlink.js +99 -0
  12. package/dist/sdk/models/operations/{getaccountingpayment.d.ts → getpaymentpayment.d.ts} +6 -6
  13. package/dist/sdk/models/operations/{getaccountingpayment.js → getpaymentpayment.js} +20 -20
  14. package/dist/sdk/models/operations/{getaccountingpayout.d.ts → getpaymentpayout.d.ts} +6 -6
  15. package/dist/sdk/models/operations/{getaccountingpayout.js → getpaymentpayout.js} +20 -20
  16. package/dist/sdk/models/operations/{getaccountingrefund.d.ts → getpaymentrefund.d.ts} +6 -6
  17. package/dist/sdk/models/operations/{getaccountingrefund.js → getpaymentrefund.js} +20 -20
  18. package/dist/sdk/models/operations/getunifiedintegrationauth.d.ts +6 -4
  19. package/dist/sdk/models/operations/getunifiedintegrationauth.js +6 -4
  20. package/dist/sdk/models/operations/index.d.ts +16 -10
  21. package/dist/sdk/models/operations/index.js +16 -10
  22. package/dist/sdk/models/operations/listpaymentlinks.d.ts +51 -0
  23. package/dist/sdk/models/operations/listpaymentlinks.js +127 -0
  24. package/dist/sdk/models/operations/{listaccountingpayments.d.ts → listpaymentpayments.d.ts} +6 -6
  25. package/dist/sdk/models/operations/{listaccountingpayments.js → listpaymentpayments.js} +28 -28
  26. package/dist/sdk/models/operations/{listaccountingpayouts.d.ts → listpaymentpayouts.d.ts} +6 -6
  27. package/dist/sdk/models/operations/{listaccountingpayouts.js → listpaymentpayouts.js} +26 -26
  28. package/dist/sdk/models/operations/{listaccountingrefunds.d.ts → listpaymentrefunds.d.ts} +6 -6
  29. package/dist/sdk/models/operations/{listaccountingrefunds.js → listpaymentrefunds.js} +27 -27
  30. package/dist/sdk/models/operations/listunifiedconnections.d.ts +2 -1
  31. package/dist/sdk/models/operations/listunifiedconnections.js +1 -0
  32. package/dist/sdk/models/operations/listunifiedintegrations.d.ts +2 -1
  33. package/dist/sdk/models/operations/listunifiedintegrations.js +1 -0
  34. package/dist/sdk/models/operations/listunifiedintegrationworkspaces.d.ts +2 -1
  35. package/dist/sdk/models/operations/listunifiedintegrationworkspaces.js +1 -0
  36. package/dist/sdk/models/operations/patchpaymentlink.d.ts +32 -0
  37. package/dist/sdk/models/operations/patchpaymentlink.js +99 -0
  38. package/dist/sdk/models/operations/{patchaccountingpayment.d.ts → patchpaymentpayment.d.ts} +7 -7
  39. package/dist/sdk/models/operations/{patchaccountingpayment.js → patchpaymentpayment.js} +21 -21
  40. package/dist/sdk/models/operations/removepaymentlink.d.ts +30 -0
  41. package/dist/sdk/models/operations/{removeaccountingpayment.js → removepaymentlink.js} +17 -17
  42. package/dist/sdk/models/operations/{removeaccountingpayment.d.ts → removepaymentpayment.d.ts} +2 -2
  43. package/dist/sdk/models/operations/removepaymentpayment.js +71 -0
  44. package/dist/sdk/models/operations/updatepaymentlink.d.ts +32 -0
  45. package/dist/sdk/models/operations/updatepaymentlink.js +99 -0
  46. package/dist/sdk/models/operations/{updateaccountingpayment.d.ts → updatepaymentpayment.d.ts} +7 -7
  47. package/dist/sdk/models/operations/{updateaccountingpayment.js → updatepaymentpayment.js} +21 -21
  48. package/dist/sdk/models/shared/accountinginvoice.d.ts +1 -0
  49. package/dist/sdk/models/shared/accountinginvoice.js +5 -0
  50. package/dist/sdk/models/shared/index.d.ts +5 -3
  51. package/dist/sdk/models/shared/index.js +5 -3
  52. package/dist/sdk/models/shared/paymenntlinklineitem.d.ts +20 -0
  53. package/dist/sdk/models/shared/paymenntlinklineitem.js +137 -0
  54. package/dist/sdk/models/shared/paymentlink.d.ts +15 -0
  55. package/dist/sdk/models/shared/paymentlink.js +105 -0
  56. package/dist/sdk/models/shared/{accountingpayment.d.ts → paymentpayment.d.ts} +1 -1
  57. package/dist/sdk/models/shared/{accountingpayment.js → paymentpayment.js} +18 -18
  58. package/dist/sdk/models/shared/{accountingpayout.d.ts → paymentpayout.d.ts} +3 -3
  59. package/dist/sdk/models/shared/{accountingpayout.js → paymentpayout.js} +21 -21
  60. package/dist/sdk/models/shared/{accountingrefund.d.ts → paymentrefund.d.ts} +3 -3
  61. package/dist/sdk/models/shared/{accountingrefund.js → paymentrefund.js} +23 -23
  62. package/dist/sdk/models/shared/propertyconnectioncategories.d.ts +2 -1
  63. package/dist/sdk/models/shared/propertyconnectioncategories.js +1 -0
  64. package/dist/sdk/models/shared/propertyconnectionpermissions.d.ts +6 -4
  65. package/dist/sdk/models/shared/propertyconnectionpermissions.js +6 -4
  66. package/dist/sdk/models/shared/propertyintegrationcategories.d.ts +2 -1
  67. package/dist/sdk/models/shared/propertyintegrationcategories.js +1 -0
  68. package/dist/sdk/models/shared/webhook.d.ts +4 -3
  69. package/dist/sdk/models/shared/webhook.js +4 -3
  70. package/dist/sdk/payment.d.ts +46 -6
  71. package/dist/sdk/payment.js +705 -53
  72. package/dist/sdk/payout.d.ts +2 -2
  73. package/dist/sdk/payout.js +11 -11
  74. package/dist/sdk/refund.d.ts +2 -2
  75. package/dist/sdk/refund.js +11 -11
  76. package/dist/sdk/sdk.d.ts +5 -3
  77. package/dist/sdk/sdk.js +7 -5
  78. package/docs/sdk/models/operations/categories.md +2 -1
  79. package/docs/sdk/models/operations/createpaymentlinkrequest.md +9 -0
  80. package/docs/sdk/models/operations/createpaymentlinkresponse.md +11 -0
  81. package/docs/sdk/models/operations/createpaymentpaymentrequest.md +9 -0
  82. package/docs/sdk/models/operations/createpaymentpaymentresponse.md +11 -0
  83. package/docs/sdk/models/operations/getpaymentlinkrequest.md +10 -0
  84. package/docs/sdk/models/operations/getpaymentlinkresponse.md +11 -0
  85. package/docs/sdk/models/operations/{getaccountingpaymentrequest.md → getpaymentpaymentrequest.md} +1 -1
  86. package/docs/sdk/models/operations/getpaymentpaymentresponse.md +11 -0
  87. package/docs/sdk/models/operations/{getaccountingpayoutrequest.md → getpaymentpayoutrequest.md} +1 -1
  88. package/docs/sdk/models/operations/getpaymentpayoutresponse.md +11 -0
  89. package/docs/sdk/models/operations/{getaccountingrefundrequest.md → getpaymentrefundrequest.md} +1 -1
  90. package/docs/sdk/models/operations/getpaymentrefundresponse.md +11 -0
  91. package/docs/sdk/models/operations/listpaymentlinksrequest.md +17 -0
  92. package/docs/sdk/models/operations/listpaymentlinksresponse.md +11 -0
  93. package/docs/sdk/models/operations/{listaccountingpaymentsrequest.md → listpaymentpaymentsrequest.md} +1 -1
  94. package/docs/sdk/models/operations/listpaymentpaymentsresponse.md +11 -0
  95. package/docs/sdk/models/operations/{listaccountingpayoutsrequest.md → listpaymentpayoutsrequest.md} +1 -1
  96. package/docs/sdk/models/operations/listpaymentpayoutsresponse.md +11 -0
  97. package/docs/sdk/models/operations/{listaccountingrefundsrequest.md → listpaymentrefundsrequest.md} +1 -1
  98. package/docs/sdk/models/operations/listpaymentrefundsresponse.md +11 -0
  99. package/docs/sdk/models/operations/listunifiedintegrationsqueryparamcategories.md +2 -1
  100. package/docs/sdk/models/operations/patchpaymentlinkrequest.md +10 -0
  101. package/docs/sdk/models/operations/patchpaymentlinkresponse.md +11 -0
  102. package/docs/sdk/models/operations/patchpaymentpaymentrequest.md +10 -0
  103. package/docs/sdk/models/operations/patchpaymentpaymentresponse.md +11 -0
  104. package/docs/sdk/models/operations/queryparamcategories.md +2 -1
  105. package/docs/sdk/models/operations/{removeaccountingpaymentrequest.md → removepaymentlinkrequest.md} +2 -2
  106. package/docs/sdk/models/operations/{removeaccountingpaymentresponse.md → removepaymentlinkresponse.md} +1 -1
  107. package/docs/sdk/models/operations/removepaymentpaymentrequest.md +9 -0
  108. package/docs/sdk/models/operations/removepaymentpaymentresponse.md +11 -0
  109. package/docs/sdk/models/operations/scopes.md +6 -4
  110. package/docs/sdk/models/operations/updatepaymentlinkrequest.md +10 -0
  111. package/docs/sdk/models/operations/updatepaymentlinkresponse.md +11 -0
  112. package/docs/sdk/models/operations/updatepaymentpaymentrequest.md +10 -0
  113. package/docs/sdk/models/operations/updatepaymentpaymentresponse.md +11 -0
  114. package/docs/sdk/models/shared/accountinginvoice.md +2 -1
  115. package/docs/sdk/models/shared/objecttype.md +4 -3
  116. package/docs/sdk/models/shared/paymenntlinklineitem.md +24 -0
  117. package/docs/sdk/models/shared/paymentlink.md +18 -0
  118. package/docs/sdk/models/shared/{accountingpayment.md → paymentpayment.md} +1 -1
  119. package/docs/sdk/models/shared/paymentpayout.md +15 -0
  120. package/docs/sdk/models/shared/{accountingpayoutstatus.md → paymentpayoutstatus.md} +1 -1
  121. package/docs/sdk/models/shared/paymentrefund.md +17 -0
  122. package/docs/sdk/models/shared/{accountingrefundstatus.md → paymentrefundstatus.md} +1 -1
  123. package/docs/sdk/models/shared/propertyconnectioncategories.md +2 -1
  124. package/docs/sdk/models/shared/propertyconnectionpermissions.md +6 -4
  125. package/docs/sdk/models/shared/propertyintegrationcategories.md +2 -1
  126. package/package.json +1 -1
  127. package/docs/sdk/models/operations/createaccountingpaymentrequest.md +0 -9
  128. package/docs/sdk/models/operations/createaccountingpaymentresponse.md +0 -11
  129. package/docs/sdk/models/operations/getaccountingpaymentresponse.md +0 -11
  130. package/docs/sdk/models/operations/getaccountingpayoutresponse.md +0 -11
  131. package/docs/sdk/models/operations/getaccountingrefundresponse.md +0 -11
  132. package/docs/sdk/models/operations/listaccountingpaymentsresponse.md +0 -11
  133. package/docs/sdk/models/operations/listaccountingpayoutsresponse.md +0 -11
  134. package/docs/sdk/models/operations/listaccountingrefundsresponse.md +0 -11
  135. package/docs/sdk/models/operations/patchaccountingpaymentrequest.md +0 -10
  136. package/docs/sdk/models/operations/patchaccountingpaymentresponse.md +0 -11
  137. package/docs/sdk/models/operations/updateaccountingpaymentrequest.md +0 -10
  138. package/docs/sdk/models/operations/updateaccountingpaymentresponse.md +0 -11
  139. package/docs/sdk/models/shared/accountingpayout.md +0 -15
  140. package/docs/sdk/models/shared/accountingrefund.md +0 -17
  141. package/docs/sdks/account/README.md +0 -312
  142. package/docs/sdks/accounting/README.md +0 -2198
  143. package/docs/sdks/activity/README.md +0 -321
  144. package/docs/sdks/apicall/README.md +0 -95
  145. package/docs/sdks/application/README.md +0 -333
  146. package/docs/sdks/applicationstatus/README.md +0 -54
  147. package/docs/sdks/ats/README.md +0 -2488
  148. package/docs/sdks/auth/README.md +0 -103
  149. package/docs/sdks/call/README.md +0 -54
  150. package/docs/sdks/candidate/README.md +0 -369
  151. package/docs/sdks/collection/README.md +0 -348
  152. package/docs/sdks/commerce/README.md +0 -1371
  153. package/docs/sdks/company/README.md +0 -517
  154. package/docs/sdks/connection/README.md +0 -359
  155. package/docs/sdks/contact/README.md +0 -1028
  156. package/docs/sdks/crm/README.md +0 -2048
  157. package/docs/sdks/customer/README.md +0 -348
  158. package/docs/sdks/deal/README.md +0 -315
  159. package/docs/sdks/document/README.md +0 -309
  160. package/docs/sdks/employee/README.md +0 -363
  161. package/docs/sdks/enrich/README.md +0 -97
  162. package/docs/sdks/event/README.md +0 -390
  163. package/docs/sdks/file/README.md +0 -330
  164. package/docs/sdks/group/README.md +0 -327
  165. package/docs/sdks/hris/README.md +0 -685
  166. package/docs/sdks/integration/README.md +0 -155
  167. package/docs/sdks/interview/README.md +0 -318
  168. package/docs/sdks/inventory/README.md +0 -309
  169. package/docs/sdks/invoice/README.md +0 -324
  170. package/docs/sdks/issue/README.md +0 -49
  171. package/docs/sdks/item/README.md +0 -417
  172. package/docs/sdks/job/README.md +0 -396
  173. package/docs/sdks/lead/README.md +0 -336
  174. package/docs/sdks/list/README.md +0 -306
  175. package/docs/sdks/location/README.md +0 -312
  176. package/docs/sdks/login/README.md +0 -52
  177. package/docs/sdks/martech/README.md +0 -643
  178. package/docs/sdks/member/README.md +0 -342
  179. package/docs/sdks/note/README.md +0 -306
  180. package/docs/sdks/organization/README.md +0 -104
  181. package/docs/sdks/passthrough/README.md +0 -249
  182. package/docs/sdks/payment/README.md +0 -306
  183. package/docs/sdks/payout/README.md +0 -104
  184. package/docs/sdks/person/README.md +0 -51
  185. package/docs/sdks/pipeline/README.md +0 -306
  186. package/docs/sdks/refund/README.md +0 -104
  187. package/docs/sdks/scorecard/README.md +0 -324
  188. package/docs/sdks/storage/README.md +0 -330
  189. package/docs/sdks/taxrate/README.md +0 -312
  190. package/docs/sdks/ticket/README.md +0 -318
  191. package/docs/sdks/ticketing/README.md +0 -962
  192. package/docs/sdks/transaction/README.md +0 -327
  193. package/docs/sdks/uc/README.md +0 -388
  194. package/docs/sdks/unified/README.md +0 -929
  195. package/docs/sdks/unifiedto/README.md +0 -9
  196. package/docs/sdks/webhook/README.md +0 -291
@@ -50,70 +50,70 @@ var __metadata = (this && this.__metadata) || function (k, v) {
50
50
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
51
51
  };
52
52
  Object.defineProperty(exports, "__esModule", { value: true });
53
- exports.ListAccountingPayoutsResponse = exports.ListAccountingPayoutsRequest = void 0;
53
+ exports.ListPaymentPayoutsResponse = exports.ListPaymentPayoutsRequest = void 0;
54
54
  var utils_1 = require("../../../internal/utils");
55
55
  var shared = __importStar(require("../../../sdk/models/shared"));
56
- var ListAccountingPayoutsRequest = /** @class */ (function (_super) {
57
- __extends(ListAccountingPayoutsRequest, _super);
58
- function ListAccountingPayoutsRequest() {
56
+ var ListPaymentPayoutsRequest = /** @class */ (function (_super) {
57
+ __extends(ListPaymentPayoutsRequest, _super);
58
+ function ListPaymentPayoutsRequest() {
59
59
  return _super !== null && _super.apply(this, arguments) || this;
60
60
  }
61
61
  __decorate([
62
62
  (0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=connection_id" }),
63
63
  __metadata("design:type", String)
64
- ], ListAccountingPayoutsRequest.prototype, "connectionId", void 0);
64
+ ], ListPaymentPayoutsRequest.prototype, "connectionId", void 0);
65
65
  __decorate([
66
66
  (0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=fields" }),
67
67
  __metadata("design:type", Array)
68
- ], ListAccountingPayoutsRequest.prototype, "fields", void 0);
68
+ ], ListPaymentPayoutsRequest.prototype, "fields", void 0);
69
69
  __decorate([
70
70
  (0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=limit" }),
71
71
  __metadata("design:type", Number)
72
- ], ListAccountingPayoutsRequest.prototype, "limit", void 0);
72
+ ], ListPaymentPayoutsRequest.prototype, "limit", void 0);
73
73
  __decorate([
74
74
  (0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=offset" }),
75
75
  __metadata("design:type", Number)
76
- ], ListAccountingPayoutsRequest.prototype, "offset", void 0);
76
+ ], ListPaymentPayoutsRequest.prototype, "offset", void 0);
77
77
  __decorate([
78
78
  (0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=order" }),
79
79
  __metadata("design:type", String)
80
- ], ListAccountingPayoutsRequest.prototype, "order", void 0);
80
+ ], ListPaymentPayoutsRequest.prototype, "order", void 0);
81
81
  __decorate([
82
82
  (0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=query" }),
83
83
  __metadata("design:type", String)
84
- ], ListAccountingPayoutsRequest.prototype, "query", void 0);
84
+ ], ListPaymentPayoutsRequest.prototype, "query", void 0);
85
85
  __decorate([
86
86
  (0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=sort" }),
87
87
  __metadata("design:type", String)
88
- ], ListAccountingPayoutsRequest.prototype, "sort", void 0);
88
+ ], ListPaymentPayoutsRequest.prototype, "sort", void 0);
89
89
  __decorate([
90
90
  (0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=updated_gte" }),
91
91
  __metadata("design:type", Date)
92
- ], ListAccountingPayoutsRequest.prototype, "updatedGte", void 0);
93
- return ListAccountingPayoutsRequest;
92
+ ], ListPaymentPayoutsRequest.prototype, "updatedGte", void 0);
93
+ return ListPaymentPayoutsRequest;
94
94
  }(utils_1.SpeakeasyBase));
95
- exports.ListAccountingPayoutsRequest = ListAccountingPayoutsRequest;
96
- var ListAccountingPayoutsResponse = /** @class */ (function (_super) {
97
- __extends(ListAccountingPayoutsResponse, _super);
98
- function ListAccountingPayoutsResponse() {
95
+ exports.ListPaymentPayoutsRequest = ListPaymentPayoutsRequest;
96
+ var ListPaymentPayoutsResponse = /** @class */ (function (_super) {
97
+ __extends(ListPaymentPayoutsResponse, _super);
98
+ function ListPaymentPayoutsResponse() {
99
99
  return _super !== null && _super.apply(this, arguments) || this;
100
100
  }
101
- __decorate([
102
- (0, utils_1.SpeakeasyMetadata)({ elemType: shared.AccountingPayout }),
103
- __metadata("design:type", Array)
104
- ], ListAccountingPayoutsResponse.prototype, "accountingPayouts", void 0);
105
101
  __decorate([
106
102
  (0, utils_1.SpeakeasyMetadata)(),
107
103
  __metadata("design:type", String)
108
- ], ListAccountingPayoutsResponse.prototype, "contentType", void 0);
104
+ ], ListPaymentPayoutsResponse.prototype, "contentType", void 0);
105
+ __decorate([
106
+ (0, utils_1.SpeakeasyMetadata)({ elemType: shared.PaymentPayout }),
107
+ __metadata("design:type", Array)
108
+ ], ListPaymentPayoutsResponse.prototype, "paymentPayouts", void 0);
109
109
  __decorate([
110
110
  (0, utils_1.SpeakeasyMetadata)(),
111
111
  __metadata("design:type", Number)
112
- ], ListAccountingPayoutsResponse.prototype, "statusCode", void 0);
112
+ ], ListPaymentPayoutsResponse.prototype, "statusCode", void 0);
113
113
  __decorate([
114
114
  (0, utils_1.SpeakeasyMetadata)(),
115
115
  __metadata("design:type", Object)
116
- ], ListAccountingPayoutsResponse.prototype, "rawResponse", void 0);
117
- return ListAccountingPayoutsResponse;
116
+ ], ListPaymentPayoutsResponse.prototype, "rawResponse", void 0);
117
+ return ListPaymentPayoutsResponse;
118
118
  }(utils_1.SpeakeasyBase));
119
- exports.ListAccountingPayoutsResponse = ListAccountingPayoutsResponse;
119
+ exports.ListPaymentPayoutsResponse = ListPaymentPayoutsResponse;
@@ -1,7 +1,7 @@
1
1
  import { SpeakeasyBase } from "../../../internal/utils";
2
2
  import * as shared from "../../../sdk/models/shared";
3
3
  import { AxiosResponse } from "axios";
4
- export declare class ListAccountingRefundsRequest extends SpeakeasyBase {
4
+ export declare class ListPaymentRefundsRequest extends SpeakeasyBase {
5
5
  /**
6
6
  * ID of the connection
7
7
  */
@@ -27,15 +27,15 @@ export declare class ListAccountingRefundsRequest extends SpeakeasyBase {
27
27
  */
28
28
  updatedGte?: Date;
29
29
  }
30
- export declare class ListAccountingRefundsResponse extends SpeakeasyBase {
31
- /**
32
- * Successful
33
- */
34
- accountingRefunds?: shared.AccountingRefund[];
30
+ export declare class ListPaymentRefundsResponse extends SpeakeasyBase {
35
31
  /**
36
32
  * HTTP response content type for this operation
37
33
  */
38
34
  contentType: string;
35
+ /**
36
+ * Successful
37
+ */
38
+ paymentRefunds?: shared.PaymentRefund[];
39
39
  /**
40
40
  * HTTP response status code for this operation
41
41
  */
@@ -50,74 +50,74 @@ var __metadata = (this && this.__metadata) || function (k, v) {
50
50
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
51
51
  };
52
52
  Object.defineProperty(exports, "__esModule", { value: true });
53
- exports.ListAccountingRefundsResponse = exports.ListAccountingRefundsRequest = void 0;
53
+ exports.ListPaymentRefundsResponse = exports.ListPaymentRefundsRequest = void 0;
54
54
  var utils_1 = require("../../../internal/utils");
55
55
  var shared = __importStar(require("../../../sdk/models/shared"));
56
- var ListAccountingRefundsRequest = /** @class */ (function (_super) {
57
- __extends(ListAccountingRefundsRequest, _super);
58
- function ListAccountingRefundsRequest() {
56
+ var ListPaymentRefundsRequest = /** @class */ (function (_super) {
57
+ __extends(ListPaymentRefundsRequest, _super);
58
+ function ListPaymentRefundsRequest() {
59
59
  return _super !== null && _super.apply(this, arguments) || this;
60
60
  }
61
61
  __decorate([
62
62
  (0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=connection_id" }),
63
63
  __metadata("design:type", String)
64
- ], ListAccountingRefundsRequest.prototype, "connectionId", void 0);
64
+ ], ListPaymentRefundsRequest.prototype, "connectionId", void 0);
65
65
  __decorate([
66
66
  (0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=fields" }),
67
67
  __metadata("design:type", Array)
68
- ], ListAccountingRefundsRequest.prototype, "fields", void 0);
68
+ ], ListPaymentRefundsRequest.prototype, "fields", void 0);
69
69
  __decorate([
70
70
  (0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=limit" }),
71
71
  __metadata("design:type", Number)
72
- ], ListAccountingRefundsRequest.prototype, "limit", void 0);
72
+ ], ListPaymentRefundsRequest.prototype, "limit", void 0);
73
73
  __decorate([
74
74
  (0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=offset" }),
75
75
  __metadata("design:type", Number)
76
- ], ListAccountingRefundsRequest.prototype, "offset", void 0);
76
+ ], ListPaymentRefundsRequest.prototype, "offset", void 0);
77
77
  __decorate([
78
78
  (0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=order" }),
79
79
  __metadata("design:type", String)
80
- ], ListAccountingRefundsRequest.prototype, "order", void 0);
80
+ ], ListPaymentRefundsRequest.prototype, "order", void 0);
81
81
  __decorate([
82
82
  (0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=payment_id" }),
83
83
  __metadata("design:type", String)
84
- ], ListAccountingRefundsRequest.prototype, "paymentId", void 0);
84
+ ], ListPaymentRefundsRequest.prototype, "paymentId", void 0);
85
85
  __decorate([
86
86
  (0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=query" }),
87
87
  __metadata("design:type", String)
88
- ], ListAccountingRefundsRequest.prototype, "query", void 0);
88
+ ], ListPaymentRefundsRequest.prototype, "query", void 0);
89
89
  __decorate([
90
90
  (0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=sort" }),
91
91
  __metadata("design:type", String)
92
- ], ListAccountingRefundsRequest.prototype, "sort", void 0);
92
+ ], ListPaymentRefundsRequest.prototype, "sort", void 0);
93
93
  __decorate([
94
94
  (0, utils_1.SpeakeasyMetadata)({ data: "queryParam, style=form;explode=true;name=updated_gte" }),
95
95
  __metadata("design:type", Date)
96
- ], ListAccountingRefundsRequest.prototype, "updatedGte", void 0);
97
- return ListAccountingRefundsRequest;
96
+ ], ListPaymentRefundsRequest.prototype, "updatedGte", void 0);
97
+ return ListPaymentRefundsRequest;
98
98
  }(utils_1.SpeakeasyBase));
99
- exports.ListAccountingRefundsRequest = ListAccountingRefundsRequest;
100
- var ListAccountingRefundsResponse = /** @class */ (function (_super) {
101
- __extends(ListAccountingRefundsResponse, _super);
102
- function ListAccountingRefundsResponse() {
99
+ exports.ListPaymentRefundsRequest = ListPaymentRefundsRequest;
100
+ var ListPaymentRefundsResponse = /** @class */ (function (_super) {
101
+ __extends(ListPaymentRefundsResponse, _super);
102
+ function ListPaymentRefundsResponse() {
103
103
  return _super !== null && _super.apply(this, arguments) || this;
104
104
  }
105
- __decorate([
106
- (0, utils_1.SpeakeasyMetadata)({ elemType: shared.AccountingRefund }),
107
- __metadata("design:type", Array)
108
- ], ListAccountingRefundsResponse.prototype, "accountingRefunds", void 0);
109
105
  __decorate([
110
106
  (0, utils_1.SpeakeasyMetadata)(),
111
107
  __metadata("design:type", String)
112
- ], ListAccountingRefundsResponse.prototype, "contentType", void 0);
108
+ ], ListPaymentRefundsResponse.prototype, "contentType", void 0);
109
+ __decorate([
110
+ (0, utils_1.SpeakeasyMetadata)({ elemType: shared.PaymentRefund }),
111
+ __metadata("design:type", Array)
112
+ ], ListPaymentRefundsResponse.prototype, "paymentRefunds", void 0);
113
113
  __decorate([
114
114
  (0, utils_1.SpeakeasyMetadata)(),
115
115
  __metadata("design:type", Number)
116
- ], ListAccountingRefundsResponse.prototype, "statusCode", void 0);
116
+ ], ListPaymentRefundsResponse.prototype, "statusCode", void 0);
117
117
  __decorate([
118
118
  (0, utils_1.SpeakeasyMetadata)(),
119
119
  __metadata("design:type", Object)
120
- ], ListAccountingRefundsResponse.prototype, "rawResponse", void 0);
121
- return ListAccountingRefundsResponse;
120
+ ], ListPaymentRefundsResponse.prototype, "rawResponse", void 0);
121
+ return ListPaymentRefundsResponse;
122
122
  }(utils_1.SpeakeasyBase));
123
- exports.ListAccountingRefundsResponse = ListAccountingRefundsResponse;
123
+ exports.ListPaymentRefundsResponse = ListPaymentRefundsResponse;
@@ -13,7 +13,8 @@ export declare enum Categories {
13
13
  Uc = "uc",
14
14
  Accounting = "accounting",
15
15
  Storage = "storage",
16
- Commerce = "commerce"
16
+ Commerce = "commerce",
17
+ Payment = "payment"
17
18
  }
18
19
  export declare class ListUnifiedConnectionsRequest extends SpeakeasyBase {
19
20
  /**
@@ -67,6 +67,7 @@ var Categories;
67
67
  Categories["Accounting"] = "accounting";
68
68
  Categories["Storage"] = "storage";
69
69
  Categories["Commerce"] = "commerce";
70
+ Categories["Payment"] = "payment";
70
71
  })(Categories = exports.Categories || (exports.Categories = {}));
71
72
  var ListUnifiedConnectionsRequest = /** @class */ (function (_super) {
72
73
  __extends(ListUnifiedConnectionsRequest, _super);
@@ -13,7 +13,8 @@ export declare enum ListUnifiedIntegrationsQueryParamCategories {
13
13
  Uc = "uc",
14
14
  Accounting = "accounting",
15
15
  Storage = "storage",
16
- Commerce = "commerce"
16
+ Commerce = "commerce",
17
+ Payment = "payment"
17
18
  }
18
19
  export declare class ListUnifiedIntegrationsRequest extends SpeakeasyBase {
19
20
  /**
@@ -67,6 +67,7 @@ var ListUnifiedIntegrationsQueryParamCategories;
67
67
  ListUnifiedIntegrationsQueryParamCategories["Accounting"] = "accounting";
68
68
  ListUnifiedIntegrationsQueryParamCategories["Storage"] = "storage";
69
69
  ListUnifiedIntegrationsQueryParamCategories["Commerce"] = "commerce";
70
+ ListUnifiedIntegrationsQueryParamCategories["Payment"] = "payment";
70
71
  })(ListUnifiedIntegrationsQueryParamCategories = exports.ListUnifiedIntegrationsQueryParamCategories || (exports.ListUnifiedIntegrationsQueryParamCategories = {}));
71
72
  var ListUnifiedIntegrationsRequest = /** @class */ (function (_super) {
72
73
  __extends(ListUnifiedIntegrationsRequest, _super);
@@ -13,7 +13,8 @@ export declare enum QueryParamCategories {
13
13
  Uc = "uc",
14
14
  Accounting = "accounting",
15
15
  Storage = "storage",
16
- Commerce = "commerce"
16
+ Commerce = "commerce",
17
+ Payment = "payment"
17
18
  }
18
19
  export declare class ListUnifiedIntegrationWorkspacesRequest extends SpeakeasyBase {
19
20
  /**
@@ -67,6 +67,7 @@ var QueryParamCategories;
67
67
  QueryParamCategories["Accounting"] = "accounting";
68
68
  QueryParamCategories["Storage"] = "storage";
69
69
  QueryParamCategories["Commerce"] = "commerce";
70
+ QueryParamCategories["Payment"] = "payment";
70
71
  })(QueryParamCategories = exports.QueryParamCategories || (exports.QueryParamCategories = {}));
71
72
  var ListUnifiedIntegrationWorkspacesRequest = /** @class */ (function (_super) {
72
73
  __extends(ListUnifiedIntegrationWorkspacesRequest, _super);
@@ -0,0 +1,32 @@
1
+ import { SpeakeasyBase } from "../../../internal/utils";
2
+ import * as shared from "../../../sdk/models/shared";
3
+ import { AxiosResponse } from "axios";
4
+ export declare class PatchPaymentLinkRequest extends SpeakeasyBase {
5
+ paymentLink?: shared.PaymentLink;
6
+ /**
7
+ * ID of the connection
8
+ */
9
+ connectionId: string;
10
+ /**
11
+ * ID of the Link
12
+ */
13
+ id: string;
14
+ }
15
+ export declare class PatchPaymentLinkResponse extends SpeakeasyBase {
16
+ /**
17
+ * HTTP response content type for this operation
18
+ */
19
+ contentType: string;
20
+ /**
21
+ * Successful
22
+ */
23
+ paymentLink?: shared.PaymentLink;
24
+ /**
25
+ * HTTP response status code for this operation
26
+ */
27
+ statusCode: number;
28
+ /**
29
+ * Raw HTTP response; suitable for custom response parsing
30
+ */
31
+ rawResponse: AxiosResponse;
32
+ }
@@ -0,0 +1,99 @@
1
+ "use strict";
2
+ /*
3
+ * Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
4
+ */
5
+ var __extends = (this && this.__extends) || (function () {
6
+ var extendStatics = function (d, b) {
7
+ extendStatics = Object.setPrototypeOf ||
8
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
9
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
10
+ return extendStatics(d, b);
11
+ };
12
+ return function (d, b) {
13
+ if (typeof b !== "function" && b !== null)
14
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
15
+ extendStatics(d, b);
16
+ function __() { this.constructor = d; }
17
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
18
+ };
19
+ })();
20
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
21
+ if (k2 === undefined) k2 = k;
22
+ var desc = Object.getOwnPropertyDescriptor(m, k);
23
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
24
+ desc = { enumerable: true, get: function() { return m[k]; } };
25
+ }
26
+ Object.defineProperty(o, k2, desc);
27
+ }) : (function(o, m, k, k2) {
28
+ if (k2 === undefined) k2 = k;
29
+ o[k2] = m[k];
30
+ }));
31
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
32
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
33
+ }) : function(o, v) {
34
+ o["default"] = v;
35
+ });
36
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
37
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
38
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
39
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
40
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
41
+ };
42
+ var __importStar = (this && this.__importStar) || function (mod) {
43
+ if (mod && mod.__esModule) return mod;
44
+ var result = {};
45
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
46
+ __setModuleDefault(result, mod);
47
+ return result;
48
+ };
49
+ var __metadata = (this && this.__metadata) || function (k, v) {
50
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
51
+ };
52
+ Object.defineProperty(exports, "__esModule", { value: true });
53
+ exports.PatchPaymentLinkResponse = exports.PatchPaymentLinkRequest = void 0;
54
+ var utils_1 = require("../../../internal/utils");
55
+ var shared = __importStar(require("../../../sdk/models/shared"));
56
+ var PatchPaymentLinkRequest = /** @class */ (function (_super) {
57
+ __extends(PatchPaymentLinkRequest, _super);
58
+ function PatchPaymentLinkRequest() {
59
+ return _super !== null && _super.apply(this, arguments) || this;
60
+ }
61
+ __decorate([
62
+ (0, utils_1.SpeakeasyMetadata)({ data: "request, media_type=application/json" }),
63
+ __metadata("design:type", shared.PaymentLink)
64
+ ], PatchPaymentLinkRequest.prototype, "paymentLink", void 0);
65
+ __decorate([
66
+ (0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=connection_id" }),
67
+ __metadata("design:type", String)
68
+ ], PatchPaymentLinkRequest.prototype, "connectionId", void 0);
69
+ __decorate([
70
+ (0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=id" }),
71
+ __metadata("design:type", String)
72
+ ], PatchPaymentLinkRequest.prototype, "id", void 0);
73
+ return PatchPaymentLinkRequest;
74
+ }(utils_1.SpeakeasyBase));
75
+ exports.PatchPaymentLinkRequest = PatchPaymentLinkRequest;
76
+ var PatchPaymentLinkResponse = /** @class */ (function (_super) {
77
+ __extends(PatchPaymentLinkResponse, _super);
78
+ function PatchPaymentLinkResponse() {
79
+ return _super !== null && _super.apply(this, arguments) || this;
80
+ }
81
+ __decorate([
82
+ (0, utils_1.SpeakeasyMetadata)(),
83
+ __metadata("design:type", String)
84
+ ], PatchPaymentLinkResponse.prototype, "contentType", void 0);
85
+ __decorate([
86
+ (0, utils_1.SpeakeasyMetadata)(),
87
+ __metadata("design:type", shared.PaymentLink)
88
+ ], PatchPaymentLinkResponse.prototype, "paymentLink", void 0);
89
+ __decorate([
90
+ (0, utils_1.SpeakeasyMetadata)(),
91
+ __metadata("design:type", Number)
92
+ ], PatchPaymentLinkResponse.prototype, "statusCode", void 0);
93
+ __decorate([
94
+ (0, utils_1.SpeakeasyMetadata)(),
95
+ __metadata("design:type", Object)
96
+ ], PatchPaymentLinkResponse.prototype, "rawResponse", void 0);
97
+ return PatchPaymentLinkResponse;
98
+ }(utils_1.SpeakeasyBase));
99
+ exports.PatchPaymentLinkResponse = PatchPaymentLinkResponse;
@@ -1,8 +1,8 @@
1
1
  import { SpeakeasyBase } from "../../../internal/utils";
2
2
  import * as shared from "../../../sdk/models/shared";
3
3
  import { AxiosResponse } from "axios";
4
- export declare class PatchAccountingPaymentRequest extends SpeakeasyBase {
5
- accountingPayment?: shared.AccountingPayment;
4
+ export declare class PatchPaymentPaymentRequest extends SpeakeasyBase {
5
+ paymentPayment?: shared.PaymentPayment;
6
6
  /**
7
7
  * ID of the connection
8
8
  */
@@ -12,15 +12,15 @@ export declare class PatchAccountingPaymentRequest extends SpeakeasyBase {
12
12
  */
13
13
  id: string;
14
14
  }
15
- export declare class PatchAccountingPaymentResponse extends SpeakeasyBase {
16
- /**
17
- * Successful
18
- */
19
- accountingPayment?: shared.AccountingPayment;
15
+ export declare class PatchPaymentPaymentResponse extends SpeakeasyBase {
20
16
  /**
21
17
  * HTTP response content type for this operation
22
18
  */
23
19
  contentType: string;
20
+ /**
21
+ * Successful
22
+ */
23
+ paymentPayment?: shared.PaymentPayment;
24
24
  /**
25
25
  * HTTP response status code for this operation
26
26
  */
@@ -50,50 +50,50 @@ var __metadata = (this && this.__metadata) || function (k, v) {
50
50
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
51
51
  };
52
52
  Object.defineProperty(exports, "__esModule", { value: true });
53
- exports.PatchAccountingPaymentResponse = exports.PatchAccountingPaymentRequest = void 0;
53
+ exports.PatchPaymentPaymentResponse = exports.PatchPaymentPaymentRequest = void 0;
54
54
  var utils_1 = require("../../../internal/utils");
55
55
  var shared = __importStar(require("../../../sdk/models/shared"));
56
- var PatchAccountingPaymentRequest = /** @class */ (function (_super) {
57
- __extends(PatchAccountingPaymentRequest, _super);
58
- function PatchAccountingPaymentRequest() {
56
+ var PatchPaymentPaymentRequest = /** @class */ (function (_super) {
57
+ __extends(PatchPaymentPaymentRequest, _super);
58
+ function PatchPaymentPaymentRequest() {
59
59
  return _super !== null && _super.apply(this, arguments) || this;
60
60
  }
61
61
  __decorate([
62
62
  (0, utils_1.SpeakeasyMetadata)({ data: "request, media_type=application/json" }),
63
- __metadata("design:type", shared.AccountingPayment)
64
- ], PatchAccountingPaymentRequest.prototype, "accountingPayment", void 0);
63
+ __metadata("design:type", shared.PaymentPayment)
64
+ ], PatchPaymentPaymentRequest.prototype, "paymentPayment", void 0);
65
65
  __decorate([
66
66
  (0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=connection_id" }),
67
67
  __metadata("design:type", String)
68
- ], PatchAccountingPaymentRequest.prototype, "connectionId", void 0);
68
+ ], PatchPaymentPaymentRequest.prototype, "connectionId", void 0);
69
69
  __decorate([
70
70
  (0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=id" }),
71
71
  __metadata("design:type", String)
72
- ], PatchAccountingPaymentRequest.prototype, "id", void 0);
73
- return PatchAccountingPaymentRequest;
72
+ ], PatchPaymentPaymentRequest.prototype, "id", void 0);
73
+ return PatchPaymentPaymentRequest;
74
74
  }(utils_1.SpeakeasyBase));
75
- exports.PatchAccountingPaymentRequest = PatchAccountingPaymentRequest;
76
- var PatchAccountingPaymentResponse = /** @class */ (function (_super) {
77
- __extends(PatchAccountingPaymentResponse, _super);
78
- function PatchAccountingPaymentResponse() {
75
+ exports.PatchPaymentPaymentRequest = PatchPaymentPaymentRequest;
76
+ var PatchPaymentPaymentResponse = /** @class */ (function (_super) {
77
+ __extends(PatchPaymentPaymentResponse, _super);
78
+ function PatchPaymentPaymentResponse() {
79
79
  return _super !== null && _super.apply(this, arguments) || this;
80
80
  }
81
81
  __decorate([
82
82
  (0, utils_1.SpeakeasyMetadata)(),
83
- __metadata("design:type", shared.AccountingPayment)
84
- ], PatchAccountingPaymentResponse.prototype, "accountingPayment", void 0);
83
+ __metadata("design:type", String)
84
+ ], PatchPaymentPaymentResponse.prototype, "contentType", void 0);
85
85
  __decorate([
86
86
  (0, utils_1.SpeakeasyMetadata)(),
87
- __metadata("design:type", String)
88
- ], PatchAccountingPaymentResponse.prototype, "contentType", void 0);
87
+ __metadata("design:type", shared.PaymentPayment)
88
+ ], PatchPaymentPaymentResponse.prototype, "paymentPayment", void 0);
89
89
  __decorate([
90
90
  (0, utils_1.SpeakeasyMetadata)(),
91
91
  __metadata("design:type", Number)
92
- ], PatchAccountingPaymentResponse.prototype, "statusCode", void 0);
92
+ ], PatchPaymentPaymentResponse.prototype, "statusCode", void 0);
93
93
  __decorate([
94
94
  (0, utils_1.SpeakeasyMetadata)(),
95
95
  __metadata("design:type", Object)
96
- ], PatchAccountingPaymentResponse.prototype, "rawResponse", void 0);
97
- return PatchAccountingPaymentResponse;
96
+ ], PatchPaymentPaymentResponse.prototype, "rawResponse", void 0);
97
+ return PatchPaymentPaymentResponse;
98
98
  }(utils_1.SpeakeasyBase));
99
- exports.PatchAccountingPaymentResponse = PatchAccountingPaymentResponse;
99
+ exports.PatchPaymentPaymentResponse = PatchPaymentPaymentResponse;
@@ -0,0 +1,30 @@
1
+ import { SpeakeasyBase } from "../../../internal/utils";
2
+ import { AxiosResponse } from "axios";
3
+ export declare class RemovePaymentLinkRequest extends SpeakeasyBase {
4
+ /**
5
+ * ID of the connection
6
+ */
7
+ connectionId: string;
8
+ /**
9
+ * ID of the Link
10
+ */
11
+ id: string;
12
+ }
13
+ export declare class RemovePaymentLinkResponse extends SpeakeasyBase {
14
+ /**
15
+ * HTTP response content type for this operation
16
+ */
17
+ contentType: string;
18
+ /**
19
+ * HTTP response status code for this operation
20
+ */
21
+ statusCode: number;
22
+ /**
23
+ * Raw HTTP response; suitable for custom response parsing
24
+ */
25
+ rawResponse: AxiosResponse;
26
+ /**
27
+ * Successful
28
+ */
29
+ res?: string;
30
+ }
@@ -27,45 +27,45 @@ var __metadata = (this && this.__metadata) || function (k, v) {
27
27
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
28
28
  };
29
29
  Object.defineProperty(exports, "__esModule", { value: true });
30
- exports.RemoveAccountingPaymentResponse = exports.RemoveAccountingPaymentRequest = void 0;
30
+ exports.RemovePaymentLinkResponse = exports.RemovePaymentLinkRequest = void 0;
31
31
  var utils_1 = require("../../../internal/utils");
32
- var RemoveAccountingPaymentRequest = /** @class */ (function (_super) {
33
- __extends(RemoveAccountingPaymentRequest, _super);
34
- function RemoveAccountingPaymentRequest() {
32
+ var RemovePaymentLinkRequest = /** @class */ (function (_super) {
33
+ __extends(RemovePaymentLinkRequest, _super);
34
+ function RemovePaymentLinkRequest() {
35
35
  return _super !== null && _super.apply(this, arguments) || this;
36
36
  }
37
37
  __decorate([
38
38
  (0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=connection_id" }),
39
39
  __metadata("design:type", String)
40
- ], RemoveAccountingPaymentRequest.prototype, "connectionId", void 0);
40
+ ], RemovePaymentLinkRequest.prototype, "connectionId", void 0);
41
41
  __decorate([
42
42
  (0, utils_1.SpeakeasyMetadata)({ data: "pathParam, style=simple;explode=false;name=id" }),
43
43
  __metadata("design:type", String)
44
- ], RemoveAccountingPaymentRequest.prototype, "id", void 0);
45
- return RemoveAccountingPaymentRequest;
44
+ ], RemovePaymentLinkRequest.prototype, "id", void 0);
45
+ return RemovePaymentLinkRequest;
46
46
  }(utils_1.SpeakeasyBase));
47
- exports.RemoveAccountingPaymentRequest = RemoveAccountingPaymentRequest;
48
- var RemoveAccountingPaymentResponse = /** @class */ (function (_super) {
49
- __extends(RemoveAccountingPaymentResponse, _super);
50
- function RemoveAccountingPaymentResponse() {
47
+ exports.RemovePaymentLinkRequest = RemovePaymentLinkRequest;
48
+ var RemovePaymentLinkResponse = /** @class */ (function (_super) {
49
+ __extends(RemovePaymentLinkResponse, _super);
50
+ function RemovePaymentLinkResponse() {
51
51
  return _super !== null && _super.apply(this, arguments) || this;
52
52
  }
53
53
  __decorate([
54
54
  (0, utils_1.SpeakeasyMetadata)(),
55
55
  __metadata("design:type", String)
56
- ], RemoveAccountingPaymentResponse.prototype, "contentType", void 0);
56
+ ], RemovePaymentLinkResponse.prototype, "contentType", void 0);
57
57
  __decorate([
58
58
  (0, utils_1.SpeakeasyMetadata)(),
59
59
  __metadata("design:type", Number)
60
- ], RemoveAccountingPaymentResponse.prototype, "statusCode", void 0);
60
+ ], RemovePaymentLinkResponse.prototype, "statusCode", void 0);
61
61
  __decorate([
62
62
  (0, utils_1.SpeakeasyMetadata)(),
63
63
  __metadata("design:type", Object)
64
- ], RemoveAccountingPaymentResponse.prototype, "rawResponse", void 0);
64
+ ], RemovePaymentLinkResponse.prototype, "rawResponse", void 0);
65
65
  __decorate([
66
66
  (0, utils_1.SpeakeasyMetadata)(),
67
67
  __metadata("design:type", String)
68
- ], RemoveAccountingPaymentResponse.prototype, "res", void 0);
69
- return RemoveAccountingPaymentResponse;
68
+ ], RemovePaymentLinkResponse.prototype, "res", void 0);
69
+ return RemovePaymentLinkResponse;
70
70
  }(utils_1.SpeakeasyBase));
71
- exports.RemoveAccountingPaymentResponse = RemoveAccountingPaymentResponse;
71
+ exports.RemovePaymentLinkResponse = RemovePaymentLinkResponse;
@@ -1,6 +1,6 @@
1
1
  import { SpeakeasyBase } from "../../../internal/utils";
2
2
  import { AxiosResponse } from "axios";
3
- export declare class RemoveAccountingPaymentRequest extends SpeakeasyBase {
3
+ export declare class RemovePaymentPaymentRequest extends SpeakeasyBase {
4
4
  /**
5
5
  * ID of the connection
6
6
  */
@@ -10,7 +10,7 @@ export declare class RemoveAccountingPaymentRequest extends SpeakeasyBase {
10
10
  */
11
11
  id: string;
12
12
  }
13
- export declare class RemoveAccountingPaymentResponse extends SpeakeasyBase {
13
+ export declare class RemovePaymentPaymentResponse extends SpeakeasyBase {
14
14
  /**
15
15
  * HTTP response content type for this operation
16
16
  */