@gscdump/contracts 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1621,8 +1621,8 @@ declare const partnerEndpoints: {
1621
1621
  limit: import("zod").ZodOptional<import("zod").ZodNumber>;
1622
1622
  offset: import("zod").ZodOptional<import("zod").ZodNumber>;
1623
1623
  status: import("zod").ZodOptional<import("zod").ZodEnum<{
1624
- indexed: "indexed";
1625
1624
  pending: "pending";
1625
+ indexed: "indexed";
1626
1626
  not_indexed: "not_indexed";
1627
1627
  }>>;
1628
1628
  issue: import("zod").ZodOptional<import("zod").ZodString>;
@@ -1644,8 +1644,8 @@ declare const indexingUrlsParamsSchema: z.ZodOptional<z.ZodObject<{
1644
1644
  limit: z.ZodOptional<z.ZodNumber>;
1645
1645
  offset: z.ZodOptional<z.ZodNumber>;
1646
1646
  status: z.ZodOptional<z.ZodEnum<{
1647
- indexed: "indexed";
1648
1647
  pending: "pending";
1648
+ indexed: "indexed";
1649
1649
  not_indexed: "not_indexed";
1650
1650
  }>>;
1651
1651
  issue: z.ZodOptional<z.ZodString>;
@@ -1881,7 +1881,7 @@ declare const gscdumpSyncProgressResponseSchema: z.ZodObject<{
1881
1881
  sites: z.ZodArray<z.ZodObject<{
1882
1882
  id: z.ZodString;
1883
1883
  userId: z.ZodNumber;
1884
- partnerId: z.ZodNullable<z.ZodNumber>;
1884
+ partnerId: z.ZodNullable<z.ZodString>;
1885
1885
  siteUrl: z.ZodString;
1886
1886
  syncStatus: z.ZodNullable<z.ZodString>;
1887
1887
  lastError: z.ZodNullable<z.ZodString>;
@@ -3250,7 +3250,7 @@ declare const partnerControlEndpointSchemas: {
3250
3250
  sites: z.ZodArray<z.ZodObject<{
3251
3251
  id: z.ZodString;
3252
3252
  userId: z.ZodNumber;
3253
- partnerId: z.ZodNullable<z.ZodNumber>;
3253
+ partnerId: z.ZodNullable<z.ZodString>;
3254
3254
  siteUrl: z.ZodString;
3255
3255
  syncStatus: z.ZodNullable<z.ZodString>;
3256
3256
  lastError: z.ZodNullable<z.ZodString>;
@@ -4288,8 +4288,8 @@ declare const partnerControlEndpointSchemas: {
4288
4288
  limit: z.ZodOptional<z.ZodNumber>;
4289
4289
  offset: z.ZodOptional<z.ZodNumber>;
4290
4290
  status: z.ZodOptional<z.ZodEnum<{
4291
- indexed: "indexed";
4292
4291
  pending: "pending";
4292
+ indexed: "indexed";
4293
4293
  not_indexed: "not_indexed";
4294
4294
  }>>;
4295
4295
  issue: z.ZodOptional<z.ZodString>;
@@ -5048,7 +5048,7 @@ declare const partnerEndpointSchemas: {
5048
5048
  sites: z.ZodArray<z.ZodObject<{
5049
5049
  id: z.ZodString;
5050
5050
  userId: z.ZodNumber;
5051
- partnerId: z.ZodNullable<z.ZodNumber>;
5051
+ partnerId: z.ZodNullable<z.ZodString>;
5052
5052
  siteUrl: z.ZodString;
5053
5053
  syncStatus: z.ZodNullable<z.ZodString>;
5054
5054
  lastError: z.ZodNullable<z.ZodString>;
@@ -6086,8 +6086,8 @@ declare const partnerEndpointSchemas: {
6086
6086
  limit: z.ZodOptional<z.ZodNumber>;
6087
6087
  offset: z.ZodOptional<z.ZodNumber>;
6088
6088
  status: z.ZodOptional<z.ZodEnum<{
6089
- indexed: "indexed";
6090
6089
  pending: "pending";
6090
+ indexed: "indexed";
6091
6091
  not_indexed: "not_indexed";
6092
6092
  }>>;
6093
6093
  issue: z.ZodOptional<z.ZodString>;
@@ -1023,7 +1023,7 @@ const gscdumpSyncProgressResponseSchema = z.object({
1023
1023
  sites: z.array(z.object({
1024
1024
  id: z.string(),
1025
1025
  userId: z.number(),
1026
- partnerId: z.number().nullable(),
1026
+ partnerId: z.string().nullable(),
1027
1027
  siteUrl: z.string(),
1028
1028
  syncStatus: z.string().nullable(),
1029
1029
  lastError: z.string().nullable(),
@@ -1441,7 +1441,7 @@ interface GscdumpSyncProgressPhaseCounts {
1441
1441
  interface GscdumpSyncProgressSite {
1442
1442
  id: string;
1443
1443
  userId: number;
1444
- partnerId: number | null;
1444
+ partnerId: string | null;
1445
1445
  siteUrl: string;
1446
1446
  syncStatus: string | null;
1447
1447
  lastError: string | null;
@@ -777,12 +777,12 @@ declare function createGscdumpV1Protocol(): {
777
777
  readonly error: z.ZodObject<{
778
778
  code: z.ZodEnum<{
779
779
  internal_error: "internal_error";
780
- rate_limited: "rate_limited";
781
780
  invalid_request: "invalid_request";
782
781
  unauthorized: "unauthorized";
783
782
  forbidden: "forbidden";
784
783
  user_not_found: "user_not_found";
785
784
  site_not_found: "site_not_found";
785
+ rate_limited: "rate_limited";
786
786
  realtime_unavailable: "realtime_unavailable";
787
787
  contract_violation: "contract_violation";
788
788
  }>;
@@ -795,12 +795,12 @@ declare function createGscdumpV1Protocol(): {
795
795
  readonly error: z.ZodObject<{
796
796
  code: z.ZodEnum<{
797
797
  internal_error: "internal_error";
798
- rate_limited: "rate_limited";
799
798
  invalid_request: "invalid_request";
800
799
  unauthorized: "unauthorized";
801
800
  forbidden: "forbidden";
802
801
  user_not_found: "user_not_found";
803
802
  site_not_found: "site_not_found";
803
+ rate_limited: "rate_limited";
804
804
  realtime_unavailable: "realtime_unavailable";
805
805
  contract_violation: "contract_violation";
806
806
  }>;
@@ -822,12 +822,12 @@ declare function createGscdumpV1Protocol(): {
822
822
  }>>;
823
823
  dimensions: z.ZodArray<z.ZodEnum<{
824
824
  date: "date";
825
- country: "country";
826
- searchAppearance: "searchAppearance";
827
825
  page: "page";
828
826
  query: "query";
829
827
  queryCanonical: "queryCanonical";
828
+ country: "country";
830
829
  device: "device";
830
+ searchAppearance: "searchAppearance";
831
831
  hour: "hour";
832
832
  }>>;
833
833
  }, z.core.$loose>;
@@ -842,12 +842,12 @@ declare function createGscdumpV1Protocol(): {
842
842
  }>>;
843
843
  dimensions: z.ZodArray<z.ZodEnum<{
844
844
  date: "date";
845
- country: "country";
846
- searchAppearance: "searchAppearance";
847
845
  page: "page";
848
846
  query: "query";
849
847
  queryCanonical: "queryCanonical";
848
+ country: "country";
850
849
  device: "device";
850
+ searchAppearance: "searchAppearance";
851
851
  hour: "hour";
852
852
  }>>;
853
853
  }, z.core.$loose>>;
@@ -979,12 +979,12 @@ declare function createGscdumpV1Protocol(): {
979
979
  }>>;
980
980
  dimensions: z.ZodArray<z.ZodEnum<{
981
981
  date: "date";
982
- country: "country";
983
- searchAppearance: "searchAppearance";
984
982
  page: "page";
985
983
  query: "query";
986
984
  queryCanonical: "queryCanonical";
985
+ country: "country";
987
986
  device: "device";
987
+ searchAppearance: "searchAppearance";
988
988
  hour: "hour";
989
989
  }>>;
990
990
  }, z.core.$loose>;
@@ -999,12 +999,12 @@ declare function createGscdumpV1Protocol(): {
999
999
  }>>;
1000
1000
  dimensions: z.ZodArray<z.ZodEnum<{
1001
1001
  date: "date";
1002
- country: "country";
1003
- searchAppearance: "searchAppearance";
1004
1002
  page: "page";
1005
1003
  query: "query";
1006
1004
  queryCanonical: "queryCanonical";
1005
+ country: "country";
1007
1006
  device: "device";
1007
+ searchAppearance: "searchAppearance";
1008
1008
  hour: "hour";
1009
1009
  }>>;
1010
1010
  }, z.core.$loose>>;
@@ -1107,12 +1107,12 @@ declare function createGscdumpV1Protocol(): {
1107
1107
  analyticsRowsRequest: z.ZodObject<{
1108
1108
  dimensions: z.ZodArray<z.ZodEnum<{
1109
1109
  date: "date";
1110
- country: "country";
1111
- searchAppearance: "searchAppearance";
1112
1110
  page: "page";
1113
1111
  query: "query";
1114
1112
  queryCanonical: "queryCanonical";
1113
+ country: "country";
1115
1114
  device: "device";
1115
+ searchAppearance: "searchAppearance";
1116
1116
  hour: "hour";
1117
1117
  }>>;
1118
1118
  metrics: z.ZodOptional<z.ZodArray<z.ZodEnum<{
@@ -1692,8 +1692,8 @@ declare function createGscdumpV1Protocol(): {
1692
1692
  limit: z.ZodOptional<z.ZodType<string | number, unknown, z.core.$ZodTypeInternals<string | number, unknown>>>;
1693
1693
  offset: z.ZodOptional<z.ZodType<string | number, unknown, z.core.$ZodTypeInternals<string | number, unknown>>>;
1694
1694
  status: z.ZodOptional<z.ZodEnum<{
1695
- indexed: "indexed";
1696
1695
  pending: "pending";
1696
+ indexed: "indexed";
1697
1697
  not_indexed: "not_indexed";
1698
1698
  }>>;
1699
1699
  issue: z.ZodOptional<z.ZodString>;
@@ -2103,7 +2103,6 @@ declare function createGscdumpV1Protocol(): {
2103
2103
  registerSiteRequest: z.ZodObject<{
2104
2104
  siteUrl: z.ZodString;
2105
2105
  gscPropertyUrl: z.ZodOptional<z.ZodString>;
2106
- catalogSiteId: z.ZodOptional<z.ZodNumber>;
2107
2106
  externalSiteId: z.ZodOptional<z.ZodString>;
2108
2107
  requestedUrl: z.ZodOptional<z.ZodString>;
2109
2108
  externalSiteUrl: z.ZodOptional<z.ZodString>;
@@ -2124,6 +2123,7 @@ declare function createGscdumpV1Protocol(): {
2124
2123
  discover: "discover";
2125
2124
  googleNews: "googleNews";
2126
2125
  }>>>;
2126
+ catalogSiteId: z.ZodOptional<z.ZodNumber>;
2127
2127
  }, z.core.$strict>;
2128
2128
  sitemapChangesQuery: z.ZodObject<{
2129
2129
  days: z.ZodOptional<z.ZodType<string | number, unknown, z.core.$ZodTypeInternals<string | number, unknown>>>;
@@ -3108,11 +3108,11 @@ declare function createGscdumpV1Protocol(): {
3108
3108
  readonly error: z.ZodObject<{
3109
3109
  code: z.ZodEnum<{
3110
3110
  internal_error: "internal_error";
3111
- rate_limited: "rate_limited";
3112
3111
  invalid_request: "invalid_request";
3113
3112
  unauthorized: "unauthorized";
3114
3113
  forbidden: "forbidden";
3115
3114
  user_not_found: "user_not_found";
3115
+ rate_limited: "rate_limited";
3116
3116
  contract_violation: "contract_violation";
3117
3117
  }>;
3118
3118
  message: z.ZodString;
@@ -3124,11 +3124,11 @@ declare function createGscdumpV1Protocol(): {
3124
3124
  readonly error: z.ZodObject<{
3125
3125
  code: z.ZodEnum<{
3126
3126
  internal_error: "internal_error";
3127
- rate_limited: "rate_limited";
3128
3127
  invalid_request: "invalid_request";
3129
3128
  unauthorized: "unauthorized";
3130
3129
  forbidden: "forbidden";
3131
3130
  user_not_found: "user_not_found";
3131
+ rate_limited: "rate_limited";
3132
3132
  contract_violation: "contract_violation";
3133
3133
  }>;
3134
3134
  message: z.ZodString;
@@ -3285,11 +3285,11 @@ declare function createGscdumpV1Protocol(): {
3285
3285
  readonly error: z.ZodObject<{
3286
3286
  code: z.ZodEnum<{
3287
3287
  internal_error: "internal_error";
3288
- rate_limited: "rate_limited";
3289
3288
  invalid_request: "invalid_request";
3290
3289
  unauthorized: "unauthorized";
3291
3290
  forbidden: "forbidden";
3292
3291
  user_not_found: "user_not_found";
3292
+ rate_limited: "rate_limited";
3293
3293
  contract_violation: "contract_violation";
3294
3294
  }>;
3295
3295
  message: z.ZodString;
@@ -3301,11 +3301,11 @@ declare function createGscdumpV1Protocol(): {
3301
3301
  readonly error: z.ZodObject<{
3302
3302
  code: z.ZodEnum<{
3303
3303
  internal_error: "internal_error";
3304
- rate_limited: "rate_limited";
3305
3304
  invalid_request: "invalid_request";
3306
3305
  unauthorized: "unauthorized";
3307
3306
  forbidden: "forbidden";
3308
3307
  user_not_found: "user_not_found";
3308
+ rate_limited: "rate_limited";
3309
3309
  contract_violation: "contract_violation";
3310
3310
  }>;
3311
3311
  message: z.ZodString;
@@ -3385,7 +3385,6 @@ declare function createGscdumpV1Protocol(): {
3385
3385
  readonly body: z.ZodObject<{
3386
3386
  siteUrl: z.ZodString;
3387
3387
  gscPropertyUrl: z.ZodOptional<z.ZodString>;
3388
- catalogSiteId: z.ZodOptional<z.ZodNumber>;
3389
3388
  externalSiteId: z.ZodOptional<z.ZodString>;
3390
3389
  requestedUrl: z.ZodOptional<z.ZodString>;
3391
3390
  externalSiteUrl: z.ZodOptional<z.ZodString>;
@@ -3406,6 +3405,7 @@ declare function createGscdumpV1Protocol(): {
3406
3405
  discover: "discover";
3407
3406
  googleNews: "googleNews";
3408
3407
  }>>>;
3408
+ catalogSiteId: z.ZodOptional<z.ZodNumber>;
3409
3409
  }, z.core.$strict>;
3410
3410
  };
3411
3411
  readonly responses: {
@@ -3730,11 +3730,11 @@ declare function createGscdumpV1Protocol(): {
3730
3730
  readonly error: z.ZodObject<{
3731
3731
  code: z.ZodEnum<{
3732
3732
  internal_error: "internal_error";
3733
- rate_limited: "rate_limited";
3734
3733
  invalid_request: "invalid_request";
3735
3734
  unauthorized: "unauthorized";
3736
3735
  forbidden: "forbidden";
3737
3736
  user_not_found: "user_not_found";
3737
+ rate_limited: "rate_limited";
3738
3738
  contract_violation: "contract_violation";
3739
3739
  }>;
3740
3740
  message: z.ZodString;
@@ -3746,11 +3746,11 @@ declare function createGscdumpV1Protocol(): {
3746
3746
  readonly error: z.ZodObject<{
3747
3747
  code: z.ZodEnum<{
3748
3748
  internal_error: "internal_error";
3749
- rate_limited: "rate_limited";
3750
3749
  invalid_request: "invalid_request";
3751
3750
  unauthorized: "unauthorized";
3752
3751
  forbidden: "forbidden";
3753
3752
  user_not_found: "user_not_found";
3753
+ rate_limited: "rate_limited";
3754
3754
  contract_violation: "contract_violation";
3755
3755
  }>;
3756
3756
  message: z.ZodString;
@@ -3872,11 +3872,11 @@ declare function createGscdumpV1Protocol(): {
3872
3872
  readonly error: z.ZodObject<{
3873
3873
  code: z.ZodEnum<{
3874
3874
  internal_error: "internal_error";
3875
- rate_limited: "rate_limited";
3876
3875
  invalid_request: "invalid_request";
3877
3876
  unauthorized: "unauthorized";
3878
3877
  forbidden: "forbidden";
3879
3878
  user_not_found: "user_not_found";
3879
+ rate_limited: "rate_limited";
3880
3880
  contract_violation: "contract_violation";
3881
3881
  }>;
3882
3882
  message: z.ZodString;
@@ -3888,11 +3888,11 @@ declare function createGscdumpV1Protocol(): {
3888
3888
  readonly error: z.ZodObject<{
3889
3889
  code: z.ZodEnum<{
3890
3890
  internal_error: "internal_error";
3891
- rate_limited: "rate_limited";
3892
3891
  invalid_request: "invalid_request";
3893
3892
  unauthorized: "unauthorized";
3894
3893
  forbidden: "forbidden";
3895
3894
  user_not_found: "user_not_found";
3895
+ rate_limited: "rate_limited";
3896
3896
  contract_violation: "contract_violation";
3897
3897
  }>;
3898
3898
  message: z.ZodString;
@@ -4044,11 +4044,11 @@ declare function createGscdumpV1Protocol(): {
4044
4044
  readonly error: z.ZodObject<{
4045
4045
  code: z.ZodEnum<{
4046
4046
  internal_error: "internal_error";
4047
- rate_limited: "rate_limited";
4048
4047
  invalid_request: "invalid_request";
4049
4048
  unauthorized: "unauthorized";
4050
4049
  forbidden: "forbidden";
4051
4050
  user_not_found: "user_not_found";
4051
+ rate_limited: "rate_limited";
4052
4052
  contract_violation: "contract_violation";
4053
4053
  }>;
4054
4054
  message: z.ZodString;
@@ -4060,11 +4060,11 @@ declare function createGscdumpV1Protocol(): {
4060
4060
  readonly error: z.ZodObject<{
4061
4061
  code: z.ZodEnum<{
4062
4062
  internal_error: "internal_error";
4063
- rate_limited: "rate_limited";
4064
4063
  invalid_request: "invalid_request";
4065
4064
  unauthorized: "unauthorized";
4066
4065
  forbidden: "forbidden";
4067
4066
  user_not_found: "user_not_found";
4067
+ rate_limited: "rate_limited";
4068
4068
  contract_violation: "contract_violation";
4069
4069
  }>;
4070
4070
  message: z.ZodString;
@@ -4306,11 +4306,11 @@ declare function createGscdumpV1Protocol(): {
4306
4306
  readonly error: z.ZodObject<{
4307
4307
  code: z.ZodEnum<{
4308
4308
  internal_error: "internal_error";
4309
- rate_limited: "rate_limited";
4310
4309
  invalid_request: "invalid_request";
4311
4310
  unauthorized: "unauthorized";
4312
4311
  forbidden: "forbidden";
4313
4312
  site_not_found: "site_not_found";
4313
+ rate_limited: "rate_limited";
4314
4314
  contract_violation: "contract_violation";
4315
4315
  }>;
4316
4316
  message: z.ZodString;
@@ -4322,11 +4322,11 @@ declare function createGscdumpV1Protocol(): {
4322
4322
  readonly error: z.ZodObject<{
4323
4323
  code: z.ZodEnum<{
4324
4324
  internal_error: "internal_error";
4325
- rate_limited: "rate_limited";
4326
4325
  invalid_request: "invalid_request";
4327
4326
  unauthorized: "unauthorized";
4328
4327
  forbidden: "forbidden";
4329
4328
  site_not_found: "site_not_found";
4329
+ rate_limited: "rate_limited";
4330
4330
  contract_violation: "contract_violation";
4331
4331
  }>;
4332
4332
  message: z.ZodString;
@@ -4433,8 +4433,8 @@ declare function createGscdumpV1Protocol(): {
4433
4433
  limit: z.ZodOptional<z.ZodType<string | number, unknown, z.core.$ZodTypeInternals<string | number, unknown>>>;
4434
4434
  offset: z.ZodOptional<z.ZodType<string | number, unknown, z.core.$ZodTypeInternals<string | number, unknown>>>;
4435
4435
  status: z.ZodOptional<z.ZodEnum<{
4436
- indexed: "indexed";
4437
4436
  pending: "pending";
4437
+ indexed: "indexed";
4438
4438
  not_indexed: "not_indexed";
4439
4439
  }>>;
4440
4440
  issue: z.ZodOptional<z.ZodString>;
@@ -4540,11 +4540,11 @@ declare function createGscdumpV1Protocol(): {
4540
4540
  readonly error: z.ZodObject<{
4541
4541
  code: z.ZodEnum<{
4542
4542
  internal_error: "internal_error";
4543
- rate_limited: "rate_limited";
4544
4543
  invalid_request: "invalid_request";
4545
4544
  unauthorized: "unauthorized";
4546
4545
  forbidden: "forbidden";
4547
4546
  site_not_found: "site_not_found";
4547
+ rate_limited: "rate_limited";
4548
4548
  contract_violation: "contract_violation";
4549
4549
  }>;
4550
4550
  message: z.ZodString;
@@ -4556,11 +4556,11 @@ declare function createGscdumpV1Protocol(): {
4556
4556
  readonly error: z.ZodObject<{
4557
4557
  code: z.ZodEnum<{
4558
4558
  internal_error: "internal_error";
4559
- rate_limited: "rate_limited";
4560
4559
  invalid_request: "invalid_request";
4561
4560
  unauthorized: "unauthorized";
4562
4561
  forbidden: "forbidden";
4563
4562
  site_not_found: "site_not_found";
4563
+ rate_limited: "rate_limited";
4564
4564
  contract_violation: "contract_violation";
4565
4565
  }>;
4566
4566
  message: z.ZodString;
@@ -4759,11 +4759,11 @@ declare function createGscdumpV1Protocol(): {
4759
4759
  readonly error: z.ZodObject<{
4760
4760
  code: z.ZodEnum<{
4761
4761
  internal_error: "internal_error";
4762
- rate_limited: "rate_limited";
4763
4762
  invalid_request: "invalid_request";
4764
4763
  unauthorized: "unauthorized";
4765
4764
  forbidden: "forbidden";
4766
4765
  site_not_found: "site_not_found";
4766
+ rate_limited: "rate_limited";
4767
4767
  contract_violation: "contract_violation";
4768
4768
  }>;
4769
4769
  message: z.ZodString;
@@ -4775,11 +4775,11 @@ declare function createGscdumpV1Protocol(): {
4775
4775
  readonly error: z.ZodObject<{
4776
4776
  code: z.ZodEnum<{
4777
4777
  internal_error: "internal_error";
4778
- rate_limited: "rate_limited";
4779
4778
  invalid_request: "invalid_request";
4780
4779
  unauthorized: "unauthorized";
4781
4780
  forbidden: "forbidden";
4782
4781
  site_not_found: "site_not_found";
4782
+ rate_limited: "rate_limited";
4783
4783
  contract_violation: "contract_violation";
4784
4784
  }>;
4785
4785
  message: z.ZodString;
@@ -4947,11 +4947,11 @@ declare function createGscdumpV1Protocol(): {
4947
4947
  readonly error: z.ZodObject<{
4948
4948
  code: z.ZodEnum<{
4949
4949
  internal_error: "internal_error";
4950
- rate_limited: "rate_limited";
4951
4950
  invalid_request: "invalid_request";
4952
4951
  unauthorized: "unauthorized";
4953
4952
  forbidden: "forbidden";
4954
4953
  site_not_found: "site_not_found";
4954
+ rate_limited: "rate_limited";
4955
4955
  contract_violation: "contract_violation";
4956
4956
  }>;
4957
4957
  message: z.ZodString;
@@ -4963,11 +4963,11 @@ declare function createGscdumpV1Protocol(): {
4963
4963
  readonly error: z.ZodObject<{
4964
4964
  code: z.ZodEnum<{
4965
4965
  internal_error: "internal_error";
4966
- rate_limited: "rate_limited";
4967
4966
  invalid_request: "invalid_request";
4968
4967
  unauthorized: "unauthorized";
4969
4968
  forbidden: "forbidden";
4970
4969
  site_not_found: "site_not_found";
4970
+ rate_limited: "rate_limited";
4971
4971
  contract_violation: "contract_violation";
4972
4972
  }>;
4973
4973
  message: z.ZodString;
@@ -5109,11 +5109,11 @@ declare function createGscdumpV1Protocol(): {
5109
5109
  readonly error: z.ZodObject<{
5110
5110
  code: z.ZodEnum<{
5111
5111
  internal_error: "internal_error";
5112
- rate_limited: "rate_limited";
5113
5112
  invalid_request: "invalid_request";
5114
5113
  unauthorized: "unauthorized";
5115
5114
  forbidden: "forbidden";
5116
5115
  site_not_found: "site_not_found";
5116
+ rate_limited: "rate_limited";
5117
5117
  contract_violation: "contract_violation";
5118
5118
  }>;
5119
5119
  message: z.ZodString;
@@ -5125,11 +5125,11 @@ declare function createGscdumpV1Protocol(): {
5125
5125
  readonly error: z.ZodObject<{
5126
5126
  code: z.ZodEnum<{
5127
5127
  internal_error: "internal_error";
5128
- rate_limited: "rate_limited";
5129
5128
  invalid_request: "invalid_request";
5130
5129
  unauthorized: "unauthorized";
5131
5130
  forbidden: "forbidden";
5132
5131
  site_not_found: "site_not_found";
5132
+ rate_limited: "rate_limited";
5133
5133
  contract_violation: "contract_violation";
5134
5134
  }>;
5135
5135
  message: z.ZodString;
@@ -5318,11 +5318,11 @@ declare function createGscdumpV1Protocol(): {
5318
5318
  readonly error: z.ZodObject<{
5319
5319
  code: z.ZodEnum<{
5320
5320
  internal_error: "internal_error";
5321
- rate_limited: "rate_limited";
5322
5321
  invalid_request: "invalid_request";
5323
5322
  unauthorized: "unauthorized";
5324
5323
  forbidden: "forbidden";
5325
5324
  site_not_found: "site_not_found";
5325
+ rate_limited: "rate_limited";
5326
5326
  contract_violation: "contract_violation";
5327
5327
  }>;
5328
5328
  message: z.ZodString;
@@ -5334,11 +5334,11 @@ declare function createGscdumpV1Protocol(): {
5334
5334
  readonly error: z.ZodObject<{
5335
5335
  code: z.ZodEnum<{
5336
5336
  internal_error: "internal_error";
5337
- rate_limited: "rate_limited";
5338
5337
  invalid_request: "invalid_request";
5339
5338
  unauthorized: "unauthorized";
5340
5339
  forbidden: "forbidden";
5341
5340
  site_not_found: "site_not_found";
5341
+ rate_limited: "rate_limited";
5342
5342
  contract_violation: "contract_violation";
5343
5343
  }>;
5344
5344
  message: z.ZodString;
@@ -5516,11 +5516,11 @@ declare function createGscdumpV1Protocol(): {
5516
5516
  readonly error: z.ZodObject<{
5517
5517
  code: z.ZodEnum<{
5518
5518
  internal_error: "internal_error";
5519
- rate_limited: "rate_limited";
5520
5519
  invalid_request: "invalid_request";
5521
5520
  unauthorized: "unauthorized";
5522
5521
  forbidden: "forbidden";
5523
5522
  site_not_found: "site_not_found";
5523
+ rate_limited: "rate_limited";
5524
5524
  contract_violation: "contract_violation";
5525
5525
  }>;
5526
5526
  message: z.ZodString;
@@ -5532,11 +5532,11 @@ declare function createGscdumpV1Protocol(): {
5532
5532
  readonly error: z.ZodObject<{
5533
5533
  code: z.ZodEnum<{
5534
5534
  internal_error: "internal_error";
5535
- rate_limited: "rate_limited";
5536
5535
  invalid_request: "invalid_request";
5537
5536
  unauthorized: "unauthorized";
5538
5537
  forbidden: "forbidden";
5539
5538
  site_not_found: "site_not_found";
5539
+ rate_limited: "rate_limited";
5540
5540
  contract_violation: "contract_violation";
5541
5541
  }>;
5542
5542
  message: z.ZodString;
@@ -5653,11 +5653,11 @@ declare function createGscdumpV1Protocol(): {
5653
5653
  readonly error: z.ZodObject<{
5654
5654
  code: z.ZodEnum<{
5655
5655
  internal_error: "internal_error";
5656
- rate_limited: "rate_limited";
5657
5656
  invalid_request: "invalid_request";
5658
5657
  unauthorized: "unauthorized";
5659
5658
  forbidden: "forbidden";
5660
5659
  site_not_found: "site_not_found";
5660
+ rate_limited: "rate_limited";
5661
5661
  contract_violation: "contract_violation";
5662
5662
  }>;
5663
5663
  message: z.ZodString;
@@ -5669,11 +5669,11 @@ declare function createGscdumpV1Protocol(): {
5669
5669
  readonly error: z.ZodObject<{
5670
5670
  code: z.ZodEnum<{
5671
5671
  internal_error: "internal_error";
5672
- rate_limited: "rate_limited";
5673
5672
  invalid_request: "invalid_request";
5674
5673
  unauthorized: "unauthorized";
5675
5674
  forbidden: "forbidden";
5676
5675
  site_not_found: "site_not_found";
5676
+ rate_limited: "rate_limited";
5677
5677
  contract_violation: "contract_violation";
5678
5678
  }>;
5679
5679
  message: z.ZodString;
@@ -5759,12 +5759,12 @@ declare function createGscdumpV1Protocol(): {
5759
5759
  readonly body: z.ZodObject<{
5760
5760
  dimensions: z.ZodArray<z.ZodEnum<{
5761
5761
  date: "date";
5762
- country: "country";
5763
- searchAppearance: "searchAppearance";
5764
5762
  page: "page";
5765
5763
  query: "query";
5766
5764
  queryCanonical: "queryCanonical";
5765
+ country: "country";
5767
5766
  device: "device";
5767
+ searchAppearance: "searchAppearance";
5768
5768
  hour: "hour";
5769
5769
  }>>;
5770
5770
  metrics: z.ZodOptional<z.ZodArray<z.ZodEnum<{
@@ -5849,11 +5849,11 @@ declare function createGscdumpV1Protocol(): {
5849
5849
  readonly error: z.ZodObject<{
5850
5850
  code: z.ZodEnum<{
5851
5851
  internal_error: "internal_error";
5852
- rate_limited: "rate_limited";
5853
5852
  invalid_request: "invalid_request";
5854
5853
  unauthorized: "unauthorized";
5855
5854
  forbidden: "forbidden";
5856
5855
  site_not_found: "site_not_found";
5856
+ rate_limited: "rate_limited";
5857
5857
  contract_violation: "contract_violation";
5858
5858
  }>;
5859
5859
  message: z.ZodString;
@@ -5865,11 +5865,11 @@ declare function createGscdumpV1Protocol(): {
5865
5865
  readonly error: z.ZodObject<{
5866
5866
  code: z.ZodEnum<{
5867
5867
  internal_error: "internal_error";
5868
- rate_limited: "rate_limited";
5869
5868
  invalid_request: "invalid_request";
5870
5869
  unauthorized: "unauthorized";
5871
5870
  forbidden: "forbidden";
5872
5871
  site_not_found: "site_not_found";
5872
+ rate_limited: "rate_limited";
5873
5873
  contract_violation: "contract_violation";
5874
5874
  }>;
5875
5875
  message: z.ZodString;
@@ -5962,12 +5962,12 @@ declare function createGscdumpV1Protocol(): {
5962
5962
  }>>;
5963
5963
  dimensions: z.ZodArray<z.ZodEnum<{
5964
5964
  date: "date";
5965
- country: "country";
5966
- searchAppearance: "searchAppearance";
5967
5965
  page: "page";
5968
5966
  query: "query";
5969
5967
  queryCanonical: "queryCanonical";
5968
+ country: "country";
5970
5969
  device: "device";
5970
+ searchAppearance: "searchAppearance";
5971
5971
  hour: "hour";
5972
5972
  }>>;
5973
5973
  }, z.core.$loose>;
@@ -5982,12 +5982,12 @@ declare function createGscdumpV1Protocol(): {
5982
5982
  }>>;
5983
5983
  dimensions: z.ZodArray<z.ZodEnum<{
5984
5984
  date: "date";
5985
- country: "country";
5986
- searchAppearance: "searchAppearance";
5987
5985
  page: "page";
5988
5986
  query: "query";
5989
5987
  queryCanonical: "queryCanonical";
5988
+ country: "country";
5990
5989
  device: "device";
5990
+ searchAppearance: "searchAppearance";
5991
5991
  hour: "hour";
5992
5992
  }>>;
5993
5993
  }, z.core.$loose>>;
@@ -6095,11 +6095,11 @@ declare function createGscdumpV1Protocol(): {
6095
6095
  readonly error: z.ZodObject<{
6096
6096
  code: z.ZodEnum<{
6097
6097
  internal_error: "internal_error";
6098
- rate_limited: "rate_limited";
6099
6098
  invalid_request: "invalid_request";
6100
6099
  unauthorized: "unauthorized";
6101
6100
  forbidden: "forbidden";
6102
6101
  site_not_found: "site_not_found";
6102
+ rate_limited: "rate_limited";
6103
6103
  contract_violation: "contract_violation";
6104
6104
  }>;
6105
6105
  message: z.ZodString;
@@ -6111,11 +6111,11 @@ declare function createGscdumpV1Protocol(): {
6111
6111
  readonly error: z.ZodObject<{
6112
6112
  code: z.ZodEnum<{
6113
6113
  internal_error: "internal_error";
6114
- rate_limited: "rate_limited";
6115
6114
  invalid_request: "invalid_request";
6116
6115
  unauthorized: "unauthorized";
6117
6116
  forbidden: "forbidden";
6118
6117
  site_not_found: "site_not_found";
6118
+ rate_limited: "rate_limited";
6119
6119
  contract_violation: "contract_violation";
6120
6120
  }>;
6121
6121
  message: z.ZodString;
@@ -6223,12 +6223,12 @@ declare function createGscdumpV1Protocol(): {
6223
6223
  }>>;
6224
6224
  dimensions: z.ZodArray<z.ZodEnum<{
6225
6225
  date: "date";
6226
- country: "country";
6227
- searchAppearance: "searchAppearance";
6228
6226
  page: "page";
6229
6227
  query: "query";
6230
6228
  queryCanonical: "queryCanonical";
6229
+ country: "country";
6231
6230
  device: "device";
6231
+ searchAppearance: "searchAppearance";
6232
6232
  hour: "hour";
6233
6233
  }>>;
6234
6234
  }, z.core.$loose>;
@@ -6243,12 +6243,12 @@ declare function createGscdumpV1Protocol(): {
6243
6243
  }>>;
6244
6244
  dimensions: z.ZodArray<z.ZodEnum<{
6245
6245
  date: "date";
6246
- country: "country";
6247
- searchAppearance: "searchAppearance";
6248
6246
  page: "page";
6249
6247
  query: "query";
6250
6248
  queryCanonical: "queryCanonical";
6249
+ country: "country";
6251
6250
  device: "device";
6251
+ searchAppearance: "searchAppearance";
6252
6252
  hour: "hour";
6253
6253
  }>>;
6254
6254
  }, z.core.$loose>>;
@@ -6376,11 +6376,11 @@ declare function createGscdumpV1Protocol(): {
6376
6376
  readonly error: z.ZodObject<{
6377
6377
  code: z.ZodEnum<{
6378
6378
  internal_error: "internal_error";
6379
- rate_limited: "rate_limited";
6380
6379
  invalid_request: "invalid_request";
6381
6380
  unauthorized: "unauthorized";
6382
6381
  forbidden: "forbidden";
6383
6382
  site_not_found: "site_not_found";
6383
+ rate_limited: "rate_limited";
6384
6384
  contract_violation: "contract_violation";
6385
6385
  }>;
6386
6386
  message: z.ZodString;
@@ -6392,11 +6392,11 @@ declare function createGscdumpV1Protocol(): {
6392
6392
  readonly error: z.ZodObject<{
6393
6393
  code: z.ZodEnum<{
6394
6394
  internal_error: "internal_error";
6395
- rate_limited: "rate_limited";
6396
6395
  invalid_request: "invalid_request";
6397
6396
  unauthorized: "unauthorized";
6398
6397
  forbidden: "forbidden";
6399
6398
  site_not_found: "site_not_found";
6399
+ rate_limited: "rate_limited";
6400
6400
  contract_violation: "contract_violation";
6401
6401
  }>;
6402
6402
  message: z.ZodString;
@@ -6525,10 +6525,10 @@ declare function createGscdumpV1Protocol(): {
6525
6525
  readonly error: z.ZodObject<{
6526
6526
  code: z.ZodEnum<{
6527
6527
  internal_error: "internal_error";
6528
- rate_limited: "rate_limited";
6529
6528
  invalid_request: "invalid_request";
6530
6529
  unauthorized: "unauthorized";
6531
6530
  forbidden: "forbidden";
6531
+ rate_limited: "rate_limited";
6532
6532
  realtime_unavailable: "realtime_unavailable";
6533
6533
  contract_violation: "contract_violation";
6534
6534
  }>;
@@ -6541,10 +6541,10 @@ declare function createGscdumpV1Protocol(): {
6541
6541
  readonly error: z.ZodObject<{
6542
6542
  code: z.ZodEnum<{
6543
6543
  internal_error: "internal_error";
6544
- rate_limited: "rate_limited";
6545
6544
  invalid_request: "invalid_request";
6546
6545
  unauthorized: "unauthorized";
6547
6546
  forbidden: "forbidden";
6547
+ rate_limited: "rate_limited";
6548
6548
  realtime_unavailable: "realtime_unavailable";
6549
6549
  contract_violation: "contract_violation";
6550
6550
  }>;
@@ -6660,10 +6660,10 @@ declare function createGscdumpV1Protocol(): {
6660
6660
  readonly error: z.ZodObject<{
6661
6661
  code: z.ZodEnum<{
6662
6662
  internal_error: "internal_error";
6663
- rate_limited: "rate_limited";
6664
6663
  invalid_request: "invalid_request";
6665
6664
  unauthorized: "unauthorized";
6666
6665
  forbidden: "forbidden";
6666
+ rate_limited: "rate_limited";
6667
6667
  realtime_unavailable: "realtime_unavailable";
6668
6668
  contract_violation: "contract_violation";
6669
6669
  }>;
@@ -6676,10 +6676,10 @@ declare function createGscdumpV1Protocol(): {
6676
6676
  readonly error: z.ZodObject<{
6677
6677
  code: z.ZodEnum<{
6678
6678
  internal_error: "internal_error";
6679
- rate_limited: "rate_limited";
6680
6679
  invalid_request: "invalid_request";
6681
6680
  unauthorized: "unauthorized";
6682
6681
  forbidden: "forbidden";
6682
+ rate_limited: "rate_limited";
6683
6683
  realtime_unavailable: "realtime_unavailable";
6684
6684
  contract_violation: "contract_violation";
6685
6685
  }>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gscdump/contracts",
3
3
  "type": "module",
4
- "version": "1.0.0",
4
+ "version": "1.0.2",
5
5
  "description": "Shared gscdump.com API, webhook, realtime, and lifecycle contracts.",
6
6
  "author": {
7
7
  "name": "Harlan Wilton",