@emeryld/rrroutes-openapi 2.4.5 → 2.4.6

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.
@@ -13,7 +13,7 @@ export type SerializableSchema = {
13
13
  enumValues?: string[];
14
14
  };
15
15
  export declare const serializableSchemaSchema: ZodType<SerializableSchema, SerializableSchema>;
16
- export declare const STABILITIES: readonly ["experimental", "beta", "stable", "deprecated"];
16
+ export declare const STABILITIES: readonly ["experimental", "beta", "stable", "deprecated", "unknown"];
17
17
  export declare const endpointSchema: z.ZodObject<{
18
18
  id: z.ZodString;
19
19
  name: z.ZodString;
@@ -43,6 +43,7 @@ export declare const endpointSchema: z.ZodObject<{
43
43
  feed: z.ZodOptional<z.ZodBoolean>;
44
44
  summary: z.ZodOptional<z.ZodString>;
45
45
  stability: z.ZodEnum<{
46
+ unknown: "unknown";
46
47
  deprecated: "deprecated";
47
48
  experimental: "experimental";
48
49
  beta: "beta";
@@ -87,12 +88,14 @@ export declare const endpointFilterSchema: z.ZodObject<{
87
88
  }>>>;
88
89
  path: z.ZodOptional<z.ZodString>;
89
90
  stabilityInclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
91
+ unknown: "unknown";
90
92
  deprecated: "deprecated";
91
93
  experimental: "experimental";
92
94
  beta: "beta";
93
95
  stable: "stable";
94
96
  }>>>;
95
97
  stabilityExclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
98
+ unknown: "unknown";
96
99
  deprecated: "deprecated";
97
100
  experimental: "experimental";
98
101
  beta: "beta";
@@ -129,6 +132,7 @@ export declare const endpointSchemaWithStats: z.ZodObject<{
129
132
  feed: z.ZodOptional<z.ZodBoolean>;
130
133
  summary: z.ZodOptional<z.ZodString>;
131
134
  stability: z.ZodEnum<{
135
+ unknown: "unknown";
132
136
  deprecated: "deprecated";
133
137
  experimental: "experimental";
134
138
  beta: "beta";
@@ -263,12 +267,14 @@ export declare const endpointLeaves: readonly [{
263
267
  }>>>;
264
268
  path: z.ZodOptional<z.ZodString>;
265
269
  stabilityInclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
270
+ unknown: "unknown";
266
271
  deprecated: "deprecated";
267
272
  experimental: "experimental";
268
273
  beta: "beta";
269
274
  stable: "stable";
270
275
  }>>>;
271
276
  stabilityExclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
277
+ unknown: "unknown";
272
278
  deprecated: "deprecated";
273
279
  experimental: "experimental";
274
280
  beta: "beta";
@@ -304,6 +310,7 @@ export declare const endpointLeaves: readonly [{
304
310
  feed: z.ZodOptional<z.ZodBoolean>;
305
311
  summary: z.ZodOptional<z.ZodString>;
306
312
  stability: z.ZodEnum<{
313
+ unknown: "unknown";
307
314
  deprecated: "deprecated";
308
315
  experimental: "experimental";
309
316
  beta: "beta";
@@ -368,12 +375,14 @@ export declare const endpointLeaves: readonly [{
368
375
  }>>>;
369
376
  path: z.ZodOptional<z.ZodString>;
370
377
  stabilityInclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
378
+ unknown: "unknown";
371
379
  deprecated: "deprecated";
372
380
  experimental: "experimental";
373
381
  beta: "beta";
374
382
  stable: "stable";
375
383
  }>>>;
376
384
  stabilityExclude: z.ZodOptional<z.ZodArray<z.ZodEnum<{
385
+ unknown: "unknown";
377
386
  deprecated: "deprecated";
378
387
  experimental: "experimental";
379
388
  beta: "beta";
@@ -409,6 +418,7 @@ export declare const endpointLeaves: readonly [{
409
418
  feed: z.ZodOptional<z.ZodBoolean>;
410
419
  summary: z.ZodOptional<z.ZodString>;
411
420
  stability: z.ZodEnum<{
421
+ unknown: "unknown";
412
422
  deprecated: "deprecated";
413
423
  experimental: "experimental";
414
424
  beta: "beta";
@@ -466,6 +476,7 @@ export declare const endpointLeaves: readonly [{
466
476
  feed: z.ZodOptional<z.ZodBoolean>;
467
477
  summary: z.ZodOptional<z.ZodString>;
468
478
  stability: z.ZodEnum<{
479
+ unknown: "unknown";
469
480
  deprecated: "deprecated";
470
481
  experimental: "experimental";
471
482
  beta: "beta";
@@ -497,8 +508,8 @@ export declare const endpointLeaves: readonly [{
497
508
  methodsInclude?: ("get" | "post" | "put" | "patch" | "delete")[] | undefined;
498
509
  methodsExclude?: ("get" | "post" | "put" | "patch" | "delete")[] | undefined;
499
510
  path?: string | undefined;
500
- stabilityInclude?: ("deprecated" | "experimental" | "beta" | "stable")[] | undefined;
501
- stabilityExclude?: ("deprecated" | "experimental" | "beta" | "stable")[] | undefined;
511
+ stabilityInclude?: ("unknown" | "deprecated" | "experimental" | "beta" | "stable")[] | undefined;
512
+ stabilityExclude?: ("unknown" | "deprecated" | "experimental" | "beta" | "stable")[] | undefined;
502
513
  } & {
503
514
  cursor?: string | undefined;
504
515
  pageSize?: number | undefined;
@@ -515,8 +526,8 @@ export declare const endpointLeaves: readonly [{
515
526
  methodsInclude?: ("get" | "post" | "put" | "patch" | "delete")[] | undefined;
516
527
  methodsExclude?: ("get" | "post" | "put" | "patch" | "delete")[] | undefined;
517
528
  path?: string | undefined;
518
- stabilityInclude?: ("deprecated" | "experimental" | "beta" | "stable")[] | undefined;
519
- stabilityExclude?: ("deprecated" | "experimental" | "beta" | "stable")[] | undefined;
529
+ stabilityInclude?: ("unknown" | "deprecated" | "experimental" | "beta" | "stable")[] | undefined;
530
+ stabilityExclude?: ("unknown" | "deprecated" | "experimental" | "beta" | "stable")[] | undefined;
520
531
  } & {
521
532
  cursor?: string | undefined;
522
533
  pageSize?: unknown;
@@ -540,7 +551,7 @@ export declare const endpointLeaves: readonly [{
540
551
  maxCount: number;
541
552
  }[] | undefined;
542
553
  };
543
- stability: "deprecated" | "experimental" | "beta" | "stable";
554
+ stability: "unknown" | "deprecated" | "experimental" | "beta" | "stable";
544
555
  meta: Record<string, string>;
545
556
  description?: string | undefined;
546
557
  groupId?: string | undefined;
@@ -572,7 +583,7 @@ export declare const endpointLeaves: readonly [{
572
583
  maxCount: number;
573
584
  }[] | undefined;
574
585
  };
575
- stability: "deprecated" | "experimental" | "beta" | "stable";
586
+ stability: "unknown" | "deprecated" | "experimental" | "beta" | "stable";
576
587
  meta: Record<string, string>;
577
588
  description?: string | undefined;
578
589
  groupId?: string | undefined;
@@ -662,6 +673,7 @@ export declare const endpointLeaves: readonly [{
662
673
  feed: z.ZodOptional<z.ZodBoolean>;
663
674
  summary: z.ZodOptional<z.ZodString>;
664
675
  stability: z.ZodEnum<{
676
+ unknown: "unknown";
665
677
  deprecated: "deprecated";
666
678
  experimental: "experimental";
667
679
  beta: "beta";
@@ -771,6 +783,7 @@ export declare const endpointLeaves: readonly [{
771
783
  feed: z.ZodOptional<z.ZodBoolean>;
772
784
  summary: z.ZodOptional<z.ZodString>;
773
785
  stability: z.ZodEnum<{
786
+ unknown: "unknown";
774
787
  deprecated: "deprecated";
775
788
  experimental: "experimental";
776
789
  beta: "beta";
@@ -874,7 +887,7 @@ export declare const endpointLeaves: readonly [{
874
887
  maxCount: number;
875
888
  }[] | undefined;
876
889
  };
877
- stability: "deprecated" | "experimental" | "beta" | "stable";
890
+ stability: "unknown" | "deprecated" | "experimental" | "beta" | "stable";
878
891
  meta: Record<string, string>;
879
892
  requests: {
880
893
  id: string;
@@ -953,7 +966,7 @@ export declare const endpointLeaves: readonly [{
953
966
  maxCount: number;
954
967
  }[] | undefined;
955
968
  };
956
- stability: "deprecated" | "experimental" | "beta" | "stable";
969
+ stability: "unknown" | "deprecated" | "experimental" | "beta" | "stable";
957
970
  meta: Record<string, string>;
958
971
  requests: {
959
972
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emeryld/rrroutes-openapi",
3
- "version": "2.4.5",
3
+ "version": "2.4.6",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -17,7 +17,7 @@
17
17
  "dist"
18
18
  ],
19
19
  "dependencies": {
20
- "@emeryld/rrroutes-client": "^2.4.2",
20
+ "@emeryld/rrroutes-client": "^2.4.8",
21
21
  "@emeryld/rrroutes-contract": "^2.4.19",
22
22
  "@emotion/cache": "^11.14.0",
23
23
  "@emotion/react": "^11.14.0",