@fern-api/fdr-sdk 1.2.76-0ab42fc4bc → 1.2.76-2942df3aab

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.
@@ -11,6 +11,7 @@ export * from "./editor-snapshot/index.js";
11
11
  export * from "./files/index.js";
12
12
  export * from "./generators/index.js";
13
13
  export * from "./git/index.js";
14
+ export * from "./org-config/index.js";
14
15
  export * from "./pdf-export/index.js";
15
16
  export * from "./sdks/index.js";
16
17
  export * from "./shared.js";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/orpc-client/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,sBAAsB,CAAC;AACrC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,kBAAkB,CAAC;AACjC,cAAc,uBAAuB,CAAC;AACtC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AACtC,cAAc,iBAAiB,CAAC;AAChC,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/orpc-client/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,sBAAsB,CAAC;AACrC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,kBAAkB,CAAC;AACjC,cAAc,uBAAuB,CAAC;AACtC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,iBAAiB,CAAC;AAChC,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC"}
@@ -0,0 +1,37 @@
1
+ import * as z from "zod";
2
+ /**
3
+ * Body accepted by PUT /v2/registry/org-config/:orgId.
4
+ * Each field is optional — only supplied keys are updated.
5
+ */
6
+ export declare const UpsertOrgConfigBodySchema: z.ZodObject<{
7
+ cliVersionMin: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
8
+ cliVersionMax: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
9
+ }, "strip", z.ZodTypeAny, {
10
+ cliVersionMin?: string | null | undefined;
11
+ cliVersionMax?: string | null | undefined;
12
+ }, {
13
+ cliVersionMin?: string | null | undefined;
14
+ cliVersionMax?: string | null | undefined;
15
+ }>;
16
+ /**
17
+ * Response returned by GET /v2/registry/org-config/:orgId.
18
+ */
19
+ export declare const OrgConfigResponseSchema: z.ZodObject<{
20
+ orgId: z.ZodString;
21
+ cliVersionMin: z.ZodOptional<z.ZodString>;
22
+ cliVersionMax: z.ZodOptional<z.ZodString>;
23
+ updatedAt: z.ZodOptional<z.ZodString>;
24
+ }, "strip", z.ZodTypeAny, {
25
+ orgId: string;
26
+ updatedAt?: string | undefined;
27
+ cliVersionMin?: string | undefined;
28
+ cliVersionMax?: string | undefined;
29
+ }, {
30
+ orgId: string;
31
+ updatedAt?: string | undefined;
32
+ cliVersionMin?: string | undefined;
33
+ cliVersionMax?: string | undefined;
34
+ }>;
35
+ export type UpsertOrgConfigBody = z.infer<typeof UpsertOrgConfigBodySchema>;
36
+ export type OrgConfigResponse = z.infer<typeof OrgConfigResponseSchema>;
37
+ //# sourceMappingURL=contract.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"contract.d.ts","sourceRoot":"","sources":["../../../../src/orpc-client/org-config/contract.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAYzB;;;GAGG;AACH,eAAO,MAAM,yBAAyB;;;;;;;;;EAQpC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;EAMlC,CAAC;AAIH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC5E,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from "./contract.js";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/orpc-client/org-config/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fern-api/fdr-sdk",
3
- "version": "1.2.76-0ab42fc4bc",
3
+ "version": "1.2.76-2942df3aab",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/fern-api/fern-platform.git",