@pymthouse/builder-sdk 0.1.0 → 0.3.1
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/README.md +66 -0
- package/dist/{client-BroVFyIy.d.ts → client-BHfjDvIe.d.ts} +49 -1
- package/dist/{client-BhC1YhB1.d.cts → client-CvhJEhjV.d.cts} +49 -1
- package/dist/config.cjs +59 -3
- package/dist/config.cjs.map +1 -1
- package/dist/config.d.cts +8 -1
- package/dist/config.d.ts +8 -1
- package/dist/config.js +57 -4
- package/dist/config.js.map +1 -1
- package/dist/device-initiate.cjs +1 -1
- package/dist/device-initiate.cjs.map +1 -1
- package/dist/device-initiate.js +1 -1
- package/dist/device-initiate.js.map +1 -1
- package/dist/device.cjs +1 -1
- package/dist/device.cjs.map +1 -1
- package/dist/device.d.cts +1 -1
- package/dist/device.d.ts +1 -1
- package/dist/device.js +1 -1
- package/dist/device.js.map +1 -1
- package/dist/env.cjs +794 -36
- package/dist/env.cjs.map +1 -1
- package/dist/env.d.cts +2 -2
- package/dist/env.d.ts +2 -2
- package/dist/env.js +794 -36
- package/dist/env.js.map +1 -1
- package/dist/gateway/client/index.cjs +492 -0
- package/dist/gateway/client/index.cjs.map +1 -0
- package/dist/gateway/client/index.d.cts +63 -0
- package/dist/gateway/client/index.d.ts +63 -0
- package/dist/gateway/client/index.js +489 -0
- package/dist/gateway/client/index.js.map +1 -0
- package/dist/gateway/index.cjs +16 -0
- package/dist/gateway/index.cjs.map +1 -0
- package/dist/gateway/index.d.cts +52 -0
- package/dist/gateway/index.d.ts +52 -0
- package/dist/gateway/index.js +10 -0
- package/dist/gateway/index.js.map +1 -0
- package/dist/gateway/server/index.cjs +1248 -0
- package/dist/gateway/server/index.cjs.map +1 -0
- package/dist/gateway/server/index.d.cts +31 -0
- package/dist/gateway/server/index.d.ts +31 -0
- package/dist/gateway/server/index.js +1233 -0
- package/dist/gateway/server/index.js.map +1 -0
- package/dist/index.cjs +1075 -186
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -4
- package/dist/index.d.ts +6 -4
- package/dist/index.js +1042 -163
- package/dist/index.js.map +1 -1
- package/dist/ingest-B3Yi8Tb1.d.cts +271 -0
- package/dist/ingest-DoKJTWU9.d.ts +271 -0
- package/dist/plan-pricing.cjs +108 -0
- package/dist/plan-pricing.cjs.map +1 -0
- package/dist/plan-pricing.d.cts +15 -0
- package/dist/plan-pricing.d.ts +15 -0
- package/dist/plan-pricing.js +98 -0
- package/dist/plan-pricing.js.map +1 -0
- package/dist/signer/server.cjs +1366 -0
- package/dist/signer/server.cjs.map +1 -0
- package/dist/signer/server.d.cts +73 -0
- package/dist/signer/server.d.ts +73 -0
- package/dist/signer/server.js +1331 -0
- package/dist/signer/server.js.map +1 -0
- package/dist/tokens.d.cts +1 -1
- package/dist/tokens.d.ts +1 -1
- package/dist/types-_R1AwEZp.d.cts +343 -0
- package/dist/types-_R1AwEZp.d.ts +343 -0
- package/dist/verify.cjs +1 -1
- package/dist/verify.cjs.map +1 -1
- package/dist/verify.d.cts +1 -1
- package/dist/verify.d.ts +1 -1
- package/dist/verify.js +1 -1
- package/dist/verify.js.map +1 -1
- package/gateway/proto/lp_rpc.proto +542 -0
- package/package.json +42 -1
- package/dist/types-rKzVXvMu.d.cts +0 -196
- package/dist/types-rKzVXvMu.d.ts +0 -196
|
@@ -1,196 +0,0 @@
|
|
|
1
|
-
type FetchLike = (input: string | URL | Request, init?: RequestInit) => Promise<Response>;
|
|
2
|
-
interface OidcDiscoveryDocument {
|
|
3
|
-
issuer: string;
|
|
4
|
-
authorization_endpoint: string;
|
|
5
|
-
token_endpoint: string;
|
|
6
|
-
jwks_uri: string;
|
|
7
|
-
userinfo_endpoint?: string;
|
|
8
|
-
device_authorization_endpoint?: string;
|
|
9
|
-
}
|
|
10
|
-
interface GetDiscoveryOptions {
|
|
11
|
-
/**
|
|
12
|
-
* Bypass the in-memory discovery cache and fetch fresh metadata.
|
|
13
|
-
*/
|
|
14
|
-
force?: boolean;
|
|
15
|
-
}
|
|
16
|
-
interface PmtHouseClientOptions {
|
|
17
|
-
issuerUrl: string;
|
|
18
|
-
publicClientId: string;
|
|
19
|
-
m2mClientId: string;
|
|
20
|
-
m2mClientSecret: string;
|
|
21
|
-
fetch?: FetchLike;
|
|
22
|
-
/**
|
|
23
|
-
* Allow HTTP issuer URLs (e.g. local dev). Passed to oauth4webapi as `allowInsecureRequests`.
|
|
24
|
-
*/
|
|
25
|
-
allowInsecureHttp?: boolean;
|
|
26
|
-
logger?: {
|
|
27
|
-
debug?: (message: string, details?: Record<string, unknown>) => void;
|
|
28
|
-
warn?: (message: string, details?: Record<string, unknown>) => void;
|
|
29
|
-
};
|
|
30
|
-
}
|
|
31
|
-
interface UpsertAppUserInput {
|
|
32
|
-
externalUserId: string;
|
|
33
|
-
email?: string;
|
|
34
|
-
status?: "active" | "inactive";
|
|
35
|
-
}
|
|
36
|
-
interface AppUserRecord {
|
|
37
|
-
id: string;
|
|
38
|
-
clientId: string;
|
|
39
|
-
externalUserId: string;
|
|
40
|
-
email: string | null;
|
|
41
|
-
status: string;
|
|
42
|
-
role: string;
|
|
43
|
-
createdAt: string;
|
|
44
|
-
}
|
|
45
|
-
interface MintUserAccessTokenInput {
|
|
46
|
-
externalUserId: string;
|
|
47
|
-
scope?: string;
|
|
48
|
-
}
|
|
49
|
-
interface MintUserSignerSessionTokenInput extends MintUserAccessTokenInput {
|
|
50
|
-
/**
|
|
51
|
-
* Optional RFC 8707 resource indicator for the signer-session exchange.
|
|
52
|
-
* Defaults to the configured PymtHouse issuer URL.
|
|
53
|
-
*/
|
|
54
|
-
resource?: string;
|
|
55
|
-
}
|
|
56
|
-
interface MintUserAccessTokenResponse {
|
|
57
|
-
access_token: string;
|
|
58
|
-
refresh_token: string;
|
|
59
|
-
token_type: "Bearer";
|
|
60
|
-
expires_in: number;
|
|
61
|
-
scope: string;
|
|
62
|
-
subject_type: "app_user";
|
|
63
|
-
correlation_id?: string;
|
|
64
|
-
}
|
|
65
|
-
interface DeviceApprovalInput {
|
|
66
|
-
userJwt: string;
|
|
67
|
-
userCode: string;
|
|
68
|
-
}
|
|
69
|
-
interface TokenExchangeResponse {
|
|
70
|
-
access_token: string;
|
|
71
|
-
token_type: "Bearer";
|
|
72
|
-
expires_in: number;
|
|
73
|
-
scope: string;
|
|
74
|
-
issued_token_type: string;
|
|
75
|
-
}
|
|
76
|
-
interface UsageQueryInput {
|
|
77
|
-
startDate?: string;
|
|
78
|
-
endDate?: string;
|
|
79
|
-
groupBy?: "none" | "user" | "pipeline_model";
|
|
80
|
-
userId?: string;
|
|
81
|
-
gatewayRequestId?: string;
|
|
82
|
-
}
|
|
83
|
-
interface UsageTotals {
|
|
84
|
-
requestCount: number;
|
|
85
|
-
totalFeeWei?: string;
|
|
86
|
-
currency?: string;
|
|
87
|
-
networkFeeUsdMicros?: string;
|
|
88
|
-
ownerChargeUsdMicros?: string;
|
|
89
|
-
platformFeeUsdMicros?: string;
|
|
90
|
-
endUserBillableUsdMicros?: string;
|
|
91
|
-
}
|
|
92
|
-
interface UsageByUserRow {
|
|
93
|
-
endUserId: string;
|
|
94
|
-
externalUserId: string | null;
|
|
95
|
-
requestCount: number;
|
|
96
|
-
feeWei?: string;
|
|
97
|
-
currency?: string;
|
|
98
|
-
networkFeeUsdMicros?: string;
|
|
99
|
-
ownerChargeUsdMicros?: string;
|
|
100
|
-
endUserBillableUsdMicros?: string;
|
|
101
|
-
userType?: "system_managed" | "oidc_authorized" | "unknown";
|
|
102
|
-
identifier?: string;
|
|
103
|
-
}
|
|
104
|
-
/** One bucket from Usage API `groupBy=pipeline_model` (validated pipeline + model). */
|
|
105
|
-
interface UsageByPipelineModelRow {
|
|
106
|
-
pipeline: string;
|
|
107
|
-
modelId: string;
|
|
108
|
-
requestCount: number;
|
|
109
|
-
currency?: string;
|
|
110
|
-
networkFeeWei?: string;
|
|
111
|
-
networkFeeEth?: string;
|
|
112
|
-
networkFeeUsdMicros: string;
|
|
113
|
-
ownerChargeUsdMicros: string;
|
|
114
|
-
endUserBillableUsdMicros: string;
|
|
115
|
-
}
|
|
116
|
-
interface UsageApiResponse {
|
|
117
|
-
clientId: string;
|
|
118
|
-
period: {
|
|
119
|
-
start: string | null;
|
|
120
|
-
end: string | null;
|
|
121
|
-
};
|
|
122
|
-
totals: UsageTotals;
|
|
123
|
-
byUser?: UsageByUserRow[];
|
|
124
|
-
byPipelineModel?: UsageByPipelineModelRow[];
|
|
125
|
-
}
|
|
126
|
-
/** Aggregated request count and fee for one provider `externalUserId` across duplicate `byUser` buckets. */
|
|
127
|
-
interface UsageForExternalUser {
|
|
128
|
-
externalUserId: string;
|
|
129
|
-
requestCount: number;
|
|
130
|
-
feeWei: string;
|
|
131
|
-
}
|
|
132
|
-
interface ClientCredentialsTokenResponse {
|
|
133
|
-
access_token: string;
|
|
134
|
-
token_type: "Bearer";
|
|
135
|
-
expires_in?: number;
|
|
136
|
-
scope?: string;
|
|
137
|
-
[key: string]: unknown;
|
|
138
|
-
}
|
|
139
|
-
interface ParsedDeviceApprovalRedirect {
|
|
140
|
-
issuer: string;
|
|
141
|
-
targetLinkUri: string;
|
|
142
|
-
userCode: string;
|
|
143
|
-
clientId: string;
|
|
144
|
-
}
|
|
145
|
-
interface AppManifestCapability {
|
|
146
|
-
pipeline: string;
|
|
147
|
-
modelId: string;
|
|
148
|
-
}
|
|
149
|
-
interface AppManifestResponse {
|
|
150
|
-
/** PymtHouse-local resolved set; informational, not a complete integrator allowlist. */
|
|
151
|
-
capabilities: AppManifestCapability[];
|
|
152
|
-
/** Authoritative exclusions from the Network Price plan. */
|
|
153
|
-
excludedCapabilities?: AppManifestCapability[];
|
|
154
|
-
/** Server-computed revision for cache busting when present. */
|
|
155
|
-
manifestVersion?: string;
|
|
156
|
-
}
|
|
157
|
-
interface GetAppManifestResult {
|
|
158
|
-
manifest: AppManifestResponse | null;
|
|
159
|
-
etag: string | null;
|
|
160
|
-
notModified: boolean;
|
|
161
|
-
}
|
|
162
|
-
interface UsageByPipelineModelFiatRow {
|
|
163
|
-
pipeline: string;
|
|
164
|
-
modelId: string;
|
|
165
|
-
requestCount: number;
|
|
166
|
-
currency: string;
|
|
167
|
-
networkFeeUsdMicros: string;
|
|
168
|
-
ownerChargeUsdMicros: string;
|
|
169
|
-
endUserBillableUsdMicros: string;
|
|
170
|
-
}
|
|
171
|
-
interface MeScopeUsagePayload {
|
|
172
|
-
clientId: string;
|
|
173
|
-
period: UsageApiResponse["period"];
|
|
174
|
-
currentUser: {
|
|
175
|
-
externalUserId: string;
|
|
176
|
-
requestCount: number;
|
|
177
|
-
currency: string;
|
|
178
|
-
networkFeeUsdMicros: string;
|
|
179
|
-
ownerChargeUsdMicros: string;
|
|
180
|
-
endUserBillableUsdMicros: string;
|
|
181
|
-
pipelineModels: UsageByPipelineModelFiatRow[];
|
|
182
|
-
};
|
|
183
|
-
}
|
|
184
|
-
interface MintSignerSessionForExternalUserInput {
|
|
185
|
-
externalUserId: string;
|
|
186
|
-
email?: string;
|
|
187
|
-
scope?: string;
|
|
188
|
-
}
|
|
189
|
-
interface ApproveDeviceLoginInput {
|
|
190
|
-
externalUserId: string;
|
|
191
|
-
userCode: string;
|
|
192
|
-
email?: string;
|
|
193
|
-
publicClientId?: string;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
export type { AppManifestResponse as A, ClientCredentialsTokenResponse as C, DeviceApprovalInput as D, FetchLike as F, GetAppManifestResult as G, MeScopeUsagePayload as M, OidcDiscoveryDocument as O, ParsedDeviceApprovalRedirect as P, TokenExchangeResponse as T, UsageByUserRow as U, UsageForExternalUser as a, UsageApiResponse as b, UsageByPipelineModelRow as c, UsageByPipelineModelFiatRow as d, AppManifestCapability as e, AppUserRecord as f, ApproveDeviceLoginInput as g, GetDiscoveryOptions as h, MintSignerSessionForExternalUserInput as i, MintUserAccessTokenInput as j, MintUserAccessTokenResponse as k, MintUserSignerSessionTokenInput as l, PmtHouseClientOptions as m, UpsertAppUserInput as n, UsageQueryInput as o, UsageTotals as p };
|
package/dist/types-rKzVXvMu.d.ts
DELETED
|
@@ -1,196 +0,0 @@
|
|
|
1
|
-
type FetchLike = (input: string | URL | Request, init?: RequestInit) => Promise<Response>;
|
|
2
|
-
interface OidcDiscoveryDocument {
|
|
3
|
-
issuer: string;
|
|
4
|
-
authorization_endpoint: string;
|
|
5
|
-
token_endpoint: string;
|
|
6
|
-
jwks_uri: string;
|
|
7
|
-
userinfo_endpoint?: string;
|
|
8
|
-
device_authorization_endpoint?: string;
|
|
9
|
-
}
|
|
10
|
-
interface GetDiscoveryOptions {
|
|
11
|
-
/**
|
|
12
|
-
* Bypass the in-memory discovery cache and fetch fresh metadata.
|
|
13
|
-
*/
|
|
14
|
-
force?: boolean;
|
|
15
|
-
}
|
|
16
|
-
interface PmtHouseClientOptions {
|
|
17
|
-
issuerUrl: string;
|
|
18
|
-
publicClientId: string;
|
|
19
|
-
m2mClientId: string;
|
|
20
|
-
m2mClientSecret: string;
|
|
21
|
-
fetch?: FetchLike;
|
|
22
|
-
/**
|
|
23
|
-
* Allow HTTP issuer URLs (e.g. local dev). Passed to oauth4webapi as `allowInsecureRequests`.
|
|
24
|
-
*/
|
|
25
|
-
allowInsecureHttp?: boolean;
|
|
26
|
-
logger?: {
|
|
27
|
-
debug?: (message: string, details?: Record<string, unknown>) => void;
|
|
28
|
-
warn?: (message: string, details?: Record<string, unknown>) => void;
|
|
29
|
-
};
|
|
30
|
-
}
|
|
31
|
-
interface UpsertAppUserInput {
|
|
32
|
-
externalUserId: string;
|
|
33
|
-
email?: string;
|
|
34
|
-
status?: "active" | "inactive";
|
|
35
|
-
}
|
|
36
|
-
interface AppUserRecord {
|
|
37
|
-
id: string;
|
|
38
|
-
clientId: string;
|
|
39
|
-
externalUserId: string;
|
|
40
|
-
email: string | null;
|
|
41
|
-
status: string;
|
|
42
|
-
role: string;
|
|
43
|
-
createdAt: string;
|
|
44
|
-
}
|
|
45
|
-
interface MintUserAccessTokenInput {
|
|
46
|
-
externalUserId: string;
|
|
47
|
-
scope?: string;
|
|
48
|
-
}
|
|
49
|
-
interface MintUserSignerSessionTokenInput extends MintUserAccessTokenInput {
|
|
50
|
-
/**
|
|
51
|
-
* Optional RFC 8707 resource indicator for the signer-session exchange.
|
|
52
|
-
* Defaults to the configured PymtHouse issuer URL.
|
|
53
|
-
*/
|
|
54
|
-
resource?: string;
|
|
55
|
-
}
|
|
56
|
-
interface MintUserAccessTokenResponse {
|
|
57
|
-
access_token: string;
|
|
58
|
-
refresh_token: string;
|
|
59
|
-
token_type: "Bearer";
|
|
60
|
-
expires_in: number;
|
|
61
|
-
scope: string;
|
|
62
|
-
subject_type: "app_user";
|
|
63
|
-
correlation_id?: string;
|
|
64
|
-
}
|
|
65
|
-
interface DeviceApprovalInput {
|
|
66
|
-
userJwt: string;
|
|
67
|
-
userCode: string;
|
|
68
|
-
}
|
|
69
|
-
interface TokenExchangeResponse {
|
|
70
|
-
access_token: string;
|
|
71
|
-
token_type: "Bearer";
|
|
72
|
-
expires_in: number;
|
|
73
|
-
scope: string;
|
|
74
|
-
issued_token_type: string;
|
|
75
|
-
}
|
|
76
|
-
interface UsageQueryInput {
|
|
77
|
-
startDate?: string;
|
|
78
|
-
endDate?: string;
|
|
79
|
-
groupBy?: "none" | "user" | "pipeline_model";
|
|
80
|
-
userId?: string;
|
|
81
|
-
gatewayRequestId?: string;
|
|
82
|
-
}
|
|
83
|
-
interface UsageTotals {
|
|
84
|
-
requestCount: number;
|
|
85
|
-
totalFeeWei?: string;
|
|
86
|
-
currency?: string;
|
|
87
|
-
networkFeeUsdMicros?: string;
|
|
88
|
-
ownerChargeUsdMicros?: string;
|
|
89
|
-
platformFeeUsdMicros?: string;
|
|
90
|
-
endUserBillableUsdMicros?: string;
|
|
91
|
-
}
|
|
92
|
-
interface UsageByUserRow {
|
|
93
|
-
endUserId: string;
|
|
94
|
-
externalUserId: string | null;
|
|
95
|
-
requestCount: number;
|
|
96
|
-
feeWei?: string;
|
|
97
|
-
currency?: string;
|
|
98
|
-
networkFeeUsdMicros?: string;
|
|
99
|
-
ownerChargeUsdMicros?: string;
|
|
100
|
-
endUserBillableUsdMicros?: string;
|
|
101
|
-
userType?: "system_managed" | "oidc_authorized" | "unknown";
|
|
102
|
-
identifier?: string;
|
|
103
|
-
}
|
|
104
|
-
/** One bucket from Usage API `groupBy=pipeline_model` (validated pipeline + model). */
|
|
105
|
-
interface UsageByPipelineModelRow {
|
|
106
|
-
pipeline: string;
|
|
107
|
-
modelId: string;
|
|
108
|
-
requestCount: number;
|
|
109
|
-
currency?: string;
|
|
110
|
-
networkFeeWei?: string;
|
|
111
|
-
networkFeeEth?: string;
|
|
112
|
-
networkFeeUsdMicros: string;
|
|
113
|
-
ownerChargeUsdMicros: string;
|
|
114
|
-
endUserBillableUsdMicros: string;
|
|
115
|
-
}
|
|
116
|
-
interface UsageApiResponse {
|
|
117
|
-
clientId: string;
|
|
118
|
-
period: {
|
|
119
|
-
start: string | null;
|
|
120
|
-
end: string | null;
|
|
121
|
-
};
|
|
122
|
-
totals: UsageTotals;
|
|
123
|
-
byUser?: UsageByUserRow[];
|
|
124
|
-
byPipelineModel?: UsageByPipelineModelRow[];
|
|
125
|
-
}
|
|
126
|
-
/** Aggregated request count and fee for one provider `externalUserId` across duplicate `byUser` buckets. */
|
|
127
|
-
interface UsageForExternalUser {
|
|
128
|
-
externalUserId: string;
|
|
129
|
-
requestCount: number;
|
|
130
|
-
feeWei: string;
|
|
131
|
-
}
|
|
132
|
-
interface ClientCredentialsTokenResponse {
|
|
133
|
-
access_token: string;
|
|
134
|
-
token_type: "Bearer";
|
|
135
|
-
expires_in?: number;
|
|
136
|
-
scope?: string;
|
|
137
|
-
[key: string]: unknown;
|
|
138
|
-
}
|
|
139
|
-
interface ParsedDeviceApprovalRedirect {
|
|
140
|
-
issuer: string;
|
|
141
|
-
targetLinkUri: string;
|
|
142
|
-
userCode: string;
|
|
143
|
-
clientId: string;
|
|
144
|
-
}
|
|
145
|
-
interface AppManifestCapability {
|
|
146
|
-
pipeline: string;
|
|
147
|
-
modelId: string;
|
|
148
|
-
}
|
|
149
|
-
interface AppManifestResponse {
|
|
150
|
-
/** PymtHouse-local resolved set; informational, not a complete integrator allowlist. */
|
|
151
|
-
capabilities: AppManifestCapability[];
|
|
152
|
-
/** Authoritative exclusions from the Network Price plan. */
|
|
153
|
-
excludedCapabilities?: AppManifestCapability[];
|
|
154
|
-
/** Server-computed revision for cache busting when present. */
|
|
155
|
-
manifestVersion?: string;
|
|
156
|
-
}
|
|
157
|
-
interface GetAppManifestResult {
|
|
158
|
-
manifest: AppManifestResponse | null;
|
|
159
|
-
etag: string | null;
|
|
160
|
-
notModified: boolean;
|
|
161
|
-
}
|
|
162
|
-
interface UsageByPipelineModelFiatRow {
|
|
163
|
-
pipeline: string;
|
|
164
|
-
modelId: string;
|
|
165
|
-
requestCount: number;
|
|
166
|
-
currency: string;
|
|
167
|
-
networkFeeUsdMicros: string;
|
|
168
|
-
ownerChargeUsdMicros: string;
|
|
169
|
-
endUserBillableUsdMicros: string;
|
|
170
|
-
}
|
|
171
|
-
interface MeScopeUsagePayload {
|
|
172
|
-
clientId: string;
|
|
173
|
-
period: UsageApiResponse["period"];
|
|
174
|
-
currentUser: {
|
|
175
|
-
externalUserId: string;
|
|
176
|
-
requestCount: number;
|
|
177
|
-
currency: string;
|
|
178
|
-
networkFeeUsdMicros: string;
|
|
179
|
-
ownerChargeUsdMicros: string;
|
|
180
|
-
endUserBillableUsdMicros: string;
|
|
181
|
-
pipelineModels: UsageByPipelineModelFiatRow[];
|
|
182
|
-
};
|
|
183
|
-
}
|
|
184
|
-
interface MintSignerSessionForExternalUserInput {
|
|
185
|
-
externalUserId: string;
|
|
186
|
-
email?: string;
|
|
187
|
-
scope?: string;
|
|
188
|
-
}
|
|
189
|
-
interface ApproveDeviceLoginInput {
|
|
190
|
-
externalUserId: string;
|
|
191
|
-
userCode: string;
|
|
192
|
-
email?: string;
|
|
193
|
-
publicClientId?: string;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
export type { AppManifestResponse as A, ClientCredentialsTokenResponse as C, DeviceApprovalInput as D, FetchLike as F, GetAppManifestResult as G, MeScopeUsagePayload as M, OidcDiscoveryDocument as O, ParsedDeviceApprovalRedirect as P, TokenExchangeResponse as T, UsageByUserRow as U, UsageForExternalUser as a, UsageApiResponse as b, UsageByPipelineModelRow as c, UsageByPipelineModelFiatRow as d, AppManifestCapability as e, AppUserRecord as f, ApproveDeviceLoginInput as g, GetDiscoveryOptions as h, MintSignerSessionForExternalUserInput as i, MintUserAccessTokenInput as j, MintUserAccessTokenResponse as k, MintUserSignerSessionTokenInput as l, PmtHouseClientOptions as m, UpsertAppUserInput as n, UsageQueryInput as o, UsageTotals as p };
|