@fern-api/fdr-sdk 1.2.92-bd650af30b → 1.2.93-0a7dc0792a
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/js/api-definition/index.js +6 -3
- package/dist/js/api-definition/index.js.map +1 -1
- package/dist/js/api-definition/index.mjs +6 -3
- package/dist/js/api-definition/index.mjs.map +1 -1
- package/dist/js/client/FdrClient.js +6 -3
- package/dist/js/client/FdrClient.js.map +1 -1
- package/dist/js/client/FdrClient.mjs +6 -3
- package/dist/js/client/FdrClient.mjs.map +1 -1
- package/dist/js/client/types.js +6 -3
- package/dist/js/client/types.js.map +1 -1
- package/dist/js/client/types.mjs +6 -3
- package/dist/js/client/types.mjs.map +1 -1
- package/dist/js/converters/index.js +10 -5
- package/dist/js/converters/index.js.map +1 -1
- package/dist/js/converters/index.mjs +10 -5
- package/dist/js/converters/index.mjs.map +1 -1
- package/dist/js/index.js +10 -5
- package/dist/js/index.js.map +1 -1
- package/dist/js/index.mjs +10 -5
- package/dist/js/index.mjs.map +1 -1
- package/dist/js/navigation/index.js +8 -4
- package/dist/js/navigation/index.js.map +1 -1
- package/dist/js/navigation/index.mjs +8 -4
- package/dist/js/navigation/index.mjs.map +1 -1
- package/dist/js/orpc-client.js +6 -3
- package/dist/js/orpc-client.js.map +1 -1
- package/dist/js/orpc-client.mjs +6 -3
- package/dist/js/orpc-client.mjs.map +1 -1
- package/dist/types/api-definition/migrators/v1ToV2.d.ts.map +1 -1
- package/dist/types/converters/__test__/websocket-explorer-round-trip.test.d.ts +2 -0
- package/dist/types/converters/__test__/websocket-explorer-round-trip.test.d.ts.map +1 -0
- package/dist/types/converters/db/convertAPIDefinitionToDb.d.ts.map +1 -1
- package/dist/types/converters/read/convertDbAPIDefinitionToRead.d.ts +2 -0
- package/dist/types/converters/read/convertDbAPIDefinitionToRead.d.ts.map +1 -1
- package/dist/types/navigation/utils/toApis.d.ts +1 -0
- package/dist/types/navigation/utils/toApis.d.ts.map +1 -1
- package/dist/types/orpc-client/api/contract-db.d.ts +24 -0
- package/dist/types/orpc-client/api/contract-db.d.ts.map +1 -1
- package/dist/types/orpc-client/api/contract-latest.d.ts +13 -0
- package/dist/types/orpc-client/api/contract-latest.d.ts.map +1 -1
- package/dist/types/orpc-client/api/contract-read.d.ts +27 -0
- package/dist/types/orpc-client/api/contract-read.d.ts.map +1 -1
- package/dist/types/orpc-client/api/contract-register.d.ts +27 -0
- package/dist/types/orpc-client/api/contract-register.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -786,7 +786,8 @@ var RegisterWebSocketChannelSchema = z3.object({
|
|
|
786
786
|
headers: z3.array(HeaderSchema),
|
|
787
787
|
queryParameters: z3.array(QueryParameterSchema),
|
|
788
788
|
messages: z3.array(WebSocketMessageSchema),
|
|
789
|
-
examples: z3.array(ExampleWebSocketSessionSchema)
|
|
789
|
+
examples: z3.array(ExampleWebSocketSessionSchema),
|
|
790
|
+
includeInApiExplorer: z3.boolean().nullish()
|
|
790
791
|
});
|
|
791
792
|
var SourceIdSchema = z3.string();
|
|
792
793
|
var SourceSchema = z3.discriminatedUnion("type", [
|
|
@@ -1387,7 +1388,8 @@ var LatestWebSocketChannelSchema = z4.object({
|
|
|
1387
1388
|
pathParameters: z4.array(LatestParameterPropertySchema).nullish(),
|
|
1388
1389
|
queryParameters: z4.array(LatestParameterPropertySchema).nullish(),
|
|
1389
1390
|
requestHeaders: z4.array(LatestObjectPropertySchema).nullish(),
|
|
1390
|
-
examples: z4.array(LatestExampleWebSocketSessionSchema).nullish()
|
|
1391
|
+
examples: z4.array(LatestExampleWebSocketSessionSchema).nullish(),
|
|
1392
|
+
includeInApiExplorer: z4.boolean().nullish()
|
|
1391
1393
|
});
|
|
1392
1394
|
var LatestSubpackageMetadataSchema = z4.object({
|
|
1393
1395
|
id: SubpackageIdSchema,
|
|
@@ -1634,7 +1636,8 @@ var ReadWebSocketChannelSchema = z5.object({
|
|
|
1634
1636
|
headers: z5.array(HeaderSchema),
|
|
1635
1637
|
queryParameters: z5.array(QueryParameterSchema),
|
|
1636
1638
|
messages: z5.array(WebSocketMessageSchema),
|
|
1637
|
-
examples: z5.array(ExampleWebSocketSessionSchema)
|
|
1639
|
+
examples: z5.array(ExampleWebSocketSessionSchema),
|
|
1640
|
+
includeInApiExplorer: z5.boolean().nullish()
|
|
1638
1641
|
});
|
|
1639
1642
|
var ReadApiDefinitionPackageSchema = z5.object({
|
|
1640
1643
|
endpoints: z5.array(ReadEndpointDefinitionSchema),
|