1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// Location: ./crates/cpex-core/src/delegation/hook.rs
// Copyright 2025
// SPDX-License-Identifier: Apache-2.0
// Authors: Teryl Taylor
//
// `TokenDelegateHook` — the `HookTypeDef` marker for the
// TokenDelegate hook family. Plugins implement
// `HookHandler<TokenDelegateHook>`; outbound code dispatches into it
// to mint a downstream-scoped credential for the call it's about to
// make.
//
// Single hook name (for now): `"token.delegate"`. Future variants
// with the same payload shape — e.g. `"token.refresh"` for a
// refresh-token specific flow — could share `TokenDelegateHook` via
// multi-name registration. Variants with different payloads get
// their own hook type rather than reusing this one.
use cratePluginResult;
use DelegationPayload;
/// Primary hook name for TokenDelegate handlers.
pub const HOOK_TOKEN_DELEGATE: &str = "token.delegate";
cratedefine_hook!