@fern-api/fdr-sdk 0.147.7-b9932e4cff → 0.147.7-e0ac07446c

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/index.mjs CHANGED
@@ -52592,6 +52592,7 @@ var DocsSiteSchema = z29.object({
52592
52592
  domain: z29.string(),
52593
52593
  basepath: z29.string(),
52594
52594
  previewUrl: z29.string().nullish(),
52595
+ postmanCollectionId: z29.string().nullish(),
52595
52596
  status: DocsDeploymentStatusSchema,
52596
52597
  createdAt: z29.string(),
52597
52598
  updatedAt: z29.string()
@@ -52613,7 +52614,13 @@ var RegisterDocsSiteInputSchema = z29.object({
52613
52614
  domain: z29.string(),
52614
52615
  orgId: z29.string(),
52615
52616
  basepath: z29.string().nullish(),
52616
- previewUrl: z29.string().nullish()
52617
+ previewUrl: z29.string().nullish(),
52618
+ postmanCollectionId: z29.string().nullish()
52619
+ });
52620
+ var GetPostmanCollectionIdInputSchema = z29.object({
52621
+ orgId: z29.string(),
52622
+ domain: z29.string(),
52623
+ basepath: z29.string().nullish()
52617
52624
  });
52618
52625
  var GetDocsStatusInputSchema = z29.object({
52619
52626
  domain: z29.string(),
@@ -52657,13 +52664,17 @@ var CreateDeploymentResponseSchema = z29.object({
52657
52664
  var UpdateDeploymentStatusResponseSchema = z29.object({
52658
52665
  success: z29.boolean()
52659
52666
  });
52667
+ var GetPostmanCollectionIdResponseSchema = z29.object({
52668
+ postmanCollectionId: z29.string().nullable()
52669
+ });
52660
52670
  var docsDeploymentContract = {
52661
52671
  registerDocsSite: oc11.route({ method: "POST", path: "/register" }).input(RegisterDocsSiteInputSchema).output(DocsSiteSchema),
52662
52672
  getDocsStatus: oc11.route({ method: "GET", path: "/status" }).input(GetDocsStatusInputSchema).output(GetDocsStatusResponseSchema),
52663
52673
  setDocsStatus: oc11.route({ method: "PUT", path: "/status" }).input(SetDocsStatusInputSchema).output(DocsSiteSchema),
52664
52674
  createDeployment: oc11.route({ method: "POST", path: "/deployment" }).input(CreateDeploymentInputSchema).output(CreateDeploymentResponseSchema),
52665
52675
  updateDeploymentStatus: oc11.route({ method: "PATCH", path: "/deployment/{deploymentId}" }).input(UpdateDeploymentStatusInputSchema).output(UpdateDeploymentStatusResponseSchema),
52666
- getDocsDeployments: oc11.route({ method: "GET", path: "/deployments" }).input(GetDocsDeploymentsInputSchema).output(GetDocsDeploymentsResponseSchema)
52676
+ getDocsDeployments: oc11.route({ method: "GET", path: "/deployments" }).input(GetDocsDeploymentsInputSchema).output(GetDocsDeploymentsResponseSchema),
52677
+ getPostmanCollectionId: oc11.route({ method: "GET", path: "/postman-collection-id" }).input(GetPostmanCollectionIdInputSchema).output(GetPostmanCollectionIdResponseSchema)
52667
52678
  };
52668
52679
 
52669
52680
  // src/orpc-client/docs-deployment/client.ts