@openmeter/sdk 1.0.0-beta-dc7ec5969244 → 1.0.0-beta-92db1107743f
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/cjs/src/client/features.d.cts +3 -0
- package/dist/cjs/src/client/schemas.d.cts +361 -0
- package/dist/cjs/src/zod/index.cjs +156 -17
- package/dist/cjs/src/zod/index.cjs.map +1 -1
- package/dist/cjs/src/zod/index.d.cts +58 -0
- package/dist/src/client/features.d.ts +3 -0
- package/dist/src/client/schemas.d.ts +361 -0
- package/dist/src/zod/index.d.ts +58 -0
- package/dist/src/zod/index.js +139 -0
- package/dist/src/zod/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -29,6 +29,7 @@ export declare class Features {
|
|
|
29
29
|
advancedMeterGroupByFilters?: {
|
|
30
30
|
[key: string]: import("./schemas.cjs").components["schemas"]["FilterString"];
|
|
31
31
|
};
|
|
32
|
+
unitCost?: import("./schemas.cjs").components["schemas"]["FeatureUnitCost"];
|
|
32
33
|
readonly id: string;
|
|
33
34
|
} | undefined>;
|
|
34
35
|
/**
|
|
@@ -52,6 +53,7 @@ export declare class Features {
|
|
|
52
53
|
advancedMeterGroupByFilters?: {
|
|
53
54
|
[key: string]: import("./schemas.cjs").components["schemas"]["FilterString"];
|
|
54
55
|
};
|
|
56
|
+
unitCost?: import("./schemas.cjs").components["schemas"]["FeatureUnitCost"];
|
|
55
57
|
readonly id: string;
|
|
56
58
|
} | undefined>;
|
|
57
59
|
/**
|
|
@@ -75,6 +77,7 @@ export declare class Features {
|
|
|
75
77
|
advancedMeterGroupByFilters?: {
|
|
76
78
|
[key: string]: import("./schemas.cjs").components["schemas"]["FilterString"];
|
|
77
79
|
};
|
|
80
|
+
unitCost?: import("./schemas.cjs").components["schemas"]["FeatureUnitCost"];
|
|
78
81
|
readonly id: string;
|
|
79
82
|
}[]>;
|
|
80
83
|
/**
|
|
@@ -1011,6 +1011,29 @@ export interface paths {
|
|
|
1011
1011
|
patch?: never;
|
|
1012
1012
|
trace?: never;
|
|
1013
1013
|
};
|
|
1014
|
+
'/api/v1/features/{featureId}/cost': {
|
|
1015
|
+
parameters: {
|
|
1016
|
+
query?: never;
|
|
1017
|
+
header?: never;
|
|
1018
|
+
path?: never;
|
|
1019
|
+
cookie?: never;
|
|
1020
|
+
};
|
|
1021
|
+
/**
|
|
1022
|
+
* Query feature cost
|
|
1023
|
+
* @description Query the cost of a feature based on its unit cost configuration and underlying meter usage.
|
|
1024
|
+
* For features with manual unit cost, the cost is usage × fixed amount.
|
|
1025
|
+
* For features with LLM unit cost, the cost is resolved per row from the LLM cost database.
|
|
1026
|
+
* The feature must have a meter and unit cost configured.
|
|
1027
|
+
*/
|
|
1028
|
+
get: operations['queryFeatureCost'];
|
|
1029
|
+
put?: never;
|
|
1030
|
+
post?: never;
|
|
1031
|
+
delete?: never;
|
|
1032
|
+
options?: never;
|
|
1033
|
+
head?: never;
|
|
1034
|
+
patch?: never;
|
|
1035
|
+
trace?: never;
|
|
1036
|
+
};
|
|
1014
1037
|
'/api/v1/grants': {
|
|
1015
1038
|
parameters: {
|
|
1016
1039
|
query?: never;
|
|
@@ -5988,12 +6011,71 @@ export interface components {
|
|
|
5988
6011
|
advancedMeterGroupByFilters?: {
|
|
5989
6012
|
[key: string]: components['schemas']['FilterString'];
|
|
5990
6013
|
};
|
|
6014
|
+
/**
|
|
6015
|
+
* Unit cost
|
|
6016
|
+
* @description Optional per-unit cost configuration.
|
|
6017
|
+
* Use "manual" for a fixed per-unit cost, or "llm" to look up cost
|
|
6018
|
+
* from the LLM cost database based on meter group-by properties.
|
|
6019
|
+
*/
|
|
6020
|
+
unitCost?: components['schemas']['FeatureUnitCost'];
|
|
5991
6021
|
/**
|
|
5992
6022
|
* @description Readonly unique ULID identifier.
|
|
5993
6023
|
* @example 01ARZ3NDEKTSV4RRFFQ69G5FAV
|
|
5994
6024
|
*/
|
|
5995
6025
|
readonly id: string;
|
|
5996
6026
|
};
|
|
6027
|
+
/** @description Result of a feature cost query. */
|
|
6028
|
+
FeatureCostQueryResult: {
|
|
6029
|
+
/**
|
|
6030
|
+
* Format: date-time
|
|
6031
|
+
* @description Start of the queried period.
|
|
6032
|
+
* @example 2023-01-01T01:01:01.001Z
|
|
6033
|
+
*/
|
|
6034
|
+
from?: Date;
|
|
6035
|
+
/**
|
|
6036
|
+
* Format: date-time
|
|
6037
|
+
* @description End of the queried period.
|
|
6038
|
+
* @example 2023-01-01T01:01:01.001Z
|
|
6039
|
+
*/
|
|
6040
|
+
to?: Date;
|
|
6041
|
+
/** @description The window size that the cost is aggregated. */
|
|
6042
|
+
windowSize?: components['schemas']['WindowSize'];
|
|
6043
|
+
/** @description The currency code of the cost amounts. */
|
|
6044
|
+
currency: components['schemas']['CurrencyCode'];
|
|
6045
|
+
/** @description The cost data rows. */
|
|
6046
|
+
data: components['schemas']['FeatureCostQueryRow'][];
|
|
6047
|
+
};
|
|
6048
|
+
/** @description A row in the result of a feature cost query. */
|
|
6049
|
+
FeatureCostQueryRow: {
|
|
6050
|
+
/** @description The metered usage value for the period. */
|
|
6051
|
+
usage: components['schemas']['Numeric'];
|
|
6052
|
+
/** @description The computed cost amount (usage × unit cost). Null when pricing is not available for the group-by combination. */
|
|
6053
|
+
cost: (string & components['schemas']['Numeric']) | null;
|
|
6054
|
+
/** @description The currency code of the cost amount. */
|
|
6055
|
+
currency: components['schemas']['CurrencyCode'];
|
|
6056
|
+
/** @description Detail message when cost amount is null, explaining why the cost could not be resolved. */
|
|
6057
|
+
detail?: string;
|
|
6058
|
+
/**
|
|
6059
|
+
* Format: date-time
|
|
6060
|
+
* @description The start of the window the value is aggregated over.
|
|
6061
|
+
* @example 2023-01-01T01:01:01.001Z
|
|
6062
|
+
*/
|
|
6063
|
+
windowStart: Date;
|
|
6064
|
+
/**
|
|
6065
|
+
* Format: date-time
|
|
6066
|
+
* @description The end of the window the value is aggregated over.
|
|
6067
|
+
* @example 2023-01-01T01:01:01.001Z
|
|
6068
|
+
*/
|
|
6069
|
+
windowEnd: Date;
|
|
6070
|
+
/** @description The subject the value is aggregated over. */
|
|
6071
|
+
subject?: string;
|
|
6072
|
+
/** @description The customer ID the value is aggregated over. */
|
|
6073
|
+
customerId?: string;
|
|
6074
|
+
/** @description The group by values the value is aggregated over. */
|
|
6075
|
+
groupBy?: {
|
|
6076
|
+
[key: string]: string | null;
|
|
6077
|
+
};
|
|
6078
|
+
};
|
|
5997
6079
|
/**
|
|
5998
6080
|
* @description Represents a feature that can be enabled or disabled for a plan.
|
|
5999
6081
|
* Used both for product catalog and entitlements.
|
|
@@ -6055,6 +6137,112 @@ export interface components {
|
|
|
6055
6137
|
advancedMeterGroupByFilters?: {
|
|
6056
6138
|
[key: string]: components['schemas']['FilterString'];
|
|
6057
6139
|
};
|
|
6140
|
+
/**
|
|
6141
|
+
* Unit cost
|
|
6142
|
+
* @description Optional per-unit cost configuration.
|
|
6143
|
+
* Use "manual" for a fixed per-unit cost, or "llm" to look up cost
|
|
6144
|
+
* from the LLM cost database based on meter group-by properties.
|
|
6145
|
+
*/
|
|
6146
|
+
unitCost?: components['schemas']['FeatureUnitCost'];
|
|
6147
|
+
};
|
|
6148
|
+
/**
|
|
6149
|
+
* @description LLM cost lookup configuration.
|
|
6150
|
+
* Maps meter group-by dimensions to LLM cost database fields.
|
|
6151
|
+
*/
|
|
6152
|
+
FeatureLLMUnitCost: {
|
|
6153
|
+
/**
|
|
6154
|
+
* @description discriminator enum property added by openapi-typescript
|
|
6155
|
+
* @enum {string}
|
|
6156
|
+
*/
|
|
6157
|
+
type: 'llm';
|
|
6158
|
+
/**
|
|
6159
|
+
* Provider property
|
|
6160
|
+
* @description Meter group-by property that holds the LLM provider.
|
|
6161
|
+
* Use this when the meter has a group-by dimension for provider.
|
|
6162
|
+
* Mutually exclusive with `provider`.
|
|
6163
|
+
*/
|
|
6164
|
+
providerProperty?: string;
|
|
6165
|
+
/**
|
|
6166
|
+
* Provider
|
|
6167
|
+
* @description Static LLM provider value (e.g., "openai", "anthropic").
|
|
6168
|
+
* Use this when the feature tracks a single provider.
|
|
6169
|
+
* Mutually exclusive with `providerProperty`.
|
|
6170
|
+
*/
|
|
6171
|
+
provider?: string;
|
|
6172
|
+
/**
|
|
6173
|
+
* Model property
|
|
6174
|
+
* @description Meter group-by property that holds the model ID.
|
|
6175
|
+
* Use this when the meter has a group-by dimension for model.
|
|
6176
|
+
* Mutually exclusive with `model`.
|
|
6177
|
+
*/
|
|
6178
|
+
modelProperty?: string;
|
|
6179
|
+
/**
|
|
6180
|
+
* Model
|
|
6181
|
+
* @description Static model ID value (e.g., "gpt-4", "claude-3-5-sonnet").
|
|
6182
|
+
* Use this when the feature tracks a single model.
|
|
6183
|
+
* Mutually exclusive with `modelProperty`.
|
|
6184
|
+
*/
|
|
6185
|
+
model?: string;
|
|
6186
|
+
/**
|
|
6187
|
+
* Token type property
|
|
6188
|
+
* @description Meter group-by property that holds the token type.
|
|
6189
|
+
* Use this when the meter has a group-by dimension for token type.
|
|
6190
|
+
* Mutually exclusive with `tokenType`.
|
|
6191
|
+
*/
|
|
6192
|
+
tokenTypeProperty?: string;
|
|
6193
|
+
/**
|
|
6194
|
+
* Token type
|
|
6195
|
+
* @description Static token type value.
|
|
6196
|
+
* Use this when the feature tracks a single token type (e.g., only input tokens).
|
|
6197
|
+
* Expected values: input, output, cache_read, reasoning, cache_write.
|
|
6198
|
+
* Mutually exclusive with `tokenTypeProperty`.
|
|
6199
|
+
*/
|
|
6200
|
+
tokenType?: string;
|
|
6201
|
+
/**
|
|
6202
|
+
* Resolved pricing
|
|
6203
|
+
* @description Resolved per-token pricing from the LLM cost database.
|
|
6204
|
+
* Only populated in responses when the feature's meter group-by filters
|
|
6205
|
+
* specify exact provider and model values.
|
|
6206
|
+
*/
|
|
6207
|
+
readonly pricing?: components['schemas']['FeatureLLMUnitCostPricing'];
|
|
6208
|
+
};
|
|
6209
|
+
/** @description Resolved per-token pricing from the LLM cost database. */
|
|
6210
|
+
FeatureLLMUnitCostPricing: {
|
|
6211
|
+
/**
|
|
6212
|
+
* Input per token
|
|
6213
|
+
* @description Cost per input token in USD.
|
|
6214
|
+
*/
|
|
6215
|
+
inputPerToken: components['schemas']['Numeric'];
|
|
6216
|
+
/**
|
|
6217
|
+
* Output per token
|
|
6218
|
+
* @description Cost per output token in USD.
|
|
6219
|
+
*/
|
|
6220
|
+
outputPerToken: components['schemas']['Numeric'];
|
|
6221
|
+
/**
|
|
6222
|
+
* Cache read per token
|
|
6223
|
+
* @description Cost per cache read token in USD.
|
|
6224
|
+
*/
|
|
6225
|
+
cacheReadPerToken?: components['schemas']['Numeric'];
|
|
6226
|
+
/**
|
|
6227
|
+
* Reasoning per token
|
|
6228
|
+
* @description Cost per reasoning token in USD.
|
|
6229
|
+
*/
|
|
6230
|
+
reasoningPerToken?: components['schemas']['Numeric'];
|
|
6231
|
+
/**
|
|
6232
|
+
* Cache write per token
|
|
6233
|
+
* @description Cost per cache write token in USD.
|
|
6234
|
+
*/
|
|
6235
|
+
cacheWritePerToken?: components['schemas']['Numeric'];
|
|
6236
|
+
};
|
|
6237
|
+
/** @description A fixed per-unit cost amount. */
|
|
6238
|
+
FeatureManualUnitCost: {
|
|
6239
|
+
/**
|
|
6240
|
+
* @description discriminator enum property added by openapi-typescript
|
|
6241
|
+
* @enum {string}
|
|
6242
|
+
*/
|
|
6243
|
+
type: 'manual';
|
|
6244
|
+
/** @description Fixed per-unit cost amount in USD. */
|
|
6245
|
+
amount: components['schemas']['Numeric'];
|
|
6058
6246
|
};
|
|
6059
6247
|
/** @description Limited representation of a feature resource which includes only its unique identifiers (id, key). */
|
|
6060
6248
|
FeatureMeta: {
|
|
@@ -6097,6 +6285,11 @@ export interface components {
|
|
|
6097
6285
|
/** @description The items in the current page. */
|
|
6098
6286
|
items: components['schemas']['Feature'][];
|
|
6099
6287
|
};
|
|
6288
|
+
/**
|
|
6289
|
+
* @description Per-unit cost configuration for a feature.
|
|
6290
|
+
* Either a fixed manual amount or a dynamic LLM cost lookup.
|
|
6291
|
+
*/
|
|
6292
|
+
FeatureUnitCost: components['schemas']['FeatureManualUnitCost'] | components['schemas']['FeatureLLMUnitCost'];
|
|
6100
6293
|
/** @description A filter for a ID (ULID) field allowing only equality or inclusion. */
|
|
6101
6294
|
FilterIDExact: {
|
|
6102
6295
|
/** @description The field must be in the provided list of values. */
|
|
@@ -12129,10 +12322,16 @@ export type EventDeliveryAttemptResponse = components['schemas']['EventDeliveryA
|
|
|
12129
12322
|
export type ExpirationDuration = components['schemas']['ExpirationDuration'];
|
|
12130
12323
|
export type ExpirationPeriod = components['schemas']['ExpirationPeriod'];
|
|
12131
12324
|
export type Feature = components['schemas']['Feature'];
|
|
12325
|
+
export type FeatureCostQueryResult = components['schemas']['FeatureCostQueryResult'];
|
|
12326
|
+
export type FeatureCostQueryRow = components['schemas']['FeatureCostQueryRow'];
|
|
12132
12327
|
export type FeatureCreateInputs = components['schemas']['FeatureCreateInputs'];
|
|
12328
|
+
export type FeatureLlmUnitCost = components['schemas']['FeatureLLMUnitCost'];
|
|
12329
|
+
export type FeatureLlmUnitCostPricing = components['schemas']['FeatureLLMUnitCostPricing'];
|
|
12330
|
+
export type FeatureManualUnitCost = components['schemas']['FeatureManualUnitCost'];
|
|
12133
12331
|
export type FeatureMeta = components['schemas']['FeatureMeta'];
|
|
12134
12332
|
export type FeatureOrderBy = components['schemas']['FeatureOrderBy'];
|
|
12135
12333
|
export type FeaturePaginatedResponse = components['schemas']['FeaturePaginatedResponse'];
|
|
12334
|
+
export type FeatureUnitCost = components['schemas']['FeatureUnitCost'];
|
|
12136
12335
|
export type FilterIdExact = components['schemas']['FilterIDExact'];
|
|
12137
12336
|
export type FilterString = components['schemas']['FilterString'];
|
|
12138
12337
|
export type FilterTime = components['schemas']['FilterTime'];
|
|
@@ -18418,6 +18617,168 @@ export interface operations {
|
|
|
18418
18617
|
};
|
|
18419
18618
|
};
|
|
18420
18619
|
};
|
|
18620
|
+
queryFeatureCost: {
|
|
18621
|
+
parameters: {
|
|
18622
|
+
query?: {
|
|
18623
|
+
/**
|
|
18624
|
+
* @description Client ID
|
|
18625
|
+
* Useful to track progress of a query.
|
|
18626
|
+
*/
|
|
18627
|
+
clientId?: components['parameters']['MeterQuery.clientId'];
|
|
18628
|
+
/**
|
|
18629
|
+
* @description Start date-time in RFC 3339 format.
|
|
18630
|
+
*
|
|
18631
|
+
* Inclusive.
|
|
18632
|
+
*
|
|
18633
|
+
* For example: ?from=2025-01-01T00%3A00%3A00.000Z
|
|
18634
|
+
*/
|
|
18635
|
+
from?: components['parameters']['MeterQuery.from'];
|
|
18636
|
+
/**
|
|
18637
|
+
* @description End date-time in RFC 3339 format.
|
|
18638
|
+
*
|
|
18639
|
+
* Inclusive.
|
|
18640
|
+
*
|
|
18641
|
+
* For example: ?to=2025-02-01T00%3A00%3A00.000Z
|
|
18642
|
+
*/
|
|
18643
|
+
to?: components['parameters']['MeterQuery.to'];
|
|
18644
|
+
/**
|
|
18645
|
+
* @description If not specified, a single usage aggregate will be returned for the entirety of the specified period for each subject and group.
|
|
18646
|
+
*
|
|
18647
|
+
* For example: ?windowSize=DAY
|
|
18648
|
+
*/
|
|
18649
|
+
windowSize?: components['parameters']['MeterQuery.windowSize'];
|
|
18650
|
+
/**
|
|
18651
|
+
* @description The value is the name of the time zone as defined in the IANA Time Zone Database (http://www.iana.org/time-zones).
|
|
18652
|
+
* If not specified, the UTC timezone will be used.
|
|
18653
|
+
*
|
|
18654
|
+
* For example: ?windowTimeZone=UTC
|
|
18655
|
+
*/
|
|
18656
|
+
windowTimeZone?: components['parameters']['MeterQuery.windowTimeZone'];
|
|
18657
|
+
/**
|
|
18658
|
+
* @description Filtering by multiple subjects.
|
|
18659
|
+
*
|
|
18660
|
+
* For example: ?subject=subject-1&subject=subject-2
|
|
18661
|
+
*/
|
|
18662
|
+
subject?: components['parameters']['MeterQuery.subject'];
|
|
18663
|
+
/**
|
|
18664
|
+
* @description Filtering by multiple customers.
|
|
18665
|
+
*
|
|
18666
|
+
* For example: ?filterCustomerId=customer-1&filterCustomerId=customer-2
|
|
18667
|
+
*/
|
|
18668
|
+
filterCustomerId?: components['parameters']['MeterQuery.filterCustomerId'];
|
|
18669
|
+
/**
|
|
18670
|
+
* @deprecated
|
|
18671
|
+
* @description Simple filter for group bys with exact match.
|
|
18672
|
+
*
|
|
18673
|
+
* For example: ?filterGroupBy[vendor]=openai&filterGroupBy[model]=gpt-4-turbo
|
|
18674
|
+
*
|
|
18675
|
+
* ⚠️ __Deprecated__: Use `advancedMeterGroupByFilters` instead
|
|
18676
|
+
*/
|
|
18677
|
+
filterGroupBy?: components['parameters']['MeterQuery.filterGroupBy'];
|
|
18678
|
+
/**
|
|
18679
|
+
* @description Optional advanced meter group by filters.
|
|
18680
|
+
* You can use this to filter for values of the meter groupBy fields.
|
|
18681
|
+
*/
|
|
18682
|
+
advancedMeterGroupByFilters?: components['parameters']['MeterQuery.advancedMeterGroupByFilters'];
|
|
18683
|
+
/**
|
|
18684
|
+
* @description If not specified a single aggregate will be returned for each subject and time window.
|
|
18685
|
+
* `subject` is a reserved group by value.
|
|
18686
|
+
*
|
|
18687
|
+
* For example: ?groupBy=subject&groupBy=model
|
|
18688
|
+
*/
|
|
18689
|
+
groupBy?: components['parameters']['MeterQuery.groupBy'];
|
|
18690
|
+
};
|
|
18691
|
+
header?: never;
|
|
18692
|
+
path: {
|
|
18693
|
+
featureId: string;
|
|
18694
|
+
};
|
|
18695
|
+
cookie?: never;
|
|
18696
|
+
};
|
|
18697
|
+
requestBody?: never;
|
|
18698
|
+
responses: {
|
|
18699
|
+
/** @description The request has succeeded. */
|
|
18700
|
+
200: {
|
|
18701
|
+
headers: {
|
|
18702
|
+
[name: string]: unknown;
|
|
18703
|
+
};
|
|
18704
|
+
content: {
|
|
18705
|
+
'application/json': components['schemas']['FeatureCostQueryResult'];
|
|
18706
|
+
};
|
|
18707
|
+
};
|
|
18708
|
+
/** @description The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing). */
|
|
18709
|
+
400: {
|
|
18710
|
+
headers: {
|
|
18711
|
+
[name: string]: unknown;
|
|
18712
|
+
};
|
|
18713
|
+
content: {
|
|
18714
|
+
'application/problem+json': components['schemas']['BadRequestProblemResponse'];
|
|
18715
|
+
};
|
|
18716
|
+
};
|
|
18717
|
+
/** @description The request has not been applied because it lacks valid authentication credentials for the target resource. */
|
|
18718
|
+
401: {
|
|
18719
|
+
headers: {
|
|
18720
|
+
[name: string]: unknown;
|
|
18721
|
+
};
|
|
18722
|
+
content: {
|
|
18723
|
+
'application/problem+json': components['schemas']['UnauthorizedProblemResponse'];
|
|
18724
|
+
};
|
|
18725
|
+
};
|
|
18726
|
+
/** @description The server understood the request but refuses to authorize it. */
|
|
18727
|
+
403: {
|
|
18728
|
+
headers: {
|
|
18729
|
+
[name: string]: unknown;
|
|
18730
|
+
};
|
|
18731
|
+
content: {
|
|
18732
|
+
'application/problem+json': components['schemas']['ForbiddenProblemResponse'];
|
|
18733
|
+
};
|
|
18734
|
+
};
|
|
18735
|
+
/** @description The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. */
|
|
18736
|
+
404: {
|
|
18737
|
+
headers: {
|
|
18738
|
+
[name: string]: unknown;
|
|
18739
|
+
};
|
|
18740
|
+
content: {
|
|
18741
|
+
'application/problem+json': components['schemas']['NotFoundProblemResponse'];
|
|
18742
|
+
};
|
|
18743
|
+
};
|
|
18744
|
+
/** @description One or more conditions given in the request header fields evaluated to false when tested on the server. */
|
|
18745
|
+
412: {
|
|
18746
|
+
headers: {
|
|
18747
|
+
[name: string]: unknown;
|
|
18748
|
+
};
|
|
18749
|
+
content: {
|
|
18750
|
+
'application/problem+json': components['schemas']['PreconditionFailedProblemResponse'];
|
|
18751
|
+
};
|
|
18752
|
+
};
|
|
18753
|
+
/** @description The server encountered an unexpected condition that prevented it from fulfilling the request. */
|
|
18754
|
+
500: {
|
|
18755
|
+
headers: {
|
|
18756
|
+
[name: string]: unknown;
|
|
18757
|
+
};
|
|
18758
|
+
content: {
|
|
18759
|
+
'application/problem+json': components['schemas']['InternalServerErrorProblemResponse'];
|
|
18760
|
+
};
|
|
18761
|
+
};
|
|
18762
|
+
/** @description The server is currently unable to handle the request due to a temporary overload or scheduled maintenance, which will likely be alleviated after some delay. */
|
|
18763
|
+
503: {
|
|
18764
|
+
headers: {
|
|
18765
|
+
[name: string]: unknown;
|
|
18766
|
+
};
|
|
18767
|
+
content: {
|
|
18768
|
+
'application/problem+json': components['schemas']['ServiceUnavailableProblemResponse'];
|
|
18769
|
+
};
|
|
18770
|
+
};
|
|
18771
|
+
/** @description An unexpected error response. */
|
|
18772
|
+
default: {
|
|
18773
|
+
headers: {
|
|
18774
|
+
[name: string]: unknown;
|
|
18775
|
+
};
|
|
18776
|
+
content: {
|
|
18777
|
+
'application/problem+json': components['schemas']['UnexpectedProblemResponse'];
|
|
18778
|
+
};
|
|
18779
|
+
};
|
|
18780
|
+
};
|
|
18781
|
+
};
|
|
18421
18782
|
listGrants: {
|
|
18422
18783
|
parameters: {
|
|
18423
18784
|
query?: {
|