@fern-api/fdr-sdk 1.2.74-631bf52dba → 1.2.74-68c3d5964d
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 +43 -1
- package/dist/js/client/FdrClient.js.map +1 -1
- package/dist/js/client/FdrClient.mjs +43 -1
- package/dist/js/client/FdrClient.mjs.map +1 -1
- package/dist/js/index.js +43 -1
- package/dist/js/index.js.map +1 -1
- package/dist/js/index.mjs +43 -1
- package/dist/js/index.mjs.map +1 -1
- package/dist/js/orpc-client.js +53 -1
- package/dist/js/orpc-client.js.map +1 -1
- package/dist/js/orpc-client.mjs +48 -1
- package/dist/js/orpc-client.mjs.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/orpc-client/dashboard-agent/contract.d.ts +257 -0
- package/dist/types/orpc-client/dashboard-agent/contract.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -55,6 +55,17 @@ export declare const DashboardListOrgMembersInputSchema: z.ZodObject<{
|
|
|
55
55
|
includeFernEmployees?: boolean | undefined;
|
|
56
56
|
}>;
|
|
57
57
|
export type DashboardListOrgMembersInput = z.infer<typeof DashboardListOrgMembersInputSchema>;
|
|
58
|
+
export declare const DashboardGetSiteConfigInputSchema: z.ZodObject<{
|
|
59
|
+
orgId: z.ZodString;
|
|
60
|
+
domain: z.ZodString;
|
|
61
|
+
}, "strip", z.ZodTypeAny, {
|
|
62
|
+
orgId: string;
|
|
63
|
+
domain: string;
|
|
64
|
+
}, {
|
|
65
|
+
orgId: string;
|
|
66
|
+
domain: string;
|
|
67
|
+
}>;
|
|
68
|
+
export type DashboardGetSiteConfigInput = z.infer<typeof DashboardGetSiteConfigInputSchema>;
|
|
58
69
|
/** Metrics backed by concrete `posthog.events` aggregates (no invented columns). */
|
|
59
70
|
export declare const AnalyticsMetricSchema: z.ZodEnum<["pageviews", "visitors", "sessions", "404s"]>;
|
|
60
71
|
export type AnalyticsMetric = z.infer<typeof AnalyticsMetricSchema>;
|
|
@@ -586,6 +597,136 @@ export declare const OrgMembersResponseSchema: z.ZodObject<{
|
|
|
586
597
|
}[];
|
|
587
598
|
}>;
|
|
588
599
|
export type OrgMembersResponse = z.infer<typeof OrgMembersResponseSchema>;
|
|
600
|
+
export declare const SiteGitRepositorySchema: z.ZodObject<{
|
|
601
|
+
gitUrl: z.ZodString;
|
|
602
|
+
provider: z.ZodEnum<["github", "gitlab", "other"]>;
|
|
603
|
+
/** `owner/repo` when the git url points at GitHub, else null. */
|
|
604
|
+
githubRepository: z.ZodNullable<z.ZodString>;
|
|
605
|
+
branch: z.ZodNullable<z.ZodString>;
|
|
606
|
+
}, "strip", z.ZodTypeAny, {
|
|
607
|
+
gitUrl: string;
|
|
608
|
+
provider: "github" | "gitlab" | "other";
|
|
609
|
+
githubRepository: string | null;
|
|
610
|
+
branch: string | null;
|
|
611
|
+
}, {
|
|
612
|
+
gitUrl: string;
|
|
613
|
+
provider: "github" | "gitlab" | "other";
|
|
614
|
+
githubRepository: string | null;
|
|
615
|
+
branch: string | null;
|
|
616
|
+
}>;
|
|
617
|
+
export type SiteGitRepository = z.infer<typeof SiteGitRepositorySchema>;
|
|
618
|
+
export declare const SiteConfigResponseSchema: z.ZodObject<{
|
|
619
|
+
domain: z.ZodString;
|
|
620
|
+
basepath: z.ZodNullable<z.ZodString>;
|
|
621
|
+
status: z.ZodNullable<z.ZodString>;
|
|
622
|
+
isPreview: z.ZodBoolean;
|
|
623
|
+
/** The git repository connected to this docs site, when one exists. */
|
|
624
|
+
gitRepository: z.ZodNullable<z.ZodObject<{
|
|
625
|
+
gitUrl: z.ZodString;
|
|
626
|
+
provider: z.ZodEnum<["github", "gitlab", "other"]>;
|
|
627
|
+
/** `owner/repo` when the git url points at GitHub, else null. */
|
|
628
|
+
githubRepository: z.ZodNullable<z.ZodString>;
|
|
629
|
+
branch: z.ZodNullable<z.ZodString>;
|
|
630
|
+
}, "strip", z.ZodTypeAny, {
|
|
631
|
+
gitUrl: string;
|
|
632
|
+
provider: "github" | "gitlab" | "other";
|
|
633
|
+
githubRepository: string | null;
|
|
634
|
+
branch: string | null;
|
|
635
|
+
}, {
|
|
636
|
+
gitUrl: string;
|
|
637
|
+
provider: "github" | "gitlab" | "other";
|
|
638
|
+
githubRepository: string | null;
|
|
639
|
+
branch: string | null;
|
|
640
|
+
}>>;
|
|
641
|
+
/** True when the queried domain is a customer-owned custom domain (not *.docs.buildwithfern.com). */
|
|
642
|
+
isCustomDomain: z.ZodBoolean;
|
|
643
|
+
/** Fern CLI version that published the current deployment, when known. */
|
|
644
|
+
fernCliVersion: z.ZodNullable<z.ZodString>;
|
|
645
|
+
/** Connected Postman collection id, when one exists. */
|
|
646
|
+
postmanCollectionId: z.ZodNullable<z.ZodString>;
|
|
647
|
+
}, "strip", z.ZodTypeAny, {
|
|
648
|
+
status: string | null;
|
|
649
|
+
domain: string;
|
|
650
|
+
basepath: string | null;
|
|
651
|
+
postmanCollectionId: string | null;
|
|
652
|
+
isPreview: boolean;
|
|
653
|
+
gitRepository: {
|
|
654
|
+
gitUrl: string;
|
|
655
|
+
provider: "github" | "gitlab" | "other";
|
|
656
|
+
githubRepository: string | null;
|
|
657
|
+
branch: string | null;
|
|
658
|
+
} | null;
|
|
659
|
+
isCustomDomain: boolean;
|
|
660
|
+
fernCliVersion: string | null;
|
|
661
|
+
}, {
|
|
662
|
+
status: string | null;
|
|
663
|
+
domain: string;
|
|
664
|
+
basepath: string | null;
|
|
665
|
+
postmanCollectionId: string | null;
|
|
666
|
+
isPreview: boolean;
|
|
667
|
+
gitRepository: {
|
|
668
|
+
gitUrl: string;
|
|
669
|
+
provider: "github" | "gitlab" | "other";
|
|
670
|
+
githubRepository: string | null;
|
|
671
|
+
branch: string | null;
|
|
672
|
+
} | null;
|
|
673
|
+
isCustomDomain: boolean;
|
|
674
|
+
fernCliVersion: string | null;
|
|
675
|
+
}>;
|
|
676
|
+
export type SiteConfigResponse = z.infer<typeof SiteConfigResponseSchema>;
|
|
677
|
+
export declare const SitePasswordProtectionSchema: z.ZodObject<{
|
|
678
|
+
enabled: z.ZodBoolean;
|
|
679
|
+
/** Number of configured passwords. Passwords themselves are never returned. */
|
|
680
|
+
passwordCount: z.ZodNumber;
|
|
681
|
+
}, "strip", z.ZodTypeAny, {
|
|
682
|
+
enabled: boolean;
|
|
683
|
+
passwordCount: number;
|
|
684
|
+
}, {
|
|
685
|
+
enabled: boolean;
|
|
686
|
+
passwordCount: number;
|
|
687
|
+
}>;
|
|
688
|
+
export type SitePasswordProtection = z.infer<typeof SitePasswordProtectionSchema>;
|
|
689
|
+
export declare const SiteSettingsResponseSchema: z.ZodObject<{
|
|
690
|
+
domain: z.ZodString;
|
|
691
|
+
basepath: z.ZodNullable<z.ZodString>;
|
|
692
|
+
/** Default basepath route for multi-basepath domains, when configured. */
|
|
693
|
+
defaultBasepath: z.ZodNullable<z.ZodString>;
|
|
694
|
+
/** Basepaths routed on this domain, when configured. */
|
|
695
|
+
basepaths: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
696
|
+
searchBehavior: z.ZodNullable<z.ZodEnum<["hierarchical", "unified"]>>;
|
|
697
|
+
passwordProtection: z.ZodObject<{
|
|
698
|
+
enabled: z.ZodBoolean;
|
|
699
|
+
/** Number of configured passwords. Passwords themselves are never returned. */
|
|
700
|
+
passwordCount: z.ZodNumber;
|
|
701
|
+
}, "strip", z.ZodTypeAny, {
|
|
702
|
+
enabled: boolean;
|
|
703
|
+
passwordCount: number;
|
|
704
|
+
}, {
|
|
705
|
+
enabled: boolean;
|
|
706
|
+
passwordCount: number;
|
|
707
|
+
}>;
|
|
708
|
+
}, "strip", z.ZodTypeAny, {
|
|
709
|
+
domain: string;
|
|
710
|
+
basepath: string | null;
|
|
711
|
+
defaultBasepath: string | null;
|
|
712
|
+
basepaths: string[] | null;
|
|
713
|
+
searchBehavior: "hierarchical" | "unified" | null;
|
|
714
|
+
passwordProtection: {
|
|
715
|
+
enabled: boolean;
|
|
716
|
+
passwordCount: number;
|
|
717
|
+
};
|
|
718
|
+
}, {
|
|
719
|
+
domain: string;
|
|
720
|
+
basepath: string | null;
|
|
721
|
+
defaultBasepath: string | null;
|
|
722
|
+
basepaths: string[] | null;
|
|
723
|
+
searchBehavior: "hierarchical" | "unified" | null;
|
|
724
|
+
passwordProtection: {
|
|
725
|
+
enabled: boolean;
|
|
726
|
+
passwordCount: number;
|
|
727
|
+
};
|
|
728
|
+
}>;
|
|
729
|
+
export type SiteSettingsResponse = z.infer<typeof SiteSettingsResponseSchema>;
|
|
589
730
|
export declare const dashboardAgentContract: {
|
|
590
731
|
getTrafficSummary: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
591
732
|
orgId: z.ZodString;
|
|
@@ -1158,5 +1299,121 @@ export declare const dashboardAgentContract: {
|
|
|
1158
1299
|
roles: string[];
|
|
1159
1300
|
}[];
|
|
1160
1301
|
}>, Record<never, never>, Record<never, never>>;
|
|
1302
|
+
getSiteConfig: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
1303
|
+
orgId: z.ZodString;
|
|
1304
|
+
domain: z.ZodString;
|
|
1305
|
+
}, "strip", z.ZodTypeAny, {
|
|
1306
|
+
orgId: string;
|
|
1307
|
+
domain: string;
|
|
1308
|
+
}, {
|
|
1309
|
+
orgId: string;
|
|
1310
|
+
domain: string;
|
|
1311
|
+
}>, z.ZodObject<{
|
|
1312
|
+
domain: z.ZodString;
|
|
1313
|
+
basepath: z.ZodNullable<z.ZodString>;
|
|
1314
|
+
status: z.ZodNullable<z.ZodString>;
|
|
1315
|
+
isPreview: z.ZodBoolean;
|
|
1316
|
+
/** The git repository connected to this docs site, when one exists. */
|
|
1317
|
+
gitRepository: z.ZodNullable<z.ZodObject<{
|
|
1318
|
+
gitUrl: z.ZodString;
|
|
1319
|
+
provider: z.ZodEnum<["github", "gitlab", "other"]>;
|
|
1320
|
+
/** `owner/repo` when the git url points at GitHub, else null. */
|
|
1321
|
+
githubRepository: z.ZodNullable<z.ZodString>;
|
|
1322
|
+
branch: z.ZodNullable<z.ZodString>;
|
|
1323
|
+
}, "strip", z.ZodTypeAny, {
|
|
1324
|
+
gitUrl: string;
|
|
1325
|
+
provider: "github" | "gitlab" | "other";
|
|
1326
|
+
githubRepository: string | null;
|
|
1327
|
+
branch: string | null;
|
|
1328
|
+
}, {
|
|
1329
|
+
gitUrl: string;
|
|
1330
|
+
provider: "github" | "gitlab" | "other";
|
|
1331
|
+
githubRepository: string | null;
|
|
1332
|
+
branch: string | null;
|
|
1333
|
+
}>>;
|
|
1334
|
+
/** True when the queried domain is a customer-owned custom domain (not *.docs.buildwithfern.com). */
|
|
1335
|
+
isCustomDomain: z.ZodBoolean;
|
|
1336
|
+
/** Fern CLI version that published the current deployment, when known. */
|
|
1337
|
+
fernCliVersion: z.ZodNullable<z.ZodString>;
|
|
1338
|
+
/** Connected Postman collection id, when one exists. */
|
|
1339
|
+
postmanCollectionId: z.ZodNullable<z.ZodString>;
|
|
1340
|
+
}, "strip", z.ZodTypeAny, {
|
|
1341
|
+
status: string | null;
|
|
1342
|
+
domain: string;
|
|
1343
|
+
basepath: string | null;
|
|
1344
|
+
postmanCollectionId: string | null;
|
|
1345
|
+
isPreview: boolean;
|
|
1346
|
+
gitRepository: {
|
|
1347
|
+
gitUrl: string;
|
|
1348
|
+
provider: "github" | "gitlab" | "other";
|
|
1349
|
+
githubRepository: string | null;
|
|
1350
|
+
branch: string | null;
|
|
1351
|
+
} | null;
|
|
1352
|
+
isCustomDomain: boolean;
|
|
1353
|
+
fernCliVersion: string | null;
|
|
1354
|
+
}, {
|
|
1355
|
+
status: string | null;
|
|
1356
|
+
domain: string;
|
|
1357
|
+
basepath: string | null;
|
|
1358
|
+
postmanCollectionId: string | null;
|
|
1359
|
+
isPreview: boolean;
|
|
1360
|
+
gitRepository: {
|
|
1361
|
+
gitUrl: string;
|
|
1362
|
+
provider: "github" | "gitlab" | "other";
|
|
1363
|
+
githubRepository: string | null;
|
|
1364
|
+
branch: string | null;
|
|
1365
|
+
} | null;
|
|
1366
|
+
isCustomDomain: boolean;
|
|
1367
|
+
fernCliVersion: string | null;
|
|
1368
|
+
}>, Record<never, never>, Record<never, never>>;
|
|
1369
|
+
getSiteSettings: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
1370
|
+
orgId: z.ZodString;
|
|
1371
|
+
domain: z.ZodString;
|
|
1372
|
+
}, "strip", z.ZodTypeAny, {
|
|
1373
|
+
orgId: string;
|
|
1374
|
+
domain: string;
|
|
1375
|
+
}, {
|
|
1376
|
+
orgId: string;
|
|
1377
|
+
domain: string;
|
|
1378
|
+
}>, z.ZodObject<{
|
|
1379
|
+
domain: z.ZodString;
|
|
1380
|
+
basepath: z.ZodNullable<z.ZodString>;
|
|
1381
|
+
/** Default basepath route for multi-basepath domains, when configured. */
|
|
1382
|
+
defaultBasepath: z.ZodNullable<z.ZodString>;
|
|
1383
|
+
/** Basepaths routed on this domain, when configured. */
|
|
1384
|
+
basepaths: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
1385
|
+
searchBehavior: z.ZodNullable<z.ZodEnum<["hierarchical", "unified"]>>;
|
|
1386
|
+
passwordProtection: z.ZodObject<{
|
|
1387
|
+
enabled: z.ZodBoolean;
|
|
1388
|
+
/** Number of configured passwords. Passwords themselves are never returned. */
|
|
1389
|
+
passwordCount: z.ZodNumber;
|
|
1390
|
+
}, "strip", z.ZodTypeAny, {
|
|
1391
|
+
enabled: boolean;
|
|
1392
|
+
passwordCount: number;
|
|
1393
|
+
}, {
|
|
1394
|
+
enabled: boolean;
|
|
1395
|
+
passwordCount: number;
|
|
1396
|
+
}>;
|
|
1397
|
+
}, "strip", z.ZodTypeAny, {
|
|
1398
|
+
domain: string;
|
|
1399
|
+
basepath: string | null;
|
|
1400
|
+
defaultBasepath: string | null;
|
|
1401
|
+
basepaths: string[] | null;
|
|
1402
|
+
searchBehavior: "hierarchical" | "unified" | null;
|
|
1403
|
+
passwordProtection: {
|
|
1404
|
+
enabled: boolean;
|
|
1405
|
+
passwordCount: number;
|
|
1406
|
+
};
|
|
1407
|
+
}, {
|
|
1408
|
+
domain: string;
|
|
1409
|
+
basepath: string | null;
|
|
1410
|
+
defaultBasepath: string | null;
|
|
1411
|
+
basepaths: string[] | null;
|
|
1412
|
+
searchBehavior: "hierarchical" | "unified" | null;
|
|
1413
|
+
passwordProtection: {
|
|
1414
|
+
enabled: boolean;
|
|
1415
|
+
passwordCount: number;
|
|
1416
|
+
};
|
|
1417
|
+
}>, Record<never, never>, Record<never, never>>;
|
|
1161
1418
|
};
|
|
1162
1419
|
//# sourceMappingURL=contract.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contract.d.ts","sourceRoot":"","sources":["../../../../src/orpc-client/dashboard-agent/contract.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAIzB,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;EAK9C,CAAC;AACH,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAC;AAEhG,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;EAMvC,CAAC;AACH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAElF,eAAO,MAAM,qCAAqC;;;;;;EAEhD,CAAC;AACH,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qCAAqC,CAAC,CAAC;AAEpG,eAAO,MAAM,kCAAkC;;;;;;;;;EAG7C,CAAC;AACH,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kCAAkC,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"contract.d.ts","sourceRoot":"","sources":["../../../../src/orpc-client/dashboard-agent/contract.ts"],"names":[],"mappings":"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"}
|