@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.
@@ -2798,6 +2798,7 @@ var DocsSiteSchema = z18.object({
2798
2798
  domain: z18.string(),
2799
2799
  basepath: z18.string(),
2800
2800
  previewUrl: z18.string().nullish(),
2801
+ postmanCollectionId: z18.string().nullish(),
2801
2802
  status: DocsDeploymentStatusSchema,
2802
2803
  createdAt: z18.string(),
2803
2804
  updatedAt: z18.string()
@@ -2819,7 +2820,13 @@ var RegisterDocsSiteInputSchema = z18.object({
2819
2820
  domain: z18.string(),
2820
2821
  orgId: z18.string(),
2821
2822
  basepath: z18.string().nullish(),
2822
- previewUrl: z18.string().nullish()
2823
+ previewUrl: z18.string().nullish(),
2824
+ postmanCollectionId: z18.string().nullish()
2825
+ });
2826
+ var GetPostmanCollectionIdInputSchema = z18.object({
2827
+ orgId: z18.string(),
2828
+ domain: z18.string(),
2829
+ basepath: z18.string().nullish()
2823
2830
  });
2824
2831
  var GetDocsStatusInputSchema = z18.object({
2825
2832
  domain: z18.string(),
@@ -2863,13 +2870,17 @@ var CreateDeploymentResponseSchema = z18.object({
2863
2870
  var UpdateDeploymentStatusResponseSchema = z18.object({
2864
2871
  success: z18.boolean()
2865
2872
  });
2873
+ var GetPostmanCollectionIdResponseSchema = z18.object({
2874
+ postmanCollectionId: z18.string().nullable()
2875
+ });
2866
2876
  var docsDeploymentContract = {
2867
2877
  registerDocsSite: oc10.route({ method: "POST", path: "/register" }).input(RegisterDocsSiteInputSchema).output(DocsSiteSchema),
2868
2878
  getDocsStatus: oc10.route({ method: "GET", path: "/status" }).input(GetDocsStatusInputSchema).output(GetDocsStatusResponseSchema),
2869
2879
  setDocsStatus: oc10.route({ method: "PUT", path: "/status" }).input(SetDocsStatusInputSchema).output(DocsSiteSchema),
2870
2880
  createDeployment: oc10.route({ method: "POST", path: "/deployment" }).input(CreateDeploymentInputSchema).output(CreateDeploymentResponseSchema),
2871
2881
  updateDeploymentStatus: oc10.route({ method: "PATCH", path: "/deployment/{deploymentId}" }).input(UpdateDeploymentStatusInputSchema).output(UpdateDeploymentStatusResponseSchema),
2872
- getDocsDeployments: oc10.route({ method: "GET", path: "/deployments" }).input(GetDocsDeploymentsInputSchema).output(GetDocsDeploymentsResponseSchema)
2882
+ getDocsDeployments: oc10.route({ method: "GET", path: "/deployments" }).input(GetDocsDeploymentsInputSchema).output(GetDocsDeploymentsResponseSchema),
2883
+ getPostmanCollectionId: oc10.route({ method: "GET", path: "/postman-collection-id" }).input(GetPostmanCollectionIdInputSchema).output(GetPostmanCollectionIdResponseSchema)
2873
2884
  };
2874
2885
 
2875
2886
  // src/orpc-client/docs-deployment/client.ts