@zuplo/runtime 6.43.13 → 6.43.14
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 +26 -26
- package/out/types/index.d.ts +38 -1
- package/package.json +1 -1
package/out/types/index.d.ts
CHANGED
|
@@ -713,6 +713,10 @@ declare interface AWSLoggingOptions {
|
|
|
713
713
|
secretAccessKey: string;
|
|
714
714
|
logGroupName: string;
|
|
715
715
|
logStreamName: string;
|
|
716
|
+
/**
|
|
717
|
+
* Any custom log fields to include in each log entry.
|
|
718
|
+
*/
|
|
719
|
+
fields?: CustomLogFields;
|
|
716
720
|
}
|
|
717
721
|
|
|
718
722
|
export declare class AWSLoggingPlugin extends LogPlugin {
|
|
@@ -1580,6 +1584,8 @@ export declare interface CurityPhantomTokenInboundPolicyOptions {
|
|
|
1580
1584
|
cacheDurationSeconds?: number;
|
|
1581
1585
|
}
|
|
1582
1586
|
|
|
1587
|
+
declare type CustomLogFields = Record<string, number | string | boolean>;
|
|
1588
|
+
|
|
1583
1589
|
/**
|
|
1584
1590
|
* @public
|
|
1585
1591
|
*/
|
|
@@ -1597,6 +1603,18 @@ export declare type CustomRateLimitFunction = RateLimitFunction<CustomRateLimitD
|
|
|
1597
1603
|
declare interface DataDogLoggingOptions {
|
|
1598
1604
|
url?: string;
|
|
1599
1605
|
apiKey: string;
|
|
1606
|
+
/**
|
|
1607
|
+
* The source of the logs. This is typically the name of the application or service.
|
|
1608
|
+
*/
|
|
1609
|
+
source?: string;
|
|
1610
|
+
/**
|
|
1611
|
+
* Any custom log fields to include in each log entry.
|
|
1612
|
+
*/
|
|
1613
|
+
fields?: CustomLogFields;
|
|
1614
|
+
/**
|
|
1615
|
+
* Any custom tags to include in each log entry.
|
|
1616
|
+
*/
|
|
1617
|
+
tags?: Record<string, unknown>;
|
|
1600
1618
|
}
|
|
1601
1619
|
|
|
1602
1620
|
export declare class DataDogLoggingPlugin extends LogPlugin {
|
|
@@ -1640,6 +1658,10 @@ export declare interface DispatchRequestLoggerEntries<T> {
|
|
|
1640
1658
|
declare interface DynaTraceLoggingOptions {
|
|
1641
1659
|
url: string;
|
|
1642
1660
|
apiToken: string;
|
|
1661
|
+
/**
|
|
1662
|
+
* Any custom log fields to include in each log entry.
|
|
1663
|
+
*/
|
|
1664
|
+
fields?: CustomLogFields;
|
|
1643
1665
|
}
|
|
1644
1666
|
|
|
1645
1667
|
export declare class DynaTraceLoggingPlugin extends LogPlugin {
|
|
@@ -1817,6 +1839,10 @@ export declare function getRawOperationDataIdentifierName(oasFileName: string, p
|
|
|
1817
1839
|
declare interface GoogleCloudLoggingOptions {
|
|
1818
1840
|
serviceAccountJson: string;
|
|
1819
1841
|
logName: string;
|
|
1842
|
+
/**
|
|
1843
|
+
* Any custom log fields to include in each log entry.
|
|
1844
|
+
*/
|
|
1845
|
+
fields?: CustomLogFields;
|
|
1820
1846
|
}
|
|
1821
1847
|
|
|
1822
1848
|
export declare class GoogleCloudLoggingPlugin extends LogPlugin {
|
|
@@ -3200,6 +3226,10 @@ declare interface LokiLoggingPluginOptions {
|
|
|
3200
3226
|
* The password to authenticate with the Loki server.
|
|
3201
3227
|
*/
|
|
3202
3228
|
password: string;
|
|
3229
|
+
/**
|
|
3230
|
+
* Any custom log fields to include in each log entry.
|
|
3231
|
+
*/
|
|
3232
|
+
fields?: CustomLogFields;
|
|
3203
3233
|
}
|
|
3204
3234
|
|
|
3205
3235
|
/**
|
|
@@ -5371,6 +5401,10 @@ declare interface SumoLogicLoggingOptions {
|
|
|
5371
5401
|
url: string;
|
|
5372
5402
|
name?: string;
|
|
5373
5403
|
category?: string;
|
|
5404
|
+
/**
|
|
5405
|
+
* Any custom log fields to include in each log entry.
|
|
5406
|
+
*/
|
|
5407
|
+
fields?: CustomLogFields;
|
|
5374
5408
|
}
|
|
5375
5409
|
|
|
5376
5410
|
export declare class SumoLogicLoggingPlugin extends LogPlugin {
|
|
@@ -5830,7 +5864,10 @@ declare interface VMWareLogInsightLoggingOptions {
|
|
|
5830
5864
|
* The unique agent identifier of the logger.
|
|
5831
5865
|
*/
|
|
5832
5866
|
agentId?: string;
|
|
5833
|
-
|
|
5867
|
+
/**
|
|
5868
|
+
* Any custom log fields to include in each log entry.
|
|
5869
|
+
*/
|
|
5870
|
+
fields?: CustomLogFields;
|
|
5834
5871
|
onMessageSending?: (event: LogInsightLogEntry) => LogInsightLogEntry;
|
|
5835
5872
|
}
|
|
5836
5873
|
|