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