@fern-api/fdr-sdk 1.2.2-6c637610fb → 1.2.2-be0d74d1a9
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/client/FdrClient.js +2 -11
- package/dist/js/client/FdrClient.js.map +1 -1
- package/dist/js/client/FdrClient.mjs +2 -11
- package/dist/js/client/FdrClient.mjs.map +1 -1
- package/dist/js/index.js +2 -11
- package/dist/js/index.js.map +1 -1
- package/dist/js/index.mjs +2 -11
- package/dist/js/index.mjs.map +1 -1
- package/dist/js/orpc-client.js +2 -13
- package/dist/js/orpc-client.js.map +1 -1
- package/dist/js/orpc-client.mjs +2 -12
- package/dist/js/orpc-client.mjs.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/orpc-client/docs-deployment/contract.d.ts +0 -54
- package/dist/types/orpc-client/docs-deployment/contract.d.ts.map +1 -1
- package/package.json +3 -3
package/dist/js/index.js
CHANGED
|
@@ -49617,7 +49617,6 @@ var DocsSiteSchema = z10.object({
|
|
|
49617
49617
|
basepath: z10.string(),
|
|
49618
49618
|
previewUrl: z10.string().nullish(),
|
|
49619
49619
|
postmanCollectionId: z10.string().nullish(),
|
|
49620
|
-
editorRepoUrl: z10.string().nullish(),
|
|
49621
49620
|
status: DocsDeploymentStatusSchema,
|
|
49622
49621
|
createdAt: z10.string(),
|
|
49623
49622
|
updatedAt: z10.string()
|
|
@@ -49640,8 +49639,7 @@ var RegisterDocsSiteInputSchema = z10.object({
|
|
|
49640
49639
|
orgId: z10.string(),
|
|
49641
49640
|
basepath: z10.string().nullish(),
|
|
49642
49641
|
previewUrl: z10.string().nullish(),
|
|
49643
|
-
postmanCollectionId: z10.string().nullish()
|
|
49644
|
-
editorRepoUrl: z10.string().nullish()
|
|
49642
|
+
postmanCollectionId: z10.string().nullish()
|
|
49645
49643
|
});
|
|
49646
49644
|
var GetPostmanCollectionIdInputSchema = z10.object({
|
|
49647
49645
|
orgId: z10.string(),
|
|
@@ -49716,12 +49714,6 @@ var GetDocsSitesByCollectionIdResponseSchema = z10.object({
|
|
|
49716
49714
|
})
|
|
49717
49715
|
)
|
|
49718
49716
|
});
|
|
49719
|
-
var SetEditorRepoUrlInputSchema = z10.object({
|
|
49720
|
-
orgId: z10.string(),
|
|
49721
|
-
domain: z10.string(),
|
|
49722
|
-
basepath: z10.string().nullish(),
|
|
49723
|
-
editorRepoUrl: z10.string().nullable()
|
|
49724
|
-
});
|
|
49725
49717
|
var docsDeploymentContract = {
|
|
49726
49718
|
registerDocsSite: import_contract2.oc.route({ method: "POST", path: "/register" }).input(RegisterDocsSiteInputSchema).output(DocsSiteSchema),
|
|
49727
49719
|
getDocsStatus: import_contract2.oc.route({ method: "GET", path: "/status" }).input(GetDocsStatusInputSchema).output(GetDocsStatusResponseSchema),
|
|
@@ -49731,8 +49723,7 @@ var docsDeploymentContract = {
|
|
|
49731
49723
|
getDocsDeployments: import_contract2.oc.route({ method: "GET", path: "/deployments" }).input(GetDocsDeploymentsInputSchema).output(GetDocsDeploymentsResponseSchema),
|
|
49732
49724
|
getPostmanCollectionId: import_contract2.oc.route({ method: "GET", path: "/postman-collection-id" }).input(GetPostmanCollectionIdInputSchema).output(GetPostmanCollectionIdResponseSchema),
|
|
49733
49725
|
unlockDeploy: import_contract2.oc.route({ method: "POST", path: "/unlock" }).input(UnlockDeployInputSchema).output(UnlockDeployResponseSchema),
|
|
49734
|
-
getDocsSitesByCollectionId: import_contract2.oc.route({ method: "GET", path: "/sites-by-collection-id" }).input(GetDocsSitesByCollectionIdInputSchema).output(GetDocsSitesByCollectionIdResponseSchema)
|
|
49735
|
-
setEditorRepoUrl: import_contract2.oc.route({ method: "PUT", path: "/editor-repo-url" }).input(SetEditorRepoUrlInputSchema).output(z10.object({ success: z10.boolean() }))
|
|
49726
|
+
getDocsSitesByCollectionId: import_contract2.oc.route({ method: "GET", path: "/sites-by-collection-id" }).input(GetDocsSitesByCollectionIdInputSchema).output(GetDocsSitesByCollectionIdResponseSchema)
|
|
49736
49727
|
};
|
|
49737
49728
|
|
|
49738
49729
|
// src/orpc-client/dashboard/contract.ts
|