@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.
@@ -7,6 +7,7 @@ export declare const DocsSiteSchema: z.ZodObject<{
7
7
  domain: z.ZodString;
8
8
  basepath: z.ZodString;
9
9
  previewUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10
+ postmanCollectionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10
11
  status: z.ZodEnum<["PUBLISHING", "LIVE", "UNPUBLISHED", "ERROR"]>;
11
12
  createdAt: z.ZodString;
12
13
  updatedAt: z.ZodString;
@@ -19,6 +20,7 @@ export declare const DocsSiteSchema: z.ZodObject<{
19
20
  createdAt: string;
20
21
  basepath: string;
21
22
  previewUrl?: string | null | undefined;
23
+ postmanCollectionId?: string | null | undefined;
22
24
  }, {
23
25
  status: "PUBLISHING" | "LIVE" | "UNPUBLISHED" | "ERROR";
24
26
  orgId: string;
@@ -28,6 +30,7 @@ export declare const DocsSiteSchema: z.ZodObject<{
28
30
  createdAt: string;
29
31
  basepath: string;
30
32
  previewUrl?: string | null | undefined;
33
+ postmanCollectionId?: string | null | undefined;
31
34
  }>;
32
35
  export type DocsSite = z.infer<typeof DocsSiteSchema>;
33
36
  export declare const DocsDeploymentSchema: z.ZodObject<{
@@ -73,18 +76,35 @@ export declare const RegisterDocsSiteInputSchema: z.ZodObject<{
73
76
  orgId: z.ZodString;
74
77
  basepath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
75
78
  previewUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
79
+ postmanCollectionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
76
80
  }, "strip", z.ZodTypeAny, {
77
81
  orgId: string;
78
82
  domain: string;
79
83
  previewUrl?: string | null | undefined;
80
84
  basepath?: string | null | undefined;
85
+ postmanCollectionId?: string | null | undefined;
81
86
  }, {
82
87
  orgId: string;
83
88
  domain: string;
84
89
  previewUrl?: string | null | undefined;
85
90
  basepath?: string | null | undefined;
91
+ postmanCollectionId?: string | null | undefined;
86
92
  }>;
87
93
  export type RegisterDocsSiteInput = z.infer<typeof RegisterDocsSiteInputSchema>;
94
+ export declare const GetPostmanCollectionIdInputSchema: z.ZodObject<{
95
+ orgId: z.ZodString;
96
+ domain: z.ZodString;
97
+ basepath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98
+ }, "strip", z.ZodTypeAny, {
99
+ orgId: string;
100
+ domain: string;
101
+ basepath?: string | null | undefined;
102
+ }, {
103
+ orgId: string;
104
+ domain: string;
105
+ basepath?: string | null | undefined;
106
+ }>;
107
+ export type GetPostmanCollectionIdInput = z.infer<typeof GetPostmanCollectionIdInputSchema>;
88
108
  export declare const GetDocsStatusInputSchema: z.ZodObject<{
89
109
  domain: z.ZodString;
90
110
  orgId: z.ZodString;
@@ -262,28 +282,40 @@ export declare const UpdateDeploymentStatusResponseSchema: z.ZodObject<{
262
282
  success: boolean;
263
283
  }>;
264
284
  export type UpdateDeploymentStatusResponse = z.infer<typeof UpdateDeploymentStatusResponseSchema>;
285
+ export declare const GetPostmanCollectionIdResponseSchema: z.ZodObject<{
286
+ postmanCollectionId: z.ZodNullable<z.ZodString>;
287
+ }, "strip", z.ZodTypeAny, {
288
+ postmanCollectionId: string | null;
289
+ }, {
290
+ postmanCollectionId: string | null;
291
+ }>;
292
+ export type GetPostmanCollectionIdResponse = z.infer<typeof GetPostmanCollectionIdResponseSchema>;
265
293
  export declare const docsDeploymentContract: {
266
294
  registerDocsSite: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
267
295
  domain: z.ZodString;
268
296
  orgId: z.ZodString;
269
297
  basepath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
270
298
  previewUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
299
+ postmanCollectionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
271
300
  }, "strip", z.ZodTypeAny, {
272
301
  orgId: string;
273
302
  domain: string;
274
303
  previewUrl?: string | null | undefined;
275
304
  basepath?: string | null | undefined;
305
+ postmanCollectionId?: string | null | undefined;
276
306
  }, {
277
307
  orgId: string;
278
308
  domain: string;
279
309
  previewUrl?: string | null | undefined;
280
310
  basepath?: string | null | undefined;
311
+ postmanCollectionId?: string | null | undefined;
281
312
  }>, z.ZodObject<{
282
313
  id: z.ZodString;
283
314
  orgId: z.ZodString;
284
315
  domain: z.ZodString;
285
316
  basepath: z.ZodString;
286
317
  previewUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
318
+ postmanCollectionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
287
319
  status: z.ZodEnum<["PUBLISHING", "LIVE", "UNPUBLISHED", "ERROR"]>;
288
320
  createdAt: z.ZodString;
289
321
  updatedAt: z.ZodString;
@@ -296,6 +328,7 @@ export declare const docsDeploymentContract: {
296
328
  createdAt: string;
297
329
  basepath: string;
298
330
  previewUrl?: string | null | undefined;
331
+ postmanCollectionId?: string | null | undefined;
299
332
  }, {
300
333
  status: "PUBLISHING" | "LIVE" | "UNPUBLISHED" | "ERROR";
301
334
  orgId: string;
@@ -305,6 +338,7 @@ export declare const docsDeploymentContract: {
305
338
  createdAt: string;
306
339
  basepath: string;
307
340
  previewUrl?: string | null | undefined;
341
+ postmanCollectionId?: string | null | undefined;
308
342
  }>, Record<never, never>, Record<never, never>>;
309
343
  getDocsStatus: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
310
344
  domain: z.ZodString;
@@ -346,6 +380,7 @@ export declare const docsDeploymentContract: {
346
380
  domain: z.ZodString;
347
381
  basepath: z.ZodString;
348
382
  previewUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
383
+ postmanCollectionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
349
384
  status: z.ZodEnum<["PUBLISHING", "LIVE", "UNPUBLISHED", "ERROR"]>;
350
385
  createdAt: z.ZodString;
351
386
  updatedAt: z.ZodString;
@@ -358,6 +393,7 @@ export declare const docsDeploymentContract: {
358
393
  createdAt: string;
359
394
  basepath: string;
360
395
  previewUrl?: string | null | undefined;
396
+ postmanCollectionId?: string | null | undefined;
361
397
  }, {
362
398
  status: "PUBLISHING" | "LIVE" | "UNPUBLISHED" | "ERROR";
363
399
  orgId: string;
@@ -367,6 +403,7 @@ export declare const docsDeploymentContract: {
367
403
  createdAt: string;
368
404
  basepath: string;
369
405
  previewUrl?: string | null | undefined;
406
+ postmanCollectionId?: string | null | undefined;
370
407
  }>, Record<never, never>, Record<never, never>>;
371
408
  createDeployment: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
372
409
  domain: z.ZodString;
@@ -497,5 +534,24 @@ export declare const docsDeploymentContract: {
497
534
  updatedBy?: string | null | undefined;
498
535
  }[];
499
536
  }>, Record<never, never>, Record<never, never>>;
537
+ getPostmanCollectionId: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
538
+ orgId: z.ZodString;
539
+ domain: z.ZodString;
540
+ basepath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
541
+ }, "strip", z.ZodTypeAny, {
542
+ orgId: string;
543
+ domain: string;
544
+ basepath?: string | null | undefined;
545
+ }, {
546
+ orgId: string;
547
+ domain: string;
548
+ basepath?: string | null | undefined;
549
+ }>, z.ZodObject<{
550
+ postmanCollectionId: z.ZodNullable<z.ZodString>;
551
+ }, "strip", z.ZodTypeAny, {
552
+ postmanCollectionId: string | null;
553
+ }, {
554
+ postmanCollectionId: string | null;
555
+ }>, Record<never, never>, Record<never, never>>;
500
556
  };
501
557
  //# sourceMappingURL=contract.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"contract.d.ts","sourceRoot":"","sources":["../../../../src/orpc-client/docs-deployment/contract.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAIzB,eAAO,MAAM,0BAA0B,2DAAyD,CAAC;AACjG,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAI9E,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;EASzB,CAAC;AACH,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAEtD,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAY/B,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAIlE,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;EAKtC,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEhF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;EAInC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;EAKnC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;EAOtC,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEhF,eAAO,MAAM,iCAAiC;;;;;;;;;;;;EAI5C,CAAC;AACH,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAC;AAE5F,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;EAKxC,CAAC;AACH,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AAIpF,eAAO,MAAM,2BAA2B;;;;;;EAEtC,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEhF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE3C,CAAC;AACH,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC;AAE1F,eAAO,MAAM,8BAA8B;;;;;;EAEzC,CAAC;AACH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC;AAEtF,eAAO,MAAM,oCAAoC;;;;;;EAE/C,CAAC;AACH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oCAAoC,CAAC,CAAC;AAIlG,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2BlC,CAAC"}
1
+ {"version":3,"file":"contract.d.ts","sourceRoot":"","sources":["../../../../src/orpc-client/docs-deployment/contract.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fern-api/fdr-sdk",
3
- "version": "0.147.7-42e90f954d",
3
+ "version": "0.147.7-d81db6be8b",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/fern-api/fern-platform.git",
@@ -99,7 +99,7 @@
99
99
  "ts-essentials": "^10.0.4",
100
100
  "url-join": "^5.0.0",
101
101
  "zod": "^3.25.49",
102
- "@fern-api/ui-core-utils": "0.147.7-42e90f954d"
102
+ "@fern-api/ui-core-utils": "0.147.7-d81db6be8b"
103
103
  },
104
104
  "devDependencies": {
105
105
  "@babel/core": "^7.26.9",