@fern-api/fdr-sdk 1.2.66-2ec4f56478 → 1.2.66-3d8402a3a1
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.
- package/dist/js/client/FdrClient.js +13 -1
- package/dist/js/client/FdrClient.js.map +1 -1
- package/dist/js/client/FdrClient.mjs +13 -1
- package/dist/js/client/FdrClient.mjs.map +1 -1
- package/dist/js/index.js +13 -1
- package/dist/js/index.js.map +1 -1
- package/dist/js/index.mjs +13 -1
- package/dist/js/index.mjs.map +1 -1
- package/dist/js/orpc-client.js +30 -1
- package/dist/js/orpc-client.js.map +1 -1
- package/dist/js/orpc-client.mjs +27 -1
- package/dist/js/orpc-client.mjs.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/orpc-client/docs-ledger/contract.d.ts +78 -0
- package/dist/types/orpc-client/docs-ledger/contract.d.ts.map +1 -1
- package/dist/types/orpc-client/docs-ledger/ledger-manifest.d.ts +11992 -0
- package/dist/types/orpc-client/docs-ledger/ledger-manifest.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -6787,12 +6787,20 @@ export declare const LedgerFileArtifactMetadataSchema: z.ZodObject<{
|
|
|
6787
6787
|
height: z.ZodOptional<z.ZodNumber>;
|
|
6788
6788
|
blurDataURL: z.ZodOptional<z.ZodString>;
|
|
6789
6789
|
}, z.ZodTypeAny, "passthrough">>;
|
|
6790
|
+
export declare const LedgerStructuralRedirectKindSchema: z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>;
|
|
6791
|
+
export declare const LedgerRedirectKindSchema: z.ZodEnum<["structural", "link"]>;
|
|
6790
6792
|
export declare const LedgerRedirectMetadataSchema: z.ZodObject<{
|
|
6791
6793
|
href: z.ZodOptional<z.ZodString>;
|
|
6794
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
6795
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
6792
6796
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
6793
6797
|
href: z.ZodOptional<z.ZodString>;
|
|
6798
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
6799
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
6794
6800
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
6795
6801
|
href: z.ZodOptional<z.ZodString>;
|
|
6802
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
6803
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
6796
6804
|
}, z.ZodTypeAny, "passthrough">>;
|
|
6797
6805
|
export declare const LedgerArtifactMetadataSchema: z.ZodUnion<[z.ZodObject<{
|
|
6798
6806
|
pageId: z.ZodOptional<z.ZodString>;
|
|
@@ -7339,10 +7347,16 @@ export declare const LedgerArtifactMetadataSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7339
7347
|
blurDataURL: z.ZodOptional<z.ZodString>;
|
|
7340
7348
|
}, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
|
|
7341
7349
|
href: z.ZodOptional<z.ZodString>;
|
|
7350
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
7351
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
7342
7352
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
7343
7353
|
href: z.ZodOptional<z.ZodString>;
|
|
7354
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
7355
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
7344
7356
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
7345
7357
|
href: z.ZodOptional<z.ZodString>;
|
|
7358
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
7359
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
7346
7360
|
}, z.ZodTypeAny, "passthrough">>]>;
|
|
7347
7361
|
export type LedgerArtifactMetadata = z.infer<typeof LedgerArtifactMetadataSchema>;
|
|
7348
7362
|
/**
|
|
@@ -7998,10 +8012,16 @@ export declare const LEDGER_ARTIFACT_METADATA_SCHEMAS: {
|
|
|
7998
8012
|
}, z.ZodTypeAny, "passthrough">>;
|
|
7999
8013
|
readonly redirect: z.ZodObject<{
|
|
8000
8014
|
href: z.ZodOptional<z.ZodString>;
|
|
8015
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
8016
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
8001
8017
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
8002
8018
|
href: z.ZodOptional<z.ZodString>;
|
|
8019
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
8020
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
8003
8021
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
8004
8022
|
href: z.ZodOptional<z.ZodString>;
|
|
8023
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
8024
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
8005
8025
|
}, z.ZodTypeAny, "passthrough">>;
|
|
8006
8026
|
};
|
|
8007
8027
|
/**
|
|
@@ -9237,16 +9257,24 @@ export declare const LedgerNavRouteSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
9237
9257
|
type: z.ZodLiteral<"redirect">;
|
|
9238
9258
|
metadata: z.ZodObject<{
|
|
9239
9259
|
href: z.ZodOptional<z.ZodString>;
|
|
9260
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
9261
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
9240
9262
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
9241
9263
|
href: z.ZodOptional<z.ZodString>;
|
|
9264
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
9265
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
9242
9266
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
9243
9267
|
href: z.ZodOptional<z.ZodString>;
|
|
9268
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
9269
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
9244
9270
|
}, z.ZodTypeAny, "passthrough">>;
|
|
9245
9271
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
9246
9272
|
type: "redirect";
|
|
9247
9273
|
hidden: boolean;
|
|
9248
9274
|
metadata: {
|
|
9249
9275
|
href?: string | undefined;
|
|
9276
|
+
redirectKind?: "link" | "structural" | undefined;
|
|
9277
|
+
structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
|
|
9250
9278
|
} & {
|
|
9251
9279
|
[k: string]: unknown;
|
|
9252
9280
|
};
|
|
@@ -9258,6 +9286,8 @@ export declare const LedgerNavRouteSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
9258
9286
|
hidden: boolean;
|
|
9259
9287
|
metadata: {
|
|
9260
9288
|
href?: string | undefined;
|
|
9289
|
+
redirectKind?: "link" | "structural" | undefined;
|
|
9290
|
+
structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
|
|
9261
9291
|
} & {
|
|
9262
9292
|
[k: string]: unknown;
|
|
9263
9293
|
};
|
|
@@ -64477,16 +64507,24 @@ export declare const NavResponseSchema: z.ZodObject<{
|
|
|
64477
64507
|
type: z.ZodLiteral<"redirect">;
|
|
64478
64508
|
metadata: z.ZodObject<{
|
|
64479
64509
|
href: z.ZodOptional<z.ZodString>;
|
|
64510
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
64511
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
64480
64512
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
64481
64513
|
href: z.ZodOptional<z.ZodString>;
|
|
64514
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
64515
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
64482
64516
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
64483
64517
|
href: z.ZodOptional<z.ZodString>;
|
|
64518
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
64519
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
64484
64520
|
}, z.ZodTypeAny, "passthrough">>;
|
|
64485
64521
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
64486
64522
|
type: "redirect";
|
|
64487
64523
|
hidden: boolean;
|
|
64488
64524
|
metadata: {
|
|
64489
64525
|
href?: string | undefined;
|
|
64526
|
+
redirectKind?: "link" | "structural" | undefined;
|
|
64527
|
+
structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
|
|
64490
64528
|
} & {
|
|
64491
64529
|
[k: string]: unknown;
|
|
64492
64530
|
};
|
|
@@ -64498,6 +64536,8 @@ export declare const NavResponseSchema: z.ZodObject<{
|
|
|
64498
64536
|
hidden: boolean;
|
|
64499
64537
|
metadata: {
|
|
64500
64538
|
href?: string | undefined;
|
|
64539
|
+
redirectKind?: "link" | "structural" | undefined;
|
|
64540
|
+
structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
|
|
64501
64541
|
} & {
|
|
64502
64542
|
[k: string]: unknown;
|
|
64503
64543
|
};
|
|
@@ -64757,6 +64797,8 @@ export declare const NavResponseSchema: z.ZodObject<{
|
|
|
64757
64797
|
hidden: boolean;
|
|
64758
64798
|
metadata: {
|
|
64759
64799
|
href?: string | undefined;
|
|
64800
|
+
redirectKind?: "link" | "structural" | undefined;
|
|
64801
|
+
structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
|
|
64760
64802
|
} & {
|
|
64761
64803
|
[k: string]: unknown;
|
|
64762
64804
|
};
|
|
@@ -65016,6 +65058,8 @@ export declare const NavResponseSchema: z.ZodObject<{
|
|
|
65016
65058
|
hidden: boolean;
|
|
65017
65059
|
metadata: {
|
|
65018
65060
|
href?: string | undefined;
|
|
65061
|
+
redirectKind?: "link" | "structural" | undefined;
|
|
65062
|
+
structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
|
|
65019
65063
|
} & {
|
|
65020
65064
|
[k: string]: unknown;
|
|
65021
65065
|
};
|
|
@@ -72669,10 +72713,16 @@ export declare const RouteContextResponseSchema: z.ZodDiscriminatedUnion<"artifa
|
|
|
72669
72713
|
artifactType: z.ZodLiteral<"redirect">;
|
|
72670
72714
|
artifactMetadata: z.ZodObject<{
|
|
72671
72715
|
href: z.ZodOptional<z.ZodString>;
|
|
72716
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
72717
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
72672
72718
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
72673
72719
|
href: z.ZodOptional<z.ZodString>;
|
|
72720
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
72721
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
72674
72722
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
72675
72723
|
href: z.ZodOptional<z.ZodString>;
|
|
72724
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
72725
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
72676
72726
|
}, z.ZodTypeAny, "passthrough">>;
|
|
72677
72727
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
72678
72728
|
version: {
|
|
@@ -72772,6 +72822,8 @@ export declare const RouteContextResponseSchema: z.ZodDiscriminatedUnion<"artifa
|
|
|
72772
72822
|
artifactType: "redirect";
|
|
72773
72823
|
artifactMetadata: {
|
|
72774
72824
|
href?: string | undefined;
|
|
72825
|
+
redirectKind?: "link" | "structural" | undefined;
|
|
72826
|
+
structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
|
|
72775
72827
|
} & {
|
|
72776
72828
|
[k: string]: unknown;
|
|
72777
72829
|
};
|
|
@@ -72875,6 +72927,8 @@ export declare const RouteContextResponseSchema: z.ZodDiscriminatedUnion<"artifa
|
|
|
72875
72927
|
artifactType: "redirect";
|
|
72876
72928
|
artifactMetadata: {
|
|
72877
72929
|
href?: string | undefined;
|
|
72930
|
+
redirectKind?: "link" | "structural" | undefined;
|
|
72931
|
+
structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
|
|
72878
72932
|
} & {
|
|
72879
72933
|
[k: string]: unknown;
|
|
72880
72934
|
};
|
|
@@ -84305,16 +84359,24 @@ export declare const docsLedgerReadContract: {
|
|
|
84305
84359
|
type: z.ZodLiteral<"redirect">;
|
|
84306
84360
|
metadata: z.ZodObject<{
|
|
84307
84361
|
href: z.ZodOptional<z.ZodString>;
|
|
84362
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
84363
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
84308
84364
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
84309
84365
|
href: z.ZodOptional<z.ZodString>;
|
|
84366
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
84367
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
84310
84368
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
84311
84369
|
href: z.ZodOptional<z.ZodString>;
|
|
84370
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
84371
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
84312
84372
|
}, z.ZodTypeAny, "passthrough">>;
|
|
84313
84373
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
84314
84374
|
type: "redirect";
|
|
84315
84375
|
hidden: boolean;
|
|
84316
84376
|
metadata: {
|
|
84317
84377
|
href?: string | undefined;
|
|
84378
|
+
redirectKind?: "link" | "structural" | undefined;
|
|
84379
|
+
structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
|
|
84318
84380
|
} & {
|
|
84319
84381
|
[k: string]: unknown;
|
|
84320
84382
|
};
|
|
@@ -84326,6 +84388,8 @@ export declare const docsLedgerReadContract: {
|
|
|
84326
84388
|
hidden: boolean;
|
|
84327
84389
|
metadata: {
|
|
84328
84390
|
href?: string | undefined;
|
|
84391
|
+
redirectKind?: "link" | "structural" | undefined;
|
|
84392
|
+
structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
|
|
84329
84393
|
} & {
|
|
84330
84394
|
[k: string]: unknown;
|
|
84331
84395
|
};
|
|
@@ -84585,6 +84649,8 @@ export declare const docsLedgerReadContract: {
|
|
|
84585
84649
|
hidden: boolean;
|
|
84586
84650
|
metadata: {
|
|
84587
84651
|
href?: string | undefined;
|
|
84652
|
+
redirectKind?: "link" | "structural" | undefined;
|
|
84653
|
+
structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
|
|
84588
84654
|
} & {
|
|
84589
84655
|
[k: string]: unknown;
|
|
84590
84656
|
};
|
|
@@ -84844,6 +84910,8 @@ export declare const docsLedgerReadContract: {
|
|
|
84844
84910
|
hidden: boolean;
|
|
84845
84911
|
metadata: {
|
|
84846
84912
|
href?: string | undefined;
|
|
84913
|
+
redirectKind?: "link" | "structural" | undefined;
|
|
84914
|
+
structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
|
|
84847
84915
|
} & {
|
|
84848
84916
|
[k: string]: unknown;
|
|
84849
84917
|
};
|
|
@@ -92490,10 +92558,16 @@ export declare const docsLedgerReadContract: {
|
|
|
92490
92558
|
artifactType: z.ZodLiteral<"redirect">;
|
|
92491
92559
|
artifactMetadata: z.ZodObject<{
|
|
92492
92560
|
href: z.ZodOptional<z.ZodString>;
|
|
92561
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
92562
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
92493
92563
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
92494
92564
|
href: z.ZodOptional<z.ZodString>;
|
|
92565
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
92566
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
92495
92567
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
92496
92568
|
href: z.ZodOptional<z.ZodString>;
|
|
92569
|
+
redirectKind: z.ZodOptional<z.ZodEnum<["structural", "link"]>>;
|
|
92570
|
+
structuralKind: z.ZodOptional<z.ZodEnum<["root", "product", "version", "variant", "tab", "section", "api-section"]>>;
|
|
92497
92571
|
}, z.ZodTypeAny, "passthrough">>;
|
|
92498
92572
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
92499
92573
|
version: {
|
|
@@ -92593,6 +92667,8 @@ export declare const docsLedgerReadContract: {
|
|
|
92593
92667
|
artifactType: "redirect";
|
|
92594
92668
|
artifactMetadata: {
|
|
92595
92669
|
href?: string | undefined;
|
|
92670
|
+
redirectKind?: "link" | "structural" | undefined;
|
|
92671
|
+
structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
|
|
92596
92672
|
} & {
|
|
92597
92673
|
[k: string]: unknown;
|
|
92598
92674
|
};
|
|
@@ -92696,6 +92772,8 @@ export declare const docsLedgerReadContract: {
|
|
|
92696
92772
|
artifactType: "redirect";
|
|
92697
92773
|
artifactMetadata: {
|
|
92698
92774
|
href?: string | undefined;
|
|
92775
|
+
redirectKind?: "link" | "structural" | undefined;
|
|
92776
|
+
structuralKind?: "version" | "root" | "product" | "variant" | "tab" | "section" | "api-section" | undefined;
|
|
92699
92777
|
} & {
|
|
92700
92778
|
[k: string]: unknown;
|
|
92701
92779
|
};
|