@gscdump/contracts 0.33.9 → 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.
@@ -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,25 +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
+ intId: z.ZodNullable<z.ZodNumber>;
821
+ catalogSiteId: z.ZodNullable<z.ZodNumber>;
820
822
  externalSiteId: z.ZodNullable<z.ZodString>;
821
823
  requestedUrl: z.ZodString;
822
824
  gscPropertyUrl: z.ZodNullable<z.ZodString>;
@@ -840,14 +842,14 @@ declare const partnerLifecycleSiteSchema: z.ZodObject<{
840
842
  }, z.core.$loose>;
841
843
  analytics: z.ZodObject<{
842
844
  status: z.ZodEnum<{
843
- queued: "queued";
844
845
  ready: "ready";
845
- failed: "failed";
846
846
  not_registered: "not_registered";
847
+ queued: "queued";
847
848
  preparing: "preparing";
848
849
  syncing: "syncing";
849
850
  queryable_live: "queryable_live";
850
851
  queryable_partial: "queryable_partial";
852
+ failed: "failed";
851
853
  }>;
852
854
  progress: z.ZodObject<{
853
855
  completed: z.ZodNumber;
@@ -857,10 +859,10 @@ declare const partnerLifecycleSiteSchema: z.ZodObject<{
857
859
  }, z.core.$strip>;
858
860
  queryable: z.ZodBoolean;
859
861
  sourceMode: z.ZodEnum<{
860
- d1: "d1";
861
- r2: "r2";
862
862
  none: "none";
863
863
  live: "live";
864
+ d1: "d1";
865
+ r2: "r2";
864
866
  mixed: "mixed";
865
867
  }>;
866
868
  syncedRange: z.ZodObject<{
@@ -875,10 +877,10 @@ declare const partnerLifecycleSiteSchema: z.ZodObject<{
875
877
  }, z.core.$loose>;
876
878
  sitemaps: z.ZodObject<{
877
879
  status: z.ZodEnum<{
878
- unknown: "unknown";
879
880
  ready: "ready";
880
- failed: "failed";
881
881
  syncing: "syncing";
882
+ failed: "failed";
883
+ unknown: "unknown";
882
884
  discovering: "discovering";
883
885
  none_found: "none_found";
884
886
  auto_submitted: "auto_submitted";
@@ -946,27 +948,30 @@ declare const partnerLifecycleResponseSchema: z.ZodObject<{
946
948
  contractVersion: z.ZodLiteral<"2026-05-11">;
947
949
  userId: z.ZodString;
948
950
  partnerId: z.ZodNullable<z.ZodString>;
951
+ currentTeamId: z.ZodNullable<z.ZodString>;
949
952
  account: z.ZodObject<{
950
953
  status: z.ZodEnum<{
951
- ready: "ready";
952
- reauth_required: "reauth_required";
953
954
  disconnected: "disconnected";
954
955
  oauth_received: "oauth_received";
955
956
  scope_missing: "scope_missing";
956
957
  refresh_missing: "refresh_missing";
957
958
  db_provisioning: "db_provisioning";
959
+ ready: "ready";
960
+ reauth_required: "reauth_required";
958
961
  }>;
959
962
  grantedScopes: z.ZodArray<z.ZodString>;
960
963
  missingScopes: z.ZodArray<z.ZodString>;
961
964
  nextAction: z.ZodEnum<{
962
- reconnect_google: "reconnect_google";
963
- none: "none";
964
965
  connect_google: "connect_google";
966
+ reconnect_google: "reconnect_google";
965
967
  wait_for_provisioning: "wait_for_provisioning";
968
+ none: "none";
966
969
  }>;
967
970
  }, z.core.$loose>;
968
971
  sites: z.ZodArray<z.ZodObject<{
969
972
  siteId: z.ZodString;
973
+ intId: z.ZodNullable<z.ZodNumber>;
974
+ catalogSiteId: z.ZodNullable<z.ZodNumber>;
970
975
  externalSiteId: z.ZodNullable<z.ZodString>;
971
976
  requestedUrl: z.ZodString;
972
977
  gscPropertyUrl: z.ZodNullable<z.ZodString>;
@@ -990,14 +995,14 @@ declare const partnerLifecycleResponseSchema: z.ZodObject<{
990
995
  }, z.core.$loose>;
991
996
  analytics: z.ZodObject<{
992
997
  status: z.ZodEnum<{
993
- queued: "queued";
994
998
  ready: "ready";
995
- failed: "failed";
996
999
  not_registered: "not_registered";
1000
+ queued: "queued";
997
1001
  preparing: "preparing";
998
1002
  syncing: "syncing";
999
1003
  queryable_live: "queryable_live";
1000
1004
  queryable_partial: "queryable_partial";
1005
+ failed: "failed";
1001
1006
  }>;
1002
1007
  progress: z.ZodObject<{
1003
1008
  completed: z.ZodNumber;
@@ -1007,10 +1012,10 @@ declare const partnerLifecycleResponseSchema: z.ZodObject<{
1007
1012
  }, z.core.$strip>;
1008
1013
  queryable: z.ZodBoolean;
1009
1014
  sourceMode: z.ZodEnum<{
1010
- d1: "d1";
1011
- r2: "r2";
1012
1015
  none: "none";
1013
1016
  live: "live";
1017
+ d1: "d1";
1018
+ r2: "r2";
1014
1019
  mixed: "mixed";
1015
1020
  }>;
1016
1021
  syncedRange: z.ZodObject<{
@@ -1025,10 +1030,10 @@ declare const partnerLifecycleResponseSchema: z.ZodObject<{
1025
1030
  }, z.core.$loose>;
1026
1031
  sitemaps: z.ZodObject<{
1027
1032
  status: z.ZodEnum<{
1028
- unknown: "unknown";
1029
1033
  ready: "ready";
1030
- failed: "failed";
1031
1034
  syncing: "syncing";
1035
+ failed: "failed";
1036
+ unknown: "unknown";
1032
1037
  discovering: "discovering";
1033
1038
  none_found: "none_found";
1034
1039
  auto_submitted: "auto_submitted";
@@ -1098,10 +1103,11 @@ declare const gscdumpAvailableSiteSchema: z.ZodObject<{
1098
1103
  permissionLevel: z.ZodString;
1099
1104
  registered: z.ZodBoolean;
1100
1105
  siteId: z.ZodOptional<z.ZodString>;
1106
+ intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1101
1107
  syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1108
+ syncing: "syncing";
1102
1109
  pending: "pending";
1103
1110
  error: "error";
1104
- syncing: "syncing";
1105
1111
  synced: "synced";
1106
1112
  }>>>;
1107
1113
  syncProgress: z.ZodOptional<z.ZodObject<{
@@ -1118,9 +1124,9 @@ declare const gscdumpUserSiteSchema: z.ZodObject<{
1118
1124
  siteId: z.ZodString;
1119
1125
  siteUrl: z.ZodString;
1120
1126
  syncStatus: z.ZodEnum<{
1127
+ syncing: "syncing";
1121
1128
  pending: "pending";
1122
1129
  error: "error";
1123
- syncing: "syncing";
1124
1130
  synced: "synced";
1125
1131
  idle: "idle";
1126
1132
  }>;
@@ -1130,10 +1136,12 @@ declare const gscdumpUserSiteSchema: z.ZodObject<{
1130
1136
  }, z.core.$loose>;
1131
1137
  declare const gscdumpSiteRegistrationSchema: z.ZodObject<{
1132
1138
  siteId: z.ZodString;
1139
+ intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1140
+ catalogSiteId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1133
1141
  status: z.ZodEnum<{
1142
+ syncing: "syncing";
1134
1143
  pending: "pending";
1135
1144
  error: "error";
1136
- syncing: "syncing";
1137
1145
  synced: "synced";
1138
1146
  idle: "idle";
1139
1147
  }>;
@@ -1172,6 +1180,7 @@ declare const registerPartnerSiteSchema: z.ZodObject<{
1172
1180
  discover: "discover";
1173
1181
  googleNews: "googleNews";
1174
1182
  }>>>;
1183
+ catalogSiteId: z.ZodOptional<z.ZodNumber>;
1175
1184
  }, z.core.$strip>;
1176
1185
  declare const bulkRegisterPartnerSitesSchema: z.ZodObject<{
1177
1186
  userId: z.ZodOptional<z.ZodString>;
@@ -1206,8 +1215,8 @@ declare const bulkRegisterPartnerSitesResponseSchema: z.ZodObject<{
1206
1215
  siteUrl: z.ZodString;
1207
1216
  siteId: z.ZodOptional<z.ZodString>;
1208
1217
  status: z.ZodEnum<{
1209
- error: "error";
1210
1218
  registered: "registered";
1219
+ error: "error";
1211
1220
  already_exists: "already_exists";
1212
1221
  not_found: "not_found";
1213
1222
  }>;
@@ -1228,6 +1237,17 @@ declare const bulkRegisterPartnerSitesResponseSchema: z.ZodObject<{
1228
1237
  errors: z.ZodNumber;
1229
1238
  }, z.core.$strip>;
1230
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>;
1231
1251
  declare const dataQueryOptionsSchema: z.ZodOptional<z.ZodObject<{
1232
1252
  comparison: z.ZodOptional<z.ZodObject<{
1233
1253
  searchType: z.ZodOptional<z.ZodEnum<{
@@ -1576,19 +1596,19 @@ declare const gscdumpUserMeResponseSchema: z.ZodObject<{
1576
1596
  databaseReady: z.ZodBoolean;
1577
1597
  plan: z.ZodString;
1578
1598
  accountStatus: z.ZodEnum<{
1579
- ready: "ready";
1580
- reauth_required: "reauth_required";
1581
1599
  disconnected: "disconnected";
1582
1600
  oauth_received: "oauth_received";
1583
1601
  scope_missing: "scope_missing";
1584
1602
  refresh_missing: "refresh_missing";
1585
1603
  db_provisioning: "db_provisioning";
1604
+ ready: "ready";
1605
+ reauth_required: "reauth_required";
1586
1606
  }>;
1587
1607
  accountNextAction: z.ZodEnum<{
1588
- reconnect_google: "reconnect_google";
1589
- none: "none";
1590
1608
  connect_google: "connect_google";
1609
+ reconnect_google: "reconnect_google";
1591
1610
  wait_for_provisioning: "wait_for_provisioning";
1611
+ none: "none";
1592
1612
  }>;
1593
1613
  missingScopes: z.ZodArray<z.ZodString>;
1594
1614
  browserAnalyzerEnabled: z.ZodBoolean;
@@ -1688,8 +1708,8 @@ declare const gscdumpSyncProgressResponseSchema: z.ZodObject<{
1688
1708
  date: z.ZodString;
1689
1709
  status: z.ZodEnum<{
1690
1710
  queued: "queued";
1691
- completed: "completed";
1692
1711
  failed: "failed";
1712
+ completed: "completed";
1693
1713
  processing: "processing";
1694
1714
  }>;
1695
1715
  }, z.core.$loose>>;
@@ -1712,8 +1732,8 @@ declare const gscdumpSyncJobsResponseSchema: z.ZodObject<{
1712
1732
  priority: z.ZodOptional<z.ZodString>;
1713
1733
  status: z.ZodEnum<{
1714
1734
  queued: "queued";
1715
- completed: "completed";
1716
1735
  failed: "failed";
1736
+ completed: "completed";
1717
1737
  processing: "processing";
1718
1738
  scheduled: "scheduled";
1719
1739
  }>;
@@ -2611,19 +2631,19 @@ declare const partnerControlEndpointSchemas: {
2611
2631
  databaseReady: z.ZodBoolean;
2612
2632
  plan: z.ZodString;
2613
2633
  accountStatus: z.ZodEnum<{
2614
- ready: "ready";
2615
- reauth_required: "reauth_required";
2616
2634
  disconnected: "disconnected";
2617
2635
  oauth_received: "oauth_received";
2618
2636
  scope_missing: "scope_missing";
2619
2637
  refresh_missing: "refresh_missing";
2620
2638
  db_provisioning: "db_provisioning";
2639
+ ready: "ready";
2640
+ reauth_required: "reauth_required";
2621
2641
  }>;
2622
2642
  accountNextAction: z.ZodEnum<{
2623
- reconnect_google: "reconnect_google";
2624
- none: "none";
2625
2643
  connect_google: "connect_google";
2644
+ reconnect_google: "reconnect_google";
2626
2645
  wait_for_provisioning: "wait_for_provisioning";
2646
+ none: "none";
2627
2647
  }>;
2628
2648
  missingScopes: z.ZodArray<z.ZodString>;
2629
2649
  browserAnalyzerEnabled: z.ZodBoolean;
@@ -2727,8 +2747,8 @@ declare const partnerControlEndpointSchemas: {
2727
2747
  date: z.ZodString;
2728
2748
  status: z.ZodEnum<{
2729
2749
  queued: "queued";
2730
- completed: "completed";
2731
2750
  failed: "failed";
2751
+ completed: "completed";
2732
2752
  processing: "processing";
2733
2753
  }>;
2734
2754
  }, z.core.$loose>>;
@@ -2753,8 +2773,8 @@ declare const partnerControlEndpointSchemas: {
2753
2773
  priority: z.ZodOptional<z.ZodString>;
2754
2774
  status: z.ZodEnum<{
2755
2775
  queued: "queued";
2756
- completed: "completed";
2757
2776
  failed: "failed";
2777
+ completed: "completed";
2758
2778
  processing: "processing";
2759
2779
  scheduled: "scheduled";
2760
2780
  }>;
@@ -2808,8 +2828,8 @@ declare const partnerControlEndpointSchemas: {
2808
2828
  apiKey: z.ZodOptional<z.ZodString>;
2809
2829
  isNew: z.ZodOptional<z.ZodBoolean>;
2810
2830
  status: z.ZodOptional<z.ZodEnum<{
2811
- provisioning: "provisioning";
2812
2831
  ready: "ready";
2832
+ provisioning: "provisioning";
2813
2833
  }>>;
2814
2834
  }, z.core.$loose>;
2815
2835
  };
@@ -2827,10 +2847,11 @@ declare const partnerControlEndpointSchemas: {
2827
2847
  permissionLevel: z.ZodString;
2828
2848
  registered: z.ZodBoolean;
2829
2849
  siteId: z.ZodOptional<z.ZodString>;
2850
+ intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2830
2851
  syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2852
+ syncing: "syncing";
2831
2853
  pending: "pending";
2832
2854
  error: "error";
2833
- syncing: "syncing";
2834
2855
  synced: "synced";
2835
2856
  }>>>;
2836
2857
  syncProgress: z.ZodOptional<z.ZodObject<{
@@ -2849,9 +2870,9 @@ declare const partnerControlEndpointSchemas: {
2849
2870
  readonly response: z.ZodObject<{
2850
2871
  userId: z.ZodString;
2851
2872
  status: z.ZodEnum<{
2852
- provisioning: "provisioning";
2853
2873
  ready: "ready";
2854
2874
  reauth_required: "reauth_required";
2875
+ provisioning: "provisioning";
2855
2876
  }>;
2856
2877
  databaseReady: z.ZodOptional<z.ZodBoolean>;
2857
2878
  needsReauth: z.ZodOptional<z.ZodBoolean>;
@@ -2870,27 +2891,30 @@ declare const partnerControlEndpointSchemas: {
2870
2891
  contractVersion: z.ZodLiteral<"2026-05-11">;
2871
2892
  userId: z.ZodString;
2872
2893
  partnerId: z.ZodNullable<z.ZodString>;
2894
+ currentTeamId: z.ZodNullable<z.ZodString>;
2873
2895
  account: z.ZodObject<{
2874
2896
  status: z.ZodEnum<{
2875
- ready: "ready";
2876
- reauth_required: "reauth_required";
2877
2897
  disconnected: "disconnected";
2878
2898
  oauth_received: "oauth_received";
2879
2899
  scope_missing: "scope_missing";
2880
2900
  refresh_missing: "refresh_missing";
2881
2901
  db_provisioning: "db_provisioning";
2902
+ ready: "ready";
2903
+ reauth_required: "reauth_required";
2882
2904
  }>;
2883
2905
  grantedScopes: z.ZodArray<z.ZodString>;
2884
2906
  missingScopes: z.ZodArray<z.ZodString>;
2885
2907
  nextAction: z.ZodEnum<{
2886
- reconnect_google: "reconnect_google";
2887
- none: "none";
2888
2908
  connect_google: "connect_google";
2909
+ reconnect_google: "reconnect_google";
2889
2910
  wait_for_provisioning: "wait_for_provisioning";
2911
+ none: "none";
2890
2912
  }>;
2891
2913
  }, z.core.$loose>;
2892
2914
  sites: z.ZodArray<z.ZodObject<{
2893
2915
  siteId: z.ZodString;
2916
+ intId: z.ZodNullable<z.ZodNumber>;
2917
+ catalogSiteId: z.ZodNullable<z.ZodNumber>;
2894
2918
  externalSiteId: z.ZodNullable<z.ZodString>;
2895
2919
  requestedUrl: z.ZodString;
2896
2920
  gscPropertyUrl: z.ZodNullable<z.ZodString>;
@@ -2914,14 +2938,14 @@ declare const partnerControlEndpointSchemas: {
2914
2938
  }, z.core.$loose>;
2915
2939
  analytics: z.ZodObject<{
2916
2940
  status: z.ZodEnum<{
2917
- queued: "queued";
2918
2941
  ready: "ready";
2919
- failed: "failed";
2920
2942
  not_registered: "not_registered";
2943
+ queued: "queued";
2921
2944
  preparing: "preparing";
2922
2945
  syncing: "syncing";
2923
2946
  queryable_live: "queryable_live";
2924
2947
  queryable_partial: "queryable_partial";
2948
+ failed: "failed";
2925
2949
  }>;
2926
2950
  progress: z.ZodObject<{
2927
2951
  completed: z.ZodNumber;
@@ -2931,10 +2955,10 @@ declare const partnerControlEndpointSchemas: {
2931
2955
  }, z.core.$strip>;
2932
2956
  queryable: z.ZodBoolean;
2933
2957
  sourceMode: z.ZodEnum<{
2934
- d1: "d1";
2935
- r2: "r2";
2936
2958
  none: "none";
2937
2959
  live: "live";
2960
+ d1: "d1";
2961
+ r2: "r2";
2938
2962
  mixed: "mixed";
2939
2963
  }>;
2940
2964
  syncedRange: z.ZodObject<{
@@ -2949,10 +2973,10 @@ declare const partnerControlEndpointSchemas: {
2949
2973
  }, z.core.$loose>;
2950
2974
  sitemaps: z.ZodObject<{
2951
2975
  status: z.ZodEnum<{
2952
- unknown: "unknown";
2953
2976
  ready: "ready";
2954
- failed: "failed";
2955
2977
  syncing: "syncing";
2978
+ failed: "failed";
2979
+ unknown: "unknown";
2956
2980
  discovering: "discovering";
2957
2981
  none_found: "none_found";
2958
2982
  auto_submitted: "auto_submitted";
@@ -3024,9 +3048,9 @@ declare const partnerControlEndpointSchemas: {
3024
3048
  siteId: z.ZodString;
3025
3049
  siteUrl: z.ZodString;
3026
3050
  syncStatus: z.ZodEnum<{
3051
+ syncing: "syncing";
3027
3052
  pending: "pending";
3028
3053
  error: "error";
3029
- syncing: "syncing";
3030
3054
  synced: "synced";
3031
3055
  idle: "idle";
3032
3056
  }>;
@@ -3043,10 +3067,11 @@ declare const partnerControlEndpointSchemas: {
3043
3067
  permissionLevel: z.ZodString;
3044
3068
  registered: z.ZodBoolean;
3045
3069
  siteId: z.ZodOptional<z.ZodString>;
3070
+ intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3046
3071
  syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
3072
+ syncing: "syncing";
3047
3073
  pending: "pending";
3048
3074
  error: "error";
3049
- syncing: "syncing";
3050
3075
  synced: "synced";
3051
3076
  }>>>;
3052
3077
  syncProgress: z.ZodOptional<z.ZodObject<{
@@ -3087,13 +3112,16 @@ declare const partnerControlEndpointSchemas: {
3087
3112
  discover: "discover";
3088
3113
  googleNews: "googleNews";
3089
3114
  }>>>;
3115
+ catalogSiteId: z.ZodOptional<z.ZodNumber>;
3090
3116
  }, z.core.$strip>;
3091
3117
  readonly response: z.ZodObject<{
3092
3118
  siteId: z.ZodString;
3119
+ intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3120
+ catalogSiteId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3093
3121
  status: z.ZodEnum<{
3122
+ syncing: "syncing";
3094
3123
  pending: "pending";
3095
3124
  error: "error";
3096
- syncing: "syncing";
3097
3125
  synced: "synced";
3098
3126
  idle: "idle";
3099
3127
  }>;
@@ -3142,8 +3170,8 @@ declare const partnerControlEndpointSchemas: {
3142
3170
  siteUrl: z.ZodString;
3143
3171
  siteId: z.ZodOptional<z.ZodString>;
3144
3172
  status: z.ZodEnum<{
3145
- error: "error";
3146
3173
  registered: "registered";
3174
+ error: "error";
3147
3175
  already_exists: "already_exists";
3148
3176
  not_found: "not_found";
3149
3177
  }>;
@@ -4110,19 +4138,19 @@ declare const partnerEndpointSchemas: {
4110
4138
  databaseReady: z.ZodBoolean;
4111
4139
  plan: z.ZodString;
4112
4140
  accountStatus: z.ZodEnum<{
4113
- ready: "ready";
4114
- reauth_required: "reauth_required";
4115
4141
  disconnected: "disconnected";
4116
4142
  oauth_received: "oauth_received";
4117
4143
  scope_missing: "scope_missing";
4118
4144
  refresh_missing: "refresh_missing";
4119
4145
  db_provisioning: "db_provisioning";
4146
+ ready: "ready";
4147
+ reauth_required: "reauth_required";
4120
4148
  }>;
4121
4149
  accountNextAction: z.ZodEnum<{
4122
- reconnect_google: "reconnect_google";
4123
- none: "none";
4124
4150
  connect_google: "connect_google";
4151
+ reconnect_google: "reconnect_google";
4125
4152
  wait_for_provisioning: "wait_for_provisioning";
4153
+ none: "none";
4126
4154
  }>;
4127
4155
  missingScopes: z.ZodArray<z.ZodString>;
4128
4156
  browserAnalyzerEnabled: z.ZodBoolean;
@@ -4226,8 +4254,8 @@ declare const partnerEndpointSchemas: {
4226
4254
  date: z.ZodString;
4227
4255
  status: z.ZodEnum<{
4228
4256
  queued: "queued";
4229
- completed: "completed";
4230
4257
  failed: "failed";
4258
+ completed: "completed";
4231
4259
  processing: "processing";
4232
4260
  }>;
4233
4261
  }, z.core.$loose>>;
@@ -4252,8 +4280,8 @@ declare const partnerEndpointSchemas: {
4252
4280
  priority: z.ZodOptional<z.ZodString>;
4253
4281
  status: z.ZodEnum<{
4254
4282
  queued: "queued";
4255
- completed: "completed";
4256
4283
  failed: "failed";
4284
+ completed: "completed";
4257
4285
  processing: "processing";
4258
4286
  scheduled: "scheduled";
4259
4287
  }>;
@@ -4307,8 +4335,8 @@ declare const partnerEndpointSchemas: {
4307
4335
  apiKey: z.ZodOptional<z.ZodString>;
4308
4336
  isNew: z.ZodOptional<z.ZodBoolean>;
4309
4337
  status: z.ZodOptional<z.ZodEnum<{
4310
- provisioning: "provisioning";
4311
4338
  ready: "ready";
4339
+ provisioning: "provisioning";
4312
4340
  }>>;
4313
4341
  }, z.core.$loose>;
4314
4342
  };
@@ -4326,10 +4354,11 @@ declare const partnerEndpointSchemas: {
4326
4354
  permissionLevel: z.ZodString;
4327
4355
  registered: z.ZodBoolean;
4328
4356
  siteId: z.ZodOptional<z.ZodString>;
4357
+ intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4329
4358
  syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
4359
+ syncing: "syncing";
4330
4360
  pending: "pending";
4331
4361
  error: "error";
4332
- syncing: "syncing";
4333
4362
  synced: "synced";
4334
4363
  }>>>;
4335
4364
  syncProgress: z.ZodOptional<z.ZodObject<{
@@ -4348,9 +4377,9 @@ declare const partnerEndpointSchemas: {
4348
4377
  readonly response: z.ZodObject<{
4349
4378
  userId: z.ZodString;
4350
4379
  status: z.ZodEnum<{
4351
- provisioning: "provisioning";
4352
4380
  ready: "ready";
4353
4381
  reauth_required: "reauth_required";
4382
+ provisioning: "provisioning";
4354
4383
  }>;
4355
4384
  databaseReady: z.ZodOptional<z.ZodBoolean>;
4356
4385
  needsReauth: z.ZodOptional<z.ZodBoolean>;
@@ -4369,27 +4398,30 @@ declare const partnerEndpointSchemas: {
4369
4398
  contractVersion: z.ZodLiteral<"2026-05-11">;
4370
4399
  userId: z.ZodString;
4371
4400
  partnerId: z.ZodNullable<z.ZodString>;
4401
+ currentTeamId: z.ZodNullable<z.ZodString>;
4372
4402
  account: z.ZodObject<{
4373
4403
  status: z.ZodEnum<{
4374
- ready: "ready";
4375
- reauth_required: "reauth_required";
4376
4404
  disconnected: "disconnected";
4377
4405
  oauth_received: "oauth_received";
4378
4406
  scope_missing: "scope_missing";
4379
4407
  refresh_missing: "refresh_missing";
4380
4408
  db_provisioning: "db_provisioning";
4409
+ ready: "ready";
4410
+ reauth_required: "reauth_required";
4381
4411
  }>;
4382
4412
  grantedScopes: z.ZodArray<z.ZodString>;
4383
4413
  missingScopes: z.ZodArray<z.ZodString>;
4384
4414
  nextAction: z.ZodEnum<{
4385
- reconnect_google: "reconnect_google";
4386
- none: "none";
4387
4415
  connect_google: "connect_google";
4416
+ reconnect_google: "reconnect_google";
4388
4417
  wait_for_provisioning: "wait_for_provisioning";
4418
+ none: "none";
4389
4419
  }>;
4390
4420
  }, z.core.$loose>;
4391
4421
  sites: z.ZodArray<z.ZodObject<{
4392
4422
  siteId: z.ZodString;
4423
+ intId: z.ZodNullable<z.ZodNumber>;
4424
+ catalogSiteId: z.ZodNullable<z.ZodNumber>;
4393
4425
  externalSiteId: z.ZodNullable<z.ZodString>;
4394
4426
  requestedUrl: z.ZodString;
4395
4427
  gscPropertyUrl: z.ZodNullable<z.ZodString>;
@@ -4413,14 +4445,14 @@ declare const partnerEndpointSchemas: {
4413
4445
  }, z.core.$loose>;
4414
4446
  analytics: z.ZodObject<{
4415
4447
  status: z.ZodEnum<{
4416
- queued: "queued";
4417
4448
  ready: "ready";
4418
- failed: "failed";
4419
4449
  not_registered: "not_registered";
4450
+ queued: "queued";
4420
4451
  preparing: "preparing";
4421
4452
  syncing: "syncing";
4422
4453
  queryable_live: "queryable_live";
4423
4454
  queryable_partial: "queryable_partial";
4455
+ failed: "failed";
4424
4456
  }>;
4425
4457
  progress: z.ZodObject<{
4426
4458
  completed: z.ZodNumber;
@@ -4430,10 +4462,10 @@ declare const partnerEndpointSchemas: {
4430
4462
  }, z.core.$strip>;
4431
4463
  queryable: z.ZodBoolean;
4432
4464
  sourceMode: z.ZodEnum<{
4433
- d1: "d1";
4434
- r2: "r2";
4435
4465
  none: "none";
4436
4466
  live: "live";
4467
+ d1: "d1";
4468
+ r2: "r2";
4437
4469
  mixed: "mixed";
4438
4470
  }>;
4439
4471
  syncedRange: z.ZodObject<{
@@ -4448,10 +4480,10 @@ declare const partnerEndpointSchemas: {
4448
4480
  }, z.core.$loose>;
4449
4481
  sitemaps: z.ZodObject<{
4450
4482
  status: z.ZodEnum<{
4451
- unknown: "unknown";
4452
4483
  ready: "ready";
4453
- failed: "failed";
4454
4484
  syncing: "syncing";
4485
+ failed: "failed";
4486
+ unknown: "unknown";
4455
4487
  discovering: "discovering";
4456
4488
  none_found: "none_found";
4457
4489
  auto_submitted: "auto_submitted";
@@ -4523,9 +4555,9 @@ declare const partnerEndpointSchemas: {
4523
4555
  siteId: z.ZodString;
4524
4556
  siteUrl: z.ZodString;
4525
4557
  syncStatus: z.ZodEnum<{
4558
+ syncing: "syncing";
4526
4559
  pending: "pending";
4527
4560
  error: "error";
4528
- syncing: "syncing";
4529
4561
  synced: "synced";
4530
4562
  idle: "idle";
4531
4563
  }>;
@@ -4542,10 +4574,11 @@ declare const partnerEndpointSchemas: {
4542
4574
  permissionLevel: z.ZodString;
4543
4575
  registered: z.ZodBoolean;
4544
4576
  siteId: z.ZodOptional<z.ZodString>;
4577
+ intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4545
4578
  syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
4579
+ syncing: "syncing";
4546
4580
  pending: "pending";
4547
4581
  error: "error";
4548
- syncing: "syncing";
4549
4582
  synced: "synced";
4550
4583
  }>>>;
4551
4584
  syncProgress: z.ZodOptional<z.ZodObject<{
@@ -4586,13 +4619,16 @@ declare const partnerEndpointSchemas: {
4586
4619
  discover: "discover";
4587
4620
  googleNews: "googleNews";
4588
4621
  }>>>;
4622
+ catalogSiteId: z.ZodOptional<z.ZodNumber>;
4589
4623
  }, z.core.$strip>;
4590
4624
  readonly response: z.ZodObject<{
4591
4625
  siteId: z.ZodString;
4626
+ intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4627
+ catalogSiteId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4592
4628
  status: z.ZodEnum<{
4629
+ syncing: "syncing";
4593
4630
  pending: "pending";
4594
4631
  error: "error";
4595
- syncing: "syncing";
4596
4632
  synced: "synced";
4597
4633
  idle: "idle";
4598
4634
  }>;
@@ -4641,8 +4677,8 @@ declare const partnerEndpointSchemas: {
4641
4677
  siteUrl: z.ZodString;
4642
4678
  siteId: z.ZodOptional<z.ZodString>;
4643
4679
  status: z.ZodEnum<{
4644
- error: "error";
4645
4680
  registered: "registered";
4681
+ error: "error";
4646
4682
  already_exists: "already_exists";
4647
4683
  not_found: "not_found";
4648
4684
  }>;
@@ -6018,4 +6054,4 @@ declare const partnerEndpointSchemas: {
6018
6054
  }, z.core.$loose>;
6019
6055
  };
6020
6056
  };
6021
- 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 };
@@ -594,6 +594,8 @@ const partnerLifecycleAccountSchema = z.object({
594
594
  }).loose();
595
595
  const partnerLifecycleSiteSchema = z.object({
596
596
  siteId: z.string(),
597
+ intId: z.number().nullable(),
598
+ catalogSiteId: z.number().nullable(),
597
599
  externalSiteId: z.string().nullable(),
598
600
  requestedUrl: z.string(),
599
601
  gscPropertyUrl: z.string().nullable(),
@@ -633,6 +635,7 @@ const partnerLifecycleResponseSchema = z.object({
633
635
  contractVersion: z.literal(GSCDUMP_ONBOARDING_CONTRACT_VERSION),
634
636
  userId: z.string(),
635
637
  partnerId: z.string().nullable(),
638
+ currentTeamId: z.string().nullable(),
636
639
  account: partnerLifecycleAccountSchema,
637
640
  sites: z.array(partnerLifecycleSiteSchema)
638
641
  }).loose();
@@ -641,6 +644,7 @@ const gscdumpAvailableSiteSchema = z.object({
641
644
  permissionLevel: z.string(),
642
645
  registered: z.boolean(),
643
646
  siteId: z.string().optional(),
647
+ intId: z.number().nullable().optional(),
644
648
  syncStatus: z.enum([
645
649
  "pending",
646
650
  "syncing",
@@ -673,6 +677,8 @@ const gscdumpUserSiteSchema = z.object({
673
677
  }).loose();
674
678
  const gscdumpSiteRegistrationSchema = z.object({
675
679
  siteId: z.string(),
680
+ intId: z.number().nullable().optional(),
681
+ catalogSiteId: z.number().nullable().optional(),
676
682
  status: z.enum([
677
683
  "idle",
678
684
  "pending",
@@ -697,7 +703,8 @@ const registerPartnerSiteSchema = z.object({
697
703
  webhookUrl: z.url().optional(),
698
704
  webhookEvents: z.array(z.enum(CANONICAL_WEBHOOK_EVENTS)).optional(),
699
705
  teamId: z.string().optional(),
700
- enabledSearchTypes: z.array(searchTypeSchema).optional()
706
+ enabledSearchTypes: z.array(searchTypeSchema).optional(),
707
+ catalogSiteId: z.number().int().positive().optional()
701
708
  });
702
709
  const bulkRegisterPartnerSitesSchema = z.object({
703
710
  userId: z.string().optional(),
@@ -737,6 +744,17 @@ const bulkRegisterPartnerSitesResponseSchema = z.object({
737
744
  errors: z.number()
738
745
  })
739
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();
740
758
  const dataQueryOptionsSchema = z.object({
741
759
  comparison: builderStateSchema.optional(),
742
760
  filter: gscComparisonFilterSchema.optional(),
@@ -1607,4 +1625,4 @@ const partnerEndpointSchemas = {
1607
1625
  ...analyticsEndpointSchemas,
1608
1626
  ...partnerControlEndpointSchemas
1609
1627
  };
1610
- 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 };
@@ -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 (window functions).
85
- * The hybrid split (POC Spike 4): 8/10 archetypes `r2-sql`, 2 `duckdb`.
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. */
@@ -168,6 +171,8 @@ interface PartnerLifecycleAccount {
168
171
  }
169
172
  interface PartnerLifecycleSite {
170
173
  siteId: string;
174
+ /** Integer alias (`user_sites.int_id`) — the int JOIN key partners denormalize into their own catalog namespaces. Nullable only for pre-0029 unbackfilled rows. */
175
+ intId: number | null;
171
176
  externalSiteId: string | null;
172
177
  requestedUrl: string;
173
178
  gscPropertyUrl: string | null;
@@ -704,6 +709,8 @@ interface GscdumpAvailableSite {
704
709
  permissionLevel: string;
705
710
  registered: boolean;
706
711
  siteId?: string;
712
+ /** Integer alias (`user_sites.int_id`) — the int JOIN key partners denormalize into their own catalog namespaces. Present on registered sites. */
713
+ intId?: number | null;
707
714
  syncStatus?: 'pending' | 'syncing' | 'synced' | 'error';
708
715
  syncProgress?: {
709
716
  completed: number;
@@ -717,6 +724,8 @@ interface GscdumpAvailableSite {
717
724
  }
718
725
  interface GscdumpSiteRegistration {
719
726
  siteId: string;
727
+ /** Integer alias (`user_sites.int_id`) — the int JOIN key partners denormalize into their own catalog namespaces. */
728
+ intId?: number | null;
720
729
  status: 'idle' | 'pending' | 'syncing' | 'synced' | 'error';
721
730
  message?: string;
722
731
  existing?: boolean;
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 };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gscdump/contracts",
3
3
  "type": "module",
4
- "version": "0.33.9",
4
+ "version": "0.34.0",
5
5
  "description": "Shared gscdump.com API, webhook, realtime, and lifecycle contracts.",
6
6
  "author": {
7
7
  "name": "Harlan Wilton",