conductor-node-mcp 14.3.0 → 14.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (146) hide show
  1. package/README.md +3 -3
  2. package/auth.d.mts +6 -0
  3. package/auth.d.mts.map +1 -0
  4. package/auth.d.ts +6 -0
  5. package/auth.d.ts.map +1 -0
  6. package/auth.js +37 -0
  7. package/auth.js.map +1 -0
  8. package/{headers.js → auth.mjs} +16 -6
  9. package/auth.mjs.map +1 -0
  10. package/code-tool-paths.cjs +8 -0
  11. package/code-tool-paths.cjs.map +1 -0
  12. package/code-tool-paths.d.cts +2 -0
  13. package/code-tool-paths.d.cts.map +1 -0
  14. package/code-tool-types.d.mts.map +1 -1
  15. package/code-tool-types.d.ts.map +1 -1
  16. package/code-tool-worker.d.mts +5 -0
  17. package/code-tool-worker.d.mts.map +1 -0
  18. package/code-tool-worker.d.ts +5 -0
  19. package/code-tool-worker.d.ts.map +1 -0
  20. package/code-tool-worker.js +518 -0
  21. package/code-tool-worker.js.map +1 -0
  22. package/code-tool-worker.mjs +480 -0
  23. package/code-tool-worker.mjs.map +1 -0
  24. package/code-tool.d.mts +11 -2
  25. package/code-tool.d.mts.map +1 -1
  26. package/code-tool.d.ts +11 -2
  27. package/code-tool.d.ts.map +1 -1
  28. package/code-tool.js +281 -40
  29. package/code-tool.js.map +1 -1
  30. package/code-tool.mjs +249 -41
  31. package/code-tool.mjs.map +1 -1
  32. package/docs-search-tool.d.mts +11 -3
  33. package/docs-search-tool.d.mts.map +1 -1
  34. package/docs-search-tool.d.ts +11 -3
  35. package/docs-search-tool.d.ts.map +1 -1
  36. package/docs-search-tool.js +58 -5
  37. package/docs-search-tool.js.map +1 -1
  38. package/docs-search-tool.mjs +57 -5
  39. package/docs-search-tool.mjs.map +1 -1
  40. package/http.d.mts +6 -3
  41. package/http.d.mts.map +1 -1
  42. package/http.d.ts +6 -3
  43. package/http.d.ts.map +1 -1
  44. package/http.js +130 -28
  45. package/http.js.map +1 -1
  46. package/http.mjs +130 -28
  47. package/http.mjs.map +1 -1
  48. package/index.js +17 -12
  49. package/index.js.map +1 -1
  50. package/index.mjs +17 -12
  51. package/index.mjs.map +1 -1
  52. package/instructions.d.mts +5 -0
  53. package/instructions.d.mts.map +1 -0
  54. package/instructions.d.ts +5 -0
  55. package/instructions.d.ts.map +1 -0
  56. package/instructions.js +61 -0
  57. package/instructions.js.map +1 -0
  58. package/instructions.mjs +55 -0
  59. package/instructions.mjs.map +1 -0
  60. package/local-docs-search.d.mts +28 -0
  61. package/local-docs-search.d.mts.map +1 -0
  62. package/local-docs-search.d.ts +28 -0
  63. package/local-docs-search.d.ts.map +1 -0
  64. package/local-docs-search.js +9219 -0
  65. package/local-docs-search.js.map +1 -0
  66. package/local-docs-search.mjs +9179 -0
  67. package/local-docs-search.mjs.map +1 -0
  68. package/logger.d.mts +7 -0
  69. package/logger.d.mts.map +1 -0
  70. package/logger.d.ts +7 -0
  71. package/logger.d.ts.map +1 -0
  72. package/logger.js +29 -0
  73. package/logger.js.map +1 -0
  74. package/logger.mjs +22 -0
  75. package/logger.mjs.map +1 -0
  76. package/methods.d.mts +10 -0
  77. package/methods.d.mts.map +1 -0
  78. package/methods.d.ts +10 -0
  79. package/methods.d.ts.map +1 -0
  80. package/methods.js +1577 -0
  81. package/methods.js.map +1 -0
  82. package/methods.mjs +1573 -0
  83. package/methods.mjs.map +1 -0
  84. package/options.d.mts +12 -0
  85. package/options.d.mts.map +1 -1
  86. package/options.d.ts +12 -0
  87. package/options.d.ts.map +1 -1
  88. package/options.js +81 -12
  89. package/options.js.map +1 -1
  90. package/options.mjs +81 -12
  91. package/options.mjs.map +1 -1
  92. package/package.json +89 -15
  93. package/server.d.mts +18 -10
  94. package/server.d.mts.map +1 -1
  95. package/server.d.ts +18 -10
  96. package/server.d.ts.map +1 -1
  97. package/server.js +89 -42
  98. package/server.js.map +1 -1
  99. package/server.mjs +88 -39
  100. package/server.mjs.map +1 -1
  101. package/src/{headers.ts → auth.ts} +18 -1
  102. package/src/code-tool-paths.cts +5 -0
  103. package/src/code-tool-types.ts +1 -0
  104. package/src/code-tool-worker.ts +531 -0
  105. package/src/code-tool.ts +335 -48
  106. package/src/docs-search-tool.ts +86 -7
  107. package/src/http.ts +154 -33
  108. package/src/index.ts +19 -13
  109. package/src/instructions.ts +83 -0
  110. package/src/local-docs-search.ts +10667 -0
  111. package/src/logger.ts +28 -0
  112. package/src/methods.ts +1598 -0
  113. package/src/options.ts +105 -12
  114. package/src/server.ts +111 -50
  115. package/src/stdio.ts +9 -4
  116. package/src/types.ts +15 -4
  117. package/src/util.ts +25 -0
  118. package/stdio.d.mts +2 -1
  119. package/stdio.d.mts.map +1 -1
  120. package/stdio.d.ts +2 -1
  121. package/stdio.d.ts.map +1 -1
  122. package/stdio.js +8 -4
  123. package/stdio.js.map +1 -1
  124. package/stdio.mjs +8 -4
  125. package/stdio.mjs.map +1 -1
  126. package/types.d.mts +14 -1
  127. package/types.d.mts.map +1 -1
  128. package/types.d.ts +14 -1
  129. package/types.d.ts.map +1 -1
  130. package/types.js.map +1 -1
  131. package/types.mjs.map +1 -1
  132. package/util.d.mts +4 -0
  133. package/util.d.mts.map +1 -0
  134. package/util.d.ts +4 -0
  135. package/util.d.ts.map +1 -0
  136. package/util.js +30 -0
  137. package/util.js.map +1 -0
  138. package/util.mjs +24 -0
  139. package/util.mjs.map +1 -0
  140. package/headers.d.mts +0 -4
  141. package/headers.d.mts.map +0 -1
  142. package/headers.d.ts +0 -4
  143. package/headers.d.ts.map +0 -1
  144. package/headers.js.map +0 -1
  145. package/headers.mjs +0 -18
  146. package/headers.mjs.map +0 -1
package/methods.js ADDED
@@ -0,0 +1,1577 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.sdkMethods = void 0;
5
+ exports.blockedMethodsForCodeTool = blockedMethodsForCodeTool;
6
+ exports.sdkMethods = [
7
+ {
8
+ clientCallName: 'conductor.authSessions.create',
9
+ fullyQualifiedName: 'authSessions.create',
10
+ httpMethod: 'post',
11
+ httpPath: '/auth-sessions',
12
+ },
13
+ {
14
+ clientCallName: 'conductor.endUsers.create',
15
+ fullyQualifiedName: 'endUsers.create',
16
+ httpMethod: 'post',
17
+ httpPath: '/end-users',
18
+ },
19
+ {
20
+ clientCallName: 'conductor.endUsers.retrieve',
21
+ fullyQualifiedName: 'endUsers.retrieve',
22
+ httpMethod: 'get',
23
+ httpPath: '/end-users/{id}',
24
+ },
25
+ {
26
+ clientCallName: 'conductor.endUsers.list',
27
+ fullyQualifiedName: 'endUsers.list',
28
+ httpMethod: 'get',
29
+ httpPath: '/end-users',
30
+ },
31
+ {
32
+ clientCallName: 'conductor.endUsers.delete',
33
+ fullyQualifiedName: 'endUsers.delete',
34
+ httpMethod: 'delete',
35
+ httpPath: '/end-users/{id}',
36
+ },
37
+ {
38
+ clientCallName: 'conductor.endUsers.passthrough',
39
+ fullyQualifiedName: 'endUsers.passthrough',
40
+ httpMethod: 'post',
41
+ httpPath: '/end-users/{id}/passthrough/{integrationSlug}',
42
+ },
43
+ {
44
+ clientCallName: 'conductor.qbd.healthCheck',
45
+ fullyQualifiedName: 'qbd.healthCheck',
46
+ httpMethod: 'get',
47
+ httpPath: '/quickbooks-desktop/health-check',
48
+ },
49
+ {
50
+ clientCallName: 'conductor.qbd.accountTaxLines.list',
51
+ fullyQualifiedName: 'qbd.accountTaxLines.list',
52
+ httpMethod: 'get',
53
+ httpPath: '/quickbooks-desktop/account-tax-lines',
54
+ },
55
+ {
56
+ clientCallName: 'conductor.qbd.accounts.create',
57
+ fullyQualifiedName: 'qbd.accounts.create',
58
+ httpMethod: 'post',
59
+ httpPath: '/quickbooks-desktop/accounts',
60
+ },
61
+ {
62
+ clientCallName: 'conductor.qbd.accounts.retrieve',
63
+ fullyQualifiedName: 'qbd.accounts.retrieve',
64
+ httpMethod: 'get',
65
+ httpPath: '/quickbooks-desktop/accounts/{id}',
66
+ },
67
+ {
68
+ clientCallName: 'conductor.qbd.accounts.update',
69
+ fullyQualifiedName: 'qbd.accounts.update',
70
+ httpMethod: 'post',
71
+ httpPath: '/quickbooks-desktop/accounts/{id}',
72
+ },
73
+ {
74
+ clientCallName: 'conductor.qbd.accounts.list',
75
+ fullyQualifiedName: 'qbd.accounts.list',
76
+ httpMethod: 'get',
77
+ httpPath: '/quickbooks-desktop/accounts',
78
+ },
79
+ {
80
+ clientCallName: 'conductor.qbd.billCheckPayments.create',
81
+ fullyQualifiedName: 'qbd.billCheckPayments.create',
82
+ httpMethod: 'post',
83
+ httpPath: '/quickbooks-desktop/bill-check-payments',
84
+ },
85
+ {
86
+ clientCallName: 'conductor.qbd.billCheckPayments.retrieve',
87
+ fullyQualifiedName: 'qbd.billCheckPayments.retrieve',
88
+ httpMethod: 'get',
89
+ httpPath: '/quickbooks-desktop/bill-check-payments/{id}',
90
+ },
91
+ {
92
+ clientCallName: 'conductor.qbd.billCheckPayments.update',
93
+ fullyQualifiedName: 'qbd.billCheckPayments.update',
94
+ httpMethod: 'post',
95
+ httpPath: '/quickbooks-desktop/bill-check-payments/{id}',
96
+ },
97
+ {
98
+ clientCallName: 'conductor.qbd.billCheckPayments.list',
99
+ fullyQualifiedName: 'qbd.billCheckPayments.list',
100
+ httpMethod: 'get',
101
+ httpPath: '/quickbooks-desktop/bill-check-payments',
102
+ },
103
+ {
104
+ clientCallName: 'conductor.qbd.billCheckPayments.delete',
105
+ fullyQualifiedName: 'qbd.billCheckPayments.delete',
106
+ httpMethod: 'delete',
107
+ httpPath: '/quickbooks-desktop/bill-check-payments/{id}',
108
+ },
109
+ {
110
+ clientCallName: 'conductor.qbd.billCheckPayments.void',
111
+ fullyQualifiedName: 'qbd.billCheckPayments.void',
112
+ httpMethod: 'post',
113
+ httpPath: '/quickbooks-desktop/bill-check-payments/{id}/void',
114
+ },
115
+ {
116
+ clientCallName: 'conductor.qbd.billCreditCardPayments.create',
117
+ fullyQualifiedName: 'qbd.billCreditCardPayments.create',
118
+ httpMethod: 'post',
119
+ httpPath: '/quickbooks-desktop/bill-credit-card-payments',
120
+ },
121
+ {
122
+ clientCallName: 'conductor.qbd.billCreditCardPayments.retrieve',
123
+ fullyQualifiedName: 'qbd.billCreditCardPayments.retrieve',
124
+ httpMethod: 'get',
125
+ httpPath: '/quickbooks-desktop/bill-credit-card-payments/{id}',
126
+ },
127
+ {
128
+ clientCallName: 'conductor.qbd.billCreditCardPayments.list',
129
+ fullyQualifiedName: 'qbd.billCreditCardPayments.list',
130
+ httpMethod: 'get',
131
+ httpPath: '/quickbooks-desktop/bill-credit-card-payments',
132
+ },
133
+ {
134
+ clientCallName: 'conductor.qbd.billCreditCardPayments.delete',
135
+ fullyQualifiedName: 'qbd.billCreditCardPayments.delete',
136
+ httpMethod: 'delete',
137
+ httpPath: '/quickbooks-desktop/bill-credit-card-payments/{id}',
138
+ },
139
+ {
140
+ clientCallName: 'conductor.qbd.billCreditCardPayments.void',
141
+ fullyQualifiedName: 'qbd.billCreditCardPayments.void',
142
+ httpMethod: 'post',
143
+ httpPath: '/quickbooks-desktop/bill-credit-card-payments/{id}/void',
144
+ },
145
+ {
146
+ clientCallName: 'conductor.qbd.bills.create',
147
+ fullyQualifiedName: 'qbd.bills.create',
148
+ httpMethod: 'post',
149
+ httpPath: '/quickbooks-desktop/bills',
150
+ },
151
+ {
152
+ clientCallName: 'conductor.qbd.bills.retrieve',
153
+ fullyQualifiedName: 'qbd.bills.retrieve',
154
+ httpMethod: 'get',
155
+ httpPath: '/quickbooks-desktop/bills/{id}',
156
+ },
157
+ {
158
+ clientCallName: 'conductor.qbd.bills.update',
159
+ fullyQualifiedName: 'qbd.bills.update',
160
+ httpMethod: 'post',
161
+ httpPath: '/quickbooks-desktop/bills/{id}',
162
+ },
163
+ {
164
+ clientCallName: 'conductor.qbd.bills.list',
165
+ fullyQualifiedName: 'qbd.bills.list',
166
+ httpMethod: 'get',
167
+ httpPath: '/quickbooks-desktop/bills',
168
+ },
169
+ {
170
+ clientCallName: 'conductor.qbd.bills.delete',
171
+ fullyQualifiedName: 'qbd.bills.delete',
172
+ httpMethod: 'delete',
173
+ httpPath: '/quickbooks-desktop/bills/{id}',
174
+ },
175
+ {
176
+ clientCallName: 'conductor.qbd.bills.void',
177
+ fullyQualifiedName: 'qbd.bills.void',
178
+ httpMethod: 'post',
179
+ httpPath: '/quickbooks-desktop/bills/{id}/void',
180
+ },
181
+ {
182
+ clientCallName: 'conductor.qbd.billsToPay.list',
183
+ fullyQualifiedName: 'qbd.billsToPay.list',
184
+ httpMethod: 'get',
185
+ httpPath: '/quickbooks-desktop/bills-to-pay',
186
+ },
187
+ {
188
+ clientCallName: 'conductor.qbd.buildAssemblies.create',
189
+ fullyQualifiedName: 'qbd.buildAssemblies.create',
190
+ httpMethod: 'post',
191
+ httpPath: '/quickbooks-desktop/build-assemblies',
192
+ },
193
+ {
194
+ clientCallName: 'conductor.qbd.buildAssemblies.retrieve',
195
+ fullyQualifiedName: 'qbd.buildAssemblies.retrieve',
196
+ httpMethod: 'get',
197
+ httpPath: '/quickbooks-desktop/build-assemblies/{id}',
198
+ },
199
+ {
200
+ clientCallName: 'conductor.qbd.buildAssemblies.update',
201
+ fullyQualifiedName: 'qbd.buildAssemblies.update',
202
+ httpMethod: 'post',
203
+ httpPath: '/quickbooks-desktop/build-assemblies/{id}',
204
+ },
205
+ {
206
+ clientCallName: 'conductor.qbd.buildAssemblies.list',
207
+ fullyQualifiedName: 'qbd.buildAssemblies.list',
208
+ httpMethod: 'get',
209
+ httpPath: '/quickbooks-desktop/build-assemblies',
210
+ },
211
+ {
212
+ clientCallName: 'conductor.qbd.buildAssemblies.delete',
213
+ fullyQualifiedName: 'qbd.buildAssemblies.delete',
214
+ httpMethod: 'delete',
215
+ httpPath: '/quickbooks-desktop/build-assemblies/{id}',
216
+ },
217
+ {
218
+ clientCallName: 'conductor.qbd.checks.create',
219
+ fullyQualifiedName: 'qbd.checks.create',
220
+ httpMethod: 'post',
221
+ httpPath: '/quickbooks-desktop/checks',
222
+ },
223
+ {
224
+ clientCallName: 'conductor.qbd.checks.retrieve',
225
+ fullyQualifiedName: 'qbd.checks.retrieve',
226
+ httpMethod: 'get',
227
+ httpPath: '/quickbooks-desktop/checks/{id}',
228
+ },
229
+ {
230
+ clientCallName: 'conductor.qbd.checks.update',
231
+ fullyQualifiedName: 'qbd.checks.update',
232
+ httpMethod: 'post',
233
+ httpPath: '/quickbooks-desktop/checks/{id}',
234
+ },
235
+ {
236
+ clientCallName: 'conductor.qbd.checks.list',
237
+ fullyQualifiedName: 'qbd.checks.list',
238
+ httpMethod: 'get',
239
+ httpPath: '/quickbooks-desktop/checks',
240
+ },
241
+ {
242
+ clientCallName: 'conductor.qbd.checks.delete',
243
+ fullyQualifiedName: 'qbd.checks.delete',
244
+ httpMethod: 'delete',
245
+ httpPath: '/quickbooks-desktop/checks/{id}',
246
+ },
247
+ {
248
+ clientCallName: 'conductor.qbd.checks.void',
249
+ fullyQualifiedName: 'qbd.checks.void',
250
+ httpMethod: 'post',
251
+ httpPath: '/quickbooks-desktop/checks/{id}/void',
252
+ },
253
+ {
254
+ clientCallName: 'conductor.qbd.classes.create',
255
+ fullyQualifiedName: 'qbd.classes.create',
256
+ httpMethod: 'post',
257
+ httpPath: '/quickbooks-desktop/classes',
258
+ },
259
+ {
260
+ clientCallName: 'conductor.qbd.classes.retrieve',
261
+ fullyQualifiedName: 'qbd.classes.retrieve',
262
+ httpMethod: 'get',
263
+ httpPath: '/quickbooks-desktop/classes/{id}',
264
+ },
265
+ {
266
+ clientCallName: 'conductor.qbd.classes.update',
267
+ fullyQualifiedName: 'qbd.classes.update',
268
+ httpMethod: 'post',
269
+ httpPath: '/quickbooks-desktop/classes/{id}',
270
+ },
271
+ {
272
+ clientCallName: 'conductor.qbd.classes.list',
273
+ fullyQualifiedName: 'qbd.classes.list',
274
+ httpMethod: 'get',
275
+ httpPath: '/quickbooks-desktop/classes',
276
+ },
277
+ {
278
+ clientCallName: 'conductor.qbd.company.retrieve',
279
+ fullyQualifiedName: 'qbd.company.retrieve',
280
+ httpMethod: 'get',
281
+ httpPath: '/quickbooks-desktop/company',
282
+ },
283
+ {
284
+ clientCallName: 'conductor.qbd.creditCardCharges.create',
285
+ fullyQualifiedName: 'qbd.creditCardCharges.create',
286
+ httpMethod: 'post',
287
+ httpPath: '/quickbooks-desktop/credit-card-charges',
288
+ },
289
+ {
290
+ clientCallName: 'conductor.qbd.creditCardCharges.retrieve',
291
+ fullyQualifiedName: 'qbd.creditCardCharges.retrieve',
292
+ httpMethod: 'get',
293
+ httpPath: '/quickbooks-desktop/credit-card-charges/{id}',
294
+ },
295
+ {
296
+ clientCallName: 'conductor.qbd.creditCardCharges.update',
297
+ fullyQualifiedName: 'qbd.creditCardCharges.update',
298
+ httpMethod: 'post',
299
+ httpPath: '/quickbooks-desktop/credit-card-charges/{id}',
300
+ },
301
+ {
302
+ clientCallName: 'conductor.qbd.creditCardCharges.list',
303
+ fullyQualifiedName: 'qbd.creditCardCharges.list',
304
+ httpMethod: 'get',
305
+ httpPath: '/quickbooks-desktop/credit-card-charges',
306
+ },
307
+ {
308
+ clientCallName: 'conductor.qbd.creditCardCharges.delete',
309
+ fullyQualifiedName: 'qbd.creditCardCharges.delete',
310
+ httpMethod: 'delete',
311
+ httpPath: '/quickbooks-desktop/credit-card-charges/{id}',
312
+ },
313
+ {
314
+ clientCallName: 'conductor.qbd.creditCardCharges.void',
315
+ fullyQualifiedName: 'qbd.creditCardCharges.void',
316
+ httpMethod: 'post',
317
+ httpPath: '/quickbooks-desktop/credit-card-charges/{id}/void',
318
+ },
319
+ {
320
+ clientCallName: 'conductor.qbd.creditCardCredits.create',
321
+ fullyQualifiedName: 'qbd.creditCardCredits.create',
322
+ httpMethod: 'post',
323
+ httpPath: '/quickbooks-desktop/credit-card-credits',
324
+ },
325
+ {
326
+ clientCallName: 'conductor.qbd.creditCardCredits.retrieve',
327
+ fullyQualifiedName: 'qbd.creditCardCredits.retrieve',
328
+ httpMethod: 'get',
329
+ httpPath: '/quickbooks-desktop/credit-card-credits/{id}',
330
+ },
331
+ {
332
+ clientCallName: 'conductor.qbd.creditCardCredits.update',
333
+ fullyQualifiedName: 'qbd.creditCardCredits.update',
334
+ httpMethod: 'post',
335
+ httpPath: '/quickbooks-desktop/credit-card-credits/{id}',
336
+ },
337
+ {
338
+ clientCallName: 'conductor.qbd.creditCardCredits.list',
339
+ fullyQualifiedName: 'qbd.creditCardCredits.list',
340
+ httpMethod: 'get',
341
+ httpPath: '/quickbooks-desktop/credit-card-credits',
342
+ },
343
+ {
344
+ clientCallName: 'conductor.qbd.creditCardCredits.delete',
345
+ fullyQualifiedName: 'qbd.creditCardCredits.delete',
346
+ httpMethod: 'delete',
347
+ httpPath: '/quickbooks-desktop/credit-card-credits/{id}',
348
+ },
349
+ {
350
+ clientCallName: 'conductor.qbd.creditCardCredits.void',
351
+ fullyQualifiedName: 'qbd.creditCardCredits.void',
352
+ httpMethod: 'post',
353
+ httpPath: '/quickbooks-desktop/credit-card-credits/{id}/void',
354
+ },
355
+ {
356
+ clientCallName: 'conductor.qbd.creditCardRefunds.create',
357
+ fullyQualifiedName: 'qbd.creditCardRefunds.create',
358
+ httpMethod: 'post',
359
+ httpPath: '/quickbooks-desktop/credit-card-refunds',
360
+ },
361
+ {
362
+ clientCallName: 'conductor.qbd.creditCardRefunds.retrieve',
363
+ fullyQualifiedName: 'qbd.creditCardRefunds.retrieve',
364
+ httpMethod: 'get',
365
+ httpPath: '/quickbooks-desktop/credit-card-refunds/{id}',
366
+ },
367
+ {
368
+ clientCallName: 'conductor.qbd.creditCardRefunds.list',
369
+ fullyQualifiedName: 'qbd.creditCardRefunds.list',
370
+ httpMethod: 'get',
371
+ httpPath: '/quickbooks-desktop/credit-card-refunds',
372
+ },
373
+ {
374
+ clientCallName: 'conductor.qbd.creditCardRefunds.delete',
375
+ fullyQualifiedName: 'qbd.creditCardRefunds.delete',
376
+ httpMethod: 'delete',
377
+ httpPath: '/quickbooks-desktop/credit-card-refunds/{id}',
378
+ },
379
+ {
380
+ clientCallName: 'conductor.qbd.creditCardRefunds.void',
381
+ fullyQualifiedName: 'qbd.creditCardRefunds.void',
382
+ httpMethod: 'post',
383
+ httpPath: '/quickbooks-desktop/credit-card-refunds/{id}/void',
384
+ },
385
+ {
386
+ clientCallName: 'conductor.qbd.creditMemos.create',
387
+ fullyQualifiedName: 'qbd.creditMemos.create',
388
+ httpMethod: 'post',
389
+ httpPath: '/quickbooks-desktop/credit-memos',
390
+ },
391
+ {
392
+ clientCallName: 'conductor.qbd.creditMemos.retrieve',
393
+ fullyQualifiedName: 'qbd.creditMemos.retrieve',
394
+ httpMethod: 'get',
395
+ httpPath: '/quickbooks-desktop/credit-memos/{id}',
396
+ },
397
+ {
398
+ clientCallName: 'conductor.qbd.creditMemos.update',
399
+ fullyQualifiedName: 'qbd.creditMemos.update',
400
+ httpMethod: 'post',
401
+ httpPath: '/quickbooks-desktop/credit-memos/{id}',
402
+ },
403
+ {
404
+ clientCallName: 'conductor.qbd.creditMemos.list',
405
+ fullyQualifiedName: 'qbd.creditMemos.list',
406
+ httpMethod: 'get',
407
+ httpPath: '/quickbooks-desktop/credit-memos',
408
+ },
409
+ {
410
+ clientCallName: 'conductor.qbd.creditMemos.delete',
411
+ fullyQualifiedName: 'qbd.creditMemos.delete',
412
+ httpMethod: 'delete',
413
+ httpPath: '/quickbooks-desktop/credit-memos/{id}',
414
+ },
415
+ {
416
+ clientCallName: 'conductor.qbd.creditMemos.void',
417
+ fullyQualifiedName: 'qbd.creditMemos.void',
418
+ httpMethod: 'post',
419
+ httpPath: '/quickbooks-desktop/credit-memos/{id}/void',
420
+ },
421
+ {
422
+ clientCallName: 'conductor.qbd.currencies.create',
423
+ fullyQualifiedName: 'qbd.currencies.create',
424
+ httpMethod: 'post',
425
+ httpPath: '/quickbooks-desktop/currencies',
426
+ },
427
+ {
428
+ clientCallName: 'conductor.qbd.currencies.retrieve',
429
+ fullyQualifiedName: 'qbd.currencies.retrieve',
430
+ httpMethod: 'get',
431
+ httpPath: '/quickbooks-desktop/currencies/{id}',
432
+ },
433
+ {
434
+ clientCallName: 'conductor.qbd.currencies.update',
435
+ fullyQualifiedName: 'qbd.currencies.update',
436
+ httpMethod: 'post',
437
+ httpPath: '/quickbooks-desktop/currencies/{id}',
438
+ },
439
+ {
440
+ clientCallName: 'conductor.qbd.currencies.list',
441
+ fullyQualifiedName: 'qbd.currencies.list',
442
+ httpMethod: 'get',
443
+ httpPath: '/quickbooks-desktop/currencies',
444
+ },
445
+ {
446
+ clientCallName: 'conductor.qbd.customerTypes.create',
447
+ fullyQualifiedName: 'qbd.customerTypes.create',
448
+ httpMethod: 'post',
449
+ httpPath: '/quickbooks-desktop/customer-types',
450
+ },
451
+ {
452
+ clientCallName: 'conductor.qbd.customerTypes.retrieve',
453
+ fullyQualifiedName: 'qbd.customerTypes.retrieve',
454
+ httpMethod: 'get',
455
+ httpPath: '/quickbooks-desktop/customer-types/{id}',
456
+ },
457
+ {
458
+ clientCallName: 'conductor.qbd.customerTypes.list',
459
+ fullyQualifiedName: 'qbd.customerTypes.list',
460
+ httpMethod: 'get',
461
+ httpPath: '/quickbooks-desktop/customer-types',
462
+ },
463
+ {
464
+ clientCallName: 'conductor.qbd.customers.create',
465
+ fullyQualifiedName: 'qbd.customers.create',
466
+ httpMethod: 'post',
467
+ httpPath: '/quickbooks-desktop/customers',
468
+ },
469
+ {
470
+ clientCallName: 'conductor.qbd.customers.retrieve',
471
+ fullyQualifiedName: 'qbd.customers.retrieve',
472
+ httpMethod: 'get',
473
+ httpPath: '/quickbooks-desktop/customers/{id}',
474
+ },
475
+ {
476
+ clientCallName: 'conductor.qbd.customers.update',
477
+ fullyQualifiedName: 'qbd.customers.update',
478
+ httpMethod: 'post',
479
+ httpPath: '/quickbooks-desktop/customers/{id}',
480
+ },
481
+ {
482
+ clientCallName: 'conductor.qbd.customers.list',
483
+ fullyQualifiedName: 'qbd.customers.list',
484
+ httpMethod: 'get',
485
+ httpPath: '/quickbooks-desktop/customers',
486
+ },
487
+ {
488
+ clientCallName: 'conductor.qbd.dateDrivenTerms.create',
489
+ fullyQualifiedName: 'qbd.dateDrivenTerms.create',
490
+ httpMethod: 'post',
491
+ httpPath: '/quickbooks-desktop/date-driven-terms',
492
+ },
493
+ {
494
+ clientCallName: 'conductor.qbd.dateDrivenTerms.retrieve',
495
+ fullyQualifiedName: 'qbd.dateDrivenTerms.retrieve',
496
+ httpMethod: 'get',
497
+ httpPath: '/quickbooks-desktop/date-driven-terms/{id}',
498
+ },
499
+ {
500
+ clientCallName: 'conductor.qbd.dateDrivenTerms.list',
501
+ fullyQualifiedName: 'qbd.dateDrivenTerms.list',
502
+ httpMethod: 'get',
503
+ httpPath: '/quickbooks-desktop/date-driven-terms',
504
+ },
505
+ {
506
+ clientCallName: 'conductor.qbd.deletedListObjects.list',
507
+ fullyQualifiedName: 'qbd.deletedListObjects.list',
508
+ httpMethod: 'get',
509
+ httpPath: '/quickbooks-desktop/deleted-list-objects',
510
+ },
511
+ {
512
+ clientCallName: 'conductor.qbd.deletedTransactions.list',
513
+ fullyQualifiedName: 'qbd.deletedTransactions.list',
514
+ httpMethod: 'get',
515
+ httpPath: '/quickbooks-desktop/deleted-transactions',
516
+ },
517
+ {
518
+ clientCallName: 'conductor.qbd.deposits.create',
519
+ fullyQualifiedName: 'qbd.deposits.create',
520
+ httpMethod: 'post',
521
+ httpPath: '/quickbooks-desktop/deposits',
522
+ },
523
+ {
524
+ clientCallName: 'conductor.qbd.deposits.retrieve',
525
+ fullyQualifiedName: 'qbd.deposits.retrieve',
526
+ httpMethod: 'get',
527
+ httpPath: '/quickbooks-desktop/deposits/{id}',
528
+ },
529
+ {
530
+ clientCallName: 'conductor.qbd.deposits.update',
531
+ fullyQualifiedName: 'qbd.deposits.update',
532
+ httpMethod: 'post',
533
+ httpPath: '/quickbooks-desktop/deposits/{id}',
534
+ },
535
+ {
536
+ clientCallName: 'conductor.qbd.deposits.list',
537
+ fullyQualifiedName: 'qbd.deposits.list',
538
+ httpMethod: 'get',
539
+ httpPath: '/quickbooks-desktop/deposits',
540
+ },
541
+ {
542
+ clientCallName: 'conductor.qbd.deposits.delete',
543
+ fullyQualifiedName: 'qbd.deposits.delete',
544
+ httpMethod: 'delete',
545
+ httpPath: '/quickbooks-desktop/deposits/{id}',
546
+ },
547
+ {
548
+ clientCallName: 'conductor.qbd.deposits.void',
549
+ fullyQualifiedName: 'qbd.deposits.void',
550
+ httpMethod: 'post',
551
+ httpPath: '/quickbooks-desktop/deposits/{id}/void',
552
+ },
553
+ {
554
+ clientCallName: 'conductor.qbd.discountItems.create',
555
+ fullyQualifiedName: 'qbd.discountItems.create',
556
+ httpMethod: 'post',
557
+ httpPath: '/quickbooks-desktop/discount-items',
558
+ },
559
+ {
560
+ clientCallName: 'conductor.qbd.discountItems.retrieve',
561
+ fullyQualifiedName: 'qbd.discountItems.retrieve',
562
+ httpMethod: 'get',
563
+ httpPath: '/quickbooks-desktop/discount-items/{id}',
564
+ },
565
+ {
566
+ clientCallName: 'conductor.qbd.discountItems.update',
567
+ fullyQualifiedName: 'qbd.discountItems.update',
568
+ httpMethod: 'post',
569
+ httpPath: '/quickbooks-desktop/discount-items/{id}',
570
+ },
571
+ {
572
+ clientCallName: 'conductor.qbd.discountItems.list',
573
+ fullyQualifiedName: 'qbd.discountItems.list',
574
+ httpMethod: 'get',
575
+ httpPath: '/quickbooks-desktop/discount-items',
576
+ },
577
+ {
578
+ clientCallName: 'conductor.qbd.employees.create',
579
+ fullyQualifiedName: 'qbd.employees.create',
580
+ httpMethod: 'post',
581
+ httpPath: '/quickbooks-desktop/employees',
582
+ },
583
+ {
584
+ clientCallName: 'conductor.qbd.employees.retrieve',
585
+ fullyQualifiedName: 'qbd.employees.retrieve',
586
+ httpMethod: 'get',
587
+ httpPath: '/quickbooks-desktop/employees/{id}',
588
+ },
589
+ {
590
+ clientCallName: 'conductor.qbd.employees.update',
591
+ fullyQualifiedName: 'qbd.employees.update',
592
+ httpMethod: 'post',
593
+ httpPath: '/quickbooks-desktop/employees/{id}',
594
+ },
595
+ {
596
+ clientCallName: 'conductor.qbd.employees.list',
597
+ fullyQualifiedName: 'qbd.employees.list',
598
+ httpMethod: 'get',
599
+ httpPath: '/quickbooks-desktop/employees',
600
+ },
601
+ {
602
+ clientCallName: 'conductor.qbd.estimates.create',
603
+ fullyQualifiedName: 'qbd.estimates.create',
604
+ httpMethod: 'post',
605
+ httpPath: '/quickbooks-desktop/estimates',
606
+ },
607
+ {
608
+ clientCallName: 'conductor.qbd.estimates.retrieve',
609
+ fullyQualifiedName: 'qbd.estimates.retrieve',
610
+ httpMethod: 'get',
611
+ httpPath: '/quickbooks-desktop/estimates/{id}',
612
+ },
613
+ {
614
+ clientCallName: 'conductor.qbd.estimates.update',
615
+ fullyQualifiedName: 'qbd.estimates.update',
616
+ httpMethod: 'post',
617
+ httpPath: '/quickbooks-desktop/estimates/{id}',
618
+ },
619
+ {
620
+ clientCallName: 'conductor.qbd.estimates.list',
621
+ fullyQualifiedName: 'qbd.estimates.list',
622
+ httpMethod: 'get',
623
+ httpPath: '/quickbooks-desktop/estimates',
624
+ },
625
+ {
626
+ clientCallName: 'conductor.qbd.estimates.delete',
627
+ fullyQualifiedName: 'qbd.estimates.delete',
628
+ httpMethod: 'delete',
629
+ httpPath: '/quickbooks-desktop/estimates/{id}',
630
+ },
631
+ {
632
+ clientCallName: 'conductor.qbd.inventoryAdjustments.create',
633
+ fullyQualifiedName: 'qbd.inventoryAdjustments.create',
634
+ httpMethod: 'post',
635
+ httpPath: '/quickbooks-desktop/inventory-adjustments',
636
+ },
637
+ {
638
+ clientCallName: 'conductor.qbd.inventoryAdjustments.retrieve',
639
+ fullyQualifiedName: 'qbd.inventoryAdjustments.retrieve',
640
+ httpMethod: 'get',
641
+ httpPath: '/quickbooks-desktop/inventory-adjustments/{id}',
642
+ },
643
+ {
644
+ clientCallName: 'conductor.qbd.inventoryAdjustments.update',
645
+ fullyQualifiedName: 'qbd.inventoryAdjustments.update',
646
+ httpMethod: 'post',
647
+ httpPath: '/quickbooks-desktop/inventory-adjustments/{id}',
648
+ },
649
+ {
650
+ clientCallName: 'conductor.qbd.inventoryAdjustments.list',
651
+ fullyQualifiedName: 'qbd.inventoryAdjustments.list',
652
+ httpMethod: 'get',
653
+ httpPath: '/quickbooks-desktop/inventory-adjustments',
654
+ },
655
+ {
656
+ clientCallName: 'conductor.qbd.inventoryAdjustments.delete',
657
+ fullyQualifiedName: 'qbd.inventoryAdjustments.delete',
658
+ httpMethod: 'delete',
659
+ httpPath: '/quickbooks-desktop/inventory-adjustments/{id}',
660
+ },
661
+ {
662
+ clientCallName: 'conductor.qbd.inventoryAdjustments.void',
663
+ fullyQualifiedName: 'qbd.inventoryAdjustments.void',
664
+ httpMethod: 'post',
665
+ httpPath: '/quickbooks-desktop/inventory-adjustments/{id}/void',
666
+ },
667
+ {
668
+ clientCallName: 'conductor.qbd.inventoryAssemblyItems.create',
669
+ fullyQualifiedName: 'qbd.inventoryAssemblyItems.create',
670
+ httpMethod: 'post',
671
+ httpPath: '/quickbooks-desktop/inventory-assembly-items',
672
+ },
673
+ {
674
+ clientCallName: 'conductor.qbd.inventoryAssemblyItems.retrieve',
675
+ fullyQualifiedName: 'qbd.inventoryAssemblyItems.retrieve',
676
+ httpMethod: 'get',
677
+ httpPath: '/quickbooks-desktop/inventory-assembly-items/{id}',
678
+ },
679
+ {
680
+ clientCallName: 'conductor.qbd.inventoryAssemblyItems.update',
681
+ fullyQualifiedName: 'qbd.inventoryAssemblyItems.update',
682
+ httpMethod: 'post',
683
+ httpPath: '/quickbooks-desktop/inventory-assembly-items/{id}',
684
+ },
685
+ {
686
+ clientCallName: 'conductor.qbd.inventoryAssemblyItems.list',
687
+ fullyQualifiedName: 'qbd.inventoryAssemblyItems.list',
688
+ httpMethod: 'get',
689
+ httpPath: '/quickbooks-desktop/inventory-assembly-items',
690
+ },
691
+ {
692
+ clientCallName: 'conductor.qbd.inventoryItems.create',
693
+ fullyQualifiedName: 'qbd.inventoryItems.create',
694
+ httpMethod: 'post',
695
+ httpPath: '/quickbooks-desktop/inventory-items',
696
+ },
697
+ {
698
+ clientCallName: 'conductor.qbd.inventoryItems.retrieve',
699
+ fullyQualifiedName: 'qbd.inventoryItems.retrieve',
700
+ httpMethod: 'get',
701
+ httpPath: '/quickbooks-desktop/inventory-items/{id}',
702
+ },
703
+ {
704
+ clientCallName: 'conductor.qbd.inventoryItems.update',
705
+ fullyQualifiedName: 'qbd.inventoryItems.update',
706
+ httpMethod: 'post',
707
+ httpPath: '/quickbooks-desktop/inventory-items/{id}',
708
+ },
709
+ {
710
+ clientCallName: 'conductor.qbd.inventoryItems.list',
711
+ fullyQualifiedName: 'qbd.inventoryItems.list',
712
+ httpMethod: 'get',
713
+ httpPath: '/quickbooks-desktop/inventory-items',
714
+ },
715
+ {
716
+ clientCallName: 'conductor.qbd.inventorySites.create',
717
+ fullyQualifiedName: 'qbd.inventorySites.create',
718
+ httpMethod: 'post',
719
+ httpPath: '/quickbooks-desktop/inventory-sites',
720
+ },
721
+ {
722
+ clientCallName: 'conductor.qbd.inventorySites.retrieve',
723
+ fullyQualifiedName: 'qbd.inventorySites.retrieve',
724
+ httpMethod: 'get',
725
+ httpPath: '/quickbooks-desktop/inventory-sites/{id}',
726
+ },
727
+ {
728
+ clientCallName: 'conductor.qbd.inventorySites.update',
729
+ fullyQualifiedName: 'qbd.inventorySites.update',
730
+ httpMethod: 'post',
731
+ httpPath: '/quickbooks-desktop/inventory-sites/{id}',
732
+ },
733
+ {
734
+ clientCallName: 'conductor.qbd.inventorySites.list',
735
+ fullyQualifiedName: 'qbd.inventorySites.list',
736
+ httpMethod: 'get',
737
+ httpPath: '/quickbooks-desktop/inventory-sites',
738
+ },
739
+ {
740
+ clientCallName: 'conductor.qbd.invoices.create',
741
+ fullyQualifiedName: 'qbd.invoices.create',
742
+ httpMethod: 'post',
743
+ httpPath: '/quickbooks-desktop/invoices',
744
+ },
745
+ {
746
+ clientCallName: 'conductor.qbd.invoices.retrieve',
747
+ fullyQualifiedName: 'qbd.invoices.retrieve',
748
+ httpMethod: 'get',
749
+ httpPath: '/quickbooks-desktop/invoices/{id}',
750
+ },
751
+ {
752
+ clientCallName: 'conductor.qbd.invoices.update',
753
+ fullyQualifiedName: 'qbd.invoices.update',
754
+ httpMethod: 'post',
755
+ httpPath: '/quickbooks-desktop/invoices/{id}',
756
+ },
757
+ {
758
+ clientCallName: 'conductor.qbd.invoices.list',
759
+ fullyQualifiedName: 'qbd.invoices.list',
760
+ httpMethod: 'get',
761
+ httpPath: '/quickbooks-desktop/invoices',
762
+ },
763
+ {
764
+ clientCallName: 'conductor.qbd.invoices.delete',
765
+ fullyQualifiedName: 'qbd.invoices.delete',
766
+ httpMethod: 'delete',
767
+ httpPath: '/quickbooks-desktop/invoices/{id}',
768
+ },
769
+ {
770
+ clientCallName: 'conductor.qbd.invoices.void',
771
+ fullyQualifiedName: 'qbd.invoices.void',
772
+ httpMethod: 'post',
773
+ httpPath: '/quickbooks-desktop/invoices/{id}/void',
774
+ },
775
+ {
776
+ clientCallName: 'conductor.qbd.itemGroups.create',
777
+ fullyQualifiedName: 'qbd.itemGroups.create',
778
+ httpMethod: 'post',
779
+ httpPath: '/quickbooks-desktop/item-groups',
780
+ },
781
+ {
782
+ clientCallName: 'conductor.qbd.itemGroups.retrieve',
783
+ fullyQualifiedName: 'qbd.itemGroups.retrieve',
784
+ httpMethod: 'get',
785
+ httpPath: '/quickbooks-desktop/item-groups/{id}',
786
+ },
787
+ {
788
+ clientCallName: 'conductor.qbd.itemGroups.update',
789
+ fullyQualifiedName: 'qbd.itemGroups.update',
790
+ httpMethod: 'post',
791
+ httpPath: '/quickbooks-desktop/item-groups/{id}',
792
+ },
793
+ {
794
+ clientCallName: 'conductor.qbd.itemGroups.list',
795
+ fullyQualifiedName: 'qbd.itemGroups.list',
796
+ httpMethod: 'get',
797
+ httpPath: '/quickbooks-desktop/item-groups',
798
+ },
799
+ {
800
+ clientCallName: 'conductor.qbd.itemReceipts.create',
801
+ fullyQualifiedName: 'qbd.itemReceipts.create',
802
+ httpMethod: 'post',
803
+ httpPath: '/quickbooks-desktop/item-receipts',
804
+ },
805
+ {
806
+ clientCallName: 'conductor.qbd.itemReceipts.retrieve',
807
+ fullyQualifiedName: 'qbd.itemReceipts.retrieve',
808
+ httpMethod: 'get',
809
+ httpPath: '/quickbooks-desktop/item-receipts/{id}',
810
+ },
811
+ {
812
+ clientCallName: 'conductor.qbd.itemReceipts.update',
813
+ fullyQualifiedName: 'qbd.itemReceipts.update',
814
+ httpMethod: 'post',
815
+ httpPath: '/quickbooks-desktop/item-receipts/{id}',
816
+ },
817
+ {
818
+ clientCallName: 'conductor.qbd.itemReceipts.list',
819
+ fullyQualifiedName: 'qbd.itemReceipts.list',
820
+ httpMethod: 'get',
821
+ httpPath: '/quickbooks-desktop/item-receipts',
822
+ },
823
+ {
824
+ clientCallName: 'conductor.qbd.itemReceipts.delete',
825
+ fullyQualifiedName: 'qbd.itemReceipts.delete',
826
+ httpMethod: 'delete',
827
+ httpPath: '/quickbooks-desktop/item-receipts/{id}',
828
+ },
829
+ {
830
+ clientCallName: 'conductor.qbd.itemReceipts.void',
831
+ fullyQualifiedName: 'qbd.itemReceipts.void',
832
+ httpMethod: 'post',
833
+ httpPath: '/quickbooks-desktop/item-receipts/{id}/void',
834
+ },
835
+ {
836
+ clientCallName: 'conductor.qbd.itemSites.retrieve',
837
+ fullyQualifiedName: 'qbd.itemSites.retrieve',
838
+ httpMethod: 'get',
839
+ httpPath: '/quickbooks-desktop/item-sites/{id}',
840
+ },
841
+ {
842
+ clientCallName: 'conductor.qbd.itemSites.list',
843
+ fullyQualifiedName: 'qbd.itemSites.list',
844
+ httpMethod: 'get',
845
+ httpPath: '/quickbooks-desktop/item-sites',
846
+ },
847
+ {
848
+ clientCallName: 'conductor.qbd.journalEntries.create',
849
+ fullyQualifiedName: 'qbd.journalEntries.create',
850
+ httpMethod: 'post',
851
+ httpPath: '/quickbooks-desktop/journal-entries',
852
+ },
853
+ {
854
+ clientCallName: 'conductor.qbd.journalEntries.retrieve',
855
+ fullyQualifiedName: 'qbd.journalEntries.retrieve',
856
+ httpMethod: 'get',
857
+ httpPath: '/quickbooks-desktop/journal-entries/{id}',
858
+ },
859
+ {
860
+ clientCallName: 'conductor.qbd.journalEntries.update',
861
+ fullyQualifiedName: 'qbd.journalEntries.update',
862
+ httpMethod: 'post',
863
+ httpPath: '/quickbooks-desktop/journal-entries/{id}',
864
+ },
865
+ {
866
+ clientCallName: 'conductor.qbd.journalEntries.list',
867
+ fullyQualifiedName: 'qbd.journalEntries.list',
868
+ httpMethod: 'get',
869
+ httpPath: '/quickbooks-desktop/journal-entries',
870
+ },
871
+ {
872
+ clientCallName: 'conductor.qbd.journalEntries.delete',
873
+ fullyQualifiedName: 'qbd.journalEntries.delete',
874
+ httpMethod: 'delete',
875
+ httpPath: '/quickbooks-desktop/journal-entries/{id}',
876
+ },
877
+ {
878
+ clientCallName: 'conductor.qbd.journalEntries.void',
879
+ fullyQualifiedName: 'qbd.journalEntries.void',
880
+ httpMethod: 'post',
881
+ httpPath: '/quickbooks-desktop/journal-entries/{id}/void',
882
+ },
883
+ {
884
+ clientCallName: 'conductor.qbd.nonInventoryItems.create',
885
+ fullyQualifiedName: 'qbd.nonInventoryItems.create',
886
+ httpMethod: 'post',
887
+ httpPath: '/quickbooks-desktop/non-inventory-items',
888
+ },
889
+ {
890
+ clientCallName: 'conductor.qbd.nonInventoryItems.retrieve',
891
+ fullyQualifiedName: 'qbd.nonInventoryItems.retrieve',
892
+ httpMethod: 'get',
893
+ httpPath: '/quickbooks-desktop/non-inventory-items/{id}',
894
+ },
895
+ {
896
+ clientCallName: 'conductor.qbd.nonInventoryItems.update',
897
+ fullyQualifiedName: 'qbd.nonInventoryItems.update',
898
+ httpMethod: 'post',
899
+ httpPath: '/quickbooks-desktop/non-inventory-items/{id}',
900
+ },
901
+ {
902
+ clientCallName: 'conductor.qbd.nonInventoryItems.list',
903
+ fullyQualifiedName: 'qbd.nonInventoryItems.list',
904
+ httpMethod: 'get',
905
+ httpPath: '/quickbooks-desktop/non-inventory-items',
906
+ },
907
+ {
908
+ clientCallName: 'conductor.qbd.otherChargeItems.create',
909
+ fullyQualifiedName: 'qbd.otherChargeItems.create',
910
+ httpMethod: 'post',
911
+ httpPath: '/quickbooks-desktop/other-charge-items',
912
+ },
913
+ {
914
+ clientCallName: 'conductor.qbd.otherChargeItems.retrieve',
915
+ fullyQualifiedName: 'qbd.otherChargeItems.retrieve',
916
+ httpMethod: 'get',
917
+ httpPath: '/quickbooks-desktop/other-charge-items/{id}',
918
+ },
919
+ {
920
+ clientCallName: 'conductor.qbd.otherChargeItems.update',
921
+ fullyQualifiedName: 'qbd.otherChargeItems.update',
922
+ httpMethod: 'post',
923
+ httpPath: '/quickbooks-desktop/other-charge-items/{id}',
924
+ },
925
+ {
926
+ clientCallName: 'conductor.qbd.otherChargeItems.list',
927
+ fullyQualifiedName: 'qbd.otherChargeItems.list',
928
+ httpMethod: 'get',
929
+ httpPath: '/quickbooks-desktop/other-charge-items',
930
+ },
931
+ {
932
+ clientCallName: 'conductor.qbd.otherNames.create',
933
+ fullyQualifiedName: 'qbd.otherNames.create',
934
+ httpMethod: 'post',
935
+ httpPath: '/quickbooks-desktop/other-names',
936
+ },
937
+ {
938
+ clientCallName: 'conductor.qbd.otherNames.retrieve',
939
+ fullyQualifiedName: 'qbd.otherNames.retrieve',
940
+ httpMethod: 'get',
941
+ httpPath: '/quickbooks-desktop/other-names/{id}',
942
+ },
943
+ {
944
+ clientCallName: 'conductor.qbd.otherNames.update',
945
+ fullyQualifiedName: 'qbd.otherNames.update',
946
+ httpMethod: 'post',
947
+ httpPath: '/quickbooks-desktop/other-names/{id}',
948
+ },
949
+ {
950
+ clientCallName: 'conductor.qbd.otherNames.list',
951
+ fullyQualifiedName: 'qbd.otherNames.list',
952
+ httpMethod: 'get',
953
+ httpPath: '/quickbooks-desktop/other-names',
954
+ },
955
+ {
956
+ clientCallName: 'conductor.qbd.paymentMethods.create',
957
+ fullyQualifiedName: 'qbd.paymentMethods.create',
958
+ httpMethod: 'post',
959
+ httpPath: '/quickbooks-desktop/payment-methods',
960
+ },
961
+ {
962
+ clientCallName: 'conductor.qbd.paymentMethods.retrieve',
963
+ fullyQualifiedName: 'qbd.paymentMethods.retrieve',
964
+ httpMethod: 'get',
965
+ httpPath: '/quickbooks-desktop/payment-methods/{id}',
966
+ },
967
+ {
968
+ clientCallName: 'conductor.qbd.paymentMethods.list',
969
+ fullyQualifiedName: 'qbd.paymentMethods.list',
970
+ httpMethod: 'get',
971
+ httpPath: '/quickbooks-desktop/payment-methods',
972
+ },
973
+ {
974
+ clientCallName: 'conductor.qbd.paymentsToDeposit.list',
975
+ fullyQualifiedName: 'qbd.paymentsToDeposit.list',
976
+ httpMethod: 'get',
977
+ httpPath: '/quickbooks-desktop/payments-to-deposit',
978
+ },
979
+ {
980
+ clientCallName: 'conductor.qbd.payrollWageItems.create',
981
+ fullyQualifiedName: 'qbd.payrollWageItems.create',
982
+ httpMethod: 'post',
983
+ httpPath: '/quickbooks-desktop/payroll-wage-items',
984
+ },
985
+ {
986
+ clientCallName: 'conductor.qbd.payrollWageItems.retrieve',
987
+ fullyQualifiedName: 'qbd.payrollWageItems.retrieve',
988
+ httpMethod: 'get',
989
+ httpPath: '/quickbooks-desktop/payroll-wage-items/{id}',
990
+ },
991
+ {
992
+ clientCallName: 'conductor.qbd.payrollWageItems.list',
993
+ fullyQualifiedName: 'qbd.payrollWageItems.list',
994
+ httpMethod: 'get',
995
+ httpPath: '/quickbooks-desktop/payroll-wage-items',
996
+ },
997
+ {
998
+ clientCallName: 'conductor.qbd.preferences.retrieve',
999
+ fullyQualifiedName: 'qbd.preferences.retrieve',
1000
+ httpMethod: 'get',
1001
+ httpPath: '/quickbooks-desktop/preferences',
1002
+ },
1003
+ {
1004
+ clientCallName: 'conductor.qbd.priceLevels.create',
1005
+ fullyQualifiedName: 'qbd.priceLevels.create',
1006
+ httpMethod: 'post',
1007
+ httpPath: '/quickbooks-desktop/price-levels',
1008
+ },
1009
+ {
1010
+ clientCallName: 'conductor.qbd.priceLevels.retrieve',
1011
+ fullyQualifiedName: 'qbd.priceLevels.retrieve',
1012
+ httpMethod: 'get',
1013
+ httpPath: '/quickbooks-desktop/price-levels/{id}',
1014
+ },
1015
+ {
1016
+ clientCallName: 'conductor.qbd.priceLevels.update',
1017
+ fullyQualifiedName: 'qbd.priceLevels.update',
1018
+ httpMethod: 'post',
1019
+ httpPath: '/quickbooks-desktop/price-levels/{id}',
1020
+ },
1021
+ {
1022
+ clientCallName: 'conductor.qbd.priceLevels.list',
1023
+ fullyQualifiedName: 'qbd.priceLevels.list',
1024
+ httpMethod: 'get',
1025
+ httpPath: '/quickbooks-desktop/price-levels',
1026
+ },
1027
+ {
1028
+ clientCallName: 'conductor.qbd.purchaseOrders.create',
1029
+ fullyQualifiedName: 'qbd.purchaseOrders.create',
1030
+ httpMethod: 'post',
1031
+ httpPath: '/quickbooks-desktop/purchase-orders',
1032
+ },
1033
+ {
1034
+ clientCallName: 'conductor.qbd.purchaseOrders.retrieve',
1035
+ fullyQualifiedName: 'qbd.purchaseOrders.retrieve',
1036
+ httpMethod: 'get',
1037
+ httpPath: '/quickbooks-desktop/purchase-orders/{id}',
1038
+ },
1039
+ {
1040
+ clientCallName: 'conductor.qbd.purchaseOrders.update',
1041
+ fullyQualifiedName: 'qbd.purchaseOrders.update',
1042
+ httpMethod: 'post',
1043
+ httpPath: '/quickbooks-desktop/purchase-orders/{id}',
1044
+ },
1045
+ {
1046
+ clientCallName: 'conductor.qbd.purchaseOrders.list',
1047
+ fullyQualifiedName: 'qbd.purchaseOrders.list',
1048
+ httpMethod: 'get',
1049
+ httpPath: '/quickbooks-desktop/purchase-orders',
1050
+ },
1051
+ {
1052
+ clientCallName: 'conductor.qbd.purchaseOrders.delete',
1053
+ fullyQualifiedName: 'qbd.purchaseOrders.delete',
1054
+ httpMethod: 'delete',
1055
+ httpPath: '/quickbooks-desktop/purchase-orders/{id}',
1056
+ },
1057
+ {
1058
+ clientCallName: 'conductor.qbd.receivePayments.create',
1059
+ fullyQualifiedName: 'qbd.receivePayments.create',
1060
+ httpMethod: 'post',
1061
+ httpPath: '/quickbooks-desktop/receive-payments',
1062
+ },
1063
+ {
1064
+ clientCallName: 'conductor.qbd.receivePayments.retrieve',
1065
+ fullyQualifiedName: 'qbd.receivePayments.retrieve',
1066
+ httpMethod: 'get',
1067
+ httpPath: '/quickbooks-desktop/receive-payments/{id}',
1068
+ },
1069
+ {
1070
+ clientCallName: 'conductor.qbd.receivePayments.update',
1071
+ fullyQualifiedName: 'qbd.receivePayments.update',
1072
+ httpMethod: 'post',
1073
+ httpPath: '/quickbooks-desktop/receive-payments/{id}',
1074
+ },
1075
+ {
1076
+ clientCallName: 'conductor.qbd.receivePayments.list',
1077
+ fullyQualifiedName: 'qbd.receivePayments.list',
1078
+ httpMethod: 'get',
1079
+ httpPath: '/quickbooks-desktop/receive-payments',
1080
+ },
1081
+ {
1082
+ clientCallName: 'conductor.qbd.receivePayments.delete',
1083
+ fullyQualifiedName: 'qbd.receivePayments.delete',
1084
+ httpMethod: 'delete',
1085
+ httpPath: '/quickbooks-desktop/receive-payments/{id}',
1086
+ },
1087
+ {
1088
+ clientCallName: 'conductor.qbd.reports.aging',
1089
+ fullyQualifiedName: 'qbd.reports.aging',
1090
+ httpMethod: 'get',
1091
+ httpPath: '/quickbooks-desktop/reports/aging',
1092
+ },
1093
+ {
1094
+ clientCallName: 'conductor.qbd.reports.budgetSummary',
1095
+ fullyQualifiedName: 'qbd.reports.budgetSummary',
1096
+ httpMethod: 'get',
1097
+ httpPath: '/quickbooks-desktop/reports/budget-summary',
1098
+ },
1099
+ {
1100
+ clientCallName: 'conductor.qbd.reports.customDetail',
1101
+ fullyQualifiedName: 'qbd.reports.customDetail',
1102
+ httpMethod: 'get',
1103
+ httpPath: '/quickbooks-desktop/reports/custom-detail',
1104
+ },
1105
+ {
1106
+ clientCallName: 'conductor.qbd.reports.customSummary',
1107
+ fullyQualifiedName: 'qbd.reports.customSummary',
1108
+ httpMethod: 'get',
1109
+ httpPath: '/quickbooks-desktop/reports/custom-summary',
1110
+ },
1111
+ {
1112
+ clientCallName: 'conductor.qbd.reports.generalDetail',
1113
+ fullyQualifiedName: 'qbd.reports.generalDetail',
1114
+ httpMethod: 'get',
1115
+ httpPath: '/quickbooks-desktop/reports/general-detail',
1116
+ },
1117
+ {
1118
+ clientCallName: 'conductor.qbd.reports.generalSummary',
1119
+ fullyQualifiedName: 'qbd.reports.generalSummary',
1120
+ httpMethod: 'get',
1121
+ httpPath: '/quickbooks-desktop/reports/general-summary',
1122
+ },
1123
+ {
1124
+ clientCallName: 'conductor.qbd.reports.job',
1125
+ fullyQualifiedName: 'qbd.reports.job',
1126
+ httpMethod: 'get',
1127
+ httpPath: '/quickbooks-desktop/reports/job',
1128
+ },
1129
+ {
1130
+ clientCallName: 'conductor.qbd.reports.payrollDetail',
1131
+ fullyQualifiedName: 'qbd.reports.payrollDetail',
1132
+ httpMethod: 'get',
1133
+ httpPath: '/quickbooks-desktop/reports/payroll-detail',
1134
+ },
1135
+ {
1136
+ clientCallName: 'conductor.qbd.reports.payrollSummary',
1137
+ fullyQualifiedName: 'qbd.reports.payrollSummary',
1138
+ httpMethod: 'get',
1139
+ httpPath: '/quickbooks-desktop/reports/payroll-summary',
1140
+ },
1141
+ {
1142
+ clientCallName: 'conductor.qbd.reports.time',
1143
+ fullyQualifiedName: 'qbd.reports.time',
1144
+ httpMethod: 'get',
1145
+ httpPath: '/quickbooks-desktop/reports/time',
1146
+ },
1147
+ {
1148
+ clientCallName: 'conductor.qbd.salesOrders.create',
1149
+ fullyQualifiedName: 'qbd.salesOrders.create',
1150
+ httpMethod: 'post',
1151
+ httpPath: '/quickbooks-desktop/sales-orders',
1152
+ },
1153
+ {
1154
+ clientCallName: 'conductor.qbd.salesOrders.retrieve',
1155
+ fullyQualifiedName: 'qbd.salesOrders.retrieve',
1156
+ httpMethod: 'get',
1157
+ httpPath: '/quickbooks-desktop/sales-orders/{id}',
1158
+ },
1159
+ {
1160
+ clientCallName: 'conductor.qbd.salesOrders.update',
1161
+ fullyQualifiedName: 'qbd.salesOrders.update',
1162
+ httpMethod: 'post',
1163
+ httpPath: '/quickbooks-desktop/sales-orders/{id}',
1164
+ },
1165
+ {
1166
+ clientCallName: 'conductor.qbd.salesOrders.list',
1167
+ fullyQualifiedName: 'qbd.salesOrders.list',
1168
+ httpMethod: 'get',
1169
+ httpPath: '/quickbooks-desktop/sales-orders',
1170
+ },
1171
+ {
1172
+ clientCallName: 'conductor.qbd.salesOrders.delete',
1173
+ fullyQualifiedName: 'qbd.salesOrders.delete',
1174
+ httpMethod: 'delete',
1175
+ httpPath: '/quickbooks-desktop/sales-orders/{id}',
1176
+ },
1177
+ {
1178
+ clientCallName: 'conductor.qbd.salesReceipts.create',
1179
+ fullyQualifiedName: 'qbd.salesReceipts.create',
1180
+ httpMethod: 'post',
1181
+ httpPath: '/quickbooks-desktop/sales-receipts',
1182
+ },
1183
+ {
1184
+ clientCallName: 'conductor.qbd.salesReceipts.retrieve',
1185
+ fullyQualifiedName: 'qbd.salesReceipts.retrieve',
1186
+ httpMethod: 'get',
1187
+ httpPath: '/quickbooks-desktop/sales-receipts/{id}',
1188
+ },
1189
+ {
1190
+ clientCallName: 'conductor.qbd.salesReceipts.update',
1191
+ fullyQualifiedName: 'qbd.salesReceipts.update',
1192
+ httpMethod: 'post',
1193
+ httpPath: '/quickbooks-desktop/sales-receipts/{id}',
1194
+ },
1195
+ {
1196
+ clientCallName: 'conductor.qbd.salesReceipts.list',
1197
+ fullyQualifiedName: 'qbd.salesReceipts.list',
1198
+ httpMethod: 'get',
1199
+ httpPath: '/quickbooks-desktop/sales-receipts',
1200
+ },
1201
+ {
1202
+ clientCallName: 'conductor.qbd.salesReceipts.delete',
1203
+ fullyQualifiedName: 'qbd.salesReceipts.delete',
1204
+ httpMethod: 'delete',
1205
+ httpPath: '/quickbooks-desktop/sales-receipts/{id}',
1206
+ },
1207
+ {
1208
+ clientCallName: 'conductor.qbd.salesReceipts.void',
1209
+ fullyQualifiedName: 'qbd.salesReceipts.void',
1210
+ httpMethod: 'post',
1211
+ httpPath: '/quickbooks-desktop/sales-receipts/{id}/void',
1212
+ },
1213
+ {
1214
+ clientCallName: 'conductor.qbd.salesRepresentatives.create',
1215
+ fullyQualifiedName: 'qbd.salesRepresentatives.create',
1216
+ httpMethod: 'post',
1217
+ httpPath: '/quickbooks-desktop/sales-representatives',
1218
+ },
1219
+ {
1220
+ clientCallName: 'conductor.qbd.salesRepresentatives.retrieve',
1221
+ fullyQualifiedName: 'qbd.salesRepresentatives.retrieve',
1222
+ httpMethod: 'get',
1223
+ httpPath: '/quickbooks-desktop/sales-representatives/{id}',
1224
+ },
1225
+ {
1226
+ clientCallName: 'conductor.qbd.salesRepresentatives.update',
1227
+ fullyQualifiedName: 'qbd.salesRepresentatives.update',
1228
+ httpMethod: 'post',
1229
+ httpPath: '/quickbooks-desktop/sales-representatives/{id}',
1230
+ },
1231
+ {
1232
+ clientCallName: 'conductor.qbd.salesRepresentatives.list',
1233
+ fullyQualifiedName: 'qbd.salesRepresentatives.list',
1234
+ httpMethod: 'get',
1235
+ httpPath: '/quickbooks-desktop/sales-representatives',
1236
+ },
1237
+ {
1238
+ clientCallName: 'conductor.qbd.salesTaxCodes.create',
1239
+ fullyQualifiedName: 'qbd.salesTaxCodes.create',
1240
+ httpMethod: 'post',
1241
+ httpPath: '/quickbooks-desktop/sales-tax-codes',
1242
+ },
1243
+ {
1244
+ clientCallName: 'conductor.qbd.salesTaxCodes.retrieve',
1245
+ fullyQualifiedName: 'qbd.salesTaxCodes.retrieve',
1246
+ httpMethod: 'get',
1247
+ httpPath: '/quickbooks-desktop/sales-tax-codes/{id}',
1248
+ },
1249
+ {
1250
+ clientCallName: 'conductor.qbd.salesTaxCodes.update',
1251
+ fullyQualifiedName: 'qbd.salesTaxCodes.update',
1252
+ httpMethod: 'post',
1253
+ httpPath: '/quickbooks-desktop/sales-tax-codes/{id}',
1254
+ },
1255
+ {
1256
+ clientCallName: 'conductor.qbd.salesTaxCodes.list',
1257
+ fullyQualifiedName: 'qbd.salesTaxCodes.list',
1258
+ httpMethod: 'get',
1259
+ httpPath: '/quickbooks-desktop/sales-tax-codes',
1260
+ },
1261
+ {
1262
+ clientCallName: 'conductor.qbd.salesTaxItems.create',
1263
+ fullyQualifiedName: 'qbd.salesTaxItems.create',
1264
+ httpMethod: 'post',
1265
+ httpPath: '/quickbooks-desktop/sales-tax-items',
1266
+ },
1267
+ {
1268
+ clientCallName: 'conductor.qbd.salesTaxItems.retrieve',
1269
+ fullyQualifiedName: 'qbd.salesTaxItems.retrieve',
1270
+ httpMethod: 'get',
1271
+ httpPath: '/quickbooks-desktop/sales-tax-items/{id}',
1272
+ },
1273
+ {
1274
+ clientCallName: 'conductor.qbd.salesTaxItems.update',
1275
+ fullyQualifiedName: 'qbd.salesTaxItems.update',
1276
+ httpMethod: 'post',
1277
+ httpPath: '/quickbooks-desktop/sales-tax-items/{id}',
1278
+ },
1279
+ {
1280
+ clientCallName: 'conductor.qbd.salesTaxItems.list',
1281
+ fullyQualifiedName: 'qbd.salesTaxItems.list',
1282
+ httpMethod: 'get',
1283
+ httpPath: '/quickbooks-desktop/sales-tax-items',
1284
+ },
1285
+ {
1286
+ clientCallName: 'conductor.qbd.serviceItems.create',
1287
+ fullyQualifiedName: 'qbd.serviceItems.create',
1288
+ httpMethod: 'post',
1289
+ httpPath: '/quickbooks-desktop/service-items',
1290
+ },
1291
+ {
1292
+ clientCallName: 'conductor.qbd.serviceItems.retrieve',
1293
+ fullyQualifiedName: 'qbd.serviceItems.retrieve',
1294
+ httpMethod: 'get',
1295
+ httpPath: '/quickbooks-desktop/service-items/{id}',
1296
+ },
1297
+ {
1298
+ clientCallName: 'conductor.qbd.serviceItems.update',
1299
+ fullyQualifiedName: 'qbd.serviceItems.update',
1300
+ httpMethod: 'post',
1301
+ httpPath: '/quickbooks-desktop/service-items/{id}',
1302
+ },
1303
+ {
1304
+ clientCallName: 'conductor.qbd.serviceItems.list',
1305
+ fullyQualifiedName: 'qbd.serviceItems.list',
1306
+ httpMethod: 'get',
1307
+ httpPath: '/quickbooks-desktop/service-items',
1308
+ },
1309
+ {
1310
+ clientCallName: 'conductor.qbd.shippingMethods.create',
1311
+ fullyQualifiedName: 'qbd.shippingMethods.create',
1312
+ httpMethod: 'post',
1313
+ httpPath: '/quickbooks-desktop/shipping-methods',
1314
+ },
1315
+ {
1316
+ clientCallName: 'conductor.qbd.shippingMethods.retrieve',
1317
+ fullyQualifiedName: 'qbd.shippingMethods.retrieve',
1318
+ httpMethod: 'get',
1319
+ httpPath: '/quickbooks-desktop/shipping-methods/{id}',
1320
+ },
1321
+ {
1322
+ clientCallName: 'conductor.qbd.shippingMethods.list',
1323
+ fullyQualifiedName: 'qbd.shippingMethods.list',
1324
+ httpMethod: 'get',
1325
+ httpPath: '/quickbooks-desktop/shipping-methods',
1326
+ },
1327
+ {
1328
+ clientCallName: 'conductor.qbd.standardTerms.create',
1329
+ fullyQualifiedName: 'qbd.standardTerms.create',
1330
+ httpMethod: 'post',
1331
+ httpPath: '/quickbooks-desktop/standard-terms',
1332
+ },
1333
+ {
1334
+ clientCallName: 'conductor.qbd.standardTerms.retrieve',
1335
+ fullyQualifiedName: 'qbd.standardTerms.retrieve',
1336
+ httpMethod: 'get',
1337
+ httpPath: '/quickbooks-desktop/standard-terms/{id}',
1338
+ },
1339
+ {
1340
+ clientCallName: 'conductor.qbd.standardTerms.list',
1341
+ fullyQualifiedName: 'qbd.standardTerms.list',
1342
+ httpMethod: 'get',
1343
+ httpPath: '/quickbooks-desktop/standard-terms',
1344
+ },
1345
+ {
1346
+ clientCallName: 'conductor.qbd.subtotalItems.create',
1347
+ fullyQualifiedName: 'qbd.subtotalItems.create',
1348
+ httpMethod: 'post',
1349
+ httpPath: '/quickbooks-desktop/subtotal-items',
1350
+ },
1351
+ {
1352
+ clientCallName: 'conductor.qbd.subtotalItems.retrieve',
1353
+ fullyQualifiedName: 'qbd.subtotalItems.retrieve',
1354
+ httpMethod: 'get',
1355
+ httpPath: '/quickbooks-desktop/subtotal-items/{id}',
1356
+ },
1357
+ {
1358
+ clientCallName: 'conductor.qbd.subtotalItems.update',
1359
+ fullyQualifiedName: 'qbd.subtotalItems.update',
1360
+ httpMethod: 'post',
1361
+ httpPath: '/quickbooks-desktop/subtotal-items/{id}',
1362
+ },
1363
+ {
1364
+ clientCallName: 'conductor.qbd.subtotalItems.list',
1365
+ fullyQualifiedName: 'qbd.subtotalItems.list',
1366
+ httpMethod: 'get',
1367
+ httpPath: '/quickbooks-desktop/subtotal-items',
1368
+ },
1369
+ {
1370
+ clientCallName: 'conductor.qbd.templates.list',
1371
+ fullyQualifiedName: 'qbd.templates.list',
1372
+ httpMethod: 'get',
1373
+ httpPath: '/quickbooks-desktop/templates',
1374
+ },
1375
+ {
1376
+ clientCallName: 'conductor.qbd.timeTrackingActivities.create',
1377
+ fullyQualifiedName: 'qbd.timeTrackingActivities.create',
1378
+ httpMethod: 'post',
1379
+ httpPath: '/quickbooks-desktop/time-tracking-activities',
1380
+ },
1381
+ {
1382
+ clientCallName: 'conductor.qbd.timeTrackingActivities.retrieve',
1383
+ fullyQualifiedName: 'qbd.timeTrackingActivities.retrieve',
1384
+ httpMethod: 'get',
1385
+ httpPath: '/quickbooks-desktop/time-tracking-activities/{id}',
1386
+ },
1387
+ {
1388
+ clientCallName: 'conductor.qbd.timeTrackingActivities.update',
1389
+ fullyQualifiedName: 'qbd.timeTrackingActivities.update',
1390
+ httpMethod: 'post',
1391
+ httpPath: '/quickbooks-desktop/time-tracking-activities/{id}',
1392
+ },
1393
+ {
1394
+ clientCallName: 'conductor.qbd.timeTrackingActivities.list',
1395
+ fullyQualifiedName: 'qbd.timeTrackingActivities.list',
1396
+ httpMethod: 'get',
1397
+ httpPath: '/quickbooks-desktop/time-tracking-activities',
1398
+ },
1399
+ {
1400
+ clientCallName: 'conductor.qbd.timeTrackingActivities.delete',
1401
+ fullyQualifiedName: 'qbd.timeTrackingActivities.delete',
1402
+ httpMethod: 'delete',
1403
+ httpPath: '/quickbooks-desktop/time-tracking-activities/{id}',
1404
+ },
1405
+ {
1406
+ clientCallName: 'conductor.qbd.transactions.retrieve',
1407
+ fullyQualifiedName: 'qbd.transactions.retrieve',
1408
+ httpMethod: 'get',
1409
+ httpPath: '/quickbooks-desktop/transactions/{id}',
1410
+ },
1411
+ {
1412
+ clientCallName: 'conductor.qbd.transactions.list',
1413
+ fullyQualifiedName: 'qbd.transactions.list',
1414
+ httpMethod: 'get',
1415
+ httpPath: '/quickbooks-desktop/transactions',
1416
+ },
1417
+ {
1418
+ clientCallName: 'conductor.qbd.transfers.create',
1419
+ fullyQualifiedName: 'qbd.transfers.create',
1420
+ httpMethod: 'post',
1421
+ httpPath: '/quickbooks-desktop/transfers',
1422
+ },
1423
+ {
1424
+ clientCallName: 'conductor.qbd.transfers.retrieve',
1425
+ fullyQualifiedName: 'qbd.transfers.retrieve',
1426
+ httpMethod: 'get',
1427
+ httpPath: '/quickbooks-desktop/transfers/{id}',
1428
+ },
1429
+ {
1430
+ clientCallName: 'conductor.qbd.transfers.update',
1431
+ fullyQualifiedName: 'qbd.transfers.update',
1432
+ httpMethod: 'post',
1433
+ httpPath: '/quickbooks-desktop/transfers/{id}',
1434
+ },
1435
+ {
1436
+ clientCallName: 'conductor.qbd.transfers.list',
1437
+ fullyQualifiedName: 'qbd.transfers.list',
1438
+ httpMethod: 'get',
1439
+ httpPath: '/quickbooks-desktop/transfers',
1440
+ },
1441
+ {
1442
+ clientCallName: 'conductor.qbd.unitOfMeasureSets.create',
1443
+ fullyQualifiedName: 'qbd.unitOfMeasureSets.create',
1444
+ httpMethod: 'post',
1445
+ httpPath: '/quickbooks-desktop/unit-of-measure-sets',
1446
+ },
1447
+ {
1448
+ clientCallName: 'conductor.qbd.unitOfMeasureSets.retrieve',
1449
+ fullyQualifiedName: 'qbd.unitOfMeasureSets.retrieve',
1450
+ httpMethod: 'get',
1451
+ httpPath: '/quickbooks-desktop/unit-of-measure-sets/{id}',
1452
+ },
1453
+ {
1454
+ clientCallName: 'conductor.qbd.unitOfMeasureSets.list',
1455
+ fullyQualifiedName: 'qbd.unitOfMeasureSets.list',
1456
+ httpMethod: 'get',
1457
+ httpPath: '/quickbooks-desktop/unit-of-measure-sets',
1458
+ },
1459
+ {
1460
+ clientCallName: 'conductor.qbd.vendorCredits.create',
1461
+ fullyQualifiedName: 'qbd.vendorCredits.create',
1462
+ httpMethod: 'post',
1463
+ httpPath: '/quickbooks-desktop/vendor-credits',
1464
+ },
1465
+ {
1466
+ clientCallName: 'conductor.qbd.vendorCredits.retrieve',
1467
+ fullyQualifiedName: 'qbd.vendorCredits.retrieve',
1468
+ httpMethod: 'get',
1469
+ httpPath: '/quickbooks-desktop/vendor-credits/{id}',
1470
+ },
1471
+ {
1472
+ clientCallName: 'conductor.qbd.vendorCredits.update',
1473
+ fullyQualifiedName: 'qbd.vendorCredits.update',
1474
+ httpMethod: 'post',
1475
+ httpPath: '/quickbooks-desktop/vendor-credits/{id}',
1476
+ },
1477
+ {
1478
+ clientCallName: 'conductor.qbd.vendorCredits.list',
1479
+ fullyQualifiedName: 'qbd.vendorCredits.list',
1480
+ httpMethod: 'get',
1481
+ httpPath: '/quickbooks-desktop/vendor-credits',
1482
+ },
1483
+ {
1484
+ clientCallName: 'conductor.qbd.vendorCredits.delete',
1485
+ fullyQualifiedName: 'qbd.vendorCredits.delete',
1486
+ httpMethod: 'delete',
1487
+ httpPath: '/quickbooks-desktop/vendor-credits/{id}',
1488
+ },
1489
+ {
1490
+ clientCallName: 'conductor.qbd.vendorCredits.void',
1491
+ fullyQualifiedName: 'qbd.vendorCredits.void',
1492
+ httpMethod: 'post',
1493
+ httpPath: '/quickbooks-desktop/vendor-credits/{id}/void',
1494
+ },
1495
+ {
1496
+ clientCallName: 'conductor.qbd.vendors.create',
1497
+ fullyQualifiedName: 'qbd.vendors.create',
1498
+ httpMethod: 'post',
1499
+ httpPath: '/quickbooks-desktop/vendors',
1500
+ },
1501
+ {
1502
+ clientCallName: 'conductor.qbd.vendors.retrieve',
1503
+ fullyQualifiedName: 'qbd.vendors.retrieve',
1504
+ httpMethod: 'get',
1505
+ httpPath: '/quickbooks-desktop/vendors/{id}',
1506
+ },
1507
+ {
1508
+ clientCallName: 'conductor.qbd.vendors.update',
1509
+ fullyQualifiedName: 'qbd.vendors.update',
1510
+ httpMethod: 'post',
1511
+ httpPath: '/quickbooks-desktop/vendors/{id}',
1512
+ },
1513
+ {
1514
+ clientCallName: 'conductor.qbd.vendors.list',
1515
+ fullyQualifiedName: 'qbd.vendors.list',
1516
+ httpMethod: 'get',
1517
+ httpPath: '/quickbooks-desktop/vendors',
1518
+ },
1519
+ ];
1520
+ function allowedMethodsForCodeTool(options) {
1521
+ if (!options) {
1522
+ return undefined;
1523
+ }
1524
+ let allowedMethods;
1525
+ if (options.codeAllowHttpGets || options.codeAllowedMethods) {
1526
+ // Start with nothing allowed and then add into it from options
1527
+ let allowedMethodsSet = new Set();
1528
+ if (options.codeAllowHttpGets) {
1529
+ // Add all methods that map to an HTTP GET
1530
+ exports.sdkMethods
1531
+ .filter((method) => method.httpMethod === 'get')
1532
+ .forEach((method) => allowedMethodsSet.add(method));
1533
+ }
1534
+ if (options.codeAllowedMethods) {
1535
+ // Add all methods that match any of the allowed regexps
1536
+ const allowedRegexps = options.codeAllowedMethods.map((pattern) => {
1537
+ try {
1538
+ return new RegExp(pattern);
1539
+ }
1540
+ catch (e) {
1541
+ throw new Error(`Invalid regex pattern for allowed method: "${pattern}": ${e instanceof Error ? e.message : e}`);
1542
+ }
1543
+ });
1544
+ exports.sdkMethods
1545
+ .filter((method) => allowedRegexps.some((regexp) => regexp.test(method.fullyQualifiedName)))
1546
+ .forEach((method) => allowedMethodsSet.add(method));
1547
+ }
1548
+ allowedMethods = Array.from(allowedMethodsSet);
1549
+ }
1550
+ else {
1551
+ // Start with everything allowed
1552
+ allowedMethods = [...exports.sdkMethods];
1553
+ }
1554
+ if (options.codeBlockedMethods) {
1555
+ // Filter down based on blocked regexps
1556
+ const blockedRegexps = options.codeBlockedMethods.map((pattern) => {
1557
+ try {
1558
+ return new RegExp(pattern);
1559
+ }
1560
+ catch (e) {
1561
+ throw new Error(`Invalid regex pattern for blocked method: "${pattern}": ${e instanceof Error ? e.message : e}`);
1562
+ }
1563
+ });
1564
+ allowedMethods = allowedMethods.filter((method) => !blockedRegexps.some((regexp) => regexp.test(method.fullyQualifiedName)));
1565
+ }
1566
+ return allowedMethods;
1567
+ }
1568
+ function blockedMethodsForCodeTool(options) {
1569
+ const allowedMethods = allowedMethodsForCodeTool(options);
1570
+ if (!allowedMethods) {
1571
+ return undefined;
1572
+ }
1573
+ const allowedSet = new Set(allowedMethods.map((method) => method.fullyQualifiedName));
1574
+ // Return any methods that are not explicitly allowed
1575
+ return exports.sdkMethods.filter((method) => !allowedSet.has(method.fullyQualifiedName));
1576
+ }
1577
+ //# sourceMappingURL=methods.js.map