@gscdump/contracts 0.33.10 → 0.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_chunks/schemas.d.mts +103 -79
- package/dist/_chunks/schemas.mjs +17 -2
- package/dist/_chunks/types.d.mts +5 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
|
@@ -750,16 +750,16 @@ declare const gscdumpUserRegistrationSchema: z.ZodObject<{
|
|
|
750
750
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
751
751
|
isNew: z.ZodOptional<z.ZodBoolean>;
|
|
752
752
|
status: z.ZodOptional<z.ZodEnum<{
|
|
753
|
-
provisioning: "provisioning";
|
|
754
753
|
ready: "ready";
|
|
754
|
+
provisioning: "provisioning";
|
|
755
755
|
}>>;
|
|
756
756
|
}, z.core.$loose>;
|
|
757
757
|
declare const gscdumpUserStatusSchema: z.ZodObject<{
|
|
758
758
|
userId: z.ZodString;
|
|
759
759
|
status: z.ZodEnum<{
|
|
760
|
-
provisioning: "provisioning";
|
|
761
760
|
ready: "ready";
|
|
762
761
|
reauth_required: "reauth_required";
|
|
762
|
+
provisioning: "provisioning";
|
|
763
763
|
}>;
|
|
764
764
|
databaseReady: z.ZodOptional<z.ZodBoolean>;
|
|
765
765
|
needsReauth: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -798,26 +798,27 @@ declare const lifecycleErrorSchema: z.ZodObject<{
|
|
|
798
798
|
}, z.core.$strip>;
|
|
799
799
|
declare const partnerLifecycleAccountSchema: z.ZodObject<{
|
|
800
800
|
status: z.ZodEnum<{
|
|
801
|
-
ready: "ready";
|
|
802
|
-
reauth_required: "reauth_required";
|
|
803
801
|
disconnected: "disconnected";
|
|
804
802
|
oauth_received: "oauth_received";
|
|
805
803
|
scope_missing: "scope_missing";
|
|
806
804
|
refresh_missing: "refresh_missing";
|
|
807
805
|
db_provisioning: "db_provisioning";
|
|
806
|
+
ready: "ready";
|
|
807
|
+
reauth_required: "reauth_required";
|
|
808
808
|
}>;
|
|
809
809
|
grantedScopes: z.ZodArray<z.ZodString>;
|
|
810
810
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
811
811
|
nextAction: z.ZodEnum<{
|
|
812
|
-
reconnect_google: "reconnect_google";
|
|
813
|
-
none: "none";
|
|
814
812
|
connect_google: "connect_google";
|
|
813
|
+
reconnect_google: "reconnect_google";
|
|
815
814
|
wait_for_provisioning: "wait_for_provisioning";
|
|
815
|
+
none: "none";
|
|
816
816
|
}>;
|
|
817
817
|
}, z.core.$loose>;
|
|
818
818
|
declare const partnerLifecycleSiteSchema: z.ZodObject<{
|
|
819
819
|
siteId: z.ZodString;
|
|
820
820
|
intId: z.ZodNullable<z.ZodNumber>;
|
|
821
|
+
catalogSiteId: z.ZodNullable<z.ZodNumber>;
|
|
821
822
|
externalSiteId: z.ZodNullable<z.ZodString>;
|
|
822
823
|
requestedUrl: z.ZodString;
|
|
823
824
|
gscPropertyUrl: z.ZodNullable<z.ZodString>;
|
|
@@ -841,14 +842,14 @@ declare const partnerLifecycleSiteSchema: z.ZodObject<{
|
|
|
841
842
|
}, z.core.$loose>;
|
|
842
843
|
analytics: z.ZodObject<{
|
|
843
844
|
status: z.ZodEnum<{
|
|
844
|
-
queued: "queued";
|
|
845
845
|
ready: "ready";
|
|
846
|
-
failed: "failed";
|
|
847
846
|
not_registered: "not_registered";
|
|
847
|
+
queued: "queued";
|
|
848
848
|
preparing: "preparing";
|
|
849
849
|
syncing: "syncing";
|
|
850
850
|
queryable_live: "queryable_live";
|
|
851
851
|
queryable_partial: "queryable_partial";
|
|
852
|
+
failed: "failed";
|
|
852
853
|
}>;
|
|
853
854
|
progress: z.ZodObject<{
|
|
854
855
|
completed: z.ZodNumber;
|
|
@@ -858,10 +859,10 @@ declare const partnerLifecycleSiteSchema: z.ZodObject<{
|
|
|
858
859
|
}, z.core.$strip>;
|
|
859
860
|
queryable: z.ZodBoolean;
|
|
860
861
|
sourceMode: z.ZodEnum<{
|
|
861
|
-
d1: "d1";
|
|
862
|
-
r2: "r2";
|
|
863
862
|
none: "none";
|
|
864
863
|
live: "live";
|
|
864
|
+
d1: "d1";
|
|
865
|
+
r2: "r2";
|
|
865
866
|
mixed: "mixed";
|
|
866
867
|
}>;
|
|
867
868
|
syncedRange: z.ZodObject<{
|
|
@@ -876,10 +877,10 @@ declare const partnerLifecycleSiteSchema: z.ZodObject<{
|
|
|
876
877
|
}, z.core.$loose>;
|
|
877
878
|
sitemaps: z.ZodObject<{
|
|
878
879
|
status: z.ZodEnum<{
|
|
879
|
-
unknown: "unknown";
|
|
880
880
|
ready: "ready";
|
|
881
|
-
failed: "failed";
|
|
882
881
|
syncing: "syncing";
|
|
882
|
+
failed: "failed";
|
|
883
|
+
unknown: "unknown";
|
|
883
884
|
discovering: "discovering";
|
|
884
885
|
none_found: "none_found";
|
|
885
886
|
auto_submitted: "auto_submitted";
|
|
@@ -947,28 +948,30 @@ declare const partnerLifecycleResponseSchema: z.ZodObject<{
|
|
|
947
948
|
contractVersion: z.ZodLiteral<"2026-05-11">;
|
|
948
949
|
userId: z.ZodString;
|
|
949
950
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
951
|
+
currentTeamId: z.ZodNullable<z.ZodString>;
|
|
950
952
|
account: z.ZodObject<{
|
|
951
953
|
status: z.ZodEnum<{
|
|
952
|
-
ready: "ready";
|
|
953
|
-
reauth_required: "reauth_required";
|
|
954
954
|
disconnected: "disconnected";
|
|
955
955
|
oauth_received: "oauth_received";
|
|
956
956
|
scope_missing: "scope_missing";
|
|
957
957
|
refresh_missing: "refresh_missing";
|
|
958
958
|
db_provisioning: "db_provisioning";
|
|
959
|
+
ready: "ready";
|
|
960
|
+
reauth_required: "reauth_required";
|
|
959
961
|
}>;
|
|
960
962
|
grantedScopes: z.ZodArray<z.ZodString>;
|
|
961
963
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
962
964
|
nextAction: z.ZodEnum<{
|
|
963
|
-
reconnect_google: "reconnect_google";
|
|
964
|
-
none: "none";
|
|
965
965
|
connect_google: "connect_google";
|
|
966
|
+
reconnect_google: "reconnect_google";
|
|
966
967
|
wait_for_provisioning: "wait_for_provisioning";
|
|
968
|
+
none: "none";
|
|
967
969
|
}>;
|
|
968
970
|
}, z.core.$loose>;
|
|
969
971
|
sites: z.ZodArray<z.ZodObject<{
|
|
970
972
|
siteId: z.ZodString;
|
|
971
973
|
intId: z.ZodNullable<z.ZodNumber>;
|
|
974
|
+
catalogSiteId: z.ZodNullable<z.ZodNumber>;
|
|
972
975
|
externalSiteId: z.ZodNullable<z.ZodString>;
|
|
973
976
|
requestedUrl: z.ZodString;
|
|
974
977
|
gscPropertyUrl: z.ZodNullable<z.ZodString>;
|
|
@@ -992,14 +995,14 @@ declare const partnerLifecycleResponseSchema: z.ZodObject<{
|
|
|
992
995
|
}, z.core.$loose>;
|
|
993
996
|
analytics: z.ZodObject<{
|
|
994
997
|
status: z.ZodEnum<{
|
|
995
|
-
queued: "queued";
|
|
996
998
|
ready: "ready";
|
|
997
|
-
failed: "failed";
|
|
998
999
|
not_registered: "not_registered";
|
|
1000
|
+
queued: "queued";
|
|
999
1001
|
preparing: "preparing";
|
|
1000
1002
|
syncing: "syncing";
|
|
1001
1003
|
queryable_live: "queryable_live";
|
|
1002
1004
|
queryable_partial: "queryable_partial";
|
|
1005
|
+
failed: "failed";
|
|
1003
1006
|
}>;
|
|
1004
1007
|
progress: z.ZodObject<{
|
|
1005
1008
|
completed: z.ZodNumber;
|
|
@@ -1009,10 +1012,10 @@ declare const partnerLifecycleResponseSchema: z.ZodObject<{
|
|
|
1009
1012
|
}, z.core.$strip>;
|
|
1010
1013
|
queryable: z.ZodBoolean;
|
|
1011
1014
|
sourceMode: z.ZodEnum<{
|
|
1012
|
-
d1: "d1";
|
|
1013
|
-
r2: "r2";
|
|
1014
1015
|
none: "none";
|
|
1015
1016
|
live: "live";
|
|
1017
|
+
d1: "d1";
|
|
1018
|
+
r2: "r2";
|
|
1016
1019
|
mixed: "mixed";
|
|
1017
1020
|
}>;
|
|
1018
1021
|
syncedRange: z.ZodObject<{
|
|
@@ -1027,10 +1030,10 @@ declare const partnerLifecycleResponseSchema: z.ZodObject<{
|
|
|
1027
1030
|
}, z.core.$loose>;
|
|
1028
1031
|
sitemaps: z.ZodObject<{
|
|
1029
1032
|
status: z.ZodEnum<{
|
|
1030
|
-
unknown: "unknown";
|
|
1031
1033
|
ready: "ready";
|
|
1032
|
-
failed: "failed";
|
|
1033
1034
|
syncing: "syncing";
|
|
1035
|
+
failed: "failed";
|
|
1036
|
+
unknown: "unknown";
|
|
1034
1037
|
discovering: "discovering";
|
|
1035
1038
|
none_found: "none_found";
|
|
1036
1039
|
auto_submitted: "auto_submitted";
|
|
@@ -1102,9 +1105,9 @@ declare const gscdumpAvailableSiteSchema: z.ZodObject<{
|
|
|
1102
1105
|
siteId: z.ZodOptional<z.ZodString>;
|
|
1103
1106
|
intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1104
1107
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1108
|
+
syncing: "syncing";
|
|
1105
1109
|
pending: "pending";
|
|
1106
1110
|
error: "error";
|
|
1107
|
-
syncing: "syncing";
|
|
1108
1111
|
synced: "synced";
|
|
1109
1112
|
}>>>;
|
|
1110
1113
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -1121,9 +1124,9 @@ declare const gscdumpUserSiteSchema: z.ZodObject<{
|
|
|
1121
1124
|
siteId: z.ZodString;
|
|
1122
1125
|
siteUrl: z.ZodString;
|
|
1123
1126
|
syncStatus: z.ZodEnum<{
|
|
1127
|
+
syncing: "syncing";
|
|
1124
1128
|
pending: "pending";
|
|
1125
1129
|
error: "error";
|
|
1126
|
-
syncing: "syncing";
|
|
1127
1130
|
synced: "synced";
|
|
1128
1131
|
idle: "idle";
|
|
1129
1132
|
}>;
|
|
@@ -1134,10 +1137,11 @@ declare const gscdumpUserSiteSchema: z.ZodObject<{
|
|
|
1134
1137
|
declare const gscdumpSiteRegistrationSchema: z.ZodObject<{
|
|
1135
1138
|
siteId: z.ZodString;
|
|
1136
1139
|
intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1140
|
+
catalogSiteId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1137
1141
|
status: z.ZodEnum<{
|
|
1142
|
+
syncing: "syncing";
|
|
1138
1143
|
pending: "pending";
|
|
1139
1144
|
error: "error";
|
|
1140
|
-
syncing: "syncing";
|
|
1141
1145
|
synced: "synced";
|
|
1142
1146
|
idle: "idle";
|
|
1143
1147
|
}>;
|
|
@@ -1176,6 +1180,7 @@ declare const registerPartnerSiteSchema: z.ZodObject<{
|
|
|
1176
1180
|
discover: "discover";
|
|
1177
1181
|
googleNews: "googleNews";
|
|
1178
1182
|
}>>>;
|
|
1183
|
+
catalogSiteId: z.ZodOptional<z.ZodNumber>;
|
|
1179
1184
|
}, z.core.$strip>;
|
|
1180
1185
|
declare const bulkRegisterPartnerSitesSchema: z.ZodObject<{
|
|
1181
1186
|
userId: z.ZodOptional<z.ZodString>;
|
|
@@ -1210,8 +1215,8 @@ declare const bulkRegisterPartnerSitesResponseSchema: z.ZodObject<{
|
|
|
1210
1215
|
siteUrl: z.ZodString;
|
|
1211
1216
|
siteId: z.ZodOptional<z.ZodString>;
|
|
1212
1217
|
status: z.ZodEnum<{
|
|
1213
|
-
error: "error";
|
|
1214
1218
|
registered: "registered";
|
|
1219
|
+
error: "error";
|
|
1215
1220
|
already_exists: "already_exists";
|
|
1216
1221
|
not_found: "not_found";
|
|
1217
1222
|
}>;
|
|
@@ -1232,6 +1237,17 @@ declare const bulkRegisterPartnerSitesResponseSchema: z.ZodObject<{
|
|
|
1232
1237
|
errors: z.ZodNumber;
|
|
1233
1238
|
}, z.core.$strip>;
|
|
1234
1239
|
}, z.core.$loose>;
|
|
1240
|
+
declare const teamCatalogRefSchema: z.ZodObject<{
|
|
1241
|
+
teamId: z.ZodString;
|
|
1242
|
+
catalogUri: z.ZodNullable<z.ZodString>;
|
|
1243
|
+
warehouse: z.ZodNullable<z.ZodString>;
|
|
1244
|
+
bucket: z.ZodNullable<z.ZodString>;
|
|
1245
|
+
namespace: z.ZodNullable<z.ZodString>;
|
|
1246
|
+
provisioningState: z.ZodNullable<z.ZodString>;
|
|
1247
|
+
keyEncoding: z.ZodNullable<z.ZodString>;
|
|
1248
|
+
catalogTablesReady: z.ZodBoolean;
|
|
1249
|
+
readsEnabled: z.ZodBoolean;
|
|
1250
|
+
}, z.core.$loose>;
|
|
1235
1251
|
declare const dataQueryOptionsSchema: z.ZodOptional<z.ZodObject<{
|
|
1236
1252
|
comparison: z.ZodOptional<z.ZodObject<{
|
|
1237
1253
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1580,19 +1596,19 @@ declare const gscdumpUserMeResponseSchema: z.ZodObject<{
|
|
|
1580
1596
|
databaseReady: z.ZodBoolean;
|
|
1581
1597
|
plan: z.ZodString;
|
|
1582
1598
|
accountStatus: z.ZodEnum<{
|
|
1583
|
-
ready: "ready";
|
|
1584
|
-
reauth_required: "reauth_required";
|
|
1585
1599
|
disconnected: "disconnected";
|
|
1586
1600
|
oauth_received: "oauth_received";
|
|
1587
1601
|
scope_missing: "scope_missing";
|
|
1588
1602
|
refresh_missing: "refresh_missing";
|
|
1589
1603
|
db_provisioning: "db_provisioning";
|
|
1604
|
+
ready: "ready";
|
|
1605
|
+
reauth_required: "reauth_required";
|
|
1590
1606
|
}>;
|
|
1591
1607
|
accountNextAction: z.ZodEnum<{
|
|
1592
|
-
reconnect_google: "reconnect_google";
|
|
1593
|
-
none: "none";
|
|
1594
1608
|
connect_google: "connect_google";
|
|
1609
|
+
reconnect_google: "reconnect_google";
|
|
1595
1610
|
wait_for_provisioning: "wait_for_provisioning";
|
|
1611
|
+
none: "none";
|
|
1596
1612
|
}>;
|
|
1597
1613
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
1598
1614
|
browserAnalyzerEnabled: z.ZodBoolean;
|
|
@@ -1692,8 +1708,8 @@ declare const gscdumpSyncProgressResponseSchema: z.ZodObject<{
|
|
|
1692
1708
|
date: z.ZodString;
|
|
1693
1709
|
status: z.ZodEnum<{
|
|
1694
1710
|
queued: "queued";
|
|
1695
|
-
completed: "completed";
|
|
1696
1711
|
failed: "failed";
|
|
1712
|
+
completed: "completed";
|
|
1697
1713
|
processing: "processing";
|
|
1698
1714
|
}>;
|
|
1699
1715
|
}, z.core.$loose>>;
|
|
@@ -1716,8 +1732,8 @@ declare const gscdumpSyncJobsResponseSchema: z.ZodObject<{
|
|
|
1716
1732
|
priority: z.ZodOptional<z.ZodString>;
|
|
1717
1733
|
status: z.ZodEnum<{
|
|
1718
1734
|
queued: "queued";
|
|
1719
|
-
completed: "completed";
|
|
1720
1735
|
failed: "failed";
|
|
1736
|
+
completed: "completed";
|
|
1721
1737
|
processing: "processing";
|
|
1722
1738
|
scheduled: "scheduled";
|
|
1723
1739
|
}>;
|
|
@@ -2615,19 +2631,19 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2615
2631
|
databaseReady: z.ZodBoolean;
|
|
2616
2632
|
plan: z.ZodString;
|
|
2617
2633
|
accountStatus: z.ZodEnum<{
|
|
2618
|
-
ready: "ready";
|
|
2619
|
-
reauth_required: "reauth_required";
|
|
2620
2634
|
disconnected: "disconnected";
|
|
2621
2635
|
oauth_received: "oauth_received";
|
|
2622
2636
|
scope_missing: "scope_missing";
|
|
2623
2637
|
refresh_missing: "refresh_missing";
|
|
2624
2638
|
db_provisioning: "db_provisioning";
|
|
2639
|
+
ready: "ready";
|
|
2640
|
+
reauth_required: "reauth_required";
|
|
2625
2641
|
}>;
|
|
2626
2642
|
accountNextAction: z.ZodEnum<{
|
|
2627
|
-
reconnect_google: "reconnect_google";
|
|
2628
|
-
none: "none";
|
|
2629
2643
|
connect_google: "connect_google";
|
|
2644
|
+
reconnect_google: "reconnect_google";
|
|
2630
2645
|
wait_for_provisioning: "wait_for_provisioning";
|
|
2646
|
+
none: "none";
|
|
2631
2647
|
}>;
|
|
2632
2648
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
2633
2649
|
browserAnalyzerEnabled: z.ZodBoolean;
|
|
@@ -2731,8 +2747,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2731
2747
|
date: z.ZodString;
|
|
2732
2748
|
status: z.ZodEnum<{
|
|
2733
2749
|
queued: "queued";
|
|
2734
|
-
completed: "completed";
|
|
2735
2750
|
failed: "failed";
|
|
2751
|
+
completed: "completed";
|
|
2736
2752
|
processing: "processing";
|
|
2737
2753
|
}>;
|
|
2738
2754
|
}, z.core.$loose>>;
|
|
@@ -2757,8 +2773,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2757
2773
|
priority: z.ZodOptional<z.ZodString>;
|
|
2758
2774
|
status: z.ZodEnum<{
|
|
2759
2775
|
queued: "queued";
|
|
2760
|
-
completed: "completed";
|
|
2761
2776
|
failed: "failed";
|
|
2777
|
+
completed: "completed";
|
|
2762
2778
|
processing: "processing";
|
|
2763
2779
|
scheduled: "scheduled";
|
|
2764
2780
|
}>;
|
|
@@ -2812,8 +2828,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2812
2828
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
2813
2829
|
isNew: z.ZodOptional<z.ZodBoolean>;
|
|
2814
2830
|
status: z.ZodOptional<z.ZodEnum<{
|
|
2815
|
-
provisioning: "provisioning";
|
|
2816
2831
|
ready: "ready";
|
|
2832
|
+
provisioning: "provisioning";
|
|
2817
2833
|
}>>;
|
|
2818
2834
|
}, z.core.$loose>;
|
|
2819
2835
|
};
|
|
@@ -2833,9 +2849,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2833
2849
|
siteId: z.ZodOptional<z.ZodString>;
|
|
2834
2850
|
intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2835
2851
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2852
|
+
syncing: "syncing";
|
|
2836
2853
|
pending: "pending";
|
|
2837
2854
|
error: "error";
|
|
2838
|
-
syncing: "syncing";
|
|
2839
2855
|
synced: "synced";
|
|
2840
2856
|
}>>>;
|
|
2841
2857
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -2854,9 +2870,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2854
2870
|
readonly response: z.ZodObject<{
|
|
2855
2871
|
userId: z.ZodString;
|
|
2856
2872
|
status: z.ZodEnum<{
|
|
2857
|
-
provisioning: "provisioning";
|
|
2858
2873
|
ready: "ready";
|
|
2859
2874
|
reauth_required: "reauth_required";
|
|
2875
|
+
provisioning: "provisioning";
|
|
2860
2876
|
}>;
|
|
2861
2877
|
databaseReady: z.ZodOptional<z.ZodBoolean>;
|
|
2862
2878
|
needsReauth: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2875,28 +2891,30 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2875
2891
|
contractVersion: z.ZodLiteral<"2026-05-11">;
|
|
2876
2892
|
userId: z.ZodString;
|
|
2877
2893
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
2894
|
+
currentTeamId: z.ZodNullable<z.ZodString>;
|
|
2878
2895
|
account: z.ZodObject<{
|
|
2879
2896
|
status: z.ZodEnum<{
|
|
2880
|
-
ready: "ready";
|
|
2881
|
-
reauth_required: "reauth_required";
|
|
2882
2897
|
disconnected: "disconnected";
|
|
2883
2898
|
oauth_received: "oauth_received";
|
|
2884
2899
|
scope_missing: "scope_missing";
|
|
2885
2900
|
refresh_missing: "refresh_missing";
|
|
2886
2901
|
db_provisioning: "db_provisioning";
|
|
2902
|
+
ready: "ready";
|
|
2903
|
+
reauth_required: "reauth_required";
|
|
2887
2904
|
}>;
|
|
2888
2905
|
grantedScopes: z.ZodArray<z.ZodString>;
|
|
2889
2906
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
2890
2907
|
nextAction: z.ZodEnum<{
|
|
2891
|
-
reconnect_google: "reconnect_google";
|
|
2892
|
-
none: "none";
|
|
2893
2908
|
connect_google: "connect_google";
|
|
2909
|
+
reconnect_google: "reconnect_google";
|
|
2894
2910
|
wait_for_provisioning: "wait_for_provisioning";
|
|
2911
|
+
none: "none";
|
|
2895
2912
|
}>;
|
|
2896
2913
|
}, z.core.$loose>;
|
|
2897
2914
|
sites: z.ZodArray<z.ZodObject<{
|
|
2898
2915
|
siteId: z.ZodString;
|
|
2899
2916
|
intId: z.ZodNullable<z.ZodNumber>;
|
|
2917
|
+
catalogSiteId: z.ZodNullable<z.ZodNumber>;
|
|
2900
2918
|
externalSiteId: z.ZodNullable<z.ZodString>;
|
|
2901
2919
|
requestedUrl: z.ZodString;
|
|
2902
2920
|
gscPropertyUrl: z.ZodNullable<z.ZodString>;
|
|
@@ -2920,14 +2938,14 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2920
2938
|
}, z.core.$loose>;
|
|
2921
2939
|
analytics: z.ZodObject<{
|
|
2922
2940
|
status: z.ZodEnum<{
|
|
2923
|
-
queued: "queued";
|
|
2924
2941
|
ready: "ready";
|
|
2925
|
-
failed: "failed";
|
|
2926
2942
|
not_registered: "not_registered";
|
|
2943
|
+
queued: "queued";
|
|
2927
2944
|
preparing: "preparing";
|
|
2928
2945
|
syncing: "syncing";
|
|
2929
2946
|
queryable_live: "queryable_live";
|
|
2930
2947
|
queryable_partial: "queryable_partial";
|
|
2948
|
+
failed: "failed";
|
|
2931
2949
|
}>;
|
|
2932
2950
|
progress: z.ZodObject<{
|
|
2933
2951
|
completed: z.ZodNumber;
|
|
@@ -2937,10 +2955,10 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2937
2955
|
}, z.core.$strip>;
|
|
2938
2956
|
queryable: z.ZodBoolean;
|
|
2939
2957
|
sourceMode: z.ZodEnum<{
|
|
2940
|
-
d1: "d1";
|
|
2941
|
-
r2: "r2";
|
|
2942
2958
|
none: "none";
|
|
2943
2959
|
live: "live";
|
|
2960
|
+
d1: "d1";
|
|
2961
|
+
r2: "r2";
|
|
2944
2962
|
mixed: "mixed";
|
|
2945
2963
|
}>;
|
|
2946
2964
|
syncedRange: z.ZodObject<{
|
|
@@ -2955,10 +2973,10 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2955
2973
|
}, z.core.$loose>;
|
|
2956
2974
|
sitemaps: z.ZodObject<{
|
|
2957
2975
|
status: z.ZodEnum<{
|
|
2958
|
-
unknown: "unknown";
|
|
2959
2976
|
ready: "ready";
|
|
2960
|
-
failed: "failed";
|
|
2961
2977
|
syncing: "syncing";
|
|
2978
|
+
failed: "failed";
|
|
2979
|
+
unknown: "unknown";
|
|
2962
2980
|
discovering: "discovering";
|
|
2963
2981
|
none_found: "none_found";
|
|
2964
2982
|
auto_submitted: "auto_submitted";
|
|
@@ -3030,9 +3048,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
3030
3048
|
siteId: z.ZodString;
|
|
3031
3049
|
siteUrl: z.ZodString;
|
|
3032
3050
|
syncStatus: z.ZodEnum<{
|
|
3051
|
+
syncing: "syncing";
|
|
3033
3052
|
pending: "pending";
|
|
3034
3053
|
error: "error";
|
|
3035
|
-
syncing: "syncing";
|
|
3036
3054
|
synced: "synced";
|
|
3037
3055
|
idle: "idle";
|
|
3038
3056
|
}>;
|
|
@@ -3051,9 +3069,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
3051
3069
|
siteId: z.ZodOptional<z.ZodString>;
|
|
3052
3070
|
intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3053
3071
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3072
|
+
syncing: "syncing";
|
|
3054
3073
|
pending: "pending";
|
|
3055
3074
|
error: "error";
|
|
3056
|
-
syncing: "syncing";
|
|
3057
3075
|
synced: "synced";
|
|
3058
3076
|
}>>>;
|
|
3059
3077
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -3094,14 +3112,16 @@ declare const partnerControlEndpointSchemas: {
|
|
|
3094
3112
|
discover: "discover";
|
|
3095
3113
|
googleNews: "googleNews";
|
|
3096
3114
|
}>>>;
|
|
3115
|
+
catalogSiteId: z.ZodOptional<z.ZodNumber>;
|
|
3097
3116
|
}, z.core.$strip>;
|
|
3098
3117
|
readonly response: z.ZodObject<{
|
|
3099
3118
|
siteId: z.ZodString;
|
|
3100
3119
|
intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3120
|
+
catalogSiteId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3101
3121
|
status: z.ZodEnum<{
|
|
3122
|
+
syncing: "syncing";
|
|
3102
3123
|
pending: "pending";
|
|
3103
3124
|
error: "error";
|
|
3104
|
-
syncing: "syncing";
|
|
3105
3125
|
synced: "synced";
|
|
3106
3126
|
idle: "idle";
|
|
3107
3127
|
}>;
|
|
@@ -3150,8 +3170,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
3150
3170
|
siteUrl: z.ZodString;
|
|
3151
3171
|
siteId: z.ZodOptional<z.ZodString>;
|
|
3152
3172
|
status: z.ZodEnum<{
|
|
3153
|
-
error: "error";
|
|
3154
3173
|
registered: "registered";
|
|
3174
|
+
error: "error";
|
|
3155
3175
|
already_exists: "already_exists";
|
|
3156
3176
|
not_found: "not_found";
|
|
3157
3177
|
}>;
|
|
@@ -4118,19 +4138,19 @@ declare const partnerEndpointSchemas: {
|
|
|
4118
4138
|
databaseReady: z.ZodBoolean;
|
|
4119
4139
|
plan: z.ZodString;
|
|
4120
4140
|
accountStatus: z.ZodEnum<{
|
|
4121
|
-
ready: "ready";
|
|
4122
|
-
reauth_required: "reauth_required";
|
|
4123
4141
|
disconnected: "disconnected";
|
|
4124
4142
|
oauth_received: "oauth_received";
|
|
4125
4143
|
scope_missing: "scope_missing";
|
|
4126
4144
|
refresh_missing: "refresh_missing";
|
|
4127
4145
|
db_provisioning: "db_provisioning";
|
|
4146
|
+
ready: "ready";
|
|
4147
|
+
reauth_required: "reauth_required";
|
|
4128
4148
|
}>;
|
|
4129
4149
|
accountNextAction: z.ZodEnum<{
|
|
4130
|
-
reconnect_google: "reconnect_google";
|
|
4131
|
-
none: "none";
|
|
4132
4150
|
connect_google: "connect_google";
|
|
4151
|
+
reconnect_google: "reconnect_google";
|
|
4133
4152
|
wait_for_provisioning: "wait_for_provisioning";
|
|
4153
|
+
none: "none";
|
|
4134
4154
|
}>;
|
|
4135
4155
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
4136
4156
|
browserAnalyzerEnabled: z.ZodBoolean;
|
|
@@ -4234,8 +4254,8 @@ declare const partnerEndpointSchemas: {
|
|
|
4234
4254
|
date: z.ZodString;
|
|
4235
4255
|
status: z.ZodEnum<{
|
|
4236
4256
|
queued: "queued";
|
|
4237
|
-
completed: "completed";
|
|
4238
4257
|
failed: "failed";
|
|
4258
|
+
completed: "completed";
|
|
4239
4259
|
processing: "processing";
|
|
4240
4260
|
}>;
|
|
4241
4261
|
}, z.core.$loose>>;
|
|
@@ -4260,8 +4280,8 @@ declare const partnerEndpointSchemas: {
|
|
|
4260
4280
|
priority: z.ZodOptional<z.ZodString>;
|
|
4261
4281
|
status: z.ZodEnum<{
|
|
4262
4282
|
queued: "queued";
|
|
4263
|
-
completed: "completed";
|
|
4264
4283
|
failed: "failed";
|
|
4284
|
+
completed: "completed";
|
|
4265
4285
|
processing: "processing";
|
|
4266
4286
|
scheduled: "scheduled";
|
|
4267
4287
|
}>;
|
|
@@ -4315,8 +4335,8 @@ declare const partnerEndpointSchemas: {
|
|
|
4315
4335
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
4316
4336
|
isNew: z.ZodOptional<z.ZodBoolean>;
|
|
4317
4337
|
status: z.ZodOptional<z.ZodEnum<{
|
|
4318
|
-
provisioning: "provisioning";
|
|
4319
4338
|
ready: "ready";
|
|
4339
|
+
provisioning: "provisioning";
|
|
4320
4340
|
}>>;
|
|
4321
4341
|
}, z.core.$loose>;
|
|
4322
4342
|
};
|
|
@@ -4336,9 +4356,9 @@ declare const partnerEndpointSchemas: {
|
|
|
4336
4356
|
siteId: z.ZodOptional<z.ZodString>;
|
|
4337
4357
|
intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4338
4358
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4359
|
+
syncing: "syncing";
|
|
4339
4360
|
pending: "pending";
|
|
4340
4361
|
error: "error";
|
|
4341
|
-
syncing: "syncing";
|
|
4342
4362
|
synced: "synced";
|
|
4343
4363
|
}>>>;
|
|
4344
4364
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -4357,9 +4377,9 @@ declare const partnerEndpointSchemas: {
|
|
|
4357
4377
|
readonly response: z.ZodObject<{
|
|
4358
4378
|
userId: z.ZodString;
|
|
4359
4379
|
status: z.ZodEnum<{
|
|
4360
|
-
provisioning: "provisioning";
|
|
4361
4380
|
ready: "ready";
|
|
4362
4381
|
reauth_required: "reauth_required";
|
|
4382
|
+
provisioning: "provisioning";
|
|
4363
4383
|
}>;
|
|
4364
4384
|
databaseReady: z.ZodOptional<z.ZodBoolean>;
|
|
4365
4385
|
needsReauth: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4378,28 +4398,30 @@ declare const partnerEndpointSchemas: {
|
|
|
4378
4398
|
contractVersion: z.ZodLiteral<"2026-05-11">;
|
|
4379
4399
|
userId: z.ZodString;
|
|
4380
4400
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
4401
|
+
currentTeamId: z.ZodNullable<z.ZodString>;
|
|
4381
4402
|
account: z.ZodObject<{
|
|
4382
4403
|
status: z.ZodEnum<{
|
|
4383
|
-
ready: "ready";
|
|
4384
|
-
reauth_required: "reauth_required";
|
|
4385
4404
|
disconnected: "disconnected";
|
|
4386
4405
|
oauth_received: "oauth_received";
|
|
4387
4406
|
scope_missing: "scope_missing";
|
|
4388
4407
|
refresh_missing: "refresh_missing";
|
|
4389
4408
|
db_provisioning: "db_provisioning";
|
|
4409
|
+
ready: "ready";
|
|
4410
|
+
reauth_required: "reauth_required";
|
|
4390
4411
|
}>;
|
|
4391
4412
|
grantedScopes: z.ZodArray<z.ZodString>;
|
|
4392
4413
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
4393
4414
|
nextAction: z.ZodEnum<{
|
|
4394
|
-
reconnect_google: "reconnect_google";
|
|
4395
|
-
none: "none";
|
|
4396
4415
|
connect_google: "connect_google";
|
|
4416
|
+
reconnect_google: "reconnect_google";
|
|
4397
4417
|
wait_for_provisioning: "wait_for_provisioning";
|
|
4418
|
+
none: "none";
|
|
4398
4419
|
}>;
|
|
4399
4420
|
}, z.core.$loose>;
|
|
4400
4421
|
sites: z.ZodArray<z.ZodObject<{
|
|
4401
4422
|
siteId: z.ZodString;
|
|
4402
4423
|
intId: z.ZodNullable<z.ZodNumber>;
|
|
4424
|
+
catalogSiteId: z.ZodNullable<z.ZodNumber>;
|
|
4403
4425
|
externalSiteId: z.ZodNullable<z.ZodString>;
|
|
4404
4426
|
requestedUrl: z.ZodString;
|
|
4405
4427
|
gscPropertyUrl: z.ZodNullable<z.ZodString>;
|
|
@@ -4423,14 +4445,14 @@ declare const partnerEndpointSchemas: {
|
|
|
4423
4445
|
}, z.core.$loose>;
|
|
4424
4446
|
analytics: z.ZodObject<{
|
|
4425
4447
|
status: z.ZodEnum<{
|
|
4426
|
-
queued: "queued";
|
|
4427
4448
|
ready: "ready";
|
|
4428
|
-
failed: "failed";
|
|
4429
4449
|
not_registered: "not_registered";
|
|
4450
|
+
queued: "queued";
|
|
4430
4451
|
preparing: "preparing";
|
|
4431
4452
|
syncing: "syncing";
|
|
4432
4453
|
queryable_live: "queryable_live";
|
|
4433
4454
|
queryable_partial: "queryable_partial";
|
|
4455
|
+
failed: "failed";
|
|
4434
4456
|
}>;
|
|
4435
4457
|
progress: z.ZodObject<{
|
|
4436
4458
|
completed: z.ZodNumber;
|
|
@@ -4440,10 +4462,10 @@ declare const partnerEndpointSchemas: {
|
|
|
4440
4462
|
}, z.core.$strip>;
|
|
4441
4463
|
queryable: z.ZodBoolean;
|
|
4442
4464
|
sourceMode: z.ZodEnum<{
|
|
4443
|
-
d1: "d1";
|
|
4444
|
-
r2: "r2";
|
|
4445
4465
|
none: "none";
|
|
4446
4466
|
live: "live";
|
|
4467
|
+
d1: "d1";
|
|
4468
|
+
r2: "r2";
|
|
4447
4469
|
mixed: "mixed";
|
|
4448
4470
|
}>;
|
|
4449
4471
|
syncedRange: z.ZodObject<{
|
|
@@ -4458,10 +4480,10 @@ declare const partnerEndpointSchemas: {
|
|
|
4458
4480
|
}, z.core.$loose>;
|
|
4459
4481
|
sitemaps: z.ZodObject<{
|
|
4460
4482
|
status: z.ZodEnum<{
|
|
4461
|
-
unknown: "unknown";
|
|
4462
4483
|
ready: "ready";
|
|
4463
|
-
failed: "failed";
|
|
4464
4484
|
syncing: "syncing";
|
|
4485
|
+
failed: "failed";
|
|
4486
|
+
unknown: "unknown";
|
|
4465
4487
|
discovering: "discovering";
|
|
4466
4488
|
none_found: "none_found";
|
|
4467
4489
|
auto_submitted: "auto_submitted";
|
|
@@ -4533,9 +4555,9 @@ declare const partnerEndpointSchemas: {
|
|
|
4533
4555
|
siteId: z.ZodString;
|
|
4534
4556
|
siteUrl: z.ZodString;
|
|
4535
4557
|
syncStatus: z.ZodEnum<{
|
|
4558
|
+
syncing: "syncing";
|
|
4536
4559
|
pending: "pending";
|
|
4537
4560
|
error: "error";
|
|
4538
|
-
syncing: "syncing";
|
|
4539
4561
|
synced: "synced";
|
|
4540
4562
|
idle: "idle";
|
|
4541
4563
|
}>;
|
|
@@ -4554,9 +4576,9 @@ declare const partnerEndpointSchemas: {
|
|
|
4554
4576
|
siteId: z.ZodOptional<z.ZodString>;
|
|
4555
4577
|
intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4556
4578
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4579
|
+
syncing: "syncing";
|
|
4557
4580
|
pending: "pending";
|
|
4558
4581
|
error: "error";
|
|
4559
|
-
syncing: "syncing";
|
|
4560
4582
|
synced: "synced";
|
|
4561
4583
|
}>>>;
|
|
4562
4584
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -4597,14 +4619,16 @@ declare const partnerEndpointSchemas: {
|
|
|
4597
4619
|
discover: "discover";
|
|
4598
4620
|
googleNews: "googleNews";
|
|
4599
4621
|
}>>>;
|
|
4622
|
+
catalogSiteId: z.ZodOptional<z.ZodNumber>;
|
|
4600
4623
|
}, z.core.$strip>;
|
|
4601
4624
|
readonly response: z.ZodObject<{
|
|
4602
4625
|
siteId: z.ZodString;
|
|
4603
4626
|
intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4627
|
+
catalogSiteId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4604
4628
|
status: z.ZodEnum<{
|
|
4629
|
+
syncing: "syncing";
|
|
4605
4630
|
pending: "pending";
|
|
4606
4631
|
error: "error";
|
|
4607
|
-
syncing: "syncing";
|
|
4608
4632
|
synced: "synced";
|
|
4609
4633
|
idle: "idle";
|
|
4610
4634
|
}>;
|
|
@@ -4653,8 +4677,8 @@ declare const partnerEndpointSchemas: {
|
|
|
4653
4677
|
siteUrl: z.ZodString;
|
|
4654
4678
|
siteId: z.ZodOptional<z.ZodString>;
|
|
4655
4679
|
status: z.ZodEnum<{
|
|
4656
|
-
error: "error";
|
|
4657
4680
|
registered: "registered";
|
|
4681
|
+
error: "error";
|
|
4658
4682
|
already_exists: "already_exists";
|
|
4659
4683
|
not_found: "not_found";
|
|
4660
4684
|
}>;
|
|
@@ -6030,4 +6054,4 @@ declare const partnerEndpointSchemas: {
|
|
|
6030
6054
|
}, z.core.$loose>;
|
|
6031
6055
|
};
|
|
6032
6056
|
};
|
|
6033
|
-
export { 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, indexingDiagnosticsParamsSchema, 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 };
|
|
6057
|
+
export { 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, indexingDiagnosticsParamsSchema, 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, teamCatalogRefSchema, updatePartnerUserTokensSchema, webhookEventTypeSchema, whoamiResponseSchema };
|
package/dist/_chunks/schemas.mjs
CHANGED
|
@@ -595,6 +595,7 @@ const partnerLifecycleAccountSchema = z.object({
|
|
|
595
595
|
const partnerLifecycleSiteSchema = z.object({
|
|
596
596
|
siteId: z.string(),
|
|
597
597
|
intId: z.number().nullable(),
|
|
598
|
+
catalogSiteId: z.number().nullable(),
|
|
598
599
|
externalSiteId: z.string().nullable(),
|
|
599
600
|
requestedUrl: z.string(),
|
|
600
601
|
gscPropertyUrl: z.string().nullable(),
|
|
@@ -634,6 +635,7 @@ const partnerLifecycleResponseSchema = z.object({
|
|
|
634
635
|
contractVersion: z.literal(GSCDUMP_ONBOARDING_CONTRACT_VERSION),
|
|
635
636
|
userId: z.string(),
|
|
636
637
|
partnerId: z.string().nullable(),
|
|
638
|
+
currentTeamId: z.string().nullable(),
|
|
637
639
|
account: partnerLifecycleAccountSchema,
|
|
638
640
|
sites: z.array(partnerLifecycleSiteSchema)
|
|
639
641
|
}).loose();
|
|
@@ -676,6 +678,7 @@ const gscdumpUserSiteSchema = z.object({
|
|
|
676
678
|
const gscdumpSiteRegistrationSchema = z.object({
|
|
677
679
|
siteId: z.string(),
|
|
678
680
|
intId: z.number().nullable().optional(),
|
|
681
|
+
catalogSiteId: z.number().nullable().optional(),
|
|
679
682
|
status: z.enum([
|
|
680
683
|
"idle",
|
|
681
684
|
"pending",
|
|
@@ -700,7 +703,8 @@ const registerPartnerSiteSchema = z.object({
|
|
|
700
703
|
webhookUrl: z.url().optional(),
|
|
701
704
|
webhookEvents: z.array(z.enum(CANONICAL_WEBHOOK_EVENTS)).optional(),
|
|
702
705
|
teamId: z.string().optional(),
|
|
703
|
-
enabledSearchTypes: z.array(searchTypeSchema).optional()
|
|
706
|
+
enabledSearchTypes: z.array(searchTypeSchema).optional(),
|
|
707
|
+
catalogSiteId: z.number().int().positive().optional()
|
|
704
708
|
});
|
|
705
709
|
const bulkRegisterPartnerSitesSchema = z.object({
|
|
706
710
|
userId: z.string().optional(),
|
|
@@ -740,6 +744,17 @@ const bulkRegisterPartnerSitesResponseSchema = z.object({
|
|
|
740
744
|
errors: z.number()
|
|
741
745
|
})
|
|
742
746
|
}).loose();
|
|
747
|
+
const teamCatalogRefSchema = z.object({
|
|
748
|
+
teamId: z.string(),
|
|
749
|
+
catalogUri: z.string().nullable(),
|
|
750
|
+
warehouse: z.string().nullable(),
|
|
751
|
+
bucket: z.string().nullable(),
|
|
752
|
+
namespace: z.string().nullable(),
|
|
753
|
+
provisioningState: z.string().nullable(),
|
|
754
|
+
keyEncoding: z.string().nullable(),
|
|
755
|
+
catalogTablesReady: z.boolean(),
|
|
756
|
+
readsEnabled: z.boolean()
|
|
757
|
+
}).loose();
|
|
743
758
|
const dataQueryOptionsSchema = z.object({
|
|
744
759
|
comparison: builderStateSchema.optional(),
|
|
745
760
|
filter: gscComparisonFilterSchema.optional(),
|
|
@@ -1610,4 +1625,4 @@ const partnerEndpointSchemas = {
|
|
|
1610
1625
|
...analyticsEndpointSchemas,
|
|
1611
1626
|
...partnerControlEndpointSchemas
|
|
1612
1627
|
};
|
|
1613
|
-
export { CANONICAL_WEBHOOK_EVENTS, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, VALID_WEBHOOK_EVENTS, WEBHOOK_CONTRACT_VERSION, WEBHOOK_CONTRACT_VERSION_HEADER, WEBHOOK_DELIVERY_HEADER, WEBHOOK_EVENT_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, 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, indexingDiagnosticsParamsSchema, 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 };
|
|
1628
|
+
export { CANONICAL_WEBHOOK_EVENTS, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, VALID_WEBHOOK_EVENTS, WEBHOOK_CONTRACT_VERSION, WEBHOOK_CONTRACT_VERSION_HEADER, WEBHOOK_DELIVERY_HEADER, WEBHOOK_EVENT_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, 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, indexingDiagnosticsParamsSchema, 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, teamCatalogRefSchema, updatePartnerUserTokensSchema, webhookEventTypeSchema, whoamiResponseSchema };
|
package/dist/_chunks/types.d.mts
CHANGED
|
@@ -81,8 +81,11 @@ interface ResolvedTable {
|
|
|
81
81
|
interface ServerTailDirective {
|
|
82
82
|
/**
|
|
83
83
|
* `'r2-sql'` — server runs the query via R2 SQL over the Iceberg table.
|
|
84
|
-
* `'duckdb'` — server runs DuckDB-over-Iceberg-files (
|
|
85
|
-
*
|
|
84
|
+
* `'duckdb'` — server runs DuckDB-over-Iceberg-files (caller-supplied SQL,
|
|
85
|
+
* or a query R2 SQL still can't run — see `dispatcher.ts` for the current
|
|
86
|
+
* escalation rules, re-verified against real R2 SQL 2026-07-03; R2 SQL now
|
|
87
|
+
* supports window functions, `COUNT(DISTINCT)`, JOINs and CTEs, so the split
|
|
88
|
+
* is no longer a fixed "window functions → duckdb" rule).
|
|
86
89
|
*/
|
|
87
90
|
engine: 'r2-sql' | 'duckdb';
|
|
88
91
|
/** Endpoint the consumer POSTs the archetype query to. */
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
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, indexingDiagnosticsParamsSchema, 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";
|
|
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, indexingDiagnosticsParamsSchema, 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, teamCatalogRefSchema, updatePartnerUserTokensSchema, webhookEventTypeSchema, whoamiResponseSchema } from "./_chunks/schemas.mjs";
|
|
2
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, FileResolutionRequest, FileResolutionResponse, FileResolutionTable, 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, IndexingDiagnosticsParams, 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, ResolvedParquetFile, ResolvedTable, RollupEnvelope, Row, ScheduleState, SearchAppearanceResponse, SearchAppearanceRow, SearchTypeOptions, ServerTailDirective, 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
|
-
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 IndexingDiagnosticsParams, 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, indexingDiagnosticsParamsSchema, 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 };
|
|
5
|
+
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 IndexingDiagnosticsParams, 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, indexingDiagnosticsParamsSchema, 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, teamCatalogRefSchema, updatePartnerUserTokensSchema, webhookEventTypeSchema, whoamiResponseSchema };
|
package/dist/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { ARCHETYPE_EXECUTION_CLASS } from "./archetypes.mjs";
|
|
2
|
-
import { CANONICAL_WEBHOOK_EVENTS, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, VALID_WEBHOOK_EVENTS, WEBHOOK_CONTRACT_VERSION, WEBHOOK_CONTRACT_VERSION_HEADER, WEBHOOK_DELIVERY_HEADER, WEBHOOK_EVENT_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, 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, indexingDiagnosticsParamsSchema, 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 } from "./_chunks/schemas.mjs";
|
|
3
|
-
export { ARCHETYPE_EXECUTION_CLASS, CANONICAL_WEBHOOK_EVENTS, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, VALID_WEBHOOK_EVENTS, WEBHOOK_CONTRACT_VERSION, WEBHOOK_CONTRACT_VERSION_HEADER, WEBHOOK_DELIVERY_HEADER, WEBHOOK_EVENT_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, 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, indexingDiagnosticsParamsSchema, 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 };
|
|
2
|
+
import { CANONICAL_WEBHOOK_EVENTS, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, VALID_WEBHOOK_EVENTS, WEBHOOK_CONTRACT_VERSION, WEBHOOK_CONTRACT_VERSION_HEADER, WEBHOOK_DELIVERY_HEADER, WEBHOOK_EVENT_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, 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, indexingDiagnosticsParamsSchema, 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, teamCatalogRefSchema, updatePartnerUserTokensSchema, webhookEventTypeSchema, whoamiResponseSchema } from "./_chunks/schemas.mjs";
|
|
3
|
+
export { ARCHETYPE_EXECUTION_CLASS, CANONICAL_WEBHOOK_EVENTS, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, VALID_WEBHOOK_EVENTS, WEBHOOK_CONTRACT_VERSION, WEBHOOK_CONTRACT_VERSION_HEADER, WEBHOOK_DELIVERY_HEADER, WEBHOOK_EVENT_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, 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, indexingDiagnosticsParamsSchema, 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, teamCatalogRefSchema, updatePartnerUserTokensSchema, webhookEventTypeSchema, whoamiResponseSchema };
|