@fern-api/fdr-sdk 0.147.7-42e90f954d → 0.147.7-d81db6be8b

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.
@@ -3014,6 +3014,7 @@ var DocsSiteSchema = z19.object({
3014
3014
  domain: z19.string(),
3015
3015
  basepath: z19.string(),
3016
3016
  previewUrl: z19.string().nullish(),
3017
+ postmanCollectionId: z19.string().nullish(),
3017
3018
  status: DocsDeploymentStatusSchema,
3018
3019
  createdAt: z19.string(),
3019
3020
  updatedAt: z19.string()
@@ -3035,7 +3036,13 @@ var RegisterDocsSiteInputSchema = z19.object({
3035
3036
  domain: z19.string(),
3036
3037
  orgId: z19.string(),
3037
3038
  basepath: z19.string().nullish(),
3038
- previewUrl: z19.string().nullish()
3039
+ previewUrl: z19.string().nullish(),
3040
+ postmanCollectionId: z19.string().nullish()
3041
+ });
3042
+ var GetPostmanCollectionIdInputSchema = z19.object({
3043
+ orgId: z19.string(),
3044
+ domain: z19.string(),
3045
+ basepath: z19.string().nullish()
3039
3046
  });
3040
3047
  var GetDocsStatusInputSchema = z19.object({
3041
3048
  domain: z19.string(),
@@ -3079,13 +3086,17 @@ var CreateDeploymentResponseSchema = z19.object({
3079
3086
  var UpdateDeploymentStatusResponseSchema = z19.object({
3080
3087
  success: z19.boolean()
3081
3088
  });
3089
+ var GetPostmanCollectionIdResponseSchema = z19.object({
3090
+ postmanCollectionId: z19.string().nullable()
3091
+ });
3082
3092
  var docsDeploymentContract = {
3083
3093
  registerDocsSite: oc10.route({ method: "POST", path: "/register" }).input(RegisterDocsSiteInputSchema).output(DocsSiteSchema),
3084
3094
  getDocsStatus: oc10.route({ method: "GET", path: "/status" }).input(GetDocsStatusInputSchema).output(GetDocsStatusResponseSchema),
3085
3095
  setDocsStatus: oc10.route({ method: "PUT", path: "/status" }).input(SetDocsStatusInputSchema).output(DocsSiteSchema),
3086
3096
  createDeployment: oc10.route({ method: "POST", path: "/deployment" }).input(CreateDeploymentInputSchema).output(CreateDeploymentResponseSchema),
3087
3097
  updateDeploymentStatus: oc10.route({ method: "PATCH", path: "/deployment/{deploymentId}" }).input(UpdateDeploymentStatusInputSchema).output(UpdateDeploymentStatusResponseSchema),
3088
- getDocsDeployments: oc10.route({ method: "GET", path: "/deployments" }).input(GetDocsDeploymentsInputSchema).output(GetDocsDeploymentsResponseSchema)
3098
+ getDocsDeployments: oc10.route({ method: "GET", path: "/deployments" }).input(GetDocsDeploymentsInputSchema).output(GetDocsDeploymentsResponseSchema),
3099
+ getPostmanCollectionId: oc10.route({ method: "GET", path: "/postman-collection-id" }).input(GetPostmanCollectionIdInputSchema).output(GetPostmanCollectionIdResponseSchema)
3089
3100
  };
3090
3101
 
3091
3102
  // src/orpc-client/docs-deployment/client.ts
@@ -4021,6 +4032,8 @@ export {
4021
4032
  GetOrganizationForUrlInputSchema,
4022
4033
  GetPdfExportDownloadUrlInputSchema,
4023
4034
  GetPdfExportTaskInputSchema,
4035
+ GetPostmanCollectionIdInputSchema,
4036
+ GetPostmanCollectionIdResponseSchema,
4024
4037
  GetPrivateDocsForUrlInputSchema,
4025
4038
  GetPullRequestInputSchema,
4026
4039
  GetRepositoryInputSchema,