@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.
@@ -2835,6 +2835,7 @@ var DocsSiteSchema = z18.object({
2835
2835
  domain: z18.string(),
2836
2836
  basepath: z18.string(),
2837
2837
  previewUrl: z18.string().nullish(),
2838
+ postmanCollectionId: z18.string().nullish(),
2838
2839
  status: DocsDeploymentStatusSchema,
2839
2840
  createdAt: z18.string(),
2840
2841
  updatedAt: z18.string()
@@ -2856,7 +2857,13 @@ var RegisterDocsSiteInputSchema = z18.object({
2856
2857
  domain: z18.string(),
2857
2858
  orgId: z18.string(),
2858
2859
  basepath: z18.string().nullish(),
2859
- previewUrl: z18.string().nullish()
2860
+ previewUrl: z18.string().nullish(),
2861
+ postmanCollectionId: z18.string().nullish()
2862
+ });
2863
+ var GetPostmanCollectionIdInputSchema = z18.object({
2864
+ orgId: z18.string(),
2865
+ domain: z18.string(),
2866
+ basepath: z18.string().nullish()
2860
2867
  });
2861
2868
  var GetDocsStatusInputSchema = z18.object({
2862
2869
  domain: z18.string(),
@@ -2900,13 +2907,17 @@ var CreateDeploymentResponseSchema = z18.object({
2900
2907
  var UpdateDeploymentStatusResponseSchema = z18.object({
2901
2908
  success: z18.boolean()
2902
2909
  });
2910
+ var GetPostmanCollectionIdResponseSchema = z18.object({
2911
+ postmanCollectionId: z18.string().nullable()
2912
+ });
2903
2913
  var docsDeploymentContract = {
2904
2914
  registerDocsSite: import_contract18.oc.route({ method: "POST", path: "/register" }).input(RegisterDocsSiteInputSchema).output(DocsSiteSchema),
2905
2915
  getDocsStatus: import_contract18.oc.route({ method: "GET", path: "/status" }).input(GetDocsStatusInputSchema).output(GetDocsStatusResponseSchema),
2906
2916
  setDocsStatus: import_contract18.oc.route({ method: "PUT", path: "/status" }).input(SetDocsStatusInputSchema).output(DocsSiteSchema),
2907
2917
  createDeployment: import_contract18.oc.route({ method: "POST", path: "/deployment" }).input(CreateDeploymentInputSchema).output(CreateDeploymentResponseSchema),
2908
2918
  updateDeploymentStatus: import_contract18.oc.route({ method: "PATCH", path: "/deployment/{deploymentId}" }).input(UpdateDeploymentStatusInputSchema).output(UpdateDeploymentStatusResponseSchema),
2909
- getDocsDeployments: import_contract18.oc.route({ method: "GET", path: "/deployments" }).input(GetDocsDeploymentsInputSchema).output(GetDocsDeploymentsResponseSchema)
2919
+ getDocsDeployments: import_contract18.oc.route({ method: "GET", path: "/deployments" }).input(GetDocsDeploymentsInputSchema).output(GetDocsDeploymentsResponseSchema),
2920
+ getPostmanCollectionId: import_contract18.oc.route({ method: "GET", path: "/postman-collection-id" }).input(GetPostmanCollectionIdInputSchema).output(GetPostmanCollectionIdResponseSchema)
2910
2921
  };
2911
2922
 
2912
2923
  // src/orpc-client/docs-deployment/client.ts