@gscdump/contracts 0.28.0 → 0.28.2
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/_chunks/schemas.d.mts +78 -78
- package/package.json +1 -1
|
@@ -725,16 +725,16 @@ declare const gscdumpUserRegistrationSchema: z.ZodObject<{
|
|
|
725
725
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
726
726
|
isNew: z.ZodOptional<z.ZodBoolean>;
|
|
727
727
|
status: z.ZodOptional<z.ZodEnum<{
|
|
728
|
-
ready: "ready";
|
|
729
728
|
provisioning: "provisioning";
|
|
729
|
+
ready: "ready";
|
|
730
730
|
}>>;
|
|
731
731
|
}, z.core.$loose>;
|
|
732
732
|
declare const gscdumpUserStatusSchema: z.ZodObject<{
|
|
733
733
|
userId: z.ZodString;
|
|
734
734
|
status: z.ZodEnum<{
|
|
735
|
+
provisioning: "provisioning";
|
|
735
736
|
ready: "ready";
|
|
736
737
|
reauth_required: "reauth_required";
|
|
737
|
-
provisioning: "provisioning";
|
|
738
738
|
}>;
|
|
739
739
|
databaseReady: z.ZodOptional<z.ZodBoolean>;
|
|
740
740
|
needsReauth: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -773,21 +773,21 @@ declare const lifecycleErrorSchema: z.ZodObject<{
|
|
|
773
773
|
}, z.core.$strip>;
|
|
774
774
|
declare const partnerLifecycleAccountSchema: z.ZodObject<{
|
|
775
775
|
status: z.ZodEnum<{
|
|
776
|
+
ready: "ready";
|
|
777
|
+
reauth_required: "reauth_required";
|
|
776
778
|
disconnected: "disconnected";
|
|
777
779
|
oauth_received: "oauth_received";
|
|
778
780
|
scope_missing: "scope_missing";
|
|
779
781
|
refresh_missing: "refresh_missing";
|
|
780
782
|
db_provisioning: "db_provisioning";
|
|
781
|
-
ready: "ready";
|
|
782
|
-
reauth_required: "reauth_required";
|
|
783
783
|
}>;
|
|
784
784
|
grantedScopes: z.ZodArray<z.ZodString>;
|
|
785
785
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
786
786
|
nextAction: z.ZodEnum<{
|
|
787
|
-
connect_google: "connect_google";
|
|
788
787
|
reconnect_google: "reconnect_google";
|
|
789
|
-
wait_for_provisioning: "wait_for_provisioning";
|
|
790
788
|
none: "none";
|
|
789
|
+
connect_google: "connect_google";
|
|
790
|
+
wait_for_provisioning: "wait_for_provisioning";
|
|
791
791
|
}>;
|
|
792
792
|
}, z.core.$loose>;
|
|
793
793
|
declare const partnerLifecycleSiteSchema: z.ZodObject<{
|
|
@@ -815,14 +815,14 @@ declare const partnerLifecycleSiteSchema: z.ZodObject<{
|
|
|
815
815
|
}, z.core.$loose>;
|
|
816
816
|
analytics: z.ZodObject<{
|
|
817
817
|
status: z.ZodEnum<{
|
|
818
|
+
queued: "queued";
|
|
818
819
|
ready: "ready";
|
|
820
|
+
failed: "failed";
|
|
819
821
|
not_registered: "not_registered";
|
|
820
|
-
queued: "queued";
|
|
821
822
|
preparing: "preparing";
|
|
822
823
|
syncing: "syncing";
|
|
823
824
|
queryable_live: "queryable_live";
|
|
824
825
|
queryable_partial: "queryable_partial";
|
|
825
|
-
failed: "failed";
|
|
826
826
|
}>;
|
|
827
827
|
progress: z.ZodObject<{
|
|
828
828
|
completed: z.ZodNumber;
|
|
@@ -832,10 +832,10 @@ declare const partnerLifecycleSiteSchema: z.ZodObject<{
|
|
|
832
832
|
}, z.core.$strip>;
|
|
833
833
|
queryable: z.ZodBoolean;
|
|
834
834
|
sourceMode: z.ZodEnum<{
|
|
835
|
-
none: "none";
|
|
836
|
-
live: "live";
|
|
837
835
|
d1: "d1";
|
|
838
836
|
r2: "r2";
|
|
837
|
+
none: "none";
|
|
838
|
+
live: "live";
|
|
839
839
|
mixed: "mixed";
|
|
840
840
|
}>;
|
|
841
841
|
syncedRange: z.ZodObject<{
|
|
@@ -850,10 +850,10 @@ declare const partnerLifecycleSiteSchema: z.ZodObject<{
|
|
|
850
850
|
}, z.core.$loose>;
|
|
851
851
|
sitemaps: z.ZodObject<{
|
|
852
852
|
status: z.ZodEnum<{
|
|
853
|
+
unknown: "unknown";
|
|
853
854
|
ready: "ready";
|
|
854
|
-
syncing: "syncing";
|
|
855
855
|
failed: "failed";
|
|
856
|
-
|
|
856
|
+
syncing: "syncing";
|
|
857
857
|
discovering: "discovering";
|
|
858
858
|
none_found: "none_found";
|
|
859
859
|
auto_submitted: "auto_submitted";
|
|
@@ -923,21 +923,21 @@ declare const partnerLifecycleResponseSchema: z.ZodObject<{
|
|
|
923
923
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
924
924
|
account: z.ZodObject<{
|
|
925
925
|
status: z.ZodEnum<{
|
|
926
|
+
ready: "ready";
|
|
927
|
+
reauth_required: "reauth_required";
|
|
926
928
|
disconnected: "disconnected";
|
|
927
929
|
oauth_received: "oauth_received";
|
|
928
930
|
scope_missing: "scope_missing";
|
|
929
931
|
refresh_missing: "refresh_missing";
|
|
930
932
|
db_provisioning: "db_provisioning";
|
|
931
|
-
ready: "ready";
|
|
932
|
-
reauth_required: "reauth_required";
|
|
933
933
|
}>;
|
|
934
934
|
grantedScopes: z.ZodArray<z.ZodString>;
|
|
935
935
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
936
936
|
nextAction: z.ZodEnum<{
|
|
937
|
-
connect_google: "connect_google";
|
|
938
937
|
reconnect_google: "reconnect_google";
|
|
939
|
-
wait_for_provisioning: "wait_for_provisioning";
|
|
940
938
|
none: "none";
|
|
939
|
+
connect_google: "connect_google";
|
|
940
|
+
wait_for_provisioning: "wait_for_provisioning";
|
|
941
941
|
}>;
|
|
942
942
|
}, z.core.$loose>;
|
|
943
943
|
sites: z.ZodArray<z.ZodObject<{
|
|
@@ -965,14 +965,14 @@ declare const partnerLifecycleResponseSchema: z.ZodObject<{
|
|
|
965
965
|
}, z.core.$loose>;
|
|
966
966
|
analytics: z.ZodObject<{
|
|
967
967
|
status: z.ZodEnum<{
|
|
968
|
+
queued: "queued";
|
|
968
969
|
ready: "ready";
|
|
970
|
+
failed: "failed";
|
|
969
971
|
not_registered: "not_registered";
|
|
970
|
-
queued: "queued";
|
|
971
972
|
preparing: "preparing";
|
|
972
973
|
syncing: "syncing";
|
|
973
974
|
queryable_live: "queryable_live";
|
|
974
975
|
queryable_partial: "queryable_partial";
|
|
975
|
-
failed: "failed";
|
|
976
976
|
}>;
|
|
977
977
|
progress: z.ZodObject<{
|
|
978
978
|
completed: z.ZodNumber;
|
|
@@ -982,10 +982,10 @@ declare const partnerLifecycleResponseSchema: z.ZodObject<{
|
|
|
982
982
|
}, z.core.$strip>;
|
|
983
983
|
queryable: z.ZodBoolean;
|
|
984
984
|
sourceMode: z.ZodEnum<{
|
|
985
|
-
none: "none";
|
|
986
|
-
live: "live";
|
|
987
985
|
d1: "d1";
|
|
988
986
|
r2: "r2";
|
|
987
|
+
none: "none";
|
|
988
|
+
live: "live";
|
|
989
989
|
mixed: "mixed";
|
|
990
990
|
}>;
|
|
991
991
|
syncedRange: z.ZodObject<{
|
|
@@ -1000,10 +1000,10 @@ declare const partnerLifecycleResponseSchema: z.ZodObject<{
|
|
|
1000
1000
|
}, z.core.$loose>;
|
|
1001
1001
|
sitemaps: z.ZodObject<{
|
|
1002
1002
|
status: z.ZodEnum<{
|
|
1003
|
+
unknown: "unknown";
|
|
1003
1004
|
ready: "ready";
|
|
1004
|
-
syncing: "syncing";
|
|
1005
1005
|
failed: "failed";
|
|
1006
|
-
|
|
1006
|
+
syncing: "syncing";
|
|
1007
1007
|
discovering: "discovering";
|
|
1008
1008
|
none_found: "none_found";
|
|
1009
1009
|
auto_submitted: "auto_submitted";
|
|
@@ -1074,9 +1074,9 @@ declare const gscdumpAvailableSiteSchema: z.ZodObject<{
|
|
|
1074
1074
|
registered: z.ZodBoolean;
|
|
1075
1075
|
siteId: z.ZodOptional<z.ZodString>;
|
|
1076
1076
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1077
|
-
syncing: "syncing";
|
|
1078
1077
|
pending: "pending";
|
|
1079
1078
|
error: "error";
|
|
1079
|
+
syncing: "syncing";
|
|
1080
1080
|
synced: "synced";
|
|
1081
1081
|
}>>>;
|
|
1082
1082
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -1093,9 +1093,9 @@ declare const gscdumpUserSiteSchema: z.ZodObject<{
|
|
|
1093
1093
|
siteId: z.ZodString;
|
|
1094
1094
|
siteUrl: z.ZodString;
|
|
1095
1095
|
syncStatus: z.ZodEnum<{
|
|
1096
|
-
syncing: "syncing";
|
|
1097
1096
|
pending: "pending";
|
|
1098
1097
|
error: "error";
|
|
1098
|
+
syncing: "syncing";
|
|
1099
1099
|
synced: "synced";
|
|
1100
1100
|
idle: "idle";
|
|
1101
1101
|
}>;
|
|
@@ -1106,9 +1106,9 @@ declare const gscdumpUserSiteSchema: z.ZodObject<{
|
|
|
1106
1106
|
declare const gscdumpSiteRegistrationSchema: z.ZodObject<{
|
|
1107
1107
|
siteId: z.ZodString;
|
|
1108
1108
|
status: z.ZodEnum<{
|
|
1109
|
-
syncing: "syncing";
|
|
1110
1109
|
pending: "pending";
|
|
1111
1110
|
error: "error";
|
|
1111
|
+
syncing: "syncing";
|
|
1112
1112
|
synced: "synced";
|
|
1113
1113
|
idle: "idle";
|
|
1114
1114
|
}>;
|
|
@@ -1173,8 +1173,8 @@ declare const bulkRegisterPartnerSitesResponseSchema: z.ZodObject<{
|
|
|
1173
1173
|
siteUrl: z.ZodString;
|
|
1174
1174
|
siteId: z.ZodOptional<z.ZodString>;
|
|
1175
1175
|
status: z.ZodEnum<{
|
|
1176
|
-
registered: "registered";
|
|
1177
1176
|
error: "error";
|
|
1177
|
+
registered: "registered";
|
|
1178
1178
|
already_exists: "already_exists";
|
|
1179
1179
|
not_found: "not_found";
|
|
1180
1180
|
}>;
|
|
@@ -1484,19 +1484,19 @@ declare const gscdumpUserMeResponseSchema: z.ZodObject<{
|
|
|
1484
1484
|
databaseReady: z.ZodBoolean;
|
|
1485
1485
|
plan: z.ZodString;
|
|
1486
1486
|
accountStatus: z.ZodEnum<{
|
|
1487
|
+
ready: "ready";
|
|
1488
|
+
reauth_required: "reauth_required";
|
|
1487
1489
|
disconnected: "disconnected";
|
|
1488
1490
|
oauth_received: "oauth_received";
|
|
1489
1491
|
scope_missing: "scope_missing";
|
|
1490
1492
|
refresh_missing: "refresh_missing";
|
|
1491
1493
|
db_provisioning: "db_provisioning";
|
|
1492
|
-
ready: "ready";
|
|
1493
|
-
reauth_required: "reauth_required";
|
|
1494
1494
|
}>;
|
|
1495
1495
|
accountNextAction: z.ZodEnum<{
|
|
1496
|
-
connect_google: "connect_google";
|
|
1497
1496
|
reconnect_google: "reconnect_google";
|
|
1498
|
-
wait_for_provisioning: "wait_for_provisioning";
|
|
1499
1497
|
none: "none";
|
|
1498
|
+
connect_google: "connect_google";
|
|
1499
|
+
wait_for_provisioning: "wait_for_provisioning";
|
|
1500
1500
|
}>;
|
|
1501
1501
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
1502
1502
|
browserAnalyzerEnabled: z.ZodBoolean;
|
|
@@ -1596,8 +1596,8 @@ declare const gscdumpSyncProgressResponseSchema: z.ZodObject<{
|
|
|
1596
1596
|
date: z.ZodString;
|
|
1597
1597
|
status: z.ZodEnum<{
|
|
1598
1598
|
queued: "queued";
|
|
1599
|
-
failed: "failed";
|
|
1600
1599
|
completed: "completed";
|
|
1600
|
+
failed: "failed";
|
|
1601
1601
|
processing: "processing";
|
|
1602
1602
|
}>;
|
|
1603
1603
|
}, z.core.$loose>>;
|
|
@@ -1620,8 +1620,8 @@ declare const gscdumpSyncJobsResponseSchema: z.ZodObject<{
|
|
|
1620
1620
|
priority: z.ZodOptional<z.ZodString>;
|
|
1621
1621
|
status: z.ZodEnum<{
|
|
1622
1622
|
queued: "queued";
|
|
1623
|
-
failed: "failed";
|
|
1624
1623
|
completed: "completed";
|
|
1624
|
+
failed: "failed";
|
|
1625
1625
|
processing: "processing";
|
|
1626
1626
|
scheduled: "scheduled";
|
|
1627
1627
|
}>;
|
|
@@ -2383,19 +2383,19 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2383
2383
|
databaseReady: z.ZodBoolean;
|
|
2384
2384
|
plan: z.ZodString;
|
|
2385
2385
|
accountStatus: z.ZodEnum<{
|
|
2386
|
+
ready: "ready";
|
|
2387
|
+
reauth_required: "reauth_required";
|
|
2386
2388
|
disconnected: "disconnected";
|
|
2387
2389
|
oauth_received: "oauth_received";
|
|
2388
2390
|
scope_missing: "scope_missing";
|
|
2389
2391
|
refresh_missing: "refresh_missing";
|
|
2390
2392
|
db_provisioning: "db_provisioning";
|
|
2391
|
-
ready: "ready";
|
|
2392
|
-
reauth_required: "reauth_required";
|
|
2393
2393
|
}>;
|
|
2394
2394
|
accountNextAction: z.ZodEnum<{
|
|
2395
|
-
connect_google: "connect_google";
|
|
2396
2395
|
reconnect_google: "reconnect_google";
|
|
2397
|
-
wait_for_provisioning: "wait_for_provisioning";
|
|
2398
2396
|
none: "none";
|
|
2397
|
+
connect_google: "connect_google";
|
|
2398
|
+
wait_for_provisioning: "wait_for_provisioning";
|
|
2399
2399
|
}>;
|
|
2400
2400
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
2401
2401
|
browserAnalyzerEnabled: z.ZodBoolean;
|
|
@@ -2499,8 +2499,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2499
2499
|
date: z.ZodString;
|
|
2500
2500
|
status: z.ZodEnum<{
|
|
2501
2501
|
queued: "queued";
|
|
2502
|
-
failed: "failed";
|
|
2503
2502
|
completed: "completed";
|
|
2503
|
+
failed: "failed";
|
|
2504
2504
|
processing: "processing";
|
|
2505
2505
|
}>;
|
|
2506
2506
|
}, z.core.$loose>>;
|
|
@@ -2525,8 +2525,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2525
2525
|
priority: z.ZodOptional<z.ZodString>;
|
|
2526
2526
|
status: z.ZodEnum<{
|
|
2527
2527
|
queued: "queued";
|
|
2528
|
-
failed: "failed";
|
|
2529
2528
|
completed: "completed";
|
|
2529
|
+
failed: "failed";
|
|
2530
2530
|
processing: "processing";
|
|
2531
2531
|
scheduled: "scheduled";
|
|
2532
2532
|
}>;
|
|
@@ -2580,8 +2580,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2580
2580
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
2581
2581
|
isNew: z.ZodOptional<z.ZodBoolean>;
|
|
2582
2582
|
status: z.ZodOptional<z.ZodEnum<{
|
|
2583
|
-
ready: "ready";
|
|
2584
2583
|
provisioning: "provisioning";
|
|
2584
|
+
ready: "ready";
|
|
2585
2585
|
}>>;
|
|
2586
2586
|
}, z.core.$loose>;
|
|
2587
2587
|
};
|
|
@@ -2600,9 +2600,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2600
2600
|
registered: z.ZodBoolean;
|
|
2601
2601
|
siteId: z.ZodOptional<z.ZodString>;
|
|
2602
2602
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2603
|
-
syncing: "syncing";
|
|
2604
2603
|
pending: "pending";
|
|
2605
2604
|
error: "error";
|
|
2605
|
+
syncing: "syncing";
|
|
2606
2606
|
synced: "synced";
|
|
2607
2607
|
}>>>;
|
|
2608
2608
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -2621,9 +2621,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2621
2621
|
readonly response: z.ZodObject<{
|
|
2622
2622
|
userId: z.ZodString;
|
|
2623
2623
|
status: z.ZodEnum<{
|
|
2624
|
+
provisioning: "provisioning";
|
|
2624
2625
|
ready: "ready";
|
|
2625
2626
|
reauth_required: "reauth_required";
|
|
2626
|
-
provisioning: "provisioning";
|
|
2627
2627
|
}>;
|
|
2628
2628
|
databaseReady: z.ZodOptional<z.ZodBoolean>;
|
|
2629
2629
|
needsReauth: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2644,21 +2644,21 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2644
2644
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
2645
2645
|
account: z.ZodObject<{
|
|
2646
2646
|
status: z.ZodEnum<{
|
|
2647
|
+
ready: "ready";
|
|
2648
|
+
reauth_required: "reauth_required";
|
|
2647
2649
|
disconnected: "disconnected";
|
|
2648
2650
|
oauth_received: "oauth_received";
|
|
2649
2651
|
scope_missing: "scope_missing";
|
|
2650
2652
|
refresh_missing: "refresh_missing";
|
|
2651
2653
|
db_provisioning: "db_provisioning";
|
|
2652
|
-
ready: "ready";
|
|
2653
|
-
reauth_required: "reauth_required";
|
|
2654
2654
|
}>;
|
|
2655
2655
|
grantedScopes: z.ZodArray<z.ZodString>;
|
|
2656
2656
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
2657
2657
|
nextAction: z.ZodEnum<{
|
|
2658
|
-
connect_google: "connect_google";
|
|
2659
2658
|
reconnect_google: "reconnect_google";
|
|
2660
|
-
wait_for_provisioning: "wait_for_provisioning";
|
|
2661
2659
|
none: "none";
|
|
2660
|
+
connect_google: "connect_google";
|
|
2661
|
+
wait_for_provisioning: "wait_for_provisioning";
|
|
2662
2662
|
}>;
|
|
2663
2663
|
}, z.core.$loose>;
|
|
2664
2664
|
sites: z.ZodArray<z.ZodObject<{
|
|
@@ -2686,14 +2686,14 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2686
2686
|
}, z.core.$loose>;
|
|
2687
2687
|
analytics: z.ZodObject<{
|
|
2688
2688
|
status: z.ZodEnum<{
|
|
2689
|
+
queued: "queued";
|
|
2689
2690
|
ready: "ready";
|
|
2691
|
+
failed: "failed";
|
|
2690
2692
|
not_registered: "not_registered";
|
|
2691
|
-
queued: "queued";
|
|
2692
2693
|
preparing: "preparing";
|
|
2693
2694
|
syncing: "syncing";
|
|
2694
2695
|
queryable_live: "queryable_live";
|
|
2695
2696
|
queryable_partial: "queryable_partial";
|
|
2696
|
-
failed: "failed";
|
|
2697
2697
|
}>;
|
|
2698
2698
|
progress: z.ZodObject<{
|
|
2699
2699
|
completed: z.ZodNumber;
|
|
@@ -2703,10 +2703,10 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2703
2703
|
}, z.core.$strip>;
|
|
2704
2704
|
queryable: z.ZodBoolean;
|
|
2705
2705
|
sourceMode: z.ZodEnum<{
|
|
2706
|
-
none: "none";
|
|
2707
|
-
live: "live";
|
|
2708
2706
|
d1: "d1";
|
|
2709
2707
|
r2: "r2";
|
|
2708
|
+
none: "none";
|
|
2709
|
+
live: "live";
|
|
2710
2710
|
mixed: "mixed";
|
|
2711
2711
|
}>;
|
|
2712
2712
|
syncedRange: z.ZodObject<{
|
|
@@ -2721,10 +2721,10 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2721
2721
|
}, z.core.$loose>;
|
|
2722
2722
|
sitemaps: z.ZodObject<{
|
|
2723
2723
|
status: z.ZodEnum<{
|
|
2724
|
+
unknown: "unknown";
|
|
2724
2725
|
ready: "ready";
|
|
2725
|
-
syncing: "syncing";
|
|
2726
2726
|
failed: "failed";
|
|
2727
|
-
|
|
2727
|
+
syncing: "syncing";
|
|
2728
2728
|
discovering: "discovering";
|
|
2729
2729
|
none_found: "none_found";
|
|
2730
2730
|
auto_submitted: "auto_submitted";
|
|
@@ -2796,9 +2796,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2796
2796
|
siteId: z.ZodString;
|
|
2797
2797
|
siteUrl: z.ZodString;
|
|
2798
2798
|
syncStatus: z.ZodEnum<{
|
|
2799
|
-
syncing: "syncing";
|
|
2800
2799
|
pending: "pending";
|
|
2801
2800
|
error: "error";
|
|
2801
|
+
syncing: "syncing";
|
|
2802
2802
|
synced: "synced";
|
|
2803
2803
|
idle: "idle";
|
|
2804
2804
|
}>;
|
|
@@ -2816,9 +2816,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2816
2816
|
registered: z.ZodBoolean;
|
|
2817
2817
|
siteId: z.ZodOptional<z.ZodString>;
|
|
2818
2818
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2819
|
-
syncing: "syncing";
|
|
2820
2819
|
pending: "pending";
|
|
2821
2820
|
error: "error";
|
|
2821
|
+
syncing: "syncing";
|
|
2822
2822
|
synced: "synced";
|
|
2823
2823
|
}>>>;
|
|
2824
2824
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -2863,9 +2863,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2863
2863
|
readonly response: z.ZodObject<{
|
|
2864
2864
|
siteId: z.ZodString;
|
|
2865
2865
|
status: z.ZodEnum<{
|
|
2866
|
-
syncing: "syncing";
|
|
2867
2866
|
pending: "pending";
|
|
2868
2867
|
error: "error";
|
|
2868
|
+
syncing: "syncing";
|
|
2869
2869
|
synced: "synced";
|
|
2870
2870
|
idle: "idle";
|
|
2871
2871
|
}>;
|
|
@@ -2906,8 +2906,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2906
2906
|
siteUrl: z.ZodString;
|
|
2907
2907
|
siteId: z.ZodOptional<z.ZodString>;
|
|
2908
2908
|
status: z.ZodEnum<{
|
|
2909
|
-
registered: "registered";
|
|
2910
2909
|
error: "error";
|
|
2910
|
+
registered: "registered";
|
|
2911
2911
|
already_exists: "already_exists";
|
|
2912
2912
|
not_found: "not_found";
|
|
2913
2913
|
}>;
|
|
@@ -3761,19 +3761,19 @@ declare const partnerEndpointSchemas: {
|
|
|
3761
3761
|
databaseReady: z.ZodBoolean;
|
|
3762
3762
|
plan: z.ZodString;
|
|
3763
3763
|
accountStatus: z.ZodEnum<{
|
|
3764
|
+
ready: "ready";
|
|
3765
|
+
reauth_required: "reauth_required";
|
|
3764
3766
|
disconnected: "disconnected";
|
|
3765
3767
|
oauth_received: "oauth_received";
|
|
3766
3768
|
scope_missing: "scope_missing";
|
|
3767
3769
|
refresh_missing: "refresh_missing";
|
|
3768
3770
|
db_provisioning: "db_provisioning";
|
|
3769
|
-
ready: "ready";
|
|
3770
|
-
reauth_required: "reauth_required";
|
|
3771
3771
|
}>;
|
|
3772
3772
|
accountNextAction: z.ZodEnum<{
|
|
3773
|
-
connect_google: "connect_google";
|
|
3774
3773
|
reconnect_google: "reconnect_google";
|
|
3775
|
-
wait_for_provisioning: "wait_for_provisioning";
|
|
3776
3774
|
none: "none";
|
|
3775
|
+
connect_google: "connect_google";
|
|
3776
|
+
wait_for_provisioning: "wait_for_provisioning";
|
|
3777
3777
|
}>;
|
|
3778
3778
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
3779
3779
|
browserAnalyzerEnabled: z.ZodBoolean;
|
|
@@ -3877,8 +3877,8 @@ declare const partnerEndpointSchemas: {
|
|
|
3877
3877
|
date: z.ZodString;
|
|
3878
3878
|
status: z.ZodEnum<{
|
|
3879
3879
|
queued: "queued";
|
|
3880
|
-
failed: "failed";
|
|
3881
3880
|
completed: "completed";
|
|
3881
|
+
failed: "failed";
|
|
3882
3882
|
processing: "processing";
|
|
3883
3883
|
}>;
|
|
3884
3884
|
}, z.core.$loose>>;
|
|
@@ -3903,8 +3903,8 @@ declare const partnerEndpointSchemas: {
|
|
|
3903
3903
|
priority: z.ZodOptional<z.ZodString>;
|
|
3904
3904
|
status: z.ZodEnum<{
|
|
3905
3905
|
queued: "queued";
|
|
3906
|
-
failed: "failed";
|
|
3907
3906
|
completed: "completed";
|
|
3907
|
+
failed: "failed";
|
|
3908
3908
|
processing: "processing";
|
|
3909
3909
|
scheduled: "scheduled";
|
|
3910
3910
|
}>;
|
|
@@ -3958,8 +3958,8 @@ declare const partnerEndpointSchemas: {
|
|
|
3958
3958
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
3959
3959
|
isNew: z.ZodOptional<z.ZodBoolean>;
|
|
3960
3960
|
status: z.ZodOptional<z.ZodEnum<{
|
|
3961
|
-
ready: "ready";
|
|
3962
3961
|
provisioning: "provisioning";
|
|
3962
|
+
ready: "ready";
|
|
3963
3963
|
}>>;
|
|
3964
3964
|
}, z.core.$loose>;
|
|
3965
3965
|
};
|
|
@@ -3978,9 +3978,9 @@ declare const partnerEndpointSchemas: {
|
|
|
3978
3978
|
registered: z.ZodBoolean;
|
|
3979
3979
|
siteId: z.ZodOptional<z.ZodString>;
|
|
3980
3980
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3981
|
-
syncing: "syncing";
|
|
3982
3981
|
pending: "pending";
|
|
3983
3982
|
error: "error";
|
|
3983
|
+
syncing: "syncing";
|
|
3984
3984
|
synced: "synced";
|
|
3985
3985
|
}>>>;
|
|
3986
3986
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -3999,9 +3999,9 @@ declare const partnerEndpointSchemas: {
|
|
|
3999
3999
|
readonly response: z.ZodObject<{
|
|
4000
4000
|
userId: z.ZodString;
|
|
4001
4001
|
status: z.ZodEnum<{
|
|
4002
|
+
provisioning: "provisioning";
|
|
4002
4003
|
ready: "ready";
|
|
4003
4004
|
reauth_required: "reauth_required";
|
|
4004
|
-
provisioning: "provisioning";
|
|
4005
4005
|
}>;
|
|
4006
4006
|
databaseReady: z.ZodOptional<z.ZodBoolean>;
|
|
4007
4007
|
needsReauth: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4022,21 +4022,21 @@ declare const partnerEndpointSchemas: {
|
|
|
4022
4022
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
4023
4023
|
account: z.ZodObject<{
|
|
4024
4024
|
status: z.ZodEnum<{
|
|
4025
|
+
ready: "ready";
|
|
4026
|
+
reauth_required: "reauth_required";
|
|
4025
4027
|
disconnected: "disconnected";
|
|
4026
4028
|
oauth_received: "oauth_received";
|
|
4027
4029
|
scope_missing: "scope_missing";
|
|
4028
4030
|
refresh_missing: "refresh_missing";
|
|
4029
4031
|
db_provisioning: "db_provisioning";
|
|
4030
|
-
ready: "ready";
|
|
4031
|
-
reauth_required: "reauth_required";
|
|
4032
4032
|
}>;
|
|
4033
4033
|
grantedScopes: z.ZodArray<z.ZodString>;
|
|
4034
4034
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
4035
4035
|
nextAction: z.ZodEnum<{
|
|
4036
|
-
connect_google: "connect_google";
|
|
4037
4036
|
reconnect_google: "reconnect_google";
|
|
4038
|
-
wait_for_provisioning: "wait_for_provisioning";
|
|
4039
4037
|
none: "none";
|
|
4038
|
+
connect_google: "connect_google";
|
|
4039
|
+
wait_for_provisioning: "wait_for_provisioning";
|
|
4040
4040
|
}>;
|
|
4041
4041
|
}, z.core.$loose>;
|
|
4042
4042
|
sites: z.ZodArray<z.ZodObject<{
|
|
@@ -4064,14 +4064,14 @@ declare const partnerEndpointSchemas: {
|
|
|
4064
4064
|
}, z.core.$loose>;
|
|
4065
4065
|
analytics: z.ZodObject<{
|
|
4066
4066
|
status: z.ZodEnum<{
|
|
4067
|
+
queued: "queued";
|
|
4067
4068
|
ready: "ready";
|
|
4069
|
+
failed: "failed";
|
|
4068
4070
|
not_registered: "not_registered";
|
|
4069
|
-
queued: "queued";
|
|
4070
4071
|
preparing: "preparing";
|
|
4071
4072
|
syncing: "syncing";
|
|
4072
4073
|
queryable_live: "queryable_live";
|
|
4073
4074
|
queryable_partial: "queryable_partial";
|
|
4074
|
-
failed: "failed";
|
|
4075
4075
|
}>;
|
|
4076
4076
|
progress: z.ZodObject<{
|
|
4077
4077
|
completed: z.ZodNumber;
|
|
@@ -4081,10 +4081,10 @@ declare const partnerEndpointSchemas: {
|
|
|
4081
4081
|
}, z.core.$strip>;
|
|
4082
4082
|
queryable: z.ZodBoolean;
|
|
4083
4083
|
sourceMode: z.ZodEnum<{
|
|
4084
|
-
none: "none";
|
|
4085
|
-
live: "live";
|
|
4086
4084
|
d1: "d1";
|
|
4087
4085
|
r2: "r2";
|
|
4086
|
+
none: "none";
|
|
4087
|
+
live: "live";
|
|
4088
4088
|
mixed: "mixed";
|
|
4089
4089
|
}>;
|
|
4090
4090
|
syncedRange: z.ZodObject<{
|
|
@@ -4099,10 +4099,10 @@ declare const partnerEndpointSchemas: {
|
|
|
4099
4099
|
}, z.core.$loose>;
|
|
4100
4100
|
sitemaps: z.ZodObject<{
|
|
4101
4101
|
status: z.ZodEnum<{
|
|
4102
|
+
unknown: "unknown";
|
|
4102
4103
|
ready: "ready";
|
|
4103
|
-
syncing: "syncing";
|
|
4104
4104
|
failed: "failed";
|
|
4105
|
-
|
|
4105
|
+
syncing: "syncing";
|
|
4106
4106
|
discovering: "discovering";
|
|
4107
4107
|
none_found: "none_found";
|
|
4108
4108
|
auto_submitted: "auto_submitted";
|
|
@@ -4174,9 +4174,9 @@ declare const partnerEndpointSchemas: {
|
|
|
4174
4174
|
siteId: z.ZodString;
|
|
4175
4175
|
siteUrl: z.ZodString;
|
|
4176
4176
|
syncStatus: z.ZodEnum<{
|
|
4177
|
-
syncing: "syncing";
|
|
4178
4177
|
pending: "pending";
|
|
4179
4178
|
error: "error";
|
|
4179
|
+
syncing: "syncing";
|
|
4180
4180
|
synced: "synced";
|
|
4181
4181
|
idle: "idle";
|
|
4182
4182
|
}>;
|
|
@@ -4194,9 +4194,9 @@ declare const partnerEndpointSchemas: {
|
|
|
4194
4194
|
registered: z.ZodBoolean;
|
|
4195
4195
|
siteId: z.ZodOptional<z.ZodString>;
|
|
4196
4196
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4197
|
-
syncing: "syncing";
|
|
4198
4197
|
pending: "pending";
|
|
4199
4198
|
error: "error";
|
|
4199
|
+
syncing: "syncing";
|
|
4200
4200
|
synced: "synced";
|
|
4201
4201
|
}>>>;
|
|
4202
4202
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -4241,9 +4241,9 @@ declare const partnerEndpointSchemas: {
|
|
|
4241
4241
|
readonly response: z.ZodObject<{
|
|
4242
4242
|
siteId: z.ZodString;
|
|
4243
4243
|
status: z.ZodEnum<{
|
|
4244
|
-
syncing: "syncing";
|
|
4245
4244
|
pending: "pending";
|
|
4246
4245
|
error: "error";
|
|
4246
|
+
syncing: "syncing";
|
|
4247
4247
|
synced: "synced";
|
|
4248
4248
|
idle: "idle";
|
|
4249
4249
|
}>;
|
|
@@ -4284,8 +4284,8 @@ declare const partnerEndpointSchemas: {
|
|
|
4284
4284
|
siteUrl: z.ZodString;
|
|
4285
4285
|
siteId: z.ZodOptional<z.ZodString>;
|
|
4286
4286
|
status: z.ZodEnum<{
|
|
4287
|
-
registered: "registered";
|
|
4288
4287
|
error: "error";
|
|
4288
|
+
registered: "registered";
|
|
4289
4289
|
already_exists: "already_exists";
|
|
4290
4290
|
not_found: "not_found";
|
|
4291
4291
|
}>;
|