@gscdump/contracts 3.0.0 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -1
- package/dist/analytics.d.mts +3 -3
- package/dist/archetypes.d.mts +2 -1
- package/dist/endpoints.d.mts +66 -66
- package/dist/file-resolution.d.mts +1 -1
- package/dist/index.d.mts +4 -3
- package/dist/index.mjs +2 -1
- package/dist/partner.d.mts +3 -3
- package/dist/schemas.d.mts +260 -265
- package/dist/schemas.mjs +2 -8
- package/dist/search-types.d.mts +10 -0
- package/dist/search-types.mjs +9 -0
- package/dist/types.d.mts +2 -2
- package/dist/v1/browser.d.mts +6 -6
- package/dist/v1/browser.mjs +2 -8
- package/dist/v1/http-core.d.mts +30 -3
- package/dist/v1/http-core.mjs +31 -11
- package/dist/v1/http-operation-error.d.mts +6 -0
- package/dist/v1/http-operation-error.mjs +11 -0
- package/dist/v1/http.d.mts +3 -2
- package/dist/v1/http.mjs +3 -2
- package/dist/v1/index.d.mts +3 -2
- package/dist/v1/index.mjs +3 -2
- package/dist/v1/operations.d.mts +270 -270
- package/dist/v1/operations.mjs +56 -165
- package/dist/v1/path-segment.mjs +7 -0
- package/dist/v1/paths.d.mts +19 -0
- package/dist/v1/paths.mjs +39 -0
- package/dist/v1/route-catalog.d.mts +285 -0
- package/dist/v1/route-catalog.mjs +290 -0
- package/dist/v1/route-surfaces.d.mts +3 -0
- package/dist/v1/route-surfaces.mjs +21 -0
- package/package.json +11 -1
package/dist/v1/operations.d.mts
CHANGED
|
@@ -728,12 +728,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
728
728
|
analyticsReportDetailRequest: z.ZodObject<{
|
|
729
729
|
state: z.ZodObject<{
|
|
730
730
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
731
|
+
readonly WEB: "web";
|
|
732
|
+
readonly IMAGE: "image";
|
|
733
|
+
readonly VIDEO: "video";
|
|
734
|
+
readonly NEWS: "news";
|
|
735
|
+
readonly DISCOVER: "discover";
|
|
736
|
+
readonly GOOGLE_NEWS: "googleNews";
|
|
737
737
|
}>>;
|
|
738
738
|
dimensions: z.ZodArray<z.ZodEnum<{
|
|
739
739
|
page: "page";
|
|
@@ -748,12 +748,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
748
748
|
}, z.core.$loose>;
|
|
749
749
|
comparison: z.ZodOptional<z.ZodObject<{
|
|
750
750
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
751
|
+
readonly WEB: "web";
|
|
752
|
+
readonly IMAGE: "image";
|
|
753
|
+
readonly VIDEO: "video";
|
|
754
|
+
readonly NEWS: "news";
|
|
755
|
+
readonly DISCOVER: "discover";
|
|
756
|
+
readonly GOOGLE_NEWS: "googleNews";
|
|
757
757
|
}>>;
|
|
758
758
|
dimensions: z.ZodArray<z.ZodEnum<{
|
|
759
759
|
page: "page";
|
|
@@ -885,12 +885,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
885
885
|
analyticsReportRequest: z.ZodObject<{
|
|
886
886
|
state: z.ZodObject<{
|
|
887
887
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
888
|
+
readonly WEB: "web";
|
|
889
|
+
readonly IMAGE: "image";
|
|
890
|
+
readonly VIDEO: "video";
|
|
891
|
+
readonly NEWS: "news";
|
|
892
|
+
readonly DISCOVER: "discover";
|
|
893
|
+
readonly GOOGLE_NEWS: "googleNews";
|
|
894
894
|
}>>;
|
|
895
895
|
dimensions: z.ZodArray<z.ZodEnum<{
|
|
896
896
|
page: "page";
|
|
@@ -905,12 +905,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
905
905
|
}, z.core.$loose>;
|
|
906
906
|
comparison: z.ZodOptional<z.ZodObject<{
|
|
907
907
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
908
|
+
readonly WEB: "web";
|
|
909
|
+
readonly IMAGE: "image";
|
|
910
|
+
readonly VIDEO: "video";
|
|
911
|
+
readonly NEWS: "news";
|
|
912
|
+
readonly DISCOVER: "discover";
|
|
913
|
+
readonly GOOGLE_NEWS: "googleNews";
|
|
914
914
|
}>>;
|
|
915
915
|
dimensions: z.ZodArray<z.ZodEnum<{
|
|
916
916
|
page: "page";
|
|
@@ -1065,12 +1065,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
1065
1065
|
byNewsShowcasePanel: "byNewsShowcasePanel";
|
|
1066
1066
|
}>>;
|
|
1067
1067
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1068
|
+
readonly WEB: "web";
|
|
1069
|
+
readonly IMAGE: "image";
|
|
1070
|
+
readonly VIDEO: "video";
|
|
1071
|
+
readonly NEWS: "news";
|
|
1072
|
+
readonly DISCOVER: "discover";
|
|
1073
|
+
readonly GOOGLE_NEWS: "googleNews";
|
|
1074
1074
|
}>>;
|
|
1075
1075
|
}, z.core.$strict>;
|
|
1076
1076
|
analyticsRowsResponse: CompatibleResponseSchema<z.ZodObject<{
|
|
@@ -1128,12 +1128,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
1128
1128
|
maxPosition: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
1129
1129
|
maxCtr: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
1130
1130
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1131
|
+
readonly WEB: "web";
|
|
1132
|
+
readonly IMAGE: "image";
|
|
1133
|
+
readonly VIDEO: "video";
|
|
1134
|
+
readonly NEWS: "news";
|
|
1135
|
+
readonly DISCOVER: "discover";
|
|
1136
|
+
readonly GOOGLE_NEWS: "googleNews";
|
|
1137
1137
|
}>>;
|
|
1138
1138
|
}, z.core.$strict>;
|
|
1139
1139
|
analysisBundleResponse: CompatibleResponseSchema<z.ZodObject<{
|
|
@@ -1211,12 +1211,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
1211
1211
|
maxPosition: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
1212
1212
|
maxCtr: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
1213
1213
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1214
|
+
readonly WEB: "web";
|
|
1215
|
+
readonly IMAGE: "image";
|
|
1216
|
+
readonly VIDEO: "video";
|
|
1217
|
+
readonly NEWS: "news";
|
|
1218
|
+
readonly DISCOVER: "discover";
|
|
1219
|
+
readonly GOOGLE_NEWS: "googleNews";
|
|
1220
1220
|
}>>;
|
|
1221
1221
|
}, z.core.$strict>;
|
|
1222
1222
|
analysisResponse: CompatibleResponseSchema<z.ZodObject<{
|
|
@@ -2289,12 +2289,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
2289
2289
|
"job.failed": "job.failed";
|
|
2290
2290
|
}>>>;
|
|
2291
2291
|
enabledSearchTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2292
|
+
readonly WEB: "web";
|
|
2293
|
+
readonly IMAGE: "image";
|
|
2294
|
+
readonly VIDEO: "video";
|
|
2295
|
+
readonly NEWS: "news";
|
|
2296
|
+
readonly DISCOVER: "discover";
|
|
2297
|
+
readonly GOOGLE_NEWS: "googleNews";
|
|
2298
2298
|
}>>>;
|
|
2299
2299
|
catalogSiteId: z.ZodOptional<z.ZodNumber>;
|
|
2300
2300
|
}, z.core.$strict>;
|
|
@@ -3066,9 +3066,6 @@ declare function createGscdumpV1Protocol(): {
|
|
|
3066
3066
|
surfaces: {
|
|
3067
3067
|
partner: HttpV1Surface<{
|
|
3068
3068
|
readonly getUserLifecycle: {
|
|
3069
|
-
readonly id: "partner.users.lifecycle.get";
|
|
3070
|
-
readonly method: "GET";
|
|
3071
|
-
readonly path: "/users/{userId}/lifecycle";
|
|
3072
3069
|
readonly visibility: "public";
|
|
3073
3070
|
readonly semantics: {
|
|
3074
3071
|
readonly kind: "query";
|
|
@@ -3491,11 +3488,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
3491
3488
|
};
|
|
3492
3489
|
};
|
|
3493
3490
|
};
|
|
3491
|
+
readonly id: "partner.users.lifecycle.get";
|
|
3492
|
+
readonly method: "GET";
|
|
3493
|
+
readonly path: "/users/{userId}/lifecycle";
|
|
3494
3494
|
};
|
|
3495
3495
|
readonly listAvailableSites: {
|
|
3496
|
-
readonly id: "partner.users.sites.available.list";
|
|
3497
|
-
readonly method: "GET";
|
|
3498
|
-
readonly path: "/users/{userId}/available-sites";
|
|
3499
3496
|
readonly visibility: "public";
|
|
3500
3497
|
readonly semantics: {
|
|
3501
3498
|
readonly kind: "query";
|
|
@@ -3660,11 +3657,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
3660
3657
|
};
|
|
3661
3658
|
};
|
|
3662
3659
|
};
|
|
3660
|
+
readonly id: "partner.users.sites.available.list";
|
|
3661
|
+
readonly method: "GET";
|
|
3662
|
+
readonly path: "/users/{userId}/available-sites";
|
|
3663
3663
|
};
|
|
3664
3664
|
readonly createSite: {
|
|
3665
|
-
readonly id: "partner.users.sites.create";
|
|
3666
|
-
readonly method: "POST";
|
|
3667
|
-
readonly path: "/users/{userId}/sites";
|
|
3668
3665
|
readonly visibility: "public";
|
|
3669
3666
|
readonly semantics: {
|
|
3670
3667
|
readonly kind: "mutation";
|
|
@@ -3708,12 +3705,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
3708
3705
|
"job.failed": "job.failed";
|
|
3709
3706
|
}>>>;
|
|
3710
3707
|
enabledSearchTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3711
|
-
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
|
|
3715
|
-
|
|
3716
|
-
|
|
3708
|
+
readonly WEB: "web";
|
|
3709
|
+
readonly IMAGE: "image";
|
|
3710
|
+
readonly VIDEO: "video";
|
|
3711
|
+
readonly NEWS: "news";
|
|
3712
|
+
readonly DISCOVER: "discover";
|
|
3713
|
+
readonly GOOGLE_NEWS: "googleNews";
|
|
3717
3714
|
}>>>;
|
|
3718
3715
|
catalogSiteId: z.ZodOptional<z.ZodNumber>;
|
|
3719
3716
|
}, z.core.$strict>;
|
|
@@ -4108,11 +4105,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
4108
4105
|
};
|
|
4109
4106
|
};
|
|
4110
4107
|
};
|
|
4108
|
+
readonly id: "partner.users.sites.create";
|
|
4109
|
+
readonly method: "POST";
|
|
4110
|
+
readonly path: "/users/{userId}/sites";
|
|
4111
4111
|
};
|
|
4112
4112
|
readonly createUser: {
|
|
4113
|
-
readonly id: "partner.users.create";
|
|
4114
|
-
readonly method: "POST";
|
|
4115
|
-
readonly path: "/users";
|
|
4116
4113
|
readonly visibility: "public";
|
|
4117
4114
|
readonly semantics: {
|
|
4118
4115
|
readonly kind: "mutation";
|
|
@@ -4247,11 +4244,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
4247
4244
|
};
|
|
4248
4245
|
};
|
|
4249
4246
|
};
|
|
4247
|
+
readonly id: "partner.users.create";
|
|
4248
|
+
readonly method: "POST";
|
|
4249
|
+
readonly path: "/users";
|
|
4250
4250
|
};
|
|
4251
4251
|
readonly updateUserTokens: {
|
|
4252
|
-
readonly id: "partner.users.tokens.update";
|
|
4253
|
-
readonly method: "PATCH";
|
|
4254
|
-
readonly path: "/users/{userId}/tokens";
|
|
4255
4252
|
readonly visibility: "public";
|
|
4256
4253
|
readonly semantics: {
|
|
4257
4254
|
readonly kind: "mutation";
|
|
@@ -4424,11 +4421,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
4424
4421
|
};
|
|
4425
4422
|
};
|
|
4426
4423
|
};
|
|
4424
|
+
readonly id: "partner.users.tokens.update";
|
|
4425
|
+
readonly method: "PATCH";
|
|
4426
|
+
readonly path: "/users/{userId}/tokens";
|
|
4427
4427
|
};
|
|
4428
4428
|
readonly getSiteIndexing: {
|
|
4429
|
-
readonly id: "partner.sites.indexing.get";
|
|
4430
|
-
readonly method: "GET";
|
|
4431
|
-
readonly path: "/sites/{siteId}/indexing";
|
|
4432
4429
|
readonly visibility: "public";
|
|
4433
4430
|
readonly semantics: {
|
|
4434
4431
|
readonly kind: "query";
|
|
@@ -4711,11 +4708,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
4711
4708
|
};
|
|
4712
4709
|
};
|
|
4713
4710
|
};
|
|
4711
|
+
readonly id: "partner.sites.indexing.get";
|
|
4712
|
+
readonly method: "GET";
|
|
4713
|
+
readonly path: "/sites/{siteId}/indexing";
|
|
4714
4714
|
};
|
|
4715
4715
|
readonly listSiteIndexingUrls: {
|
|
4716
|
-
readonly id: "partner.sites.indexing.urls.list";
|
|
4717
|
-
readonly method: "GET";
|
|
4718
|
-
readonly path: "/sites/{siteId}/indexing/urls";
|
|
4719
4716
|
readonly visibility: "public";
|
|
4720
4717
|
readonly semantics: {
|
|
4721
4718
|
readonly kind: "query";
|
|
@@ -4938,11 +4935,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
4938
4935
|
};
|
|
4939
4936
|
};
|
|
4940
4937
|
};
|
|
4938
|
+
readonly id: "partner.sites.indexing.urls.list";
|
|
4939
|
+
readonly method: "GET";
|
|
4940
|
+
readonly path: "/sites/{siteId}/indexing/urls";
|
|
4941
4941
|
};
|
|
4942
4942
|
readonly listSiteBingIndexingEvidence: {
|
|
4943
|
-
readonly id: "partner.sites.indexing.bing.evidence.list";
|
|
4944
|
-
readonly method: "GET";
|
|
4945
|
-
readonly path: "/sites/{siteId}/indexing/bing/evidence";
|
|
4946
4943
|
readonly visibility: "public";
|
|
4947
4944
|
readonly semantics: {
|
|
4948
4945
|
readonly kind: "query";
|
|
@@ -5170,11 +5167,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
5170
5167
|
};
|
|
5171
5168
|
};
|
|
5172
5169
|
};
|
|
5170
|
+
readonly id: "partner.sites.indexing.bing.evidence.list";
|
|
5171
|
+
readonly method: "GET";
|
|
5172
|
+
readonly path: "/sites/{siteId}/indexing/bing/evidence";
|
|
5173
5173
|
};
|
|
5174
5174
|
readonly listSiteIndexingTransitions: {
|
|
5175
|
-
readonly id: "partner.sites.indexing.transitions.list";
|
|
5176
|
-
readonly method: "GET";
|
|
5177
|
-
readonly path: "/sites/{siteId}/indexing/transitions";
|
|
5178
5175
|
readonly visibility: "public";
|
|
5179
5176
|
readonly semantics: {
|
|
5180
5177
|
readonly kind: "query";
|
|
@@ -5404,11 +5401,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
5404
5401
|
};
|
|
5405
5402
|
};
|
|
5406
5403
|
};
|
|
5404
|
+
readonly id: "partner.sites.indexing.transitions.list";
|
|
5405
|
+
readonly method: "GET";
|
|
5406
|
+
readonly path: "/sites/{siteId}/indexing/transitions";
|
|
5407
5407
|
};
|
|
5408
5408
|
readonly getSiteIndexingDiagnostics: {
|
|
5409
|
-
readonly id: "partner.sites.indexing.diagnostics.get";
|
|
5410
|
-
readonly method: "GET";
|
|
5411
|
-
readonly path: "/sites/{siteId}/indexing/diagnostics";
|
|
5412
5409
|
readonly visibility: "public";
|
|
5413
5410
|
readonly semantics: {
|
|
5414
5411
|
readonly kind: "query";
|
|
@@ -5633,11 +5630,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
5633
5630
|
};
|
|
5634
5631
|
};
|
|
5635
5632
|
};
|
|
5633
|
+
readonly id: "partner.sites.indexing.diagnostics.get";
|
|
5634
|
+
readonly method: "GET";
|
|
5635
|
+
readonly path: "/sites/{siteId}/indexing/diagnostics";
|
|
5636
5636
|
};
|
|
5637
5637
|
readonly getSiteSitemaps: {
|
|
5638
|
-
readonly id: "partner.sites.sitemaps.get";
|
|
5639
|
-
readonly method: "GET";
|
|
5640
|
-
readonly path: "/sites/{siteId}/sitemaps";
|
|
5641
5638
|
readonly visibility: "public";
|
|
5642
5639
|
readonly semantics: {
|
|
5643
5640
|
readonly kind: "query";
|
|
@@ -5866,11 +5863,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
5866
5863
|
};
|
|
5867
5864
|
};
|
|
5868
5865
|
};
|
|
5866
|
+
readonly id: "partner.sites.sitemaps.get";
|
|
5867
|
+
readonly method: "GET";
|
|
5868
|
+
readonly path: "/sites/{siteId}/sitemaps";
|
|
5869
5869
|
};
|
|
5870
5870
|
readonly getSiteSitemapChanges: {
|
|
5871
|
-
readonly id: "partner.sites.sitemaps.changes.get";
|
|
5872
|
-
readonly method: "GET";
|
|
5873
|
-
readonly path: "/sites/{siteId}/sitemaps/changes";
|
|
5874
5871
|
readonly visibility: "public";
|
|
5875
5872
|
readonly semantics: {
|
|
5876
5873
|
readonly kind: "query";
|
|
@@ -6131,11 +6128,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
6131
6128
|
};
|
|
6132
6129
|
};
|
|
6133
6130
|
};
|
|
6131
|
+
readonly id: "partner.sites.sitemaps.changes.get";
|
|
6132
|
+
readonly method: "GET";
|
|
6133
|
+
readonly path: "/sites/{siteId}/sitemaps/changes";
|
|
6134
6134
|
};
|
|
6135
6135
|
readonly getSiteAnalysis: {
|
|
6136
|
-
readonly id: "partner.sites.analysis.get";
|
|
6137
|
-
readonly method: "GET";
|
|
6138
|
-
readonly path: "/sites/{siteId}/analysis";
|
|
6139
6136
|
readonly visibility: "public";
|
|
6140
6137
|
readonly semantics: {
|
|
6141
6138
|
readonly kind: "query";
|
|
@@ -6183,12 +6180,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
6183
6180
|
maxPosition: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
6184
6181
|
maxCtr: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
6185
6182
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
6186
|
-
|
|
6187
|
-
|
|
6188
|
-
|
|
6189
|
-
|
|
6190
|
-
|
|
6191
|
-
|
|
6183
|
+
readonly WEB: "web";
|
|
6184
|
+
readonly IMAGE: "image";
|
|
6185
|
+
readonly VIDEO: "video";
|
|
6186
|
+
readonly NEWS: "news";
|
|
6187
|
+
readonly DISCOVER: "discover";
|
|
6188
|
+
readonly GOOGLE_NEWS: "googleNews";
|
|
6192
6189
|
}>>;
|
|
6193
6190
|
}, z.core.$strict>;
|
|
6194
6191
|
readonly headers: z.ZodObject<{
|
|
@@ -6343,11 +6340,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
6343
6340
|
};
|
|
6344
6341
|
};
|
|
6345
6342
|
};
|
|
6343
|
+
readonly id: "partner.sites.analysis.get";
|
|
6344
|
+
readonly method: "GET";
|
|
6345
|
+
readonly path: "/sites/{siteId}/analysis";
|
|
6346
6346
|
};
|
|
6347
6347
|
readonly getSiteAnalysisBundle: {
|
|
6348
|
-
readonly id: "partner.sites.analysis.bundle.get";
|
|
6349
|
-
readonly method: "GET";
|
|
6350
|
-
readonly path: "/sites/{siteId}/analysis/bundle";
|
|
6351
6348
|
readonly visibility: "public";
|
|
6352
6349
|
readonly semantics: {
|
|
6353
6350
|
readonly kind: "query";
|
|
@@ -6395,12 +6392,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
6395
6392
|
maxPosition: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
6396
6393
|
maxCtr: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
6397
6394
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
6398
|
-
|
|
6399
|
-
|
|
6400
|
-
|
|
6401
|
-
|
|
6402
|
-
|
|
6403
|
-
|
|
6395
|
+
readonly WEB: "web";
|
|
6396
|
+
readonly IMAGE: "image";
|
|
6397
|
+
readonly VIDEO: "video";
|
|
6398
|
+
readonly NEWS: "news";
|
|
6399
|
+
readonly DISCOVER: "discover";
|
|
6400
|
+
readonly GOOGLE_NEWS: "googleNews";
|
|
6404
6401
|
}>>;
|
|
6405
6402
|
}, z.core.$strict>;
|
|
6406
6403
|
readonly headers: z.ZodObject<{
|
|
@@ -6539,11 +6536,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
6539
6536
|
};
|
|
6540
6537
|
};
|
|
6541
6538
|
};
|
|
6539
|
+
readonly id: "partner.sites.analysis.bundle.get";
|
|
6540
|
+
readonly method: "GET";
|
|
6541
|
+
readonly path: "/sites/{siteId}/analysis/bundle";
|
|
6542
6542
|
};
|
|
6543
6543
|
readonly deleteSite: {
|
|
6544
|
-
readonly id: "partner.sites.delete";
|
|
6545
|
-
readonly method: "DELETE";
|
|
6546
|
-
readonly path: "/sites/{siteId}";
|
|
6547
6544
|
readonly visibility: "public";
|
|
6548
6545
|
readonly semantics: {
|
|
6549
6546
|
readonly kind: "mutation";
|
|
@@ -6672,11 +6669,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
6672
6669
|
};
|
|
6673
6670
|
};
|
|
6674
6671
|
};
|
|
6672
|
+
readonly id: "partner.sites.delete";
|
|
6673
|
+
readonly method: "DELETE";
|
|
6674
|
+
readonly path: "/sites/{siteId}";
|
|
6675
6675
|
};
|
|
6676
6676
|
readonly getCanonicalMismatches: {
|
|
6677
|
-
readonly id: "partner.sites.canonical.mismatches.get";
|
|
6678
|
-
readonly method: "GET";
|
|
6679
|
-
readonly path: "/sites/{siteId}/canonical-mismatches";
|
|
6680
6677
|
readonly visibility: "public";
|
|
6681
6678
|
readonly semantics: {
|
|
6682
6679
|
readonly kind: "query";
|
|
@@ -6850,11 +6847,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
6850
6847
|
};
|
|
6851
6848
|
};
|
|
6852
6849
|
};
|
|
6850
|
+
readonly id: "partner.sites.canonical.mismatches.get";
|
|
6851
|
+
readonly method: "GET";
|
|
6852
|
+
readonly path: "/sites/{siteId}/canonical-mismatches";
|
|
6853
6853
|
};
|
|
6854
6854
|
readonly inspectSiteUrls: {
|
|
6855
|
-
readonly id: "partner.sites.indexing.inspect.create";
|
|
6856
|
-
readonly method: "POST";
|
|
6857
|
-
readonly path: "/sites/{siteId}/indexing/inspect";
|
|
6858
6855
|
readonly visibility: "public";
|
|
6859
6856
|
readonly semantics: {
|
|
6860
6857
|
readonly kind: "mutation";
|
|
@@ -7073,11 +7070,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
7073
7070
|
};
|
|
7074
7071
|
};
|
|
7075
7072
|
};
|
|
7073
|
+
readonly id: "partner.sites.indexing.inspect.create";
|
|
7074
|
+
readonly method: "POST";
|
|
7075
|
+
readonly path: "/sites/{siteId}/indexing/inspect";
|
|
7076
7076
|
};
|
|
7077
7077
|
readonly recoverSitePermission: {
|
|
7078
|
-
readonly id: "partner.sites.permission.recover";
|
|
7079
|
-
readonly method: "POST";
|
|
7080
|
-
readonly path: "/sites/{siteId}/permission/recover";
|
|
7081
7078
|
readonly visibility: "public";
|
|
7082
7079
|
readonly semantics: {
|
|
7083
7080
|
readonly kind: "mutation";
|
|
@@ -7209,11 +7206,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
7209
7206
|
};
|
|
7210
7207
|
};
|
|
7211
7208
|
};
|
|
7209
|
+
readonly id: "partner.sites.permission.recover";
|
|
7210
|
+
readonly method: "POST";
|
|
7211
|
+
readonly path: "/sites/{siteId}/permission/recover";
|
|
7212
7212
|
};
|
|
7213
7213
|
readonly queryKeywordSparklines: {
|
|
7214
|
-
readonly id: "partner.sites.keyword.sparklines.query";
|
|
7215
|
-
readonly method: "POST";
|
|
7216
|
-
readonly path: "/sites/{siteId}/keyword-sparklines";
|
|
7217
7214
|
readonly visibility: "public";
|
|
7218
7215
|
readonly semantics: {
|
|
7219
7216
|
readonly kind: "query";
|
|
@@ -7246,12 +7243,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
7246
7243
|
startDate: z.ZodString;
|
|
7247
7244
|
endDate: z.ZodString;
|
|
7248
7245
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
7249
|
-
|
|
7250
|
-
|
|
7251
|
-
|
|
7252
|
-
|
|
7253
|
-
|
|
7254
|
-
|
|
7246
|
+
readonly WEB: "web";
|
|
7247
|
+
readonly IMAGE: "image";
|
|
7248
|
+
readonly VIDEO: "video";
|
|
7249
|
+
readonly NEWS: "news";
|
|
7250
|
+
readonly DISCOVER: "discover";
|
|
7251
|
+
readonly GOOGLE_NEWS: "googleNews";
|
|
7255
7252
|
}>>;
|
|
7256
7253
|
}, z.core.$strict>;
|
|
7257
7254
|
};
|
|
@@ -7349,11 +7346,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
7349
7346
|
};
|
|
7350
7347
|
};
|
|
7351
7348
|
};
|
|
7349
|
+
readonly id: "partner.sites.keyword.sparklines.query";
|
|
7350
|
+
readonly method: "POST";
|
|
7351
|
+
readonly path: "/sites/{siteId}/keyword-sparklines";
|
|
7352
7352
|
};
|
|
7353
7353
|
readonly getQueryTrend: {
|
|
7354
|
-
readonly id: "partner.sites.query.trend.get";
|
|
7355
|
-
readonly method: "GET";
|
|
7356
|
-
readonly path: "/sites/{siteId}/query-trend";
|
|
7357
7354
|
readonly visibility: "public";
|
|
7358
7355
|
readonly semantics: {
|
|
7359
7356
|
readonly kind: "query";
|
|
@@ -7381,12 +7378,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
7381
7378
|
startDate: z.ZodString;
|
|
7382
7379
|
endDate: z.ZodString;
|
|
7383
7380
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
7384
|
-
|
|
7385
|
-
|
|
7386
|
-
|
|
7387
|
-
|
|
7388
|
-
|
|
7389
|
-
|
|
7381
|
+
readonly WEB: "web";
|
|
7382
|
+
readonly IMAGE: "image";
|
|
7383
|
+
readonly VIDEO: "video";
|
|
7384
|
+
readonly NEWS: "news";
|
|
7385
|
+
readonly DISCOVER: "discover";
|
|
7386
|
+
readonly GOOGLE_NEWS: "googleNews";
|
|
7390
7387
|
}>>;
|
|
7391
7388
|
prevStartDate: z.ZodOptional<z.ZodString>;
|
|
7392
7389
|
prevEndDate: z.ZodOptional<z.ZodString>;
|
|
@@ -7510,11 +7507,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
7510
7507
|
};
|
|
7511
7508
|
};
|
|
7512
7509
|
};
|
|
7510
|
+
readonly id: "partner.sites.query.trend.get";
|
|
7511
|
+
readonly method: "GET";
|
|
7512
|
+
readonly path: "/sites/{siteId}/query-trend";
|
|
7513
7513
|
};
|
|
7514
7514
|
readonly getPageTrend: {
|
|
7515
|
-
readonly id: "partner.sites.page.trend.get";
|
|
7516
|
-
readonly method: "GET";
|
|
7517
|
-
readonly path: "/sites/{siteId}/page-trend";
|
|
7518
7515
|
readonly visibility: "public";
|
|
7519
7516
|
readonly semantics: {
|
|
7520
7517
|
readonly kind: "query";
|
|
@@ -7542,12 +7539,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
7542
7539
|
startDate: z.ZodString;
|
|
7543
7540
|
endDate: z.ZodString;
|
|
7544
7541
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
7545
|
-
|
|
7546
|
-
|
|
7547
|
-
|
|
7548
|
-
|
|
7549
|
-
|
|
7550
|
-
|
|
7542
|
+
readonly WEB: "web";
|
|
7543
|
+
readonly IMAGE: "image";
|
|
7544
|
+
readonly VIDEO: "video";
|
|
7545
|
+
readonly NEWS: "news";
|
|
7546
|
+
readonly DISCOVER: "discover";
|
|
7547
|
+
readonly GOOGLE_NEWS: "googleNews";
|
|
7551
7548
|
}>>;
|
|
7552
7549
|
prevStartDate: z.ZodOptional<z.ZodString>;
|
|
7553
7550
|
prevEndDate: z.ZodOptional<z.ZodString>;
|
|
@@ -7671,11 +7668,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
7671
7668
|
};
|
|
7672
7669
|
};
|
|
7673
7670
|
};
|
|
7671
|
+
readonly id: "partner.sites.page.trend.get";
|
|
7672
|
+
readonly method: "GET";
|
|
7673
|
+
readonly path: "/sites/{siteId}/page-trend";
|
|
7674
7674
|
};
|
|
7675
7675
|
readonly getContentVelocity: {
|
|
7676
|
-
readonly id: "partner.sites.content.velocity.get";
|
|
7677
|
-
readonly method: "GET";
|
|
7678
|
-
readonly path: "/sites/{siteId}/content-velocity";
|
|
7679
7676
|
readonly visibility: "public";
|
|
7680
7677
|
readonly semantics: {
|
|
7681
7678
|
readonly kind: "query";
|
|
@@ -7840,11 +7837,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
7840
7837
|
};
|
|
7841
7838
|
};
|
|
7842
7839
|
};
|
|
7840
|
+
readonly id: "partner.sites.content.velocity.get";
|
|
7841
|
+
readonly method: "GET";
|
|
7842
|
+
readonly path: "/sites/{siteId}/content-velocity";
|
|
7843
7843
|
};
|
|
7844
7844
|
readonly getCtrCurve: {
|
|
7845
|
-
readonly id: "partner.sites.ctr.curve.get";
|
|
7846
|
-
readonly method: "GET";
|
|
7847
|
-
readonly path: "/sites/{siteId}/ctr-curve";
|
|
7848
7845
|
readonly visibility: "public";
|
|
7849
7846
|
readonly semantics: {
|
|
7850
7847
|
readonly kind: "query";
|
|
@@ -8032,11 +8029,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
8032
8029
|
};
|
|
8033
8030
|
};
|
|
8034
8031
|
};
|
|
8032
|
+
readonly id: "partner.sites.ctr.curve.get";
|
|
8033
|
+
readonly method: "GET";
|
|
8034
|
+
readonly path: "/sites/{siteId}/ctr-curve";
|
|
8035
8035
|
};
|
|
8036
8036
|
readonly getDarkTraffic: {
|
|
8037
|
-
readonly id: "partner.sites.dark.traffic.get";
|
|
8038
|
-
readonly method: "GET";
|
|
8039
|
-
readonly path: "/sites/{siteId}/dark-traffic";
|
|
8040
8037
|
readonly visibility: "public";
|
|
8041
8038
|
readonly semantics: {
|
|
8042
8039
|
readonly kind: "query";
|
|
@@ -8210,11 +8207,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
8210
8207
|
};
|
|
8211
8208
|
};
|
|
8212
8209
|
};
|
|
8210
|
+
readonly id: "partner.sites.dark.traffic.get";
|
|
8211
|
+
readonly method: "GET";
|
|
8212
|
+
readonly path: "/sites/{siteId}/dark-traffic";
|
|
8213
8213
|
};
|
|
8214
8214
|
readonly getDeviceGap: {
|
|
8215
|
-
readonly id: "partner.sites.device.gap.get";
|
|
8216
|
-
readonly method: "GET";
|
|
8217
|
-
readonly path: "/sites/{siteId}/device-gap";
|
|
8218
8215
|
readonly visibility: "public";
|
|
8219
8216
|
readonly semantics: {
|
|
8220
8217
|
readonly kind: "query";
|
|
@@ -8415,11 +8412,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
8415
8412
|
};
|
|
8416
8413
|
};
|
|
8417
8414
|
};
|
|
8415
|
+
readonly id: "partner.sites.device.gap.get";
|
|
8416
|
+
readonly method: "GET";
|
|
8417
|
+
readonly path: "/sites/{siteId}/device-gap";
|
|
8418
8418
|
};
|
|
8419
8419
|
readonly getKeywordBreadth: {
|
|
8420
|
-
readonly id: "partner.sites.keyword.breadth.get";
|
|
8421
|
-
readonly method: "GET";
|
|
8422
|
-
readonly path: "/sites/{siteId}/keyword-breadth";
|
|
8423
8420
|
readonly visibility: "public";
|
|
8424
8421
|
readonly semantics: {
|
|
8425
8422
|
readonly kind: "query";
|
|
@@ -8605,11 +8602,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
8605
8602
|
};
|
|
8606
8603
|
};
|
|
8607
8604
|
};
|
|
8605
|
+
readonly id: "partner.sites.keyword.breadth.get";
|
|
8606
|
+
readonly method: "GET";
|
|
8607
|
+
readonly path: "/sites/{siteId}/keyword-breadth";
|
|
8608
8608
|
};
|
|
8609
8609
|
readonly getPositionDistribution: {
|
|
8610
|
-
readonly id: "partner.sites.position.distribution.get";
|
|
8611
|
-
readonly method: "GET";
|
|
8612
|
-
readonly path: "/sites/{siteId}/position-distribution";
|
|
8613
8610
|
readonly visibility: "public";
|
|
8614
8611
|
readonly semantics: {
|
|
8615
8612
|
readonly kind: "query";
|
|
@@ -8759,11 +8756,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
8759
8756
|
};
|
|
8760
8757
|
};
|
|
8761
8758
|
};
|
|
8759
|
+
readonly id: "partner.sites.position.distribution.get";
|
|
8760
|
+
readonly method: "GET";
|
|
8761
|
+
readonly path: "/sites/{siteId}/position-distribution";
|
|
8762
8762
|
};
|
|
8763
8763
|
readonly getTopAssociation: {
|
|
8764
|
-
readonly id: "partner.sites.top.association.get";
|
|
8765
|
-
readonly method: "GET";
|
|
8766
|
-
readonly path: "/sites/{siteId}/top-association";
|
|
8767
8764
|
readonly visibility: "public";
|
|
8768
8765
|
readonly semantics: {
|
|
8769
8766
|
readonly kind: "query";
|
|
@@ -8894,11 +8891,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
8894
8891
|
};
|
|
8895
8892
|
};
|
|
8896
8893
|
};
|
|
8894
|
+
readonly id: "partner.sites.top.association.get";
|
|
8895
|
+
readonly method: "GET";
|
|
8896
|
+
readonly path: "/sites/{siteId}/top-association";
|
|
8897
8897
|
};
|
|
8898
8898
|
readonly getIndexPercent: {
|
|
8899
|
-
readonly id: "partner.sites.index.percent.get";
|
|
8900
|
-
readonly method: "GET";
|
|
8901
|
-
readonly path: "/sites/{siteId}/index-percent";
|
|
8902
8899
|
readonly visibility: "public";
|
|
8903
8900
|
readonly semantics: {
|
|
8904
8901
|
readonly kind: "query";
|
|
@@ -9117,11 +9114,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
9117
9114
|
};
|
|
9118
9115
|
};
|
|
9119
9116
|
};
|
|
9117
|
+
readonly id: "partner.sites.index.percent.get";
|
|
9118
|
+
readonly method: "GET";
|
|
9119
|
+
readonly path: "/sites/{siteId}/index-percent";
|
|
9120
9120
|
};
|
|
9121
9121
|
readonly createSitemapAction: {
|
|
9122
|
-
readonly id: "partner.sites.sitemaps.action.create";
|
|
9123
|
-
readonly method: "POST";
|
|
9124
|
-
readonly path: "/sites/{siteId}/sitemaps/actions";
|
|
9125
9122
|
readonly visibility: "public";
|
|
9126
9123
|
readonly semantics: {
|
|
9127
9124
|
readonly kind: "mutation";
|
|
@@ -9291,11 +9288,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
9291
9288
|
};
|
|
9292
9289
|
};
|
|
9293
9290
|
};
|
|
9291
|
+
readonly id: "partner.sites.sitemaps.action.create";
|
|
9292
|
+
readonly method: "POST";
|
|
9293
|
+
readonly path: "/sites/{siteId}/sitemaps/actions";
|
|
9294
9294
|
};
|
|
9295
9295
|
readonly querySitemapMembership: {
|
|
9296
|
-
readonly id: "partner.sites.sitemaps.membership.query";
|
|
9297
|
-
readonly method: "POST";
|
|
9298
|
-
readonly path: "/sites/{siteId}/sitemaps/membership";
|
|
9299
9296
|
readonly visibility: "public";
|
|
9300
9297
|
readonly semantics: {
|
|
9301
9298
|
readonly kind: "query";
|
|
@@ -9514,11 +9511,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
9514
9511
|
};
|
|
9515
9512
|
};
|
|
9516
9513
|
};
|
|
9514
|
+
readonly id: "partner.sites.sitemaps.membership.query";
|
|
9515
|
+
readonly method: "POST";
|
|
9516
|
+
readonly path: "/sites/{siteId}/sitemaps/membership";
|
|
9517
9517
|
};
|
|
9518
9518
|
readonly listSitemapUrls: {
|
|
9519
|
-
readonly id: "partner.sites.sitemaps.urls.get";
|
|
9520
|
-
readonly method: "GET";
|
|
9521
|
-
readonly path: "/sites/{siteId}/sitemaps/urls";
|
|
9522
9519
|
readonly visibility: "public";
|
|
9523
9520
|
readonly semantics: {
|
|
9524
9521
|
readonly kind: "query";
|
|
@@ -9713,11 +9710,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
9713
9710
|
};
|
|
9714
9711
|
};
|
|
9715
9712
|
};
|
|
9713
|
+
readonly id: "partner.sites.sitemaps.urls.get";
|
|
9714
|
+
readonly method: "GET";
|
|
9715
|
+
readonly path: "/sites/{siteId}/sitemaps/urls";
|
|
9716
9716
|
};
|
|
9717
9717
|
readonly getSitemapExport: {
|
|
9718
|
-
readonly id: "partner.sites.sitemaps.export.get";
|
|
9719
|
-
readonly method: "GET";
|
|
9720
|
-
readonly path: "/sites/{siteId}/sitemaps/export";
|
|
9721
9718
|
readonly visibility: "public";
|
|
9722
9719
|
readonly semantics: {
|
|
9723
9720
|
readonly kind: "query";
|
|
@@ -9916,11 +9913,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
9916
9913
|
};
|
|
9917
9914
|
};
|
|
9918
9915
|
};
|
|
9916
|
+
readonly id: "partner.sites.sitemaps.export.get";
|
|
9917
|
+
readonly method: "GET";
|
|
9918
|
+
readonly path: "/sites/{siteId}/sitemaps/export";
|
|
9919
9919
|
};
|
|
9920
9920
|
readonly createTeam: {
|
|
9921
|
-
readonly id: "partner.teams.create";
|
|
9922
|
-
readonly method: "POST";
|
|
9923
|
-
readonly path: "/teams";
|
|
9924
9921
|
readonly visibility: "public";
|
|
9925
9922
|
readonly semantics: {
|
|
9926
9923
|
readonly kind: "mutation";
|
|
@@ -10058,11 +10055,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
10058
10055
|
};
|
|
10059
10056
|
};
|
|
10060
10057
|
};
|
|
10058
|
+
readonly id: "partner.teams.create";
|
|
10059
|
+
readonly method: "POST";
|
|
10060
|
+
readonly path: "/teams";
|
|
10061
10061
|
};
|
|
10062
10062
|
readonly renameTeam: {
|
|
10063
|
-
readonly id: "partner.teams.rename";
|
|
10064
|
-
readonly method: "PATCH";
|
|
10065
|
-
readonly path: "/teams/{teamId}";
|
|
10066
10063
|
readonly visibility: "public";
|
|
10067
10064
|
readonly semantics: {
|
|
10068
10065
|
readonly kind: "mutation";
|
|
@@ -10187,11 +10184,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
10187
10184
|
};
|
|
10188
10185
|
};
|
|
10189
10186
|
};
|
|
10187
|
+
readonly id: "partner.teams.rename";
|
|
10188
|
+
readonly method: "PATCH";
|
|
10189
|
+
readonly path: "/teams/{teamId}";
|
|
10190
10190
|
};
|
|
10191
10191
|
readonly deleteTeam: {
|
|
10192
|
-
readonly id: "partner.teams.delete";
|
|
10193
|
-
readonly method: "DELETE";
|
|
10194
|
-
readonly path: "/teams/{teamId}";
|
|
10195
10192
|
readonly visibility: "public";
|
|
10196
10193
|
readonly semantics: {
|
|
10197
10194
|
readonly kind: "mutation";
|
|
@@ -10308,11 +10305,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
10308
10305
|
};
|
|
10309
10306
|
};
|
|
10310
10307
|
};
|
|
10308
|
+
readonly id: "partner.teams.delete";
|
|
10309
|
+
readonly method: "DELETE";
|
|
10310
|
+
readonly path: "/teams/{teamId}";
|
|
10311
10311
|
};
|
|
10312
10312
|
readonly listTeamMembers: {
|
|
10313
|
-
readonly id: "partner.teams.members.list";
|
|
10314
|
-
readonly method: "GET";
|
|
10315
|
-
readonly path: "/teams/{teamId}/members";
|
|
10316
10313
|
readonly visibility: "public";
|
|
10317
10314
|
readonly semantics: {
|
|
10318
10315
|
readonly kind: "query";
|
|
@@ -10450,11 +10447,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
10450
10447
|
};
|
|
10451
10448
|
};
|
|
10452
10449
|
};
|
|
10450
|
+
readonly id: "partner.teams.members.list";
|
|
10451
|
+
readonly method: "GET";
|
|
10452
|
+
readonly path: "/teams/{teamId}/members";
|
|
10453
10453
|
};
|
|
10454
10454
|
readonly addTeamMember: {
|
|
10455
|
-
readonly id: "partner.teams.members.add";
|
|
10456
|
-
readonly method: "POST";
|
|
10457
|
-
readonly path: "/teams/{teamId}/members";
|
|
10458
10455
|
readonly visibility: "public";
|
|
10459
10456
|
readonly semantics: {
|
|
10460
10457
|
readonly kind: "mutation";
|
|
@@ -10595,11 +10592,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
10595
10592
|
};
|
|
10596
10593
|
};
|
|
10597
10594
|
};
|
|
10595
|
+
readonly id: "partner.teams.members.add";
|
|
10596
|
+
readonly method: "POST";
|
|
10597
|
+
readonly path: "/teams/{teamId}/members";
|
|
10598
10598
|
};
|
|
10599
10599
|
readonly updateTeamMemberRole: {
|
|
10600
|
-
readonly id: "partner.teams.members.role.update";
|
|
10601
|
-
readonly method: "PATCH";
|
|
10602
|
-
readonly path: "/teams/{teamId}/members/{userId}";
|
|
10603
10600
|
readonly visibility: "public";
|
|
10604
10601
|
readonly semantics: {
|
|
10605
10602
|
readonly kind: "mutation";
|
|
@@ -10744,11 +10741,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
10744
10741
|
};
|
|
10745
10742
|
};
|
|
10746
10743
|
};
|
|
10744
|
+
readonly id: "partner.teams.members.role.update";
|
|
10745
|
+
readonly method: "PATCH";
|
|
10746
|
+
readonly path: "/teams/{teamId}/members/{userId}";
|
|
10747
10747
|
};
|
|
10748
10748
|
readonly removeTeamMember: {
|
|
10749
|
-
readonly id: "partner.teams.members.remove";
|
|
10750
|
-
readonly method: "DELETE";
|
|
10751
|
-
readonly path: "/teams/{teamId}/members/{userId}";
|
|
10752
10749
|
readonly visibility: "public";
|
|
10753
10750
|
readonly semantics: {
|
|
10754
10751
|
readonly kind: "mutation";
|
|
@@ -10873,11 +10870,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
10873
10870
|
};
|
|
10874
10871
|
};
|
|
10875
10872
|
};
|
|
10873
|
+
readonly id: "partner.teams.members.remove";
|
|
10874
|
+
readonly method: "DELETE";
|
|
10875
|
+
readonly path: "/teams/{teamId}/members/{userId}";
|
|
10876
10876
|
};
|
|
10877
10877
|
readonly updateSiteTeam: {
|
|
10878
|
-
readonly id: "partner.sites.team.update";
|
|
10879
|
-
readonly method: "PATCH";
|
|
10880
|
-
readonly path: "/sites/{siteId}/team";
|
|
10881
10878
|
readonly visibility: "public";
|
|
10882
10879
|
readonly semantics: {
|
|
10883
10880
|
readonly kind: "mutation";
|
|
@@ -11002,11 +10999,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
11002
10999
|
};
|
|
11003
11000
|
};
|
|
11004
11001
|
};
|
|
11002
|
+
readonly id: "partner.sites.team.update";
|
|
11003
|
+
readonly method: "PATCH";
|
|
11004
|
+
readonly path: "/sites/{siteId}/team";
|
|
11005
11005
|
};
|
|
11006
11006
|
readonly getTeamCatalog: {
|
|
11007
|
-
readonly id: "partner.teams.catalog.get";
|
|
11008
|
-
readonly method: "GET";
|
|
11009
|
-
readonly path: "/teams/{teamId}/catalog";
|
|
11010
11007
|
readonly visibility: "public";
|
|
11011
11008
|
readonly semantics: {
|
|
11012
11009
|
readonly kind: "query";
|
|
@@ -11144,11 +11141,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
11144
11141
|
};
|
|
11145
11142
|
};
|
|
11146
11143
|
};
|
|
11144
|
+
readonly id: "partner.teams.catalog.get";
|
|
11145
|
+
readonly method: "GET";
|
|
11146
|
+
readonly path: "/teams/{teamId}/catalog";
|
|
11147
11147
|
};
|
|
11148
11148
|
readonly bindTeamCatalog: {
|
|
11149
|
-
readonly id: "partner.teams.catalog.bind";
|
|
11150
|
-
readonly method: "POST";
|
|
11151
|
-
readonly path: "/teams/{teamId}/catalog";
|
|
11152
11149
|
readonly visibility: "public";
|
|
11153
11150
|
readonly semantics: {
|
|
11154
11151
|
readonly kind: "mutation";
|
|
@@ -11291,11 +11288,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
11291
11288
|
};
|
|
11292
11289
|
};
|
|
11293
11290
|
};
|
|
11291
|
+
readonly id: "partner.teams.catalog.bind";
|
|
11292
|
+
readonly method: "POST";
|
|
11293
|
+
readonly path: "/teams/{teamId}/catalog";
|
|
11294
11294
|
};
|
|
11295
11295
|
readonly getSiteIntIdCrosswalk: {
|
|
11296
|
-
readonly id: "partner.users.sites.crosswalk.get";
|
|
11297
|
-
readonly method: "GET";
|
|
11298
|
-
readonly path: "/users/{userId}/sites/crosswalk";
|
|
11299
11296
|
readonly visibility: "public";
|
|
11300
11297
|
readonly semantics: {
|
|
11301
11298
|
readonly kind: "query";
|
|
@@ -11426,11 +11423,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
11426
11423
|
};
|
|
11427
11424
|
};
|
|
11428
11425
|
};
|
|
11426
|
+
readonly id: "partner.users.sites.crosswalk.get";
|
|
11427
|
+
readonly method: "GET";
|
|
11428
|
+
readonly path: "/users/{userId}/sites/crosswalk";
|
|
11429
11429
|
};
|
|
11430
11430
|
readonly deleteUser: {
|
|
11431
|
-
readonly id: "partner.users.delete";
|
|
11432
|
-
readonly method: "DELETE";
|
|
11433
|
-
readonly path: "/users/{userId}";
|
|
11434
11431
|
readonly visibility: "public";
|
|
11435
11432
|
readonly semantics: {
|
|
11436
11433
|
readonly kind: "mutation";
|
|
@@ -11559,11 +11556,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
11559
11556
|
};
|
|
11560
11557
|
};
|
|
11561
11558
|
};
|
|
11559
|
+
readonly id: "partner.users.delete";
|
|
11560
|
+
readonly method: "DELETE";
|
|
11561
|
+
readonly path: "/users/{userId}";
|
|
11562
11562
|
};
|
|
11563
11563
|
readonly createVerificationToken: {
|
|
11564
|
-
readonly id: "partner.users.verification.token.create";
|
|
11565
|
-
readonly method: "POST";
|
|
11566
|
-
readonly path: "/users/{userId}/verification-token";
|
|
11567
11564
|
readonly visibility: "public";
|
|
11568
11565
|
readonly semantics: {
|
|
11569
11566
|
readonly kind: "query";
|
|
@@ -11739,11 +11736,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
11739
11736
|
};
|
|
11740
11737
|
};
|
|
11741
11738
|
};
|
|
11739
|
+
readonly id: "partner.users.verification.token.create";
|
|
11740
|
+
readonly method: "POST";
|
|
11741
|
+
readonly path: "/users/{userId}/verification-token";
|
|
11742
11742
|
};
|
|
11743
11743
|
readonly addAndVerifySite: {
|
|
11744
|
-
readonly id: "partner.users.sites.verify.create";
|
|
11745
|
-
readonly method: "POST";
|
|
11746
|
-
readonly path: "/users/{userId}/sites/verify";
|
|
11747
11744
|
readonly visibility: "public";
|
|
11748
11745
|
readonly semantics: {
|
|
11749
11746
|
readonly kind: "mutation";
|
|
@@ -11898,13 +11895,13 @@ declare function createGscdumpV1Protocol(): {
|
|
|
11898
11895
|
};
|
|
11899
11896
|
};
|
|
11900
11897
|
};
|
|
11898
|
+
readonly id: "partner.users.sites.verify.create";
|
|
11899
|
+
readonly method: "POST";
|
|
11900
|
+
readonly path: "/users/{userId}/sites/verify";
|
|
11901
11901
|
};
|
|
11902
11902
|
}>;
|
|
11903
11903
|
analytics: HttpV1Surface<{
|
|
11904
11904
|
readonly queryRows: {
|
|
11905
|
-
readonly id: "analytics.rows.query";
|
|
11906
|
-
readonly method: "POST";
|
|
11907
|
-
readonly path: "/sites/{siteId}/rows";
|
|
11908
11905
|
readonly visibility: "public";
|
|
11909
11906
|
readonly semantics: {
|
|
11910
11907
|
readonly kind: "query";
|
|
@@ -11978,12 +11975,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
11978
11975
|
byNewsShowcasePanel: "byNewsShowcasePanel";
|
|
11979
11976
|
}>>;
|
|
11980
11977
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
11981
|
-
|
|
11982
|
-
|
|
11983
|
-
|
|
11984
|
-
|
|
11985
|
-
|
|
11986
|
-
|
|
11978
|
+
readonly WEB: "web";
|
|
11979
|
+
readonly IMAGE: "image";
|
|
11980
|
+
readonly VIDEO: "video";
|
|
11981
|
+
readonly NEWS: "news";
|
|
11982
|
+
readonly DISCOVER: "discover";
|
|
11983
|
+
readonly GOOGLE_NEWS: "googleNews";
|
|
11987
11984
|
}>>;
|
|
11988
11985
|
}, z.core.$strict>;
|
|
11989
11986
|
};
|
|
@@ -12094,11 +12091,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
12094
12091
|
};
|
|
12095
12092
|
};
|
|
12096
12093
|
};
|
|
12094
|
+
readonly id: "analytics.rows.query";
|
|
12095
|
+
readonly method: "POST";
|
|
12096
|
+
readonly path: "/sites/{siteId}/rows";
|
|
12097
12097
|
};
|
|
12098
12098
|
readonly queryReport: {
|
|
12099
|
-
readonly id: "analytics.reports.query";
|
|
12100
|
-
readonly method: "POST";
|
|
12101
|
-
readonly path: "/sites/{siteId}/reports";
|
|
12102
12099
|
readonly visibility: "public";
|
|
12103
12100
|
readonly semantics: {
|
|
12104
12101
|
readonly kind: "query";
|
|
@@ -12129,12 +12126,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
12129
12126
|
readonly body: z.ZodObject<{
|
|
12130
12127
|
state: z.ZodObject<{
|
|
12131
12128
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
12132
|
-
|
|
12133
|
-
|
|
12134
|
-
|
|
12135
|
-
|
|
12136
|
-
|
|
12137
|
-
|
|
12129
|
+
readonly WEB: "web";
|
|
12130
|
+
readonly IMAGE: "image";
|
|
12131
|
+
readonly VIDEO: "video";
|
|
12132
|
+
readonly NEWS: "news";
|
|
12133
|
+
readonly DISCOVER: "discover";
|
|
12134
|
+
readonly GOOGLE_NEWS: "googleNews";
|
|
12138
12135
|
}>>;
|
|
12139
12136
|
dimensions: z.ZodArray<z.ZodEnum<{
|
|
12140
12137
|
page: "page";
|
|
@@ -12149,12 +12146,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
12149
12146
|
}, z.core.$loose>;
|
|
12150
12147
|
comparison: z.ZodOptional<z.ZodObject<{
|
|
12151
12148
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
12152
|
-
|
|
12153
|
-
|
|
12154
|
-
|
|
12155
|
-
|
|
12156
|
-
|
|
12157
|
-
|
|
12149
|
+
readonly WEB: "web";
|
|
12150
|
+
readonly IMAGE: "image";
|
|
12151
|
+
readonly VIDEO: "video";
|
|
12152
|
+
readonly NEWS: "news";
|
|
12153
|
+
readonly DISCOVER: "discover";
|
|
12154
|
+
readonly GOOGLE_NEWS: "googleNews";
|
|
12158
12155
|
}>>;
|
|
12159
12156
|
dimensions: z.ZodArray<z.ZodEnum<{
|
|
12160
12157
|
page: "page";
|
|
@@ -12355,11 +12352,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
12355
12352
|
};
|
|
12356
12353
|
};
|
|
12357
12354
|
};
|
|
12355
|
+
readonly id: "analytics.reports.query";
|
|
12356
|
+
readonly method: "POST";
|
|
12357
|
+
readonly path: "/sites/{siteId}/reports";
|
|
12358
12358
|
};
|
|
12359
12359
|
readonly queryReportDetail: {
|
|
12360
|
-
readonly id: "analytics.reports.detail.query";
|
|
12361
|
-
readonly method: "POST";
|
|
12362
|
-
readonly path: "/sites/{siteId}/reports/detail";
|
|
12363
12360
|
readonly visibility: "public";
|
|
12364
12361
|
readonly semantics: {
|
|
12365
12362
|
readonly kind: "query";
|
|
@@ -12390,12 +12387,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
12390
12387
|
readonly body: z.ZodObject<{
|
|
12391
12388
|
state: z.ZodObject<{
|
|
12392
12389
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
12393
|
-
|
|
12394
|
-
|
|
12395
|
-
|
|
12396
|
-
|
|
12397
|
-
|
|
12398
|
-
|
|
12390
|
+
readonly WEB: "web";
|
|
12391
|
+
readonly IMAGE: "image";
|
|
12392
|
+
readonly VIDEO: "video";
|
|
12393
|
+
readonly NEWS: "news";
|
|
12394
|
+
readonly DISCOVER: "discover";
|
|
12395
|
+
readonly GOOGLE_NEWS: "googleNews";
|
|
12399
12396
|
}>>;
|
|
12400
12397
|
dimensions: z.ZodArray<z.ZodEnum<{
|
|
12401
12398
|
page: "page";
|
|
@@ -12410,12 +12407,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
12410
12407
|
}, z.core.$loose>;
|
|
12411
12408
|
comparison: z.ZodOptional<z.ZodObject<{
|
|
12412
12409
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
12413
|
-
|
|
12414
|
-
|
|
12415
|
-
|
|
12416
|
-
|
|
12417
|
-
|
|
12418
|
-
|
|
12410
|
+
readonly WEB: "web";
|
|
12411
|
+
readonly IMAGE: "image";
|
|
12412
|
+
readonly VIDEO: "video";
|
|
12413
|
+
readonly NEWS: "news";
|
|
12414
|
+
readonly DISCOVER: "discover";
|
|
12415
|
+
readonly GOOGLE_NEWS: "googleNews";
|
|
12419
12416
|
}>>;
|
|
12420
12417
|
dimensions: z.ZodArray<z.ZodEnum<{
|
|
12421
12418
|
page: "page";
|
|
@@ -12635,13 +12632,13 @@ declare function createGscdumpV1Protocol(): {
|
|
|
12635
12632
|
};
|
|
12636
12633
|
};
|
|
12637
12634
|
};
|
|
12635
|
+
readonly id: "analytics.reports.detail.query";
|
|
12636
|
+
readonly method: "POST";
|
|
12637
|
+
readonly path: "/sites/{siteId}/reports/detail";
|
|
12638
12638
|
};
|
|
12639
12639
|
}>;
|
|
12640
12640
|
realtime: HttpV1Surface<{
|
|
12641
12641
|
readonly getStreamHead: {
|
|
12642
|
-
readonly id: "realtime.stream.head.get";
|
|
12643
|
-
readonly method: "GET";
|
|
12644
|
-
readonly path: "/stream/head";
|
|
12645
12642
|
readonly visibility: "public";
|
|
12646
12643
|
readonly semantics: {
|
|
12647
12644
|
readonly kind: "query";
|
|
@@ -12758,11 +12755,11 @@ declare function createGscdumpV1Protocol(): {
|
|
|
12758
12755
|
};
|
|
12759
12756
|
};
|
|
12760
12757
|
};
|
|
12758
|
+
readonly id: "realtime.stream.head.get";
|
|
12759
|
+
readonly method: "GET";
|
|
12760
|
+
readonly path: "/stream/head";
|
|
12761
12761
|
};
|
|
12762
12762
|
readonly createTicket: {
|
|
12763
|
-
readonly id: "realtime.tickets.create";
|
|
12764
|
-
readonly method: "POST";
|
|
12765
|
-
readonly path: "/tickets";
|
|
12766
12763
|
readonly visibility: "public";
|
|
12767
12764
|
readonly semantics: {
|
|
12768
12765
|
readonly kind: "mutation";
|
|
@@ -12906,6 +12903,9 @@ declare function createGscdumpV1Protocol(): {
|
|
|
12906
12903
|
};
|
|
12907
12904
|
};
|
|
12908
12905
|
};
|
|
12906
|
+
readonly id: "realtime.tickets.create";
|
|
12907
|
+
readonly method: "POST";
|
|
12908
|
+
readonly path: "/tickets";
|
|
12909
12909
|
};
|
|
12910
12910
|
}>;
|
|
12911
12911
|
};
|