@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.js CHANGED
@@ -52634,6 +52634,7 @@ var DocsSiteSchema = z29.object({
52634
52634
  domain: z29.string(),
52635
52635
  basepath: z29.string(),
52636
52636
  previewUrl: z29.string().nullish(),
52637
+ postmanCollectionId: z29.string().nullish(),
52637
52638
  status: DocsDeploymentStatusSchema,
52638
52639
  createdAt: z29.string(),
52639
52640
  updatedAt: z29.string()
@@ -52655,7 +52656,13 @@ var RegisterDocsSiteInputSchema = z29.object({
52655
52656
  domain: z29.string(),
52656
52657
  orgId: z29.string(),
52657
52658
  basepath: z29.string().nullish(),
52658
- previewUrl: z29.string().nullish()
52659
+ previewUrl: z29.string().nullish(),
52660
+ postmanCollectionId: z29.string().nullish()
52661
+ });
52662
+ var GetPostmanCollectionIdInputSchema = z29.object({
52663
+ orgId: z29.string(),
52664
+ domain: z29.string(),
52665
+ basepath: z29.string().nullish()
52659
52666
  });
52660
52667
  var GetDocsStatusInputSchema = z29.object({
52661
52668
  domain: z29.string(),
@@ -52699,13 +52706,17 @@ var CreateDeploymentResponseSchema = z29.object({
52699
52706
  var UpdateDeploymentStatusResponseSchema = z29.object({
52700
52707
  success: z29.boolean()
52701
52708
  });
52709
+ var GetPostmanCollectionIdResponseSchema = z29.object({
52710
+ postmanCollectionId: z29.string().nullable()
52711
+ });
52702
52712
  var docsDeploymentContract = {
52703
52713
  registerDocsSite: import_contract18.oc.route({ method: "POST", path: "/register" }).input(RegisterDocsSiteInputSchema).output(DocsSiteSchema),
52704
52714
  getDocsStatus: import_contract18.oc.route({ method: "GET", path: "/status" }).input(GetDocsStatusInputSchema).output(GetDocsStatusResponseSchema),
52705
52715
  setDocsStatus: import_contract18.oc.route({ method: "PUT", path: "/status" }).input(SetDocsStatusInputSchema).output(DocsSiteSchema),
52706
52716
  createDeployment: import_contract18.oc.route({ method: "POST", path: "/deployment" }).input(CreateDeploymentInputSchema).output(CreateDeploymentResponseSchema),
52707
52717
  updateDeploymentStatus: import_contract18.oc.route({ method: "PATCH", path: "/deployment/{deploymentId}" }).input(UpdateDeploymentStatusInputSchema).output(UpdateDeploymentStatusResponseSchema),
52708
- getDocsDeployments: import_contract18.oc.route({ method: "GET", path: "/deployments" }).input(GetDocsDeploymentsInputSchema).output(GetDocsDeploymentsResponseSchema)
52718
+ getDocsDeployments: import_contract18.oc.route({ method: "GET", path: "/deployments" }).input(GetDocsDeploymentsInputSchema).output(GetDocsDeploymentsResponseSchema),
52719
+ getPostmanCollectionId: import_contract18.oc.route({ method: "GET", path: "/postman-collection-id" }).input(GetPostmanCollectionIdInputSchema).output(GetPostmanCollectionIdResponseSchema)
52709
52720
  };
52710
52721
 
52711
52722
  // src/orpc-client/docs-deployment/client.ts