@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
|
@@ -749,7 +749,8 @@ var RegisterWebSocketChannelSchema = z3.object({
|
|
|
749
749
|
headers: z3.array(HeaderSchema),
|
|
750
750
|
queryParameters: z3.array(QueryParameterSchema),
|
|
751
751
|
messages: z3.array(WebSocketMessageSchema),
|
|
752
|
-
examples: z3.array(ExampleWebSocketSessionSchema)
|
|
752
|
+
examples: z3.array(ExampleWebSocketSessionSchema),
|
|
753
|
+
includeInApiExplorer: z3.boolean().nullish()
|
|
753
754
|
});
|
|
754
755
|
var SourceIdSchema = z3.string();
|
|
755
756
|
var SourceSchema = z3.discriminatedUnion("type", [
|
|
@@ -1350,7 +1351,8 @@ var LatestWebSocketChannelSchema = z4.object({
|
|
|
1350
1351
|
pathParameters: z4.array(LatestParameterPropertySchema).nullish(),
|
|
1351
1352
|
queryParameters: z4.array(LatestParameterPropertySchema).nullish(),
|
|
1352
1353
|
requestHeaders: z4.array(LatestObjectPropertySchema).nullish(),
|
|
1353
|
-
examples: z4.array(LatestExampleWebSocketSessionSchema).nullish()
|
|
1354
|
+
examples: z4.array(LatestExampleWebSocketSessionSchema).nullish(),
|
|
1355
|
+
includeInApiExplorer: z4.boolean().nullish()
|
|
1354
1356
|
});
|
|
1355
1357
|
var LatestSubpackageMetadataSchema = z4.object({
|
|
1356
1358
|
id: SubpackageIdSchema,
|
|
@@ -1597,7 +1599,8 @@ var ReadWebSocketChannelSchema = z5.object({
|
|
|
1597
1599
|
headers: z5.array(HeaderSchema),
|
|
1598
1600
|
queryParameters: z5.array(QueryParameterSchema),
|
|
1599
1601
|
messages: z5.array(WebSocketMessageSchema),
|
|
1600
|
-
examples: z5.array(ExampleWebSocketSessionSchema)
|
|
1602
|
+
examples: z5.array(ExampleWebSocketSessionSchema),
|
|
1603
|
+
includeInApiExplorer: z5.boolean().nullish()
|
|
1601
1604
|
});
|
|
1602
1605
|
var ReadApiDefinitionPackageSchema = z5.object({
|
|
1603
1606
|
endpoints: z5.array(ReadEndpointDefinitionSchema),
|