@google-shopping/reports 0.1.0 → 0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.0](https://github.com/googleapis/google-cloud-node/compare/reports-v0.1.0...reports-v0.2.0) (2024-02-09)
4
+
5
+
6
+ ### Features
7
+
8
+ * Trusted Private Cloud support, use the universeDomain parameter ([#5029](https://github.com/googleapis/google-cloud-node/issues/5029)) ([09e59ad](https://github.com/googleapis/google-cloud-node/commit/09e59ad6e34001a33d01894ccd5a0643f1a84883))
9
+
3
10
  ## 0.1.0 (2023-12-05)
4
11
 
5
12
 
@@ -1,4 +1,4 @@
1
- // Copyright 2023 Google LLC
1
+ // Copyright 2024 Google LLC
2
2
  //
3
3
  // Licensed under the Apache License, Version 2.0 (the "License");
4
4
  // you may not use this file except in compliance with the License.
@@ -5676,6 +5676,9 @@ export namespace google {
5676
5676
 
5677
5677
  /** MethodSettings longRunning */
5678
5678
  longRunning?: (google.api.MethodSettings.ILongRunning|null);
5679
+
5680
+ /** MethodSettings autoPopulatedFields */
5681
+ autoPopulatedFields?: (string[]|null);
5679
5682
  }
5680
5683
 
5681
5684
  /** Represents a MethodSettings. */
@@ -5693,6 +5696,9 @@ export namespace google {
5693
5696
  /** MethodSettings longRunning. */
5694
5697
  public longRunning?: (google.api.MethodSettings.ILongRunning|null);
5695
5698
 
5699
+ /** MethodSettings autoPopulatedFields. */
5700
+ public autoPopulatedFields: string[];
5701
+
5696
5702
  /**
5697
5703
  * Creates a new MethodSettings instance using the specified properties.
5698
5704
  * @param [properties] Properties to set
@@ -5929,7 +5935,8 @@ export namespace google {
5929
5935
  INPUT_ONLY = 4,
5930
5936
  IMMUTABLE = 5,
5931
5937
  UNORDERED_LIST = 6,
5932
- NON_EMPTY_DEFAULT = 7
5938
+ NON_EMPTY_DEFAULT = 7,
5939
+ IDENTIFIER = 8
5933
5940
  }
5934
5941
  }
5935
5942
 
@@ -6033,6 +6040,21 @@ export namespace google {
6033
6040
  public static getTypeUrl(typeUrlPrefix?: string): string;
6034
6041
  }
6035
6042
 
6043
+ /** Edition enum. */
6044
+ enum Edition {
6045
+ EDITION_UNKNOWN = 0,
6046
+ EDITION_PROTO2 = 998,
6047
+ EDITION_PROTO3 = 999,
6048
+ EDITION_2023 = 1000,
6049
+ EDITION_2024 = 1001,
6050
+ EDITION_1_TEST_ONLY = 1,
6051
+ EDITION_2_TEST_ONLY = 2,
6052
+ EDITION_99997_TEST_ONLY = 99997,
6053
+ EDITION_99998_TEST_ONLY = 99998,
6054
+ EDITION_99999_TEST_ONLY = 99999,
6055
+ EDITION_MAX = 2147483647
6056
+ }
6057
+
6036
6058
  /** Properties of a FileDescriptorProto. */
6037
6059
  interface IFileDescriptorProto {
6038
6060
 
@@ -6073,7 +6095,7 @@ export namespace google {
6073
6095
  syntax?: (string|null);
6074
6096
 
6075
6097
  /** FileDescriptorProto edition */
6076
- edition?: (string|null);
6098
+ edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
6077
6099
  }
6078
6100
 
6079
6101
  /** Represents a FileDescriptorProto. */
@@ -6122,7 +6144,7 @@ export namespace google {
6122
6144
  public syntax: string;
6123
6145
 
6124
6146
  /** FileDescriptorProto edition. */
6125
- public edition: string;
6147
+ public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
6126
6148
 
6127
6149
  /**
6128
6150
  * Creates a new FileDescriptorProto instance using the specified properties.
@@ -6997,8 +7019,8 @@ export namespace google {
6997
7019
  /** Label enum. */
6998
7020
  enum Label {
6999
7021
  LABEL_OPTIONAL = 1,
7000
- LABEL_REQUIRED = 2,
7001
- LABEL_REPEATED = 3
7022
+ LABEL_REPEATED = 3,
7023
+ LABEL_REQUIRED = 2
7002
7024
  }
7003
7025
  }
7004
7026
 
@@ -7710,9 +7732,6 @@ export namespace google {
7710
7732
  /** FileOptions pyGenericServices */
7711
7733
  pyGenericServices?: (boolean|null);
7712
7734
 
7713
- /** FileOptions phpGenericServices */
7714
- phpGenericServices?: (boolean|null);
7715
-
7716
7735
  /** FileOptions deprecated */
7717
7736
  deprecated?: (boolean|null);
7718
7737
 
@@ -7786,9 +7805,6 @@ export namespace google {
7786
7805
  /** FileOptions pyGenericServices. */
7787
7806
  public pyGenericServices: boolean;
7788
7807
 
7789
- /** FileOptions phpGenericServices. */
7790
- public phpGenericServices: boolean;
7791
-
7792
7808
  /** FileOptions deprecated. */
7793
7809
  public deprecated: boolean;
7794
7810
 
@@ -8256,7 +8272,7 @@ export namespace google {
8256
8272
  interface IEditionDefault {
8257
8273
 
8258
8274
  /** EditionDefault edition */
8259
- edition?: (string|null);
8275
+ edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
8260
8276
 
8261
8277
  /** EditionDefault value */
8262
8278
  value?: (string|null);
@@ -8272,7 +8288,7 @@ export namespace google {
8272
8288
  constructor(properties?: google.protobuf.FieldOptions.IEditionDefault);
8273
8289
 
8274
8290
  /** EditionDefault edition. */
8275
- public edition: string;
8291
+ public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
8276
8292
 
8277
8293
  /** EditionDefault value. */
8278
8294
  public value: string;
@@ -9192,17 +9208,14 @@ export namespace google {
9192
9208
  /** FeatureSet repeatedFieldEncoding */
9193
9209
  repeatedFieldEncoding?: (google.protobuf.FeatureSet.RepeatedFieldEncoding|keyof typeof google.protobuf.FeatureSet.RepeatedFieldEncoding|null);
9194
9210
 
9195
- /** FeatureSet stringFieldValidation */
9196
- stringFieldValidation?: (google.protobuf.FeatureSet.StringFieldValidation|keyof typeof google.protobuf.FeatureSet.StringFieldValidation|null);
9211
+ /** FeatureSet utf8Validation */
9212
+ utf8Validation?: (google.protobuf.FeatureSet.Utf8Validation|keyof typeof google.protobuf.FeatureSet.Utf8Validation|null);
9197
9213
 
9198
9214
  /** FeatureSet messageEncoding */
9199
9215
  messageEncoding?: (google.protobuf.FeatureSet.MessageEncoding|keyof typeof google.protobuf.FeatureSet.MessageEncoding|null);
9200
9216
 
9201
9217
  /** FeatureSet jsonFormat */
9202
9218
  jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
9203
-
9204
- /** FeatureSet rawFeatures */
9205
- rawFeatures?: (google.protobuf.IFeatureSet|null);
9206
9219
  }
9207
9220
 
9208
9221
  /** Represents a FeatureSet. */
@@ -9223,8 +9236,8 @@ export namespace google {
9223
9236
  /** FeatureSet repeatedFieldEncoding. */
9224
9237
  public repeatedFieldEncoding: (google.protobuf.FeatureSet.RepeatedFieldEncoding|keyof typeof google.protobuf.FeatureSet.RepeatedFieldEncoding);
9225
9238
 
9226
- /** FeatureSet stringFieldValidation. */
9227
- public stringFieldValidation: (google.protobuf.FeatureSet.StringFieldValidation|keyof typeof google.protobuf.FeatureSet.StringFieldValidation);
9239
+ /** FeatureSet utf8Validation. */
9240
+ public utf8Validation: (google.protobuf.FeatureSet.Utf8Validation|keyof typeof google.protobuf.FeatureSet.Utf8Validation);
9228
9241
 
9229
9242
  /** FeatureSet messageEncoding. */
9230
9243
  public messageEncoding: (google.protobuf.FeatureSet.MessageEncoding|keyof typeof google.protobuf.FeatureSet.MessageEncoding);
@@ -9232,9 +9245,6 @@ export namespace google {
9232
9245
  /** FeatureSet jsonFormat. */
9233
9246
  public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
9234
9247
 
9235
- /** FeatureSet rawFeatures. */
9236
- public rawFeatures?: (google.protobuf.IFeatureSet|null);
9237
-
9238
9248
  /**
9239
9249
  * Creates a new FeatureSet instance using the specified properties.
9240
9250
  * @param [properties] Properties to set
@@ -9337,11 +9347,10 @@ export namespace google {
9337
9347
  EXPANDED = 2
9338
9348
  }
9339
9349
 
9340
- /** StringFieldValidation enum. */
9341
- enum StringFieldValidation {
9342
- STRING_FIELD_VALIDATION_UNKNOWN = 0,
9343
- MANDATORY = 1,
9344
- HINT = 2,
9350
+ /** Utf8Validation enum. */
9351
+ enum Utf8Validation {
9352
+ UTF8_VALIDATION_UNKNOWN = 0,
9353
+ VERIFY = 2,
9345
9354
  NONE = 3
9346
9355
  }
9347
9356
 
@@ -9360,6 +9369,221 @@ export namespace google {
9360
9369
  }
9361
9370
  }
9362
9371
 
9372
+ /** Properties of a FeatureSetDefaults. */
9373
+ interface IFeatureSetDefaults {
9374
+
9375
+ /** FeatureSetDefaults defaults */
9376
+ defaults?: (google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault[]|null);
9377
+
9378
+ /** FeatureSetDefaults minimumEdition */
9379
+ minimumEdition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
9380
+
9381
+ /** FeatureSetDefaults maximumEdition */
9382
+ maximumEdition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
9383
+ }
9384
+
9385
+ /** Represents a FeatureSetDefaults. */
9386
+ class FeatureSetDefaults implements IFeatureSetDefaults {
9387
+
9388
+ /**
9389
+ * Constructs a new FeatureSetDefaults.
9390
+ * @param [properties] Properties to set
9391
+ */
9392
+ constructor(properties?: google.protobuf.IFeatureSetDefaults);
9393
+
9394
+ /** FeatureSetDefaults defaults. */
9395
+ public defaults: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault[];
9396
+
9397
+ /** FeatureSetDefaults minimumEdition. */
9398
+ public minimumEdition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
9399
+
9400
+ /** FeatureSetDefaults maximumEdition. */
9401
+ public maximumEdition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
9402
+
9403
+ /**
9404
+ * Creates a new FeatureSetDefaults instance using the specified properties.
9405
+ * @param [properties] Properties to set
9406
+ * @returns FeatureSetDefaults instance
9407
+ */
9408
+ public static create(properties?: google.protobuf.IFeatureSetDefaults): google.protobuf.FeatureSetDefaults;
9409
+
9410
+ /**
9411
+ * Encodes the specified FeatureSetDefaults message. Does not implicitly {@link google.protobuf.FeatureSetDefaults.verify|verify} messages.
9412
+ * @param message FeatureSetDefaults message or plain object to encode
9413
+ * @param [writer] Writer to encode to
9414
+ * @returns Writer
9415
+ */
9416
+ public static encode(message: google.protobuf.IFeatureSetDefaults, writer?: $protobuf.Writer): $protobuf.Writer;
9417
+
9418
+ /**
9419
+ * Encodes the specified FeatureSetDefaults message, length delimited. Does not implicitly {@link google.protobuf.FeatureSetDefaults.verify|verify} messages.
9420
+ * @param message FeatureSetDefaults message or plain object to encode
9421
+ * @param [writer] Writer to encode to
9422
+ * @returns Writer
9423
+ */
9424
+ public static encodeDelimited(message: google.protobuf.IFeatureSetDefaults, writer?: $protobuf.Writer): $protobuf.Writer;
9425
+
9426
+ /**
9427
+ * Decodes a FeatureSetDefaults message from the specified reader or buffer.
9428
+ * @param reader Reader or buffer to decode from
9429
+ * @param [length] Message length if known beforehand
9430
+ * @returns FeatureSetDefaults
9431
+ * @throws {Error} If the payload is not a reader or valid buffer
9432
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
9433
+ */
9434
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSetDefaults;
9435
+
9436
+ /**
9437
+ * Decodes a FeatureSetDefaults message from the specified reader or buffer, length delimited.
9438
+ * @param reader Reader or buffer to decode from
9439
+ * @returns FeatureSetDefaults
9440
+ * @throws {Error} If the payload is not a reader or valid buffer
9441
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
9442
+ */
9443
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSetDefaults;
9444
+
9445
+ /**
9446
+ * Verifies a FeatureSetDefaults message.
9447
+ * @param message Plain object to verify
9448
+ * @returns `null` if valid, otherwise the reason why it is not
9449
+ */
9450
+ public static verify(message: { [k: string]: any }): (string|null);
9451
+
9452
+ /**
9453
+ * Creates a FeatureSetDefaults message from a plain object. Also converts values to their respective internal types.
9454
+ * @param object Plain object
9455
+ * @returns FeatureSetDefaults
9456
+ */
9457
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSetDefaults;
9458
+
9459
+ /**
9460
+ * Creates a plain object from a FeatureSetDefaults message. Also converts values to other types if specified.
9461
+ * @param message FeatureSetDefaults
9462
+ * @param [options] Conversion options
9463
+ * @returns Plain object
9464
+ */
9465
+ public static toObject(message: google.protobuf.FeatureSetDefaults, options?: $protobuf.IConversionOptions): { [k: string]: any };
9466
+
9467
+ /**
9468
+ * Converts this FeatureSetDefaults to JSON.
9469
+ * @returns JSON object
9470
+ */
9471
+ public toJSON(): { [k: string]: any };
9472
+
9473
+ /**
9474
+ * Gets the default type url for FeatureSetDefaults
9475
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
9476
+ * @returns The default type url
9477
+ */
9478
+ public static getTypeUrl(typeUrlPrefix?: string): string;
9479
+ }
9480
+
9481
+ namespace FeatureSetDefaults {
9482
+
9483
+ /** Properties of a FeatureSetEditionDefault. */
9484
+ interface IFeatureSetEditionDefault {
9485
+
9486
+ /** FeatureSetEditionDefault edition */
9487
+ edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
9488
+
9489
+ /** FeatureSetEditionDefault features */
9490
+ features?: (google.protobuf.IFeatureSet|null);
9491
+ }
9492
+
9493
+ /** Represents a FeatureSetEditionDefault. */
9494
+ class FeatureSetEditionDefault implements IFeatureSetEditionDefault {
9495
+
9496
+ /**
9497
+ * Constructs a new FeatureSetEditionDefault.
9498
+ * @param [properties] Properties to set
9499
+ */
9500
+ constructor(properties?: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault);
9501
+
9502
+ /** FeatureSetEditionDefault edition. */
9503
+ public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
9504
+
9505
+ /** FeatureSetEditionDefault features. */
9506
+ public features?: (google.protobuf.IFeatureSet|null);
9507
+
9508
+ /**
9509
+ * Creates a new FeatureSetEditionDefault instance using the specified properties.
9510
+ * @param [properties] Properties to set
9511
+ * @returns FeatureSetEditionDefault instance
9512
+ */
9513
+ public static create(properties?: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
9514
+
9515
+ /**
9516
+ * Encodes the specified FeatureSetEditionDefault message. Does not implicitly {@link google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.verify|verify} messages.
9517
+ * @param message FeatureSetEditionDefault message or plain object to encode
9518
+ * @param [writer] Writer to encode to
9519
+ * @returns Writer
9520
+ */
9521
+ public static encode(message: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
9522
+
9523
+ /**
9524
+ * Encodes the specified FeatureSetEditionDefault message, length delimited. Does not implicitly {@link google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.verify|verify} messages.
9525
+ * @param message FeatureSetEditionDefault message or plain object to encode
9526
+ * @param [writer] Writer to encode to
9527
+ * @returns Writer
9528
+ */
9529
+ public static encodeDelimited(message: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
9530
+
9531
+ /**
9532
+ * Decodes a FeatureSetEditionDefault message from the specified reader or buffer.
9533
+ * @param reader Reader or buffer to decode from
9534
+ * @param [length] Message length if known beforehand
9535
+ * @returns FeatureSetEditionDefault
9536
+ * @throws {Error} If the payload is not a reader or valid buffer
9537
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
9538
+ */
9539
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
9540
+
9541
+ /**
9542
+ * Decodes a FeatureSetEditionDefault message from the specified reader or buffer, length delimited.
9543
+ * @param reader Reader or buffer to decode from
9544
+ * @returns FeatureSetEditionDefault
9545
+ * @throws {Error} If the payload is not a reader or valid buffer
9546
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
9547
+ */
9548
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
9549
+
9550
+ /**
9551
+ * Verifies a FeatureSetEditionDefault message.
9552
+ * @param message Plain object to verify
9553
+ * @returns `null` if valid, otherwise the reason why it is not
9554
+ */
9555
+ public static verify(message: { [k: string]: any }): (string|null);
9556
+
9557
+ /**
9558
+ * Creates a FeatureSetEditionDefault message from a plain object. Also converts values to their respective internal types.
9559
+ * @param object Plain object
9560
+ * @returns FeatureSetEditionDefault
9561
+ */
9562
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
9563
+
9564
+ /**
9565
+ * Creates a plain object from a FeatureSetEditionDefault message. Also converts values to other types if specified.
9566
+ * @param message FeatureSetEditionDefault
9567
+ * @param [options] Conversion options
9568
+ * @returns Plain object
9569
+ */
9570
+ public static toObject(message: google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault, options?: $protobuf.IConversionOptions): { [k: string]: any };
9571
+
9572
+ /**
9573
+ * Converts this FeatureSetEditionDefault to JSON.
9574
+ * @returns JSON object
9575
+ */
9576
+ public toJSON(): { [k: string]: any };
9577
+
9578
+ /**
9579
+ * Gets the default type url for FeatureSetEditionDefault
9580
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
9581
+ * @returns The default type url
9582
+ */
9583
+ public static getTypeUrl(typeUrlPrefix?: string): string;
9584
+ }
9585
+ }
9586
+
9363
9587
  /** Properties of a SourceCodeInfo. */
9364
9588
  interface ISourceCodeInfo {
9365
9589