@googleapis/searchconsole 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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.2](https://github.com/googleapis/google-api-nodejs-client/compare/searchconsole-v1.0.1...searchconsole-v1.0.2) (2023-08-25)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **deps:** update dependency googleapis-common to v7 ([9491ec1](https://github.com/googleapis/google-api-nodejs-client/commit/9491ec1cdc3c413e7d73edcfcd59cf5c28a7c855))
9
+
10
+ ## [1.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/searchconsole-v1.0.0...searchconsole-v1.0.1) (2023-08-09)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **searchconsole:** update the API ([208d0a5](https://github.com/googleapis/google-api-nodejs-client/commit/208d0a5dc718bcfcc100034fcbb1f086793d0ad6))
16
+
3
17
  ## [1.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/searchconsole-v0.5.2...searchconsole-v1.0.0) (2022-10-28)
4
18
 
5
19
 
package/build/v1.d.ts CHANGED
@@ -569,69 +569,6 @@ export declare namespace searchconsole_v1 {
569
569
  constructor(context: APIRequestContext);
570
570
  /**
571
571
  * Query your data with filters and parameters that you define. Returns zero or more rows grouped by the row keys that you define. You must define a date range of one or more days. When date is one of the group by values, any days without data are omitted from the result list. If you need to know which days have data, issue a broad date range query grouped by date for any metric, and see which day rows are returned.
572
- * @example
573
- * ```js
574
- * // Before running the sample:
575
- * // - Enable the API at:
576
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
577
- * // - Login into gcloud by running:
578
- * // `$ gcloud auth application-default login`
579
- * // - Install the npm module by running:
580
- * // `$ npm install googleapis`
581
- *
582
- * const {google} = require('googleapis');
583
- * const searchconsole = google.searchconsole('v1');
584
- *
585
- * async function main() {
586
- * const auth = new google.auth.GoogleAuth({
587
- * // Scopes can be specified either as an array or as a single, space-delimited string.
588
- * scopes: [
589
- * 'https://www.googleapis.com/auth/webmasters',
590
- * 'https://www.googleapis.com/auth/webmasters.readonly',
591
- * ],
592
- * });
593
- *
594
- * // Acquire an auth client, and bind it to all future calls
595
- * const authClient = await auth.getClient();
596
- * google.options({auth: authClient});
597
- *
598
- * // Do the magic
599
- * const res = await webmasters.searchanalytics.query({
600
- * // The site's URL, including protocol. For example: `http://www.example.com/`.
601
- * siteUrl: 'placeholder-value',
602
- *
603
- * // Request body metadata
604
- * requestBody: {
605
- * // request body parameters
606
- * // {
607
- * // "aggregationType": "my_aggregationType",
608
- * // "dataState": "my_dataState",
609
- * // "dimensionFilterGroups": [],
610
- * // "dimensions": [],
611
- * // "endDate": "my_endDate",
612
- * // "rowLimit": 0,
613
- * // "searchType": "my_searchType",
614
- * // "startDate": "my_startDate",
615
- * // "startRow": 0,
616
- * // "type": "my_type"
617
- * // }
618
- * },
619
- * });
620
- * console.log(res.data);
621
- *
622
- * // Example response
623
- * // {
624
- * // "responseAggregationType": "my_responseAggregationType",
625
- * // "rows": []
626
- * // }
627
- * }
628
- *
629
- * main().catch(e => {
630
- * console.error(e);
631
- * throw e;
632
- * });
633
- *
634
- * ```
635
572
  *
636
573
  * @param params - Parameters for request
637
574
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -660,45 +597,6 @@ export declare namespace searchconsole_v1 {
660
597
  constructor(context: APIRequestContext);
661
598
  /**
662
599
  * Deletes a sitemap from the Sitemaps report. Does not stop Google from crawling this sitemap or the URLs that were previously crawled in the deleted sitemap.
663
- * @example
664
- * ```js
665
- * // Before running the sample:
666
- * // - Enable the API at:
667
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
668
- * // - Login into gcloud by running:
669
- * // `$ gcloud auth application-default login`
670
- * // - Install the npm module by running:
671
- * // `$ npm install googleapis`
672
- *
673
- * const {google} = require('googleapis');
674
- * const searchconsole = google.searchconsole('v1');
675
- *
676
- * async function main() {
677
- * const auth = new google.auth.GoogleAuth({
678
- * // Scopes can be specified either as an array or as a single, space-delimited string.
679
- * scopes: ['https://www.googleapis.com/auth/webmasters'],
680
- * });
681
- *
682
- * // Acquire an auth client, and bind it to all future calls
683
- * const authClient = await auth.getClient();
684
- * google.options({auth: authClient});
685
- *
686
- * // Do the magic
687
- * const res = await webmasters.sitemaps.delete({
688
- * // The URL of the actual sitemap. For example: `http://www.example.com/sitemap.xml`.
689
- * feedpath: 'placeholder-value',
690
- * // The site's URL, including protocol. For example: `http://www.example.com/`.
691
- * siteUrl: 'placeholder-value',
692
- * });
693
- * console.log(res.data);
694
- * }
695
- *
696
- * main().catch(e => {
697
- * console.error(e);
698
- * throw e;
699
- * });
700
- *
701
- * ```
702
600
  *
703
601
  * @param params - Parameters for request
704
602
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -713,61 +611,6 @@ export declare namespace searchconsole_v1 {
713
611
  delete(callback: BodyResponseCallback<void>): void;
714
612
  /**
715
613
  * Retrieves information about a specific sitemap.
716
- * @example
717
- * ```js
718
- * // Before running the sample:
719
- * // - Enable the API at:
720
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
721
- * // - Login into gcloud by running:
722
- * // `$ gcloud auth application-default login`
723
- * // - Install the npm module by running:
724
- * // `$ npm install googleapis`
725
- *
726
- * const {google} = require('googleapis');
727
- * const searchconsole = google.searchconsole('v1');
728
- *
729
- * async function main() {
730
- * const auth = new google.auth.GoogleAuth({
731
- * // Scopes can be specified either as an array or as a single, space-delimited string.
732
- * scopes: [
733
- * 'https://www.googleapis.com/auth/webmasters',
734
- * 'https://www.googleapis.com/auth/webmasters.readonly',
735
- * ],
736
- * });
737
- *
738
- * // Acquire an auth client, and bind it to all future calls
739
- * const authClient = await auth.getClient();
740
- * google.options({auth: authClient});
741
- *
742
- * // Do the magic
743
- * const res = await webmasters.sitemaps.get({
744
- * // The URL of the actual sitemap. For example: `http://www.example.com/sitemap.xml`.
745
- * feedpath: 'placeholder-value',
746
- * // The site's URL, including protocol. For example: `http://www.example.com/`.
747
- * siteUrl: 'placeholder-value',
748
- * });
749
- * console.log(res.data);
750
- *
751
- * // Example response
752
- * // {
753
- * // "contents": [],
754
- * // "errors": "my_errors",
755
- * // "isPending": false,
756
- * // "isSitemapsIndex": false,
757
- * // "lastDownloaded": "my_lastDownloaded",
758
- * // "lastSubmitted": "my_lastSubmitted",
759
- * // "path": "my_path",
760
- * // "type": "my_type",
761
- * // "warnings": "my_warnings"
762
- * // }
763
- * }
764
- *
765
- * main().catch(e => {
766
- * console.error(e);
767
- * throw e;
768
- * });
769
- *
770
- * ```
771
614
  *
772
615
  * @param params - Parameters for request
773
616
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -782,53 +625,6 @@ export declare namespace searchconsole_v1 {
782
625
  get(callback: BodyResponseCallback<Schema$WmxSitemap>): void;
783
626
  /**
784
627
  * Lists the [sitemaps-entries](/webmaster-tools/v3/sitemaps) submitted for this site, or included in the sitemap index file (if `sitemapIndex` is specified in the request).
785
- * @example
786
- * ```js
787
- * // Before running the sample:
788
- * // - Enable the API at:
789
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
790
- * // - Login into gcloud by running:
791
- * // `$ gcloud auth application-default login`
792
- * // - Install the npm module by running:
793
- * // `$ npm install googleapis`
794
- *
795
- * const {google} = require('googleapis');
796
- * const searchconsole = google.searchconsole('v1');
797
- *
798
- * async function main() {
799
- * const auth = new google.auth.GoogleAuth({
800
- * // Scopes can be specified either as an array or as a single, space-delimited string.
801
- * scopes: [
802
- * 'https://www.googleapis.com/auth/webmasters',
803
- * 'https://www.googleapis.com/auth/webmasters.readonly',
804
- * ],
805
- * });
806
- *
807
- * // Acquire an auth client, and bind it to all future calls
808
- * const authClient = await auth.getClient();
809
- * google.options({auth: authClient});
810
- *
811
- * // Do the magic
812
- * const res = await webmasters.sitemaps.list({
813
- * // A URL of a site's sitemap index. For example: `http://www.example.com/sitemapindex.xml`.
814
- * sitemapIndex: 'placeholder-value',
815
- * // The site's URL, including protocol. For example: `http://www.example.com/`.
816
- * siteUrl: 'placeholder-value',
817
- * });
818
- * console.log(res.data);
819
- *
820
- * // Example response
821
- * // {
822
- * // "sitemap": []
823
- * // }
824
- * }
825
- *
826
- * main().catch(e => {
827
- * console.error(e);
828
- * throw e;
829
- * });
830
- *
831
- * ```
832
628
  *
833
629
  * @param params - Parameters for request
834
630
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -843,45 +639,6 @@ export declare namespace searchconsole_v1 {
843
639
  list(callback: BodyResponseCallback<Schema$SitemapsListResponse>): void;
844
640
  /**
845
641
  * Submits a sitemap for a site.
846
- * @example
847
- * ```js
848
- * // Before running the sample:
849
- * // - Enable the API at:
850
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
851
- * // - Login into gcloud by running:
852
- * // `$ gcloud auth application-default login`
853
- * // - Install the npm module by running:
854
- * // `$ npm install googleapis`
855
- *
856
- * const {google} = require('googleapis');
857
- * const searchconsole = google.searchconsole('v1');
858
- *
859
- * async function main() {
860
- * const auth = new google.auth.GoogleAuth({
861
- * // Scopes can be specified either as an array or as a single, space-delimited string.
862
- * scopes: ['https://www.googleapis.com/auth/webmasters'],
863
- * });
864
- *
865
- * // Acquire an auth client, and bind it to all future calls
866
- * const authClient = await auth.getClient();
867
- * google.options({auth: authClient});
868
- *
869
- * // Do the magic
870
- * const res = await webmasters.sitemaps.submit({
871
- * // The URL of the actual sitemap. For example: `http://www.example.com/sitemap.xml`.
872
- * feedpath: 'placeholder-value',
873
- * // The site's URL, including protocol. For example: `http://www.example.com/`.
874
- * siteUrl: 'placeholder-value',
875
- * });
876
- * console.log(res.data);
877
- * }
878
- *
879
- * main().catch(e => {
880
- * console.error(e);
881
- * throw e;
882
- * });
883
- *
884
- * ```
885
642
  *
886
643
  * @param params - Parameters for request
887
644
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -940,43 +697,6 @@ export declare namespace searchconsole_v1 {
940
697
  constructor(context: APIRequestContext);
941
698
  /**
942
699
  * Adds a site to the set of the user's sites in Search Console.
943
- * @example
944
- * ```js
945
- * // Before running the sample:
946
- * // - Enable the API at:
947
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
948
- * // - Login into gcloud by running:
949
- * // `$ gcloud auth application-default login`
950
- * // - Install the npm module by running:
951
- * // `$ npm install googleapis`
952
- *
953
- * const {google} = require('googleapis');
954
- * const searchconsole = google.searchconsole('v1');
955
- *
956
- * async function main() {
957
- * const auth = new google.auth.GoogleAuth({
958
- * // Scopes can be specified either as an array or as a single, space-delimited string.
959
- * scopes: ['https://www.googleapis.com/auth/webmasters'],
960
- * });
961
- *
962
- * // Acquire an auth client, and bind it to all future calls
963
- * const authClient = await auth.getClient();
964
- * google.options({auth: authClient});
965
- *
966
- * // Do the magic
967
- * const res = await webmasters.sites.add({
968
- * // The URL of the site to add.
969
- * siteUrl: 'placeholder-value',
970
- * });
971
- * console.log(res.data);
972
- * }
973
- *
974
- * main().catch(e => {
975
- * console.error(e);
976
- * throw e;
977
- * });
978
- *
979
- * ```
980
700
  *
981
701
  * @param params - Parameters for request
982
702
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -991,43 +711,6 @@ export declare namespace searchconsole_v1 {
991
711
  add(callback: BodyResponseCallback<void>): void;
992
712
  /**
993
713
  * Removes a site from the set of the user's Search Console sites.
994
- * @example
995
- * ```js
996
- * // Before running the sample:
997
- * // - Enable the API at:
998
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
999
- * // - Login into gcloud by running:
1000
- * // `$ gcloud auth application-default login`
1001
- * // - Install the npm module by running:
1002
- * // `$ npm install googleapis`
1003
- *
1004
- * const {google} = require('googleapis');
1005
- * const searchconsole = google.searchconsole('v1');
1006
- *
1007
- * async function main() {
1008
- * const auth = new google.auth.GoogleAuth({
1009
- * // Scopes can be specified either as an array or as a single, space-delimited string.
1010
- * scopes: ['https://www.googleapis.com/auth/webmasters'],
1011
- * });
1012
- *
1013
- * // Acquire an auth client, and bind it to all future calls
1014
- * const authClient = await auth.getClient();
1015
- * google.options({auth: authClient});
1016
- *
1017
- * // Do the magic
1018
- * const res = await webmasters.sites.delete({
1019
- * // The URI of the property as defined in Search Console. **Examples:** `http://www.example.com/` or `sc-domain:example.com`.
1020
- * siteUrl: 'placeholder-value',
1021
- * });
1022
- * console.log(res.data);
1023
- * }
1024
- *
1025
- * main().catch(e => {
1026
- * console.error(e);
1027
- * throw e;
1028
- * });
1029
- *
1030
- * ```
1031
714
  *
1032
715
  * @param params - Parameters for request
1033
716
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -1042,52 +725,6 @@ export declare namespace searchconsole_v1 {
1042
725
  delete(callback: BodyResponseCallback<void>): void;
1043
726
  /**
1044
727
  * Retrieves information about specific site.
1045
- * @example
1046
- * ```js
1047
- * // Before running the sample:
1048
- * // - Enable the API at:
1049
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
1050
- * // - Login into gcloud by running:
1051
- * // `$ gcloud auth application-default login`
1052
- * // - Install the npm module by running:
1053
- * // `$ npm install googleapis`
1054
- *
1055
- * const {google} = require('googleapis');
1056
- * const searchconsole = google.searchconsole('v1');
1057
- *
1058
- * async function main() {
1059
- * const auth = new google.auth.GoogleAuth({
1060
- * // Scopes can be specified either as an array or as a single, space-delimited string.
1061
- * scopes: [
1062
- * 'https://www.googleapis.com/auth/webmasters',
1063
- * 'https://www.googleapis.com/auth/webmasters.readonly',
1064
- * ],
1065
- * });
1066
- *
1067
- * // Acquire an auth client, and bind it to all future calls
1068
- * const authClient = await auth.getClient();
1069
- * google.options({auth: authClient});
1070
- *
1071
- * // Do the magic
1072
- * const res = await webmasters.sites.get({
1073
- * // The URI of the property as defined in Search Console. **Examples:** `http://www.example.com/` or `sc-domain:example.com`.
1074
- * siteUrl: 'placeholder-value',
1075
- * });
1076
- * console.log(res.data);
1077
- *
1078
- * // Example response
1079
- * // {
1080
- * // "permissionLevel": "my_permissionLevel",
1081
- * // "siteUrl": "my_siteUrl"
1082
- * // }
1083
- * }
1084
- *
1085
- * main().catch(e => {
1086
- * console.error(e);
1087
- * throw e;
1088
- * });
1089
- *
1090
- * ```
1091
728
  *
1092
729
  * @param params - Parameters for request
1093
730
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -1102,48 +739,6 @@ export declare namespace searchconsole_v1 {
1102
739
  get(callback: BodyResponseCallback<Schema$WmxSite>): void;
1103
740
  /**
1104
741
  * Lists the user's Search Console sites.
1105
- * @example
1106
- * ```js
1107
- * // Before running the sample:
1108
- * // - Enable the API at:
1109
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
1110
- * // - Login into gcloud by running:
1111
- * // `$ gcloud auth application-default login`
1112
- * // - Install the npm module by running:
1113
- * // `$ npm install googleapis`
1114
- *
1115
- * const {google} = require('googleapis');
1116
- * const searchconsole = google.searchconsole('v1');
1117
- *
1118
- * async function main() {
1119
- * const auth = new google.auth.GoogleAuth({
1120
- * // Scopes can be specified either as an array or as a single, space-delimited string.
1121
- * scopes: [
1122
- * 'https://www.googleapis.com/auth/webmasters',
1123
- * 'https://www.googleapis.com/auth/webmasters.readonly',
1124
- * ],
1125
- * });
1126
- *
1127
- * // Acquire an auth client, and bind it to all future calls
1128
- * const authClient = await auth.getClient();
1129
- * google.options({auth: authClient});
1130
- *
1131
- * // Do the magic
1132
- * const res = await webmasters.sites.list({});
1133
- * console.log(res.data);
1134
- *
1135
- * // Example response
1136
- * // {
1137
- * // "siteEntry": []
1138
- * // }
1139
- * }
1140
- *
1141
- * main().catch(e => {
1142
- * console.error(e);
1143
- * throw e;
1144
- * });
1145
- *
1146
- * ```
1147
742
  *
1148
743
  * @param params - Parameters for request
1149
744
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -1187,58 +782,6 @@ export declare namespace searchconsole_v1 {
1187
782
  constructor(context: APIRequestContext);
1188
783
  /**
1189
784
  * Index inspection.
1190
- * @example
1191
- * ```js
1192
- * // Before running the sample:
1193
- * // - Enable the API at:
1194
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
1195
- * // - Login into gcloud by running:
1196
- * // `$ gcloud auth application-default login`
1197
- * // - Install the npm module by running:
1198
- * // `$ npm install googleapis`
1199
- *
1200
- * const {google} = require('googleapis');
1201
- * const searchconsole = google.searchconsole('v1');
1202
- *
1203
- * async function main() {
1204
- * const auth = new google.auth.GoogleAuth({
1205
- * // Scopes can be specified either as an array or as a single, space-delimited string.
1206
- * scopes: [
1207
- * 'https://www.googleapis.com/auth/webmasters',
1208
- * 'https://www.googleapis.com/auth/webmasters.readonly',
1209
- * ],
1210
- * });
1211
- *
1212
- * // Acquire an auth client, and bind it to all future calls
1213
- * const authClient = await auth.getClient();
1214
- * google.options({auth: authClient});
1215
- *
1216
- * // Do the magic
1217
- * const res = await searchconsole.urlInspection.index.inspect({
1218
- * // Request body metadata
1219
- * requestBody: {
1220
- * // request body parameters
1221
- * // {
1222
- * // "inspectionUrl": "my_inspectionUrl",
1223
- * // "languageCode": "my_languageCode",
1224
- * // "siteUrl": "my_siteUrl"
1225
- * // }
1226
- * },
1227
- * });
1228
- * console.log(res.data);
1229
- *
1230
- * // Example response
1231
- * // {
1232
- * // "inspectionResult": {}
1233
- * // }
1234
- * }
1235
- *
1236
- * main().catch(e => {
1237
- * console.error(e);
1238
- * throw e;
1239
- * });
1240
- *
1241
- * ```
1242
785
  *
1243
786
  * @param params - Parameters for request
1244
787
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -1268,58 +811,6 @@ export declare namespace searchconsole_v1 {
1268
811
  constructor(context: APIRequestContext);
1269
812
  /**
1270
813
  * Runs Mobile-Friendly Test for a given URL.
1271
- * @example
1272
- * ```js
1273
- * // Before running the sample:
1274
- * // - Enable the API at:
1275
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
1276
- * // - Login into gcloud by running:
1277
- * // `$ gcloud auth application-default login`
1278
- * // - Install the npm module by running:
1279
- * // `$ npm install googleapis`
1280
- *
1281
- * const {google} = require('googleapis');
1282
- * const searchconsole = google.searchconsole('v1');
1283
- *
1284
- * async function main() {
1285
- * const auth = new google.auth.GoogleAuth({
1286
- * // Scopes can be specified either as an array or as a single, space-delimited string.
1287
- * scopes: [],
1288
- * });
1289
- *
1290
- * // Acquire an auth client, and bind it to all future calls
1291
- * const authClient = await auth.getClient();
1292
- * google.options({auth: authClient});
1293
- *
1294
- * // Do the magic
1295
- * const res = await searchconsole.urlTestingTools.mobileFriendlyTest.run({
1296
- * // Request body metadata
1297
- * requestBody: {
1298
- * // request body parameters
1299
- * // {
1300
- * // "requestScreenshot": false,
1301
- * // "url": "my_url"
1302
- * // }
1303
- * },
1304
- * });
1305
- * console.log(res.data);
1306
- *
1307
- * // Example response
1308
- * // {
1309
- * // "mobileFriendliness": "my_mobileFriendliness",
1310
- * // "mobileFriendlyIssues": [],
1311
- * // "resourceIssues": [],
1312
- * // "screenshot": {},
1313
- * // "testStatus": {}
1314
- * // }
1315
- * }
1316
- *
1317
- * main().catch(e => {
1318
- * console.error(e);
1319
- * throw e;
1320
- * });
1321
- *
1322
- * ```
1323
814
  *
1324
815
  * @param params - Parameters for request
1325
816
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
package/build/v1.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"v1.js","sourceRoot":"","sources":["../v1.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"v1.js","sourceRoot":"","sources":["../v1.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@googleapis/searchconsole",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "searchconsole",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -28,16 +28,16 @@
28
28
  "webpack": "webpack"
29
29
  },
30
30
  "dependencies": {
31
- "googleapis-common": "^6.0.3"
31
+ "googleapis-common": "^7.0.0"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@microsoft/api-documenter": "^7.8.10",
35
35
  "@microsoft/api-extractor": "^7.8.10",
36
- "gts": "^3.1.1",
36
+ "gts": "^5.0.0",
37
37
  "null-loader": "^4.0.0",
38
38
  "ts-loader": "^9.0.0",
39
39
  "typescript": "~4.8.4",
40
40
  "webpack": "^5.0.0",
41
- "webpack-cli": "^4.0.0"
41
+ "webpack-cli": "^5.0.0"
42
42
  }
43
43
  }
package/v1.ts CHANGED
@@ -630,69 +630,6 @@ export namespace searchconsole_v1 {
630
630
 
631
631
  /**
632
632
  * Query your data with filters and parameters that you define. Returns zero or more rows grouped by the row keys that you define. You must define a date range of one or more days. When date is one of the group by values, any days without data are omitted from the result list. If you need to know which days have data, issue a broad date range query grouped by date for any metric, and see which day rows are returned.
633
- * @example
634
- * ```js
635
- * // Before running the sample:
636
- * // - Enable the API at:
637
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
638
- * // - Login into gcloud by running:
639
- * // `$ gcloud auth application-default login`
640
- * // - Install the npm module by running:
641
- * // `$ npm install googleapis`
642
- *
643
- * const {google} = require('googleapis');
644
- * const searchconsole = google.searchconsole('v1');
645
- *
646
- * async function main() {
647
- * const auth = new google.auth.GoogleAuth({
648
- * // Scopes can be specified either as an array or as a single, space-delimited string.
649
- * scopes: [
650
- * 'https://www.googleapis.com/auth/webmasters',
651
- * 'https://www.googleapis.com/auth/webmasters.readonly',
652
- * ],
653
- * });
654
- *
655
- * // Acquire an auth client, and bind it to all future calls
656
- * const authClient = await auth.getClient();
657
- * google.options({auth: authClient});
658
- *
659
- * // Do the magic
660
- * const res = await webmasters.searchanalytics.query({
661
- * // The site's URL, including protocol. For example: `http://www.example.com/`.
662
- * siteUrl: 'placeholder-value',
663
- *
664
- * // Request body metadata
665
- * requestBody: {
666
- * // request body parameters
667
- * // {
668
- * // "aggregationType": "my_aggregationType",
669
- * // "dataState": "my_dataState",
670
- * // "dimensionFilterGroups": [],
671
- * // "dimensions": [],
672
- * // "endDate": "my_endDate",
673
- * // "rowLimit": 0,
674
- * // "searchType": "my_searchType",
675
- * // "startDate": "my_startDate",
676
- * // "startRow": 0,
677
- * // "type": "my_type"
678
- * // }
679
- * },
680
- * });
681
- * console.log(res.data);
682
- *
683
- * // Example response
684
- * // {
685
- * // "responseAggregationType": "my_responseAggregationType",
686
- * // "rows": []
687
- * // }
688
- * }
689
- *
690
- * main().catch(e => {
691
- * console.error(e);
692
- * throw e;
693
- * });
694
- *
695
- * ```
696
633
  *
697
634
  * @param params - Parameters for request
698
635
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -809,45 +746,6 @@ export namespace searchconsole_v1 {
809
746
 
810
747
  /**
811
748
  * Deletes a sitemap from the Sitemaps report. Does not stop Google from crawling this sitemap or the URLs that were previously crawled in the deleted sitemap.
812
- * @example
813
- * ```js
814
- * // Before running the sample:
815
- * // - Enable the API at:
816
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
817
- * // - Login into gcloud by running:
818
- * // `$ gcloud auth application-default login`
819
- * // - Install the npm module by running:
820
- * // `$ npm install googleapis`
821
- *
822
- * const {google} = require('googleapis');
823
- * const searchconsole = google.searchconsole('v1');
824
- *
825
- * async function main() {
826
- * const auth = new google.auth.GoogleAuth({
827
- * // Scopes can be specified either as an array or as a single, space-delimited string.
828
- * scopes: ['https://www.googleapis.com/auth/webmasters'],
829
- * });
830
- *
831
- * // Acquire an auth client, and bind it to all future calls
832
- * const authClient = await auth.getClient();
833
- * google.options({auth: authClient});
834
- *
835
- * // Do the magic
836
- * const res = await webmasters.sitemaps.delete({
837
- * // The URL of the actual sitemap. For example: `http://www.example.com/sitemap.xml`.
838
- * feedpath: 'placeholder-value',
839
- * // The site's URL, including protocol. For example: `http://www.example.com/`.
840
- * siteUrl: 'placeholder-value',
841
- * });
842
- * console.log(res.data);
843
- * }
844
- *
845
- * main().catch(e => {
846
- * console.error(e);
847
- * throw e;
848
- * });
849
- *
850
- * ```
851
749
  *
852
750
  * @param params - Parameters for request
853
751
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -932,61 +830,6 @@ export namespace searchconsole_v1 {
932
830
 
933
831
  /**
934
832
  * Retrieves information about a specific sitemap.
935
- * @example
936
- * ```js
937
- * // Before running the sample:
938
- * // - Enable the API at:
939
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
940
- * // - Login into gcloud by running:
941
- * // `$ gcloud auth application-default login`
942
- * // - Install the npm module by running:
943
- * // `$ npm install googleapis`
944
- *
945
- * const {google} = require('googleapis');
946
- * const searchconsole = google.searchconsole('v1');
947
- *
948
- * async function main() {
949
- * const auth = new google.auth.GoogleAuth({
950
- * // Scopes can be specified either as an array or as a single, space-delimited string.
951
- * scopes: [
952
- * 'https://www.googleapis.com/auth/webmasters',
953
- * 'https://www.googleapis.com/auth/webmasters.readonly',
954
- * ],
955
- * });
956
- *
957
- * // Acquire an auth client, and bind it to all future calls
958
- * const authClient = await auth.getClient();
959
- * google.options({auth: authClient});
960
- *
961
- * // Do the magic
962
- * const res = await webmasters.sitemaps.get({
963
- * // The URL of the actual sitemap. For example: `http://www.example.com/sitemap.xml`.
964
- * feedpath: 'placeholder-value',
965
- * // The site's URL, including protocol. For example: `http://www.example.com/`.
966
- * siteUrl: 'placeholder-value',
967
- * });
968
- * console.log(res.data);
969
- *
970
- * // Example response
971
- * // {
972
- * // "contents": [],
973
- * // "errors": "my_errors",
974
- * // "isPending": false,
975
- * // "isSitemapsIndex": false,
976
- * // "lastDownloaded": "my_lastDownloaded",
977
- * // "lastSubmitted": "my_lastSubmitted",
978
- * // "path": "my_path",
979
- * // "type": "my_type",
980
- * // "warnings": "my_warnings"
981
- * // }
982
- * }
983
- *
984
- * main().catch(e => {
985
- * console.error(e);
986
- * throw e;
987
- * });
988
- *
989
- * ```
990
833
  *
991
834
  * @param params - Parameters for request
992
835
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -1073,53 +916,6 @@ export namespace searchconsole_v1 {
1073
916
 
1074
917
  /**
1075
918
  * Lists the [sitemaps-entries](/webmaster-tools/v3/sitemaps) submitted for this site, or included in the sitemap index file (if `sitemapIndex` is specified in the request).
1076
- * @example
1077
- * ```js
1078
- * // Before running the sample:
1079
- * // - Enable the API at:
1080
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
1081
- * // - Login into gcloud by running:
1082
- * // `$ gcloud auth application-default login`
1083
- * // - Install the npm module by running:
1084
- * // `$ npm install googleapis`
1085
- *
1086
- * const {google} = require('googleapis');
1087
- * const searchconsole = google.searchconsole('v1');
1088
- *
1089
- * async function main() {
1090
- * const auth = new google.auth.GoogleAuth({
1091
- * // Scopes can be specified either as an array or as a single, space-delimited string.
1092
- * scopes: [
1093
- * 'https://www.googleapis.com/auth/webmasters',
1094
- * 'https://www.googleapis.com/auth/webmasters.readonly',
1095
- * ],
1096
- * });
1097
- *
1098
- * // Acquire an auth client, and bind it to all future calls
1099
- * const authClient = await auth.getClient();
1100
- * google.options({auth: authClient});
1101
- *
1102
- * // Do the magic
1103
- * const res = await webmasters.sitemaps.list({
1104
- * // A URL of a site's sitemap index. For example: `http://www.example.com/sitemapindex.xml`.
1105
- * sitemapIndex: 'placeholder-value',
1106
- * // The site's URL, including protocol. For example: `http://www.example.com/`.
1107
- * siteUrl: 'placeholder-value',
1108
- * });
1109
- * console.log(res.data);
1110
- *
1111
- * // Example response
1112
- * // {
1113
- * // "sitemap": []
1114
- * // }
1115
- * }
1116
- *
1117
- * main().catch(e => {
1118
- * console.error(e);
1119
- * throw e;
1120
- * });
1121
- *
1122
- * ```
1123
919
  *
1124
920
  * @param params - Parameters for request
1125
921
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -1212,45 +1008,6 @@ export namespace searchconsole_v1 {
1212
1008
 
1213
1009
  /**
1214
1010
  * Submits a sitemap for a site.
1215
- * @example
1216
- * ```js
1217
- * // Before running the sample:
1218
- * // - Enable the API at:
1219
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
1220
- * // - Login into gcloud by running:
1221
- * // `$ gcloud auth application-default login`
1222
- * // - Install the npm module by running:
1223
- * // `$ npm install googleapis`
1224
- *
1225
- * const {google} = require('googleapis');
1226
- * const searchconsole = google.searchconsole('v1');
1227
- *
1228
- * async function main() {
1229
- * const auth = new google.auth.GoogleAuth({
1230
- * // Scopes can be specified either as an array or as a single, space-delimited string.
1231
- * scopes: ['https://www.googleapis.com/auth/webmasters'],
1232
- * });
1233
- *
1234
- * // Acquire an auth client, and bind it to all future calls
1235
- * const authClient = await auth.getClient();
1236
- * google.options({auth: authClient});
1237
- *
1238
- * // Do the magic
1239
- * const res = await webmasters.sitemaps.submit({
1240
- * // The URL of the actual sitemap. For example: `http://www.example.com/sitemap.xml`.
1241
- * feedpath: 'placeholder-value',
1242
- * // The site's URL, including protocol. For example: `http://www.example.com/`.
1243
- * siteUrl: 'placeholder-value',
1244
- * });
1245
- * console.log(res.data);
1246
- * }
1247
- *
1248
- * main().catch(e => {
1249
- * console.error(e);
1250
- * throw e;
1251
- * });
1252
- *
1253
- * ```
1254
1011
  *
1255
1012
  * @param params - Parameters for request
1256
1013
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -1383,43 +1140,6 @@ export namespace searchconsole_v1 {
1383
1140
 
1384
1141
  /**
1385
1142
  * Adds a site to the set of the user's sites in Search Console.
1386
- * @example
1387
- * ```js
1388
- * // Before running the sample:
1389
- * // - Enable the API at:
1390
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
1391
- * // - Login into gcloud by running:
1392
- * // `$ gcloud auth application-default login`
1393
- * // - Install the npm module by running:
1394
- * // `$ npm install googleapis`
1395
- *
1396
- * const {google} = require('googleapis');
1397
- * const searchconsole = google.searchconsole('v1');
1398
- *
1399
- * async function main() {
1400
- * const auth = new google.auth.GoogleAuth({
1401
- * // Scopes can be specified either as an array or as a single, space-delimited string.
1402
- * scopes: ['https://www.googleapis.com/auth/webmasters'],
1403
- * });
1404
- *
1405
- * // Acquire an auth client, and bind it to all future calls
1406
- * const authClient = await auth.getClient();
1407
- * google.options({auth: authClient});
1408
- *
1409
- * // Do the magic
1410
- * const res = await webmasters.sites.add({
1411
- * // The URL of the site to add.
1412
- * siteUrl: 'placeholder-value',
1413
- * });
1414
- * console.log(res.data);
1415
- * }
1416
- *
1417
- * main().catch(e => {
1418
- * console.error(e);
1419
- * throw e;
1420
- * });
1421
- *
1422
- * ```
1423
1143
  *
1424
1144
  * @param params - Parameters for request
1425
1145
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -1505,43 +1225,6 @@ export namespace searchconsole_v1 {
1505
1225
 
1506
1226
  /**
1507
1227
  * Removes a site from the set of the user's Search Console sites.
1508
- * @example
1509
- * ```js
1510
- * // Before running the sample:
1511
- * // - Enable the API at:
1512
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
1513
- * // - Login into gcloud by running:
1514
- * // `$ gcloud auth application-default login`
1515
- * // - Install the npm module by running:
1516
- * // `$ npm install googleapis`
1517
- *
1518
- * const {google} = require('googleapis');
1519
- * const searchconsole = google.searchconsole('v1');
1520
- *
1521
- * async function main() {
1522
- * const auth = new google.auth.GoogleAuth({
1523
- * // Scopes can be specified either as an array or as a single, space-delimited string.
1524
- * scopes: ['https://www.googleapis.com/auth/webmasters'],
1525
- * });
1526
- *
1527
- * // Acquire an auth client, and bind it to all future calls
1528
- * const authClient = await auth.getClient();
1529
- * google.options({auth: authClient});
1530
- *
1531
- * // Do the magic
1532
- * const res = await webmasters.sites.delete({
1533
- * // The URI of the property as defined in Search Console. **Examples:** `http://www.example.com/` or `sc-domain:example.com`.
1534
- * siteUrl: 'placeholder-value',
1535
- * });
1536
- * console.log(res.data);
1537
- * }
1538
- *
1539
- * main().catch(e => {
1540
- * console.error(e);
1541
- * throw e;
1542
- * });
1543
- *
1544
- * ```
1545
1228
  *
1546
1229
  * @param params - Parameters for request
1547
1230
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -1627,52 +1310,6 @@ export namespace searchconsole_v1 {
1627
1310
 
1628
1311
  /**
1629
1312
  * Retrieves information about specific site.
1630
- * @example
1631
- * ```js
1632
- * // Before running the sample:
1633
- * // - Enable the API at:
1634
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
1635
- * // - Login into gcloud by running:
1636
- * // `$ gcloud auth application-default login`
1637
- * // - Install the npm module by running:
1638
- * // `$ npm install googleapis`
1639
- *
1640
- * const {google} = require('googleapis');
1641
- * const searchconsole = google.searchconsole('v1');
1642
- *
1643
- * async function main() {
1644
- * const auth = new google.auth.GoogleAuth({
1645
- * // Scopes can be specified either as an array or as a single, space-delimited string.
1646
- * scopes: [
1647
- * 'https://www.googleapis.com/auth/webmasters',
1648
- * 'https://www.googleapis.com/auth/webmasters.readonly',
1649
- * ],
1650
- * });
1651
- *
1652
- * // Acquire an auth client, and bind it to all future calls
1653
- * const authClient = await auth.getClient();
1654
- * google.options({auth: authClient});
1655
- *
1656
- * // Do the magic
1657
- * const res = await webmasters.sites.get({
1658
- * // The URI of the property as defined in Search Console. **Examples:** `http://www.example.com/` or `sc-domain:example.com`.
1659
- * siteUrl: 'placeholder-value',
1660
- * });
1661
- * console.log(res.data);
1662
- *
1663
- * // Example response
1664
- * // {
1665
- * // "permissionLevel": "my_permissionLevel",
1666
- * // "siteUrl": "my_siteUrl"
1667
- * // }
1668
- * }
1669
- *
1670
- * main().catch(e => {
1671
- * console.error(e);
1672
- * throw e;
1673
- * });
1674
- *
1675
- * ```
1676
1313
  *
1677
1314
  * @param params - Parameters for request
1678
1315
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -1760,48 +1397,6 @@ export namespace searchconsole_v1 {
1760
1397
 
1761
1398
  /**
1762
1399
  * Lists the user's Search Console sites.
1763
- * @example
1764
- * ```js
1765
- * // Before running the sample:
1766
- * // - Enable the API at:
1767
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
1768
- * // - Login into gcloud by running:
1769
- * // `$ gcloud auth application-default login`
1770
- * // - Install the npm module by running:
1771
- * // `$ npm install googleapis`
1772
- *
1773
- * const {google} = require('googleapis');
1774
- * const searchconsole = google.searchconsole('v1');
1775
- *
1776
- * async function main() {
1777
- * const auth = new google.auth.GoogleAuth({
1778
- * // Scopes can be specified either as an array or as a single, space-delimited string.
1779
- * scopes: [
1780
- * 'https://www.googleapis.com/auth/webmasters',
1781
- * 'https://www.googleapis.com/auth/webmasters.readonly',
1782
- * ],
1783
- * });
1784
- *
1785
- * // Acquire an auth client, and bind it to all future calls
1786
- * const authClient = await auth.getClient();
1787
- * google.options({auth: authClient});
1788
- *
1789
- * // Do the magic
1790
- * const res = await webmasters.sites.list({});
1791
- * console.log(res.data);
1792
- *
1793
- * // Example response
1794
- * // {
1795
- * // "siteEntry": []
1796
- * // }
1797
- * }
1798
- *
1799
- * main().catch(e => {
1800
- * console.error(e);
1801
- * throw e;
1802
- * });
1803
- *
1804
- * ```
1805
1400
  *
1806
1401
  * @param params - Parameters for request
1807
1402
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -1928,58 +1523,6 @@ export namespace searchconsole_v1 {
1928
1523
 
1929
1524
  /**
1930
1525
  * Index inspection.
1931
- * @example
1932
- * ```js
1933
- * // Before running the sample:
1934
- * // - Enable the API at:
1935
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
1936
- * // - Login into gcloud by running:
1937
- * // `$ gcloud auth application-default login`
1938
- * // - Install the npm module by running:
1939
- * // `$ npm install googleapis`
1940
- *
1941
- * const {google} = require('googleapis');
1942
- * const searchconsole = google.searchconsole('v1');
1943
- *
1944
- * async function main() {
1945
- * const auth = new google.auth.GoogleAuth({
1946
- * // Scopes can be specified either as an array or as a single, space-delimited string.
1947
- * scopes: [
1948
- * 'https://www.googleapis.com/auth/webmasters',
1949
- * 'https://www.googleapis.com/auth/webmasters.readonly',
1950
- * ],
1951
- * });
1952
- *
1953
- * // Acquire an auth client, and bind it to all future calls
1954
- * const authClient = await auth.getClient();
1955
- * google.options({auth: authClient});
1956
- *
1957
- * // Do the magic
1958
- * const res = await searchconsole.urlInspection.index.inspect({
1959
- * // Request body metadata
1960
- * requestBody: {
1961
- * // request body parameters
1962
- * // {
1963
- * // "inspectionUrl": "my_inspectionUrl",
1964
- * // "languageCode": "my_languageCode",
1965
- * // "siteUrl": "my_siteUrl"
1966
- * // }
1967
- * },
1968
- * });
1969
- * console.log(res.data);
1970
- *
1971
- * // Example response
1972
- * // {
1973
- * // "inspectionResult": {}
1974
- * // }
1975
- * }
1976
- *
1977
- * main().catch(e => {
1978
- * console.error(e);
1979
- * throw e;
1980
- * });
1981
- *
1982
- * ```
1983
1526
  *
1984
1527
  * @param params - Parameters for request
1985
1528
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -2101,58 +1644,6 @@ export namespace searchconsole_v1 {
2101
1644
 
2102
1645
  /**
2103
1646
  * Runs Mobile-Friendly Test for a given URL.
2104
- * @example
2105
- * ```js
2106
- * // Before running the sample:
2107
- * // - Enable the API at:
2108
- * // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
2109
- * // - Login into gcloud by running:
2110
- * // `$ gcloud auth application-default login`
2111
- * // - Install the npm module by running:
2112
- * // `$ npm install googleapis`
2113
- *
2114
- * const {google} = require('googleapis');
2115
- * const searchconsole = google.searchconsole('v1');
2116
- *
2117
- * async function main() {
2118
- * const auth = new google.auth.GoogleAuth({
2119
- * // Scopes can be specified either as an array or as a single, space-delimited string.
2120
- * scopes: [],
2121
- * });
2122
- *
2123
- * // Acquire an auth client, and bind it to all future calls
2124
- * const authClient = await auth.getClient();
2125
- * google.options({auth: authClient});
2126
- *
2127
- * // Do the magic
2128
- * const res = await searchconsole.urlTestingTools.mobileFriendlyTest.run({
2129
- * // Request body metadata
2130
- * requestBody: {
2131
- * // request body parameters
2132
- * // {
2133
- * // "requestScreenshot": false,
2134
- * // "url": "my_url"
2135
- * // }
2136
- * },
2137
- * });
2138
- * console.log(res.data);
2139
- *
2140
- * // Example response
2141
- * // {
2142
- * // "mobileFriendliness": "my_mobileFriendliness",
2143
- * // "mobileFriendlyIssues": [],
2144
- * // "resourceIssues": [],
2145
- * // "screenshot": {},
2146
- * // "testStatus": {}
2147
- * // }
2148
- * }
2149
- *
2150
- * main().catch(e => {
2151
- * console.error(e);
2152
- * throw e;
2153
- * });
2154
- *
2155
- * ```
2156
1647
  *
2157
1648
  * @param params - Parameters for request
2158
1649
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.