@gscdump/contracts 0.27.0 → 0.27.1
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 +171 -78
- package/dist/_chunks/schemas.mjs +35 -0
- package/dist/_chunks/types.d.mts +38 -3
- package/dist/analytics.d.mts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/partner.d.mts +2 -2
- 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
|
}>;
|
|
@@ -1954,6 +1954,37 @@ declare const partnerRealtimeEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1954
1954
|
siteId: z.ZodString;
|
|
1955
1955
|
userId: z.ZodNumber;
|
|
1956
1956
|
timestamp: z.ZodNumber;
|
|
1957
|
+
}, z.core.$loose>, z.ZodObject<{
|
|
1958
|
+
event: z.ZodLiteral<"sitemap.progress">;
|
|
1959
|
+
userId: z.ZodNumber;
|
|
1960
|
+
siteId: z.ZodString;
|
|
1961
|
+
siteUrl: z.ZodString;
|
|
1962
|
+
discovered: z.ZodNumber;
|
|
1963
|
+
total: z.ZodNumber;
|
|
1964
|
+
progress: z.ZodNumber;
|
|
1965
|
+
}, z.core.$loose>, z.ZodObject<{
|
|
1966
|
+
event: z.ZodLiteral<"sitemap.complete">;
|
|
1967
|
+
userId: z.ZodNumber;
|
|
1968
|
+
siteId: z.ZodString;
|
|
1969
|
+
siteUrl: z.ZodString;
|
|
1970
|
+
discoveredCount: z.ZodNumber;
|
|
1971
|
+
timestamp: z.ZodNumber;
|
|
1972
|
+
}, z.core.$loose>, z.ZodObject<{
|
|
1973
|
+
event: z.ZodLiteral<"indexing.progress">;
|
|
1974
|
+
userId: z.ZodNumber;
|
|
1975
|
+
siteId: z.ZodString;
|
|
1976
|
+
siteUrl: z.ZodString;
|
|
1977
|
+
checked: z.ZodNumber;
|
|
1978
|
+
total: z.ZodNumber;
|
|
1979
|
+
progress: z.ZodNumber;
|
|
1980
|
+
}, z.core.$loose>, z.ZodObject<{
|
|
1981
|
+
event: z.ZodLiteral<"indexing.complete">;
|
|
1982
|
+
userId: z.ZodNumber;
|
|
1983
|
+
siteId: z.ZodString;
|
|
1984
|
+
siteUrl: z.ZodString;
|
|
1985
|
+
totalUrls: z.ZodNumber;
|
|
1986
|
+
indexedCount: z.ZodNumber;
|
|
1987
|
+
timestamp: z.ZodNumber;
|
|
1957
1988
|
}, z.core.$loose>], "event">;
|
|
1958
1989
|
declare const canonicalWebhookEventTypeSchema: z.ZodEnum<{
|
|
1959
1990
|
"user.lifecycle.changed": "user.lifecycle.changed";
|
|
@@ -2352,19 +2383,19 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2352
2383
|
databaseReady: z.ZodBoolean;
|
|
2353
2384
|
plan: z.ZodString;
|
|
2354
2385
|
accountStatus: z.ZodEnum<{
|
|
2355
|
-
ready: "ready";
|
|
2356
|
-
reauth_required: "reauth_required";
|
|
2357
2386
|
disconnected: "disconnected";
|
|
2358
2387
|
oauth_received: "oauth_received";
|
|
2359
2388
|
scope_missing: "scope_missing";
|
|
2360
2389
|
refresh_missing: "refresh_missing";
|
|
2361
2390
|
db_provisioning: "db_provisioning";
|
|
2391
|
+
ready: "ready";
|
|
2392
|
+
reauth_required: "reauth_required";
|
|
2362
2393
|
}>;
|
|
2363
2394
|
accountNextAction: z.ZodEnum<{
|
|
2364
|
-
reconnect_google: "reconnect_google";
|
|
2365
|
-
none: "none";
|
|
2366
2395
|
connect_google: "connect_google";
|
|
2396
|
+
reconnect_google: "reconnect_google";
|
|
2367
2397
|
wait_for_provisioning: "wait_for_provisioning";
|
|
2398
|
+
none: "none";
|
|
2368
2399
|
}>;
|
|
2369
2400
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
2370
2401
|
browserAnalyzerEnabled: z.ZodBoolean;
|
|
@@ -2468,8 +2499,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2468
2499
|
date: z.ZodString;
|
|
2469
2500
|
status: z.ZodEnum<{
|
|
2470
2501
|
queued: "queued";
|
|
2471
|
-
completed: "completed";
|
|
2472
2502
|
failed: "failed";
|
|
2503
|
+
completed: "completed";
|
|
2473
2504
|
processing: "processing";
|
|
2474
2505
|
}>;
|
|
2475
2506
|
}, z.core.$loose>>;
|
|
@@ -2494,8 +2525,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2494
2525
|
priority: z.ZodOptional<z.ZodString>;
|
|
2495
2526
|
status: z.ZodEnum<{
|
|
2496
2527
|
queued: "queued";
|
|
2497
|
-
completed: "completed";
|
|
2498
2528
|
failed: "failed";
|
|
2529
|
+
completed: "completed";
|
|
2499
2530
|
processing: "processing";
|
|
2500
2531
|
scheduled: "scheduled";
|
|
2501
2532
|
}>;
|
|
@@ -2549,8 +2580,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2549
2580
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
2550
2581
|
isNew: z.ZodOptional<z.ZodBoolean>;
|
|
2551
2582
|
status: z.ZodOptional<z.ZodEnum<{
|
|
2552
|
-
provisioning: "provisioning";
|
|
2553
2583
|
ready: "ready";
|
|
2584
|
+
provisioning: "provisioning";
|
|
2554
2585
|
}>>;
|
|
2555
2586
|
}, z.core.$loose>;
|
|
2556
2587
|
};
|
|
@@ -2569,9 +2600,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2569
2600
|
registered: z.ZodBoolean;
|
|
2570
2601
|
siteId: z.ZodOptional<z.ZodString>;
|
|
2571
2602
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2603
|
+
syncing: "syncing";
|
|
2572
2604
|
pending: "pending";
|
|
2573
2605
|
error: "error";
|
|
2574
|
-
syncing: "syncing";
|
|
2575
2606
|
synced: "synced";
|
|
2576
2607
|
}>>>;
|
|
2577
2608
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -2590,9 +2621,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2590
2621
|
readonly response: z.ZodObject<{
|
|
2591
2622
|
userId: z.ZodString;
|
|
2592
2623
|
status: z.ZodEnum<{
|
|
2593
|
-
provisioning: "provisioning";
|
|
2594
2624
|
ready: "ready";
|
|
2595
2625
|
reauth_required: "reauth_required";
|
|
2626
|
+
provisioning: "provisioning";
|
|
2596
2627
|
}>;
|
|
2597
2628
|
databaseReady: z.ZodOptional<z.ZodBoolean>;
|
|
2598
2629
|
needsReauth: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2613,21 +2644,21 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2613
2644
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
2614
2645
|
account: z.ZodObject<{
|
|
2615
2646
|
status: z.ZodEnum<{
|
|
2616
|
-
ready: "ready";
|
|
2617
|
-
reauth_required: "reauth_required";
|
|
2618
2647
|
disconnected: "disconnected";
|
|
2619
2648
|
oauth_received: "oauth_received";
|
|
2620
2649
|
scope_missing: "scope_missing";
|
|
2621
2650
|
refresh_missing: "refresh_missing";
|
|
2622
2651
|
db_provisioning: "db_provisioning";
|
|
2652
|
+
ready: "ready";
|
|
2653
|
+
reauth_required: "reauth_required";
|
|
2623
2654
|
}>;
|
|
2624
2655
|
grantedScopes: z.ZodArray<z.ZodString>;
|
|
2625
2656
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
2626
2657
|
nextAction: z.ZodEnum<{
|
|
2627
|
-
reconnect_google: "reconnect_google";
|
|
2628
|
-
none: "none";
|
|
2629
2658
|
connect_google: "connect_google";
|
|
2659
|
+
reconnect_google: "reconnect_google";
|
|
2630
2660
|
wait_for_provisioning: "wait_for_provisioning";
|
|
2661
|
+
none: "none";
|
|
2631
2662
|
}>;
|
|
2632
2663
|
}, z.core.$loose>;
|
|
2633
2664
|
sites: z.ZodArray<z.ZodObject<{
|
|
@@ -2655,14 +2686,14 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2655
2686
|
}, z.core.$loose>;
|
|
2656
2687
|
analytics: z.ZodObject<{
|
|
2657
2688
|
status: z.ZodEnum<{
|
|
2658
|
-
queued: "queued";
|
|
2659
2689
|
ready: "ready";
|
|
2660
|
-
failed: "failed";
|
|
2661
2690
|
not_registered: "not_registered";
|
|
2691
|
+
queued: "queued";
|
|
2662
2692
|
preparing: "preparing";
|
|
2663
2693
|
syncing: "syncing";
|
|
2664
2694
|
queryable_live: "queryable_live";
|
|
2665
2695
|
queryable_partial: "queryable_partial";
|
|
2696
|
+
failed: "failed";
|
|
2666
2697
|
}>;
|
|
2667
2698
|
progress: z.ZodObject<{
|
|
2668
2699
|
completed: z.ZodNumber;
|
|
@@ -2672,10 +2703,10 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2672
2703
|
}, z.core.$strip>;
|
|
2673
2704
|
queryable: z.ZodBoolean;
|
|
2674
2705
|
sourceMode: z.ZodEnum<{
|
|
2675
|
-
d1: "d1";
|
|
2676
|
-
r2: "r2";
|
|
2677
2706
|
none: "none";
|
|
2678
2707
|
live: "live";
|
|
2708
|
+
d1: "d1";
|
|
2709
|
+
r2: "r2";
|
|
2679
2710
|
mixed: "mixed";
|
|
2680
2711
|
}>;
|
|
2681
2712
|
syncedRange: z.ZodObject<{
|
|
@@ -2690,10 +2721,10 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2690
2721
|
}, z.core.$loose>;
|
|
2691
2722
|
sitemaps: z.ZodObject<{
|
|
2692
2723
|
status: z.ZodEnum<{
|
|
2693
|
-
unknown: "unknown";
|
|
2694
2724
|
ready: "ready";
|
|
2695
|
-
failed: "failed";
|
|
2696
2725
|
syncing: "syncing";
|
|
2726
|
+
failed: "failed";
|
|
2727
|
+
unknown: "unknown";
|
|
2697
2728
|
discovering: "discovering";
|
|
2698
2729
|
none_found: "none_found";
|
|
2699
2730
|
auto_submitted: "auto_submitted";
|
|
@@ -2765,9 +2796,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2765
2796
|
siteId: z.ZodString;
|
|
2766
2797
|
siteUrl: z.ZodString;
|
|
2767
2798
|
syncStatus: z.ZodEnum<{
|
|
2799
|
+
syncing: "syncing";
|
|
2768
2800
|
pending: "pending";
|
|
2769
2801
|
error: "error";
|
|
2770
|
-
syncing: "syncing";
|
|
2771
2802
|
synced: "synced";
|
|
2772
2803
|
idle: "idle";
|
|
2773
2804
|
}>;
|
|
@@ -2785,9 +2816,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2785
2816
|
registered: z.ZodBoolean;
|
|
2786
2817
|
siteId: z.ZodOptional<z.ZodString>;
|
|
2787
2818
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2819
|
+
syncing: "syncing";
|
|
2788
2820
|
pending: "pending";
|
|
2789
2821
|
error: "error";
|
|
2790
|
-
syncing: "syncing";
|
|
2791
2822
|
synced: "synced";
|
|
2792
2823
|
}>>>;
|
|
2793
2824
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -2832,9 +2863,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2832
2863
|
readonly response: z.ZodObject<{
|
|
2833
2864
|
siteId: z.ZodString;
|
|
2834
2865
|
status: z.ZodEnum<{
|
|
2866
|
+
syncing: "syncing";
|
|
2835
2867
|
pending: "pending";
|
|
2836
2868
|
error: "error";
|
|
2837
|
-
syncing: "syncing";
|
|
2838
2869
|
synced: "synced";
|
|
2839
2870
|
idle: "idle";
|
|
2840
2871
|
}>;
|
|
@@ -2875,8 +2906,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2875
2906
|
siteUrl: z.ZodString;
|
|
2876
2907
|
siteId: z.ZodOptional<z.ZodString>;
|
|
2877
2908
|
status: z.ZodEnum<{
|
|
2878
|
-
error: "error";
|
|
2879
2909
|
registered: "registered";
|
|
2910
|
+
error: "error";
|
|
2880
2911
|
already_exists: "already_exists";
|
|
2881
2912
|
not_found: "not_found";
|
|
2882
2913
|
}>;
|
|
@@ -3663,6 +3694,37 @@ declare const partnerControlEndpointSchemas: {
|
|
|
3663
3694
|
siteId: z.ZodString;
|
|
3664
3695
|
userId: z.ZodNumber;
|
|
3665
3696
|
timestamp: z.ZodNumber;
|
|
3697
|
+
}, z.core.$loose>, z.ZodObject<{
|
|
3698
|
+
event: z.ZodLiteral<"sitemap.progress">;
|
|
3699
|
+
userId: z.ZodNumber;
|
|
3700
|
+
siteId: z.ZodString;
|
|
3701
|
+
siteUrl: z.ZodString;
|
|
3702
|
+
discovered: z.ZodNumber;
|
|
3703
|
+
total: z.ZodNumber;
|
|
3704
|
+
progress: z.ZodNumber;
|
|
3705
|
+
}, z.core.$loose>, z.ZodObject<{
|
|
3706
|
+
event: z.ZodLiteral<"sitemap.complete">;
|
|
3707
|
+
userId: z.ZodNumber;
|
|
3708
|
+
siteId: z.ZodString;
|
|
3709
|
+
siteUrl: z.ZodString;
|
|
3710
|
+
discoveredCount: z.ZodNumber;
|
|
3711
|
+
timestamp: z.ZodNumber;
|
|
3712
|
+
}, z.core.$loose>, z.ZodObject<{
|
|
3713
|
+
event: z.ZodLiteral<"indexing.progress">;
|
|
3714
|
+
userId: z.ZodNumber;
|
|
3715
|
+
siteId: z.ZodString;
|
|
3716
|
+
siteUrl: z.ZodString;
|
|
3717
|
+
checked: z.ZodNumber;
|
|
3718
|
+
total: z.ZodNumber;
|
|
3719
|
+
progress: z.ZodNumber;
|
|
3720
|
+
}, z.core.$loose>, z.ZodObject<{
|
|
3721
|
+
event: z.ZodLiteral<"indexing.complete">;
|
|
3722
|
+
userId: z.ZodNumber;
|
|
3723
|
+
siteId: z.ZodString;
|
|
3724
|
+
siteUrl: z.ZodString;
|
|
3725
|
+
totalUrls: z.ZodNumber;
|
|
3726
|
+
indexedCount: z.ZodNumber;
|
|
3727
|
+
timestamp: z.ZodNumber;
|
|
3666
3728
|
}, z.core.$loose>], "event">;
|
|
3667
3729
|
};
|
|
3668
3730
|
readonly webhook: {
|
|
@@ -3699,19 +3761,19 @@ declare const partnerEndpointSchemas: {
|
|
|
3699
3761
|
databaseReady: z.ZodBoolean;
|
|
3700
3762
|
plan: z.ZodString;
|
|
3701
3763
|
accountStatus: z.ZodEnum<{
|
|
3702
|
-
ready: "ready";
|
|
3703
|
-
reauth_required: "reauth_required";
|
|
3704
3764
|
disconnected: "disconnected";
|
|
3705
3765
|
oauth_received: "oauth_received";
|
|
3706
3766
|
scope_missing: "scope_missing";
|
|
3707
3767
|
refresh_missing: "refresh_missing";
|
|
3708
3768
|
db_provisioning: "db_provisioning";
|
|
3769
|
+
ready: "ready";
|
|
3770
|
+
reauth_required: "reauth_required";
|
|
3709
3771
|
}>;
|
|
3710
3772
|
accountNextAction: z.ZodEnum<{
|
|
3711
|
-
reconnect_google: "reconnect_google";
|
|
3712
|
-
none: "none";
|
|
3713
3773
|
connect_google: "connect_google";
|
|
3774
|
+
reconnect_google: "reconnect_google";
|
|
3714
3775
|
wait_for_provisioning: "wait_for_provisioning";
|
|
3776
|
+
none: "none";
|
|
3715
3777
|
}>;
|
|
3716
3778
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
3717
3779
|
browserAnalyzerEnabled: z.ZodBoolean;
|
|
@@ -3815,8 +3877,8 @@ declare const partnerEndpointSchemas: {
|
|
|
3815
3877
|
date: z.ZodString;
|
|
3816
3878
|
status: z.ZodEnum<{
|
|
3817
3879
|
queued: "queued";
|
|
3818
|
-
completed: "completed";
|
|
3819
3880
|
failed: "failed";
|
|
3881
|
+
completed: "completed";
|
|
3820
3882
|
processing: "processing";
|
|
3821
3883
|
}>;
|
|
3822
3884
|
}, z.core.$loose>>;
|
|
@@ -3841,8 +3903,8 @@ declare const partnerEndpointSchemas: {
|
|
|
3841
3903
|
priority: z.ZodOptional<z.ZodString>;
|
|
3842
3904
|
status: z.ZodEnum<{
|
|
3843
3905
|
queued: "queued";
|
|
3844
|
-
completed: "completed";
|
|
3845
3906
|
failed: "failed";
|
|
3907
|
+
completed: "completed";
|
|
3846
3908
|
processing: "processing";
|
|
3847
3909
|
scheduled: "scheduled";
|
|
3848
3910
|
}>;
|
|
@@ -3896,8 +3958,8 @@ declare const partnerEndpointSchemas: {
|
|
|
3896
3958
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
3897
3959
|
isNew: z.ZodOptional<z.ZodBoolean>;
|
|
3898
3960
|
status: z.ZodOptional<z.ZodEnum<{
|
|
3899
|
-
provisioning: "provisioning";
|
|
3900
3961
|
ready: "ready";
|
|
3962
|
+
provisioning: "provisioning";
|
|
3901
3963
|
}>>;
|
|
3902
3964
|
}, z.core.$loose>;
|
|
3903
3965
|
};
|
|
@@ -3916,9 +3978,9 @@ declare const partnerEndpointSchemas: {
|
|
|
3916
3978
|
registered: z.ZodBoolean;
|
|
3917
3979
|
siteId: z.ZodOptional<z.ZodString>;
|
|
3918
3980
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3981
|
+
syncing: "syncing";
|
|
3919
3982
|
pending: "pending";
|
|
3920
3983
|
error: "error";
|
|
3921
|
-
syncing: "syncing";
|
|
3922
3984
|
synced: "synced";
|
|
3923
3985
|
}>>>;
|
|
3924
3986
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -3937,9 +3999,9 @@ declare const partnerEndpointSchemas: {
|
|
|
3937
3999
|
readonly response: z.ZodObject<{
|
|
3938
4000
|
userId: z.ZodString;
|
|
3939
4001
|
status: z.ZodEnum<{
|
|
3940
|
-
provisioning: "provisioning";
|
|
3941
4002
|
ready: "ready";
|
|
3942
4003
|
reauth_required: "reauth_required";
|
|
4004
|
+
provisioning: "provisioning";
|
|
3943
4005
|
}>;
|
|
3944
4006
|
databaseReady: z.ZodOptional<z.ZodBoolean>;
|
|
3945
4007
|
needsReauth: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3960,21 +4022,21 @@ declare const partnerEndpointSchemas: {
|
|
|
3960
4022
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
3961
4023
|
account: z.ZodObject<{
|
|
3962
4024
|
status: z.ZodEnum<{
|
|
3963
|
-
ready: "ready";
|
|
3964
|
-
reauth_required: "reauth_required";
|
|
3965
4025
|
disconnected: "disconnected";
|
|
3966
4026
|
oauth_received: "oauth_received";
|
|
3967
4027
|
scope_missing: "scope_missing";
|
|
3968
4028
|
refresh_missing: "refresh_missing";
|
|
3969
4029
|
db_provisioning: "db_provisioning";
|
|
4030
|
+
ready: "ready";
|
|
4031
|
+
reauth_required: "reauth_required";
|
|
3970
4032
|
}>;
|
|
3971
4033
|
grantedScopes: z.ZodArray<z.ZodString>;
|
|
3972
4034
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
3973
4035
|
nextAction: z.ZodEnum<{
|
|
3974
|
-
reconnect_google: "reconnect_google";
|
|
3975
|
-
none: "none";
|
|
3976
4036
|
connect_google: "connect_google";
|
|
4037
|
+
reconnect_google: "reconnect_google";
|
|
3977
4038
|
wait_for_provisioning: "wait_for_provisioning";
|
|
4039
|
+
none: "none";
|
|
3978
4040
|
}>;
|
|
3979
4041
|
}, z.core.$loose>;
|
|
3980
4042
|
sites: z.ZodArray<z.ZodObject<{
|
|
@@ -4002,14 +4064,14 @@ declare const partnerEndpointSchemas: {
|
|
|
4002
4064
|
}, z.core.$loose>;
|
|
4003
4065
|
analytics: z.ZodObject<{
|
|
4004
4066
|
status: z.ZodEnum<{
|
|
4005
|
-
queued: "queued";
|
|
4006
4067
|
ready: "ready";
|
|
4007
|
-
failed: "failed";
|
|
4008
4068
|
not_registered: "not_registered";
|
|
4069
|
+
queued: "queued";
|
|
4009
4070
|
preparing: "preparing";
|
|
4010
4071
|
syncing: "syncing";
|
|
4011
4072
|
queryable_live: "queryable_live";
|
|
4012
4073
|
queryable_partial: "queryable_partial";
|
|
4074
|
+
failed: "failed";
|
|
4013
4075
|
}>;
|
|
4014
4076
|
progress: z.ZodObject<{
|
|
4015
4077
|
completed: z.ZodNumber;
|
|
@@ -4019,10 +4081,10 @@ declare const partnerEndpointSchemas: {
|
|
|
4019
4081
|
}, z.core.$strip>;
|
|
4020
4082
|
queryable: z.ZodBoolean;
|
|
4021
4083
|
sourceMode: z.ZodEnum<{
|
|
4022
|
-
d1: "d1";
|
|
4023
|
-
r2: "r2";
|
|
4024
4084
|
none: "none";
|
|
4025
4085
|
live: "live";
|
|
4086
|
+
d1: "d1";
|
|
4087
|
+
r2: "r2";
|
|
4026
4088
|
mixed: "mixed";
|
|
4027
4089
|
}>;
|
|
4028
4090
|
syncedRange: z.ZodObject<{
|
|
@@ -4037,10 +4099,10 @@ declare const partnerEndpointSchemas: {
|
|
|
4037
4099
|
}, z.core.$loose>;
|
|
4038
4100
|
sitemaps: z.ZodObject<{
|
|
4039
4101
|
status: z.ZodEnum<{
|
|
4040
|
-
unknown: "unknown";
|
|
4041
4102
|
ready: "ready";
|
|
4042
|
-
failed: "failed";
|
|
4043
4103
|
syncing: "syncing";
|
|
4104
|
+
failed: "failed";
|
|
4105
|
+
unknown: "unknown";
|
|
4044
4106
|
discovering: "discovering";
|
|
4045
4107
|
none_found: "none_found";
|
|
4046
4108
|
auto_submitted: "auto_submitted";
|
|
@@ -4112,9 +4174,9 @@ declare const partnerEndpointSchemas: {
|
|
|
4112
4174
|
siteId: z.ZodString;
|
|
4113
4175
|
siteUrl: z.ZodString;
|
|
4114
4176
|
syncStatus: z.ZodEnum<{
|
|
4177
|
+
syncing: "syncing";
|
|
4115
4178
|
pending: "pending";
|
|
4116
4179
|
error: "error";
|
|
4117
|
-
syncing: "syncing";
|
|
4118
4180
|
synced: "synced";
|
|
4119
4181
|
idle: "idle";
|
|
4120
4182
|
}>;
|
|
@@ -4132,9 +4194,9 @@ declare const partnerEndpointSchemas: {
|
|
|
4132
4194
|
registered: z.ZodBoolean;
|
|
4133
4195
|
siteId: z.ZodOptional<z.ZodString>;
|
|
4134
4196
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4197
|
+
syncing: "syncing";
|
|
4135
4198
|
pending: "pending";
|
|
4136
4199
|
error: "error";
|
|
4137
|
-
syncing: "syncing";
|
|
4138
4200
|
synced: "synced";
|
|
4139
4201
|
}>>>;
|
|
4140
4202
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -4179,9 +4241,9 @@ declare const partnerEndpointSchemas: {
|
|
|
4179
4241
|
readonly response: z.ZodObject<{
|
|
4180
4242
|
siteId: z.ZodString;
|
|
4181
4243
|
status: z.ZodEnum<{
|
|
4244
|
+
syncing: "syncing";
|
|
4182
4245
|
pending: "pending";
|
|
4183
4246
|
error: "error";
|
|
4184
|
-
syncing: "syncing";
|
|
4185
4247
|
synced: "synced";
|
|
4186
4248
|
idle: "idle";
|
|
4187
4249
|
}>;
|
|
@@ -4222,8 +4284,8 @@ declare const partnerEndpointSchemas: {
|
|
|
4222
4284
|
siteUrl: z.ZodString;
|
|
4223
4285
|
siteId: z.ZodOptional<z.ZodString>;
|
|
4224
4286
|
status: z.ZodEnum<{
|
|
4225
|
-
error: "error";
|
|
4226
4287
|
registered: "registered";
|
|
4288
|
+
error: "error";
|
|
4227
4289
|
already_exists: "already_exists";
|
|
4228
4290
|
not_found: "not_found";
|
|
4229
4291
|
}>;
|
|
@@ -5010,6 +5072,37 @@ declare const partnerEndpointSchemas: {
|
|
|
5010
5072
|
siteId: z.ZodString;
|
|
5011
5073
|
userId: z.ZodNumber;
|
|
5012
5074
|
timestamp: z.ZodNumber;
|
|
5075
|
+
}, z.core.$loose>, z.ZodObject<{
|
|
5076
|
+
event: z.ZodLiteral<"sitemap.progress">;
|
|
5077
|
+
userId: z.ZodNumber;
|
|
5078
|
+
siteId: z.ZodString;
|
|
5079
|
+
siteUrl: z.ZodString;
|
|
5080
|
+
discovered: z.ZodNumber;
|
|
5081
|
+
total: z.ZodNumber;
|
|
5082
|
+
progress: z.ZodNumber;
|
|
5083
|
+
}, z.core.$loose>, z.ZodObject<{
|
|
5084
|
+
event: z.ZodLiteral<"sitemap.complete">;
|
|
5085
|
+
userId: z.ZodNumber;
|
|
5086
|
+
siteId: z.ZodString;
|
|
5087
|
+
siteUrl: z.ZodString;
|
|
5088
|
+
discoveredCount: z.ZodNumber;
|
|
5089
|
+
timestamp: z.ZodNumber;
|
|
5090
|
+
}, z.core.$loose>, z.ZodObject<{
|
|
5091
|
+
event: z.ZodLiteral<"indexing.progress">;
|
|
5092
|
+
userId: z.ZodNumber;
|
|
5093
|
+
siteId: z.ZodString;
|
|
5094
|
+
siteUrl: z.ZodString;
|
|
5095
|
+
checked: z.ZodNumber;
|
|
5096
|
+
total: z.ZodNumber;
|
|
5097
|
+
progress: z.ZodNumber;
|
|
5098
|
+
}, z.core.$loose>, z.ZodObject<{
|
|
5099
|
+
event: z.ZodLiteral<"indexing.complete">;
|
|
5100
|
+
userId: z.ZodNumber;
|
|
5101
|
+
siteId: z.ZodString;
|
|
5102
|
+
siteUrl: z.ZodString;
|
|
5103
|
+
totalUrls: z.ZodNumber;
|
|
5104
|
+
indexedCount: z.ZodNumber;
|
|
5105
|
+
timestamp: z.ZodNumber;
|
|
5013
5106
|
}, z.core.$loose>], "event">;
|
|
5014
5107
|
};
|
|
5015
5108
|
readonly webhook: {
|
package/dist/_chunks/schemas.mjs
CHANGED
|
@@ -1352,6 +1352,41 @@ const partnerRealtimeEventSchema = z.discriminatedUnion("event", [
|
|
|
1352
1352
|
siteId: z.string(),
|
|
1353
1353
|
userId: z.number(),
|
|
1354
1354
|
timestamp: z.number()
|
|
1355
|
+
}).loose(),
|
|
1356
|
+
z.object({
|
|
1357
|
+
event: z.literal("sitemap.progress"),
|
|
1358
|
+
userId: z.number(),
|
|
1359
|
+
siteId: z.string(),
|
|
1360
|
+
siteUrl: z.string(),
|
|
1361
|
+
discovered: z.number(),
|
|
1362
|
+
total: z.number(),
|
|
1363
|
+
progress: z.number()
|
|
1364
|
+
}).loose(),
|
|
1365
|
+
z.object({
|
|
1366
|
+
event: z.literal("sitemap.complete"),
|
|
1367
|
+
userId: z.number(),
|
|
1368
|
+
siteId: z.string(),
|
|
1369
|
+
siteUrl: z.string(),
|
|
1370
|
+
discoveredCount: z.number(),
|
|
1371
|
+
timestamp: z.number()
|
|
1372
|
+
}).loose(),
|
|
1373
|
+
z.object({
|
|
1374
|
+
event: z.literal("indexing.progress"),
|
|
1375
|
+
userId: z.number(),
|
|
1376
|
+
siteId: z.string(),
|
|
1377
|
+
siteUrl: z.string(),
|
|
1378
|
+
checked: z.number(),
|
|
1379
|
+
total: z.number(),
|
|
1380
|
+
progress: z.number()
|
|
1381
|
+
}).loose(),
|
|
1382
|
+
z.object({
|
|
1383
|
+
event: z.literal("indexing.complete"),
|
|
1384
|
+
userId: z.number(),
|
|
1385
|
+
siteId: z.string(),
|
|
1386
|
+
siteUrl: z.string(),
|
|
1387
|
+
totalUrls: z.number(),
|
|
1388
|
+
indexedCount: z.number(),
|
|
1389
|
+
timestamp: z.number()
|
|
1355
1390
|
}).loose()
|
|
1356
1391
|
]);
|
|
1357
1392
|
const canonicalWebhookEventTypeSchema = z.enum(CANONICAL_WEBHOOK_EVENTS);
|
package/dist/_chunks/types.d.mts
CHANGED
|
@@ -1402,7 +1402,7 @@ interface PartnerClient {
|
|
|
1402
1402
|
teamId: string | null;
|
|
1403
1403
|
}>;
|
|
1404
1404
|
}
|
|
1405
|
-
type PartnerRealtimeEventType = 'sync.progress' | 'sync.complete' | 'sync.job_complete' | 'sync.site_complete' | 'sync.failed' | 'job.failed' | 'auth.failed' | 'auth.needs_reauth' | 'site.added' | 'site.removed' | 'enrichment.complete';
|
|
1405
|
+
type PartnerRealtimeEventType = 'sync.progress' | 'sync.complete' | 'sync.job_complete' | 'sync.site_complete' | 'sync.failed' | 'job.failed' | 'auth.failed' | 'auth.needs_reauth' | 'site.added' | 'site.removed' | 'enrichment.complete' | 'sitemap.progress' | 'sitemap.complete' | 'indexing.progress' | 'indexing.complete';
|
|
1406
1406
|
interface RealtimeSyncProgressEvent {
|
|
1407
1407
|
event: 'sync.progress';
|
|
1408
1408
|
siteId: string;
|
|
@@ -1493,7 +1493,42 @@ interface RealtimeEnrichmentCompleteEvent {
|
|
|
1493
1493
|
userId: number;
|
|
1494
1494
|
timestamp: number;
|
|
1495
1495
|
}
|
|
1496
|
-
|
|
1496
|
+
interface RealtimeSitemapProgressEvent {
|
|
1497
|
+
event: 'sitemap.progress';
|
|
1498
|
+
userId: number;
|
|
1499
|
+
siteId: string;
|
|
1500
|
+
siteUrl: string;
|
|
1501
|
+
discovered: number;
|
|
1502
|
+
total: number;
|
|
1503
|
+
progress: number;
|
|
1504
|
+
}
|
|
1505
|
+
interface RealtimeSitemapCompleteEvent {
|
|
1506
|
+
event: 'sitemap.complete';
|
|
1507
|
+
userId: number;
|
|
1508
|
+
siteId: string;
|
|
1509
|
+
siteUrl: string;
|
|
1510
|
+
discoveredCount: number;
|
|
1511
|
+
timestamp: number;
|
|
1512
|
+
}
|
|
1513
|
+
interface RealtimeIndexingProgressEvent {
|
|
1514
|
+
event: 'indexing.progress';
|
|
1515
|
+
userId: number;
|
|
1516
|
+
siteId: string;
|
|
1517
|
+
siteUrl: string;
|
|
1518
|
+
checked: number;
|
|
1519
|
+
total: number;
|
|
1520
|
+
progress: number;
|
|
1521
|
+
}
|
|
1522
|
+
interface RealtimeIndexingCompleteEvent {
|
|
1523
|
+
event: 'indexing.complete';
|
|
1524
|
+
userId: number;
|
|
1525
|
+
siteId: string;
|
|
1526
|
+
siteUrl: string;
|
|
1527
|
+
totalUrls: number;
|
|
1528
|
+
indexedCount: number;
|
|
1529
|
+
timestamp: number;
|
|
1530
|
+
}
|
|
1531
|
+
type PartnerRealtimeEvent = RealtimeSyncProgressEvent | RealtimeSyncCompleteEvent | RealtimeSyncJobCompleteEvent | RealtimeSyncSiteCompleteEvent | RealtimeSyncFailedEvent | RealtimeJobFailedEvent | RealtimeSiteAddedEvent | RealtimeSiteRemovedEvent | RealtimeAuthFailedEvent | RealtimeNeedsReauthEvent | RealtimeEnrichmentCompleteEvent | RealtimeSitemapProgressEvent | RealtimeSitemapCompleteEvent | RealtimeIndexingProgressEvent | RealtimeIndexingCompleteEvent;
|
|
1497
1532
|
interface RealtimeAuthRequiredMessage {
|
|
1498
1533
|
event: 'auth.required';
|
|
1499
1534
|
message: string;
|
|
@@ -1554,4 +1589,4 @@ interface PartnerWebhookHeaders {
|
|
|
1554
1589
|
timestamp?: string | null;
|
|
1555
1590
|
signature?: string | null;
|
|
1556
1591
|
}
|
|
1557
|
-
export { AccountNextAction, AccountStatus, AddPartnerTeamMemberParams, AnalysisSourcesOptions, AnalysisSourcesResponse, AnalyticsClient, AnalyticsNextAction, AnalyticsStatus, BackfillRange, BackfillResponse, BindPartnerSiteTeamParams, BuilderState, BulkRegisterPartnerSiteResult, BulkRegisterPartnerSitesParams, BulkRegisterPartnerSitesResponse, CanonicalWebhookEventType, ColumnDef, ColumnType, CountriesResponse, CountryRow, CreatePartnerTeamParams, CreateWebhookEnvelopeOptions, DataDetailOptions, DataQueryOptions, DeletePartnerUserResponse, Dimension, Filter, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, Grain, GscApiRange, GscComparisonFilter, GscRowQueryMeta, GscRowQueryResponse, GscSearchType, GscdumpAnalysisParams, GscdumpAnalysisPreset, GscdumpAnalysisResponse, GscdumpAnalysisSourcesResponse, GscdumpAvailableSite, GscdumpCanonicalMismatchRow, GscdumpCanonicalMismatchesResponse, GscdumpDataDetailResponse, GscdumpDataResponse, GscdumpDataRow, GscdumpDateRangeParams, GscdumpHealthResponse, GscdumpIndexPercentResponse, GscdumpIndexPercentSitemap, GscdumpIndexPercentTrendPoint, GscdumpIndexingDiagnosticsResponse, GscdumpIndexingInspectRateLimited, GscdumpIndexingInspectRequest, GscdumpIndexingInspectResponse, GscdumpIndexingInspectResult, GscdumpIndexingIssueSeverity, GscdumpIndexingResponse, GscdumpIndexingTrendPoint, GscdumpIndexingUrl, GscdumpIndexingUrlStatus, GscdumpIndexingUrlsResponse, GscdumpInvisibleUrlRow, GscdumpKeywordSparklinesParams, GscdumpKeywordSparklinesResponse, GscdumpMeta, GscdumpOrphanPageRow, GscdumpPageTrendParams, GscdumpPageTrendResponse, GscdumpPerSitemapHistoryEntry, GscdumpPermissionRecovery, GscdumpQueryTrendParams, GscdumpQueryTrendResponse, GscdumpRichResultItem, GscdumpSiteRegistration, GscdumpSiteReportResponse, GscdumpSitemap, GscdumpSitemapChangesResponse, GscdumpSitemapHistory, GscdumpSitemapsResponse, GscdumpSyncJobItem, GscdumpSyncJobStatus, GscdumpSyncJobsQueueCounts, GscdumpSyncJobsResponse, GscdumpSyncProgressDateStatus, GscdumpSyncProgressPhaseCounts, GscdumpSyncProgressResponse, GscdumpSyncProgressSite, GscdumpSyncStatusResponse, GscdumpTeamMemberRow, GscdumpTeamRow, GscdumpTopAssociationParams, GscdumpTopAssociationResponse, GscdumpTotals, GscdumpUserMeResponse, GscdumpUserRegistration, GscdumpUserSettings, GscdumpUserSite, GscdumpUserStatus, GscdumpUserTokenUpdate, IndexingDiagnostics, IndexingInspectRateLimit, IndexingInspectRateLimited, IndexingInspectRequest, IndexingInspectResponse, IndexingInspectResult, IndexingIssue, IndexingIssueSeverity, IndexingNextAction, IndexingStatus, IndexingUrlRow, IndexingUrlStatus, IndexingUrlsParams, IndexingUrlsResponse, InspectionHistoryRecord, InspectionHistoryResponse, InspectionIndex, InspectionRecordRaw, LifecycleError, LifecycleErrorCode, LifecycleProgress, LifecycleWebhookEnvelope, LifecycleWebhookEvent, Metric, PartnerClient, PartnerLifecycleAccount, PartnerLifecycleResponse, PartnerLifecycleSite, PartnerRealtimeEvent, PartnerRealtimeEventType, PartnerRealtimeMessage, PartnerWebhookData, PartnerWebhookHeaders, PropertyNextAction, PropertyStatus, QuerySourceMode, RealtimeAuthFailedEvent, RealtimeAuthRequiredMessage, RealtimeConnectedMessage, RealtimeEnrichmentCompleteEvent, RealtimeErrorMessage, RealtimeJobFailedEvent, RealtimeNeedsReauthEvent, RealtimePongMessage, RealtimeSiteAddedEvent, RealtimeSiteRemovedEvent, RealtimeSubscribedMessage, RealtimeSyncCompleteEvent, RealtimeSyncFailedEvent, RealtimeSyncJobCompleteEvent, RealtimeSyncProgressEvent, RealtimeSyncSiteCompleteEvent, RegisterPartnerSiteParams, RegisterPartnerUserParams, RollupEnvelope, Row, ScheduleState, SearchAppearanceResponse, SearchAppearanceRow, SearchTypeOptions, SiteListItem, SitemapAddedRow, SitemapChangesResponse, SitemapHistoryRecord, SitemapHistoryResponse, SitemapIndex, SitemapNextAction, SitemapRemovedRow, SitemapStatus, SourceInfoOptions, SourceInfoResponse, TableName, TableSchema, TenantCtx, UpdatePartnerUserTokensParams, WebhookEnvelope, WebhookEventType, WhoamiResponse, accountNextActions, accountStatuses, analyticsNextActions, analyticsStatuses, hasOptionalIndexingScope, hasRequiredAnalyticsScope, indexingNextActions, indexingStatuses, lifecycleErrorCodes, lifecycleWebhookEvents, parseGrantedScopes, propertyNextActions, propertyStatuses, querySourceModes, sitemapNextActions, sitemapStatuses };
|
|
1592
|
+
export { AccountNextAction, AccountStatus, AddPartnerTeamMemberParams, AnalysisSourcesOptions, AnalysisSourcesResponse, AnalyticsClient, AnalyticsNextAction, AnalyticsStatus, BackfillRange, BackfillResponse, BindPartnerSiteTeamParams, BuilderState, BulkRegisterPartnerSiteResult, BulkRegisterPartnerSitesParams, BulkRegisterPartnerSitesResponse, CanonicalWebhookEventType, ColumnDef, ColumnType, CountriesResponse, CountryRow, CreatePartnerTeamParams, CreateWebhookEnvelopeOptions, DataDetailOptions, DataQueryOptions, DeletePartnerUserResponse, Dimension, Filter, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, Grain, GscApiRange, GscComparisonFilter, GscRowQueryMeta, GscRowQueryResponse, GscSearchType, GscdumpAnalysisParams, GscdumpAnalysisPreset, GscdumpAnalysisResponse, GscdumpAnalysisSourcesResponse, GscdumpAvailableSite, GscdumpCanonicalMismatchRow, GscdumpCanonicalMismatchesResponse, GscdumpDataDetailResponse, GscdumpDataResponse, GscdumpDataRow, GscdumpDateRangeParams, GscdumpHealthResponse, GscdumpIndexPercentResponse, GscdumpIndexPercentSitemap, GscdumpIndexPercentTrendPoint, GscdumpIndexingDiagnosticsResponse, GscdumpIndexingInspectRateLimited, GscdumpIndexingInspectRequest, GscdumpIndexingInspectResponse, GscdumpIndexingInspectResult, GscdumpIndexingIssueSeverity, GscdumpIndexingResponse, GscdumpIndexingTrendPoint, GscdumpIndexingUrl, GscdumpIndexingUrlStatus, GscdumpIndexingUrlsResponse, GscdumpInvisibleUrlRow, GscdumpKeywordSparklinesParams, GscdumpKeywordSparklinesResponse, GscdumpMeta, GscdumpOrphanPageRow, GscdumpPageTrendParams, GscdumpPageTrendResponse, GscdumpPerSitemapHistoryEntry, GscdumpPermissionRecovery, GscdumpQueryTrendParams, GscdumpQueryTrendResponse, GscdumpRichResultItem, GscdumpSiteRegistration, GscdumpSiteReportResponse, GscdumpSitemap, GscdumpSitemapChangesResponse, GscdumpSitemapHistory, GscdumpSitemapsResponse, GscdumpSyncJobItem, GscdumpSyncJobStatus, GscdumpSyncJobsQueueCounts, GscdumpSyncJobsResponse, GscdumpSyncProgressDateStatus, GscdumpSyncProgressPhaseCounts, GscdumpSyncProgressResponse, GscdumpSyncProgressSite, GscdumpSyncStatusResponse, GscdumpTeamMemberRow, GscdumpTeamRow, GscdumpTopAssociationParams, GscdumpTopAssociationResponse, GscdumpTotals, GscdumpUserMeResponse, GscdumpUserRegistration, GscdumpUserSettings, GscdumpUserSite, GscdumpUserStatus, GscdumpUserTokenUpdate, IndexingDiagnostics, IndexingInspectRateLimit, IndexingInspectRateLimited, IndexingInspectRequest, IndexingInspectResponse, IndexingInspectResult, IndexingIssue, IndexingIssueSeverity, IndexingNextAction, IndexingStatus, IndexingUrlRow, IndexingUrlStatus, IndexingUrlsParams, IndexingUrlsResponse, InspectionHistoryRecord, InspectionHistoryResponse, InspectionIndex, InspectionRecordRaw, LifecycleError, LifecycleErrorCode, LifecycleProgress, LifecycleWebhookEnvelope, LifecycleWebhookEvent, Metric, PartnerClient, PartnerLifecycleAccount, PartnerLifecycleResponse, PartnerLifecycleSite, PartnerRealtimeEvent, PartnerRealtimeEventType, PartnerRealtimeMessage, PartnerWebhookData, PartnerWebhookHeaders, PropertyNextAction, PropertyStatus, QuerySourceMode, RealtimeAuthFailedEvent, RealtimeAuthRequiredMessage, RealtimeConnectedMessage, RealtimeEnrichmentCompleteEvent, RealtimeErrorMessage, RealtimeIndexingCompleteEvent, RealtimeIndexingProgressEvent, RealtimeJobFailedEvent, RealtimeNeedsReauthEvent, RealtimePongMessage, RealtimeSiteAddedEvent, RealtimeSiteRemovedEvent, RealtimeSitemapCompleteEvent, RealtimeSitemapProgressEvent, RealtimeSubscribedMessage, RealtimeSyncCompleteEvent, RealtimeSyncFailedEvent, RealtimeSyncJobCompleteEvent, RealtimeSyncProgressEvent, RealtimeSyncSiteCompleteEvent, RegisterPartnerSiteParams, RegisterPartnerUserParams, RollupEnvelope, Row, ScheduleState, SearchAppearanceResponse, SearchAppearanceRow, SearchTypeOptions, SiteListItem, SitemapAddedRow, SitemapChangesResponse, SitemapHistoryRecord, SitemapHistoryResponse, SitemapIndex, SitemapNextAction, SitemapRemovedRow, SitemapStatus, SourceInfoOptions, SourceInfoResponse, TableName, TableSchema, TenantCtx, UpdatePartnerUserTokensParams, WebhookEnvelope, WebhookEventType, WhoamiResponse, accountNextActions, accountStatuses, analyticsNextActions, analyticsStatuses, hasOptionalIndexingScope, hasRequiredAnalyticsScope, indexingNextActions, indexingStatuses, lifecycleErrorCodes, lifecycleWebhookEvents, parseGrantedScopes, propertyNextActions, propertyStatuses, querySourceModes, sitemapNextActions, sitemapStatuses };
|
package/dist/analytics.d.mts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { analyticsEndpointSchemas, analyticsRoutes } from "./_chunks/schemas.mjs";
|
|
2
|
-
import { AddPartnerTeamMemberParams, AnalysisSourcesOptions, AnalysisSourcesResponse, AnalyticsClient, BackfillRange, BackfillResponse, BindPartnerSiteTeamParams, BuilderState, BulkRegisterPartnerSiteResult, BulkRegisterPartnerSitesParams, BulkRegisterPartnerSitesResponse, CanonicalWebhookEventType, ColumnDef, ColumnType, CountriesResponse, CountryRow, CreatePartnerTeamParams, CreateWebhookEnvelopeOptions, DataDetailOptions, DataQueryOptions, DeletePartnerUserResponse, Dimension, Filter, Grain, GscApiRange, GscComparisonFilter, GscRowQueryMeta, GscRowQueryResponse, GscSearchType, GscdumpAnalysisParams, GscdumpAnalysisPreset, GscdumpAnalysisResponse, GscdumpAnalysisSourcesResponse, GscdumpAvailableSite, GscdumpCanonicalMismatchRow, GscdumpCanonicalMismatchesResponse, GscdumpDataDetailResponse, GscdumpDataResponse, GscdumpDataRow, GscdumpDateRangeParams, GscdumpHealthResponse, GscdumpIndexPercentResponse, GscdumpIndexPercentSitemap, GscdumpIndexPercentTrendPoint, GscdumpIndexingDiagnosticsResponse, GscdumpIndexingInspectRateLimited, GscdumpIndexingInspectRequest, GscdumpIndexingInspectResponse, GscdumpIndexingInspectResult, GscdumpIndexingIssueSeverity, GscdumpIndexingResponse, GscdumpIndexingTrendPoint, GscdumpIndexingUrl, GscdumpIndexingUrlStatus, GscdumpIndexingUrlsResponse, GscdumpInvisibleUrlRow, GscdumpKeywordSparklinesParams, GscdumpKeywordSparklinesResponse, GscdumpMeta, GscdumpOrphanPageRow, GscdumpPageTrendParams, GscdumpPageTrendResponse, GscdumpPerSitemapHistoryEntry, GscdumpPermissionRecovery, GscdumpQueryTrendParams, GscdumpQueryTrendResponse, GscdumpRichResultItem, GscdumpSiteRegistration, GscdumpSiteReportResponse, GscdumpSitemap, GscdumpSitemapChangesResponse, GscdumpSitemapHistory, GscdumpSitemapsResponse, GscdumpSyncJobItem, GscdumpSyncJobStatus, GscdumpSyncJobsQueueCounts, GscdumpSyncJobsResponse, GscdumpSyncProgressDateStatus, GscdumpSyncProgressPhaseCounts, GscdumpSyncProgressResponse, GscdumpSyncProgressSite, GscdumpSyncStatusResponse, GscdumpTeamMemberRow, GscdumpTeamRow, GscdumpTopAssociationParams, GscdumpTopAssociationResponse, GscdumpTotals, GscdumpUserMeResponse, GscdumpUserRegistration, GscdumpUserSettings, GscdumpUserSite, GscdumpUserStatus, GscdumpUserTokenUpdate, IndexingDiagnostics, IndexingInspectRateLimit, IndexingInspectRateLimited, IndexingInspectRequest, IndexingInspectResponse, IndexingInspectResult, IndexingIssue, IndexingIssueSeverity, IndexingUrlRow, IndexingUrlStatus, IndexingUrlsParams, IndexingUrlsResponse, InspectionHistoryRecord, InspectionHistoryResponse, InspectionIndex, InspectionRecordRaw, Metric, PartnerClient, PartnerLifecycleAccount, PartnerLifecycleResponse, PartnerLifecycleSite, PartnerRealtimeEvent, PartnerRealtimeEventType, PartnerRealtimeMessage, PartnerWebhookData, PartnerWebhookHeaders, RealtimeAuthFailedEvent, RealtimeAuthRequiredMessage, RealtimeConnectedMessage, RealtimeEnrichmentCompleteEvent, RealtimeErrorMessage, RealtimeJobFailedEvent, RealtimeNeedsReauthEvent, RealtimePongMessage, RealtimeSiteAddedEvent, RealtimeSiteRemovedEvent, RealtimeSubscribedMessage, RealtimeSyncCompleteEvent, RealtimeSyncFailedEvent, RealtimeSyncJobCompleteEvent, RealtimeSyncProgressEvent, RealtimeSyncSiteCompleteEvent, RegisterPartnerSiteParams, RegisterPartnerUserParams, RollupEnvelope, Row, ScheduleState, SearchAppearanceResponse, SearchAppearanceRow, SearchTypeOptions, SiteListItem, SitemapAddedRow, SitemapChangesResponse, SitemapHistoryRecord, SitemapHistoryResponse, SitemapIndex, SitemapRemovedRow, SourceInfoOptions, SourceInfoResponse, TableName, TableSchema, TenantCtx, UpdatePartnerUserTokensParams, WebhookEnvelope, WebhookEventType, WhoamiResponse } from "./_chunks/types.mjs";
|
|
3
|
-
export { type AddPartnerTeamMemberParams, type AnalysisSourcesOptions, type AnalysisSourcesResponse, type AnalyticsClient, type BackfillRange, type BackfillResponse, type BindPartnerSiteTeamParams, type BuilderState, type BulkRegisterPartnerSiteResult, type BulkRegisterPartnerSitesParams, type BulkRegisterPartnerSitesResponse, type CanonicalWebhookEventType, type ColumnDef, type ColumnType, type CountriesResponse, type CountryRow, type CreatePartnerTeamParams, type CreateWebhookEnvelopeOptions, type DataDetailOptions, type DataQueryOptions, type DeletePartnerUserResponse, type Dimension, type Filter, type Grain, type GscApiRange, type GscComparisonFilter, type GscRowQueryMeta, type GscRowQueryResponse, type GscSearchType, type GscdumpAnalysisParams, type GscdumpAnalysisPreset, type GscdumpAnalysisResponse, type GscdumpAnalysisSourcesResponse, type GscdumpAvailableSite, type GscdumpCanonicalMismatchRow, type GscdumpCanonicalMismatchesResponse, type GscdumpDataDetailResponse, type GscdumpDataResponse, type GscdumpDataRow, type GscdumpDateRangeParams, type GscdumpHealthResponse, type GscdumpIndexPercentResponse, type GscdumpIndexPercentSitemap, type GscdumpIndexPercentTrendPoint, type GscdumpIndexingDiagnosticsResponse, type GscdumpIndexingInspectRateLimited, type GscdumpIndexingInspectRequest, type GscdumpIndexingInspectResponse, type GscdumpIndexingInspectResult, type GscdumpIndexingIssueSeverity, type GscdumpIndexingResponse, type GscdumpIndexingTrendPoint, type GscdumpIndexingUrl, type GscdumpIndexingUrlStatus, type GscdumpIndexingUrlsResponse, type GscdumpInvisibleUrlRow, type GscdumpKeywordSparklinesParams, type GscdumpKeywordSparklinesResponse, type GscdumpMeta, type GscdumpOrphanPageRow, type GscdumpPageTrendParams, type GscdumpPageTrendResponse, type GscdumpPerSitemapHistoryEntry, type GscdumpPermissionRecovery, type GscdumpQueryTrendParams, type GscdumpQueryTrendResponse, type GscdumpRichResultItem, type GscdumpSiteRegistration, type GscdumpSiteReportResponse, type GscdumpSitemap, type GscdumpSitemapChangesResponse, type GscdumpSitemapHistory, type GscdumpSitemapsResponse, type GscdumpSyncJobItem, type GscdumpSyncJobStatus, type GscdumpSyncJobsQueueCounts, type GscdumpSyncJobsResponse, type GscdumpSyncProgressDateStatus, type GscdumpSyncProgressPhaseCounts, type GscdumpSyncProgressResponse, type GscdumpSyncProgressSite, type GscdumpSyncStatusResponse, type GscdumpTeamMemberRow, type GscdumpTeamRow, type GscdumpTopAssociationParams, type GscdumpTopAssociationResponse, type GscdumpTotals, type GscdumpUserMeResponse, type GscdumpUserRegistration, type GscdumpUserSettings, type GscdumpUserSite, type GscdumpUserStatus, type GscdumpUserTokenUpdate, type IndexingDiagnostics, type IndexingInspectRateLimit, type IndexingInspectRateLimited, type IndexingInspectRequest, type IndexingInspectResponse, type IndexingInspectResult, type IndexingIssue, type IndexingIssueSeverity, type IndexingUrlRow, type IndexingUrlStatus, type IndexingUrlsParams, type IndexingUrlsResponse, type InspectionHistoryRecord, type InspectionHistoryResponse, type InspectionIndex, type InspectionRecordRaw, type Metric, type PartnerClient, type PartnerLifecycleAccount, type PartnerLifecycleResponse, type PartnerLifecycleSite, type PartnerRealtimeEvent, type PartnerRealtimeEventType, type PartnerRealtimeMessage, type PartnerWebhookData, type PartnerWebhookHeaders, type RealtimeAuthFailedEvent, type RealtimeAuthRequiredMessage, type RealtimeConnectedMessage, type RealtimeEnrichmentCompleteEvent, type RealtimeErrorMessage, type RealtimeJobFailedEvent, type RealtimeNeedsReauthEvent, type RealtimePongMessage, type RealtimeSiteAddedEvent, type RealtimeSiteRemovedEvent, type RealtimeSubscribedMessage, type RealtimeSyncCompleteEvent, type RealtimeSyncFailedEvent, type RealtimeSyncJobCompleteEvent, type RealtimeSyncProgressEvent, type RealtimeSyncSiteCompleteEvent, type RegisterPartnerSiteParams, type RegisterPartnerUserParams, type RollupEnvelope, type Row, type ScheduleState, type SearchAppearanceResponse, type SearchAppearanceRow, type SearchTypeOptions, type SiteListItem, type SitemapAddedRow, type SitemapChangesResponse, type SitemapHistoryRecord, type SitemapHistoryResponse, type SitemapIndex, type SitemapRemovedRow, type SourceInfoOptions, type SourceInfoResponse, type TableName, type TableSchema, type TenantCtx, type UpdatePartnerUserTokensParams, type WebhookEnvelope, type WebhookEventType, type WhoamiResponse, analyticsEndpointSchemas, analyticsRoutes };
|
|
2
|
+
import { AddPartnerTeamMemberParams, AnalysisSourcesOptions, AnalysisSourcesResponse, AnalyticsClient, BackfillRange, BackfillResponse, BindPartnerSiteTeamParams, BuilderState, BulkRegisterPartnerSiteResult, BulkRegisterPartnerSitesParams, BulkRegisterPartnerSitesResponse, CanonicalWebhookEventType, ColumnDef, ColumnType, CountriesResponse, CountryRow, CreatePartnerTeamParams, CreateWebhookEnvelopeOptions, DataDetailOptions, DataQueryOptions, DeletePartnerUserResponse, Dimension, Filter, Grain, GscApiRange, GscComparisonFilter, GscRowQueryMeta, GscRowQueryResponse, GscSearchType, GscdumpAnalysisParams, GscdumpAnalysisPreset, GscdumpAnalysisResponse, GscdumpAnalysisSourcesResponse, GscdumpAvailableSite, GscdumpCanonicalMismatchRow, GscdumpCanonicalMismatchesResponse, GscdumpDataDetailResponse, GscdumpDataResponse, GscdumpDataRow, GscdumpDateRangeParams, GscdumpHealthResponse, GscdumpIndexPercentResponse, GscdumpIndexPercentSitemap, GscdumpIndexPercentTrendPoint, GscdumpIndexingDiagnosticsResponse, GscdumpIndexingInspectRateLimited, GscdumpIndexingInspectRequest, GscdumpIndexingInspectResponse, GscdumpIndexingInspectResult, GscdumpIndexingIssueSeverity, GscdumpIndexingResponse, GscdumpIndexingTrendPoint, GscdumpIndexingUrl, GscdumpIndexingUrlStatus, GscdumpIndexingUrlsResponse, GscdumpInvisibleUrlRow, GscdumpKeywordSparklinesParams, GscdumpKeywordSparklinesResponse, GscdumpMeta, GscdumpOrphanPageRow, GscdumpPageTrendParams, GscdumpPageTrendResponse, GscdumpPerSitemapHistoryEntry, GscdumpPermissionRecovery, GscdumpQueryTrendParams, GscdumpQueryTrendResponse, GscdumpRichResultItem, GscdumpSiteRegistration, GscdumpSiteReportResponse, GscdumpSitemap, GscdumpSitemapChangesResponse, GscdumpSitemapHistory, GscdumpSitemapsResponse, GscdumpSyncJobItem, GscdumpSyncJobStatus, GscdumpSyncJobsQueueCounts, GscdumpSyncJobsResponse, GscdumpSyncProgressDateStatus, GscdumpSyncProgressPhaseCounts, GscdumpSyncProgressResponse, GscdumpSyncProgressSite, GscdumpSyncStatusResponse, GscdumpTeamMemberRow, GscdumpTeamRow, GscdumpTopAssociationParams, GscdumpTopAssociationResponse, GscdumpTotals, GscdumpUserMeResponse, GscdumpUserRegistration, GscdumpUserSettings, GscdumpUserSite, GscdumpUserStatus, GscdumpUserTokenUpdate, IndexingDiagnostics, IndexingInspectRateLimit, IndexingInspectRateLimited, IndexingInspectRequest, IndexingInspectResponse, IndexingInspectResult, IndexingIssue, IndexingIssueSeverity, IndexingUrlRow, IndexingUrlStatus, IndexingUrlsParams, IndexingUrlsResponse, InspectionHistoryRecord, InspectionHistoryResponse, InspectionIndex, InspectionRecordRaw, Metric, PartnerClient, PartnerLifecycleAccount, PartnerLifecycleResponse, PartnerLifecycleSite, PartnerRealtimeEvent, PartnerRealtimeEventType, PartnerRealtimeMessage, PartnerWebhookData, PartnerWebhookHeaders, RealtimeAuthFailedEvent, RealtimeAuthRequiredMessage, RealtimeConnectedMessage, RealtimeEnrichmentCompleteEvent, RealtimeErrorMessage, RealtimeIndexingCompleteEvent, RealtimeIndexingProgressEvent, RealtimeJobFailedEvent, RealtimeNeedsReauthEvent, RealtimePongMessage, RealtimeSiteAddedEvent, RealtimeSiteRemovedEvent, RealtimeSitemapCompleteEvent, RealtimeSitemapProgressEvent, RealtimeSubscribedMessage, RealtimeSyncCompleteEvent, RealtimeSyncFailedEvent, RealtimeSyncJobCompleteEvent, RealtimeSyncProgressEvent, RealtimeSyncSiteCompleteEvent, RegisterPartnerSiteParams, RegisterPartnerUserParams, RollupEnvelope, Row, ScheduleState, SearchAppearanceResponse, SearchAppearanceRow, SearchTypeOptions, SiteListItem, SitemapAddedRow, SitemapChangesResponse, SitemapHistoryRecord, SitemapHistoryResponse, SitemapIndex, SitemapRemovedRow, SourceInfoOptions, SourceInfoResponse, TableName, TableSchema, TenantCtx, UpdatePartnerUserTokensParams, WebhookEnvelope, WebhookEventType, WhoamiResponse } from "./_chunks/types.mjs";
|
|
3
|
+
export { type AddPartnerTeamMemberParams, type AnalysisSourcesOptions, type AnalysisSourcesResponse, type AnalyticsClient, type BackfillRange, type BackfillResponse, type BindPartnerSiteTeamParams, type BuilderState, type BulkRegisterPartnerSiteResult, type BulkRegisterPartnerSitesParams, type BulkRegisterPartnerSitesResponse, type CanonicalWebhookEventType, type ColumnDef, type ColumnType, type CountriesResponse, type CountryRow, type CreatePartnerTeamParams, type CreateWebhookEnvelopeOptions, type DataDetailOptions, type DataQueryOptions, type DeletePartnerUserResponse, type Dimension, type Filter, type Grain, type GscApiRange, type GscComparisonFilter, type GscRowQueryMeta, type GscRowQueryResponse, type GscSearchType, type GscdumpAnalysisParams, type GscdumpAnalysisPreset, type GscdumpAnalysisResponse, type GscdumpAnalysisSourcesResponse, type GscdumpAvailableSite, type GscdumpCanonicalMismatchRow, type GscdumpCanonicalMismatchesResponse, type GscdumpDataDetailResponse, type GscdumpDataResponse, type GscdumpDataRow, type GscdumpDateRangeParams, type GscdumpHealthResponse, type GscdumpIndexPercentResponse, type GscdumpIndexPercentSitemap, type GscdumpIndexPercentTrendPoint, type GscdumpIndexingDiagnosticsResponse, type GscdumpIndexingInspectRateLimited, type GscdumpIndexingInspectRequest, type GscdumpIndexingInspectResponse, type GscdumpIndexingInspectResult, type GscdumpIndexingIssueSeverity, type GscdumpIndexingResponse, type GscdumpIndexingTrendPoint, type GscdumpIndexingUrl, type GscdumpIndexingUrlStatus, type GscdumpIndexingUrlsResponse, type GscdumpInvisibleUrlRow, type GscdumpKeywordSparklinesParams, type GscdumpKeywordSparklinesResponse, type GscdumpMeta, type GscdumpOrphanPageRow, type GscdumpPageTrendParams, type GscdumpPageTrendResponse, type GscdumpPerSitemapHistoryEntry, type GscdumpPermissionRecovery, type GscdumpQueryTrendParams, type GscdumpQueryTrendResponse, type GscdumpRichResultItem, type GscdumpSiteRegistration, type GscdumpSiteReportResponse, type GscdumpSitemap, type GscdumpSitemapChangesResponse, type GscdumpSitemapHistory, type GscdumpSitemapsResponse, type GscdumpSyncJobItem, type GscdumpSyncJobStatus, type GscdumpSyncJobsQueueCounts, type GscdumpSyncJobsResponse, type GscdumpSyncProgressDateStatus, type GscdumpSyncProgressPhaseCounts, type GscdumpSyncProgressResponse, type GscdumpSyncProgressSite, type GscdumpSyncStatusResponse, type GscdumpTeamMemberRow, type GscdumpTeamRow, type GscdumpTopAssociationParams, type GscdumpTopAssociationResponse, type GscdumpTotals, type GscdumpUserMeResponse, type GscdumpUserRegistration, type GscdumpUserSettings, type GscdumpUserSite, type GscdumpUserStatus, type GscdumpUserTokenUpdate, type IndexingDiagnostics, type IndexingInspectRateLimit, type IndexingInspectRateLimited, type IndexingInspectRequest, type IndexingInspectResponse, type IndexingInspectResult, type IndexingIssue, type IndexingIssueSeverity, type IndexingUrlRow, type IndexingUrlStatus, type IndexingUrlsParams, type IndexingUrlsResponse, type InspectionHistoryRecord, type InspectionHistoryResponse, type InspectionIndex, type InspectionRecordRaw, type Metric, type PartnerClient, type PartnerLifecycleAccount, type PartnerLifecycleResponse, type PartnerLifecycleSite, type PartnerRealtimeEvent, type PartnerRealtimeEventType, type PartnerRealtimeMessage, type PartnerWebhookData, type PartnerWebhookHeaders, type RealtimeAuthFailedEvent, type RealtimeAuthRequiredMessage, type RealtimeConnectedMessage, type RealtimeEnrichmentCompleteEvent, type RealtimeErrorMessage, type RealtimeIndexingCompleteEvent, type RealtimeIndexingProgressEvent, type RealtimeJobFailedEvent, type RealtimeNeedsReauthEvent, type RealtimePongMessage, type RealtimeSiteAddedEvent, type RealtimeSiteRemovedEvent, type RealtimeSitemapCompleteEvent, type RealtimeSitemapProgressEvent, type RealtimeSubscribedMessage, type RealtimeSyncCompleteEvent, type RealtimeSyncFailedEvent, type RealtimeSyncJobCompleteEvent, type RealtimeSyncProgressEvent, type RealtimeSyncSiteCompleteEvent, type RegisterPartnerSiteParams, type RegisterPartnerUserParams, type RollupEnvelope, type Row, type ScheduleState, type SearchAppearanceResponse, type SearchAppearanceRow, type SearchTypeOptions, type SiteListItem, type SitemapAddedRow, type SitemapChangesResponse, type SitemapHistoryRecord, type SitemapHistoryResponse, type SitemapIndex, type SitemapRemovedRow, type SourceInfoOptions, type SourceInfoResponse, type TableName, type TableSchema, type TenantCtx, type UpdatePartnerUserTokensParams, type WebhookEnvelope, type WebhookEventType, type WhoamiResponse, analyticsEndpointSchemas, analyticsRoutes };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { addPartnerTeamMemberSchema, analyticsEndpointSchemas, analyticsRoutes, backfillRangeSchema, backfillResponseSchema, bindPartnerSiteTeamSchema, builderStateSchema, bulkRegisterPartnerSitesResponseSchema, bulkRegisterPartnerSitesSchema, canonicalWebhookEventTypeSchema, countriesResponseSchema, countryRowSchema, createPartnerTeamSchema, dataDetailOptionsSchema, dataQueryOptionsSchema, gscApiRangeSchema, gscComparisonFilterSchema, gscRowQueryMetaSchema, gscRowQueryResponseSchema, gscdumpAnalysisParamsSchema, gscdumpAnalysisPresetSchema, gscdumpAnalysisResponseSchema, gscdumpAnalysisSourcesResponseSchema, gscdumpAvailableSiteSchema, gscdumpCanonicalMismatchesResponseSchema, gscdumpDataDetailResponseSchema, gscdumpDataResponseSchema, gscdumpDataRowSchema, gscdumpDateRangeParamsSchema, gscdumpDeletePartnerUserResponseSchema, gscdumpHealthResponseSchema, gscdumpIndexPercentParamsSchema, gscdumpIndexPercentResponseSchema, gscdumpIndexingDiagnosticsResponseSchema, gscdumpIndexingResponseSchema, gscdumpIndexingUrlsResponseSchema, gscdumpKeywordSparklinesParamsSchema, gscdumpKeywordSparklinesResponseSchema, gscdumpMetaSchema, gscdumpPageTrendParamsSchema, gscdumpPageTrendResponseSchema, gscdumpPermissionRecoverySchema, gscdumpQueryTrendParamsSchema, gscdumpQueryTrendResponseSchema, gscdumpSiteRegistrationSchema, gscdumpSiteReportResponseSchema, gscdumpSitemapChangesResponseSchema, gscdumpSitemapsResponseSchema, gscdumpSyncJobsResponseSchema, gscdumpSyncProgressResponseSchema, gscdumpTeamMemberRowSchema, gscdumpTeamRoleSchema, gscdumpTeamRowSchema, gscdumpTopAssociationParamsSchema, gscdumpTopAssociationResponseSchema, gscdumpTotalsSchema, gscdumpUserMeResponseSchema, gscdumpUserRegistrationSchema, gscdumpUserSettingsSchema, gscdumpUserSiteSchema, gscdumpUserStatusSchema, indexingDiagnosticsSchema, indexingInspectAnyResponseSchema, indexingInspectRateLimitedSchema, indexingInspectRequestSchema, indexingInspectResponseSchema, indexingInspectResultSchema, indexingIssueSchema, indexingUrlRowSchema, indexingUrlStatusSchema, indexingUrlsParamsSchema, indexingUrlsResponseSchema, inspectionHistoryRecordSchema, inspectionHistoryResponseSchema, inspectionIndexSchema, inspectionRecordRawSchema, jobFailedWebhookPayloadSchema, lifecycleErrorSchema, lifecycleProgressSchema, partnerControlEndpointSchemas, partnerEndpointSchemas, partnerLifecycleAccountSchema, partnerLifecycleResponseSchema, partnerLifecycleSiteSchema, partnerRealtimeEventSchema, partnerRoutes, partnerWebhookDataSchema, partnerWebhookEnvelopeSchema, registerPartnerSiteSchema, registerPartnerUserSchema, rollupEnvelopeSchema, scheduleStateSchema, searchAppearanceResponseSchema, searchAppearanceRowSchema, searchTypeSchema, siteListItemSchema, sitemapChangesResponseSchema, sitemapHistoryRecordSchema, sitemapHistoryResponseSchema, sitemapIndexSchema, sourceInfoResponseSchema, updatePartnerUserTokensSchema, webhookEventTypeSchema, whoamiResponseSchema } from "./_chunks/schemas.mjs";
|
|
2
|
-
import { AccountNextAction, AccountStatus, AddPartnerTeamMemberParams, AnalysisSourcesOptions, AnalysisSourcesResponse, AnalyticsClient, AnalyticsNextAction, AnalyticsStatus, BackfillRange, BackfillResponse, BindPartnerSiteTeamParams, BuilderState, BulkRegisterPartnerSiteResult, BulkRegisterPartnerSitesParams, BulkRegisterPartnerSitesResponse, CanonicalWebhookEventType, ColumnDef, ColumnType, CountriesResponse, CountryRow, CreatePartnerTeamParams, CreateWebhookEnvelopeOptions, DataDetailOptions, DataQueryOptions, DeletePartnerUserResponse, Dimension, Filter, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, Grain, GscApiRange, GscComparisonFilter, GscRowQueryMeta, GscRowQueryResponse, GscSearchType, GscdumpAnalysisParams, GscdumpAnalysisPreset, GscdumpAnalysisResponse, GscdumpAnalysisSourcesResponse, GscdumpAvailableSite, GscdumpCanonicalMismatchRow, GscdumpCanonicalMismatchesResponse, GscdumpDataDetailResponse, GscdumpDataResponse, GscdumpDataRow, GscdumpDateRangeParams, GscdumpHealthResponse, GscdumpIndexPercentResponse, GscdumpIndexPercentSitemap, GscdumpIndexPercentTrendPoint, GscdumpIndexingDiagnosticsResponse, GscdumpIndexingInspectRateLimited, GscdumpIndexingInspectRequest, GscdumpIndexingInspectResponse, GscdumpIndexingInspectResult, GscdumpIndexingIssueSeverity, GscdumpIndexingResponse, GscdumpIndexingTrendPoint, GscdumpIndexingUrl, GscdumpIndexingUrlStatus, GscdumpIndexingUrlsResponse, GscdumpInvisibleUrlRow, GscdumpKeywordSparklinesParams, GscdumpKeywordSparklinesResponse, GscdumpMeta, GscdumpOrphanPageRow, GscdumpPageTrendParams, GscdumpPageTrendResponse, GscdumpPerSitemapHistoryEntry, GscdumpPermissionRecovery, GscdumpQueryTrendParams, GscdumpQueryTrendResponse, GscdumpRichResultItem, GscdumpSiteRegistration, GscdumpSiteReportResponse, GscdumpSitemap, GscdumpSitemapChangesResponse, GscdumpSitemapHistory, GscdumpSitemapsResponse, GscdumpSyncJobItem, GscdumpSyncJobStatus, GscdumpSyncJobsQueueCounts, GscdumpSyncJobsResponse, GscdumpSyncProgressDateStatus, GscdumpSyncProgressPhaseCounts, GscdumpSyncProgressResponse, GscdumpSyncProgressSite, GscdumpSyncStatusResponse, GscdumpTeamMemberRow, GscdumpTeamRow, GscdumpTopAssociationParams, GscdumpTopAssociationResponse, GscdumpTotals, GscdumpUserMeResponse, GscdumpUserRegistration, GscdumpUserSettings, GscdumpUserSite, GscdumpUserStatus, GscdumpUserTokenUpdate, IndexingDiagnostics, IndexingInspectRateLimit, IndexingInspectRateLimited, IndexingInspectRequest, IndexingInspectResponse, IndexingInspectResult, IndexingIssue, IndexingIssueSeverity, IndexingNextAction, IndexingStatus, IndexingUrlRow, IndexingUrlStatus, IndexingUrlsParams, IndexingUrlsResponse, InspectionHistoryRecord, InspectionHistoryResponse, InspectionIndex, InspectionRecordRaw, LifecycleError, LifecycleErrorCode, LifecycleProgress, LifecycleWebhookEnvelope, LifecycleWebhookEvent, Metric, PartnerClient, PartnerLifecycleAccount, PartnerLifecycleResponse, PartnerLifecycleSite, PartnerRealtimeEvent, PartnerRealtimeEventType, PartnerRealtimeMessage, PartnerWebhookData, PartnerWebhookHeaders, PropertyNextAction, PropertyStatus, QuerySourceMode, RealtimeAuthFailedEvent, RealtimeAuthRequiredMessage, RealtimeConnectedMessage, RealtimeEnrichmentCompleteEvent, RealtimeErrorMessage, RealtimeJobFailedEvent, RealtimeNeedsReauthEvent, RealtimePongMessage, RealtimeSiteAddedEvent, RealtimeSiteRemovedEvent, RealtimeSubscribedMessage, RealtimeSyncCompleteEvent, RealtimeSyncFailedEvent, RealtimeSyncJobCompleteEvent, RealtimeSyncProgressEvent, RealtimeSyncSiteCompleteEvent, RegisterPartnerSiteParams, RegisterPartnerUserParams, RollupEnvelope, Row, ScheduleState, SearchAppearanceResponse, SearchAppearanceRow, SearchTypeOptions, SiteListItem, SitemapAddedRow, SitemapChangesResponse, SitemapHistoryRecord, SitemapHistoryResponse, SitemapIndex, SitemapNextAction, SitemapRemovedRow, SitemapStatus, SourceInfoOptions, SourceInfoResponse, TableName, TableSchema, TenantCtx, UpdatePartnerUserTokensParams, WebhookEnvelope, WebhookEventType, WhoamiResponse, accountNextActions, accountStatuses, analyticsNextActions, analyticsStatuses, hasOptionalIndexingScope, hasRequiredAnalyticsScope, indexingNextActions, indexingStatuses, lifecycleErrorCodes, lifecycleWebhookEvents, parseGrantedScopes, propertyNextActions, propertyStatuses, querySourceModes, sitemapNextActions, sitemapStatuses } from "./_chunks/types.mjs";
|
|
2
|
+
import { AccountNextAction, AccountStatus, AddPartnerTeamMemberParams, AnalysisSourcesOptions, AnalysisSourcesResponse, AnalyticsClient, AnalyticsNextAction, AnalyticsStatus, BackfillRange, BackfillResponse, BindPartnerSiteTeamParams, BuilderState, BulkRegisterPartnerSiteResult, BulkRegisterPartnerSitesParams, BulkRegisterPartnerSitesResponse, CanonicalWebhookEventType, ColumnDef, ColumnType, CountriesResponse, CountryRow, CreatePartnerTeamParams, CreateWebhookEnvelopeOptions, DataDetailOptions, DataQueryOptions, DeletePartnerUserResponse, Dimension, Filter, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, Grain, GscApiRange, GscComparisonFilter, GscRowQueryMeta, GscRowQueryResponse, GscSearchType, GscdumpAnalysisParams, GscdumpAnalysisPreset, GscdumpAnalysisResponse, GscdumpAnalysisSourcesResponse, GscdumpAvailableSite, GscdumpCanonicalMismatchRow, GscdumpCanonicalMismatchesResponse, GscdumpDataDetailResponse, GscdumpDataResponse, GscdumpDataRow, GscdumpDateRangeParams, GscdumpHealthResponse, GscdumpIndexPercentResponse, GscdumpIndexPercentSitemap, GscdumpIndexPercentTrendPoint, GscdumpIndexingDiagnosticsResponse, GscdumpIndexingInspectRateLimited, GscdumpIndexingInspectRequest, GscdumpIndexingInspectResponse, GscdumpIndexingInspectResult, GscdumpIndexingIssueSeverity, GscdumpIndexingResponse, GscdumpIndexingTrendPoint, GscdumpIndexingUrl, GscdumpIndexingUrlStatus, GscdumpIndexingUrlsResponse, GscdumpInvisibleUrlRow, GscdumpKeywordSparklinesParams, GscdumpKeywordSparklinesResponse, GscdumpMeta, GscdumpOrphanPageRow, GscdumpPageTrendParams, GscdumpPageTrendResponse, GscdumpPerSitemapHistoryEntry, GscdumpPermissionRecovery, GscdumpQueryTrendParams, GscdumpQueryTrendResponse, GscdumpRichResultItem, GscdumpSiteRegistration, GscdumpSiteReportResponse, GscdumpSitemap, GscdumpSitemapChangesResponse, GscdumpSitemapHistory, GscdumpSitemapsResponse, GscdumpSyncJobItem, GscdumpSyncJobStatus, GscdumpSyncJobsQueueCounts, GscdumpSyncJobsResponse, GscdumpSyncProgressDateStatus, GscdumpSyncProgressPhaseCounts, GscdumpSyncProgressResponse, GscdumpSyncProgressSite, GscdumpSyncStatusResponse, GscdumpTeamMemberRow, GscdumpTeamRow, GscdumpTopAssociationParams, GscdumpTopAssociationResponse, GscdumpTotals, GscdumpUserMeResponse, GscdumpUserRegistration, GscdumpUserSettings, GscdumpUserSite, GscdumpUserStatus, GscdumpUserTokenUpdate, IndexingDiagnostics, IndexingInspectRateLimit, IndexingInspectRateLimited, IndexingInspectRequest, IndexingInspectResponse, IndexingInspectResult, IndexingIssue, IndexingIssueSeverity, IndexingNextAction, IndexingStatus, IndexingUrlRow, IndexingUrlStatus, IndexingUrlsParams, IndexingUrlsResponse, InspectionHistoryRecord, InspectionHistoryResponse, InspectionIndex, InspectionRecordRaw, LifecycleError, LifecycleErrorCode, LifecycleProgress, LifecycleWebhookEnvelope, LifecycleWebhookEvent, Metric, PartnerClient, PartnerLifecycleAccount, PartnerLifecycleResponse, PartnerLifecycleSite, PartnerRealtimeEvent, PartnerRealtimeEventType, PartnerRealtimeMessage, PartnerWebhookData, PartnerWebhookHeaders, PropertyNextAction, PropertyStatus, QuerySourceMode, RealtimeAuthFailedEvent, RealtimeAuthRequiredMessage, RealtimeConnectedMessage, RealtimeEnrichmentCompleteEvent, RealtimeErrorMessage, RealtimeIndexingCompleteEvent, RealtimeIndexingProgressEvent, RealtimeJobFailedEvent, RealtimeNeedsReauthEvent, RealtimePongMessage, RealtimeSiteAddedEvent, RealtimeSiteRemovedEvent, RealtimeSitemapCompleteEvent, RealtimeSitemapProgressEvent, RealtimeSubscribedMessage, RealtimeSyncCompleteEvent, RealtimeSyncFailedEvent, RealtimeSyncJobCompleteEvent, RealtimeSyncProgressEvent, RealtimeSyncSiteCompleteEvent, RegisterPartnerSiteParams, RegisterPartnerUserParams, RollupEnvelope, Row, ScheduleState, SearchAppearanceResponse, SearchAppearanceRow, SearchTypeOptions, SiteListItem, SitemapAddedRow, SitemapChangesResponse, SitemapHistoryRecord, SitemapHistoryResponse, SitemapIndex, SitemapNextAction, SitemapRemovedRow, SitemapStatus, SourceInfoOptions, SourceInfoResponse, TableName, TableSchema, TenantCtx, UpdatePartnerUserTokensParams, WebhookEnvelope, WebhookEventType, WhoamiResponse, accountNextActions, accountStatuses, analyticsNextActions, analyticsStatuses, hasOptionalIndexingScope, hasRequiredAnalyticsScope, indexingNextActions, indexingStatuses, lifecycleErrorCodes, lifecycleWebhookEvents, parseGrantedScopes, propertyNextActions, propertyStatuses, querySourceModes, sitemapNextActions, sitemapStatuses } from "./_chunks/types.mjs";
|
|
3
3
|
import { ARCHETYPE_EXECUTION_CLASS, ArbitrarySqlQuery, ArchetypeExecutionClass, ArchetypeFacet, ArchetypeQuery, ArchetypeQueryBase, ArchetypeResult, ArchetypeResultRow, ArchetypeResultSource, AuxCloudOnlyQuery, DateRange, EntityDailySparklineQuery, EntityDailyTimeseriesQuery, MultiSeriesStackedDailyQuery, QueryArchetype, ResolvedArchetypeQuery, SingleRowLookupQuery, SiteDailyTimeseriesQuery, TopNBreakdownQuery, TwoDimensionDetailQuery } from "./archetypes.mjs";
|
|
4
4
|
import { CANONICAL_WEBHOOK_EVENTS, VALID_WEBHOOK_EVENTS, WEBHOOK_CONTRACT_VERSION, WEBHOOK_CONTRACT_VERSION_HEADER, WEBHOOK_DELIVERY_HEADER, WEBHOOK_EVENT_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER } from "./_chunks/webhook-constants.mjs";
|
|
5
5
|
/** The 6 Iceberg fact tables — string-typed here to avoid an engine dep. */
|
|
@@ -123,4 +123,4 @@ interface FileResolutionResponse {
|
|
|
123
123
|
maxRows: number;
|
|
124
124
|
};
|
|
125
125
|
}
|
|
126
|
-
export { ARCHETYPE_EXECUTION_CLASS, AccountNextAction, AccountStatus, type AddPartnerTeamMemberParams, type AnalysisSourcesOptions, type AnalysisSourcesResponse, type AnalyticsClient, AnalyticsNextAction, AnalyticsStatus, ArbitrarySqlQuery, ArchetypeExecutionClass, ArchetypeFacet, ArchetypeQuery, ArchetypeQueryBase, ArchetypeResult, ArchetypeResultRow, ArchetypeResultSource, AuxCloudOnlyQuery, type BackfillRange, type BackfillResponse, type BindPartnerSiteTeamParams, type BuilderState, type BulkRegisterPartnerSiteResult, type BulkRegisterPartnerSitesParams, type BulkRegisterPartnerSitesResponse, CANONICAL_WEBHOOK_EVENTS, type CanonicalWebhookEventType, type ColumnDef, type ColumnType, type CountriesResponse, type CountryRow, type CreatePartnerTeamParams, type CreateWebhookEnvelopeOptions, type DataDetailOptions, type DataQueryOptions, DateRange, type DeletePartnerUserResponse, type Dimension, EntityDailySparklineQuery, EntityDailyTimeseriesQuery, type FileResolutionRequest, type FileResolutionResponse, type FileResolutionTable, type Filter, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, type Grain, type GscApiRange, type GscComparisonFilter, type GscRowQueryMeta, type GscRowQueryResponse, type GscSearchType, type GscdumpAnalysisParams, type GscdumpAnalysisPreset, type GscdumpAnalysisResponse, type GscdumpAnalysisSourcesResponse, type GscdumpAvailableSite, type GscdumpCanonicalMismatchRow, type GscdumpCanonicalMismatchesResponse, type GscdumpDataDetailResponse, type GscdumpDataResponse, type GscdumpDataRow, type GscdumpDateRangeParams, type GscdumpHealthResponse, type GscdumpIndexPercentResponse, type GscdumpIndexPercentSitemap, type GscdumpIndexPercentTrendPoint, type GscdumpIndexingDiagnosticsResponse, type GscdumpIndexingInspectRateLimited, type GscdumpIndexingInspectRequest, type GscdumpIndexingInspectResponse, type GscdumpIndexingInspectResult, type GscdumpIndexingIssueSeverity, type GscdumpIndexingResponse, type GscdumpIndexingTrendPoint, type GscdumpIndexingUrl, type GscdumpIndexingUrlStatus, type GscdumpIndexingUrlsResponse, type GscdumpInvisibleUrlRow, type GscdumpKeywordSparklinesParams, type GscdumpKeywordSparklinesResponse, type GscdumpMeta, type GscdumpOrphanPageRow, type GscdumpPageTrendParams, type GscdumpPageTrendResponse, type GscdumpPerSitemapHistoryEntry, type GscdumpPermissionRecovery, type GscdumpQueryTrendParams, type GscdumpQueryTrendResponse, type GscdumpRichResultItem, type GscdumpSiteRegistration, type GscdumpSiteReportResponse, type GscdumpSitemap, type GscdumpSitemapChangesResponse, type GscdumpSitemapHistory, type GscdumpSitemapsResponse, type GscdumpSyncJobItem, type GscdumpSyncJobStatus, type GscdumpSyncJobsQueueCounts, type GscdumpSyncJobsResponse, type GscdumpSyncProgressDateStatus, type GscdumpSyncProgressPhaseCounts, type GscdumpSyncProgressResponse, type GscdumpSyncProgressSite, type GscdumpSyncStatusResponse, type GscdumpTeamMemberRow, type GscdumpTeamRow, type GscdumpTopAssociationParams, type GscdumpTopAssociationResponse, type GscdumpTotals, type GscdumpUserMeResponse, type GscdumpUserRegistration, type GscdumpUserSettings, type GscdumpUserSite, type GscdumpUserStatus, type GscdumpUserTokenUpdate, type IndexingDiagnostics, type IndexingInspectRateLimit, type IndexingInspectRateLimited, type IndexingInspectRequest, type IndexingInspectResponse, type IndexingInspectResult, type IndexingIssue, type IndexingIssueSeverity, IndexingNextAction, IndexingStatus, type IndexingUrlRow, type IndexingUrlStatus, type IndexingUrlsParams, type IndexingUrlsResponse, type InspectionHistoryRecord, type InspectionHistoryResponse, type InspectionIndex, type InspectionRecordRaw, LifecycleError, LifecycleErrorCode, LifecycleProgress, LifecycleWebhookEnvelope, LifecycleWebhookEvent, type Metric, MultiSeriesStackedDailyQuery, type PartnerClient, PartnerLifecycleAccount, PartnerLifecycleResponse, PartnerLifecycleSite, type PartnerRealtimeEvent, type PartnerRealtimeEventType, type PartnerRealtimeMessage, type PartnerWebhookData, type PartnerWebhookHeaders, PropertyNextAction, PropertyStatus, QueryArchetype, QuerySourceMode, type RealtimeAuthFailedEvent, type RealtimeAuthRequiredMessage, type RealtimeConnectedMessage, type RealtimeEnrichmentCompleteEvent, type RealtimeErrorMessage, type RealtimeJobFailedEvent, type RealtimeNeedsReauthEvent, type RealtimePongMessage, type RealtimeSiteAddedEvent, type RealtimeSiteRemovedEvent, type RealtimeSubscribedMessage, type RealtimeSyncCompleteEvent, type RealtimeSyncFailedEvent, type RealtimeSyncJobCompleteEvent, type RealtimeSyncProgressEvent, type RealtimeSyncSiteCompleteEvent, type RegisterPartnerSiteParams, type RegisterPartnerUserParams, ResolvedArchetypeQuery, type ResolvedParquetFile, type ResolvedTable, type RollupEnvelope, type Row, type ScheduleState, type SearchAppearanceResponse, type SearchAppearanceRow, type SearchTypeOptions, type ServerTailDirective, SingleRowLookupQuery, SiteDailyTimeseriesQuery, type SiteListItem, type SitemapAddedRow, type SitemapChangesResponse, type SitemapHistoryRecord, type SitemapHistoryResponse, type SitemapIndex, SitemapNextAction, type SitemapRemovedRow, SitemapStatus, type SourceInfoOptions, type SourceInfoResponse, type TableName, type TableSchema, type TenantCtx, TopNBreakdownQuery, TwoDimensionDetailQuery, type UpdatePartnerUserTokensParams, VALID_WEBHOOK_EVENTS, WEBHOOK_CONTRACT_VERSION, WEBHOOK_CONTRACT_VERSION_HEADER, WEBHOOK_DELIVERY_HEADER, WEBHOOK_EVENT_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, type WebhookEnvelope, type WebhookEventType, type WhoamiResponse, accountNextActions, accountStatuses, addPartnerTeamMemberSchema, analyticsEndpointSchemas, analyticsNextActions, analyticsRoutes, analyticsStatuses, backfillRangeSchema, backfillResponseSchema, bindPartnerSiteTeamSchema, builderStateSchema, bulkRegisterPartnerSitesResponseSchema, bulkRegisterPartnerSitesSchema, canonicalWebhookEventTypeSchema, countriesResponseSchema, countryRowSchema, createPartnerTeamSchema, dataDetailOptionsSchema, dataQueryOptionsSchema, gscApiRangeSchema, gscComparisonFilterSchema, gscRowQueryMetaSchema, gscRowQueryResponseSchema, gscdumpAnalysisParamsSchema, gscdumpAnalysisPresetSchema, gscdumpAnalysisResponseSchema, gscdumpAnalysisSourcesResponseSchema, gscdumpAvailableSiteSchema, gscdumpCanonicalMismatchesResponseSchema, gscdumpDataDetailResponseSchema, gscdumpDataResponseSchema, gscdumpDataRowSchema, gscdumpDateRangeParamsSchema, gscdumpDeletePartnerUserResponseSchema, gscdumpHealthResponseSchema, gscdumpIndexPercentParamsSchema, gscdumpIndexPercentResponseSchema, gscdumpIndexingDiagnosticsResponseSchema, gscdumpIndexingResponseSchema, gscdumpIndexingUrlsResponseSchema, gscdumpKeywordSparklinesParamsSchema, gscdumpKeywordSparklinesResponseSchema, gscdumpMetaSchema, gscdumpPageTrendParamsSchema, gscdumpPageTrendResponseSchema, gscdumpPermissionRecoverySchema, gscdumpQueryTrendParamsSchema, gscdumpQueryTrendResponseSchema, gscdumpSiteRegistrationSchema, gscdumpSiteReportResponseSchema, gscdumpSitemapChangesResponseSchema, gscdumpSitemapsResponseSchema, gscdumpSyncJobsResponseSchema, gscdumpSyncProgressResponseSchema, gscdumpTeamMemberRowSchema, gscdumpTeamRoleSchema, gscdumpTeamRowSchema, gscdumpTopAssociationParamsSchema, gscdumpTopAssociationResponseSchema, gscdumpTotalsSchema, gscdumpUserMeResponseSchema, gscdumpUserRegistrationSchema, gscdumpUserSettingsSchema, gscdumpUserSiteSchema, gscdumpUserStatusSchema, hasOptionalIndexingScope, hasRequiredAnalyticsScope, indexingDiagnosticsSchema, indexingInspectAnyResponseSchema, indexingInspectRateLimitedSchema, indexingInspectRequestSchema, indexingInspectResponseSchema, indexingInspectResultSchema, indexingIssueSchema, indexingNextActions, indexingStatuses, indexingUrlRowSchema, indexingUrlStatusSchema, indexingUrlsParamsSchema, indexingUrlsResponseSchema, inspectionHistoryRecordSchema, inspectionHistoryResponseSchema, inspectionIndexSchema, inspectionRecordRawSchema, jobFailedWebhookPayloadSchema, lifecycleErrorCodes, lifecycleErrorSchema, lifecycleProgressSchema, lifecycleWebhookEvents, parseGrantedScopes, partnerControlEndpointSchemas, partnerEndpointSchemas, partnerLifecycleAccountSchema, partnerLifecycleResponseSchema, partnerLifecycleSiteSchema, partnerRealtimeEventSchema, partnerRoutes, partnerWebhookDataSchema, partnerWebhookEnvelopeSchema, propertyNextActions, propertyStatuses, querySourceModes, registerPartnerSiteSchema, registerPartnerUserSchema, rollupEnvelopeSchema, scheduleStateSchema, searchAppearanceResponseSchema, searchAppearanceRowSchema, searchTypeSchema, siteListItemSchema, sitemapChangesResponseSchema, sitemapHistoryRecordSchema, sitemapHistoryResponseSchema, sitemapIndexSchema, sitemapNextActions, sitemapStatuses, sourceInfoResponseSchema, updatePartnerUserTokensSchema, webhookEventTypeSchema, whoamiResponseSchema };
|
|
126
|
+
export { ARCHETYPE_EXECUTION_CLASS, AccountNextAction, AccountStatus, type AddPartnerTeamMemberParams, type AnalysisSourcesOptions, type AnalysisSourcesResponse, type AnalyticsClient, AnalyticsNextAction, AnalyticsStatus, ArbitrarySqlQuery, ArchetypeExecutionClass, ArchetypeFacet, ArchetypeQuery, ArchetypeQueryBase, ArchetypeResult, ArchetypeResultRow, ArchetypeResultSource, AuxCloudOnlyQuery, type BackfillRange, type BackfillResponse, type BindPartnerSiteTeamParams, type BuilderState, type BulkRegisterPartnerSiteResult, type BulkRegisterPartnerSitesParams, type BulkRegisterPartnerSitesResponse, CANONICAL_WEBHOOK_EVENTS, type CanonicalWebhookEventType, type ColumnDef, type ColumnType, type CountriesResponse, type CountryRow, type CreatePartnerTeamParams, type CreateWebhookEnvelopeOptions, type DataDetailOptions, type DataQueryOptions, DateRange, type DeletePartnerUserResponse, type Dimension, EntityDailySparklineQuery, EntityDailyTimeseriesQuery, type FileResolutionRequest, type FileResolutionResponse, type FileResolutionTable, type Filter, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, type Grain, type GscApiRange, type GscComparisonFilter, type GscRowQueryMeta, type GscRowQueryResponse, type GscSearchType, type GscdumpAnalysisParams, type GscdumpAnalysisPreset, type GscdumpAnalysisResponse, type GscdumpAnalysisSourcesResponse, type GscdumpAvailableSite, type GscdumpCanonicalMismatchRow, type GscdumpCanonicalMismatchesResponse, type GscdumpDataDetailResponse, type GscdumpDataResponse, type GscdumpDataRow, type GscdumpDateRangeParams, type GscdumpHealthResponse, type GscdumpIndexPercentResponse, type GscdumpIndexPercentSitemap, type GscdumpIndexPercentTrendPoint, type GscdumpIndexingDiagnosticsResponse, type GscdumpIndexingInspectRateLimited, type GscdumpIndexingInspectRequest, type GscdumpIndexingInspectResponse, type GscdumpIndexingInspectResult, type GscdumpIndexingIssueSeverity, type GscdumpIndexingResponse, type GscdumpIndexingTrendPoint, type GscdumpIndexingUrl, type GscdumpIndexingUrlStatus, type GscdumpIndexingUrlsResponse, type GscdumpInvisibleUrlRow, type GscdumpKeywordSparklinesParams, type GscdumpKeywordSparklinesResponse, type GscdumpMeta, type GscdumpOrphanPageRow, type GscdumpPageTrendParams, type GscdumpPageTrendResponse, type GscdumpPerSitemapHistoryEntry, type GscdumpPermissionRecovery, type GscdumpQueryTrendParams, type GscdumpQueryTrendResponse, type GscdumpRichResultItem, type GscdumpSiteRegistration, type GscdumpSiteReportResponse, type GscdumpSitemap, type GscdumpSitemapChangesResponse, type GscdumpSitemapHistory, type GscdumpSitemapsResponse, type GscdumpSyncJobItem, type GscdumpSyncJobStatus, type GscdumpSyncJobsQueueCounts, type GscdumpSyncJobsResponse, type GscdumpSyncProgressDateStatus, type GscdumpSyncProgressPhaseCounts, type GscdumpSyncProgressResponse, type GscdumpSyncProgressSite, type GscdumpSyncStatusResponse, type GscdumpTeamMemberRow, type GscdumpTeamRow, type GscdumpTopAssociationParams, type GscdumpTopAssociationResponse, type GscdumpTotals, type GscdumpUserMeResponse, type GscdumpUserRegistration, type GscdumpUserSettings, type GscdumpUserSite, type GscdumpUserStatus, type GscdumpUserTokenUpdate, type IndexingDiagnostics, type IndexingInspectRateLimit, type IndexingInspectRateLimited, type IndexingInspectRequest, type IndexingInspectResponse, type IndexingInspectResult, type IndexingIssue, type IndexingIssueSeverity, IndexingNextAction, IndexingStatus, type IndexingUrlRow, type IndexingUrlStatus, type IndexingUrlsParams, type IndexingUrlsResponse, type InspectionHistoryRecord, type InspectionHistoryResponse, type InspectionIndex, type InspectionRecordRaw, LifecycleError, LifecycleErrorCode, LifecycleProgress, LifecycleWebhookEnvelope, LifecycleWebhookEvent, type Metric, MultiSeriesStackedDailyQuery, type PartnerClient, PartnerLifecycleAccount, PartnerLifecycleResponse, PartnerLifecycleSite, type PartnerRealtimeEvent, type PartnerRealtimeEventType, type PartnerRealtimeMessage, type PartnerWebhookData, type PartnerWebhookHeaders, PropertyNextAction, PropertyStatus, QueryArchetype, QuerySourceMode, type RealtimeAuthFailedEvent, type RealtimeAuthRequiredMessage, type RealtimeConnectedMessage, type RealtimeEnrichmentCompleteEvent, type RealtimeErrorMessage, type RealtimeIndexingCompleteEvent, type RealtimeIndexingProgressEvent, type RealtimeJobFailedEvent, type RealtimeNeedsReauthEvent, type RealtimePongMessage, type RealtimeSiteAddedEvent, type RealtimeSiteRemovedEvent, type RealtimeSitemapCompleteEvent, type RealtimeSitemapProgressEvent, type RealtimeSubscribedMessage, type RealtimeSyncCompleteEvent, type RealtimeSyncFailedEvent, type RealtimeSyncJobCompleteEvent, type RealtimeSyncProgressEvent, type RealtimeSyncSiteCompleteEvent, type RegisterPartnerSiteParams, type RegisterPartnerUserParams, ResolvedArchetypeQuery, type ResolvedParquetFile, type ResolvedTable, type RollupEnvelope, type Row, type ScheduleState, type SearchAppearanceResponse, type SearchAppearanceRow, type SearchTypeOptions, type ServerTailDirective, SingleRowLookupQuery, SiteDailyTimeseriesQuery, type SiteListItem, type SitemapAddedRow, type SitemapChangesResponse, type SitemapHistoryRecord, type SitemapHistoryResponse, type SitemapIndex, SitemapNextAction, type SitemapRemovedRow, SitemapStatus, type SourceInfoOptions, type SourceInfoResponse, type TableName, type TableSchema, type TenantCtx, TopNBreakdownQuery, TwoDimensionDetailQuery, type UpdatePartnerUserTokensParams, VALID_WEBHOOK_EVENTS, WEBHOOK_CONTRACT_VERSION, WEBHOOK_CONTRACT_VERSION_HEADER, WEBHOOK_DELIVERY_HEADER, WEBHOOK_EVENT_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, type WebhookEnvelope, type WebhookEventType, type WhoamiResponse, accountNextActions, accountStatuses, addPartnerTeamMemberSchema, analyticsEndpointSchemas, analyticsNextActions, analyticsRoutes, analyticsStatuses, backfillRangeSchema, backfillResponseSchema, bindPartnerSiteTeamSchema, builderStateSchema, bulkRegisterPartnerSitesResponseSchema, bulkRegisterPartnerSitesSchema, canonicalWebhookEventTypeSchema, countriesResponseSchema, countryRowSchema, createPartnerTeamSchema, dataDetailOptionsSchema, dataQueryOptionsSchema, gscApiRangeSchema, gscComparisonFilterSchema, gscRowQueryMetaSchema, gscRowQueryResponseSchema, gscdumpAnalysisParamsSchema, gscdumpAnalysisPresetSchema, gscdumpAnalysisResponseSchema, gscdumpAnalysisSourcesResponseSchema, gscdumpAvailableSiteSchema, gscdumpCanonicalMismatchesResponseSchema, gscdumpDataDetailResponseSchema, gscdumpDataResponseSchema, gscdumpDataRowSchema, gscdumpDateRangeParamsSchema, gscdumpDeletePartnerUserResponseSchema, gscdumpHealthResponseSchema, gscdumpIndexPercentParamsSchema, gscdumpIndexPercentResponseSchema, gscdumpIndexingDiagnosticsResponseSchema, gscdumpIndexingResponseSchema, gscdumpIndexingUrlsResponseSchema, gscdumpKeywordSparklinesParamsSchema, gscdumpKeywordSparklinesResponseSchema, gscdumpMetaSchema, gscdumpPageTrendParamsSchema, gscdumpPageTrendResponseSchema, gscdumpPermissionRecoverySchema, gscdumpQueryTrendParamsSchema, gscdumpQueryTrendResponseSchema, gscdumpSiteRegistrationSchema, gscdumpSiteReportResponseSchema, gscdumpSitemapChangesResponseSchema, gscdumpSitemapsResponseSchema, gscdumpSyncJobsResponseSchema, gscdumpSyncProgressResponseSchema, gscdumpTeamMemberRowSchema, gscdumpTeamRoleSchema, gscdumpTeamRowSchema, gscdumpTopAssociationParamsSchema, gscdumpTopAssociationResponseSchema, gscdumpTotalsSchema, gscdumpUserMeResponseSchema, gscdumpUserRegistrationSchema, gscdumpUserSettingsSchema, gscdumpUserSiteSchema, gscdumpUserStatusSchema, hasOptionalIndexingScope, hasRequiredAnalyticsScope, indexingDiagnosticsSchema, indexingInspectAnyResponseSchema, indexingInspectRateLimitedSchema, indexingInspectRequestSchema, indexingInspectResponseSchema, indexingInspectResultSchema, indexingIssueSchema, indexingNextActions, indexingStatuses, indexingUrlRowSchema, indexingUrlStatusSchema, indexingUrlsParamsSchema, indexingUrlsResponseSchema, inspectionHistoryRecordSchema, inspectionHistoryResponseSchema, inspectionIndexSchema, inspectionRecordRawSchema, jobFailedWebhookPayloadSchema, lifecycleErrorCodes, lifecycleErrorSchema, lifecycleProgressSchema, lifecycleWebhookEvents, parseGrantedScopes, partnerControlEndpointSchemas, partnerEndpointSchemas, partnerLifecycleAccountSchema, partnerLifecycleResponseSchema, partnerLifecycleSiteSchema, partnerRealtimeEventSchema, partnerRoutes, partnerWebhookDataSchema, partnerWebhookEnvelopeSchema, propertyNextActions, propertyStatuses, querySourceModes, registerPartnerSiteSchema, registerPartnerUserSchema, rollupEnvelopeSchema, scheduleStateSchema, searchAppearanceResponseSchema, searchAppearanceRowSchema, searchTypeSchema, siteListItemSchema, sitemapChangesResponseSchema, sitemapHistoryRecordSchema, sitemapHistoryResponseSchema, sitemapIndexSchema, sitemapNextActions, sitemapStatuses, sourceInfoResponseSchema, updatePartnerUserTokensSchema, webhookEventTypeSchema, whoamiResponseSchema };
|
package/dist/partner.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { partnerControlEndpointSchemas, partnerRoutes } from "./_chunks/schemas.mjs";
|
|
2
|
-
import { AccountNextAction, AccountStatus, AddPartnerTeamMemberParams, AnalysisSourcesOptions, AnalysisSourcesResponse, AnalyticsClient, AnalyticsNextAction, AnalyticsStatus, BackfillRange, BackfillResponse, BindPartnerSiteTeamParams, BuilderState, BulkRegisterPartnerSiteResult, BulkRegisterPartnerSitesParams, BulkRegisterPartnerSitesResponse, CanonicalWebhookEventType, ColumnDef, ColumnType, CountriesResponse, CountryRow, CreatePartnerTeamParams, CreateWebhookEnvelopeOptions, DataDetailOptions, DataQueryOptions, DeletePartnerUserResponse, Dimension, Filter, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, Grain, GscApiRange, GscComparisonFilter, GscRowQueryMeta, GscRowQueryResponse, GscSearchType, GscdumpAnalysisParams, GscdumpAnalysisPreset, GscdumpAnalysisResponse, GscdumpAnalysisSourcesResponse, GscdumpAvailableSite, GscdumpCanonicalMismatchRow, GscdumpCanonicalMismatchesResponse, GscdumpDataDetailResponse, GscdumpDataResponse, GscdumpDataRow, GscdumpDateRangeParams, GscdumpHealthResponse, GscdumpIndexPercentResponse, GscdumpIndexPercentSitemap, GscdumpIndexPercentTrendPoint, GscdumpIndexingDiagnosticsResponse, GscdumpIndexingInspectRateLimited, GscdumpIndexingInspectRequest, GscdumpIndexingInspectResponse, GscdumpIndexingInspectResult, GscdumpIndexingIssueSeverity, GscdumpIndexingResponse, GscdumpIndexingTrendPoint, GscdumpIndexingUrl, GscdumpIndexingUrlStatus, GscdumpIndexingUrlsResponse, GscdumpInvisibleUrlRow, GscdumpKeywordSparklinesParams, GscdumpKeywordSparklinesResponse, GscdumpMeta, GscdumpOrphanPageRow, GscdumpPageTrendParams, GscdumpPageTrendResponse, GscdumpPerSitemapHistoryEntry, GscdumpPermissionRecovery, GscdumpQueryTrendParams, GscdumpQueryTrendResponse, GscdumpRichResultItem, GscdumpSiteRegistration, GscdumpSiteReportResponse, GscdumpSitemap, GscdumpSitemapChangesResponse, GscdumpSitemapHistory, GscdumpSitemapsResponse, GscdumpSyncJobItem, GscdumpSyncJobStatus, GscdumpSyncJobsQueueCounts, GscdumpSyncJobsResponse, GscdumpSyncProgressDateStatus, GscdumpSyncProgressPhaseCounts, GscdumpSyncProgressResponse, GscdumpSyncProgressSite, GscdumpSyncStatusResponse, GscdumpTeamMemberRow, GscdumpTeamRow, GscdumpTopAssociationParams, GscdumpTopAssociationResponse, GscdumpTotals, GscdumpUserMeResponse, GscdumpUserRegistration, GscdumpUserSettings, GscdumpUserSite, GscdumpUserStatus, GscdumpUserTokenUpdate, IndexingDiagnostics, IndexingInspectRateLimit, IndexingInspectRateLimited, IndexingInspectRequest, IndexingInspectResponse, IndexingInspectResult, IndexingIssue, IndexingIssueSeverity, IndexingNextAction, IndexingStatus, IndexingUrlRow, IndexingUrlStatus, IndexingUrlsParams, IndexingUrlsResponse, InspectionHistoryRecord, InspectionHistoryResponse, InspectionIndex, InspectionRecordRaw, LifecycleError, LifecycleErrorCode, LifecycleProgress, LifecycleWebhookEnvelope, LifecycleWebhookEvent, Metric, PartnerClient, PartnerLifecycleAccount, PartnerLifecycleResponse, PartnerLifecycleSite, PartnerRealtimeEvent, PartnerRealtimeEventType, PartnerRealtimeMessage, PartnerWebhookData, PartnerWebhookHeaders, PropertyNextAction, PropertyStatus, QuerySourceMode, RealtimeAuthFailedEvent, RealtimeAuthRequiredMessage, RealtimeConnectedMessage, RealtimeEnrichmentCompleteEvent, RealtimeErrorMessage, RealtimeJobFailedEvent, RealtimeNeedsReauthEvent, RealtimePongMessage, RealtimeSiteAddedEvent, RealtimeSiteRemovedEvent, RealtimeSubscribedMessage, RealtimeSyncCompleteEvent, RealtimeSyncFailedEvent, RealtimeSyncJobCompleteEvent, RealtimeSyncProgressEvent, RealtimeSyncSiteCompleteEvent, RegisterPartnerSiteParams, RegisterPartnerUserParams, RollupEnvelope, Row, ScheduleState, SearchAppearanceResponse, SearchAppearanceRow, SearchTypeOptions, SiteListItem, SitemapAddedRow, SitemapChangesResponse, SitemapHistoryRecord, SitemapHistoryResponse, SitemapIndex, SitemapNextAction, SitemapRemovedRow, SitemapStatus, SourceInfoOptions, SourceInfoResponse, TableName, TableSchema, TenantCtx, UpdatePartnerUserTokensParams, WebhookEnvelope, WebhookEventType, WhoamiResponse, accountNextActions, accountStatuses, analyticsNextActions, analyticsStatuses, hasOptionalIndexingScope, hasRequiredAnalyticsScope, indexingNextActions, indexingStatuses, lifecycleErrorCodes, lifecycleWebhookEvents, parseGrantedScopes, propertyNextActions, propertyStatuses, querySourceModes, sitemapNextActions, sitemapStatuses } from "./_chunks/types.mjs";
|
|
2
|
+
import { AccountNextAction, AccountStatus, AddPartnerTeamMemberParams, AnalysisSourcesOptions, AnalysisSourcesResponse, AnalyticsClient, AnalyticsNextAction, AnalyticsStatus, BackfillRange, BackfillResponse, BindPartnerSiteTeamParams, BuilderState, BulkRegisterPartnerSiteResult, BulkRegisterPartnerSitesParams, BulkRegisterPartnerSitesResponse, CanonicalWebhookEventType, ColumnDef, ColumnType, CountriesResponse, CountryRow, CreatePartnerTeamParams, CreateWebhookEnvelopeOptions, DataDetailOptions, DataQueryOptions, DeletePartnerUserResponse, Dimension, Filter, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, Grain, GscApiRange, GscComparisonFilter, GscRowQueryMeta, GscRowQueryResponse, GscSearchType, GscdumpAnalysisParams, GscdumpAnalysisPreset, GscdumpAnalysisResponse, GscdumpAnalysisSourcesResponse, GscdumpAvailableSite, GscdumpCanonicalMismatchRow, GscdumpCanonicalMismatchesResponse, GscdumpDataDetailResponse, GscdumpDataResponse, GscdumpDataRow, GscdumpDateRangeParams, GscdumpHealthResponse, GscdumpIndexPercentResponse, GscdumpIndexPercentSitemap, GscdumpIndexPercentTrendPoint, GscdumpIndexingDiagnosticsResponse, GscdumpIndexingInspectRateLimited, GscdumpIndexingInspectRequest, GscdumpIndexingInspectResponse, GscdumpIndexingInspectResult, GscdumpIndexingIssueSeverity, GscdumpIndexingResponse, GscdumpIndexingTrendPoint, GscdumpIndexingUrl, GscdumpIndexingUrlStatus, GscdumpIndexingUrlsResponse, GscdumpInvisibleUrlRow, GscdumpKeywordSparklinesParams, GscdumpKeywordSparklinesResponse, GscdumpMeta, GscdumpOrphanPageRow, GscdumpPageTrendParams, GscdumpPageTrendResponse, GscdumpPerSitemapHistoryEntry, GscdumpPermissionRecovery, GscdumpQueryTrendParams, GscdumpQueryTrendResponse, GscdumpRichResultItem, GscdumpSiteRegistration, GscdumpSiteReportResponse, GscdumpSitemap, GscdumpSitemapChangesResponse, GscdumpSitemapHistory, GscdumpSitemapsResponse, GscdumpSyncJobItem, GscdumpSyncJobStatus, GscdumpSyncJobsQueueCounts, GscdumpSyncJobsResponse, GscdumpSyncProgressDateStatus, GscdumpSyncProgressPhaseCounts, GscdumpSyncProgressResponse, GscdumpSyncProgressSite, GscdumpSyncStatusResponse, GscdumpTeamMemberRow, GscdumpTeamRow, GscdumpTopAssociationParams, GscdumpTopAssociationResponse, GscdumpTotals, GscdumpUserMeResponse, GscdumpUserRegistration, GscdumpUserSettings, GscdumpUserSite, GscdumpUserStatus, GscdumpUserTokenUpdate, IndexingDiagnostics, IndexingInspectRateLimit, IndexingInspectRateLimited, IndexingInspectRequest, IndexingInspectResponse, IndexingInspectResult, IndexingIssue, IndexingIssueSeverity, IndexingNextAction, IndexingStatus, IndexingUrlRow, IndexingUrlStatus, IndexingUrlsParams, IndexingUrlsResponse, InspectionHistoryRecord, InspectionHistoryResponse, InspectionIndex, InspectionRecordRaw, LifecycleError, LifecycleErrorCode, LifecycleProgress, LifecycleWebhookEnvelope, LifecycleWebhookEvent, Metric, PartnerClient, PartnerLifecycleAccount, PartnerLifecycleResponse, PartnerLifecycleSite, PartnerRealtimeEvent, PartnerRealtimeEventType, PartnerRealtimeMessage, PartnerWebhookData, PartnerWebhookHeaders, PropertyNextAction, PropertyStatus, QuerySourceMode, RealtimeAuthFailedEvent, RealtimeAuthRequiredMessage, RealtimeConnectedMessage, RealtimeEnrichmentCompleteEvent, RealtimeErrorMessage, RealtimeIndexingCompleteEvent, RealtimeIndexingProgressEvent, RealtimeJobFailedEvent, RealtimeNeedsReauthEvent, RealtimePongMessage, RealtimeSiteAddedEvent, RealtimeSiteRemovedEvent, RealtimeSitemapCompleteEvent, RealtimeSitemapProgressEvent, RealtimeSubscribedMessage, RealtimeSyncCompleteEvent, RealtimeSyncFailedEvent, RealtimeSyncJobCompleteEvent, RealtimeSyncProgressEvent, RealtimeSyncSiteCompleteEvent, RegisterPartnerSiteParams, RegisterPartnerUserParams, RollupEnvelope, Row, ScheduleState, SearchAppearanceResponse, SearchAppearanceRow, SearchTypeOptions, SiteListItem, SitemapAddedRow, SitemapChangesResponse, SitemapHistoryRecord, SitemapHistoryResponse, SitemapIndex, SitemapNextAction, SitemapRemovedRow, SitemapStatus, SourceInfoOptions, SourceInfoResponse, TableName, TableSchema, TenantCtx, UpdatePartnerUserTokensParams, WebhookEnvelope, WebhookEventType, WhoamiResponse, accountNextActions, accountStatuses, analyticsNextActions, analyticsStatuses, hasOptionalIndexingScope, hasRequiredAnalyticsScope, indexingNextActions, indexingStatuses, lifecycleErrorCodes, lifecycleWebhookEvents, parseGrantedScopes, propertyNextActions, propertyStatuses, querySourceModes, sitemapNextActions, sitemapStatuses } from "./_chunks/types.mjs";
|
|
3
3
|
import { CANONICAL_WEBHOOK_EVENTS, VALID_WEBHOOK_EVENTS, WEBHOOK_CONTRACT_VERSION, WEBHOOK_CONTRACT_VERSION_HEADER, WEBHOOK_DELIVERY_HEADER, WEBHOOK_EVENT_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER } from "./_chunks/webhook-constants.mjs";
|
|
4
|
-
export { AccountNextAction, AccountStatus, type AddPartnerTeamMemberParams, type AnalysisSourcesOptions, type AnalysisSourcesResponse, type AnalyticsClient, AnalyticsNextAction, AnalyticsStatus, type BackfillRange, type BackfillResponse, type BindPartnerSiteTeamParams, type BuilderState, type BulkRegisterPartnerSiteResult, type BulkRegisterPartnerSitesParams, type BulkRegisterPartnerSitesResponse, CANONICAL_WEBHOOK_EVENTS, type CanonicalWebhookEventType, type ColumnDef, type ColumnType, type CountriesResponse, type CountryRow, type CreatePartnerTeamParams, type CreateWebhookEnvelopeOptions, type DataDetailOptions, type DataQueryOptions, type DeletePartnerUserResponse, type Dimension, type Filter, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, type Grain, type GscApiRange, type GscComparisonFilter, type GscRowQueryMeta, type GscRowQueryResponse, type GscSearchType, type GscdumpAnalysisParams, type GscdumpAnalysisPreset, type GscdumpAnalysisResponse, type GscdumpAnalysisSourcesResponse, type GscdumpAvailableSite, type GscdumpCanonicalMismatchRow, type GscdumpCanonicalMismatchesResponse, type GscdumpDataDetailResponse, type GscdumpDataResponse, type GscdumpDataRow, type GscdumpDateRangeParams, type GscdumpHealthResponse, type GscdumpIndexPercentResponse, type GscdumpIndexPercentSitemap, type GscdumpIndexPercentTrendPoint, type GscdumpIndexingDiagnosticsResponse, type GscdumpIndexingInspectRateLimited, type GscdumpIndexingInspectRequest, type GscdumpIndexingInspectResponse, type GscdumpIndexingInspectResult, type GscdumpIndexingIssueSeverity, type GscdumpIndexingResponse, type GscdumpIndexingTrendPoint, type GscdumpIndexingUrl, type GscdumpIndexingUrlStatus, type GscdumpIndexingUrlsResponse, type GscdumpInvisibleUrlRow, type GscdumpKeywordSparklinesParams, type GscdumpKeywordSparklinesResponse, type GscdumpMeta, type GscdumpOrphanPageRow, type GscdumpPageTrendParams, type GscdumpPageTrendResponse, type GscdumpPerSitemapHistoryEntry, type GscdumpPermissionRecovery, type GscdumpQueryTrendParams, type GscdumpQueryTrendResponse, type GscdumpRichResultItem, type GscdumpSiteRegistration, type GscdumpSiteReportResponse, type GscdumpSitemap, type GscdumpSitemapChangesResponse, type GscdumpSitemapHistory, type GscdumpSitemapsResponse, type GscdumpSyncJobItem, type GscdumpSyncJobStatus, type GscdumpSyncJobsQueueCounts, type GscdumpSyncJobsResponse, type GscdumpSyncProgressDateStatus, type GscdumpSyncProgressPhaseCounts, type GscdumpSyncProgressResponse, type GscdumpSyncProgressSite, type GscdumpSyncStatusResponse, type GscdumpTeamMemberRow, type GscdumpTeamRow, type GscdumpTopAssociationParams, type GscdumpTopAssociationResponse, type GscdumpTotals, type GscdumpUserMeResponse, type GscdumpUserRegistration, type GscdumpUserSettings, type GscdumpUserSite, type GscdumpUserStatus, type GscdumpUserTokenUpdate, type IndexingDiagnostics, type IndexingInspectRateLimit, type IndexingInspectRateLimited, type IndexingInspectRequest, type IndexingInspectResponse, type IndexingInspectResult, type IndexingIssue, type IndexingIssueSeverity, IndexingNextAction, IndexingStatus, type IndexingUrlRow, type IndexingUrlStatus, type IndexingUrlsParams, type IndexingUrlsResponse, type InspectionHistoryRecord, type InspectionHistoryResponse, type InspectionIndex, type InspectionRecordRaw, LifecycleError, LifecycleErrorCode, LifecycleProgress, LifecycleWebhookEnvelope, LifecycleWebhookEvent, type Metric, type PartnerClient, PartnerLifecycleAccount, PartnerLifecycleResponse, PartnerLifecycleSite, type PartnerRealtimeEvent, type PartnerRealtimeEventType, type PartnerRealtimeMessage, type PartnerWebhookData, type PartnerWebhookHeaders, PropertyNextAction, PropertyStatus, QuerySourceMode, type RealtimeAuthFailedEvent, type RealtimeAuthRequiredMessage, type RealtimeConnectedMessage, type RealtimeEnrichmentCompleteEvent, type RealtimeErrorMessage, type RealtimeJobFailedEvent, type RealtimeNeedsReauthEvent, type RealtimePongMessage, type RealtimeSiteAddedEvent, type RealtimeSiteRemovedEvent, type RealtimeSubscribedMessage, type RealtimeSyncCompleteEvent, type RealtimeSyncFailedEvent, type RealtimeSyncJobCompleteEvent, type RealtimeSyncProgressEvent, type RealtimeSyncSiteCompleteEvent, type RegisterPartnerSiteParams, type RegisterPartnerUserParams, type RollupEnvelope, type Row, type ScheduleState, type SearchAppearanceResponse, type SearchAppearanceRow, type SearchTypeOptions, type SiteListItem, type SitemapAddedRow, type SitemapChangesResponse, type SitemapHistoryRecord, type SitemapHistoryResponse, type SitemapIndex, SitemapNextAction, type SitemapRemovedRow, SitemapStatus, type SourceInfoOptions, type SourceInfoResponse, type TableName, type TableSchema, type TenantCtx, type UpdatePartnerUserTokensParams, VALID_WEBHOOK_EVENTS, WEBHOOK_CONTRACT_VERSION, WEBHOOK_CONTRACT_VERSION_HEADER, WEBHOOK_DELIVERY_HEADER, WEBHOOK_EVENT_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, type WebhookEnvelope, type WebhookEventType, type WhoamiResponse, accountNextActions, accountStatuses, analyticsNextActions, analyticsStatuses, hasOptionalIndexingScope, hasRequiredAnalyticsScope, indexingNextActions, indexingStatuses, lifecycleErrorCodes, lifecycleWebhookEvents, parseGrantedScopes, partnerControlEndpointSchemas, partnerControlEndpointSchemas as partnerEndpointSchemas, partnerRoutes, propertyNextActions, propertyStatuses, querySourceModes, sitemapNextActions, sitemapStatuses };
|
|
4
|
+
export { AccountNextAction, AccountStatus, type AddPartnerTeamMemberParams, type AnalysisSourcesOptions, type AnalysisSourcesResponse, type AnalyticsClient, AnalyticsNextAction, AnalyticsStatus, type BackfillRange, type BackfillResponse, type BindPartnerSiteTeamParams, type BuilderState, type BulkRegisterPartnerSiteResult, type BulkRegisterPartnerSitesParams, type BulkRegisterPartnerSitesResponse, CANONICAL_WEBHOOK_EVENTS, type CanonicalWebhookEventType, type ColumnDef, type ColumnType, type CountriesResponse, type CountryRow, type CreatePartnerTeamParams, type CreateWebhookEnvelopeOptions, type DataDetailOptions, type DataQueryOptions, type DeletePartnerUserResponse, type Dimension, type Filter, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, type Grain, type GscApiRange, type GscComparisonFilter, type GscRowQueryMeta, type GscRowQueryResponse, type GscSearchType, type GscdumpAnalysisParams, type GscdumpAnalysisPreset, type GscdumpAnalysisResponse, type GscdumpAnalysisSourcesResponse, type GscdumpAvailableSite, type GscdumpCanonicalMismatchRow, type GscdumpCanonicalMismatchesResponse, type GscdumpDataDetailResponse, type GscdumpDataResponse, type GscdumpDataRow, type GscdumpDateRangeParams, type GscdumpHealthResponse, type GscdumpIndexPercentResponse, type GscdumpIndexPercentSitemap, type GscdumpIndexPercentTrendPoint, type GscdumpIndexingDiagnosticsResponse, type GscdumpIndexingInspectRateLimited, type GscdumpIndexingInspectRequest, type GscdumpIndexingInspectResponse, type GscdumpIndexingInspectResult, type GscdumpIndexingIssueSeverity, type GscdumpIndexingResponse, type GscdumpIndexingTrendPoint, type GscdumpIndexingUrl, type GscdumpIndexingUrlStatus, type GscdumpIndexingUrlsResponse, type GscdumpInvisibleUrlRow, type GscdumpKeywordSparklinesParams, type GscdumpKeywordSparklinesResponse, type GscdumpMeta, type GscdumpOrphanPageRow, type GscdumpPageTrendParams, type GscdumpPageTrendResponse, type GscdumpPerSitemapHistoryEntry, type GscdumpPermissionRecovery, type GscdumpQueryTrendParams, type GscdumpQueryTrendResponse, type GscdumpRichResultItem, type GscdumpSiteRegistration, type GscdumpSiteReportResponse, type GscdumpSitemap, type GscdumpSitemapChangesResponse, type GscdumpSitemapHistory, type GscdumpSitemapsResponse, type GscdumpSyncJobItem, type GscdumpSyncJobStatus, type GscdumpSyncJobsQueueCounts, type GscdumpSyncJobsResponse, type GscdumpSyncProgressDateStatus, type GscdumpSyncProgressPhaseCounts, type GscdumpSyncProgressResponse, type GscdumpSyncProgressSite, type GscdumpSyncStatusResponse, type GscdumpTeamMemberRow, type GscdumpTeamRow, type GscdumpTopAssociationParams, type GscdumpTopAssociationResponse, type GscdumpTotals, type GscdumpUserMeResponse, type GscdumpUserRegistration, type GscdumpUserSettings, type GscdumpUserSite, type GscdumpUserStatus, type GscdumpUserTokenUpdate, type IndexingDiagnostics, type IndexingInspectRateLimit, type IndexingInspectRateLimited, type IndexingInspectRequest, type IndexingInspectResponse, type IndexingInspectResult, type IndexingIssue, type IndexingIssueSeverity, IndexingNextAction, IndexingStatus, type IndexingUrlRow, type IndexingUrlStatus, type IndexingUrlsParams, type IndexingUrlsResponse, type InspectionHistoryRecord, type InspectionHistoryResponse, type InspectionIndex, type InspectionRecordRaw, LifecycleError, LifecycleErrorCode, LifecycleProgress, LifecycleWebhookEnvelope, LifecycleWebhookEvent, type Metric, type PartnerClient, PartnerLifecycleAccount, PartnerLifecycleResponse, PartnerLifecycleSite, type PartnerRealtimeEvent, type PartnerRealtimeEventType, type PartnerRealtimeMessage, type PartnerWebhookData, type PartnerWebhookHeaders, PropertyNextAction, PropertyStatus, QuerySourceMode, type RealtimeAuthFailedEvent, type RealtimeAuthRequiredMessage, type RealtimeConnectedMessage, type RealtimeEnrichmentCompleteEvent, type RealtimeErrorMessage, type RealtimeIndexingCompleteEvent, type RealtimeIndexingProgressEvent, type RealtimeJobFailedEvent, type RealtimeNeedsReauthEvent, type RealtimePongMessage, type RealtimeSiteAddedEvent, type RealtimeSiteRemovedEvent, type RealtimeSitemapCompleteEvent, type RealtimeSitemapProgressEvent, type RealtimeSubscribedMessage, type RealtimeSyncCompleteEvent, type RealtimeSyncFailedEvent, type RealtimeSyncJobCompleteEvent, type RealtimeSyncProgressEvent, type RealtimeSyncSiteCompleteEvent, type RegisterPartnerSiteParams, type RegisterPartnerUserParams, type RollupEnvelope, type Row, type ScheduleState, type SearchAppearanceResponse, type SearchAppearanceRow, type SearchTypeOptions, type SiteListItem, type SitemapAddedRow, type SitemapChangesResponse, type SitemapHistoryRecord, type SitemapHistoryResponse, type SitemapIndex, SitemapNextAction, type SitemapRemovedRow, SitemapStatus, type SourceInfoOptions, type SourceInfoResponse, type TableName, type TableSchema, type TenantCtx, type UpdatePartnerUserTokensParams, VALID_WEBHOOK_EVENTS, WEBHOOK_CONTRACT_VERSION, WEBHOOK_CONTRACT_VERSION_HEADER, WEBHOOK_DELIVERY_HEADER, WEBHOOK_EVENT_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, type WebhookEnvelope, type WebhookEventType, type WhoamiResponse, accountNextActions, accountStatuses, analyticsNextActions, analyticsStatuses, hasOptionalIndexingScope, hasRequiredAnalyticsScope, indexingNextActions, indexingStatuses, lifecycleErrorCodes, lifecycleWebhookEvents, parseGrantedScopes, partnerControlEndpointSchemas, partnerControlEndpointSchemas as partnerEndpointSchemas, partnerRoutes, propertyNextActions, propertyStatuses, querySourceModes, sitemapNextActions, sitemapStatuses };
|