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