@timbrix/cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. package/README.md +319 -0
  2. package/bin/run.js +5 -0
  3. package/dist/commands/api-keys/create.d.ts +12 -0
  4. package/dist/commands/api-keys/create.d.ts.map +1 -0
  5. package/dist/commands/api-keys/create.js +65 -0
  6. package/dist/commands/api-keys/delete.d.ts +14 -0
  7. package/dist/commands/api-keys/delete.d.ts.map +1 -0
  8. package/dist/commands/api-keys/delete.js +55 -0
  9. package/dist/commands/api-keys/get.d.ts +13 -0
  10. package/dist/commands/api-keys/get.d.ts.map +1 -0
  11. package/dist/commands/api-keys/get.js +46 -0
  12. package/dist/commands/api-keys/list.d.ts +10 -0
  13. package/dist/commands/api-keys/list.d.ts.map +1 -0
  14. package/dist/commands/api-keys/list.js +61 -0
  15. package/dist/commands/login.d.ts +11 -0
  16. package/dist/commands/login.d.ts.map +1 -0
  17. package/dist/commands/login.js +67 -0
  18. package/dist/commands/logout.d.ts +7 -0
  19. package/dist/commands/logout.d.ts.map +1 -0
  20. package/dist/commands/logout.js +19 -0
  21. package/dist/commands/oauth-apps/create.d.ts +12 -0
  22. package/dist/commands/oauth-apps/create.d.ts.map +1 -0
  23. package/dist/commands/oauth-apps/create.js +96 -0
  24. package/dist/commands/oauth-apps/delete.d.ts +13 -0
  25. package/dist/commands/oauth-apps/delete.d.ts.map +1 -0
  26. package/dist/commands/oauth-apps/delete.js +49 -0
  27. package/dist/commands/oauth-apps/get.d.ts +10 -0
  28. package/dist/commands/oauth-apps/get.d.ts.map +1 -0
  29. package/dist/commands/oauth-apps/get.js +41 -0
  30. package/dist/commands/oauth-apps/list.d.ts +10 -0
  31. package/dist/commands/oauth-apps/list.d.ts.map +1 -0
  32. package/dist/commands/oauth-apps/list.js +55 -0
  33. package/dist/commands/organizations/create.d.ts +11 -0
  34. package/dist/commands/organizations/create.d.ts.map +1 -0
  35. package/dist/commands/organizations/create.js +69 -0
  36. package/dist/commands/organizations/delete.d.ts +13 -0
  37. package/dist/commands/organizations/delete.d.ts.map +1 -0
  38. package/dist/commands/organizations/delete.js +50 -0
  39. package/dist/commands/organizations/get.d.ts +10 -0
  40. package/dist/commands/organizations/get.d.ts.map +1 -0
  41. package/dist/commands/organizations/get.js +46 -0
  42. package/dist/commands/organizations/list.d.ts +7 -0
  43. package/dist/commands/organizations/list.d.ts.map +1 -0
  44. package/dist/commands/organizations/list.js +40 -0
  45. package/dist/commands/products/create.d.ts +17 -0
  46. package/dist/commands/products/create.d.ts.map +1 -0
  47. package/dist/commands/products/create.js +112 -0
  48. package/dist/commands/products/delete.d.ts +12 -0
  49. package/dist/commands/products/delete.d.ts.map +1 -0
  50. package/dist/commands/products/delete.js +52 -0
  51. package/dist/commands/products/get.d.ts +11 -0
  52. package/dist/commands/products/get.d.ts.map +1 -0
  53. package/dist/commands/products/get.js +54 -0
  54. package/dist/commands/products/list.d.ts +13 -0
  55. package/dist/commands/products/list.d.ts.map +1 -0
  56. package/dist/commands/products/list.js +75 -0
  57. package/dist/commands/products/update.d.ts +18 -0
  58. package/dist/commands/products/update.d.ts.map +1 -0
  59. package/dist/commands/products/update.js +86 -0
  60. package/dist/commands/update.d.ts +16 -0
  61. package/dist/commands/update.d.ts.map +1 -0
  62. package/dist/commands/update.js +91 -0
  63. package/dist/commands/webhooks/create.d.ts +11 -0
  64. package/dist/commands/webhooks/create.d.ts.map +1 -0
  65. package/dist/commands/webhooks/create.js +120 -0
  66. package/dist/commands/webhooks/delete.d.ts +14 -0
  67. package/dist/commands/webhooks/delete.d.ts.map +1 -0
  68. package/dist/commands/webhooks/delete.js +55 -0
  69. package/dist/commands/webhooks/get.d.ts +13 -0
  70. package/dist/commands/webhooks/get.d.ts.map +1 -0
  71. package/dist/commands/webhooks/get.js +45 -0
  72. package/dist/commands/webhooks/list.d.ts +10 -0
  73. package/dist/commands/webhooks/list.d.ts.map +1 -0
  74. package/dist/commands/webhooks/list.js +49 -0
  75. package/dist/config/auth.d.ts +31 -0
  76. package/dist/config/auth.d.ts.map +1 -0
  77. package/dist/config/auth.js +57 -0
  78. package/dist/help.d.ts +16 -0
  79. package/dist/help.d.ts.map +1 -0
  80. package/dist/help.js +22 -0
  81. package/dist/hooks/init/update-check.d.ts +8 -0
  82. package/dist/hooks/init/update-check.d.ts.map +1 -0
  83. package/dist/hooks/init/update-check.js +9 -0
  84. package/dist/index.d.ts +2 -0
  85. package/dist/index.d.ts.map +1 -0
  86. package/dist/index.js +1 -0
  87. package/dist/utils/client.d.ts +6 -0
  88. package/dist/utils/client.d.ts.map +1 -0
  89. package/dist/utils/client.js +18 -0
  90. package/dist/utils/error.d.ts +6 -0
  91. package/dist/utils/error.d.ts.map +1 -0
  92. package/dist/utils/error.js +15 -0
  93. package/dist/utils/logo.d.ts +14 -0
  94. package/dist/utils/logo.d.ts.map +1 -0
  95. package/dist/utils/logo.js +27 -0
  96. package/dist/utils/table.d.ts +6 -0
  97. package/dist/utils/table.d.ts.map +1 -0
  98. package/dist/utils/table.js +30 -0
  99. package/dist/utils/update-notifier.d.ts +13 -0
  100. package/dist/utils/update-notifier.d.ts.map +1 -0
  101. package/dist/utils/update-notifier.js +19 -0
  102. package/oclif.manifest.json +1054 -0
  103. package/package.json +71 -0
  104. package/theme.json +27 -0
@@ -0,0 +1,1054 @@
1
+ {
2
+ "commands": {
3
+ "login": {
4
+ "aliases": [],
5
+ "args": {},
6
+ "description": "Authenticate with Timbrix API",
7
+ "examples": [
8
+ "<%= config.bin %> <%= command.id %>",
9
+ "<%= config.bin %> <%= command.id %> --email user@example.com"
10
+ ],
11
+ "flags": {
12
+ "email": {
13
+ "char": "e",
14
+ "description": "Email address",
15
+ "name": "email",
16
+ "hasDynamicHelp": false,
17
+ "multiple": false,
18
+ "type": "option"
19
+ },
20
+ "base-url": {
21
+ "char": "u",
22
+ "description": "API base URL",
23
+ "name": "base-url",
24
+ "default": "http://localhost:3001/api",
25
+ "hasDynamicHelp": false,
26
+ "multiple": false,
27
+ "type": "option"
28
+ }
29
+ },
30
+ "hasDynamicHelp": false,
31
+ "hiddenAliases": [],
32
+ "id": "login",
33
+ "pluginAlias": "@timbrix/cli",
34
+ "pluginName": "@timbrix/cli",
35
+ "pluginType": "core",
36
+ "strict": true,
37
+ "enableJsonFlag": false,
38
+ "isESM": true,
39
+ "relativePath": [
40
+ "dist",
41
+ "commands",
42
+ "login.js"
43
+ ]
44
+ },
45
+ "logout": {
46
+ "aliases": [],
47
+ "args": {},
48
+ "description": "Logout from Timbrix API",
49
+ "examples": [
50
+ "<%= config.bin %> <%= command.id %>"
51
+ ],
52
+ "flags": {},
53
+ "hasDynamicHelp": false,
54
+ "hiddenAliases": [],
55
+ "id": "logout",
56
+ "pluginAlias": "@timbrix/cli",
57
+ "pluginName": "@timbrix/cli",
58
+ "pluginType": "core",
59
+ "strict": true,
60
+ "enableJsonFlag": false,
61
+ "isESM": true,
62
+ "relativePath": [
63
+ "dist",
64
+ "commands",
65
+ "logout.js"
66
+ ]
67
+ },
68
+ "update": {
69
+ "aliases": [],
70
+ "args": {},
71
+ "description": "Update Timbrix CLI to the latest version",
72
+ "examples": [
73
+ "<%= config.bin %> <%= command.id %>",
74
+ "<%= config.bin %> <%= command.id %> --check"
75
+ ],
76
+ "flags": {},
77
+ "hasDynamicHelp": false,
78
+ "hiddenAliases": [],
79
+ "id": "update",
80
+ "pluginAlias": "@timbrix/cli",
81
+ "pluginName": "@timbrix/cli",
82
+ "pluginType": "core",
83
+ "strict": true,
84
+ "enableJsonFlag": false,
85
+ "isESM": true,
86
+ "relativePath": [
87
+ "dist",
88
+ "commands",
89
+ "update.js"
90
+ ]
91
+ },
92
+ "api-keys:create": {
93
+ "aliases": [],
94
+ "args": {},
95
+ "description": "Create a new API key",
96
+ "examples": [
97
+ "<%= config.bin %> <%= command.id %> --org acme-corp-id",
98
+ "<%= config.bin %> <%= command.id %> --org acme-corp-id --name 'Production Key'"
99
+ ],
100
+ "flags": {
101
+ "org": {
102
+ "char": "o",
103
+ "description": "Organization ID",
104
+ "name": "org",
105
+ "required": true,
106
+ "hasDynamicHelp": false,
107
+ "multiple": false,
108
+ "type": "option"
109
+ },
110
+ "name": {
111
+ "char": "n",
112
+ "description": "API key name",
113
+ "name": "name",
114
+ "hasDynamicHelp": false,
115
+ "multiple": false,
116
+ "type": "option"
117
+ },
118
+ "expires": {
119
+ "char": "e",
120
+ "description": "Expiration date (ISO 8601 format, e.g., 2025-12-31T23:59:59Z)",
121
+ "name": "expires",
122
+ "hasDynamicHelp": false,
123
+ "multiple": false,
124
+ "type": "option"
125
+ }
126
+ },
127
+ "hasDynamicHelp": false,
128
+ "hiddenAliases": [],
129
+ "id": "api-keys:create",
130
+ "pluginAlias": "@timbrix/cli",
131
+ "pluginName": "@timbrix/cli",
132
+ "pluginType": "core",
133
+ "strict": true,
134
+ "enableJsonFlag": false,
135
+ "isESM": true,
136
+ "relativePath": [
137
+ "dist",
138
+ "commands",
139
+ "api-keys",
140
+ "create.js"
141
+ ]
142
+ },
143
+ "api-keys:delete": {
144
+ "aliases": [],
145
+ "args": {
146
+ "id": {
147
+ "description": "API key ID",
148
+ "name": "id",
149
+ "required": true
150
+ }
151
+ },
152
+ "description": "Revoke an API key (PERMANENT)",
153
+ "examples": [
154
+ "<%= config.bin %> <%= command.id %> api-key-id --org acme-corp-id",
155
+ "<%= config.bin %> <%= command.id %> api-key-id --org acme-corp-id --force"
156
+ ],
157
+ "flags": {
158
+ "org": {
159
+ "char": "o",
160
+ "description": "Organization ID",
161
+ "name": "org",
162
+ "required": true,
163
+ "hasDynamicHelp": false,
164
+ "multiple": false,
165
+ "type": "option"
166
+ },
167
+ "force": {
168
+ "char": "f",
169
+ "description": "Skip confirmation prompt",
170
+ "name": "force",
171
+ "allowNo": false,
172
+ "type": "boolean"
173
+ }
174
+ },
175
+ "hasDynamicHelp": false,
176
+ "hiddenAliases": [],
177
+ "id": "api-keys:delete",
178
+ "pluginAlias": "@timbrix/cli",
179
+ "pluginName": "@timbrix/cli",
180
+ "pluginType": "core",
181
+ "strict": true,
182
+ "enableJsonFlag": false,
183
+ "isESM": true,
184
+ "relativePath": [
185
+ "dist",
186
+ "commands",
187
+ "api-keys",
188
+ "delete.js"
189
+ ]
190
+ },
191
+ "api-keys:get": {
192
+ "aliases": [],
193
+ "args": {
194
+ "id": {
195
+ "description": "API key ID",
196
+ "name": "id",
197
+ "required": true
198
+ }
199
+ },
200
+ "description": "Get API key details",
201
+ "examples": [
202
+ "<%= config.bin %> <%= command.id %> api-key-id --org acme-corp-id"
203
+ ],
204
+ "flags": {
205
+ "org": {
206
+ "char": "o",
207
+ "description": "Organization ID",
208
+ "name": "org",
209
+ "required": true,
210
+ "hasDynamicHelp": false,
211
+ "multiple": false,
212
+ "type": "option"
213
+ }
214
+ },
215
+ "hasDynamicHelp": false,
216
+ "hiddenAliases": [],
217
+ "id": "api-keys:get",
218
+ "pluginAlias": "@timbrix/cli",
219
+ "pluginName": "@timbrix/cli",
220
+ "pluginType": "core",
221
+ "strict": true,
222
+ "enableJsonFlag": false,
223
+ "isESM": true,
224
+ "relativePath": [
225
+ "dist",
226
+ "commands",
227
+ "api-keys",
228
+ "get.js"
229
+ ]
230
+ },
231
+ "api-keys:list": {
232
+ "aliases": [],
233
+ "args": {},
234
+ "description": "List all API keys for an organization",
235
+ "examples": [
236
+ "<%= config.bin %> <%= command.id %> --org acme-corp-id"
237
+ ],
238
+ "flags": {
239
+ "org": {
240
+ "char": "o",
241
+ "description": "Organization ID",
242
+ "name": "org",
243
+ "required": true,
244
+ "hasDynamicHelp": false,
245
+ "multiple": false,
246
+ "type": "option"
247
+ }
248
+ },
249
+ "hasDynamicHelp": false,
250
+ "hiddenAliases": [],
251
+ "id": "api-keys:list",
252
+ "pluginAlias": "@timbrix/cli",
253
+ "pluginName": "@timbrix/cli",
254
+ "pluginType": "core",
255
+ "strict": true,
256
+ "enableJsonFlag": false,
257
+ "isESM": true,
258
+ "relativePath": [
259
+ "dist",
260
+ "commands",
261
+ "api-keys",
262
+ "list.js"
263
+ ]
264
+ },
265
+ "oauth-apps:create": {
266
+ "aliases": [],
267
+ "args": {},
268
+ "description": "Create a new OAuth application",
269
+ "examples": [
270
+ "<%= config.bin %> <%= command.id %>",
271
+ "<%= config.bin %> <%= command.id %> --name 'My Integration' --redirect-uri https://example.com/callback"
272
+ ],
273
+ "flags": {
274
+ "name": {
275
+ "char": "n",
276
+ "description": "Application name",
277
+ "name": "name",
278
+ "hasDynamicHelp": false,
279
+ "multiple": false,
280
+ "type": "option"
281
+ },
282
+ "description": {
283
+ "char": "d",
284
+ "description": "Application description",
285
+ "name": "description",
286
+ "hasDynamicHelp": false,
287
+ "multiple": false,
288
+ "type": "option"
289
+ },
290
+ "redirect-uri": {
291
+ "char": "r",
292
+ "description": "Redirect URI for OAuth flow",
293
+ "name": "redirect-uri",
294
+ "hasDynamicHelp": false,
295
+ "multiple": false,
296
+ "type": "option"
297
+ }
298
+ },
299
+ "hasDynamicHelp": false,
300
+ "hiddenAliases": [],
301
+ "id": "oauth-apps:create",
302
+ "pluginAlias": "@timbrix/cli",
303
+ "pluginName": "@timbrix/cli",
304
+ "pluginType": "core",
305
+ "strict": true,
306
+ "enableJsonFlag": false,
307
+ "isESM": true,
308
+ "relativePath": [
309
+ "dist",
310
+ "commands",
311
+ "oauth-apps",
312
+ "create.js"
313
+ ]
314
+ },
315
+ "oauth-apps:delete": {
316
+ "aliases": [],
317
+ "args": {
318
+ "clientId": {
319
+ "description": "OAuth application client ID",
320
+ "name": "clientId",
321
+ "required": true
322
+ }
323
+ },
324
+ "description": "Delete an OAuth application and revoke all its tokens (PERMANENT)",
325
+ "examples": [
326
+ "<%= config.bin %> <%= command.id %> app_abc123",
327
+ "<%= config.bin %> <%= command.id %> app_abc123 --force"
328
+ ],
329
+ "flags": {
330
+ "force": {
331
+ "char": "f",
332
+ "description": "Skip confirmation prompt",
333
+ "name": "force",
334
+ "allowNo": false,
335
+ "type": "boolean"
336
+ }
337
+ },
338
+ "hasDynamicHelp": false,
339
+ "hiddenAliases": [],
340
+ "id": "oauth-apps:delete",
341
+ "pluginAlias": "@timbrix/cli",
342
+ "pluginName": "@timbrix/cli",
343
+ "pluginType": "core",
344
+ "strict": true,
345
+ "enableJsonFlag": false,
346
+ "isESM": true,
347
+ "relativePath": [
348
+ "dist",
349
+ "commands",
350
+ "oauth-apps",
351
+ "delete.js"
352
+ ]
353
+ },
354
+ "oauth-apps:get": {
355
+ "aliases": [],
356
+ "args": {
357
+ "clientId": {
358
+ "description": "OAuth application client ID",
359
+ "name": "clientId",
360
+ "required": true
361
+ }
362
+ },
363
+ "description": "Get OAuth application details",
364
+ "examples": [
365
+ "<%= config.bin %> <%= command.id %> app_abc123"
366
+ ],
367
+ "flags": {},
368
+ "hasDynamicHelp": false,
369
+ "hiddenAliases": [],
370
+ "id": "oauth-apps:get",
371
+ "pluginAlias": "@timbrix/cli",
372
+ "pluginName": "@timbrix/cli",
373
+ "pluginType": "core",
374
+ "strict": true,
375
+ "enableJsonFlag": false,
376
+ "isESM": true,
377
+ "relativePath": [
378
+ "dist",
379
+ "commands",
380
+ "oauth-apps",
381
+ "get.js"
382
+ ]
383
+ },
384
+ "oauth-apps:list": {
385
+ "aliases": [],
386
+ "args": {},
387
+ "description": "List OAuth applications for an organization",
388
+ "examples": [
389
+ "<%= config.bin %> <%= command.id %> --org acme-corp-id"
390
+ ],
391
+ "flags": {
392
+ "org": {
393
+ "char": "o",
394
+ "description": "Organization ID",
395
+ "name": "org",
396
+ "required": true,
397
+ "hasDynamicHelp": false,
398
+ "multiple": false,
399
+ "type": "option"
400
+ }
401
+ },
402
+ "hasDynamicHelp": false,
403
+ "hiddenAliases": [],
404
+ "id": "oauth-apps:list",
405
+ "pluginAlias": "@timbrix/cli",
406
+ "pluginName": "@timbrix/cli",
407
+ "pluginType": "core",
408
+ "strict": true,
409
+ "enableJsonFlag": false,
410
+ "isESM": true,
411
+ "relativePath": [
412
+ "dist",
413
+ "commands",
414
+ "oauth-apps",
415
+ "list.js"
416
+ ]
417
+ },
418
+ "organizations:create": {
419
+ "aliases": [],
420
+ "args": {},
421
+ "description": "Create a new organization",
422
+ "examples": [
423
+ "<%= config.bin %> <%= command.id %>",
424
+ "<%= config.bin %> <%= command.id %> --name 'Acme Corp' --slug acme-corp"
425
+ ],
426
+ "flags": {
427
+ "name": {
428
+ "char": "n",
429
+ "description": "Organization name",
430
+ "name": "name",
431
+ "hasDynamicHelp": false,
432
+ "multiple": false,
433
+ "type": "option"
434
+ },
435
+ "slug": {
436
+ "char": "s",
437
+ "description": "Organization slug (URL-friendly identifier)",
438
+ "name": "slug",
439
+ "hasDynamicHelp": false,
440
+ "multiple": false,
441
+ "type": "option"
442
+ }
443
+ },
444
+ "hasDynamicHelp": false,
445
+ "hiddenAliases": [],
446
+ "id": "organizations:create",
447
+ "pluginAlias": "@timbrix/cli",
448
+ "pluginName": "@timbrix/cli",
449
+ "pluginType": "core",
450
+ "strict": true,
451
+ "enableJsonFlag": false,
452
+ "isESM": true,
453
+ "relativePath": [
454
+ "dist",
455
+ "commands",
456
+ "organizations",
457
+ "create.js"
458
+ ]
459
+ },
460
+ "organizations:delete": {
461
+ "aliases": [],
462
+ "args": {
463
+ "slug": {
464
+ "description": "Organization slug",
465
+ "name": "slug",
466
+ "required": true
467
+ }
468
+ },
469
+ "description": "Delete an organization (PERMANENT)",
470
+ "examples": [
471
+ "<%= config.bin %> <%= command.id %> acme-corp",
472
+ "<%= config.bin %> <%= command.id %> acme-corp --force"
473
+ ],
474
+ "flags": {
475
+ "force": {
476
+ "char": "f",
477
+ "description": "Skip confirmation prompt",
478
+ "name": "force",
479
+ "allowNo": false,
480
+ "type": "boolean"
481
+ }
482
+ },
483
+ "hasDynamicHelp": false,
484
+ "hiddenAliases": [],
485
+ "id": "organizations:delete",
486
+ "pluginAlias": "@timbrix/cli",
487
+ "pluginName": "@timbrix/cli",
488
+ "pluginType": "core",
489
+ "strict": true,
490
+ "enableJsonFlag": false,
491
+ "isESM": true,
492
+ "relativePath": [
493
+ "dist",
494
+ "commands",
495
+ "organizations",
496
+ "delete.js"
497
+ ]
498
+ },
499
+ "organizations:get": {
500
+ "aliases": [],
501
+ "args": {
502
+ "id": {
503
+ "description": "Organization ID",
504
+ "name": "id",
505
+ "required": true
506
+ }
507
+ },
508
+ "description": "Get organization details by ID",
509
+ "examples": [
510
+ "<%= config.bin %> <%= command.id %> acme-corp-id"
511
+ ],
512
+ "flags": {},
513
+ "hasDynamicHelp": false,
514
+ "hiddenAliases": [],
515
+ "id": "organizations:get",
516
+ "pluginAlias": "@timbrix/cli",
517
+ "pluginName": "@timbrix/cli",
518
+ "pluginType": "core",
519
+ "strict": true,
520
+ "enableJsonFlag": false,
521
+ "isESM": true,
522
+ "relativePath": [
523
+ "dist",
524
+ "commands",
525
+ "organizations",
526
+ "get.js"
527
+ ]
528
+ },
529
+ "organizations:list": {
530
+ "aliases": [],
531
+ "args": {},
532
+ "description": "List all organizations",
533
+ "examples": [
534
+ "<%= config.bin %> <%= command.id %>"
535
+ ],
536
+ "flags": {},
537
+ "hasDynamicHelp": false,
538
+ "hiddenAliases": [],
539
+ "id": "organizations:list",
540
+ "pluginAlias": "@timbrix/cli",
541
+ "pluginName": "@timbrix/cli",
542
+ "pluginType": "core",
543
+ "strict": true,
544
+ "enableJsonFlag": false,
545
+ "isESM": true,
546
+ "relativePath": [
547
+ "dist",
548
+ "commands",
549
+ "organizations",
550
+ "list.js"
551
+ ]
552
+ },
553
+ "products:create": {
554
+ "aliases": [],
555
+ "args": {},
556
+ "description": "Create a new product or service",
557
+ "examples": [
558
+ "<%= config.bin %> <%= command.id %> --org acme-corp-id",
559
+ "<%= config.bin %> <%= command.id %> --org acme-corp-id --description Ukelele --product-key 60131324 --price 345.60"
560
+ ],
561
+ "flags": {
562
+ "org": {
563
+ "char": "o",
564
+ "description": "Organization ID",
565
+ "name": "org",
566
+ "required": true,
567
+ "hasDynamicHelp": false,
568
+ "multiple": false,
569
+ "type": "option"
570
+ },
571
+ "description": {
572
+ "char": "d",
573
+ "description": "Product or service description",
574
+ "name": "description",
575
+ "hasDynamicHelp": false,
576
+ "multiple": false,
577
+ "type": "option"
578
+ },
579
+ "product-key": {
580
+ "char": "k",
581
+ "description": "SAT product/service key (clave SAT)",
582
+ "name": "product-key",
583
+ "hasDynamicHelp": false,
584
+ "multiple": false,
585
+ "type": "option"
586
+ },
587
+ "price": {
588
+ "char": "p",
589
+ "description": "Unit price",
590
+ "name": "price",
591
+ "hasDynamicHelp": false,
592
+ "multiple": false,
593
+ "type": "option"
594
+ },
595
+ "sku": {
596
+ "char": "s",
597
+ "description": "Internal SKU",
598
+ "name": "sku",
599
+ "hasDynamicHelp": false,
600
+ "multiple": false,
601
+ "type": "option"
602
+ },
603
+ "unit-key": {
604
+ "description": "SAT unit key (default: H87)",
605
+ "name": "unit-key",
606
+ "hasDynamicHelp": false,
607
+ "multiple": false,
608
+ "type": "option"
609
+ },
610
+ "unit-name": {
611
+ "description": "Unit name (default: Elemento)",
612
+ "name": "unit-name",
613
+ "hasDynamicHelp": false,
614
+ "multiple": false,
615
+ "type": "option"
616
+ },
617
+ "tax-included": {
618
+ "description": "Whether price includes taxes",
619
+ "name": "tax-included",
620
+ "allowNo": true,
621
+ "type": "boolean"
622
+ }
623
+ },
624
+ "hasDynamicHelp": false,
625
+ "hiddenAliases": [],
626
+ "id": "products:create",
627
+ "pluginAlias": "@timbrix/cli",
628
+ "pluginName": "@timbrix/cli",
629
+ "pluginType": "core",
630
+ "strict": true,
631
+ "enableJsonFlag": false,
632
+ "isESM": true,
633
+ "relativePath": [
634
+ "dist",
635
+ "commands",
636
+ "products",
637
+ "create.js"
638
+ ]
639
+ },
640
+ "products:delete": {
641
+ "aliases": [],
642
+ "args": {},
643
+ "description": "Delete a product or service",
644
+ "examples": [
645
+ "<%= config.bin %> <%= command.id %> --org acme-corp-id --id product-uuid",
646
+ "<%= config.bin %> <%= command.id %> --org acme-corp-id --id product-uuid --force"
647
+ ],
648
+ "flags": {
649
+ "org": {
650
+ "char": "o",
651
+ "description": "Organization ID",
652
+ "name": "org",
653
+ "required": true,
654
+ "hasDynamicHelp": false,
655
+ "multiple": false,
656
+ "type": "option"
657
+ },
658
+ "id": {
659
+ "description": "Product ID",
660
+ "name": "id",
661
+ "required": true,
662
+ "hasDynamicHelp": false,
663
+ "multiple": false,
664
+ "type": "option"
665
+ },
666
+ "force": {
667
+ "char": "f",
668
+ "description": "Skip confirmation prompt",
669
+ "name": "force",
670
+ "allowNo": false,
671
+ "type": "boolean"
672
+ }
673
+ },
674
+ "hasDynamicHelp": false,
675
+ "hiddenAliases": [],
676
+ "id": "products:delete",
677
+ "pluginAlias": "@timbrix/cli",
678
+ "pluginName": "@timbrix/cli",
679
+ "pluginType": "core",
680
+ "strict": true,
681
+ "enableJsonFlag": false,
682
+ "isESM": true,
683
+ "relativePath": [
684
+ "dist",
685
+ "commands",
686
+ "products",
687
+ "delete.js"
688
+ ]
689
+ },
690
+ "products:get": {
691
+ "aliases": [],
692
+ "args": {},
693
+ "description": "Get a product by ID",
694
+ "examples": [
695
+ "<%= config.bin %> <%= command.id %> --org acme-corp-id --id product-uuid"
696
+ ],
697
+ "flags": {
698
+ "org": {
699
+ "char": "o",
700
+ "description": "Organization ID",
701
+ "name": "org",
702
+ "required": true,
703
+ "hasDynamicHelp": false,
704
+ "multiple": false,
705
+ "type": "option"
706
+ },
707
+ "id": {
708
+ "description": "Product ID",
709
+ "name": "id",
710
+ "required": true,
711
+ "hasDynamicHelp": false,
712
+ "multiple": false,
713
+ "type": "option"
714
+ }
715
+ },
716
+ "hasDynamicHelp": false,
717
+ "hiddenAliases": [],
718
+ "id": "products:get",
719
+ "pluginAlias": "@timbrix/cli",
720
+ "pluginName": "@timbrix/cli",
721
+ "pluginType": "core",
722
+ "strict": true,
723
+ "enableJsonFlag": false,
724
+ "isESM": true,
725
+ "relativePath": [
726
+ "dist",
727
+ "commands",
728
+ "products",
729
+ "get.js"
730
+ ]
731
+ },
732
+ "products:list": {
733
+ "aliases": [],
734
+ "args": {},
735
+ "description": "List all products/services for an organization",
736
+ "examples": [
737
+ "<%= config.bin %> <%= command.id %> --org acme-corp-id",
738
+ "<%= config.bin %> <%= command.id %> --org acme-corp-id --description Ukelele",
739
+ "<%= config.bin %> <%= command.id %> --org acme-corp-id --sku UKL"
740
+ ],
741
+ "flags": {
742
+ "org": {
743
+ "char": "o",
744
+ "description": "Organization ID",
745
+ "name": "org",
746
+ "required": true,
747
+ "hasDynamicHelp": false,
748
+ "multiple": false,
749
+ "type": "option"
750
+ },
751
+ "description": {
752
+ "char": "d",
753
+ "description": "Filter by description (partial match)",
754
+ "name": "description",
755
+ "hasDynamicHelp": false,
756
+ "multiple": false,
757
+ "type": "option"
758
+ },
759
+ "sku": {
760
+ "char": "s",
761
+ "description": "Filter by SKU (partial match)",
762
+ "name": "sku",
763
+ "hasDynamicHelp": false,
764
+ "multiple": false,
765
+ "type": "option"
766
+ },
767
+ "product-key": {
768
+ "char": "k",
769
+ "description": "Filter by SAT product key (exact match)",
770
+ "name": "product-key",
771
+ "hasDynamicHelp": false,
772
+ "multiple": false,
773
+ "type": "option"
774
+ }
775
+ },
776
+ "hasDynamicHelp": false,
777
+ "hiddenAliases": [],
778
+ "id": "products:list",
779
+ "pluginAlias": "@timbrix/cli",
780
+ "pluginName": "@timbrix/cli",
781
+ "pluginType": "core",
782
+ "strict": true,
783
+ "enableJsonFlag": false,
784
+ "isESM": true,
785
+ "relativePath": [
786
+ "dist",
787
+ "commands",
788
+ "products",
789
+ "list.js"
790
+ ]
791
+ },
792
+ "products:update": {
793
+ "aliases": [],
794
+ "args": {},
795
+ "description": "Update a product or service",
796
+ "examples": [
797
+ "<%= config.bin %> <%= command.id %> --org acme-corp-id --id product-uuid --price 400",
798
+ "<%= config.bin %> <%= command.id %> --org acme-corp-id --id product-uuid --description 'Ukelele Pro'"
799
+ ],
800
+ "flags": {
801
+ "org": {
802
+ "char": "o",
803
+ "description": "Organization ID",
804
+ "name": "org",
805
+ "required": true,
806
+ "hasDynamicHelp": false,
807
+ "multiple": false,
808
+ "type": "option"
809
+ },
810
+ "id": {
811
+ "description": "Product ID",
812
+ "name": "id",
813
+ "required": true,
814
+ "hasDynamicHelp": false,
815
+ "multiple": false,
816
+ "type": "option"
817
+ },
818
+ "description": {
819
+ "char": "d",
820
+ "description": "Product or service description",
821
+ "name": "description",
822
+ "hasDynamicHelp": false,
823
+ "multiple": false,
824
+ "type": "option"
825
+ },
826
+ "product-key": {
827
+ "char": "k",
828
+ "description": "SAT product/service key",
829
+ "name": "product-key",
830
+ "hasDynamicHelp": false,
831
+ "multiple": false,
832
+ "type": "option"
833
+ },
834
+ "price": {
835
+ "char": "p",
836
+ "description": "Unit price",
837
+ "name": "price",
838
+ "hasDynamicHelp": false,
839
+ "multiple": false,
840
+ "type": "option"
841
+ },
842
+ "sku": {
843
+ "char": "s",
844
+ "description": "Internal SKU",
845
+ "name": "sku",
846
+ "hasDynamicHelp": false,
847
+ "multiple": false,
848
+ "type": "option"
849
+ },
850
+ "unit-key": {
851
+ "description": "SAT unit key",
852
+ "name": "unit-key",
853
+ "hasDynamicHelp": false,
854
+ "multiple": false,
855
+ "type": "option"
856
+ },
857
+ "unit-name": {
858
+ "description": "Unit name",
859
+ "name": "unit-name",
860
+ "hasDynamicHelp": false,
861
+ "multiple": false,
862
+ "type": "option"
863
+ },
864
+ "tax-included": {
865
+ "description": "Whether price includes taxes",
866
+ "name": "tax-included",
867
+ "allowNo": true,
868
+ "type": "boolean"
869
+ }
870
+ },
871
+ "hasDynamicHelp": false,
872
+ "hiddenAliases": [],
873
+ "id": "products:update",
874
+ "pluginAlias": "@timbrix/cli",
875
+ "pluginName": "@timbrix/cli",
876
+ "pluginType": "core",
877
+ "strict": true,
878
+ "enableJsonFlag": false,
879
+ "isESM": true,
880
+ "relativePath": [
881
+ "dist",
882
+ "commands",
883
+ "products",
884
+ "update.js"
885
+ ]
886
+ },
887
+ "webhooks:create": {
888
+ "aliases": [],
889
+ "args": {},
890
+ "description": "Create a new webhook",
891
+ "examples": [
892
+ "<%= config.bin %> <%= command.id %> --org acme-corp-id",
893
+ "<%= config.bin %> <%= command.id %> --org acme-corp-id --url https://example.com/webhook"
894
+ ],
895
+ "flags": {
896
+ "org": {
897
+ "char": "o",
898
+ "description": "Organization ID",
899
+ "name": "org",
900
+ "required": true,
901
+ "hasDynamicHelp": false,
902
+ "multiple": false,
903
+ "type": "option"
904
+ },
905
+ "url": {
906
+ "char": "u",
907
+ "description": "Webhook URL",
908
+ "name": "url",
909
+ "hasDynamicHelp": false,
910
+ "multiple": false,
911
+ "type": "option"
912
+ }
913
+ },
914
+ "hasDynamicHelp": false,
915
+ "hiddenAliases": [],
916
+ "id": "webhooks:create",
917
+ "pluginAlias": "@timbrix/cli",
918
+ "pluginName": "@timbrix/cli",
919
+ "pluginType": "core",
920
+ "strict": true,
921
+ "enableJsonFlag": false,
922
+ "isESM": true,
923
+ "relativePath": [
924
+ "dist",
925
+ "commands",
926
+ "webhooks",
927
+ "create.js"
928
+ ]
929
+ },
930
+ "webhooks:delete": {
931
+ "aliases": [],
932
+ "args": {
933
+ "id": {
934
+ "description": "Webhook ID",
935
+ "name": "id",
936
+ "required": true
937
+ }
938
+ },
939
+ "description": "Delete a webhook (PERMANENT)",
940
+ "examples": [
941
+ "<%= config.bin %> <%= command.id %> webhook-id --org acme-corp-id",
942
+ "<%= config.bin %> <%= command.id %> webhook-id --org acme-corp-id --force"
943
+ ],
944
+ "flags": {
945
+ "org": {
946
+ "char": "o",
947
+ "description": "Organization ID",
948
+ "name": "org",
949
+ "required": true,
950
+ "hasDynamicHelp": false,
951
+ "multiple": false,
952
+ "type": "option"
953
+ },
954
+ "force": {
955
+ "char": "f",
956
+ "description": "Skip confirmation prompt",
957
+ "name": "force",
958
+ "allowNo": false,
959
+ "type": "boolean"
960
+ }
961
+ },
962
+ "hasDynamicHelp": false,
963
+ "hiddenAliases": [],
964
+ "id": "webhooks:delete",
965
+ "pluginAlias": "@timbrix/cli",
966
+ "pluginName": "@timbrix/cli",
967
+ "pluginType": "core",
968
+ "strict": true,
969
+ "enableJsonFlag": false,
970
+ "isESM": true,
971
+ "relativePath": [
972
+ "dist",
973
+ "commands",
974
+ "webhooks",
975
+ "delete.js"
976
+ ]
977
+ },
978
+ "webhooks:get": {
979
+ "aliases": [],
980
+ "args": {
981
+ "id": {
982
+ "description": "Webhook ID",
983
+ "name": "id",
984
+ "required": true
985
+ }
986
+ },
987
+ "description": "Get webhook details",
988
+ "examples": [
989
+ "<%= config.bin %> <%= command.id %> webhook-id --org acme-corp-id"
990
+ ],
991
+ "flags": {
992
+ "org": {
993
+ "char": "o",
994
+ "description": "Organization ID",
995
+ "name": "org",
996
+ "required": true,
997
+ "hasDynamicHelp": false,
998
+ "multiple": false,
999
+ "type": "option"
1000
+ }
1001
+ },
1002
+ "hasDynamicHelp": false,
1003
+ "hiddenAliases": [],
1004
+ "id": "webhooks:get",
1005
+ "pluginAlias": "@timbrix/cli",
1006
+ "pluginName": "@timbrix/cli",
1007
+ "pluginType": "core",
1008
+ "strict": true,
1009
+ "enableJsonFlag": false,
1010
+ "isESM": true,
1011
+ "relativePath": [
1012
+ "dist",
1013
+ "commands",
1014
+ "webhooks",
1015
+ "get.js"
1016
+ ]
1017
+ },
1018
+ "webhooks:list": {
1019
+ "aliases": [],
1020
+ "args": {},
1021
+ "description": "List all webhooks for an organization",
1022
+ "examples": [
1023
+ "<%= config.bin %> <%= command.id %> --org acme-corp-id"
1024
+ ],
1025
+ "flags": {
1026
+ "org": {
1027
+ "char": "o",
1028
+ "description": "Organization ID",
1029
+ "name": "org",
1030
+ "required": true,
1031
+ "hasDynamicHelp": false,
1032
+ "multiple": false,
1033
+ "type": "option"
1034
+ }
1035
+ },
1036
+ "hasDynamicHelp": false,
1037
+ "hiddenAliases": [],
1038
+ "id": "webhooks:list",
1039
+ "pluginAlias": "@timbrix/cli",
1040
+ "pluginName": "@timbrix/cli",
1041
+ "pluginType": "core",
1042
+ "strict": true,
1043
+ "enableJsonFlag": false,
1044
+ "isESM": true,
1045
+ "relativePath": [
1046
+ "dist",
1047
+ "commands",
1048
+ "webhooks",
1049
+ "list.js"
1050
+ ]
1051
+ }
1052
+ },
1053
+ "version": "0.1.0"
1054
+ }