@zuplo/runtime 6.67.32 → 6.68.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/out/esm/index.js +1 -1
- package/out/esm/index.js.map +1 -1
- package/out/types/index.d.ts +19 -15
- package/out/types/internal/index.d.ts +4 -2
- package/out/types/mocks/index.d.ts +4 -2
- package/package.json +1 -1
package/out/types/index.d.ts
CHANGED
|
@@ -546,8 +546,10 @@ export declare class AmberfloMeteringPolicy {
|
|
|
546
546
|
): void;
|
|
547
547
|
}
|
|
548
548
|
|
|
549
|
-
declare interface AmberfloMeteringProperties
|
|
550
|
-
|
|
549
|
+
declare interface AmberfloMeteringProperties extends Omit<
|
|
550
|
+
AmberfloMeteringIngestPayload,
|
|
551
|
+
"meterTimeInMillis"
|
|
552
|
+
> {
|
|
551
553
|
customerId: string;
|
|
552
554
|
}
|
|
553
555
|
|
|
@@ -878,9 +880,7 @@ export declare interface AuditLogDataStaxInit {
|
|
|
878
880
|
* DataStax audit log output provider
|
|
879
881
|
* @public
|
|
880
882
|
*/
|
|
881
|
-
export declare class AuditLogDataStaxProvider
|
|
882
|
-
implements AuditLogOutputProvider
|
|
883
|
-
{
|
|
883
|
+
export declare class AuditLogDataStaxProvider implements AuditLogOutputProvider {
|
|
884
884
|
#private;
|
|
885
885
|
constructor(options: AuditLogDataStaxInit);
|
|
886
886
|
writeLogBatch: (entries: AuditLogEntry[]) => Promise<void>;
|
|
@@ -2147,8 +2147,7 @@ declare interface CompatibilityFlags {
|
|
|
2147
2147
|
/**
|
|
2148
2148
|
* @public
|
|
2149
2149
|
*/
|
|
2150
|
-
export declare interface ComplexCustomRateLimitDetails
|
|
2151
|
-
extends CustomRateLimitDetailsBase {
|
|
2150
|
+
export declare interface ComplexCustomRateLimitDetails extends CustomRateLimitDetailsBase {
|
|
2152
2151
|
limits?: Record<string, number>;
|
|
2153
2152
|
}
|
|
2154
2153
|
|
|
@@ -2590,8 +2589,7 @@ declare type CustomLogFields = Record<string, number | string | boolean>;
|
|
|
2590
2589
|
* Custom rate limit details that can override policy options.
|
|
2591
2590
|
* @public
|
|
2592
2591
|
*/
|
|
2593
|
-
export declare interface CustomRateLimitDetails
|
|
2594
|
-
extends CustomRateLimitDetailsBase {
|
|
2592
|
+
export declare interface CustomRateLimitDetails extends CustomRateLimitDetailsBase {
|
|
2595
2593
|
requestsAllowed?: number;
|
|
2596
2594
|
}
|
|
2597
2595
|
|
|
@@ -6881,8 +6879,10 @@ declare interface OpenFGACheck {
|
|
|
6881
6879
|
*/
|
|
6882
6880
|
export declare const OpenIdJwtInboundPolicy: InboundPolicyHandler<OpenIdJwtInboundPolicyInternalOptions>;
|
|
6883
6881
|
|
|
6884
|
-
declare interface OpenIdJwtInboundPolicyInternalOptions
|
|
6885
|
-
|
|
6882
|
+
declare interface OpenIdJwtInboundPolicyInternalOptions extends Omit<
|
|
6883
|
+
OpenIdJwtInboundPolicyOptions,
|
|
6884
|
+
"secret"
|
|
6885
|
+
> {
|
|
6886
6886
|
secret?: string | KeyLike;
|
|
6887
6887
|
}
|
|
6888
6888
|
|
|
@@ -8309,8 +8309,10 @@ export declare class ResponseSentEvent extends Event {
|
|
|
8309
8309
|
/**
|
|
8310
8310
|
* @public
|
|
8311
8311
|
*/
|
|
8312
|
-
export declare interface RouteConfiguration
|
|
8313
|
-
|
|
8312
|
+
export declare interface RouteConfiguration extends Omit<
|
|
8313
|
+
BuildRouteConfiguration,
|
|
8314
|
+
"raw"
|
|
8315
|
+
> {
|
|
8314
8316
|
/**
|
|
8315
8317
|
* @deprecated Please switch to "raw().operationId"
|
|
8316
8318
|
*/
|
|
@@ -9631,8 +9633,10 @@ export declare const ValidateJsonSchemaInbound: InboundPolicyHandler<ValidateJso
|
|
|
9631
9633
|
/**
|
|
9632
9634
|
* @beta
|
|
9633
9635
|
*/
|
|
9634
|
-
declare interface ValidateJsonSchemaInboundInternalOptions
|
|
9635
|
-
|
|
9636
|
+
declare interface ValidateJsonSchemaInboundInternalOptions extends Omit<
|
|
9637
|
+
ValidateJsonSchemaInboundOptions,
|
|
9638
|
+
"validator"
|
|
9639
|
+
> {
|
|
9636
9640
|
/* Excluded from this release type: validator */
|
|
9637
9641
|
}
|
|
9638
9642
|
|
|
@@ -1118,8 +1118,10 @@ export declare type ResponsesDefinition = Record<
|
|
|
1118
1118
|
/**
|
|
1119
1119
|
* @public
|
|
1120
1120
|
*/
|
|
1121
|
-
export declare interface RouteConfiguration
|
|
1122
|
-
|
|
1121
|
+
export declare interface RouteConfiguration extends Omit<
|
|
1122
|
+
BuildRouteConfiguration,
|
|
1123
|
+
"raw"
|
|
1124
|
+
> {
|
|
1123
1125
|
/**
|
|
1124
1126
|
* @deprecated Please switch to "raw().operationId"
|
|
1125
1127
|
*/
|
|
@@ -1544,8 +1544,10 @@ declare type ResponsesDefinition = Record<
|
|
|
1544
1544
|
/**
|
|
1545
1545
|
* @public
|
|
1546
1546
|
*/
|
|
1547
|
-
declare interface RouteConfiguration
|
|
1548
|
-
|
|
1547
|
+
declare interface RouteConfiguration extends Omit<
|
|
1548
|
+
BuildRouteConfiguration,
|
|
1549
|
+
"raw"
|
|
1550
|
+
> {
|
|
1549
1551
|
/**
|
|
1550
1552
|
* @deprecated Please switch to "raw().operationId"
|
|
1551
1553
|
*/
|