@google-shopping/reports 0.2.0 → 0.4.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/CHANGELOG.md +14 -0
- package/build/protos/google/shopping/merchant/reports/v1beta/reports.proto +33 -1
- package/build/protos/google/shopping/type/types.proto +10 -2
- package/build/protos/protos.d.ts +34 -0
- package/build/protos/protos.js +180 -5
- package/build/protos/protos.json +56 -1
- package/build/src/v1beta/report_service_client.d.ts +3 -3
- package/build/src/v1beta/report_service_client.js +12 -9
- package/build/src/v1beta/report_service_client.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [0.4.0](https://github.com/googleapis/google-cloud-node/compare/reports-v0.3.0...reports-v0.4.0) (2024-04-16)
|
4
|
+
|
5
|
+
|
6
|
+
### Features
|
7
|
+
|
8
|
+
* [merchantapi] add click potential to Reports sub-API publication ([#5222](https://github.com/googleapis/google-cloud-node/issues/5222)) ([02719b6](https://github.com/googleapis/google-cloud-node/commit/02719b6945141a7b35256c6d96228280da5bda0f))
|
9
|
+
|
10
|
+
## [0.3.0](https://github.com/googleapis/google-cloud-node/compare/reports-v0.2.0...reports-v0.3.0) (2024-03-29)
|
11
|
+
|
12
|
+
|
13
|
+
### Features
|
14
|
+
|
15
|
+
* [Many APIs] add several fields to manage state of database encryption update ([#5193](https://github.com/googleapis/google-cloud-node/issues/5193)) ([333b409](https://github.com/googleapis/google-cloud-node/commit/333b40951a255ecfab249bd6e7ace5877270ec85))
|
16
|
+
|
3
17
|
## [0.2.0](https://github.com/googleapis/google-cloud-node/compare/reports-v0.1.0...reports-v0.2.0) (2024-02-09)
|
4
18
|
|
5
19
|
|
@@ -60,7 +60,7 @@ message SearchRequest {
|
|
60
60
|
string query = 2 [(google.api.field_behavior) = REQUIRED];
|
61
61
|
|
62
62
|
// Optional. Number of `ReportRows` to retrieve in a single page. Defaults to
|
63
|
-
//
|
63
|
+
// 1000. Values above 5000 are coerced to 5000.
|
64
64
|
int32 page_size = 3 [(google.api.field_behavior) = OPTIONAL];
|
65
65
|
|
66
66
|
// Optional. Token of the page to retrieve. If not specified, the first page
|
@@ -378,6 +378,29 @@ message ProductView {
|
|
378
378
|
ELIGIBLE = 4;
|
379
379
|
}
|
380
380
|
|
381
|
+
// A product's [click
|
382
|
+
// potential](https://support.google.com/merchants/answer/188488) estimates
|
383
|
+
// its performance potential compared to highest performing products of the
|
384
|
+
// merchant. Click potential of a product helps merchants to prioritize which
|
385
|
+
// products to fix and helps them understand how products are performing
|
386
|
+
// against their potential.
|
387
|
+
enum ClickPotential {
|
388
|
+
// Unknown predicted clicks impact.
|
389
|
+
CLICK_POTENTIAL_UNSPECIFIED = 0;
|
390
|
+
|
391
|
+
// Potential to receive a low number of clicks compared to the highest
|
392
|
+
// performing products of the merchant.
|
393
|
+
LOW = 1;
|
394
|
+
|
395
|
+
// Potential to receive a moderate number of clicks compared to the highest
|
396
|
+
// performing products of the merchant.
|
397
|
+
MEDIUM = 2;
|
398
|
+
|
399
|
+
// Potential to receive a similar number of clicks as the highest performing
|
400
|
+
// products of the merchant.
|
401
|
+
HIGH = 3;
|
402
|
+
}
|
403
|
+
|
381
404
|
// REST ID of the product, in the form of
|
382
405
|
// `channel~languageCode~feedLabel~offerId`. Merchant API methods that operate
|
383
406
|
// on products take this as their `name` parameter.
|
@@ -488,6 +511,15 @@ message ProductView {
|
|
488
511
|
// `item_issues.severity.aggregated_severity`) can be used for filtering the
|
489
512
|
// results.**
|
490
513
|
repeated ItemIssue item_issues = 27;
|
514
|
+
|
515
|
+
// Estimated performance potential compared to highest performing products of
|
516
|
+
// the merchant.
|
517
|
+
ClickPotential click_potential = 29;
|
518
|
+
|
519
|
+
// Rank of the product based on its click potential. A product with
|
520
|
+
// `click_potential_rank` 1 has the highest click potential among the
|
521
|
+
// merchant's products that fulfill the search query conditions.
|
522
|
+
optional int64 click_potential_rank = 30;
|
491
523
|
}
|
492
524
|
|
493
525
|
// Fields available for query in `price_competitiveness_product_view` table.
|
@@ -89,7 +89,7 @@ message Destination {
|
|
89
89
|
// Reporting contexts are groups of surfaces and formats for product results on
|
90
90
|
// Google. They can represent the entire destination (for example, [Shopping
|
91
91
|
// ads](https://support.google.com/merchants/answer/6149970)) or a subset of
|
92
|
-
// formats within a destination (for example, [
|
92
|
+
// formats within a destination (for example, [Demand Gen
|
93
93
|
// ads](https://support.google.com/merchants/answer/13389785)).
|
94
94
|
//
|
95
95
|
message ReportingContext {
|
@@ -101,9 +101,17 @@ message ReportingContext {
|
|
101
101
|
// [Shopping ads](https://support.google.com/merchants/answer/6149970).
|
102
102
|
SHOPPING_ADS = 1;
|
103
103
|
|
104
|
+
// Deprecated: Use `DEMAND_GEN_ADS` instead.
|
104
105
|
// [Discovery and Demand Gen
|
105
106
|
// ads](https://support.google.com/merchants/answer/13389785).
|
106
|
-
DISCOVERY_ADS = 2;
|
107
|
+
DISCOVERY_ADS = 2 [deprecated = true];
|
108
|
+
|
109
|
+
// [Demand Gen ads](https://support.google.com/merchants/answer/13389785).
|
110
|
+
DEMAND_GEN_ADS = 13;
|
111
|
+
|
112
|
+
// [Demand Gen ads on Discover
|
113
|
+
// surface](https://support.google.com/merchants/answer/13389785).
|
114
|
+
DEMAND_GEN_ADS_DISCOVER_SURFACE = 14;
|
107
115
|
|
108
116
|
// [Video ads](https://support.google.com/google-ads/answer/6340491).
|
109
117
|
VIDEO_ADS = 3;
|
package/build/protos/protos.d.ts
CHANGED
@@ -857,6 +857,12 @@ export namespace google {
|
|
857
857
|
|
858
858
|
/** ProductView itemIssues */
|
859
859
|
itemIssues?: (google.shopping.merchant.reports.v1beta.ProductView.IItemIssue[]|null);
|
860
|
+
|
861
|
+
/** ProductView clickPotential */
|
862
|
+
clickPotential?: (google.shopping.merchant.reports.v1beta.ProductView.ClickPotential|keyof typeof google.shopping.merchant.reports.v1beta.ProductView.ClickPotential|null);
|
863
|
+
|
864
|
+
/** ProductView clickPotentialRank */
|
865
|
+
clickPotentialRank?: (number|Long|string|null);
|
860
866
|
}
|
861
867
|
|
862
868
|
/** Represents a ProductView. */
|
@@ -952,6 +958,12 @@ export namespace google {
|
|
952
958
|
/** ProductView itemIssues. */
|
953
959
|
public itemIssues: google.shopping.merchant.reports.v1beta.ProductView.IItemIssue[];
|
954
960
|
|
961
|
+
/** ProductView clickPotential. */
|
962
|
+
public clickPotential: (google.shopping.merchant.reports.v1beta.ProductView.ClickPotential|keyof typeof google.shopping.merchant.reports.v1beta.ProductView.ClickPotential);
|
963
|
+
|
964
|
+
/** ProductView clickPotentialRank. */
|
965
|
+
public clickPotentialRank?: (number|Long|string|null);
|
966
|
+
|
955
967
|
/** ProductView _id. */
|
956
968
|
public _id?: "id";
|
957
969
|
|
@@ -1021,6 +1033,9 @@ export namespace google {
|
|
1021
1033
|
/** ProductView _aggregatedReportingContextStatus. */
|
1022
1034
|
public _aggregatedReportingContextStatus?: "aggregatedReportingContextStatus";
|
1023
1035
|
|
1036
|
+
/** ProductView _clickPotentialRank. */
|
1037
|
+
public _clickPotentialRank?: "clickPotentialRank";
|
1038
|
+
|
1024
1039
|
/**
|
1025
1040
|
* Creates a new ProductView instance using the specified properties.
|
1026
1041
|
* @param [properties] Properties to set
|
@@ -1569,6 +1584,14 @@ export namespace google {
|
|
1569
1584
|
ELIGIBLE_LIMITED = 3,
|
1570
1585
|
ELIGIBLE = 4
|
1571
1586
|
}
|
1587
|
+
|
1588
|
+
/** ClickPotential enum. */
|
1589
|
+
enum ClickPotential {
|
1590
|
+
CLICK_POTENTIAL_UNSPECIFIED = 0,
|
1591
|
+
LOW = 1,
|
1592
|
+
MEDIUM = 2,
|
1593
|
+
HIGH = 3
|
1594
|
+
}
|
1572
1595
|
}
|
1573
1596
|
|
1574
1597
|
/** Properties of a PriceCompetitivenessProductView. */
|
@@ -3960,6 +3983,8 @@ export namespace google {
|
|
3960
3983
|
REPORTING_CONTEXT_ENUM_UNSPECIFIED = 0,
|
3961
3984
|
SHOPPING_ADS = 1,
|
3962
3985
|
DISCOVERY_ADS = 2,
|
3986
|
+
DEMAND_GEN_ADS = 13,
|
3987
|
+
DEMAND_GEN_ADS_DISCOVER_SURFACE = 14,
|
3963
3988
|
VIDEO_ADS = 3,
|
3964
3989
|
DISPLAY_ADS = 4,
|
3965
3990
|
LOCAL_INVENTORY_ADS = 5,
|
@@ -4731,6 +4756,9 @@ export namespace google {
|
|
4731
4756
|
|
4732
4757
|
/** Publishing protoReferenceDocumentationUri */
|
4733
4758
|
protoReferenceDocumentationUri?: (string|null);
|
4759
|
+
|
4760
|
+
/** Publishing restReferenceDocumentationUri */
|
4761
|
+
restReferenceDocumentationUri?: (string|null);
|
4734
4762
|
}
|
4735
4763
|
|
4736
4764
|
/** Represents a Publishing. */
|
@@ -4772,6 +4800,9 @@ export namespace google {
|
|
4772
4800
|
/** Publishing protoReferenceDocumentationUri. */
|
4773
4801
|
public protoReferenceDocumentationUri: string;
|
4774
4802
|
|
4803
|
+
/** Publishing restReferenceDocumentationUri. */
|
4804
|
+
public restReferenceDocumentationUri: string;
|
4805
|
+
|
4775
4806
|
/**
|
4776
4807
|
* Creates a new Publishing instance using the specified properties.
|
4777
4808
|
* @param [properties] Properties to set
|
@@ -8728,6 +8759,9 @@ export namespace google {
|
|
8728
8759
|
|
8729
8760
|
/** ServiceOptions .google.api.oauthScopes */
|
8730
8761
|
".google.api.oauthScopes"?: (string|null);
|
8762
|
+
|
8763
|
+
/** ServiceOptions .google.api.apiVersion */
|
8764
|
+
".google.api.apiVersion"?: (string|null);
|
8731
8765
|
}
|
8732
8766
|
|
8733
8767
|
/** Represents a ServiceOptions. */
|
package/build/protos/protos.js
CHANGED
@@ -2394,6 +2394,8 @@
|
|
2394
2394
|
* @property {google.type.IDate|null} [expirationDate] ProductView expirationDate
|
2395
2395
|
* @property {google.shopping.merchant.reports.v1beta.ProductView.AggregatedReportingContextStatus|null} [aggregatedReportingContextStatus] ProductView aggregatedReportingContextStatus
|
2396
2396
|
* @property {Array.<google.shopping.merchant.reports.v1beta.ProductView.IItemIssue>|null} [itemIssues] ProductView itemIssues
|
2397
|
+
* @property {google.shopping.merchant.reports.v1beta.ProductView.ClickPotential|null} [clickPotential] ProductView clickPotential
|
2398
|
+
* @property {number|Long|null} [clickPotentialRank] ProductView clickPotentialRank
|
2397
2399
|
*/
|
2398
2400
|
|
2399
2401
|
/**
|
@@ -2637,6 +2639,22 @@
|
|
2637
2639
|
*/
|
2638
2640
|
ProductView.prototype.itemIssues = $util.emptyArray;
|
2639
2641
|
|
2642
|
+
/**
|
2643
|
+
* ProductView clickPotential.
|
2644
|
+
* @member {google.shopping.merchant.reports.v1beta.ProductView.ClickPotential} clickPotential
|
2645
|
+
* @memberof google.shopping.merchant.reports.v1beta.ProductView
|
2646
|
+
* @instance
|
2647
|
+
*/
|
2648
|
+
ProductView.prototype.clickPotential = 0;
|
2649
|
+
|
2650
|
+
/**
|
2651
|
+
* ProductView clickPotentialRank.
|
2652
|
+
* @member {number|Long|null|undefined} clickPotentialRank
|
2653
|
+
* @memberof google.shopping.merchant.reports.v1beta.ProductView
|
2654
|
+
* @instance
|
2655
|
+
*/
|
2656
|
+
ProductView.prototype.clickPotentialRank = null;
|
2657
|
+
|
2640
2658
|
// OneOf field names bound to virtual getters and setters
|
2641
2659
|
var $oneOfFields;
|
2642
2660
|
|
@@ -2893,6 +2911,17 @@
|
|
2893
2911
|
set: $util.oneOfSetter($oneOfFields)
|
2894
2912
|
});
|
2895
2913
|
|
2914
|
+
/**
|
2915
|
+
* ProductView _clickPotentialRank.
|
2916
|
+
* @member {"clickPotentialRank"|undefined} _clickPotentialRank
|
2917
|
+
* @memberof google.shopping.merchant.reports.v1beta.ProductView
|
2918
|
+
* @instance
|
2919
|
+
*/
|
2920
|
+
Object.defineProperty(ProductView.prototype, "_clickPotentialRank", {
|
2921
|
+
get: $util.oneOfGetter($oneOfFields = ["clickPotentialRank"]),
|
2922
|
+
set: $util.oneOfSetter($oneOfFields)
|
2923
|
+
});
|
2924
|
+
|
2896
2925
|
/**
|
2897
2926
|
* Creates a new ProductView instance using the specified properties.
|
2898
2927
|
* @function create
|
@@ -2975,6 +3004,10 @@
|
|
2975
3004
|
$root.google.shopping.merchant.reports.v1beta.ProductView.ItemIssue.encode(message.itemIssues[i], writer.uint32(/* id 27, wireType 2 =*/218).fork()).ldelim();
|
2976
3005
|
if (message.channel != null && Object.hasOwnProperty.call(message, "channel"))
|
2977
3006
|
writer.uint32(/* id 28, wireType 0 =*/224).int32(message.channel);
|
3007
|
+
if (message.clickPotential != null && Object.hasOwnProperty.call(message, "clickPotential"))
|
3008
|
+
writer.uint32(/* id 29, wireType 0 =*/232).int32(message.clickPotential);
|
3009
|
+
if (message.clickPotentialRank != null && Object.hasOwnProperty.call(message, "clickPotentialRank"))
|
3010
|
+
writer.uint32(/* id 30, wireType 0 =*/240).int64(message.clickPotentialRank);
|
2978
3011
|
return writer;
|
2979
3012
|
};
|
2980
3013
|
|
@@ -3125,6 +3158,14 @@
|
|
3125
3158
|
message.itemIssues.push($root.google.shopping.merchant.reports.v1beta.ProductView.ItemIssue.decode(reader, reader.uint32()));
|
3126
3159
|
break;
|
3127
3160
|
}
|
3161
|
+
case 29: {
|
3162
|
+
message.clickPotential = reader.int32();
|
3163
|
+
break;
|
3164
|
+
}
|
3165
|
+
case 30: {
|
3166
|
+
message.clickPotentialRank = reader.int64();
|
3167
|
+
break;
|
3168
|
+
}
|
3128
3169
|
default:
|
3129
3170
|
reader.skipType(tag & 7);
|
3130
3171
|
break;
|
@@ -3321,6 +3362,21 @@
|
|
3321
3362
|
return "itemIssues." + error;
|
3322
3363
|
}
|
3323
3364
|
}
|
3365
|
+
if (message.clickPotential != null && message.hasOwnProperty("clickPotential"))
|
3366
|
+
switch (message.clickPotential) {
|
3367
|
+
default:
|
3368
|
+
return "clickPotential: enum value expected";
|
3369
|
+
case 0:
|
3370
|
+
case 1:
|
3371
|
+
case 2:
|
3372
|
+
case 3:
|
3373
|
+
break;
|
3374
|
+
}
|
3375
|
+
if (message.clickPotentialRank != null && message.hasOwnProperty("clickPotentialRank")) {
|
3376
|
+
properties._clickPotentialRank = 1;
|
3377
|
+
if (!$util.isInteger(message.clickPotentialRank) && !(message.clickPotentialRank && $util.isInteger(message.clickPotentialRank.low) && $util.isInteger(message.clickPotentialRank.high)))
|
3378
|
+
return "clickPotentialRank: integer|Long expected";
|
3379
|
+
}
|
3324
3380
|
return null;
|
3325
3381
|
};
|
3326
3382
|
|
@@ -3458,6 +3514,39 @@
|
|
3458
3514
|
message.itemIssues[i] = $root.google.shopping.merchant.reports.v1beta.ProductView.ItemIssue.fromObject(object.itemIssues[i]);
|
3459
3515
|
}
|
3460
3516
|
}
|
3517
|
+
switch (object.clickPotential) {
|
3518
|
+
default:
|
3519
|
+
if (typeof object.clickPotential === "number") {
|
3520
|
+
message.clickPotential = object.clickPotential;
|
3521
|
+
break;
|
3522
|
+
}
|
3523
|
+
break;
|
3524
|
+
case "CLICK_POTENTIAL_UNSPECIFIED":
|
3525
|
+
case 0:
|
3526
|
+
message.clickPotential = 0;
|
3527
|
+
break;
|
3528
|
+
case "LOW":
|
3529
|
+
case 1:
|
3530
|
+
message.clickPotential = 1;
|
3531
|
+
break;
|
3532
|
+
case "MEDIUM":
|
3533
|
+
case 2:
|
3534
|
+
message.clickPotential = 2;
|
3535
|
+
break;
|
3536
|
+
case "HIGH":
|
3537
|
+
case 3:
|
3538
|
+
message.clickPotential = 3;
|
3539
|
+
break;
|
3540
|
+
}
|
3541
|
+
if (object.clickPotentialRank != null)
|
3542
|
+
if ($util.Long)
|
3543
|
+
(message.clickPotentialRank = $util.Long.fromValue(object.clickPotentialRank)).unsigned = false;
|
3544
|
+
else if (typeof object.clickPotentialRank === "string")
|
3545
|
+
message.clickPotentialRank = parseInt(object.clickPotentialRank, 10);
|
3546
|
+
else if (typeof object.clickPotentialRank === "number")
|
3547
|
+
message.clickPotentialRank = object.clickPotentialRank;
|
3548
|
+
else if (typeof object.clickPotentialRank === "object")
|
3549
|
+
message.clickPotentialRank = new $util.LongBits(object.clickPotentialRank.low >>> 0, object.clickPotentialRank.high >>> 0).toNumber();
|
3461
3550
|
return message;
|
3462
3551
|
};
|
3463
3552
|
|
@@ -3482,6 +3571,7 @@
|
|
3482
3571
|
object.price = null;
|
3483
3572
|
object.creationTime = null;
|
3484
3573
|
object.expirationDate = null;
|
3574
|
+
object.clickPotential = options.enums === String ? "CLICK_POTENTIAL_UNSPECIFIED" : 0;
|
3485
3575
|
}
|
3486
3576
|
if (message.id != null && message.hasOwnProperty("id")) {
|
3487
3577
|
object.id = message.id;
|
@@ -3614,6 +3704,16 @@
|
|
3614
3704
|
if (options.oneofs)
|
3615
3705
|
object._channel = "channel";
|
3616
3706
|
}
|
3707
|
+
if (message.clickPotential != null && message.hasOwnProperty("clickPotential"))
|
3708
|
+
object.clickPotential = options.enums === String ? $root.google.shopping.merchant.reports.v1beta.ProductView.ClickPotential[message.clickPotential] === undefined ? message.clickPotential : $root.google.shopping.merchant.reports.v1beta.ProductView.ClickPotential[message.clickPotential] : message.clickPotential;
|
3709
|
+
if (message.clickPotentialRank != null && message.hasOwnProperty("clickPotentialRank")) {
|
3710
|
+
if (typeof message.clickPotentialRank === "number")
|
3711
|
+
object.clickPotentialRank = options.longs === String ? String(message.clickPotentialRank) : message.clickPotentialRank;
|
3712
|
+
else
|
3713
|
+
object.clickPotentialRank = options.longs === String ? $util.Long.prototype.toString.call(message.clickPotentialRank) : options.longs === Number ? new $util.LongBits(message.clickPotentialRank.low >>> 0, message.clickPotentialRank.high >>> 0).toNumber() : message.clickPotentialRank;
|
3714
|
+
if (options.oneofs)
|
3715
|
+
object._clickPotentialRank = "clickPotentialRank";
|
3716
|
+
}
|
3617
3717
|
return object;
|
3618
3718
|
};
|
3619
3719
|
|
@@ -4686,6 +4786,8 @@
|
|
4686
4786
|
case 0:
|
4687
4787
|
case 1:
|
4688
4788
|
case 2:
|
4789
|
+
case 13:
|
4790
|
+
case 14:
|
4689
4791
|
case 3:
|
4690
4792
|
case 4:
|
4691
4793
|
case 5:
|
@@ -4747,6 +4849,14 @@
|
|
4747
4849
|
case 2:
|
4748
4850
|
message.reportingContext = 2;
|
4749
4851
|
break;
|
4852
|
+
case "DEMAND_GEN_ADS":
|
4853
|
+
case 13:
|
4854
|
+
message.reportingContext = 13;
|
4855
|
+
break;
|
4856
|
+
case "DEMAND_GEN_ADS_DISCOVER_SURFACE":
|
4857
|
+
case 14:
|
4858
|
+
message.reportingContext = 14;
|
4859
|
+
break;
|
4750
4860
|
case "VIDEO_ADS":
|
4751
4861
|
case 3:
|
4752
4862
|
message.reportingContext = 3;
|
@@ -4929,6 +5039,24 @@
|
|
4929
5039
|
return values;
|
4930
5040
|
})();
|
4931
5041
|
|
5042
|
+
/**
|
5043
|
+
* ClickPotential enum.
|
5044
|
+
* @name google.shopping.merchant.reports.v1beta.ProductView.ClickPotential
|
5045
|
+
* @enum {number}
|
5046
|
+
* @property {number} CLICK_POTENTIAL_UNSPECIFIED=0 CLICK_POTENTIAL_UNSPECIFIED value
|
5047
|
+
* @property {number} LOW=1 LOW value
|
5048
|
+
* @property {number} MEDIUM=2 MEDIUM value
|
5049
|
+
* @property {number} HIGH=3 HIGH value
|
5050
|
+
*/
|
5051
|
+
ProductView.ClickPotential = (function() {
|
5052
|
+
var valuesById = {}, values = Object.create(valuesById);
|
5053
|
+
values[valuesById[0] = "CLICK_POTENTIAL_UNSPECIFIED"] = 0;
|
5054
|
+
values[valuesById[1] = "LOW"] = 1;
|
5055
|
+
values[valuesById[2] = "MEDIUM"] = 2;
|
5056
|
+
values[valuesById[3] = "HIGH"] = 3;
|
5057
|
+
return values;
|
5058
|
+
})();
|
5059
|
+
|
4932
5060
|
return ProductView;
|
4933
5061
|
})();
|
4934
5062
|
|
@@ -12099,6 +12227,8 @@
|
|
12099
12227
|
* @property {number} REPORTING_CONTEXT_ENUM_UNSPECIFIED=0 REPORTING_CONTEXT_ENUM_UNSPECIFIED value
|
12100
12228
|
* @property {number} SHOPPING_ADS=1 SHOPPING_ADS value
|
12101
12229
|
* @property {number} DISCOVERY_ADS=2 DISCOVERY_ADS value
|
12230
|
+
* @property {number} DEMAND_GEN_ADS=13 DEMAND_GEN_ADS value
|
12231
|
+
* @property {number} DEMAND_GEN_ADS_DISCOVER_SURFACE=14 DEMAND_GEN_ADS_DISCOVER_SURFACE value
|
12102
12232
|
* @property {number} VIDEO_ADS=3 VIDEO_ADS value
|
12103
12233
|
* @property {number} DISPLAY_ADS=4 DISPLAY_ADS value
|
12104
12234
|
* @property {number} LOCAL_INVENTORY_ADS=5 LOCAL_INVENTORY_ADS value
|
@@ -12115,6 +12245,8 @@
|
|
12115
12245
|
values[valuesById[0] = "REPORTING_CONTEXT_ENUM_UNSPECIFIED"] = 0;
|
12116
12246
|
values[valuesById[1] = "SHOPPING_ADS"] = 1;
|
12117
12247
|
values[valuesById[2] = "DISCOVERY_ADS"] = 2;
|
12248
|
+
values[valuesById[13] = "DEMAND_GEN_ADS"] = 13;
|
12249
|
+
values[valuesById[14] = "DEMAND_GEN_ADS_DISCOVER_SURFACE"] = 14;
|
12118
12250
|
values[valuesById[3] = "VIDEO_ADS"] = 3;
|
12119
12251
|
values[valuesById[4] = "DISPLAY_ADS"] = 4;
|
12120
12252
|
values[valuesById[5] = "LOCAL_INVENTORY_ADS"] = 5;
|
@@ -14114,6 +14246,7 @@
|
|
14114
14246
|
* @property {google.api.ClientLibraryOrganization|null} [organization] Publishing organization
|
14115
14247
|
* @property {Array.<google.api.IClientLibrarySettings>|null} [librarySettings] Publishing librarySettings
|
14116
14248
|
* @property {string|null} [protoReferenceDocumentationUri] Publishing protoReferenceDocumentationUri
|
14249
|
+
* @property {string|null} [restReferenceDocumentationUri] Publishing restReferenceDocumentationUri
|
14117
14250
|
*/
|
14118
14251
|
|
14119
14252
|
/**
|
@@ -14214,6 +14347,14 @@
|
|
14214
14347
|
*/
|
14215
14348
|
Publishing.prototype.protoReferenceDocumentationUri = "";
|
14216
14349
|
|
14350
|
+
/**
|
14351
|
+
* Publishing restReferenceDocumentationUri.
|
14352
|
+
* @member {string} restReferenceDocumentationUri
|
14353
|
+
* @memberof google.api.Publishing
|
14354
|
+
* @instance
|
14355
|
+
*/
|
14356
|
+
Publishing.prototype.restReferenceDocumentationUri = "";
|
14357
|
+
|
14217
14358
|
/**
|
14218
14359
|
* Creates a new Publishing instance using the specified properties.
|
14219
14360
|
* @function create
|
@@ -14261,6 +14402,8 @@
|
|
14261
14402
|
$root.google.api.ClientLibrarySettings.encode(message.librarySettings[i], writer.uint32(/* id 109, wireType 2 =*/874).fork()).ldelim();
|
14262
14403
|
if (message.protoReferenceDocumentationUri != null && Object.hasOwnProperty.call(message, "protoReferenceDocumentationUri"))
|
14263
14404
|
writer.uint32(/* id 110, wireType 2 =*/882).string(message.protoReferenceDocumentationUri);
|
14405
|
+
if (message.restReferenceDocumentationUri != null && Object.hasOwnProperty.call(message, "restReferenceDocumentationUri"))
|
14406
|
+
writer.uint32(/* id 111, wireType 2 =*/890).string(message.restReferenceDocumentationUri);
|
14264
14407
|
return writer;
|
14265
14408
|
};
|
14266
14409
|
|
@@ -14341,6 +14484,10 @@
|
|
14341
14484
|
message.protoReferenceDocumentationUri = reader.string();
|
14342
14485
|
break;
|
14343
14486
|
}
|
14487
|
+
case 111: {
|
14488
|
+
message.restReferenceDocumentationUri = reader.string();
|
14489
|
+
break;
|
14490
|
+
}
|
14344
14491
|
default:
|
14345
14492
|
reader.skipType(tag & 7);
|
14346
14493
|
break;
|
@@ -14433,6 +14580,9 @@
|
|
14433
14580
|
if (message.protoReferenceDocumentationUri != null && message.hasOwnProperty("protoReferenceDocumentationUri"))
|
14434
14581
|
if (!$util.isString(message.protoReferenceDocumentationUri))
|
14435
14582
|
return "protoReferenceDocumentationUri: string expected";
|
14583
|
+
if (message.restReferenceDocumentationUri != null && message.hasOwnProperty("restReferenceDocumentationUri"))
|
14584
|
+
if (!$util.isString(message.restReferenceDocumentationUri))
|
14585
|
+
return "restReferenceDocumentationUri: string expected";
|
14436
14586
|
return null;
|
14437
14587
|
};
|
14438
14588
|
|
@@ -14527,6 +14677,8 @@
|
|
14527
14677
|
}
|
14528
14678
|
if (object.protoReferenceDocumentationUri != null)
|
14529
14679
|
message.protoReferenceDocumentationUri = String(object.protoReferenceDocumentationUri);
|
14680
|
+
if (object.restReferenceDocumentationUri != null)
|
14681
|
+
message.restReferenceDocumentationUri = String(object.restReferenceDocumentationUri);
|
14530
14682
|
return message;
|
14531
14683
|
};
|
14532
14684
|
|
@@ -14556,6 +14708,7 @@
|
|
14556
14708
|
object.docTagPrefix = "";
|
14557
14709
|
object.organization = options.enums === String ? "CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED" : 0;
|
14558
14710
|
object.protoReferenceDocumentationUri = "";
|
14711
|
+
object.restReferenceDocumentationUri = "";
|
14559
14712
|
}
|
14560
14713
|
if (message.methodSettings && message.methodSettings.length) {
|
14561
14714
|
object.methodSettings = [];
|
@@ -14586,6 +14739,8 @@
|
|
14586
14739
|
}
|
14587
14740
|
if (message.protoReferenceDocumentationUri != null && message.hasOwnProperty("protoReferenceDocumentationUri"))
|
14588
14741
|
object.protoReferenceDocumentationUri = message.protoReferenceDocumentationUri;
|
14742
|
+
if (message.restReferenceDocumentationUri != null && message.hasOwnProperty("restReferenceDocumentationUri"))
|
14743
|
+
object.restReferenceDocumentationUri = message.restReferenceDocumentationUri;
|
14589
14744
|
return object;
|
14590
14745
|
};
|
14591
14746
|
|
@@ -23543,12 +23698,9 @@
|
|
23543
23698
|
if (message.uninterpretedOption != null && message.uninterpretedOption.length)
|
23544
23699
|
for (var i = 0; i < message.uninterpretedOption.length; ++i)
|
23545
23700
|
$root.google.protobuf.UninterpretedOption.encode(message.uninterpretedOption[i], writer.uint32(/* id 999, wireType 2 =*/7994).fork()).ldelim();
|
23546
|
-
if (message[".google.api.fieldBehavior"] != null && message[".google.api.fieldBehavior"].length)
|
23547
|
-
writer.uint32(/* id 1052, wireType 2 =*/8418).fork();
|
23701
|
+
if (message[".google.api.fieldBehavior"] != null && message[".google.api.fieldBehavior"].length)
|
23548
23702
|
for (var i = 0; i < message[".google.api.fieldBehavior"].length; ++i)
|
23549
|
-
writer.int32(message[".google.api.fieldBehavior"][i]);
|
23550
|
-
writer.ldelim();
|
23551
|
-
}
|
23703
|
+
writer.uint32(/* id 1052, wireType 0 =*/8416).int32(message[".google.api.fieldBehavior"][i]);
|
23552
23704
|
return writer;
|
23553
23705
|
};
|
23554
23706
|
|
@@ -25375,6 +25527,7 @@
|
|
25375
25527
|
* @property {Array.<google.protobuf.IUninterpretedOption>|null} [uninterpretedOption] ServiceOptions uninterpretedOption
|
25376
25528
|
* @property {string|null} [".google.api.defaultHost"] ServiceOptions .google.api.defaultHost
|
25377
25529
|
* @property {string|null} [".google.api.oauthScopes"] ServiceOptions .google.api.oauthScopes
|
25530
|
+
* @property {string|null} [".google.api.apiVersion"] ServiceOptions .google.api.apiVersion
|
25378
25531
|
*/
|
25379
25532
|
|
25380
25533
|
/**
|
@@ -25433,6 +25586,14 @@
|
|
25433
25586
|
*/
|
25434
25587
|
ServiceOptions.prototype[".google.api.oauthScopes"] = "";
|
25435
25588
|
|
25589
|
+
/**
|
25590
|
+
* ServiceOptions .google.api.apiVersion.
|
25591
|
+
* @member {string} .google.api.apiVersion
|
25592
|
+
* @memberof google.protobuf.ServiceOptions
|
25593
|
+
* @instance
|
25594
|
+
*/
|
25595
|
+
ServiceOptions.prototype[".google.api.apiVersion"] = "";
|
25596
|
+
|
25436
25597
|
/**
|
25437
25598
|
* Creates a new ServiceOptions instance using the specified properties.
|
25438
25599
|
* @function create
|
@@ -25468,6 +25629,8 @@
|
|
25468
25629
|
writer.uint32(/* id 1049, wireType 2 =*/8394).string(message[".google.api.defaultHost"]);
|
25469
25630
|
if (message[".google.api.oauthScopes"] != null && Object.hasOwnProperty.call(message, ".google.api.oauthScopes"))
|
25470
25631
|
writer.uint32(/* id 1050, wireType 2 =*/8402).string(message[".google.api.oauthScopes"]);
|
25632
|
+
if (message[".google.api.apiVersion"] != null && Object.hasOwnProperty.call(message, ".google.api.apiVersion"))
|
25633
|
+
writer.uint32(/* id 525000001, wireType 2 =*/4200000010).string(message[".google.api.apiVersion"]);
|
25471
25634
|
return writer;
|
25472
25635
|
};
|
25473
25636
|
|
@@ -25524,6 +25687,10 @@
|
|
25524
25687
|
message[".google.api.oauthScopes"] = reader.string();
|
25525
25688
|
break;
|
25526
25689
|
}
|
25690
|
+
case 525000001: {
|
25691
|
+
message[".google.api.apiVersion"] = reader.string();
|
25692
|
+
break;
|
25693
|
+
}
|
25527
25694
|
default:
|
25528
25695
|
reader.skipType(tag & 7);
|
25529
25696
|
break;
|
@@ -25582,6 +25749,9 @@
|
|
25582
25749
|
if (message[".google.api.oauthScopes"] != null && message.hasOwnProperty(".google.api.oauthScopes"))
|
25583
25750
|
if (!$util.isString(message[".google.api.oauthScopes"]))
|
25584
25751
|
return ".google.api.oauthScopes: string expected";
|
25752
|
+
if (message[".google.api.apiVersion"] != null && message.hasOwnProperty(".google.api.apiVersion"))
|
25753
|
+
if (!$util.isString(message[".google.api.apiVersion"]))
|
25754
|
+
return ".google.api.apiVersion: string expected";
|
25585
25755
|
return null;
|
25586
25756
|
};
|
25587
25757
|
|
@@ -25618,6 +25788,8 @@
|
|
25618
25788
|
message[".google.api.defaultHost"] = String(object[".google.api.defaultHost"]);
|
25619
25789
|
if (object[".google.api.oauthScopes"] != null)
|
25620
25790
|
message[".google.api.oauthScopes"] = String(object[".google.api.oauthScopes"]);
|
25791
|
+
if (object[".google.api.apiVersion"] != null)
|
25792
|
+
message[".google.api.apiVersion"] = String(object[".google.api.apiVersion"]);
|
25621
25793
|
return message;
|
25622
25794
|
};
|
25623
25795
|
|
@@ -25641,6 +25813,7 @@
|
|
25641
25813
|
object.features = null;
|
25642
25814
|
object[".google.api.defaultHost"] = "";
|
25643
25815
|
object[".google.api.oauthScopes"] = "";
|
25816
|
+
object[".google.api.apiVersion"] = "";
|
25644
25817
|
}
|
25645
25818
|
if (message.deprecated != null && message.hasOwnProperty("deprecated"))
|
25646
25819
|
object.deprecated = message.deprecated;
|
@@ -25655,6 +25828,8 @@
|
|
25655
25828
|
object[".google.api.defaultHost"] = message[".google.api.defaultHost"];
|
25656
25829
|
if (message[".google.api.oauthScopes"] != null && message.hasOwnProperty(".google.api.oauthScopes"))
|
25657
25830
|
object[".google.api.oauthScopes"] = message[".google.api.oauthScopes"];
|
25831
|
+
if (message[".google.api.apiVersion"] != null && message.hasOwnProperty(".google.api.apiVersion"))
|
25832
|
+
object[".google.api.apiVersion"] = message[".google.api.apiVersion"];
|
25658
25833
|
return object;
|
25659
25834
|
};
|
25660
25835
|
|
package/build/protos/protos.json
CHANGED
@@ -563,6 +563,11 @@
|
|
563
563
|
"oneof": [
|
564
564
|
"aggregatedReportingContextStatus"
|
565
565
|
]
|
566
|
+
},
|
567
|
+
"_clickPotentialRank": {
|
568
|
+
"oneof": [
|
569
|
+
"clickPotentialRank"
|
570
|
+
]
|
566
571
|
}
|
567
572
|
},
|
568
573
|
"fields": {
|
@@ -748,6 +753,17 @@
|
|
748
753
|
"rule": "repeated",
|
749
754
|
"type": "ItemIssue",
|
750
755
|
"id": 27
|
756
|
+
},
|
757
|
+
"clickPotential": {
|
758
|
+
"type": "ClickPotential",
|
759
|
+
"id": 29
|
760
|
+
},
|
761
|
+
"clickPotentialRank": {
|
762
|
+
"type": "int64",
|
763
|
+
"id": 30,
|
764
|
+
"options": {
|
765
|
+
"proto3_optional": true
|
766
|
+
}
|
751
767
|
}
|
752
768
|
},
|
753
769
|
"nested": {
|
@@ -885,6 +901,14 @@
|
|
885
901
|
"ELIGIBLE_LIMITED": 3,
|
886
902
|
"ELIGIBLE": 4
|
887
903
|
}
|
904
|
+
},
|
905
|
+
"ClickPotential": {
|
906
|
+
"values": {
|
907
|
+
"CLICK_POTENTIAL_UNSPECIFIED": 0,
|
908
|
+
"LOW": 1,
|
909
|
+
"MEDIUM": 2,
|
910
|
+
"HIGH": 3
|
911
|
+
}
|
888
912
|
}
|
889
913
|
}
|
890
914
|
},
|
@@ -2130,10 +2154,17 @@
|
|
2130
2154
|
"fields": {},
|
2131
2155
|
"nested": {
|
2132
2156
|
"ReportingContextEnum": {
|
2157
|
+
"valuesOptions": {
|
2158
|
+
"DISCOVERY_ADS": {
|
2159
|
+
"deprecated": true
|
2160
|
+
}
|
2161
|
+
},
|
2133
2162
|
"values": {
|
2134
2163
|
"REPORTING_CONTEXT_ENUM_UNSPECIFIED": 0,
|
2135
2164
|
"SHOPPING_ADS": 1,
|
2136
2165
|
"DISCOVERY_ADS": 2,
|
2166
|
+
"DEMAND_GEN_ADS": 13,
|
2167
|
+
"DEMAND_GEN_ADS_DISCOVER_SURFACE": 14,
|
2137
2168
|
"VIDEO_ADS": 3,
|
2138
2169
|
"DISPLAY_ADS": 4,
|
2139
2170
|
"LOCAL_INVENTORY_ADS": 5,
|
@@ -2277,6 +2308,11 @@
|
|
2277
2308
|
"id": 1050,
|
2278
2309
|
"extend": "google.protobuf.ServiceOptions"
|
2279
2310
|
},
|
2311
|
+
"apiVersion": {
|
2312
|
+
"type": "string",
|
2313
|
+
"id": 525000001,
|
2314
|
+
"extend": "google.protobuf.ServiceOptions"
|
2315
|
+
},
|
2280
2316
|
"CommonLanguageSettings": {
|
2281
2317
|
"fields": {
|
2282
2318
|
"referenceDocsUri": {
|
@@ -2385,6 +2421,10 @@
|
|
2385
2421
|
"protoReferenceDocumentationUri": {
|
2386
2422
|
"type": "string",
|
2387
2423
|
"id": 110
|
2424
|
+
},
|
2425
|
+
"restReferenceDocumentationUri": {
|
2426
|
+
"type": "string",
|
2427
|
+
"id": 111
|
2388
2428
|
}
|
2389
2429
|
}
|
2390
2430
|
},
|
@@ -2560,7 +2600,10 @@
|
|
2560
2600
|
"rule": "repeated",
|
2561
2601
|
"type": "google.api.FieldBehavior",
|
2562
2602
|
"id": 1052,
|
2563
|
-
"extend": "google.protobuf.FieldOptions"
|
2603
|
+
"extend": "google.protobuf.FieldOptions",
|
2604
|
+
"options": {
|
2605
|
+
"packed": false
|
2606
|
+
}
|
2564
2607
|
},
|
2565
2608
|
"FieldBehavior": {
|
2566
2609
|
"values": {
|
@@ -3681,9 +3724,21 @@
|
|
3681
3724
|
1001,
|
3682
3725
|
1001
|
3683
3726
|
],
|
3727
|
+
[
|
3728
|
+
1002,
|
3729
|
+
1002
|
3730
|
+
],
|
3731
|
+
[
|
3732
|
+
9990,
|
3733
|
+
9990
|
3734
|
+
],
|
3684
3735
|
[
|
3685
3736
|
9995,
|
3686
3737
|
9999
|
3738
|
+
],
|
3739
|
+
[
|
3740
|
+
10000,
|
3741
|
+
10000
|
3687
3742
|
]
|
3688
3743
|
],
|
3689
3744
|
"reserved": [
|
@@ -131,7 +131,7 @@ export declare class ReportServiceClient {
|
|
131
131
|
* fields.
|
132
132
|
* @param {number} [request.pageSize]
|
133
133
|
* Optional. Number of `ReportRows` to retrieve in a single page. Defaults to
|
134
|
-
*
|
134
|
+
* 1000. Values above 5000 are coerced to 5000.
|
135
135
|
* @param {string} [request.pageToken]
|
136
136
|
* Optional. Token of the page to retrieve. If not specified, the first page
|
137
137
|
* of results is returned. In order to request the next page of results, the
|
@@ -171,7 +171,7 @@ export declare class ReportServiceClient {
|
|
171
171
|
* fields.
|
172
172
|
* @param {number} [request.pageSize]
|
173
173
|
* Optional. Number of `ReportRows` to retrieve in a single page. Defaults to
|
174
|
-
*
|
174
|
+
* 1000. Values above 5000 are coerced to 5000.
|
175
175
|
* @param {string} [request.pageToken]
|
176
176
|
* Optional. Token of the page to retrieve. If not specified, the first page
|
177
177
|
* of results is returned. In order to request the next page of results, the
|
@@ -206,7 +206,7 @@ export declare class ReportServiceClient {
|
|
206
206
|
* fields.
|
207
207
|
* @param {number} [request.pageSize]
|
208
208
|
* Optional. Number of `ReportRows` to retrieve in a single page. Defaults to
|
209
|
-
*
|
209
|
+
* 1000. Values above 5000 are coerced to 5000.
|
210
210
|
* @param {string} [request.pageToken]
|
211
211
|
* Optional. Token of the page to retrieve. If not specified, the first page
|
212
212
|
* of results is returned. In order to request the next page of results, the
|
@@ -73,7 +73,7 @@ class ReportServiceClient {
|
|
73
73
|
* ```
|
74
74
|
*/
|
75
75
|
constructor(opts, gaxInstance) {
|
76
|
-
var _a, _b, _c, _d;
|
76
|
+
var _a, _b, _c, _d, _e;
|
77
77
|
this._terminated = false;
|
78
78
|
this.descriptors = {
|
79
79
|
page: {},
|
@@ -88,14 +88,17 @@ class ReportServiceClient {
|
|
88
88
|
(opts === null || opts === void 0 ? void 0 : opts.universe_domain) !== (opts === null || opts === void 0 ? void 0 : opts.universeDomain)) {
|
89
89
|
throw new Error('Please set either universe_domain or universeDomain, but not both.');
|
90
90
|
}
|
91
|
+
const universeDomainEnvVar = typeof process === 'object' && typeof process.env === 'object'
|
92
|
+
? process.env['GOOGLE_CLOUD_UNIVERSE_DOMAIN']
|
93
|
+
: undefined;
|
91
94
|
this._universeDomain =
|
92
|
-
(_b = (_a = opts === null || opts === void 0 ? void 0 : opts.universeDomain) !== null && _a !== void 0 ? _a : opts === null || opts === void 0 ? void 0 : opts.universe_domain) !== null && _b !== void 0 ? _b : 'googleapis.com';
|
95
|
+
(_c = (_b = (_a = opts === null || opts === void 0 ? void 0 : opts.universeDomain) !== null && _a !== void 0 ? _a : opts === null || opts === void 0 ? void 0 : opts.universe_domain) !== null && _b !== void 0 ? _b : universeDomainEnvVar) !== null && _c !== void 0 ? _c : 'googleapis.com';
|
93
96
|
this._servicePath = 'merchantapi.' + this._universeDomain;
|
94
97
|
const servicePath = (opts === null || opts === void 0 ? void 0 : opts.servicePath) || (opts === null || opts === void 0 ? void 0 : opts.apiEndpoint) || this._servicePath;
|
95
98
|
this._providedCustomServicePath = !!((opts === null || opts === void 0 ? void 0 : opts.servicePath) || (opts === null || opts === void 0 ? void 0 : opts.apiEndpoint));
|
96
99
|
const port = (opts === null || opts === void 0 ? void 0 : opts.port) || staticMembers.port;
|
97
|
-
const clientConfig = (
|
98
|
-
const fallback = (
|
100
|
+
const clientConfig = (_d = opts === null || opts === void 0 ? void 0 : opts.clientConfig) !== null && _d !== void 0 ? _d : {};
|
101
|
+
const fallback = (_e = opts === null || opts === void 0 ? void 0 : opts.fallback) !== null && _e !== void 0 ? _e : (typeof window !== 'undefined' && typeof (window === null || window === void 0 ? void 0 : window.fetch) === 'function');
|
99
102
|
opts = Object.assign({ servicePath, port, clientConfig, fallback }, opts);
|
100
103
|
// Request numeric enum values if REST transport is used.
|
101
104
|
opts.numericEnums = true;
|
@@ -125,7 +128,7 @@ class ReportServiceClient {
|
|
125
128
|
}
|
126
129
|
// Determine the client header string.
|
127
130
|
const clientHeader = [`gax/${this._gaxModule.version}`, `gapic/${version}`];
|
128
|
-
if (typeof process
|
131
|
+
if (typeof process === 'object' && 'versions' in process) {
|
129
132
|
clientHeader.push(`gl-node/${process.versions.node}`);
|
130
133
|
}
|
131
134
|
else {
|
@@ -205,7 +208,7 @@ class ReportServiceClient {
|
|
205
208
|
* @returns {string} The DNS address for this service.
|
206
209
|
*/
|
207
210
|
static get servicePath() {
|
208
|
-
if (typeof process
|
211
|
+
if (typeof process === 'object' &&
|
209
212
|
typeof process.emitWarning === 'function') {
|
210
213
|
process.emitWarning('Static servicePath is deprecated, please use the instance method instead.', 'DeprecationWarning');
|
211
214
|
}
|
@@ -217,7 +220,7 @@ class ReportServiceClient {
|
|
217
220
|
* @returns {string} The DNS address for this service.
|
218
221
|
*/
|
219
222
|
static get apiEndpoint() {
|
220
|
-
if (typeof process
|
223
|
+
if (typeof process === 'object' &&
|
221
224
|
typeof process.emitWarning === 'function') {
|
222
225
|
process.emitWarning('Static apiEndpoint is deprecated, please use the instance method instead.', 'DeprecationWarning');
|
223
226
|
}
|
@@ -295,7 +298,7 @@ class ReportServiceClient {
|
|
295
298
|
* fields.
|
296
299
|
* @param {number} [request.pageSize]
|
297
300
|
* Optional. Number of `ReportRows` to retrieve in a single page. Defaults to
|
298
|
-
*
|
301
|
+
* 1000. Values above 5000 are coerced to 5000.
|
299
302
|
* @param {string} [request.pageToken]
|
300
303
|
* Optional. Token of the page to retrieve. If not specified, the first page
|
301
304
|
* of results is returned. In order to request the next page of results, the
|
@@ -344,7 +347,7 @@ class ReportServiceClient {
|
|
344
347
|
* fields.
|
345
348
|
* @param {number} [request.pageSize]
|
346
349
|
* Optional. Number of `ReportRows` to retrieve in a single page. Defaults to
|
347
|
-
*
|
350
|
+
* 1000. Values above 5000 are coerced to 5000.
|
348
351
|
* @param {string} [request.pageToken]
|
349
352
|
* Optional. Token of the page to retrieve. If not specified, the first page
|
350
353
|
* of results is returned. In order to request the next page of results, the
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"report_service_client.js","sourceRoot":"","sources":["../../../src/v1beta/report_service_client.ts"],"names":[],"mappings":";AAAA,4BAA4B;AAC5B,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,kDAAkD;AAClD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;AACjC,EAAE;AACF,4EAA4E;AAC5E,iEAAiE;AACjE,qDAAqD;;;AAcrD,uDAAwD;AAExD;;;;GAIG;AACH,mEAAmE;AACnE,MAAM,OAAO,GAAG,OAAO,CAAC,uBAAuB,CAAC,CAAC,OAAO,CAAC;AAEzD;;;;;GAKG;AACH,MAAa,mBAAmB;IAqB9B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAsCG;IACH,YACE,IAAoB,EACpB,WAA8C;;QA7DxC,gBAAW,GAAG,KAAK,CAAC;QAU5B,gBAAW,GAAgB;YACzB,IAAI,EAAE,EAAE;YACR,MAAM,EAAE,EAAE;YACV,WAAW,EAAE,EAAE;YACf,QAAQ,EAAE,EAAE;SACb,CAAC;QAgDA,uDAAuD;QACvD,MAAM,aAAa,GAAG,IAAI,CAAC,WAAyC,CAAC;QACrE,IACE,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,eAAe;aACrB,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,cAAc,CAAA;YACpB,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,eAAe,OAAK,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,cAAc,CAAA,EAC9C,CAAC;YACD,MAAM,IAAI,KAAK,CACb,oEAAoE,CACrE,CAAC;QACJ,CAAC;QACD,IAAI,CAAC,eAAe;YAClB,MAAA,MAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,cAAc,
|
1
|
+
{"version":3,"file":"report_service_client.js","sourceRoot":"","sources":["../../../src/v1beta/report_service_client.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@google-shopping/reports",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.4.0",
|
4
4
|
"description": "Merchant API client for Node.js",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -51,8 +51,8 @@
|
|
51
51
|
"@types/mocha": "^9.0.0",
|
52
52
|
"@types/node": "^20.4.5",
|
53
53
|
"@types/sinon": "^17.0.0",
|
54
|
-
"c8": "^
|
55
|
-
"gapic-tools": "^0.
|
54
|
+
"c8": "^9.0.0",
|
55
|
+
"gapic-tools": "^0.4.0",
|
56
56
|
"gts": "^5.0.0",
|
57
57
|
"jsdoc": "^4.0.0",
|
58
58
|
"jsdoc-fresh": "^3.0.0",
|