@openmrp/sdk-mcp 0.19.3

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 (135) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +103 -0
  3. package/auth.d.mts +6 -0
  4. package/auth.d.mts.map +1 -0
  5. package/auth.d.ts +6 -0
  6. package/auth.d.ts.map +1 -0
  7. package/auth.js +37 -0
  8. package/auth.js.map +1 -0
  9. package/auth.mjs +32 -0
  10. package/auth.mjs.map +1 -0
  11. package/code-tool-paths.cjs +8 -0
  12. package/code-tool-paths.cjs.map +1 -0
  13. package/code-tool-paths.d.cts +2 -0
  14. package/code-tool-paths.d.cts.map +1 -0
  15. package/code-tool-types.d.mts +14 -0
  16. package/code-tool-types.d.mts.map +1 -0
  17. package/code-tool-types.d.ts +14 -0
  18. package/code-tool-types.d.ts.map +1 -0
  19. package/code-tool-types.js +4 -0
  20. package/code-tool-types.js.map +1 -0
  21. package/code-tool-types.mjs +3 -0
  22. package/code-tool-types.mjs.map +1 -0
  23. package/code-tool-worker.d.mts +5 -0
  24. package/code-tool-worker.d.mts.map +1 -0
  25. package/code-tool-worker.d.ts +5 -0
  26. package/code-tool-worker.d.ts.map +1 -0
  27. package/code-tool-worker.js +636 -0
  28. package/code-tool-worker.js.map +1 -0
  29. package/code-tool-worker.mjs +598 -0
  30. package/code-tool-worker.mjs.map +1 -0
  31. package/code-tool.d.mts +21 -0
  32. package/code-tool.d.mts.map +1 -0
  33. package/code-tool.d.ts +21 -0
  34. package/code-tool.d.ts.map +1 -0
  35. package/code-tool.js +287 -0
  36. package/code-tool.js.map +1 -0
  37. package/code-tool.mjs +251 -0
  38. package/code-tool.mjs.map +1 -0
  39. package/http.d.mts +12 -0
  40. package/http.d.mts.map +1 -0
  41. package/http.d.ts +12 -0
  42. package/http.d.ts.map +1 -0
  43. package/http.js +190 -0
  44. package/http.js.map +1 -0
  45. package/http.mjs +182 -0
  46. package/http.mjs.map +1 -0
  47. package/index.d.mts +3 -0
  48. package/index.d.mts.map +1 -0
  49. package/index.d.ts +3 -0
  50. package/index.d.ts.map +1 -0
  51. package/index.js +60 -0
  52. package/index.js.map +1 -0
  53. package/index.mjs +58 -0
  54. package/index.mjs.map +1 -0
  55. package/instructions.d.mts +5 -0
  56. package/instructions.d.mts.map +1 -0
  57. package/instructions.d.ts +5 -0
  58. package/instructions.d.ts.map +1 -0
  59. package/instructions.js +47 -0
  60. package/instructions.js.map +1 -0
  61. package/instructions.mjs +41 -0
  62. package/instructions.mjs.map +1 -0
  63. package/logger.d.mts +7 -0
  64. package/logger.d.mts.map +1 -0
  65. package/logger.d.ts +7 -0
  66. package/logger.d.ts.map +1 -0
  67. package/logger.js +29 -0
  68. package/logger.js.map +1 -0
  69. package/logger.mjs +22 -0
  70. package/logger.mjs.map +1 -0
  71. package/methods.d.mts +10 -0
  72. package/methods.d.mts.map +1 -0
  73. package/methods.d.ts +10 -0
  74. package/methods.d.ts.map +1 -0
  75. package/methods.js +2285 -0
  76. package/methods.js.map +1 -0
  77. package/methods.mjs +2281 -0
  78. package/methods.mjs.map +1 -0
  79. package/options.d.mts +20 -0
  80. package/options.d.mts.map +1 -0
  81. package/options.d.ts +20 -0
  82. package/options.d.ts.map +1 -0
  83. package/options.js +121 -0
  84. package/options.js.map +1 -0
  85. package/options.mjs +114 -0
  86. package/options.mjs.map +1 -0
  87. package/package.json +216 -0
  88. package/server.d.mts +38 -0
  89. package/server.d.mts.map +1 -0
  90. package/server.d.ts +38 -0
  91. package/server.d.ts.map +1 -0
  92. package/server.js +162 -0
  93. package/server.js.map +1 -0
  94. package/server.mjs +152 -0
  95. package/server.mjs.map +1 -0
  96. package/src/auth.ts +42 -0
  97. package/src/code-tool-paths.cts +5 -0
  98. package/src/code-tool-types.ts +17 -0
  99. package/src/code-tool-worker.ts +649 -0
  100. package/src/code-tool.ts +316 -0
  101. package/src/http.ts +227 -0
  102. package/src/index.ts +67 -0
  103. package/src/instructions.ts +59 -0
  104. package/src/logger.ts +28 -0
  105. package/src/methods.ts +2306 -0
  106. package/src/options.ts +159 -0
  107. package/src/server.ts +202 -0
  108. package/src/stdio.ts +17 -0
  109. package/src/tsconfig.json +11 -0
  110. package/src/types.ts +126 -0
  111. package/src/util.ts +25 -0
  112. package/stdio.d.mts +3 -0
  113. package/stdio.d.mts.map +1 -0
  114. package/stdio.d.ts +3 -0
  115. package/stdio.d.ts.map +1 -0
  116. package/stdio.js +18 -0
  117. package/stdio.js.map +1 -0
  118. package/stdio.mjs +14 -0
  119. package/stdio.mjs.map +1 -0
  120. package/types.d.mts +65 -0
  121. package/types.d.mts.map +1 -0
  122. package/types.d.ts +65 -0
  123. package/types.d.ts.map +1 -0
  124. package/types.js +58 -0
  125. package/types.js.map +1 -0
  126. package/types.mjs +53 -0
  127. package/types.mjs.map +1 -0
  128. package/util.d.mts +4 -0
  129. package/util.d.mts.map +1 -0
  130. package/util.d.ts +4 -0
  131. package/util.d.ts.map +1 -0
  132. package/util.js +30 -0
  133. package/util.js.map +1 -0
  134. package/util.mjs +24 -0
  135. package/util.mjs.map +1 -0
package/methods.mjs ADDED
@@ -0,0 +1,2281 @@
1
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+ export const sdkMethods = [
3
+ {
4
+ clientCallName: 'client.auth.apiKeys.retrieve',
5
+ fullyQualifiedName: 'auth.apiKeys.retrieve',
6
+ httpMethod: 'get',
7
+ httpPath: '/v1/auth/api-keys/{id}',
8
+ },
9
+ {
10
+ clientCallName: 'client.auth.apiKeys.list',
11
+ fullyQualifiedName: 'auth.apiKeys.list',
12
+ httpMethod: 'get',
13
+ httpPath: '/v1/auth/api-keys',
14
+ },
15
+ {
16
+ clientCallName: 'client.auth.apiKeys.create',
17
+ fullyQualifiedName: 'auth.apiKeys.create',
18
+ httpMethod: 'post',
19
+ httpPath: '/v1/auth/api-keys',
20
+ },
21
+ {
22
+ clientCallName: 'client.auth.apiKeys.delete',
23
+ fullyQualifiedName: 'auth.apiKeys.delete',
24
+ httpMethod: 'delete',
25
+ httpPath: '/v1/auth/api-keys/{id}',
26
+ },
27
+ {
28
+ clientCallName: 'client.auth.apiKeys.actions.rotate',
29
+ fullyQualifiedName: 'auth.apiKeys.actions.rotate',
30
+ httpMethod: 'post',
31
+ httpPath: '/v1/auth/api-keys/{id}/actions/rotate',
32
+ },
33
+ {
34
+ clientCallName: 'client.core.retrieveSearch',
35
+ fullyQualifiedName: 'core.retrieveSearch',
36
+ httpMethod: 'get',
37
+ httpPath: '/v1/core/search',
38
+ },
39
+ {
40
+ clientCallName: 'client.core.sandboxes.list',
41
+ fullyQualifiedName: 'core.sandboxes.list',
42
+ httpMethod: 'get',
43
+ httpPath: '/v1/core/sandboxes',
44
+ },
45
+ {
46
+ clientCallName: 'client.core.sandboxes.retrieve',
47
+ fullyQualifiedName: 'core.sandboxes.retrieve',
48
+ httpMethod: 'get',
49
+ httpPath: '/v1/core/sandboxes/{id}',
50
+ },
51
+ {
52
+ clientCallName: 'client.core.sandboxes.create',
53
+ fullyQualifiedName: 'core.sandboxes.create',
54
+ httpMethod: 'post',
55
+ httpPath: '/v1/core/sandboxes',
56
+ },
57
+ {
58
+ clientCallName: 'client.core.sandboxes.delete',
59
+ fullyQualifiedName: 'core.sandboxes.delete',
60
+ httpMethod: 'delete',
61
+ httpPath: '/v1/core/sandboxes/{id}',
62
+ },
63
+ {
64
+ clientCallName: 'client.core.requestLogs.list',
65
+ fullyQualifiedName: 'core.requestLogs.list',
66
+ httpMethod: 'get',
67
+ httpPath: '/v1/core/request-logs',
68
+ },
69
+ {
70
+ clientCallName: 'client.core.requestLogs.retrieve',
71
+ fullyQualifiedName: 'core.requestLogs.retrieve',
72
+ httpMethod: 'get',
73
+ httpPath: '/v1/core/request-logs/{id}',
74
+ },
75
+ {
76
+ clientCallName: 'client.core.auditEvents.list',
77
+ fullyQualifiedName: 'core.auditEvents.list',
78
+ httpMethod: 'get',
79
+ httpPath: '/v1/core/audit-events',
80
+ },
81
+ {
82
+ clientCallName: 'client.core.auditEvents.retrieve',
83
+ fullyQualifiedName: 'core.auditEvents.retrieve',
84
+ httpMethod: 'get',
85
+ httpPath: '/v1/core/audit-events/{id}',
86
+ },
87
+ {
88
+ clientCallName: 'client.core.auditEvents.retrieveResourceTypes',
89
+ fullyQualifiedName: 'core.auditEvents.retrieveResourceTypes',
90
+ httpMethod: 'get',
91
+ httpPath: '/v1/core/audit-events/resource-types',
92
+ },
93
+ {
94
+ clientCallName: 'client.core.addresses.retrieveSuggestions',
95
+ fullyQualifiedName: 'core.addresses.retrieveSuggestions',
96
+ httpMethod: 'get',
97
+ httpPath: '/v1/core/addresses/suggestions',
98
+ },
99
+ {
100
+ clientCallName: 'client.core.addresses.actions.validate',
101
+ fullyQualifiedName: 'core.addresses.actions.validate',
102
+ httpMethod: 'put',
103
+ httpPath: '/v1/core/addresses/actions/validate',
104
+ },
105
+ {
106
+ clientCallName: 'client.core.emailLogs.list',
107
+ fullyQualifiedName: 'core.emailLogs.list',
108
+ httpMethod: 'get',
109
+ httpPath: '/v1/core/email-logs',
110
+ },
111
+ {
112
+ clientCallName: 'client.core.emailLogs.retrieve',
113
+ fullyQualifiedName: 'core.emailLogs.retrieve',
114
+ httpMethod: 'get',
115
+ httpPath: '/v1/core/email-logs/{id}',
116
+ },
117
+ {
118
+ clientCallName: 'client.core.jobs.retrieve',
119
+ fullyQualifiedName: 'core.jobs.retrieve',
120
+ httpMethod: 'get',
121
+ httpPath: '/v1/core/jobs/{id}',
122
+ },
123
+ {
124
+ clientCallName: 'client.core.jobs.cancel',
125
+ fullyQualifiedName: 'core.jobs.cancel',
126
+ httpMethod: 'post',
127
+ httpPath: '/v1/core/jobs/{id}/cancel',
128
+ },
129
+ {
130
+ clientCallName: 'client.core.analytics.updateOee',
131
+ fullyQualifiedName: 'core.analytics.updateOee',
132
+ httpMethod: 'put',
133
+ httpPath: '/v1/core/analytics/oee',
134
+ },
135
+ {
136
+ clientCallName: 'client.core.analytics.updateOeeTrend',
137
+ fullyQualifiedName: 'core.analytics.updateOeeTrend',
138
+ httpMethod: 'put',
139
+ httpPath: '/v1/core/analytics/oee-trend',
140
+ },
141
+ {
142
+ clientCallName: 'client.core.analytics.updateScheduleAttainment',
143
+ fullyQualifiedName: 'core.analytics.updateScheduleAttainment',
144
+ httpMethod: 'put',
145
+ httpPath: '/v1/core/analytics/schedule-attainment',
146
+ },
147
+ {
148
+ clientCallName: 'client.core.analytics.updateDeliveryPerformance',
149
+ fullyQualifiedName: 'core.analytics.updateDeliveryPerformance',
150
+ httpMethod: 'put',
151
+ httpPath: '/v1/core/analytics/delivery-performance',
152
+ },
153
+ {
154
+ clientCallName: 'client.core.actions.emailRecord',
155
+ fullyQualifiedName: 'core.actions.emailRecord',
156
+ httpMethod: 'post',
157
+ httpPath: '/v1/core/actions/email-record',
158
+ },
159
+ {
160
+ clientCallName: 'client.catalog.units.list',
161
+ fullyQualifiedName: 'catalog.units.list',
162
+ httpMethod: 'get',
163
+ httpPath: '/v1/catalog/units',
164
+ },
165
+ {
166
+ clientCallName: 'client.catalog.units.retrieve',
167
+ fullyQualifiedName: 'catalog.units.retrieve',
168
+ httpMethod: 'get',
169
+ httpPath: '/v1/catalog/units/{id}',
170
+ },
171
+ {
172
+ clientCallName: 'client.catalog.units.create',
173
+ fullyQualifiedName: 'catalog.units.create',
174
+ httpMethod: 'post',
175
+ httpPath: '/v1/catalog/units',
176
+ },
177
+ {
178
+ clientCallName: 'client.catalog.units.update',
179
+ fullyQualifiedName: 'catalog.units.update',
180
+ httpMethod: 'patch',
181
+ httpPath: '/v1/catalog/units/{id}',
182
+ },
183
+ {
184
+ clientCallName: 'client.catalog.units.delete',
185
+ fullyQualifiedName: 'catalog.units.delete',
186
+ httpMethod: 'delete',
187
+ httpPath: '/v1/catalog/units/{id}',
188
+ },
189
+ {
190
+ clientCallName: 'client.catalog.units.actions.bulkUpsert',
191
+ fullyQualifiedName: 'catalog.units.actions.bulkUpsert',
192
+ httpMethod: 'post',
193
+ httpPath: '/v1/catalog/units/actions/bulk-upsert',
194
+ },
195
+ {
196
+ clientCallName: 'client.catalog.unitGroups.list',
197
+ fullyQualifiedName: 'catalog.unitGroups.list',
198
+ httpMethod: 'get',
199
+ httpPath: '/v1/catalog/unit-groups',
200
+ },
201
+ {
202
+ clientCallName: 'client.catalog.unitGroups.retrieve',
203
+ fullyQualifiedName: 'catalog.unitGroups.retrieve',
204
+ httpMethod: 'get',
205
+ httpPath: '/v1/catalog/unit-groups/{id}',
206
+ },
207
+ {
208
+ clientCallName: 'client.catalog.unitGroups.create',
209
+ fullyQualifiedName: 'catalog.unitGroups.create',
210
+ httpMethod: 'post',
211
+ httpPath: '/v1/catalog/unit-groups',
212
+ },
213
+ {
214
+ clientCallName: 'client.catalog.unitGroups.update',
215
+ fullyQualifiedName: 'catalog.unitGroups.update',
216
+ httpMethod: 'patch',
217
+ httpPath: '/v1/catalog/unit-groups/{id}',
218
+ },
219
+ {
220
+ clientCallName: 'client.catalog.unitGroups.delete',
221
+ fullyQualifiedName: 'catalog.unitGroups.delete',
222
+ httpMethod: 'delete',
223
+ httpPath: '/v1/catalog/unit-groups/{id}',
224
+ },
225
+ {
226
+ clientCallName: 'client.catalog.unitGroups.units.list',
227
+ fullyQualifiedName: 'catalog.unitGroups.units.list',
228
+ httpMethod: 'get',
229
+ httpPath: '/v1/catalog/unit-groups/{unit_group_id}/units',
230
+ },
231
+ {
232
+ clientCallName: 'client.catalog.unitGroups.units.retrieve',
233
+ fullyQualifiedName: 'catalog.unitGroups.units.retrieve',
234
+ httpMethod: 'get',
235
+ httpPath: '/v1/catalog/unit-groups/{unit_group_id}/units/{id}',
236
+ },
237
+ {
238
+ clientCallName: 'client.catalog.unitGroups.units.create',
239
+ fullyQualifiedName: 'catalog.unitGroups.units.create',
240
+ httpMethod: 'post',
241
+ httpPath: '/v1/catalog/unit-groups/{unit_group_id}/units',
242
+ },
243
+ {
244
+ clientCallName: 'client.catalog.unitGroups.units.update',
245
+ fullyQualifiedName: 'catalog.unitGroups.units.update',
246
+ httpMethod: 'patch',
247
+ httpPath: '/v1/catalog/unit-groups/{unit_group_id}/units/{id}',
248
+ },
249
+ {
250
+ clientCallName: 'client.catalog.unitGroups.units.delete',
251
+ fullyQualifiedName: 'catalog.unitGroups.units.delete',
252
+ httpMethod: 'delete',
253
+ httpPath: '/v1/catalog/unit-groups/{unit_group_id}/units/{id}',
254
+ },
255
+ {
256
+ clientCallName: 'client.catalog.unitGroups.actions.bulkUpsert',
257
+ fullyQualifiedName: 'catalog.unitGroups.actions.bulkUpsert',
258
+ httpMethod: 'post',
259
+ httpPath: '/v1/catalog/unit-groups/actions/bulk-upsert',
260
+ },
261
+ {
262
+ clientCallName: 'client.catalog.properties.list',
263
+ fullyQualifiedName: 'catalog.properties.list',
264
+ httpMethod: 'get',
265
+ httpPath: '/v1/catalog/properties',
266
+ },
267
+ {
268
+ clientCallName: 'client.catalog.properties.retrieve',
269
+ fullyQualifiedName: 'catalog.properties.retrieve',
270
+ httpMethod: 'get',
271
+ httpPath: '/v1/catalog/properties/{id}',
272
+ },
273
+ {
274
+ clientCallName: 'client.catalog.properties.create',
275
+ fullyQualifiedName: 'catalog.properties.create',
276
+ httpMethod: 'post',
277
+ httpPath: '/v1/catalog/properties',
278
+ },
279
+ {
280
+ clientCallName: 'client.catalog.properties.update',
281
+ fullyQualifiedName: 'catalog.properties.update',
282
+ httpMethod: 'patch',
283
+ httpPath: '/v1/catalog/properties/{id}',
284
+ },
285
+ {
286
+ clientCallName: 'client.catalog.properties.delete',
287
+ fullyQualifiedName: 'catalog.properties.delete',
288
+ httpMethod: 'delete',
289
+ httpPath: '/v1/catalog/properties/{id}',
290
+ },
291
+ {
292
+ clientCallName: 'client.catalog.properties.attributes.list',
293
+ fullyQualifiedName: 'catalog.properties.attributes.list',
294
+ httpMethod: 'get',
295
+ httpPath: '/v1/catalog/properties/{property_id}/attributes',
296
+ },
297
+ {
298
+ clientCallName: 'client.catalog.properties.attributes.retrieve',
299
+ fullyQualifiedName: 'catalog.properties.attributes.retrieve',
300
+ httpMethod: 'get',
301
+ httpPath: '/v1/catalog/properties/{property_id}/attributes/{id}',
302
+ },
303
+ {
304
+ clientCallName: 'client.catalog.properties.attributes.create',
305
+ fullyQualifiedName: 'catalog.properties.attributes.create',
306
+ httpMethod: 'post',
307
+ httpPath: '/v1/catalog/properties/{property_id}/attributes',
308
+ },
309
+ {
310
+ clientCallName: 'client.catalog.properties.attributes.update',
311
+ fullyQualifiedName: 'catalog.properties.attributes.update',
312
+ httpMethod: 'patch',
313
+ httpPath: '/v1/catalog/properties/{property_id}/attributes/{id}',
314
+ },
315
+ {
316
+ clientCallName: 'client.catalog.properties.attributes.delete',
317
+ fullyQualifiedName: 'catalog.properties.attributes.delete',
318
+ httpMethod: 'delete',
319
+ httpPath: '/v1/catalog/properties/{property_id}/attributes/{id}',
320
+ },
321
+ {
322
+ clientCallName: 'client.catalog.properties.actions.bulkUpsert',
323
+ fullyQualifiedName: 'catalog.properties.actions.bulkUpsert',
324
+ httpMethod: 'post',
325
+ httpPath: '/v1/catalog/properties/actions/bulk-upsert',
326
+ },
327
+ {
328
+ clientCallName: 'client.catalog.items.list',
329
+ fullyQualifiedName: 'catalog.items.list',
330
+ httpMethod: 'get',
331
+ httpPath: '/v1/catalog/items',
332
+ },
333
+ {
334
+ clientCallName: 'client.catalog.items.retrieve',
335
+ fullyQualifiedName: 'catalog.items.retrieve',
336
+ httpMethod: 'get',
337
+ httpPath: '/v1/catalog/items/{id}',
338
+ },
339
+ {
340
+ clientCallName: 'client.catalog.items.retrieveLotDefault',
341
+ fullyQualifiedName: 'catalog.items.retrieveLotDefault',
342
+ httpMethod: 'get',
343
+ httpPath: '/v1/catalog/items/{id}/lot-default',
344
+ },
345
+ {
346
+ clientCallName: 'client.catalog.items.changeCategory',
347
+ fullyQualifiedName: 'catalog.items.changeCategory',
348
+ httpMethod: 'put',
349
+ httpPath: '/v1/catalog/items/{id}/category/{category_id}',
350
+ },
351
+ {
352
+ clientCallName: 'client.catalog.items.inventory.list',
353
+ fullyQualifiedName: 'catalog.items.inventory.list',
354
+ httpMethod: 'get',
355
+ httpPath: '/v1/catalog/items/{id}/inventory',
356
+ },
357
+ {
358
+ clientCallName: 'client.catalog.items.inventory.update',
359
+ fullyQualifiedName: 'catalog.items.inventory.update',
360
+ httpMethod: 'patch',
361
+ httpPath: '/v1/catalog/items/{id}/inventory',
362
+ },
363
+ {
364
+ clientCallName: 'client.catalog.items.attributes.update',
365
+ fullyQualifiedName: 'catalog.items.attributes.update',
366
+ httpMethod: 'put',
367
+ httpPath: '/v1/catalog/items/{id}/attributes/{attribute_id}',
368
+ },
369
+ {
370
+ clientCallName: 'client.catalog.items.attributes.delete',
371
+ fullyQualifiedName: 'catalog.items.attributes.delete',
372
+ httpMethod: 'delete',
373
+ httpPath: '/v1/catalog/items/{id}/attributes/{attribute_id}',
374
+ },
375
+ {
376
+ clientCallName: 'client.catalog.items.actions.bulkReconcile',
377
+ fullyQualifiedName: 'catalog.items.actions.bulkReconcile',
378
+ httpMethod: 'post',
379
+ httpPath: '/v1/catalog/items/actions/bulk-reconcile',
380
+ },
381
+ {
382
+ clientCallName: 'client.catalog.itemCategories.list',
383
+ fullyQualifiedName: 'catalog.itemCategories.list',
384
+ httpMethod: 'get',
385
+ httpPath: '/v1/catalog/item-categories',
386
+ },
387
+ {
388
+ clientCallName: 'client.catalog.itemCategories.retrieve',
389
+ fullyQualifiedName: 'catalog.itemCategories.retrieve',
390
+ httpMethod: 'get',
391
+ httpPath: '/v1/catalog/item-categories/{id}',
392
+ },
393
+ {
394
+ clientCallName: 'client.catalog.itemCategories.create',
395
+ fullyQualifiedName: 'catalog.itemCategories.create',
396
+ httpMethod: 'post',
397
+ httpPath: '/v1/catalog/item-categories',
398
+ },
399
+ {
400
+ clientCallName: 'client.catalog.itemCategories.update',
401
+ fullyQualifiedName: 'catalog.itemCategories.update',
402
+ httpMethod: 'patch',
403
+ httpPath: '/v1/catalog/item-categories/{id}',
404
+ },
405
+ {
406
+ clientCallName: 'client.catalog.itemCategories.delete',
407
+ fullyQualifiedName: 'catalog.itemCategories.delete',
408
+ httpMethod: 'delete',
409
+ httpPath: '/v1/catalog/item-categories/{id}',
410
+ },
411
+ {
412
+ clientCallName: 'client.catalog.itemCategories.changeUnitGroup',
413
+ fullyQualifiedName: 'catalog.itemCategories.changeUnitGroup',
414
+ httpMethod: 'put',
415
+ httpPath: '/v1/catalog/item-categories/{id}/unit-groups/{unit_group_id}',
416
+ },
417
+ {
418
+ clientCallName: 'client.catalog.itemCategories.properties.update',
419
+ fullyQualifiedName: 'catalog.itemCategories.properties.update',
420
+ httpMethod: 'put',
421
+ httpPath: '/v1/catalog/item-categories/{id}/properties/{property_id}',
422
+ },
423
+ {
424
+ clientCallName: 'client.catalog.itemCategories.properties.delete',
425
+ fullyQualifiedName: 'catalog.itemCategories.properties.delete',
426
+ httpMethod: 'delete',
427
+ httpPath: '/v1/catalog/item-categories/{id}/properties/{property_id}',
428
+ },
429
+ {
430
+ clientCallName: 'client.catalog.itemCategories.actions.bulkUpsert',
431
+ fullyQualifiedName: 'catalog.itemCategories.actions.bulkUpsert',
432
+ httpMethod: 'post',
433
+ httpPath: '/v1/catalog/item-categories/actions/bulk-upsert',
434
+ },
435
+ {
436
+ clientCallName: 'client.catalog.materials.list',
437
+ fullyQualifiedName: 'catalog.materials.list',
438
+ httpMethod: 'get',
439
+ httpPath: '/v1/catalog/materials',
440
+ },
441
+ {
442
+ clientCallName: 'client.catalog.materials.retrieve',
443
+ fullyQualifiedName: 'catalog.materials.retrieve',
444
+ httpMethod: 'get',
445
+ httpPath: '/v1/catalog/materials/{id}',
446
+ },
447
+ {
448
+ clientCallName: 'client.catalog.materials.create',
449
+ fullyQualifiedName: 'catalog.materials.create',
450
+ httpMethod: 'post',
451
+ httpPath: '/v1/catalog/materials',
452
+ },
453
+ {
454
+ clientCallName: 'client.catalog.materials.update',
455
+ fullyQualifiedName: 'catalog.materials.update',
456
+ httpMethod: 'patch',
457
+ httpPath: '/v1/catalog/materials/{id}',
458
+ },
459
+ {
460
+ clientCallName: 'client.catalog.materials.delete',
461
+ fullyQualifiedName: 'catalog.materials.delete',
462
+ httpMethod: 'delete',
463
+ httpPath: '/v1/catalog/materials/{id}',
464
+ },
465
+ {
466
+ clientCallName: 'client.catalog.materials.actions.bulkUpsert',
467
+ fullyQualifiedName: 'catalog.materials.actions.bulkUpsert',
468
+ httpMethod: 'post',
469
+ httpPath: '/v1/catalog/materials/actions/bulk-upsert',
470
+ },
471
+ {
472
+ clientCallName: 'client.catalog.parts.list',
473
+ fullyQualifiedName: 'catalog.parts.list',
474
+ httpMethod: 'get',
475
+ httpPath: '/v1/catalog/parts',
476
+ },
477
+ {
478
+ clientCallName: 'client.catalog.parts.retrieve',
479
+ fullyQualifiedName: 'catalog.parts.retrieve',
480
+ httpMethod: 'get',
481
+ httpPath: '/v1/catalog/parts/{id}',
482
+ },
483
+ {
484
+ clientCallName: 'client.catalog.parts.create',
485
+ fullyQualifiedName: 'catalog.parts.create',
486
+ httpMethod: 'post',
487
+ httpPath: '/v1/catalog/parts',
488
+ },
489
+ {
490
+ clientCallName: 'client.catalog.parts.update',
491
+ fullyQualifiedName: 'catalog.parts.update',
492
+ httpMethod: 'patch',
493
+ httpPath: '/v1/catalog/parts/{id}',
494
+ },
495
+ {
496
+ clientCallName: 'client.catalog.parts.delete',
497
+ fullyQualifiedName: 'catalog.parts.delete',
498
+ httpMethod: 'delete',
499
+ httpPath: '/v1/catalog/parts/{id}',
500
+ },
501
+ {
502
+ clientCallName: 'client.catalog.parts.actions.bulkUpsert',
503
+ fullyQualifiedName: 'catalog.parts.actions.bulkUpsert',
504
+ httpMethod: 'post',
505
+ httpPath: '/v1/catalog/parts/actions/bulk-upsert',
506
+ },
507
+ {
508
+ clientCallName: 'client.catalog.productLines.list',
509
+ fullyQualifiedName: 'catalog.productLines.list',
510
+ httpMethod: 'get',
511
+ httpPath: '/v1/catalog/product-lines',
512
+ },
513
+ {
514
+ clientCallName: 'client.catalog.productLines.retrieve',
515
+ fullyQualifiedName: 'catalog.productLines.retrieve',
516
+ httpMethod: 'get',
517
+ httpPath: '/v1/catalog/product-lines/{id}',
518
+ },
519
+ {
520
+ clientCallName: 'client.catalog.productLines.create',
521
+ fullyQualifiedName: 'catalog.productLines.create',
522
+ httpMethod: 'post',
523
+ httpPath: '/v1/catalog/product-lines',
524
+ },
525
+ {
526
+ clientCallName: 'client.catalog.productLines.update',
527
+ fullyQualifiedName: 'catalog.productLines.update',
528
+ httpMethod: 'patch',
529
+ httpPath: '/v1/catalog/product-lines/{id}',
530
+ },
531
+ {
532
+ clientCallName: 'client.catalog.productLines.delete',
533
+ fullyQualifiedName: 'catalog.productLines.delete',
534
+ httpMethod: 'delete',
535
+ httpPath: '/v1/catalog/product-lines/{id}',
536
+ },
537
+ {
538
+ clientCallName: 'client.catalog.productLines.actions.bulkUpsert',
539
+ fullyQualifiedName: 'catalog.productLines.actions.bulkUpsert',
540
+ httpMethod: 'post',
541
+ httpPath: '/v1/catalog/product-lines/actions/bulk-upsert',
542
+ },
543
+ {
544
+ clientCallName: 'client.catalog.products.list',
545
+ fullyQualifiedName: 'catalog.products.list',
546
+ httpMethod: 'get',
547
+ httpPath: '/v1/catalog/products',
548
+ },
549
+ {
550
+ clientCallName: 'client.catalog.products.retrieve',
551
+ fullyQualifiedName: 'catalog.products.retrieve',
552
+ httpMethod: 'get',
553
+ httpPath: '/v1/catalog/products/{id}',
554
+ },
555
+ {
556
+ clientCallName: 'client.catalog.products.create',
557
+ fullyQualifiedName: 'catalog.products.create',
558
+ httpMethod: 'post',
559
+ httpPath: '/v1/catalog/products',
560
+ },
561
+ {
562
+ clientCallName: 'client.catalog.products.update',
563
+ fullyQualifiedName: 'catalog.products.update',
564
+ httpMethod: 'patch',
565
+ httpPath: '/v1/catalog/products/{id}',
566
+ },
567
+ {
568
+ clientCallName: 'client.catalog.products.delete',
569
+ fullyQualifiedName: 'catalog.products.delete',
570
+ httpMethod: 'delete',
571
+ httpPath: '/v1/catalog/products/{id}',
572
+ },
573
+ {
574
+ clientCallName: 'client.catalog.products.changeProductLine',
575
+ fullyQualifiedName: 'catalog.products.changeProductLine',
576
+ httpMethod: 'put',
577
+ httpPath: '/v1/catalog/products/{id}/product-line/{product_line_id}',
578
+ },
579
+ {
580
+ clientCallName: 'client.catalog.products.actions.bulkUpsert',
581
+ fullyQualifiedName: 'catalog.products.actions.bulkUpsert',
582
+ httpMethod: 'post',
583
+ httpPath: '/v1/catalog/products/actions/bulk-upsert',
584
+ },
585
+ {
586
+ clientCallName: 'client.ai.retrieveTools',
587
+ fullyQualifiedName: 'ai.retrieveTools',
588
+ httpMethod: 'get',
589
+ httpPath: '/v1/ai/tools',
590
+ },
591
+ {
592
+ clientCallName: 'client.ai.retrieveToolGroups',
593
+ fullyQualifiedName: 'ai.retrieveToolGroups',
594
+ httpMethod: 'get',
595
+ httpPath: '/v1/ai/tool-groups',
596
+ },
597
+ {
598
+ clientCallName: 'client.ai.agents.create',
599
+ fullyQualifiedName: 'ai.agents.create',
600
+ httpMethod: 'post',
601
+ httpPath: '/v1/ai/agents',
602
+ },
603
+ {
604
+ clientCallName: 'client.ai.agents.list',
605
+ fullyQualifiedName: 'ai.agents.list',
606
+ httpMethod: 'get',
607
+ httpPath: '/v1/ai/agents',
608
+ },
609
+ {
610
+ clientCallName: 'client.ai.agents.retrieve',
611
+ fullyQualifiedName: 'ai.agents.retrieve',
612
+ httpMethod: 'get',
613
+ httpPath: '/v1/ai/agents/{id}',
614
+ },
615
+ {
616
+ clientCallName: 'client.ai.agents.update',
617
+ fullyQualifiedName: 'ai.agents.update',
618
+ httpMethod: 'patch',
619
+ httpPath: '/v1/ai/agents/{id}',
620
+ },
621
+ {
622
+ clientCallName: 'client.ai.agents.delete',
623
+ fullyQualifiedName: 'ai.agents.delete',
624
+ httpMethod: 'delete',
625
+ httpPath: '/v1/ai/agents/{id}',
626
+ },
627
+ {
628
+ clientCallName: 'client.ai.agents.updateStatus',
629
+ fullyQualifiedName: 'ai.agents.updateStatus',
630
+ httpMethod: 'put',
631
+ httpPath: '/v1/ai/agents/{id}/status',
632
+ },
633
+ {
634
+ clientCallName: 'client.ai.runs.list',
635
+ fullyQualifiedName: 'ai.runs.list',
636
+ httpMethod: 'get',
637
+ httpPath: '/v1/ai/runs',
638
+ },
639
+ {
640
+ clientCallName: 'client.ai.runs.retrieve',
641
+ fullyQualifiedName: 'ai.runs.retrieve',
642
+ httpMethod: 'get',
643
+ httpPath: '/v1/ai/runs/{id}',
644
+ },
645
+ {
646
+ clientCallName: 'client.ai.runs.create',
647
+ fullyQualifiedName: 'ai.runs.create',
648
+ httpMethod: 'post',
649
+ httpPath: '/v1/ai/runs',
650
+ },
651
+ {
652
+ clientCallName: 'client.ai.runs.actions.cancel',
653
+ fullyQualifiedName: 'ai.runs.actions.cancel',
654
+ httpMethod: 'post',
655
+ httpPath: '/v1/ai/runs/{id}/actions/cancel',
656
+ },
657
+ {
658
+ clientCallName: 'client.ai.runs.actions.continue',
659
+ fullyQualifiedName: 'ai.runs.actions.continue',
660
+ httpMethod: 'post',
661
+ httpPath: '/v1/ai/runs/{id}/actions/continue',
662
+ },
663
+ {
664
+ clientCallName: 'client.ai.runs.actions.retry',
665
+ fullyQualifiedName: 'ai.runs.actions.retry',
666
+ httpMethod: 'post',
667
+ httpPath: '/v1/ai/runs/{id}/actions/retry',
668
+ },
669
+ {
670
+ clientCallName: 'client.ai.memories.list',
671
+ fullyQualifiedName: 'ai.memories.list',
672
+ httpMethod: 'get',
673
+ httpPath: '/v1/ai/memories',
674
+ },
675
+ {
676
+ clientCallName: 'client.ai.memories.retrieve',
677
+ fullyQualifiedName: 'ai.memories.retrieve',
678
+ httpMethod: 'get',
679
+ httpPath: '/v1/ai/memories/{id}',
680
+ },
681
+ {
682
+ clientCallName: 'client.ai.memories.create',
683
+ fullyQualifiedName: 'ai.memories.create',
684
+ httpMethod: 'post',
685
+ httpPath: '/v1/ai/memories',
686
+ },
687
+ {
688
+ clientCallName: 'client.ai.memories.update',
689
+ fullyQualifiedName: 'ai.memories.update',
690
+ httpMethod: 'patch',
691
+ httpPath: '/v1/ai/memories/{id}',
692
+ },
693
+ {
694
+ clientCallName: 'client.ai.memories.delete',
695
+ fullyQualifiedName: 'ai.memories.delete',
696
+ httpMethod: 'delete',
697
+ httpPath: '/v1/ai/memories/{id}',
698
+ },
699
+ {
700
+ clientCallName: 'client.messaging.retrieveContacts',
701
+ fullyQualifiedName: 'messaging.retrieveContacts',
702
+ httpMethod: 'get',
703
+ httpPath: '/v1/messaging/contacts',
704
+ },
705
+ {
706
+ clientCallName: 'client.messaging.notifications.create',
707
+ fullyQualifiedName: 'messaging.notifications.create',
708
+ httpMethod: 'post',
709
+ httpPath: '/v1/messaging/notifications',
710
+ },
711
+ {
712
+ clientCallName: 'client.messaging.notifications.list',
713
+ fullyQualifiedName: 'messaging.notifications.list',
714
+ httpMethod: 'get',
715
+ httpPath: '/v1/messaging/notifications',
716
+ },
717
+ {
718
+ clientCallName: 'client.messaging.notifications.retrieve',
719
+ fullyQualifiedName: 'messaging.notifications.retrieve',
720
+ httpMethod: 'get',
721
+ httpPath: '/v1/messaging/notifications/{id}',
722
+ },
723
+ {
724
+ clientCallName: 'client.messaging.notifications.retrieveUnreadCount',
725
+ fullyQualifiedName: 'messaging.notifications.retrieveUnreadCount',
726
+ httpMethod: 'get',
727
+ httpPath: '/v1/messaging/notifications/unread-count',
728
+ },
729
+ {
730
+ clientCallName: 'client.messaging.notifications.retrieveUnreadSummary',
731
+ fullyQualifiedName: 'messaging.notifications.retrieveUnreadSummary',
732
+ httpMethod: 'get',
733
+ httpPath: '/v1/messaging/notifications/unread-summary',
734
+ },
735
+ {
736
+ clientCallName: 'client.messaging.notifications.actions.seen',
737
+ fullyQualifiedName: 'messaging.notifications.actions.seen',
738
+ httpMethod: 'post',
739
+ httpPath: '/v1/messaging/notifications/{id}/actions/seen',
740
+ },
741
+ {
742
+ clientCallName: 'client.messaging.notifications.actions.read',
743
+ fullyQualifiedName: 'messaging.notifications.actions.read',
744
+ httpMethod: 'post',
745
+ httpPath: '/v1/messaging/notifications/{id}/actions/read',
746
+ },
747
+ {
748
+ clientCallName: 'client.messaging.notifications.actions.dismiss',
749
+ fullyQualifiedName: 'messaging.notifications.actions.dismiss',
750
+ httpMethod: 'post',
751
+ httpPath: '/v1/messaging/notifications/{id}/actions/dismiss',
752
+ },
753
+ {
754
+ clientCallName: 'client.messaging.notifications.actions.markAllSeen',
755
+ fullyQualifiedName: 'messaging.notifications.actions.markAllSeen',
756
+ httpMethod: 'post',
757
+ httpPath: '/v1/messaging/notifications/actions/mark-all-seen',
758
+ },
759
+ {
760
+ clientCallName: 'client.messaging.announcements.list',
761
+ fullyQualifiedName: 'messaging.announcements.list',
762
+ httpMethod: 'get',
763
+ httpPath: '/v1/messaging/announcements',
764
+ },
765
+ {
766
+ clientCallName: 'client.messaging.announcements.retrieve',
767
+ fullyQualifiedName: 'messaging.announcements.retrieve',
768
+ httpMethod: 'get',
769
+ httpPath: '/v1/messaging/announcements/{id}',
770
+ },
771
+ {
772
+ clientCallName: 'client.messaging.announcements.actions.seen',
773
+ fullyQualifiedName: 'messaging.announcements.actions.seen',
774
+ httpMethod: 'post',
775
+ httpPath: '/v1/messaging/announcements/{id}/actions/seen',
776
+ },
777
+ {
778
+ clientCallName: 'client.messaging.announcements.actions.read',
779
+ fullyQualifiedName: 'messaging.announcements.actions.read',
780
+ httpMethod: 'post',
781
+ httpPath: '/v1/messaging/announcements/{id}/actions/read',
782
+ },
783
+ {
784
+ clientCallName: 'client.messaging.announcements.actions.dismiss',
785
+ fullyQualifiedName: 'messaging.announcements.actions.dismiss',
786
+ httpMethod: 'post',
787
+ httpPath: '/v1/messaging/announcements/{id}/actions/dismiss',
788
+ },
789
+ {
790
+ clientCallName: 'client.messaging.conversations.create',
791
+ fullyQualifiedName: 'messaging.conversations.create',
792
+ httpMethod: 'post',
793
+ httpPath: '/v1/messaging/conversations',
794
+ },
795
+ {
796
+ clientCallName: 'client.messaging.conversations.list',
797
+ fullyQualifiedName: 'messaging.conversations.list',
798
+ httpMethod: 'get',
799
+ httpPath: '/v1/messaging/conversations',
800
+ },
801
+ {
802
+ clientCallName: 'client.messaging.conversations.retrieve',
803
+ fullyQualifiedName: 'messaging.conversations.retrieve',
804
+ httpMethod: 'get',
805
+ httpPath: '/v1/messaging/conversations/{id}',
806
+ },
807
+ {
808
+ clientCallName: 'client.messaging.conversations.update',
809
+ fullyQualifiedName: 'messaging.conversations.update',
810
+ httpMethod: 'patch',
811
+ httpPath: '/v1/messaging/conversations/{id}',
812
+ },
813
+ {
814
+ clientCallName: 'client.messaging.conversations.actions.setLegalHold',
815
+ fullyQualifiedName: 'messaging.conversations.actions.setLegalHold',
816
+ httpMethod: 'post',
817
+ httpPath: '/v1/messaging/conversations/{id}/actions/set-legal-hold',
818
+ },
819
+ {
820
+ clientCallName: 'client.messaging.conversations.actions.redact',
821
+ fullyQualifiedName: 'messaging.conversations.actions.redact',
822
+ httpMethod: 'post',
823
+ httpPath: '/v1/messaging/conversations/{id}/actions/redact',
824
+ },
825
+ {
826
+ clientCallName: 'client.messaging.conversations.actions.read',
827
+ fullyQualifiedName: 'messaging.conversations.actions.read',
828
+ httpMethod: 'post',
829
+ httpPath: '/v1/messaging/conversations/{id}/actions/read',
830
+ },
831
+ {
832
+ clientCallName: 'client.messaging.conversations.actions.archive',
833
+ fullyQualifiedName: 'messaging.conversations.actions.archive',
834
+ httpMethod: 'post',
835
+ httpPath: '/v1/messaging/conversations/{id}/actions/archive',
836
+ },
837
+ {
838
+ clientCallName: 'client.messaging.conversations.actions.unarchive',
839
+ fullyQualifiedName: 'messaging.conversations.actions.unarchive',
840
+ httpMethod: 'post',
841
+ httpPath: '/v1/messaging/conversations/{id}/actions/unarchive',
842
+ },
843
+ {
844
+ clientCallName: 'client.messaging.conversations.actions.leave',
845
+ fullyQualifiedName: 'messaging.conversations.actions.leave',
846
+ httpMethod: 'post',
847
+ httpPath: '/v1/messaging/conversations/{id}/actions/leave',
848
+ },
849
+ {
850
+ clientCallName: 'client.messaging.conversations.actions.hide',
851
+ fullyQualifiedName: 'messaging.conversations.actions.hide',
852
+ httpMethod: 'post',
853
+ httpPath: '/v1/messaging/conversations/{id}/actions/hide',
854
+ },
855
+ {
856
+ clientCallName: 'client.messaging.conversations.actions.unhide',
857
+ fullyQualifiedName: 'messaging.conversations.actions.unhide',
858
+ httpMethod: 'post',
859
+ httpPath: '/v1/messaging/conversations/{id}/actions/unhide',
860
+ },
861
+ {
862
+ clientCallName: 'client.messaging.conversations.actions.mute',
863
+ fullyQualifiedName: 'messaging.conversations.actions.mute',
864
+ httpMethod: 'post',
865
+ httpPath: '/v1/messaging/conversations/{id}/actions/mute',
866
+ },
867
+ {
868
+ clientCallName: 'client.messaging.conversations.actions.unmute',
869
+ fullyQualifiedName: 'messaging.conversations.actions.unmute',
870
+ httpMethod: 'post',
871
+ httpPath: '/v1/messaging/conversations/{id}/actions/unmute',
872
+ },
873
+ {
874
+ clientCallName: 'client.messaging.conversations.actions.setStatus',
875
+ fullyQualifiedName: 'messaging.conversations.actions.setStatus',
876
+ httpMethod: 'post',
877
+ httpPath: '/v1/messaging/conversations/{id}/actions/set-status',
878
+ },
879
+ {
880
+ clientCallName: 'client.messaging.conversations.actions.assign',
881
+ fullyQualifiedName: 'messaging.conversations.actions.assign',
882
+ httpMethod: 'post',
883
+ httpPath: '/v1/messaging/conversations/{id}/actions/assign',
884
+ },
885
+ {
886
+ clientCallName: 'client.messaging.conversations.actions.report',
887
+ fullyQualifiedName: 'messaging.conversations.actions.report',
888
+ httpMethod: 'post',
889
+ httpPath: '/v1/messaging/conversations/{id}/actions/report',
890
+ },
891
+ {
892
+ clientCallName: 'client.messaging.conversations.links.create',
893
+ fullyQualifiedName: 'messaging.conversations.links.create',
894
+ httpMethod: 'post',
895
+ httpPath: '/v1/messaging/conversations/{id}/links',
896
+ },
897
+ {
898
+ clientCallName: 'client.messaging.conversations.links.delete',
899
+ fullyQualifiedName: 'messaging.conversations.links.delete',
900
+ httpMethod: 'delete',
901
+ httpPath: '/v1/messaging/conversations/{id}/links/{link_id}',
902
+ },
903
+ {
904
+ clientCallName: 'client.messaging.conversations.links.list',
905
+ fullyQualifiedName: 'messaging.conversations.links.list',
906
+ httpMethod: 'get',
907
+ httpPath: '/v1/messaging/conversations/{id}/links',
908
+ },
909
+ {
910
+ clientCallName: 'client.messaging.conversations.messages.create',
911
+ fullyQualifiedName: 'messaging.conversations.messages.create',
912
+ httpMethod: 'post',
913
+ httpPath: '/v1/messaging/conversations/{id}/messages',
914
+ },
915
+ {
916
+ clientCallName: 'client.messaging.conversations.messages.list',
917
+ fullyQualifiedName: 'messaging.conversations.messages.list',
918
+ httpMethod: 'get',
919
+ httpPath: '/v1/messaging/conversations/{id}/messages',
920
+ },
921
+ {
922
+ clientCallName: 'client.messaging.conversations.participants.create',
923
+ fullyQualifiedName: 'messaging.conversations.participants.create',
924
+ httpMethod: 'post',
925
+ httpPath: '/v1/messaging/conversations/{id}/participants',
926
+ },
927
+ {
928
+ clientCallName: 'client.messaging.conversations.participants.delete',
929
+ fullyQualifiedName: 'messaging.conversations.participants.delete',
930
+ httpMethod: 'delete',
931
+ httpPath: '/v1/messaging/conversations/{id}/participants/{pid}',
932
+ },
933
+ {
934
+ clientCallName: 'client.messaging.conversations.participants.actions.setRole',
935
+ fullyQualifiedName: 'messaging.conversations.participants.actions.setRole',
936
+ httpMethod: 'post',
937
+ httpPath: '/v1/messaging/conversations/{id}/participants/{pid}/actions/set-role',
938
+ },
939
+ {
940
+ clientCallName: 'client.messaging.conversations.attachments.actions.uploadURL',
941
+ fullyQualifiedName: 'messaging.conversations.attachments.actions.uploadURL',
942
+ httpMethod: 'post',
943
+ httpPath: '/v1/messaging/conversations/{id}/attachments/actions/upload-url',
944
+ },
945
+ {
946
+ clientCallName: 'client.messaging.messages.update',
947
+ fullyQualifiedName: 'messaging.messages.update',
948
+ httpMethod: 'patch',
949
+ httpPath: '/v1/messaging/messages/{id}',
950
+ },
951
+ {
952
+ clientCallName: 'client.messaging.messages.actions.approveSend',
953
+ fullyQualifiedName: 'messaging.messages.actions.approveSend',
954
+ httpMethod: 'post',
955
+ httpPath: '/v1/messaging/messages/{id}/actions/approve-send',
956
+ },
957
+ {
958
+ clientCallName: 'client.messaging.messages.actions.reject',
959
+ fullyQualifiedName: 'messaging.messages.actions.reject',
960
+ httpMethod: 'post',
961
+ httpPath: '/v1/messaging/messages/{id}/actions/reject',
962
+ },
963
+ {
964
+ clientCallName: 'client.messaging.messages.actions.cancel',
965
+ fullyQualifiedName: 'messaging.messages.actions.cancel',
966
+ httpMethod: 'post',
967
+ httpPath: '/v1/messaging/messages/{id}/actions/cancel',
968
+ },
969
+ {
970
+ clientCallName: 'client.messaging.groups.create',
971
+ fullyQualifiedName: 'messaging.groups.create',
972
+ httpMethod: 'post',
973
+ httpPath: '/v1/messaging/groups',
974
+ },
975
+ {
976
+ clientCallName: 'client.messaging.groups.list',
977
+ fullyQualifiedName: 'messaging.groups.list',
978
+ httpMethod: 'get',
979
+ httpPath: '/v1/messaging/groups',
980
+ },
981
+ {
982
+ clientCallName: 'client.messaging.groups.retrieve',
983
+ fullyQualifiedName: 'messaging.groups.retrieve',
984
+ httpMethod: 'get',
985
+ httpPath: '/v1/messaging/groups/{id}',
986
+ },
987
+ {
988
+ clientCallName: 'client.messaging.groups.update',
989
+ fullyQualifiedName: 'messaging.groups.update',
990
+ httpMethod: 'patch',
991
+ httpPath: '/v1/messaging/groups/{id}',
992
+ },
993
+ {
994
+ clientCallName: 'client.messaging.groups.delete',
995
+ fullyQualifiedName: 'messaging.groups.delete',
996
+ httpMethod: 'delete',
997
+ httpPath: '/v1/messaging/groups/{id}',
998
+ },
999
+ {
1000
+ clientCallName: 'client.messaging.groups.members.create',
1001
+ fullyQualifiedName: 'messaging.groups.members.create',
1002
+ httpMethod: 'post',
1003
+ httpPath: '/v1/messaging/groups/{id}/members',
1004
+ },
1005
+ {
1006
+ clientCallName: 'client.messaging.groups.members.delete',
1007
+ fullyQualifiedName: 'messaging.groups.members.delete',
1008
+ httpMethod: 'delete',
1009
+ httpPath: '/v1/messaging/groups/{id}/members/{member_id}',
1010
+ },
1011
+ {
1012
+ clientCallName: 'client.messaging.blocks.create',
1013
+ fullyQualifiedName: 'messaging.blocks.create',
1014
+ httpMethod: 'post',
1015
+ httpPath: '/v1/messaging/blocks',
1016
+ },
1017
+ {
1018
+ clientCallName: 'client.messaging.blocks.delete',
1019
+ fullyQualifiedName: 'messaging.blocks.delete',
1020
+ httpMethod: 'delete',
1021
+ httpPath: '/v1/messaging/blocks/{id}',
1022
+ },
1023
+ {
1024
+ clientCallName: 'client.messaging.blocks.list',
1025
+ fullyQualifiedName: 'messaging.blocks.list',
1026
+ httpMethod: 'get',
1027
+ httpPath: '/v1/messaging/blocks',
1028
+ },
1029
+ {
1030
+ clientCallName: 'client.messaging.preferences.list',
1031
+ fullyQualifiedName: 'messaging.preferences.list',
1032
+ httpMethod: 'get',
1033
+ httpPath: '/v1/messaging/preferences',
1034
+ },
1035
+ {
1036
+ clientCallName: 'client.messaging.preferences.update',
1037
+ fullyQualifiedName: 'messaging.preferences.update',
1038
+ httpMethod: 'put',
1039
+ httpPath: '/v1/messaging/preferences',
1040
+ },
1041
+ {
1042
+ clientCallName: 'client.messaging.emailDomains.create',
1043
+ fullyQualifiedName: 'messaging.emailDomains.create',
1044
+ httpMethod: 'post',
1045
+ httpPath: '/v1/messaging/email-domains',
1046
+ },
1047
+ {
1048
+ clientCallName: 'client.messaging.emailDomains.list',
1049
+ fullyQualifiedName: 'messaging.emailDomains.list',
1050
+ httpMethod: 'get',
1051
+ httpPath: '/v1/messaging/email-domains',
1052
+ },
1053
+ {
1054
+ clientCallName: 'client.messaging.emailDomains.retrieve',
1055
+ fullyQualifiedName: 'messaging.emailDomains.retrieve',
1056
+ httpMethod: 'get',
1057
+ httpPath: '/v1/messaging/email-domains/{id}',
1058
+ },
1059
+ {
1060
+ clientCallName: 'client.messaging.emailDomains.delete',
1061
+ fullyQualifiedName: 'messaging.emailDomains.delete',
1062
+ httpMethod: 'delete',
1063
+ httpPath: '/v1/messaging/email-domains/{id}',
1064
+ },
1065
+ {
1066
+ clientCallName: 'client.messaging.emailDomains.actions.verify',
1067
+ fullyQualifiedName: 'messaging.emailDomains.actions.verify',
1068
+ httpMethod: 'post',
1069
+ httpPath: '/v1/messaging/email-domains/{id}/actions/verify',
1070
+ },
1071
+ {
1072
+ clientCallName: 'client.messaging.emailInboxes.create',
1073
+ fullyQualifiedName: 'messaging.emailInboxes.create',
1074
+ httpMethod: 'post',
1075
+ httpPath: '/v1/messaging/email-inboxes',
1076
+ },
1077
+ {
1078
+ clientCallName: 'client.messaging.emailInboxes.list',
1079
+ fullyQualifiedName: 'messaging.emailInboxes.list',
1080
+ httpMethod: 'get',
1081
+ httpPath: '/v1/messaging/email-inboxes',
1082
+ },
1083
+ {
1084
+ clientCallName: 'client.messaging.emailInboxes.retrieve',
1085
+ fullyQualifiedName: 'messaging.emailInboxes.retrieve',
1086
+ httpMethod: 'get',
1087
+ httpPath: '/v1/messaging/email-inboxes/{id}',
1088
+ },
1089
+ {
1090
+ clientCallName: 'client.messaging.emailInboxes.update',
1091
+ fullyQualifiedName: 'messaging.emailInboxes.update',
1092
+ httpMethod: 'patch',
1093
+ httpPath: '/v1/messaging/email-inboxes/{id}',
1094
+ },
1095
+ {
1096
+ clientCallName: 'client.messaging.emailInboxes.delete',
1097
+ fullyQualifiedName: 'messaging.emailInboxes.delete',
1098
+ httpMethod: 'delete',
1099
+ httpPath: '/v1/messaging/email-inboxes/{id}',
1100
+ },
1101
+ {
1102
+ clientCallName: 'client.sales.accountGroups.list',
1103
+ fullyQualifiedName: 'sales.accountGroups.list',
1104
+ httpMethod: 'get',
1105
+ httpPath: '/v1/sales/account-groups',
1106
+ },
1107
+ {
1108
+ clientCallName: 'client.sales.accountGroups.retrieve',
1109
+ fullyQualifiedName: 'sales.accountGroups.retrieve',
1110
+ httpMethod: 'get',
1111
+ httpPath: '/v1/sales/account-groups/{id}',
1112
+ },
1113
+ {
1114
+ clientCallName: 'client.sales.accountGroups.create',
1115
+ fullyQualifiedName: 'sales.accountGroups.create',
1116
+ httpMethod: 'post',
1117
+ httpPath: '/v1/sales/account-groups',
1118
+ },
1119
+ {
1120
+ clientCallName: 'client.sales.accountGroups.update',
1121
+ fullyQualifiedName: 'sales.accountGroups.update',
1122
+ httpMethod: 'patch',
1123
+ httpPath: '/v1/sales/account-groups/{id}',
1124
+ },
1125
+ {
1126
+ clientCallName: 'client.sales.accountGroups.delete',
1127
+ fullyQualifiedName: 'sales.accountGroups.delete',
1128
+ httpMethod: 'delete',
1129
+ httpPath: '/v1/sales/account-groups/{id}',
1130
+ },
1131
+ {
1132
+ clientCallName: 'client.sales.accountPrices.list',
1133
+ fullyQualifiedName: 'sales.accountPrices.list',
1134
+ httpMethod: 'get',
1135
+ httpPath: '/v1/sales/account-prices',
1136
+ },
1137
+ {
1138
+ clientCallName: 'client.sales.accountPrices.retrieve',
1139
+ fullyQualifiedName: 'sales.accountPrices.retrieve',
1140
+ httpMethod: 'get',
1141
+ httpPath: '/v1/sales/account-prices/{id}',
1142
+ },
1143
+ {
1144
+ clientCallName: 'client.sales.accountPrices.create',
1145
+ fullyQualifiedName: 'sales.accountPrices.create',
1146
+ httpMethod: 'post',
1147
+ httpPath: '/v1/sales/account-prices',
1148
+ },
1149
+ {
1150
+ clientCallName: 'client.sales.accountPrices.update',
1151
+ fullyQualifiedName: 'sales.accountPrices.update',
1152
+ httpMethod: 'patch',
1153
+ httpPath: '/v1/sales/account-prices/{id}',
1154
+ },
1155
+ {
1156
+ clientCallName: 'client.sales.accountPrices.delete',
1157
+ fullyQualifiedName: 'sales.accountPrices.delete',
1158
+ httpMethod: 'delete',
1159
+ httpPath: '/v1/sales/account-prices/{id}',
1160
+ },
1161
+ {
1162
+ clientCallName: 'client.sales.accountPrices.actions.exportPriceList',
1163
+ fullyQualifiedName: 'sales.accountPrices.actions.exportPriceList',
1164
+ httpMethod: 'post',
1165
+ httpPath: '/v1/sales/account-prices/actions/export-price-list',
1166
+ },
1167
+ {
1168
+ clientCallName: 'client.sales.addresses.list',
1169
+ fullyQualifiedName: 'sales.addresses.list',
1170
+ httpMethod: 'get',
1171
+ httpPath: '/v1/sales/addresses',
1172
+ },
1173
+ {
1174
+ clientCallName: 'client.sales.addresses.retrieve',
1175
+ fullyQualifiedName: 'sales.addresses.retrieve',
1176
+ httpMethod: 'get',
1177
+ httpPath: '/v1/sales/addresses/{id}',
1178
+ },
1179
+ {
1180
+ clientCallName: 'client.sales.addresses.create',
1181
+ fullyQualifiedName: 'sales.addresses.create',
1182
+ httpMethod: 'post',
1183
+ httpPath: '/v1/sales/addresses',
1184
+ },
1185
+ {
1186
+ clientCallName: 'client.sales.addresses.update',
1187
+ fullyQualifiedName: 'sales.addresses.update',
1188
+ httpMethod: 'patch',
1189
+ httpPath: '/v1/sales/addresses/{id}',
1190
+ },
1191
+ {
1192
+ clientCallName: 'client.sales.addresses.delete',
1193
+ fullyQualifiedName: 'sales.addresses.delete',
1194
+ httpMethod: 'delete',
1195
+ httpPath: '/v1/sales/addresses/{id}',
1196
+ },
1197
+ {
1198
+ clientCallName: 'client.sales.accountStatuses.list',
1199
+ fullyQualifiedName: 'sales.accountStatuses.list',
1200
+ httpMethod: 'get',
1201
+ httpPath: '/v1/sales/account-statuses',
1202
+ },
1203
+ {
1204
+ clientCallName: 'client.sales.accountStatuses.retrieve',
1205
+ fullyQualifiedName: 'sales.accountStatuses.retrieve',
1206
+ httpMethod: 'get',
1207
+ httpPath: '/v1/sales/account-statuses/{id}',
1208
+ },
1209
+ {
1210
+ clientCallName: 'client.sales.accountUsers.salesTargets.list',
1211
+ fullyQualifiedName: 'sales.accountUsers.salesTargets.list',
1212
+ httpMethod: 'get',
1213
+ httpPath: '/v1/sales/account-users/{id}/sales-targets',
1214
+ },
1215
+ {
1216
+ clientCallName: 'client.sales.accountUsers.salesTargets.create',
1217
+ fullyQualifiedName: 'sales.accountUsers.salesTargets.create',
1218
+ httpMethod: 'post',
1219
+ httpPath: '/v1/sales/account-users/{id}/sales-targets',
1220
+ },
1221
+ {
1222
+ clientCallName: 'client.sales.accountUsers.salesTargets.update',
1223
+ fullyQualifiedName: 'sales.accountUsers.salesTargets.update',
1224
+ httpMethod: 'put',
1225
+ httpPath: '/v1/sales/account-users/{id}/sales-targets/{target_id}',
1226
+ },
1227
+ {
1228
+ clientCallName: 'client.sales.priorities.list',
1229
+ fullyQualifiedName: 'sales.priorities.list',
1230
+ httpMethod: 'get',
1231
+ httpPath: '/v1/sales/priorities',
1232
+ },
1233
+ {
1234
+ clientCallName: 'client.sales.priorities.retrieve',
1235
+ fullyQualifiedName: 'sales.priorities.retrieve',
1236
+ httpMethod: 'get',
1237
+ httpPath: '/v1/sales/priorities/{id}',
1238
+ },
1239
+ {
1240
+ clientCallName: 'client.sales.customers.list',
1241
+ fullyQualifiedName: 'sales.customers.list',
1242
+ httpMethod: 'get',
1243
+ httpPath: '/v1/sales/customers',
1244
+ },
1245
+ {
1246
+ clientCallName: 'client.sales.customers.retrieve',
1247
+ fullyQualifiedName: 'sales.customers.retrieve',
1248
+ httpMethod: 'get',
1249
+ httpPath: '/v1/sales/customers/{id}',
1250
+ },
1251
+ {
1252
+ clientCallName: 'client.sales.customers.create',
1253
+ fullyQualifiedName: 'sales.customers.create',
1254
+ httpMethod: 'post',
1255
+ httpPath: '/v1/sales/customers',
1256
+ },
1257
+ {
1258
+ clientCallName: 'client.sales.customers.update',
1259
+ fullyQualifiedName: 'sales.customers.update',
1260
+ httpMethod: 'patch',
1261
+ httpPath: '/v1/sales/customers/{id}',
1262
+ },
1263
+ {
1264
+ clientCallName: 'client.sales.customers.delete',
1265
+ fullyQualifiedName: 'sales.customers.delete',
1266
+ httpMethod: 'delete',
1267
+ httpPath: '/v1/sales/customers/{id}',
1268
+ },
1269
+ {
1270
+ clientCallName: 'client.sales.customers.retrieveLeadTime',
1271
+ fullyQualifiedName: 'sales.customers.retrieveLeadTime',
1272
+ httpMethod: 'get',
1273
+ httpPath: '/v1/sales/customers/{id}/lead-time',
1274
+ },
1275
+ {
1276
+ clientCallName: 'client.sales.customers.actions.merge',
1277
+ fullyQualifiedName: 'sales.customers.actions.merge',
1278
+ httpMethod: 'post',
1279
+ httpPath: '/v1/sales/customers/{id}/actions/merge',
1280
+ },
1281
+ {
1282
+ clientCallName: 'client.sales.contacts.actions.findByEmail',
1283
+ fullyQualifiedName: 'sales.contacts.actions.findByEmail',
1284
+ httpMethod: 'post',
1285
+ httpPath: '/v1/sales/contacts/actions/find-by-email',
1286
+ },
1287
+ {
1288
+ clientCallName: 'client.sales.orderDiscounts.list',
1289
+ fullyQualifiedName: 'sales.orderDiscounts.list',
1290
+ httpMethod: 'get',
1291
+ httpPath: '/v1/sales/order-discounts',
1292
+ },
1293
+ {
1294
+ clientCallName: 'client.sales.orderDiscounts.retrieve',
1295
+ fullyQualifiedName: 'sales.orderDiscounts.retrieve',
1296
+ httpMethod: 'get',
1297
+ httpPath: '/v1/sales/order-discounts/{id}',
1298
+ },
1299
+ {
1300
+ clientCallName: 'client.sales.orderDiscounts.create',
1301
+ fullyQualifiedName: 'sales.orderDiscounts.create',
1302
+ httpMethod: 'post',
1303
+ httpPath: '/v1/sales/order-discounts',
1304
+ },
1305
+ {
1306
+ clientCallName: 'client.sales.orderDiscounts.update',
1307
+ fullyQualifiedName: 'sales.orderDiscounts.update',
1308
+ httpMethod: 'patch',
1309
+ httpPath: '/v1/sales/order-discounts/{id}',
1310
+ },
1311
+ {
1312
+ clientCallName: 'client.sales.orderDiscounts.delete',
1313
+ fullyQualifiedName: 'sales.orderDiscounts.delete',
1314
+ httpMethod: 'delete',
1315
+ httpPath: '/v1/sales/order-discounts/{id}',
1316
+ },
1317
+ {
1318
+ clientCallName: 'client.sales.orderDiscounts.actions.findByCode',
1319
+ fullyQualifiedName: 'sales.orderDiscounts.actions.findByCode',
1320
+ httpMethod: 'post',
1321
+ httpPath: '/v1/sales/order-discounts/actions/find-by-code',
1322
+ },
1323
+ {
1324
+ clientCallName: 'client.sales.salesOrders.retrieveStatuses',
1325
+ fullyQualifiedName: 'sales.salesOrders.retrieveStatuses',
1326
+ httpMethod: 'get',
1327
+ httpPath: '/v1/sales/sales-orders/statuses',
1328
+ },
1329
+ {
1330
+ clientCallName: 'client.sales.salesOrders.list',
1331
+ fullyQualifiedName: 'sales.salesOrders.list',
1332
+ httpMethod: 'get',
1333
+ httpPath: '/v1/sales/sales-orders',
1334
+ },
1335
+ {
1336
+ clientCallName: 'client.sales.salesOrders.retrieve',
1337
+ fullyQualifiedName: 'sales.salesOrders.retrieve',
1338
+ httpMethod: 'get',
1339
+ httpPath: '/v1/sales/sales-orders/{id}',
1340
+ },
1341
+ {
1342
+ clientCallName: 'client.sales.salesOrders.create',
1343
+ fullyQualifiedName: 'sales.salesOrders.create',
1344
+ httpMethod: 'post',
1345
+ httpPath: '/v1/sales/sales-orders',
1346
+ },
1347
+ {
1348
+ clientCallName: 'client.sales.salesOrders.update',
1349
+ fullyQualifiedName: 'sales.salesOrders.update',
1350
+ httpMethod: 'patch',
1351
+ httpPath: '/v1/sales/sales-orders/{id}',
1352
+ },
1353
+ {
1354
+ clientCallName: 'client.sales.salesOrders.delete',
1355
+ fullyQualifiedName: 'sales.salesOrders.delete',
1356
+ httpMethod: 'delete',
1357
+ httpPath: '/v1/sales/sales-orders/{id}',
1358
+ },
1359
+ {
1360
+ clientCallName: 'client.sales.salesOrders.checkout',
1361
+ fullyQualifiedName: 'sales.salesOrders.checkout',
1362
+ httpMethod: 'post',
1363
+ httpPath: '/v1/sales/sales-orders/{id}/checkout',
1364
+ },
1365
+ {
1366
+ clientCallName: 'client.sales.salesOrders.priceQuote',
1367
+ fullyQualifiedName: 'sales.salesOrders.priceQuote',
1368
+ httpMethod: 'post',
1369
+ httpPath: '/v1/sales/sales-orders/price-quote',
1370
+ },
1371
+ {
1372
+ clientCallName: 'client.sales.salesOrders.actions.bulkDelete',
1373
+ fullyQualifiedName: 'sales.salesOrders.actions.bulkDelete',
1374
+ httpMethod: 'post',
1375
+ httpPath: '/v1/sales/sales-orders/actions/bulk-delete',
1376
+ },
1377
+ {
1378
+ clientCallName: 'client.sales.salesOrders.actions.issue',
1379
+ fullyQualifiedName: 'sales.salesOrders.actions.issue',
1380
+ httpMethod: 'put',
1381
+ httpPath: '/v1/sales/sales-orders/{id}/actions/issue',
1382
+ },
1383
+ {
1384
+ clientCallName: 'client.sales.salesOrders.actions.unissue',
1385
+ fullyQualifiedName: 'sales.salesOrders.actions.unissue',
1386
+ httpMethod: 'put',
1387
+ httpPath: '/v1/sales/sales-orders/{id}/actions/unissue',
1388
+ },
1389
+ {
1390
+ clientCallName: 'client.sales.salesOrders.actions.close',
1391
+ fullyQualifiedName: 'sales.salesOrders.actions.close',
1392
+ httpMethod: 'put',
1393
+ httpPath: '/v1/sales/sales-orders/{id}/actions/close',
1394
+ },
1395
+ {
1396
+ clientCallName: 'client.sales.salesOrders.actions.open',
1397
+ fullyQualifiedName: 'sales.salesOrders.actions.open',
1398
+ httpMethod: 'put',
1399
+ httpPath: '/v1/sales/sales-orders/{id}/actions/open',
1400
+ },
1401
+ {
1402
+ clientCallName: 'client.sales.salesOrders.actions.quoteFreight',
1403
+ fullyQualifiedName: 'sales.salesOrders.actions.quoteFreight',
1404
+ httpMethod: 'post',
1405
+ httpPath: '/v1/sales/sales-orders/{id}/actions/quote-freight',
1406
+ },
1407
+ {
1408
+ clientCallName: 'client.sales.salesOrders.actions.quoteCommitment',
1409
+ fullyQualifiedName: 'sales.salesOrders.actions.quoteCommitment',
1410
+ httpMethod: 'post',
1411
+ httpPath: '/v1/sales/sales-orders/actions/quote-commitment',
1412
+ },
1413
+ {
1414
+ clientCallName: 'client.sales.salesOrders.actions.createProductionRun',
1415
+ fullyQualifiedName: 'sales.salesOrders.actions.createProductionRun',
1416
+ httpMethod: 'post',
1417
+ httpPath: '/v1/sales/sales-orders/{id}/actions/create-production-run',
1418
+ },
1419
+ {
1420
+ clientCallName: 'client.sales.salesOrders.lines.create',
1421
+ fullyQualifiedName: 'sales.salesOrders.lines.create',
1422
+ httpMethod: 'post',
1423
+ httpPath: '/v1/sales/sales-orders/{id}/lines',
1424
+ },
1425
+ {
1426
+ clientCallName: 'client.sales.salesOrders.lines.update',
1427
+ fullyQualifiedName: 'sales.salesOrders.lines.update',
1428
+ httpMethod: 'patch',
1429
+ httpPath: '/v1/sales/sales-orders/{id}/lines/{line_id}',
1430
+ },
1431
+ {
1432
+ clientCallName: 'client.sales.salesOrders.lines.delete',
1433
+ fullyQualifiedName: 'sales.salesOrders.lines.delete',
1434
+ httpMethod: 'delete',
1435
+ httpPath: '/v1/sales/sales-orders/{id}/lines/{line_id}',
1436
+ },
1437
+ {
1438
+ clientCallName: 'client.sales.salesOrders.lines.actions.reorder',
1439
+ fullyQualifiedName: 'sales.salesOrders.lines.actions.reorder',
1440
+ httpMethod: 'post',
1441
+ httpPath: '/v1/sales/sales-orders/{id}/lines/actions/reorder',
1442
+ },
1443
+ {
1444
+ clientCallName: 'client.sales.volumeDiscounts.list',
1445
+ fullyQualifiedName: 'sales.volumeDiscounts.list',
1446
+ httpMethod: 'get',
1447
+ httpPath: '/v1/sales/volume-discounts',
1448
+ },
1449
+ {
1450
+ clientCallName: 'client.sales.volumeDiscounts.retrieve',
1451
+ fullyQualifiedName: 'sales.volumeDiscounts.retrieve',
1452
+ httpMethod: 'get',
1453
+ httpPath: '/v1/sales/volume-discounts/{id}',
1454
+ },
1455
+ {
1456
+ clientCallName: 'client.sales.volumeDiscounts.create',
1457
+ fullyQualifiedName: 'sales.volumeDiscounts.create',
1458
+ httpMethod: 'post',
1459
+ httpPath: '/v1/sales/volume-discounts',
1460
+ },
1461
+ {
1462
+ clientCallName: 'client.sales.volumeDiscounts.update',
1463
+ fullyQualifiedName: 'sales.volumeDiscounts.update',
1464
+ httpMethod: 'patch',
1465
+ httpPath: '/v1/sales/volume-discounts/{id}',
1466
+ },
1467
+ {
1468
+ clientCallName: 'client.sales.volumeDiscounts.delete',
1469
+ fullyQualifiedName: 'sales.volumeDiscounts.delete',
1470
+ httpMethod: 'delete',
1471
+ httpPath: '/v1/sales/volume-discounts/{id}',
1472
+ },
1473
+ {
1474
+ clientCallName: 'client.finance.retrieveTransactionTypes',
1475
+ fullyQualifiedName: 'finance.retrieveTransactionTypes',
1476
+ httpMethod: 'get',
1477
+ httpPath: '/v1/finance/transaction-types',
1478
+ },
1479
+ {
1480
+ clientCallName: 'client.finance.retrieveTransactionMethods',
1481
+ fullyQualifiedName: 'finance.retrieveTransactionMethods',
1482
+ httpMethod: 'get',
1483
+ httpPath: '/v1/finance/transaction-methods',
1484
+ },
1485
+ {
1486
+ clientCallName: 'client.finance.retrieveAdjustmentTypes',
1487
+ fullyQualifiedName: 'finance.retrieveAdjustmentTypes',
1488
+ httpMethod: 'get',
1489
+ httpPath: '/v1/finance/adjustment-types',
1490
+ },
1491
+ {
1492
+ clientCallName: 'client.finance.paymentTerms.list',
1493
+ fullyQualifiedName: 'finance.paymentTerms.list',
1494
+ httpMethod: 'get',
1495
+ httpPath: '/v1/finance/payment-terms',
1496
+ },
1497
+ {
1498
+ clientCallName: 'client.finance.paymentTerms.retrieve',
1499
+ fullyQualifiedName: 'finance.paymentTerms.retrieve',
1500
+ httpMethod: 'get',
1501
+ httpPath: '/v1/finance/payment-terms/{id}',
1502
+ },
1503
+ {
1504
+ clientCallName: 'client.finance.paymentTerms.create',
1505
+ fullyQualifiedName: 'finance.paymentTerms.create',
1506
+ httpMethod: 'post',
1507
+ httpPath: '/v1/finance/payment-terms',
1508
+ },
1509
+ {
1510
+ clientCallName: 'client.finance.paymentTerms.update',
1511
+ fullyQualifiedName: 'finance.paymentTerms.update',
1512
+ httpMethod: 'patch',
1513
+ httpPath: '/v1/finance/payment-terms/{id}',
1514
+ },
1515
+ {
1516
+ clientCallName: 'client.finance.paymentTerms.delete',
1517
+ fullyQualifiedName: 'finance.paymentTerms.delete',
1518
+ httpMethod: 'delete',
1519
+ httpPath: '/v1/finance/payment-terms/{id}',
1520
+ },
1521
+ {
1522
+ clientCallName: 'client.operations.retrieveMachineDowntimeReasons',
1523
+ fullyQualifiedName: 'operations.retrieveMachineDowntimeReasons',
1524
+ httpMethod: 'get',
1525
+ httpPath: '/v1/operations/machine-downtime-reasons',
1526
+ },
1527
+ {
1528
+ clientCallName: 'client.operations.retrieveMachineStatus',
1529
+ fullyQualifiedName: 'operations.retrieveMachineStatus',
1530
+ httpMethod: 'get',
1531
+ httpPath: '/v1/operations/machine-status',
1532
+ },
1533
+ {
1534
+ clientCallName: 'client.operations.retrieveDemandOverrideTypes',
1535
+ fullyQualifiedName: 'operations.retrieveDemandOverrideTypes',
1536
+ httpMethod: 'get',
1537
+ httpPath: '/v1/operations/demand-override-types',
1538
+ },
1539
+ {
1540
+ clientCallName: 'client.operations.retrieveScheduleDeviationTypes',
1541
+ fullyQualifiedName: 'operations.retrieveScheduleDeviationTypes',
1542
+ httpMethod: 'get',
1543
+ httpPath: '/v1/operations/schedule-deviation-types',
1544
+ },
1545
+ {
1546
+ clientCallName: 'client.operations.shippingTerms.list',
1547
+ fullyQualifiedName: 'operations.shippingTerms.list',
1548
+ httpMethod: 'get',
1549
+ httpPath: '/v1/operations/shipping-terms',
1550
+ },
1551
+ {
1552
+ clientCallName: 'client.operations.shippingTerms.retrieve',
1553
+ fullyQualifiedName: 'operations.shippingTerms.retrieve',
1554
+ httpMethod: 'get',
1555
+ httpPath: '/v1/operations/shipping-terms/{id}',
1556
+ },
1557
+ {
1558
+ clientCallName: 'client.operations.shippingTerms.create',
1559
+ fullyQualifiedName: 'operations.shippingTerms.create',
1560
+ httpMethod: 'post',
1561
+ httpPath: '/v1/operations/shipping-terms',
1562
+ },
1563
+ {
1564
+ clientCallName: 'client.operations.shippingTerms.update',
1565
+ fullyQualifiedName: 'operations.shippingTerms.update',
1566
+ httpMethod: 'patch',
1567
+ httpPath: '/v1/operations/shipping-terms/{id}',
1568
+ },
1569
+ {
1570
+ clientCallName: 'client.operations.shippingTerms.delete',
1571
+ fullyQualifiedName: 'operations.shippingTerms.delete',
1572
+ httpMethod: 'delete',
1573
+ httpPath: '/v1/operations/shipping-terms/{id}',
1574
+ },
1575
+ {
1576
+ clientCallName: 'client.operations.carriers.list',
1577
+ fullyQualifiedName: 'operations.carriers.list',
1578
+ httpMethod: 'get',
1579
+ httpPath: '/v1/operations/carriers',
1580
+ },
1581
+ {
1582
+ clientCallName: 'client.operations.carriers.retrieve',
1583
+ fullyQualifiedName: 'operations.carriers.retrieve',
1584
+ httpMethod: 'get',
1585
+ httpPath: '/v1/operations/carriers/{id}',
1586
+ },
1587
+ {
1588
+ clientCallName: 'client.operations.carriers.create',
1589
+ fullyQualifiedName: 'operations.carriers.create',
1590
+ httpMethod: 'post',
1591
+ httpPath: '/v1/operations/carriers',
1592
+ },
1593
+ {
1594
+ clientCallName: 'client.operations.carriers.update',
1595
+ fullyQualifiedName: 'operations.carriers.update',
1596
+ httpMethod: 'patch',
1597
+ httpPath: '/v1/operations/carriers/{id}',
1598
+ },
1599
+ {
1600
+ clientCallName: 'client.operations.carriers.delete',
1601
+ fullyQualifiedName: 'operations.carriers.delete',
1602
+ httpMethod: 'delete',
1603
+ httpPath: '/v1/operations/carriers/{id}',
1604
+ },
1605
+ {
1606
+ clientCallName: 'client.operations.carriers.serviceLevels.list',
1607
+ fullyQualifiedName: 'operations.carriers.serviceLevels.list',
1608
+ httpMethod: 'get',
1609
+ httpPath: '/v1/operations/carriers/{carrier_id}/service-levels',
1610
+ },
1611
+ {
1612
+ clientCallName: 'client.operations.carriers.serviceLevels.retrieve',
1613
+ fullyQualifiedName: 'operations.carriers.serviceLevels.retrieve',
1614
+ httpMethod: 'get',
1615
+ httpPath: '/v1/operations/carriers/{carrier_id}/service-levels/{id}',
1616
+ },
1617
+ {
1618
+ clientCallName: 'client.operations.carriers.serviceLevels.create',
1619
+ fullyQualifiedName: 'operations.carriers.serviceLevels.create',
1620
+ httpMethod: 'post',
1621
+ httpPath: '/v1/operations/carriers/{carrier_id}/service-levels',
1622
+ },
1623
+ {
1624
+ clientCallName: 'client.operations.carriers.serviceLevels.update',
1625
+ fullyQualifiedName: 'operations.carriers.serviceLevels.update',
1626
+ httpMethod: 'patch',
1627
+ httpPath: '/v1/operations/carriers/{carrier_id}/service-levels/{id}',
1628
+ },
1629
+ {
1630
+ clientCallName: 'client.operations.carriers.serviceLevels.delete',
1631
+ fullyQualifiedName: 'operations.carriers.serviceLevels.delete',
1632
+ httpMethod: 'delete',
1633
+ httpPath: '/v1/operations/carriers/{carrier_id}/service-levels/{id}',
1634
+ },
1635
+ {
1636
+ clientCallName: 'client.operations.departments.list',
1637
+ fullyQualifiedName: 'operations.departments.list',
1638
+ httpMethod: 'get',
1639
+ httpPath: '/v1/operations/departments',
1640
+ },
1641
+ {
1642
+ clientCallName: 'client.operations.departments.retrieve',
1643
+ fullyQualifiedName: 'operations.departments.retrieve',
1644
+ httpMethod: 'get',
1645
+ httpPath: '/v1/operations/departments/{id}',
1646
+ },
1647
+ {
1648
+ clientCallName: 'client.operations.departments.create',
1649
+ fullyQualifiedName: 'operations.departments.create',
1650
+ httpMethod: 'post',
1651
+ httpPath: '/v1/operations/departments',
1652
+ },
1653
+ {
1654
+ clientCallName: 'client.operations.departments.update',
1655
+ fullyQualifiedName: 'operations.departments.update',
1656
+ httpMethod: 'patch',
1657
+ httpPath: '/v1/operations/departments/{id}',
1658
+ },
1659
+ {
1660
+ clientCallName: 'client.operations.departments.delete',
1661
+ fullyQualifiedName: 'operations.departments.delete',
1662
+ httpMethod: 'delete',
1663
+ httpPath: '/v1/operations/departments/{id}',
1664
+ },
1665
+ {
1666
+ clientCallName: 'client.operations.machines.list',
1667
+ fullyQualifiedName: 'operations.machines.list',
1668
+ httpMethod: 'get',
1669
+ httpPath: '/v1/operations/machines',
1670
+ },
1671
+ {
1672
+ clientCallName: 'client.operations.machines.retrieve',
1673
+ fullyQualifiedName: 'operations.machines.retrieve',
1674
+ httpMethod: 'get',
1675
+ httpPath: '/v1/operations/machines/{id}',
1676
+ },
1677
+ {
1678
+ clientCallName: 'client.operations.machines.create',
1679
+ fullyQualifiedName: 'operations.machines.create',
1680
+ httpMethod: 'post',
1681
+ httpPath: '/v1/operations/machines',
1682
+ },
1683
+ {
1684
+ clientCallName: 'client.operations.machines.update',
1685
+ fullyQualifiedName: 'operations.machines.update',
1686
+ httpMethod: 'patch',
1687
+ httpPath: '/v1/operations/machines/{id}',
1688
+ },
1689
+ {
1690
+ clientCallName: 'client.operations.machines.delete',
1691
+ fullyQualifiedName: 'operations.machines.delete',
1692
+ httpMethod: 'delete',
1693
+ httpPath: '/v1/operations/machines/{id}',
1694
+ },
1695
+ {
1696
+ clientCallName: 'client.operations.machineDowntimeEvents.list',
1697
+ fullyQualifiedName: 'operations.machineDowntimeEvents.list',
1698
+ httpMethod: 'get',
1699
+ httpPath: '/v1/operations/machine-downtime-events',
1700
+ },
1701
+ {
1702
+ clientCallName: 'client.operations.machineDowntimeEvents.retrieve',
1703
+ fullyQualifiedName: 'operations.machineDowntimeEvents.retrieve',
1704
+ httpMethod: 'get',
1705
+ httpPath: '/v1/operations/machine-downtime-events/{id}',
1706
+ },
1707
+ {
1708
+ clientCallName: 'client.operations.machineDowntimeEvents.create',
1709
+ fullyQualifiedName: 'operations.machineDowntimeEvents.create',
1710
+ httpMethod: 'post',
1711
+ httpPath: '/v1/operations/machine-downtime-events',
1712
+ },
1713
+ {
1714
+ clientCallName: 'client.operations.machineDowntimeEvents.update',
1715
+ fullyQualifiedName: 'operations.machineDowntimeEvents.update',
1716
+ httpMethod: 'patch',
1717
+ httpPath: '/v1/operations/machine-downtime-events/{id}',
1718
+ },
1719
+ {
1720
+ clientCallName: 'client.operations.machineDowntimeEvents.delete',
1721
+ fullyQualifiedName: 'operations.machineDowntimeEvents.delete',
1722
+ httpMethod: 'delete',
1723
+ httpPath: '/v1/operations/machine-downtime-events/{id}',
1724
+ },
1725
+ {
1726
+ clientCallName: 'client.operations.demandOverrides.list',
1727
+ fullyQualifiedName: 'operations.demandOverrides.list',
1728
+ httpMethod: 'get',
1729
+ httpPath: '/v1/operations/demand-overrides',
1730
+ },
1731
+ {
1732
+ clientCallName: 'client.operations.demandOverrides.retrieve',
1733
+ fullyQualifiedName: 'operations.demandOverrides.retrieve',
1734
+ httpMethod: 'get',
1735
+ httpPath: '/v1/operations/demand-overrides/{id}',
1736
+ },
1737
+ {
1738
+ clientCallName: 'client.operations.demandOverrides.create',
1739
+ fullyQualifiedName: 'operations.demandOverrides.create',
1740
+ httpMethod: 'post',
1741
+ httpPath: '/v1/operations/demand-overrides',
1742
+ },
1743
+ {
1744
+ clientCallName: 'client.operations.demandOverrides.update',
1745
+ fullyQualifiedName: 'operations.demandOverrides.update',
1746
+ httpMethod: 'patch',
1747
+ httpPath: '/v1/operations/demand-overrides/{id}',
1748
+ },
1749
+ {
1750
+ clientCallName: 'client.operations.demandOverrides.delete',
1751
+ fullyQualifiedName: 'operations.demandOverrides.delete',
1752
+ httpMethod: 'delete',
1753
+ httpPath: '/v1/operations/demand-overrides/{id}',
1754
+ },
1755
+ {
1756
+ clientCallName: 'client.operations.productionSchedules.list',
1757
+ fullyQualifiedName: 'operations.productionSchedules.list',
1758
+ httpMethod: 'get',
1759
+ httpPath: '/v1/operations/production-schedules',
1760
+ },
1761
+ {
1762
+ clientCallName: 'client.operations.productionSchedules.create',
1763
+ fullyQualifiedName: 'operations.productionSchedules.create',
1764
+ httpMethod: 'post',
1765
+ httpPath: '/v1/operations/production-schedules',
1766
+ },
1767
+ {
1768
+ clientCallName: 'client.operations.productionSchedules.retrieveCurrent',
1769
+ fullyQualifiedName: 'operations.productionSchedules.retrieveCurrent',
1770
+ httpMethod: 'get',
1771
+ httpPath: '/v1/operations/production-schedules/current',
1772
+ },
1773
+ {
1774
+ clientCallName: 'client.operations.productionSchedules.retrieve',
1775
+ fullyQualifiedName: 'operations.productionSchedules.retrieve',
1776
+ httpMethod: 'get',
1777
+ httpPath: '/v1/operations/production-schedules/{id}',
1778
+ },
1779
+ {
1780
+ clientCallName: 'client.operations.productionSchedules.retrieveItemPolicies',
1781
+ fullyQualifiedName: 'operations.productionSchedules.retrieveItemPolicies',
1782
+ httpMethod: 'get',
1783
+ httpPath: '/v1/operations/production-schedules/{id}/item-policies',
1784
+ },
1785
+ {
1786
+ clientCallName: 'client.operations.productionSchedules.retrieveFinishedPolicies',
1787
+ fullyQualifiedName: 'operations.productionSchedules.retrieveFinishedPolicies',
1788
+ httpMethod: 'get',
1789
+ httpPath: '/v1/operations/production-schedules/{id}/finished-policies',
1790
+ },
1791
+ {
1792
+ clientCallName: 'client.operations.productionSchedules.retrieveFinishingLines',
1793
+ fullyQualifiedName: 'operations.productionSchedules.retrieveFinishingLines',
1794
+ httpMethod: 'get',
1795
+ httpPath: '/v1/operations/production-schedules/{id}/finishing-lines',
1796
+ },
1797
+ {
1798
+ clientCallName: 'client.operations.productionSchedules.retrieveDerivedLines',
1799
+ fullyQualifiedName: 'operations.productionSchedules.retrieveDerivedLines',
1800
+ httpMethod: 'get',
1801
+ httpPath: '/v1/operations/production-schedules/{id}/derived-lines',
1802
+ },
1803
+ {
1804
+ clientCallName: 'client.operations.productionSchedules.retrieveAtRiskOrders',
1805
+ fullyQualifiedName: 'operations.productionSchedules.retrieveAtRiskOrders',
1806
+ httpMethod: 'get',
1807
+ httpPath: '/v1/operations/production-schedules/{id}/at-risk-orders',
1808
+ },
1809
+ {
1810
+ clientCallName: 'client.operations.productionSchedules.retrieveDeviations',
1811
+ fullyQualifiedName: 'operations.productionSchedules.retrieveDeviations',
1812
+ httpMethod: 'get',
1813
+ httpPath: '/v1/operations/production-schedules/{id}/deviations',
1814
+ },
1815
+ {
1816
+ clientCallName: 'client.operations.productionSchedules.retrieveWeekReleasePreview',
1817
+ fullyQualifiedName: 'operations.productionSchedules.retrieveWeekReleasePreview',
1818
+ httpMethod: 'get',
1819
+ httpPath: '/v1/operations/production-schedules/{id}/week-release-preview',
1820
+ },
1821
+ {
1822
+ clientCallName: 'client.operations.productionSchedules.delete',
1823
+ fullyQualifiedName: 'operations.productionSchedules.delete',
1824
+ httpMethod: 'delete',
1825
+ httpPath: '/v1/operations/production-schedules/{id}',
1826
+ },
1827
+ {
1828
+ clientCallName: 'client.operations.productionSchedules.lines.list',
1829
+ fullyQualifiedName: 'operations.productionSchedules.lines.list',
1830
+ httpMethod: 'get',
1831
+ httpPath: '/v1/operations/production-schedules/{id}/lines',
1832
+ },
1833
+ {
1834
+ clientCallName: 'client.operations.productionSchedules.lines.create',
1835
+ fullyQualifiedName: 'operations.productionSchedules.lines.create',
1836
+ httpMethod: 'post',
1837
+ httpPath: '/v1/operations/production-schedules/{id}/lines',
1838
+ },
1839
+ {
1840
+ clientCallName: 'client.operations.productionSchedules.lines.update',
1841
+ fullyQualifiedName: 'operations.productionSchedules.lines.update',
1842
+ httpMethod: 'patch',
1843
+ httpPath: '/v1/operations/production-schedules/{id}/lines/{line_id}',
1844
+ },
1845
+ {
1846
+ clientCallName: 'client.operations.productionSchedules.lines.delete',
1847
+ fullyQualifiedName: 'operations.productionSchedules.lines.delete',
1848
+ httpMethod: 'delete',
1849
+ httpPath: '/v1/operations/production-schedules/{id}/lines/{line_id}',
1850
+ },
1851
+ {
1852
+ clientCallName: 'client.operations.productionSchedules.actions.preview',
1853
+ fullyQualifiedName: 'operations.productionSchedules.actions.preview',
1854
+ httpMethod: 'put',
1855
+ httpPath: '/v1/operations/production-schedules/actions/preview',
1856
+ },
1857
+ {
1858
+ clientCallName: 'client.operations.productionSchedules.actions.previewRegenerate',
1859
+ fullyQualifiedName: 'operations.productionSchedules.actions.previewRegenerate',
1860
+ httpMethod: 'put',
1861
+ httpPath: '/v1/operations/production-schedules/{id}/actions/preview-regenerate',
1862
+ },
1863
+ {
1864
+ clientCallName: 'client.operations.productionSchedules.actions.regenerate',
1865
+ fullyQualifiedName: 'operations.productionSchedules.actions.regenerate',
1866
+ httpMethod: 'put',
1867
+ httpPath: '/v1/operations/production-schedules/{id}/actions/regenerate',
1868
+ },
1869
+ {
1870
+ clientCallName: 'client.operations.productionSchedules.actions.publish',
1871
+ fullyQualifiedName: 'operations.productionSchedules.actions.publish',
1872
+ httpMethod: 'put',
1873
+ httpPath: '/v1/operations/production-schedules/{id}/actions/publish',
1874
+ },
1875
+ {
1876
+ clientCallName: 'client.operations.productionSchedules.actions.releaseWeek',
1877
+ fullyQualifiedName: 'operations.productionSchedules.actions.releaseWeek',
1878
+ httpMethod: 'post',
1879
+ httpPath: '/v1/operations/production-schedules/{id}/actions/release-week',
1880
+ },
1881
+ {
1882
+ clientCallName: 'client.operations.productionSchedules.actions.archive',
1883
+ fullyQualifiedName: 'operations.productionSchedules.actions.archive',
1884
+ httpMethod: 'put',
1885
+ httpPath: '/v1/operations/production-schedules/{id}/actions/archive',
1886
+ },
1887
+ {
1888
+ clientCallName: 'client.operations.productionScheduleSettings.list',
1889
+ fullyQualifiedName: 'operations.productionScheduleSettings.list',
1890
+ httpMethod: 'get',
1891
+ httpPath: '/v1/operations/production-schedule-settings',
1892
+ },
1893
+ {
1894
+ clientCallName: 'client.operations.productionScheduleSettings.update',
1895
+ fullyQualifiedName: 'operations.productionScheduleSettings.update',
1896
+ httpMethod: 'put',
1897
+ httpPath: '/v1/operations/production-schedule-settings',
1898
+ },
1899
+ {
1900
+ clientCallName: 'client.operations.productionScheduleSettings.resources.list',
1901
+ fullyQualifiedName: 'operations.productionScheduleSettings.resources.list',
1902
+ httpMethod: 'get',
1903
+ httpPath: '/v1/operations/production-schedule-settings/resources',
1904
+ },
1905
+ {
1906
+ clientCallName: 'client.operations.productionScheduleSettings.resources.update',
1907
+ fullyQualifiedName: 'operations.productionScheduleSettings.resources.update',
1908
+ httpMethod: 'put',
1909
+ httpPath: '/v1/operations/production-schedule-settings/resources',
1910
+ },
1911
+ {
1912
+ clientCallName: 'client.operations.productionScheduleSettings.resources.delete',
1913
+ fullyQualifiedName: 'operations.productionScheduleSettings.resources.delete',
1914
+ httpMethod: 'delete',
1915
+ httpPath: '/v1/operations/production-schedule-settings/resources/{id}',
1916
+ },
1917
+ {
1918
+ clientCallName: 'client.operations.productionScheduleSettings.items.list',
1919
+ fullyQualifiedName: 'operations.productionScheduleSettings.items.list',
1920
+ httpMethod: 'get',
1921
+ httpPath: '/v1/operations/production-schedule-settings/items',
1922
+ },
1923
+ {
1924
+ clientCallName: 'client.operations.productionScheduleSettings.items.retrieve',
1925
+ fullyQualifiedName: 'operations.productionScheduleSettings.items.retrieve',
1926
+ httpMethod: 'get',
1927
+ httpPath: '/v1/operations/production-schedule-settings/items/{item_id}',
1928
+ },
1929
+ {
1930
+ clientCallName: 'client.operations.productionScheduleSettings.items.update',
1931
+ fullyQualifiedName: 'operations.productionScheduleSettings.items.update',
1932
+ httpMethod: 'put',
1933
+ httpPath: '/v1/operations/production-schedule-settings/items/{item_id}',
1934
+ },
1935
+ {
1936
+ clientCallName: 'client.operations.productionScheduleSettings.items.delete',
1937
+ fullyQualifiedName: 'operations.productionScheduleSettings.items.delete',
1938
+ httpMethod: 'delete',
1939
+ httpPath: '/v1/operations/production-schedule-settings/items/{item_id}',
1940
+ },
1941
+ {
1942
+ clientCallName: 'client.operations.fulfillmentRecommendations.list',
1943
+ fullyQualifiedName: 'operations.fulfillmentRecommendations.list',
1944
+ httpMethod: 'get',
1945
+ httpPath: '/v1/operations/fulfillment-recommendations',
1946
+ },
1947
+ {
1948
+ clientCallName: 'client.operations.fulfillmentRecommendations.actions.apply',
1949
+ fullyQualifiedName: 'operations.fulfillmentRecommendations.actions.apply',
1950
+ httpMethod: 'post',
1951
+ httpPath: '/v1/operations/fulfillment-recommendations/actions/apply',
1952
+ },
1953
+ {
1954
+ clientCallName: 'client.operations.operatingCalendars.list',
1955
+ fullyQualifiedName: 'operations.operatingCalendars.list',
1956
+ httpMethod: 'get',
1957
+ httpPath: '/v1/operations/operating-calendars',
1958
+ },
1959
+ {
1960
+ clientCallName: 'client.operations.operatingCalendars.retrieve',
1961
+ fullyQualifiedName: 'operations.operatingCalendars.retrieve',
1962
+ httpMethod: 'get',
1963
+ httpPath: '/v1/operations/operating-calendars/{id}',
1964
+ },
1965
+ {
1966
+ clientCallName: 'client.operations.operatingCalendars.create',
1967
+ fullyQualifiedName: 'operations.operatingCalendars.create',
1968
+ httpMethod: 'post',
1969
+ httpPath: '/v1/operations/operating-calendars',
1970
+ },
1971
+ {
1972
+ clientCallName: 'client.operations.operatingCalendars.update',
1973
+ fullyQualifiedName: 'operations.operatingCalendars.update',
1974
+ httpMethod: 'patch',
1975
+ httpPath: '/v1/operations/operating-calendars/{id}',
1976
+ },
1977
+ {
1978
+ clientCallName: 'client.operations.operatingCalendars.delete',
1979
+ fullyQualifiedName: 'operations.operatingCalendars.delete',
1980
+ httpMethod: 'delete',
1981
+ httpPath: '/v1/operations/operating-calendars/{id}',
1982
+ },
1983
+ {
1984
+ clientCallName: 'client.operations.operatingCalendars.closures.list',
1985
+ fullyQualifiedName: 'operations.operatingCalendars.closures.list',
1986
+ httpMethod: 'get',
1987
+ httpPath: '/v1/operations/operating-calendars/{id}/closures',
1988
+ },
1989
+ {
1990
+ clientCallName: 'client.operations.operatingCalendars.closures.create',
1991
+ fullyQualifiedName: 'operations.operatingCalendars.closures.create',
1992
+ httpMethod: 'post',
1993
+ httpPath: '/v1/operations/operating-calendars/{id}/closures',
1994
+ },
1995
+ {
1996
+ clientCallName: 'client.operations.operatingCalendars.closures.delete',
1997
+ fullyQualifiedName: 'operations.operatingCalendars.closures.delete',
1998
+ httpMethod: 'delete',
1999
+ httpPath: '/v1/operations/operating-calendars/{id}/closures/{closure_id}',
2000
+ },
2001
+ {
2002
+ clientCallName: 'client.operations.locations.list',
2003
+ fullyQualifiedName: 'operations.locations.list',
2004
+ httpMethod: 'get',
2005
+ httpPath: '/v1/operations/locations',
2006
+ },
2007
+ {
2008
+ clientCallName: 'client.operations.locations.retrieve',
2009
+ fullyQualifiedName: 'operations.locations.retrieve',
2010
+ httpMethod: 'get',
2011
+ httpPath: '/v1/operations/locations/{id}',
2012
+ },
2013
+ {
2014
+ clientCallName: 'client.operations.locations.create',
2015
+ fullyQualifiedName: 'operations.locations.create',
2016
+ httpMethod: 'post',
2017
+ httpPath: '/v1/operations/locations',
2018
+ },
2019
+ {
2020
+ clientCallName: 'client.operations.locations.update',
2021
+ fullyQualifiedName: 'operations.locations.update',
2022
+ httpMethod: 'patch',
2023
+ httpPath: '/v1/operations/locations/{id}',
2024
+ },
2025
+ {
2026
+ clientCallName: 'client.operations.locations.delete',
2027
+ fullyQualifiedName: 'operations.locations.delete',
2028
+ httpMethod: 'delete',
2029
+ httpPath: '/v1/operations/locations/{id}',
2030
+ },
2031
+ {
2032
+ clientCallName: 'client.operations.locations.actions.bulkUpsert',
2033
+ fullyQualifiedName: 'operations.locations.actions.bulkUpsert',
2034
+ httpMethod: 'post',
2035
+ httpPath: '/v1/operations/locations/actions/bulk-upsert',
2036
+ },
2037
+ {
2038
+ clientCallName: 'client.operations.locationTypes.list',
2039
+ fullyQualifiedName: 'operations.locationTypes.list',
2040
+ httpMethod: 'get',
2041
+ httpPath: '/v1/operations/location-types',
2042
+ },
2043
+ {
2044
+ clientCallName: 'client.operations.locationTypes.retrieve',
2045
+ fullyQualifiedName: 'operations.locationTypes.retrieve',
2046
+ httpMethod: 'get',
2047
+ httpPath: '/v1/operations/location-types/{id}',
2048
+ },
2049
+ {
2050
+ clientCallName: 'client.operations.shipments.actions.rateShop',
2051
+ fullyQualifiedName: 'operations.shipments.actions.rateShop',
2052
+ httpMethod: 'post',
2053
+ httpPath: '/v1/operations/shipments/actions/rate-shop',
2054
+ },
2055
+ {
2056
+ clientCallName: 'client.operations.scanningStations.list',
2057
+ fullyQualifiedName: 'operations.scanningStations.list',
2058
+ httpMethod: 'get',
2059
+ httpPath: '/v1/operations/scanning-stations',
2060
+ },
2061
+ {
2062
+ clientCallName: 'client.operations.scanningStations.retrieve',
2063
+ fullyQualifiedName: 'operations.scanningStations.retrieve',
2064
+ httpMethod: 'get',
2065
+ httpPath: '/v1/operations/scanning-stations/{id}',
2066
+ },
2067
+ {
2068
+ clientCallName: 'client.operations.scanningStations.create',
2069
+ fullyQualifiedName: 'operations.scanningStations.create',
2070
+ httpMethod: 'post',
2071
+ httpPath: '/v1/operations/scanning-stations',
2072
+ },
2073
+ {
2074
+ clientCallName: 'client.operations.scanningStations.update',
2075
+ fullyQualifiedName: 'operations.scanningStations.update',
2076
+ httpMethod: 'patch',
2077
+ httpPath: '/v1/operations/scanning-stations/{id}',
2078
+ },
2079
+ {
2080
+ clientCallName: 'client.operations.scanningStations.delete',
2081
+ fullyQualifiedName: 'operations.scanningStations.delete',
2082
+ httpMethod: 'delete',
2083
+ httpPath: '/v1/operations/scanning-stations/{id}',
2084
+ },
2085
+ {
2086
+ clientCallName: 'client.identity.retrievePermissionGroups',
2087
+ fullyQualifiedName: 'identity.retrievePermissionGroups',
2088
+ httpMethod: 'get',
2089
+ httpPath: '/v1/identity/permission-groups',
2090
+ },
2091
+ {
2092
+ clientCallName: 'client.identity.accountUsers.list',
2093
+ fullyQualifiedName: 'identity.accountUsers.list',
2094
+ httpMethod: 'get',
2095
+ httpPath: '/v1/identity/account-users',
2096
+ },
2097
+ {
2098
+ clientCallName: 'client.identity.accountUsers.retrieve',
2099
+ fullyQualifiedName: 'identity.accountUsers.retrieve',
2100
+ httpMethod: 'get',
2101
+ httpPath: '/v1/identity/account-users/{id}',
2102
+ },
2103
+ {
2104
+ clientCallName: 'client.identity.accountUsers.create',
2105
+ fullyQualifiedName: 'identity.accountUsers.create',
2106
+ httpMethod: 'post',
2107
+ httpPath: '/v1/identity/account-users',
2108
+ },
2109
+ {
2110
+ clientCallName: 'client.identity.accountUsers.update',
2111
+ fullyQualifiedName: 'identity.accountUsers.update',
2112
+ httpMethod: 'patch',
2113
+ httpPath: '/v1/identity/account-users/{id}',
2114
+ },
2115
+ {
2116
+ clientCallName: 'client.identity.accountUsers.actions.activate',
2117
+ fullyQualifiedName: 'identity.accountUsers.actions.activate',
2118
+ httpMethod: 'put',
2119
+ httpPath: '/v1/identity/account-users/{id}/actions/activate',
2120
+ },
2121
+ {
2122
+ clientCallName: 'client.identity.accountUsers.actions.disable',
2123
+ fullyQualifiedName: 'identity.accountUsers.actions.disable',
2124
+ httpMethod: 'put',
2125
+ httpPath: '/v1/identity/account-users/{id}/actions/disable',
2126
+ },
2127
+ {
2128
+ clientCallName: 'client.identity.accountUsers.actions.remove',
2129
+ fullyQualifiedName: 'identity.accountUsers.actions.remove',
2130
+ httpMethod: 'put',
2131
+ httpPath: '/v1/identity/account-users/{id}/actions/remove',
2132
+ },
2133
+ {
2134
+ clientCallName: 'client.identity.accounts.updateFavicon',
2135
+ fullyQualifiedName: 'identity.accounts.updateFavicon',
2136
+ httpMethod: 'put',
2137
+ httpPath: '/v1/identity/accounts/{id}/favicon',
2138
+ },
2139
+ {
2140
+ clientCallName: 'client.identity.roles.list',
2141
+ fullyQualifiedName: 'identity.roles.list',
2142
+ httpMethod: 'get',
2143
+ httpPath: '/v1/identity/roles',
2144
+ },
2145
+ {
2146
+ clientCallName: 'client.identity.roles.retrieve',
2147
+ fullyQualifiedName: 'identity.roles.retrieve',
2148
+ httpMethod: 'get',
2149
+ httpPath: '/v1/identity/roles/{id}',
2150
+ },
2151
+ {
2152
+ clientCallName: 'client.identity.roles.create',
2153
+ fullyQualifiedName: 'identity.roles.create',
2154
+ httpMethod: 'post',
2155
+ httpPath: '/v1/identity/roles',
2156
+ },
2157
+ {
2158
+ clientCallName: 'client.identity.roles.update',
2159
+ fullyQualifiedName: 'identity.roles.update',
2160
+ httpMethod: 'patch',
2161
+ httpPath: '/v1/identity/roles/{id}',
2162
+ },
2163
+ {
2164
+ clientCallName: 'client.identity.roles.delete',
2165
+ fullyQualifiedName: 'identity.roles.delete',
2166
+ httpMethod: 'delete',
2167
+ httpPath: '/v1/identity/roles/{id}',
2168
+ },
2169
+ {
2170
+ clientCallName: 'client.settings.portalDomains.create',
2171
+ fullyQualifiedName: 'settings.portalDomains.create',
2172
+ httpMethod: 'post',
2173
+ httpPath: '/v1/settings/portal-domains',
2174
+ },
2175
+ {
2176
+ clientCallName: 'client.settings.portalDomains.list',
2177
+ fullyQualifiedName: 'settings.portalDomains.list',
2178
+ httpMethod: 'get',
2179
+ httpPath: '/v1/settings/portal-domains',
2180
+ },
2181
+ {
2182
+ clientCallName: 'client.settings.portalDomains.retrieve',
2183
+ fullyQualifiedName: 'settings.portalDomains.retrieve',
2184
+ httpMethod: 'get',
2185
+ httpPath: '/v1/settings/portal-domains/{id}',
2186
+ },
2187
+ {
2188
+ clientCallName: 'client.settings.portalDomains.delete',
2189
+ fullyQualifiedName: 'settings.portalDomains.delete',
2190
+ httpMethod: 'delete',
2191
+ httpPath: '/v1/settings/portal-domains/{id}',
2192
+ },
2193
+ {
2194
+ clientCallName: 'client.settings.portalDomains.actions.verify',
2195
+ fullyQualifiedName: 'settings.portalDomains.actions.verify',
2196
+ httpMethod: 'post',
2197
+ httpPath: '/v1/settings/portal-domains/{id}/actions/verify',
2198
+ },
2199
+ {
2200
+ clientCallName: 'client.settings.integrations.list',
2201
+ fullyQualifiedName: 'settings.integrations.list',
2202
+ httpMethod: 'get',
2203
+ httpPath: '/v1/settings/integrations',
2204
+ },
2205
+ {
2206
+ clientCallName: 'client.settings.integrations.create',
2207
+ fullyQualifiedName: 'settings.integrations.create',
2208
+ httpMethod: 'post',
2209
+ httpPath: '/v1/settings/integrations',
2210
+ },
2211
+ {
2212
+ clientCallName: 'client.settings.integrations.update',
2213
+ fullyQualifiedName: 'settings.integrations.update',
2214
+ httpMethod: 'put',
2215
+ httpPath: '/v1/settings/integrations/{id}',
2216
+ },
2217
+ {
2218
+ clientCallName: 'client.settings.integrations.delete',
2219
+ fullyQualifiedName: 'settings.integrations.delete',
2220
+ httpMethod: 'delete',
2221
+ httpPath: '/v1/settings/integrations/{id}',
2222
+ },
2223
+ ];
2224
+ function allowedMethodsForCodeTool(options) {
2225
+ if (!options) {
2226
+ return undefined;
2227
+ }
2228
+ let allowedMethods;
2229
+ if (options.codeAllowHttpGets || options.codeAllowedMethods) {
2230
+ // Start with nothing allowed and then add into it from options
2231
+ let allowedMethodsSet = new Set();
2232
+ if (options.codeAllowHttpGets) {
2233
+ // Add all methods that map to an HTTP GET
2234
+ sdkMethods
2235
+ .filter((method) => method.httpMethod === 'get')
2236
+ .forEach((method) => allowedMethodsSet.add(method));
2237
+ }
2238
+ if (options.codeAllowedMethods) {
2239
+ // Add all methods that match any of the allowed regexps
2240
+ const allowedRegexps = options.codeAllowedMethods.map((pattern) => {
2241
+ try {
2242
+ return new RegExp(pattern);
2243
+ }
2244
+ catch (e) {
2245
+ throw new Error(`Invalid regex pattern for allowed method: "${pattern}": ${e instanceof Error ? e.message : e}`);
2246
+ }
2247
+ });
2248
+ sdkMethods
2249
+ .filter((method) => allowedRegexps.some((regexp) => regexp.test(method.fullyQualifiedName)))
2250
+ .forEach((method) => allowedMethodsSet.add(method));
2251
+ }
2252
+ allowedMethods = Array.from(allowedMethodsSet);
2253
+ }
2254
+ else {
2255
+ // Start with everything allowed
2256
+ allowedMethods = [...sdkMethods];
2257
+ }
2258
+ if (options.codeBlockedMethods) {
2259
+ // Filter down based on blocked regexps
2260
+ const blockedRegexps = options.codeBlockedMethods.map((pattern) => {
2261
+ try {
2262
+ return new RegExp(pattern);
2263
+ }
2264
+ catch (e) {
2265
+ throw new Error(`Invalid regex pattern for blocked method: "${pattern}": ${e instanceof Error ? e.message : e}`);
2266
+ }
2267
+ });
2268
+ allowedMethods = allowedMethods.filter((method) => !blockedRegexps.some((regexp) => regexp.test(method.fullyQualifiedName)));
2269
+ }
2270
+ return allowedMethods;
2271
+ }
2272
+ export function blockedMethodsForCodeTool(options) {
2273
+ const allowedMethods = allowedMethodsForCodeTool(options);
2274
+ if (!allowedMethods) {
2275
+ return undefined;
2276
+ }
2277
+ const allowedSet = new Set(allowedMethods.map((method) => method.fullyQualifiedName));
2278
+ // Return any methods that are not explicitly allowed
2279
+ return sdkMethods.filter((method) => !allowedSet.has(method.fullyQualifiedName));
2280
+ }
2281
+ //# sourceMappingURL=methods.mjs.map