@gscdump/contracts 0.28.3 → 0.29.0
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
|
-
provisioning: "provisioning";
|
|
729
728
|
ready: "ready";
|
|
729
|
+
provisioning: "provisioning";
|
|
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";
|
|
736
735
|
ready: "ready";
|
|
737
736
|
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";
|
|
778
776
|
disconnected: "disconnected";
|
|
779
777
|
oauth_received: "oauth_received";
|
|
780
778
|
scope_missing: "scope_missing";
|
|
781
779
|
refresh_missing: "refresh_missing";
|
|
782
780
|
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
|
-
reconnect_google: "reconnect_google";
|
|
788
|
-
none: "none";
|
|
789
787
|
connect_google: "connect_google";
|
|
788
|
+
reconnect_google: "reconnect_google";
|
|
790
789
|
wait_for_provisioning: "wait_for_provisioning";
|
|
790
|
+
none: "none";
|
|
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";
|
|
819
818
|
ready: "ready";
|
|
820
|
-
failed: "failed";
|
|
821
819
|
not_registered: "not_registered";
|
|
820
|
+
queued: "queued";
|
|
822
821
|
preparing: "preparing";
|
|
823
822
|
syncing: "syncing";
|
|
824
823
|
queryable_live: "queryable_live";
|
|
825
824
|
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
|
-
d1: "d1";
|
|
836
|
-
r2: "r2";
|
|
837
835
|
none: "none";
|
|
838
836
|
live: "live";
|
|
837
|
+
d1: "d1";
|
|
838
|
+
r2: "r2";
|
|
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";
|
|
854
853
|
ready: "ready";
|
|
855
|
-
failed: "failed";
|
|
856
854
|
syncing: "syncing";
|
|
855
|
+
failed: "failed";
|
|
856
|
+
unknown: "unknown";
|
|
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";
|
|
928
926
|
disconnected: "disconnected";
|
|
929
927
|
oauth_received: "oauth_received";
|
|
930
928
|
scope_missing: "scope_missing";
|
|
931
929
|
refresh_missing: "refresh_missing";
|
|
932
930
|
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
|
-
reconnect_google: "reconnect_google";
|
|
938
|
-
none: "none";
|
|
939
937
|
connect_google: "connect_google";
|
|
938
|
+
reconnect_google: "reconnect_google";
|
|
940
939
|
wait_for_provisioning: "wait_for_provisioning";
|
|
940
|
+
none: "none";
|
|
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";
|
|
969
968
|
ready: "ready";
|
|
970
|
-
failed: "failed";
|
|
971
969
|
not_registered: "not_registered";
|
|
970
|
+
queued: "queued";
|
|
972
971
|
preparing: "preparing";
|
|
973
972
|
syncing: "syncing";
|
|
974
973
|
queryable_live: "queryable_live";
|
|
975
974
|
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
|
-
d1: "d1";
|
|
986
|
-
r2: "r2";
|
|
987
985
|
none: "none";
|
|
988
986
|
live: "live";
|
|
987
|
+
d1: "d1";
|
|
988
|
+
r2: "r2";
|
|
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";
|
|
1004
1003
|
ready: "ready";
|
|
1005
|
-
failed: "failed";
|
|
1006
1004
|
syncing: "syncing";
|
|
1005
|
+
failed: "failed";
|
|
1006
|
+
unknown: "unknown";
|
|
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";
|
|
1077
1078
|
pending: "pending";
|
|
1078
1079
|
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";
|
|
1096
1097
|
pending: "pending";
|
|
1097
1098
|
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";
|
|
1109
1110
|
pending: "pending";
|
|
1110
1111
|
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
|
-
error: "error";
|
|
1177
1176
|
registered: "registered";
|
|
1177
|
+
error: "error";
|
|
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";
|
|
1489
1487
|
disconnected: "disconnected";
|
|
1490
1488
|
oauth_received: "oauth_received";
|
|
1491
1489
|
scope_missing: "scope_missing";
|
|
1492
1490
|
refresh_missing: "refresh_missing";
|
|
1493
1491
|
db_provisioning: "db_provisioning";
|
|
1492
|
+
ready: "ready";
|
|
1493
|
+
reauth_required: "reauth_required";
|
|
1494
1494
|
}>;
|
|
1495
1495
|
accountNextAction: z.ZodEnum<{
|
|
1496
|
-
reconnect_google: "reconnect_google";
|
|
1497
|
-
none: "none";
|
|
1498
1496
|
connect_google: "connect_google";
|
|
1497
|
+
reconnect_google: "reconnect_google";
|
|
1499
1498
|
wait_for_provisioning: "wait_for_provisioning";
|
|
1499
|
+
none: "none";
|
|
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
|
-
completed: "completed";
|
|
1600
1599
|
failed: "failed";
|
|
1600
|
+
completed: "completed";
|
|
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
|
-
completed: "completed";
|
|
1624
1623
|
failed: "failed";
|
|
1624
|
+
completed: "completed";
|
|
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";
|
|
2388
2386
|
disconnected: "disconnected";
|
|
2389
2387
|
oauth_received: "oauth_received";
|
|
2390
2388
|
scope_missing: "scope_missing";
|
|
2391
2389
|
refresh_missing: "refresh_missing";
|
|
2392
2390
|
db_provisioning: "db_provisioning";
|
|
2391
|
+
ready: "ready";
|
|
2392
|
+
reauth_required: "reauth_required";
|
|
2393
2393
|
}>;
|
|
2394
2394
|
accountNextAction: z.ZodEnum<{
|
|
2395
|
-
reconnect_google: "reconnect_google";
|
|
2396
|
-
none: "none";
|
|
2397
2395
|
connect_google: "connect_google";
|
|
2396
|
+
reconnect_google: "reconnect_google";
|
|
2398
2397
|
wait_for_provisioning: "wait_for_provisioning";
|
|
2398
|
+
none: "none";
|
|
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
|
-
completed: "completed";
|
|
2503
2502
|
failed: "failed";
|
|
2503
|
+
completed: "completed";
|
|
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
|
-
completed: "completed";
|
|
2529
2528
|
failed: "failed";
|
|
2529
|
+
completed: "completed";
|
|
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
|
-
provisioning: "provisioning";
|
|
2584
2583
|
ready: "ready";
|
|
2584
|
+
provisioning: "provisioning";
|
|
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";
|
|
2603
2604
|
pending: "pending";
|
|
2604
2605
|
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";
|
|
2625
2624
|
ready: "ready";
|
|
2626
2625
|
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";
|
|
2649
2647
|
disconnected: "disconnected";
|
|
2650
2648
|
oauth_received: "oauth_received";
|
|
2651
2649
|
scope_missing: "scope_missing";
|
|
2652
2650
|
refresh_missing: "refresh_missing";
|
|
2653
2651
|
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
|
-
reconnect_google: "reconnect_google";
|
|
2659
|
-
none: "none";
|
|
2660
2658
|
connect_google: "connect_google";
|
|
2659
|
+
reconnect_google: "reconnect_google";
|
|
2661
2660
|
wait_for_provisioning: "wait_for_provisioning";
|
|
2661
|
+
none: "none";
|
|
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";
|
|
2690
2689
|
ready: "ready";
|
|
2691
|
-
failed: "failed";
|
|
2692
2690
|
not_registered: "not_registered";
|
|
2691
|
+
queued: "queued";
|
|
2693
2692
|
preparing: "preparing";
|
|
2694
2693
|
syncing: "syncing";
|
|
2695
2694
|
queryable_live: "queryable_live";
|
|
2696
2695
|
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
|
-
d1: "d1";
|
|
2707
|
-
r2: "r2";
|
|
2708
2706
|
none: "none";
|
|
2709
2707
|
live: "live";
|
|
2708
|
+
d1: "d1";
|
|
2709
|
+
r2: "r2";
|
|
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";
|
|
2725
2724
|
ready: "ready";
|
|
2726
|
-
failed: "failed";
|
|
2727
2725
|
syncing: "syncing";
|
|
2726
|
+
failed: "failed";
|
|
2727
|
+
unknown: "unknown";
|
|
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";
|
|
2799
2800
|
pending: "pending";
|
|
2800
2801
|
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";
|
|
2819
2820
|
pending: "pending";
|
|
2820
2821
|
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";
|
|
2866
2867
|
pending: "pending";
|
|
2867
2868
|
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
|
-
error: "error";
|
|
2910
2909
|
registered: "registered";
|
|
2910
|
+
error: "error";
|
|
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";
|
|
3766
3764
|
disconnected: "disconnected";
|
|
3767
3765
|
oauth_received: "oauth_received";
|
|
3768
3766
|
scope_missing: "scope_missing";
|
|
3769
3767
|
refresh_missing: "refresh_missing";
|
|
3770
3768
|
db_provisioning: "db_provisioning";
|
|
3769
|
+
ready: "ready";
|
|
3770
|
+
reauth_required: "reauth_required";
|
|
3771
3771
|
}>;
|
|
3772
3772
|
accountNextAction: z.ZodEnum<{
|
|
3773
|
-
reconnect_google: "reconnect_google";
|
|
3774
|
-
none: "none";
|
|
3775
3773
|
connect_google: "connect_google";
|
|
3774
|
+
reconnect_google: "reconnect_google";
|
|
3776
3775
|
wait_for_provisioning: "wait_for_provisioning";
|
|
3776
|
+
none: "none";
|
|
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
|
-
completed: "completed";
|
|
3881
3880
|
failed: "failed";
|
|
3881
|
+
completed: "completed";
|
|
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
|
-
completed: "completed";
|
|
3907
3906
|
failed: "failed";
|
|
3907
|
+
completed: "completed";
|
|
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
|
-
provisioning: "provisioning";
|
|
3962
3961
|
ready: "ready";
|
|
3962
|
+
provisioning: "provisioning";
|
|
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";
|
|
3981
3982
|
pending: "pending";
|
|
3982
3983
|
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";
|
|
4003
4002
|
ready: "ready";
|
|
4004
4003
|
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";
|
|
4027
4025
|
disconnected: "disconnected";
|
|
4028
4026
|
oauth_received: "oauth_received";
|
|
4029
4027
|
scope_missing: "scope_missing";
|
|
4030
4028
|
refresh_missing: "refresh_missing";
|
|
4031
4029
|
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
|
-
reconnect_google: "reconnect_google";
|
|
4037
|
-
none: "none";
|
|
4038
4036
|
connect_google: "connect_google";
|
|
4037
|
+
reconnect_google: "reconnect_google";
|
|
4039
4038
|
wait_for_provisioning: "wait_for_provisioning";
|
|
4039
|
+
none: "none";
|
|
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";
|
|
4068
4067
|
ready: "ready";
|
|
4069
|
-
failed: "failed";
|
|
4070
4068
|
not_registered: "not_registered";
|
|
4069
|
+
queued: "queued";
|
|
4071
4070
|
preparing: "preparing";
|
|
4072
4071
|
syncing: "syncing";
|
|
4073
4072
|
queryable_live: "queryable_live";
|
|
4074
4073
|
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
|
-
d1: "d1";
|
|
4085
|
-
r2: "r2";
|
|
4086
4084
|
none: "none";
|
|
4087
4085
|
live: "live";
|
|
4086
|
+
d1: "d1";
|
|
4087
|
+
r2: "r2";
|
|
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";
|
|
4103
4102
|
ready: "ready";
|
|
4104
|
-
failed: "failed";
|
|
4105
4103
|
syncing: "syncing";
|
|
4104
|
+
failed: "failed";
|
|
4105
|
+
unknown: "unknown";
|
|
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";
|
|
4177
4178
|
pending: "pending";
|
|
4178
4179
|
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";
|
|
4197
4198
|
pending: "pending";
|
|
4198
4199
|
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";
|
|
4244
4245
|
pending: "pending";
|
|
4245
4246
|
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
|
-
error: "error";
|
|
4288
4287
|
registered: "registered";
|
|
4288
|
+
error: "error";
|
|
4289
4289
|
already_exists: "already_exists";
|
|
4290
4290
|
not_found: "not_found";
|
|
4291
4291
|
}>;
|