@primitivedotdev/sdk 0.16.0 → 0.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/generated/sdk.gen.js +48 -10
- package/dist/api/index.d.ts +1 -1
- package/dist/{api-CTf0cUsi.js → api-DrAZhxS-.js} +48 -10
- package/dist/{index-SK_HbwVN.d.ts → index-CHWqMBs6.d.ts} +48 -10
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/oclif/api-command.js +134 -90
- package/dist/oclif/commands/emails-latest.js +39 -34
- package/dist/oclif/commands/send.js +36 -31
- package/dist/oclif/commands/whoami.js +36 -31
- package/dist/openapi/openapi.generated.js +4 -4
- package/dist/openapi/operations.generated.js +3 -3
- package/oclif.manifest.json +220 -4
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -150,6 +150,12 @@
|
|
|
150
150
|
"hasDynamicHelp": false,
|
|
151
151
|
"multiple": false,
|
|
152
152
|
"type": "option"
|
|
153
|
+
},
|
|
154
|
+
"time": {
|
|
155
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
156
|
+
"name": "time",
|
|
157
|
+
"allowNo": false,
|
|
158
|
+
"type": "boolean"
|
|
153
159
|
}
|
|
154
160
|
},
|
|
155
161
|
"hasDynamicHelp": false,
|
|
@@ -186,6 +192,12 @@
|
|
|
186
192
|
"hasDynamicHelp": false,
|
|
187
193
|
"multiple": false,
|
|
188
194
|
"type": "option"
|
|
195
|
+
},
|
|
196
|
+
"time": {
|
|
197
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
198
|
+
"name": "time",
|
|
199
|
+
"allowNo": false,
|
|
200
|
+
"type": "boolean"
|
|
189
201
|
}
|
|
190
202
|
},
|
|
191
203
|
"hasDynamicHelp": false,
|
|
@@ -238,6 +250,12 @@
|
|
|
238
250
|
"name": "json",
|
|
239
251
|
"allowNo": false,
|
|
240
252
|
"type": "boolean"
|
|
253
|
+
},
|
|
254
|
+
"time": {
|
|
255
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
256
|
+
"name": "time",
|
|
257
|
+
"allowNo": false,
|
|
258
|
+
"type": "boolean"
|
|
241
259
|
}
|
|
242
260
|
},
|
|
243
261
|
"hasDynamicHelp": false,
|
|
@@ -270,6 +288,12 @@
|
|
|
270
288
|
"hasDynamicHelp": false,
|
|
271
289
|
"multiple": false,
|
|
272
290
|
"type": "option"
|
|
291
|
+
},
|
|
292
|
+
"time": {
|
|
293
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
294
|
+
"name": "time",
|
|
295
|
+
"allowNo": false,
|
|
296
|
+
"type": "boolean"
|
|
273
297
|
}
|
|
274
298
|
},
|
|
275
299
|
"hasDynamicHelp": false,
|
|
@@ -302,6 +326,12 @@
|
|
|
302
326
|
"hasDynamicHelp": false,
|
|
303
327
|
"multiple": false,
|
|
304
328
|
"type": "option"
|
|
329
|
+
},
|
|
330
|
+
"time": {
|
|
331
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
332
|
+
"name": "time",
|
|
333
|
+
"allowNo": false,
|
|
334
|
+
"type": "boolean"
|
|
305
335
|
}
|
|
306
336
|
},
|
|
307
337
|
"hasDynamicHelp": false,
|
|
@@ -317,7 +347,7 @@
|
|
|
317
347
|
"account:get-webhook-secret": {
|
|
318
348
|
"aliases": [],
|
|
319
349
|
"args": {},
|
|
320
|
-
"description": "Returns the webhook signing secret for your account. If no
|
|
350
|
+
"description": "Returns the webhook signing secret for your account. If no\nsecret exists yet, one is generated automatically on first\naccess.\n\nSigning is account-scoped, not per-endpoint. Every webhook\ndelivery from any of your registered endpoints is signed\nwith this single secret. Rotate via\n`POST /account/webhook-secret/rotate`.\n\n**Secret format**: the returned string looks base64-shaped\n(e.g. `XNHBBW8VqoBjRfNs1tkZj11jTk...`) but is NOT base64.\nUse it AS-IS as a UTF-8 string when computing HMAC over a\ndelivery body. Base64-decoding before HMAC will silently\nproduce mismatched signatures.\n\nSee the API-level \"Webhook signing\" section for the full\nwire format (header name, signed string shape, hash algo,\ntolerance) including a language-agnostic verification\nrecipe.\n",
|
|
321
351
|
"flags": {
|
|
322
352
|
"api-key": {
|
|
323
353
|
"description": "Primitive API key (defaults to PRIMITIVE_API_KEY)",
|
|
@@ -334,6 +364,12 @@
|
|
|
334
364
|
"hasDynamicHelp": false,
|
|
335
365
|
"multiple": false,
|
|
336
366
|
"type": "option"
|
|
367
|
+
},
|
|
368
|
+
"time": {
|
|
369
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
370
|
+
"name": "time",
|
|
371
|
+
"allowNo": false,
|
|
372
|
+
"type": "boolean"
|
|
337
373
|
}
|
|
338
374
|
},
|
|
339
375
|
"hasDynamicHelp": false,
|
|
@@ -366,6 +402,12 @@
|
|
|
366
402
|
"hasDynamicHelp": false,
|
|
367
403
|
"multiple": false,
|
|
368
404
|
"type": "option"
|
|
405
|
+
},
|
|
406
|
+
"time": {
|
|
407
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
408
|
+
"name": "time",
|
|
409
|
+
"allowNo": false,
|
|
410
|
+
"type": "boolean"
|
|
369
411
|
}
|
|
370
412
|
},
|
|
371
413
|
"hasDynamicHelp": false,
|
|
@@ -399,6 +441,12 @@
|
|
|
399
441
|
"multiple": false,
|
|
400
442
|
"type": "option"
|
|
401
443
|
},
|
|
444
|
+
"time": {
|
|
445
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
446
|
+
"name": "time",
|
|
447
|
+
"allowNo": false,
|
|
448
|
+
"type": "boolean"
|
|
449
|
+
},
|
|
402
450
|
"raw-body": {
|
|
403
451
|
"description": "Full request body as raw JSON. Escape hatch for nested or complex fields (e.g. arrays); prefer per-field flags (e.g. --to, --from, --body-text) when available.",
|
|
404
452
|
"name": "raw-body",
|
|
@@ -458,6 +506,12 @@
|
|
|
458
506
|
"multiple": false,
|
|
459
507
|
"type": "option"
|
|
460
508
|
},
|
|
509
|
+
"time": {
|
|
510
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
511
|
+
"name": "time",
|
|
512
|
+
"allowNo": false,
|
|
513
|
+
"type": "boolean"
|
|
514
|
+
},
|
|
461
515
|
"raw-body": {
|
|
462
516
|
"description": "Full request body as raw JSON. Escape hatch for nested or complex fields (e.g. arrays); prefer per-field flags (e.g. --to, --from, --body-text) when available.",
|
|
463
517
|
"name": "raw-body",
|
|
@@ -511,6 +565,12 @@
|
|
|
511
565
|
"multiple": false,
|
|
512
566
|
"type": "option"
|
|
513
567
|
},
|
|
568
|
+
"time": {
|
|
569
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
570
|
+
"name": "time",
|
|
571
|
+
"allowNo": false,
|
|
572
|
+
"type": "boolean"
|
|
573
|
+
},
|
|
514
574
|
"id": {
|
|
515
575
|
"description": "Resource UUID",
|
|
516
576
|
"name": "id",
|
|
@@ -550,6 +610,12 @@
|
|
|
550
610
|
"hasDynamicHelp": false,
|
|
551
611
|
"multiple": false,
|
|
552
612
|
"type": "option"
|
|
613
|
+
},
|
|
614
|
+
"time": {
|
|
615
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
616
|
+
"name": "time",
|
|
617
|
+
"allowNo": false,
|
|
618
|
+
"type": "boolean"
|
|
553
619
|
}
|
|
554
620
|
},
|
|
555
621
|
"hasDynamicHelp": false,
|
|
@@ -583,6 +649,12 @@
|
|
|
583
649
|
"multiple": false,
|
|
584
650
|
"type": "option"
|
|
585
651
|
},
|
|
652
|
+
"time": {
|
|
653
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
654
|
+
"name": "time",
|
|
655
|
+
"allowNo": false,
|
|
656
|
+
"type": "boolean"
|
|
657
|
+
},
|
|
586
658
|
"id": {
|
|
587
659
|
"description": "Resource UUID",
|
|
588
660
|
"name": "id",
|
|
@@ -650,6 +722,12 @@
|
|
|
650
722
|
"multiple": false,
|
|
651
723
|
"type": "option"
|
|
652
724
|
},
|
|
725
|
+
"time": {
|
|
726
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
727
|
+
"name": "time",
|
|
728
|
+
"allowNo": false,
|
|
729
|
+
"type": "boolean"
|
|
730
|
+
},
|
|
653
731
|
"id": {
|
|
654
732
|
"description": "Resource UUID",
|
|
655
733
|
"name": "id",
|
|
@@ -690,6 +768,12 @@
|
|
|
690
768
|
"multiple": false,
|
|
691
769
|
"type": "option"
|
|
692
770
|
},
|
|
771
|
+
"time": {
|
|
772
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
773
|
+
"name": "time",
|
|
774
|
+
"allowNo": false,
|
|
775
|
+
"type": "boolean"
|
|
776
|
+
},
|
|
693
777
|
"id": {
|
|
694
778
|
"description": "Resource UUID",
|
|
695
779
|
"name": "id",
|
|
@@ -730,6 +814,12 @@
|
|
|
730
814
|
"multiple": false,
|
|
731
815
|
"type": "option"
|
|
732
816
|
},
|
|
817
|
+
"time": {
|
|
818
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
819
|
+
"name": "time",
|
|
820
|
+
"allowNo": false,
|
|
821
|
+
"type": "boolean"
|
|
822
|
+
},
|
|
733
823
|
"id": {
|
|
734
824
|
"description": "Resource UUID",
|
|
735
825
|
"name": "id",
|
|
@@ -770,6 +860,12 @@
|
|
|
770
860
|
"multiple": false,
|
|
771
861
|
"type": "option"
|
|
772
862
|
},
|
|
863
|
+
"time": {
|
|
864
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
865
|
+
"name": "time",
|
|
866
|
+
"allowNo": false,
|
|
867
|
+
"type": "boolean"
|
|
868
|
+
},
|
|
773
869
|
"id": {
|
|
774
870
|
"description": "Resource UUID",
|
|
775
871
|
"name": "id",
|
|
@@ -825,6 +921,12 @@
|
|
|
825
921
|
"multiple": false,
|
|
826
922
|
"type": "option"
|
|
827
923
|
},
|
|
924
|
+
"time": {
|
|
925
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
926
|
+
"name": "time",
|
|
927
|
+
"allowNo": false,
|
|
928
|
+
"type": "boolean"
|
|
929
|
+
},
|
|
828
930
|
"id": {
|
|
829
931
|
"description": "Resource UUID",
|
|
830
932
|
"name": "id",
|
|
@@ -880,6 +982,12 @@
|
|
|
880
982
|
"multiple": false,
|
|
881
983
|
"type": "option"
|
|
882
984
|
},
|
|
985
|
+
"time": {
|
|
986
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
987
|
+
"name": "time",
|
|
988
|
+
"allowNo": false,
|
|
989
|
+
"type": "boolean"
|
|
990
|
+
},
|
|
883
991
|
"id": {
|
|
884
992
|
"description": "Resource UUID",
|
|
885
993
|
"name": "id",
|
|
@@ -902,7 +1010,7 @@
|
|
|
902
1010
|
"emails:list-emails": {
|
|
903
1011
|
"aliases": [],
|
|
904
1012
|
"args": {},
|
|
905
|
-
"description": "Returns a paginated list of INBOUND emails received at your\nverified domains. Outbound messages sent via /send-mail are
|
|
1013
|
+
"description": "Returns a paginated list of INBOUND emails received at your\nverified domains. Outbound messages sent via /send-mail are\nnot included; this endpoint is the inbox view, not a\nunified send/receive history.\n\nSupports filtering by domain, status, date range, and\nfree-text search across subject, sender, and recipient\nfields.\n\nFor a compact text-table summary of the most recent N\ninbounds (no filters, no cursor pagination), the CLI ships\n`primitive emails:latest` as a one-line-per-email shortcut.\nIt's TTY-aware so id columns are full UUIDs when piped, and\na `--json` flag returns the same envelope this endpoint\ndoes. Use whichever fits the call site.\n",
|
|
906
1014
|
"flags": {
|
|
907
1015
|
"api-key": {
|
|
908
1016
|
"description": "Primitive API key (defaults to PRIMITIVE_API_KEY)",
|
|
@@ -920,6 +1028,12 @@
|
|
|
920
1028
|
"multiple": false,
|
|
921
1029
|
"type": "option"
|
|
922
1030
|
},
|
|
1031
|
+
"time": {
|
|
1032
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
1033
|
+
"name": "time",
|
|
1034
|
+
"allowNo": false,
|
|
1035
|
+
"type": "boolean"
|
|
1036
|
+
},
|
|
923
1037
|
"cursor": {
|
|
924
1038
|
"description": "Pagination cursor from a previous response's `meta.cursor` field.\nFormat: `{ISO-datetime}|{id}`\n",
|
|
925
1039
|
"name": "cursor",
|
|
@@ -1008,6 +1122,12 @@
|
|
|
1008
1122
|
"multiple": false,
|
|
1009
1123
|
"type": "option"
|
|
1010
1124
|
},
|
|
1125
|
+
"time": {
|
|
1126
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
1127
|
+
"name": "time",
|
|
1128
|
+
"allowNo": false,
|
|
1129
|
+
"type": "boolean"
|
|
1130
|
+
},
|
|
1011
1131
|
"id": {
|
|
1012
1132
|
"description": "Resource UUID",
|
|
1013
1133
|
"name": "id",
|
|
@@ -1030,7 +1150,7 @@
|
|
|
1030
1150
|
"endpoints:create-endpoint": {
|
|
1031
1151
|
"aliases": [],
|
|
1032
1152
|
"args": {},
|
|
1033
|
-
"description": "Creates a new webhook endpoint. If a deactivated endpoint
|
|
1153
|
+
"description": "Creates a new webhook endpoint. If a deactivated endpoint\nwith the same URL and domain exists, it is reactivated\ninstead. Subject to plan limits on the number of active\nendpoints.\n\n**Signing is account-scoped, not per-endpoint.** This call\ndoes not return any signing material; every endpoint on the\naccount uses the same webhook secret, fetched via\n`GET /account/webhook-secret`. See the API-level \"Webhook\nsigning\" section for the full wire format (header name,\nsigned string, hash algo, secret format, tolerance) and a\nlanguage-agnostic verification recipe.\n\nAfter creating the endpoint, fire a test delivery against\nit via `POST /endpoints/{id}/test` to confirm your verifier\naccepts the signature.\n\n\nBody fields requiring --raw-body JSON (these are not exposed as flags):\n rules object Endpoint-specific filtering rules\n(* = required. Scalar body fields are exposed as individual --flag-name flags; see FLAGS above.)",
|
|
1034
1154
|
"flags": {
|
|
1035
1155
|
"api-key": {
|
|
1036
1156
|
"description": "Primitive API key (defaults to PRIMITIVE_API_KEY)",
|
|
@@ -1048,6 +1168,12 @@
|
|
|
1048
1168
|
"multiple": false,
|
|
1049
1169
|
"type": "option"
|
|
1050
1170
|
},
|
|
1171
|
+
"time": {
|
|
1172
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
1173
|
+
"name": "time",
|
|
1174
|
+
"allowNo": false,
|
|
1175
|
+
"type": "boolean"
|
|
1176
|
+
},
|
|
1051
1177
|
"raw-body": {
|
|
1052
1178
|
"description": "Full request body as raw JSON. Escape hatch for nested or complex fields (e.g. arrays); prefer per-field flags (e.g. --to, --from, --body-text) when available.",
|
|
1053
1179
|
"name": "raw-body",
|
|
@@ -1114,6 +1240,12 @@
|
|
|
1114
1240
|
"multiple": false,
|
|
1115
1241
|
"type": "option"
|
|
1116
1242
|
},
|
|
1243
|
+
"time": {
|
|
1244
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
1245
|
+
"name": "time",
|
|
1246
|
+
"allowNo": false,
|
|
1247
|
+
"type": "boolean"
|
|
1248
|
+
},
|
|
1117
1249
|
"id": {
|
|
1118
1250
|
"description": "Resource UUID",
|
|
1119
1251
|
"name": "id",
|
|
@@ -1153,6 +1285,12 @@
|
|
|
1153
1285
|
"hasDynamicHelp": false,
|
|
1154
1286
|
"multiple": false,
|
|
1155
1287
|
"type": "option"
|
|
1288
|
+
},
|
|
1289
|
+
"time": {
|
|
1290
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
1291
|
+
"name": "time",
|
|
1292
|
+
"allowNo": false,
|
|
1293
|
+
"type": "boolean"
|
|
1156
1294
|
}
|
|
1157
1295
|
},
|
|
1158
1296
|
"hasDynamicHelp": false,
|
|
@@ -1186,6 +1324,12 @@
|
|
|
1186
1324
|
"multiple": false,
|
|
1187
1325
|
"type": "option"
|
|
1188
1326
|
},
|
|
1327
|
+
"time": {
|
|
1328
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
1329
|
+
"name": "time",
|
|
1330
|
+
"allowNo": false,
|
|
1331
|
+
"type": "boolean"
|
|
1332
|
+
},
|
|
1189
1333
|
"id": {
|
|
1190
1334
|
"description": "Resource UUID",
|
|
1191
1335
|
"name": "id",
|
|
@@ -1226,6 +1370,12 @@
|
|
|
1226
1370
|
"multiple": false,
|
|
1227
1371
|
"type": "option"
|
|
1228
1372
|
},
|
|
1373
|
+
"time": {
|
|
1374
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
1375
|
+
"name": "time",
|
|
1376
|
+
"allowNo": false,
|
|
1377
|
+
"type": "boolean"
|
|
1378
|
+
},
|
|
1229
1379
|
"id": {
|
|
1230
1380
|
"description": "Resource UUID",
|
|
1231
1381
|
"name": "id",
|
|
@@ -1300,6 +1450,12 @@
|
|
|
1300
1450
|
"multiple": false,
|
|
1301
1451
|
"type": "option"
|
|
1302
1452
|
},
|
|
1453
|
+
"time": {
|
|
1454
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
1455
|
+
"name": "time",
|
|
1456
|
+
"allowNo": false,
|
|
1457
|
+
"type": "boolean"
|
|
1458
|
+
},
|
|
1303
1459
|
"raw-body": {
|
|
1304
1460
|
"description": "Full request body as raw JSON. Escape hatch for nested or complex fields (e.g. arrays); prefer per-field flags (e.g. --to, --from, --body-text) when available.",
|
|
1305
1461
|
"name": "raw-body",
|
|
@@ -1371,6 +1527,12 @@
|
|
|
1371
1527
|
"multiple": false,
|
|
1372
1528
|
"type": "option"
|
|
1373
1529
|
},
|
|
1530
|
+
"time": {
|
|
1531
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
1532
|
+
"name": "time",
|
|
1533
|
+
"allowNo": false,
|
|
1534
|
+
"type": "boolean"
|
|
1535
|
+
},
|
|
1374
1536
|
"id": {
|
|
1375
1537
|
"description": "Resource UUID",
|
|
1376
1538
|
"name": "id",
|
|
@@ -1410,6 +1572,12 @@
|
|
|
1410
1572
|
"hasDynamicHelp": false,
|
|
1411
1573
|
"multiple": false,
|
|
1412
1574
|
"type": "option"
|
|
1575
|
+
},
|
|
1576
|
+
"time": {
|
|
1577
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
1578
|
+
"name": "time",
|
|
1579
|
+
"allowNo": false,
|
|
1580
|
+
"type": "boolean"
|
|
1413
1581
|
}
|
|
1414
1582
|
},
|
|
1415
1583
|
"hasDynamicHelp": false,
|
|
@@ -1443,6 +1611,12 @@
|
|
|
1443
1611
|
"multiple": false,
|
|
1444
1612
|
"type": "option"
|
|
1445
1613
|
},
|
|
1614
|
+
"time": {
|
|
1615
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
1616
|
+
"name": "time",
|
|
1617
|
+
"allowNo": false,
|
|
1618
|
+
"type": "boolean"
|
|
1619
|
+
},
|
|
1446
1620
|
"id": {
|
|
1447
1621
|
"description": "Resource UUID",
|
|
1448
1622
|
"name": "id",
|
|
@@ -1502,6 +1676,12 @@
|
|
|
1502
1676
|
"hasDynamicHelp": false,
|
|
1503
1677
|
"multiple": false,
|
|
1504
1678
|
"type": "option"
|
|
1679
|
+
},
|
|
1680
|
+
"time": {
|
|
1681
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
1682
|
+
"name": "time",
|
|
1683
|
+
"allowNo": false,
|
|
1684
|
+
"type": "boolean"
|
|
1505
1685
|
}
|
|
1506
1686
|
},
|
|
1507
1687
|
"hasDynamicHelp": false,
|
|
@@ -1535,6 +1715,12 @@
|
|
|
1535
1715
|
"multiple": false,
|
|
1536
1716
|
"type": "option"
|
|
1537
1717
|
},
|
|
1718
|
+
"time": {
|
|
1719
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
1720
|
+
"name": "time",
|
|
1721
|
+
"allowNo": false,
|
|
1722
|
+
"type": "boolean"
|
|
1723
|
+
},
|
|
1538
1724
|
"id": {
|
|
1539
1725
|
"description": "Resource UUID",
|
|
1540
1726
|
"name": "id",
|
|
@@ -1575,6 +1761,12 @@
|
|
|
1575
1761
|
"multiple": false,
|
|
1576
1762
|
"type": "option"
|
|
1577
1763
|
},
|
|
1764
|
+
"time": {
|
|
1765
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
1766
|
+
"name": "time",
|
|
1767
|
+
"allowNo": false,
|
|
1768
|
+
"type": "boolean"
|
|
1769
|
+
},
|
|
1578
1770
|
"cursor": {
|
|
1579
1771
|
"description": "Pagination cursor from a previous response's `meta.cursor` field.\nFormat: `{ISO-datetime}|{id}`\n",
|
|
1580
1772
|
"name": "cursor",
|
|
@@ -1663,6 +1855,12 @@
|
|
|
1663
1855
|
"multiple": false,
|
|
1664
1856
|
"type": "option"
|
|
1665
1857
|
},
|
|
1858
|
+
"time": {
|
|
1859
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
1860
|
+
"name": "time",
|
|
1861
|
+
"allowNo": false,
|
|
1862
|
+
"type": "boolean"
|
|
1863
|
+
},
|
|
1666
1864
|
"id": {
|
|
1667
1865
|
"description": "Resource UUID",
|
|
1668
1866
|
"name": "id",
|
|
@@ -1744,6 +1942,12 @@
|
|
|
1744
1942
|
"multiple": false,
|
|
1745
1943
|
"type": "option"
|
|
1746
1944
|
},
|
|
1945
|
+
"time": {
|
|
1946
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
1947
|
+
"name": "time",
|
|
1948
|
+
"allowNo": false,
|
|
1949
|
+
"type": "boolean"
|
|
1950
|
+
},
|
|
1747
1951
|
"raw-body": {
|
|
1748
1952
|
"description": "Full request body as raw JSON. Escape hatch for nested or complex fields (e.g. arrays); prefer per-field flags (e.g. --to, --from, --body-text) when available.",
|
|
1749
1953
|
"name": "raw-body",
|
|
@@ -1845,6 +2049,12 @@
|
|
|
1845
2049
|
"multiple": false,
|
|
1846
2050
|
"type": "option"
|
|
1847
2051
|
},
|
|
2052
|
+
"time": {
|
|
2053
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
2054
|
+
"name": "time",
|
|
2055
|
+
"allowNo": false,
|
|
2056
|
+
"type": "boolean"
|
|
2057
|
+
},
|
|
1848
2058
|
"cursor": {
|
|
1849
2059
|
"description": "Pagination cursor from a previous response's `meta.cursor` field.\nFormat: `{ISO-datetime}|{id}`\n",
|
|
1850
2060
|
"name": "cursor",
|
|
@@ -1931,6 +2141,12 @@
|
|
|
1931
2141
|
"multiple": false,
|
|
1932
2142
|
"type": "option"
|
|
1933
2143
|
},
|
|
2144
|
+
"time": {
|
|
2145
|
+
"description": "Print the wall-clock duration of this command to stderr after it completes (e.g. `[time: 1.34s]`). Useful for measuring `--wait` send latency, comparing CLI overhead, or capturing timing in scripts.",
|
|
2146
|
+
"name": "time",
|
|
2147
|
+
"allowNo": false,
|
|
2148
|
+
"type": "boolean"
|
|
2149
|
+
},
|
|
1934
2150
|
"id": {
|
|
1935
2151
|
"description": "Delivery ID (numeric)",
|
|
1936
2152
|
"name": "id",
|
|
@@ -1951,5 +2167,5 @@
|
|
|
1951
2167
|
"enableJsonFlag": false
|
|
1952
2168
|
}
|
|
1953
2169
|
},
|
|
1954
|
-
"version": "0.
|
|
2170
|
+
"version": "0.18.0"
|
|
1955
2171
|
}
|