@gscdump/contracts 3.4.4 → 3.6.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 +16 -26
- package/dist/archetypes.d.mts +32 -33
- package/dist/endpoints.d.mts +3 -4
- package/dist/file-resolution.d.mts +11 -12
- package/dist/onboarding.d.mts +38 -39
- package/dist/routes.d.mts +3 -4
- package/dist/schemas.d.mts +142 -143
- package/dist/search-types.d.mts +2 -3
- package/dist/types.d.mts +155 -155
- package/dist/v1/bing-data.d.mts +195 -0
- package/dist/v1/bing-data.mjs +129 -0
- package/dist/v1/bing.d.mts +4 -5
- package/dist/v1/browser.d.mts +5 -6
- package/dist/v1/documents.d.mts +3 -4
- package/dist/v1/documents.mjs +2 -1
- package/dist/v1/http-core.d.mts +39 -39
- package/dist/v1/http-operation-error.d.mts +2 -3
- package/dist/v1/http.d.mts +2 -1
- package/dist/v1/http.mjs +2 -1
- package/dist/v1/index.d.mts +2 -1
- package/dist/v1/index.mjs +2 -1
- package/dist/v1/operations.d.mts +468 -37
- package/dist/v1/operations.mjs +78 -0
- package/dist/v1/paths.d.mts +7 -7
- package/dist/v1/realtime.d.mts +30 -31
- package/dist/v1/route-catalog.d.mts +10 -6
- package/dist/v1/route-catalog.mjs +5 -0
- package/dist/v1/route-surfaces.d.mts +2 -3
- package/dist/v1/version.d.mts +1 -2
- package/dist/webhook-constants.d.mts +8 -9
- package/package.json +4 -4
package/dist/search-types.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const GSC_SEARCH_TYPES: {
|
|
1
|
+
export declare const GSC_SEARCH_TYPES: {
|
|
2
2
|
readonly WEB: "web";
|
|
3
3
|
readonly IMAGE: "image";
|
|
4
4
|
readonly VIDEO: "video";
|
|
@@ -6,5 +6,4 @@ declare const GSC_SEARCH_TYPES: {
|
|
|
6
6
|
readonly DISCOVER: "discover";
|
|
7
7
|
readonly GOOGLE_NEWS: "googleNews";
|
|
8
8
|
};
|
|
9
|
-
type GscSearchType = typeof GSC_SEARCH_TYPES[keyof typeof GSC_SEARCH_TYPES];
|
|
10
|
-
export { GSC_SEARCH_TYPES, GscSearchType };
|
|
9
|
+
export type GscSearchType = typeof GSC_SEARCH_TYPES[keyof typeof GSC_SEARCH_TYPES];
|