@schemastore/traefik-v2 0.0.6 → 0.0.7
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 +22 -6
- package/index.d.ts +46 -46
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,12 +1,28 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
1
|
+
# Type definitions for traefik-v2
|
|
2
|
+
|
|
3
|
+
## Installation
|
|
4
|
+
|
|
5
|
+
```
|
|
6
|
+
npm i @schemastore/traefik-v2
|
|
7
|
+
yarn add @schemastore/traefik-v2
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Summary
|
|
3
11
|
|
|
4
|
-
# Summary
|
|
5
12
|
This package contains type definitions for traefik-v2.
|
|
6
13
|
|
|
7
|
-
##
|
|
8
|
-
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
import * as traefik_v2 from '@schemastore/traefik-v2';
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Note
|
|
21
|
+
|
|
22
|
+
The definitions were auto-generated by [schemastore-updater](https://github.com/ffflorian/schemastore-updater) using [`json-schema-to-typescript`](https://www.npmjs.com/package/json-schema-to-typescript).
|
|
9
23
|
|
|
10
24
|
## Additional Details
|
|
11
|
-
|
|
25
|
+
|
|
26
|
+
* [Schema source](https://github.com/SchemaStore/schemastore/tree/master/src/schemas/json/traefik-v2)
|
|
27
|
+
* Last updated: Sat, Jul 19, 2025, 17:01:26 GMT
|
|
12
28
|
* Dependencies: none
|
package/index.d.ts
CHANGED
|
@@ -13,14 +13,14 @@ export interface TraefikV2 {
|
|
|
13
13
|
statusCodes?: string[];
|
|
14
14
|
retryAttempts?: boolean;
|
|
15
15
|
minDuration?: string;
|
|
16
|
-
[k: string]: unknown;
|
|
16
|
+
[k: string]: unknown | undefined;
|
|
17
17
|
};
|
|
18
18
|
fields?: {
|
|
19
19
|
defaultMode?: string;
|
|
20
20
|
names?: {
|
|
21
21
|
/**
|
|
22
22
|
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
23
|
-
* via the `patternProperty` "[a-zA-Z0-9-_]
|
|
23
|
+
* via the `patternProperty` "[a-zA-Z0-9-_]*".
|
|
24
24
|
*/
|
|
25
25
|
[k: string]: string;
|
|
26
26
|
};
|
|
@@ -29,13 +29,13 @@ export interface TraefikV2 {
|
|
|
29
29
|
names?: {
|
|
30
30
|
/**
|
|
31
31
|
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
32
|
-
* via the `patternProperty` "[a-zA-Z0-9-_]
|
|
32
|
+
* via the `patternProperty` "[a-zA-Z0-9-_]*".
|
|
33
33
|
*/
|
|
34
34
|
[k: string]: string;
|
|
35
35
|
};
|
|
36
|
-
[k: string]: unknown;
|
|
36
|
+
[k: string]: unknown | undefined;
|
|
37
37
|
};
|
|
38
|
-
[k: string]: unknown;
|
|
38
|
+
[k: string]: unknown | undefined;
|
|
39
39
|
};
|
|
40
40
|
bufferingSize?: number;
|
|
41
41
|
};
|
|
@@ -47,7 +47,7 @@ export interface TraefikV2 {
|
|
|
47
47
|
certificatesResolvers?: {
|
|
48
48
|
/**
|
|
49
49
|
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
50
|
-
* via the `patternProperty` "[a-zA-Z0-9-_]
|
|
50
|
+
* via the `patternProperty` "[a-zA-Z0-9-_]*".
|
|
51
51
|
*/
|
|
52
52
|
[k: string]: {
|
|
53
53
|
acme?: {
|
|
@@ -60,30 +60,30 @@ export interface TraefikV2 {
|
|
|
60
60
|
eab?: {
|
|
61
61
|
kid?: string;
|
|
62
62
|
hmacEncoded?: string;
|
|
63
|
-
[k: string]: unknown;
|
|
63
|
+
[k: string]: unknown | undefined;
|
|
64
64
|
};
|
|
65
65
|
dnsChallenge?: {
|
|
66
66
|
provider?: string;
|
|
67
67
|
delayBeforeCheck?: string;
|
|
68
68
|
resolvers?: string[];
|
|
69
69
|
disablePropagationCheck?: boolean;
|
|
70
|
-
[k: string]: unknown;
|
|
70
|
+
[k: string]: unknown | undefined;
|
|
71
71
|
};
|
|
72
72
|
httpChallenge?: {
|
|
73
73
|
entryPoint?: string;
|
|
74
|
-
[k: string]: unknown;
|
|
74
|
+
[k: string]: unknown | undefined;
|
|
75
75
|
};
|
|
76
76
|
tlsChallenge?: {
|
|
77
|
-
[k: string]: unknown;
|
|
77
|
+
[k: string]: unknown | undefined;
|
|
78
78
|
};
|
|
79
|
-
[k: string]: unknown;
|
|
79
|
+
[k: string]: unknown | undefined;
|
|
80
80
|
};
|
|
81
81
|
};
|
|
82
82
|
};
|
|
83
83
|
entryPoints?: {
|
|
84
84
|
/**
|
|
85
85
|
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
86
|
-
* via the `patternProperty` "[a-zA-Z0-9-_]
|
|
86
|
+
* via the `patternProperty` "[a-zA-Z0-9-_]*".
|
|
87
87
|
*/
|
|
88
88
|
[k: string]: {
|
|
89
89
|
address?: string;
|
|
@@ -91,25 +91,25 @@ export interface TraefikV2 {
|
|
|
91
91
|
lifeCycle?: {
|
|
92
92
|
requestAcceptGraceTimeout?: string;
|
|
93
93
|
graceTimeOut?: string;
|
|
94
|
-
[k: string]: unknown;
|
|
94
|
+
[k: string]: unknown | undefined;
|
|
95
95
|
};
|
|
96
96
|
respondingTimeouts?: {
|
|
97
97
|
readTimeout?: string;
|
|
98
98
|
writeTimeout?: string;
|
|
99
99
|
idleTimeout?: string;
|
|
100
|
-
[k: string]: unknown;
|
|
100
|
+
[k: string]: unknown | undefined;
|
|
101
101
|
};
|
|
102
|
-
[k: string]: unknown;
|
|
102
|
+
[k: string]: unknown | undefined;
|
|
103
103
|
};
|
|
104
104
|
proxyProtocol?: {
|
|
105
105
|
insecure?: boolean;
|
|
106
106
|
trustedIPs?: string[];
|
|
107
|
-
[k: string]: unknown;
|
|
107
|
+
[k: string]: unknown | undefined;
|
|
108
108
|
};
|
|
109
109
|
forwardedHeaders?: {
|
|
110
110
|
insecure?: boolean;
|
|
111
111
|
trustedIPs?: string[];
|
|
112
|
-
[k: string]: unknown;
|
|
112
|
+
[k: string]: unknown | undefined;
|
|
113
113
|
};
|
|
114
114
|
http?: {
|
|
115
115
|
redirections?: {
|
|
@@ -118,9 +118,9 @@ export interface TraefikV2 {
|
|
|
118
118
|
scheme?: string;
|
|
119
119
|
permanent?: boolean;
|
|
120
120
|
priority?: number;
|
|
121
|
-
[k: string]: unknown;
|
|
121
|
+
[k: string]: unknown | undefined;
|
|
122
122
|
};
|
|
123
|
-
[k: string]: unknown;
|
|
123
|
+
[k: string]: unknown | undefined;
|
|
124
124
|
};
|
|
125
125
|
middlewares?: string[];
|
|
126
126
|
tls?: {
|
|
@@ -129,23 +129,23 @@ export interface TraefikV2 {
|
|
|
129
129
|
domains?: {
|
|
130
130
|
main?: string;
|
|
131
131
|
sans?: string[];
|
|
132
|
-
[k: string]: unknown;
|
|
132
|
+
[k: string]: unknown | undefined;
|
|
133
133
|
}[];
|
|
134
|
-
[k: string]: unknown;
|
|
134
|
+
[k: string]: unknown | undefined;
|
|
135
135
|
};
|
|
136
|
-
[k: string]: unknown;
|
|
136
|
+
[k: string]: unknown | undefined;
|
|
137
137
|
};
|
|
138
138
|
http2?: {
|
|
139
139
|
maxConcurrentStreams?: number;
|
|
140
|
-
[k: string]: unknown;
|
|
140
|
+
[k: string]: unknown | undefined;
|
|
141
141
|
};
|
|
142
142
|
http3?: {
|
|
143
143
|
advertisedPort?: number;
|
|
144
|
-
[k: string]: unknown;
|
|
144
|
+
[k: string]: unknown | undefined;
|
|
145
145
|
};
|
|
146
146
|
udp?: {
|
|
147
147
|
timeout?: string;
|
|
148
|
-
[k: string]: unknown;
|
|
148
|
+
[k: string]: unknown | undefined;
|
|
149
149
|
};
|
|
150
150
|
};
|
|
151
151
|
};
|
|
@@ -156,7 +156,7 @@ export interface TraefikV2 {
|
|
|
156
156
|
plugins?: {
|
|
157
157
|
/**
|
|
158
158
|
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
159
|
-
* via the `patternProperty` "[a-zA-Z0-9-_]
|
|
159
|
+
* via the `patternProperty` "[a-zA-Z0-9-_]*".
|
|
160
160
|
*/
|
|
161
161
|
[k: string]: {
|
|
162
162
|
moduleName?: string;
|
|
@@ -166,7 +166,7 @@ export interface TraefikV2 {
|
|
|
166
166
|
localPlugins?: {
|
|
167
167
|
/**
|
|
168
168
|
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
169
|
-
* via the `patternProperty` "[a-zA-Z0-9-_]
|
|
169
|
+
* via the `patternProperty` "[a-zA-Z0-9-_]*".
|
|
170
170
|
*/
|
|
171
171
|
[k: string]: {
|
|
172
172
|
moduleName?: string;
|
|
@@ -188,7 +188,7 @@ export interface TraefikV2 {
|
|
|
188
188
|
ca?: string;
|
|
189
189
|
cert?: string;
|
|
190
190
|
key?: string;
|
|
191
|
-
[k: string]: unknown;
|
|
191
|
+
[k: string]: unknown | undefined;
|
|
192
192
|
};
|
|
193
193
|
};
|
|
194
194
|
log?: {
|
|
@@ -233,7 +233,7 @@ export interface TraefikV2 {
|
|
|
233
233
|
addRoutersLabels?: boolean;
|
|
234
234
|
addServicesLabels?: boolean;
|
|
235
235
|
additionalLabels?: {
|
|
236
|
-
[k: string]: unknown;
|
|
236
|
+
[k: string]: unknown | undefined;
|
|
237
237
|
};
|
|
238
238
|
};
|
|
239
239
|
influxDB2?: {
|
|
@@ -246,7 +246,7 @@ export interface TraefikV2 {
|
|
|
246
246
|
addRoutersLabels?: boolean;
|
|
247
247
|
addServicesLabels?: boolean;
|
|
248
248
|
additionalLabels?: {
|
|
249
|
-
[k: string]: unknown;
|
|
249
|
+
[k: string]: unknown | undefined;
|
|
250
250
|
};
|
|
251
251
|
};
|
|
252
252
|
};
|
|
@@ -395,7 +395,7 @@ export interface TraefikV2 {
|
|
|
395
395
|
password?: string;
|
|
396
396
|
};
|
|
397
397
|
};
|
|
398
|
-
[k: string]: unknown;
|
|
398
|
+
[k: string]: unknown | undefined;
|
|
399
399
|
};
|
|
400
400
|
nomad?: {
|
|
401
401
|
constraints?: string;
|
|
@@ -422,7 +422,6 @@ export interface TraefikV2 {
|
|
|
422
422
|
ecs?: {
|
|
423
423
|
constraints?: string;
|
|
424
424
|
exposedByDefault?: boolean;
|
|
425
|
-
ecsAnywhere?: boolean;
|
|
426
425
|
refreshSeconds?: number;
|
|
427
426
|
defaultRule?: string;
|
|
428
427
|
clusters?: string[];
|
|
@@ -434,6 +433,8 @@ export interface TraefikV2 {
|
|
|
434
433
|
consul?: {
|
|
435
434
|
rootKey?: string;
|
|
436
435
|
endpoints?: string[];
|
|
436
|
+
username?: string;
|
|
437
|
+
password?: string;
|
|
437
438
|
token?: string;
|
|
438
439
|
namespace?: string;
|
|
439
440
|
namespaces?: string[];
|
|
@@ -450,6 +451,7 @@ export interface TraefikV2 {
|
|
|
450
451
|
endpoints?: string[];
|
|
451
452
|
username?: string;
|
|
452
453
|
password?: string;
|
|
454
|
+
token?: string;
|
|
453
455
|
tls?: {
|
|
454
456
|
ca?: string;
|
|
455
457
|
caOptional?: boolean;
|
|
@@ -463,13 +465,21 @@ export interface TraefikV2 {
|
|
|
463
465
|
endpoints?: string[];
|
|
464
466
|
username?: string;
|
|
465
467
|
password?: string;
|
|
468
|
+
token?: string;
|
|
469
|
+
tls?: {
|
|
470
|
+
ca?: string;
|
|
471
|
+
caOptional?: boolean;
|
|
472
|
+
cert?: string;
|
|
473
|
+
key?: string;
|
|
474
|
+
insecureSkipVerify?: boolean;
|
|
475
|
+
};
|
|
466
476
|
};
|
|
467
477
|
redis?: {
|
|
468
478
|
rootKey?: string;
|
|
469
479
|
endpoints?: string[];
|
|
470
480
|
username?: string;
|
|
471
481
|
password?: string;
|
|
472
|
-
|
|
482
|
+
token?: string;
|
|
473
483
|
tls?: {
|
|
474
484
|
ca?: string;
|
|
475
485
|
caOptional?: boolean;
|
|
@@ -493,13 +503,13 @@ export interface TraefikV2 {
|
|
|
493
503
|
plugin?: {
|
|
494
504
|
/**
|
|
495
505
|
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
496
|
-
* via the `patternProperty` "[a-zA-Z0-9-_]
|
|
506
|
+
* via the `patternProperty` "[a-zA-Z0-9-_]*".
|
|
497
507
|
*/
|
|
498
508
|
[k: string]: {
|
|
499
|
-
[k: string]: unknown;
|
|
509
|
+
[k: string]: unknown | undefined;
|
|
500
510
|
};
|
|
501
511
|
};
|
|
502
|
-
[k: string]: unknown;
|
|
512
|
+
[k: string]: unknown | undefined;
|
|
503
513
|
};
|
|
504
514
|
serversTransport?: {
|
|
505
515
|
insecureSkipVerify?: boolean;
|
|
@@ -538,16 +548,6 @@ export interface TraefikV2 {
|
|
|
538
548
|
datadog?: {
|
|
539
549
|
localAgentHostPort?: string;
|
|
540
550
|
globalTag?: string;
|
|
541
|
-
/**
|
|
542
|
-
* Sets a list of key:value tags on all spans.
|
|
543
|
-
*/
|
|
544
|
-
globalTags?: {
|
|
545
|
-
/**
|
|
546
|
-
* This interface was referenced by `undefined`'s JSON-Schema definition
|
|
547
|
-
* via the `patternProperty` "[a-zA-Z0-9-_]+".
|
|
548
|
-
*/
|
|
549
|
-
[k: string]: string;
|
|
550
|
-
};
|
|
551
551
|
debug?: boolean;
|
|
552
552
|
prioritySampling?: boolean;
|
|
553
553
|
traceIDHeaderName?: string;
|
package/package.json
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"name": "@schemastore/traefik-v2",
|
|
8
8
|
"repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/traefik-v2",
|
|
9
9
|
"scripts": {},
|
|
10
|
-
"
|
|
10
|
+
"typeScriptVersion": "2.2",
|
|
11
11
|
"types": "index.d.ts",
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
}
|
|
12
|
+
"typesPublisherContentHash": "b41713f4b22f4dbbc59848470e9db8b797bfb1a9938798f6de537ebbfd478c7c",
|
|
13
|
+
"version": "0.0.7"
|
|
14
|
+
}
|