@google-shopping/lfp 0.6.0 → 0.7.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.
Files changed (36) hide show
  1. package/README.md +7 -0
  2. package/build/protos/google/shopping/merchant/lfp/v1/lfpinventory.proto +152 -0
  3. package/build/protos/google/shopping/merchant/lfp/v1/lfpmerchantstate.proto +209 -0
  4. package/build/protos/google/shopping/merchant/lfp/v1/lfpsale.proto +125 -0
  5. package/build/protos/google/shopping/merchant/lfp/v1/lfpstore.proto +252 -0
  6. package/build/protos/protos.d.ts +2717 -20
  7. package/build/protos/protos.js +9197 -1880
  8. package/build/protos/protos.json +1049 -22
  9. package/build/src/index.d.ts +3 -1
  10. package/build/src/index.js +4 -2
  11. package/build/src/index.js.map +1 -1
  12. package/build/src/v1/gapic_metadata.json +139 -0
  13. package/build/src/v1/index.d.ts +4 -0
  14. package/build/src/v1/index.js +29 -0
  15. package/build/src/v1/index.js.map +1 -0
  16. package/build/src/v1/lfp_inventory_service_client.d.ts +292 -0
  17. package/build/src/v1/lfp_inventory_service_client.js +527 -0
  18. package/build/src/v1/lfp_inventory_service_client.js.map +1 -0
  19. package/build/src/v1/lfp_inventory_service_client_config.json +43 -0
  20. package/build/src/v1/lfp_inventory_service_proto_list.json +7 -0
  21. package/build/src/v1/lfp_merchant_state_service_client.d.ts +277 -0
  22. package/build/src/v1/lfp_merchant_state_service_client.js +508 -0
  23. package/build/src/v1/lfp_merchant_state_service_client.js.map +1 -0
  24. package/build/src/v1/lfp_merchant_state_service_client_config.json +43 -0
  25. package/build/src/v1/lfp_merchant_state_service_proto_list.json +7 -0
  26. package/build/src/v1/lfp_sale_service_client.d.ts +275 -0
  27. package/build/src/v1/lfp_sale_service_client.js +505 -0
  28. package/build/src/v1/lfp_sale_service_client.js.map +1 -0
  29. package/build/src/v1/lfp_sale_service_client_config.json +43 -0
  30. package/build/src/v1/lfp_sale_service_proto_list.json +7 -0
  31. package/build/src/v1/lfp_store_service_client.d.ts +454 -0
  32. package/build/src/v1/lfp_store_service_client.js +734 -0
  33. package/build/src/v1/lfp_store_service_client.js.map +1 -0
  34. package/build/src/v1/lfp_store_service_client_config.json +58 -0
  35. package/build/src/v1/lfp_store_service_proto_list.json +7 -0
  36. package/package.json +1 -1
@@ -26,6 +26,2086 @@ export namespace google {
26
26
  /** Namespace lfp. */
27
27
  namespace lfp {
28
28
 
29
+ /** Namespace v1. */
30
+ namespace v1 {
31
+
32
+ /** Represents a LfpInventoryService */
33
+ class LfpInventoryService extends $protobuf.rpc.Service {
34
+
35
+ /**
36
+ * Constructs a new LfpInventoryService service.
37
+ * @param rpcImpl RPC implementation
38
+ * @param [requestDelimited=false] Whether requests are length-delimited
39
+ * @param [responseDelimited=false] Whether responses are length-delimited
40
+ */
41
+ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean);
42
+
43
+ /**
44
+ * Creates new LfpInventoryService service using the specified rpc implementation.
45
+ * @param rpcImpl RPC implementation
46
+ * @param [requestDelimited=false] Whether requests are length-delimited
47
+ * @param [responseDelimited=false] Whether responses are length-delimited
48
+ * @returns RPC service. Useful where requests and/or responses are streamed.
49
+ */
50
+ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): LfpInventoryService;
51
+
52
+ /**
53
+ * Calls InsertLfpInventory.
54
+ * @param request InsertLfpInventoryRequest message or plain object
55
+ * @param callback Node-style callback called with the error, if any, and LfpInventory
56
+ */
57
+ public insertLfpInventory(request: google.shopping.merchant.lfp.v1.IInsertLfpInventoryRequest, callback: google.shopping.merchant.lfp.v1.LfpInventoryService.InsertLfpInventoryCallback): void;
58
+
59
+ /**
60
+ * Calls InsertLfpInventory.
61
+ * @param request InsertLfpInventoryRequest message or plain object
62
+ * @returns Promise
63
+ */
64
+ public insertLfpInventory(request: google.shopping.merchant.lfp.v1.IInsertLfpInventoryRequest): Promise<google.shopping.merchant.lfp.v1.LfpInventory>;
65
+ }
66
+
67
+ namespace LfpInventoryService {
68
+
69
+ /**
70
+ * Callback as used by {@link google.shopping.merchant.lfp.v1.LfpInventoryService|insertLfpInventory}.
71
+ * @param error Error, if any
72
+ * @param [response] LfpInventory
73
+ */
74
+ type InsertLfpInventoryCallback = (error: (Error|null), response?: google.shopping.merchant.lfp.v1.LfpInventory) => void;
75
+ }
76
+
77
+ /** Properties of a LfpInventory. */
78
+ interface ILfpInventory {
79
+
80
+ /** LfpInventory name */
81
+ name?: (string|null);
82
+
83
+ /** LfpInventory targetAccount */
84
+ targetAccount?: (number|Long|string|null);
85
+
86
+ /** LfpInventory storeCode */
87
+ storeCode?: (string|null);
88
+
89
+ /** LfpInventory offerId */
90
+ offerId?: (string|null);
91
+
92
+ /** LfpInventory regionCode */
93
+ regionCode?: (string|null);
94
+
95
+ /** LfpInventory contentLanguage */
96
+ contentLanguage?: (string|null);
97
+
98
+ /** LfpInventory gtin */
99
+ gtin?: (string|null);
100
+
101
+ /** LfpInventory price */
102
+ price?: (google.shopping.type.IPrice|null);
103
+
104
+ /** LfpInventory availability */
105
+ availability?: (string|null);
106
+
107
+ /** LfpInventory quantity */
108
+ quantity?: (number|Long|string|null);
109
+
110
+ /** LfpInventory collectionTime */
111
+ collectionTime?: (google.protobuf.ITimestamp|null);
112
+
113
+ /** LfpInventory pickupMethod */
114
+ pickupMethod?: (string|null);
115
+
116
+ /** LfpInventory pickupSla */
117
+ pickupSla?: (string|null);
118
+
119
+ /** LfpInventory feedLabel */
120
+ feedLabel?: (string|null);
121
+ }
122
+
123
+ /** Represents a LfpInventory. */
124
+ class LfpInventory implements ILfpInventory {
125
+
126
+ /**
127
+ * Constructs a new LfpInventory.
128
+ * @param [properties] Properties to set
129
+ */
130
+ constructor(properties?: google.shopping.merchant.lfp.v1.ILfpInventory);
131
+
132
+ /** LfpInventory name. */
133
+ public name: string;
134
+
135
+ /** LfpInventory targetAccount. */
136
+ public targetAccount: (number|Long|string);
137
+
138
+ /** LfpInventory storeCode. */
139
+ public storeCode: string;
140
+
141
+ /** LfpInventory offerId. */
142
+ public offerId: string;
143
+
144
+ /** LfpInventory regionCode. */
145
+ public regionCode: string;
146
+
147
+ /** LfpInventory contentLanguage. */
148
+ public contentLanguage: string;
149
+
150
+ /** LfpInventory gtin. */
151
+ public gtin?: (string|null);
152
+
153
+ /** LfpInventory price. */
154
+ public price?: (google.shopping.type.IPrice|null);
155
+
156
+ /** LfpInventory availability. */
157
+ public availability: string;
158
+
159
+ /** LfpInventory quantity. */
160
+ public quantity?: (number|Long|string|null);
161
+
162
+ /** LfpInventory collectionTime. */
163
+ public collectionTime?: (google.protobuf.ITimestamp|null);
164
+
165
+ /** LfpInventory pickupMethod. */
166
+ public pickupMethod?: (string|null);
167
+
168
+ /** LfpInventory pickupSla. */
169
+ public pickupSla?: (string|null);
170
+
171
+ /** LfpInventory feedLabel. */
172
+ public feedLabel?: (string|null);
173
+
174
+ /**
175
+ * Creates a new LfpInventory instance using the specified properties.
176
+ * @param [properties] Properties to set
177
+ * @returns LfpInventory instance
178
+ */
179
+ public static create(properties?: google.shopping.merchant.lfp.v1.ILfpInventory): google.shopping.merchant.lfp.v1.LfpInventory;
180
+
181
+ /**
182
+ * Encodes the specified LfpInventory message. Does not implicitly {@link google.shopping.merchant.lfp.v1.LfpInventory.verify|verify} messages.
183
+ * @param message LfpInventory message or plain object to encode
184
+ * @param [writer] Writer to encode to
185
+ * @returns Writer
186
+ */
187
+ public static encode(message: google.shopping.merchant.lfp.v1.ILfpInventory, writer?: $protobuf.Writer): $protobuf.Writer;
188
+
189
+ /**
190
+ * Encodes the specified LfpInventory message, length delimited. Does not implicitly {@link google.shopping.merchant.lfp.v1.LfpInventory.verify|verify} messages.
191
+ * @param message LfpInventory message or plain object to encode
192
+ * @param [writer] Writer to encode to
193
+ * @returns Writer
194
+ */
195
+ public static encodeDelimited(message: google.shopping.merchant.lfp.v1.ILfpInventory, writer?: $protobuf.Writer): $protobuf.Writer;
196
+
197
+ /**
198
+ * Decodes a LfpInventory message from the specified reader or buffer.
199
+ * @param reader Reader or buffer to decode from
200
+ * @param [length] Message length if known beforehand
201
+ * @returns LfpInventory
202
+ * @throws {Error} If the payload is not a reader or valid buffer
203
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
204
+ */
205
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.lfp.v1.LfpInventory;
206
+
207
+ /**
208
+ * Decodes a LfpInventory message from the specified reader or buffer, length delimited.
209
+ * @param reader Reader or buffer to decode from
210
+ * @returns LfpInventory
211
+ * @throws {Error} If the payload is not a reader or valid buffer
212
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
213
+ */
214
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.lfp.v1.LfpInventory;
215
+
216
+ /**
217
+ * Verifies a LfpInventory message.
218
+ * @param message Plain object to verify
219
+ * @returns `null` if valid, otherwise the reason why it is not
220
+ */
221
+ public static verify(message: { [k: string]: any }): (string|null);
222
+
223
+ /**
224
+ * Creates a LfpInventory message from a plain object. Also converts values to their respective internal types.
225
+ * @param object Plain object
226
+ * @returns LfpInventory
227
+ */
228
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.lfp.v1.LfpInventory;
229
+
230
+ /**
231
+ * Creates a plain object from a LfpInventory message. Also converts values to other types if specified.
232
+ * @param message LfpInventory
233
+ * @param [options] Conversion options
234
+ * @returns Plain object
235
+ */
236
+ public static toObject(message: google.shopping.merchant.lfp.v1.LfpInventory, options?: $protobuf.IConversionOptions): { [k: string]: any };
237
+
238
+ /**
239
+ * Converts this LfpInventory to JSON.
240
+ * @returns JSON object
241
+ */
242
+ public toJSON(): { [k: string]: any };
243
+
244
+ /**
245
+ * Gets the default type url for LfpInventory
246
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
247
+ * @returns The default type url
248
+ */
249
+ public static getTypeUrl(typeUrlPrefix?: string): string;
250
+ }
251
+
252
+ /** Properties of an InsertLfpInventoryRequest. */
253
+ interface IInsertLfpInventoryRequest {
254
+
255
+ /** InsertLfpInventoryRequest parent */
256
+ parent?: (string|null);
257
+
258
+ /** InsertLfpInventoryRequest lfpInventory */
259
+ lfpInventory?: (google.shopping.merchant.lfp.v1.ILfpInventory|null);
260
+ }
261
+
262
+ /** Represents an InsertLfpInventoryRequest. */
263
+ class InsertLfpInventoryRequest implements IInsertLfpInventoryRequest {
264
+
265
+ /**
266
+ * Constructs a new InsertLfpInventoryRequest.
267
+ * @param [properties] Properties to set
268
+ */
269
+ constructor(properties?: google.shopping.merchant.lfp.v1.IInsertLfpInventoryRequest);
270
+
271
+ /** InsertLfpInventoryRequest parent. */
272
+ public parent: string;
273
+
274
+ /** InsertLfpInventoryRequest lfpInventory. */
275
+ public lfpInventory?: (google.shopping.merchant.lfp.v1.ILfpInventory|null);
276
+
277
+ /**
278
+ * Creates a new InsertLfpInventoryRequest instance using the specified properties.
279
+ * @param [properties] Properties to set
280
+ * @returns InsertLfpInventoryRequest instance
281
+ */
282
+ public static create(properties?: google.shopping.merchant.lfp.v1.IInsertLfpInventoryRequest): google.shopping.merchant.lfp.v1.InsertLfpInventoryRequest;
283
+
284
+ /**
285
+ * Encodes the specified InsertLfpInventoryRequest message. Does not implicitly {@link google.shopping.merchant.lfp.v1.InsertLfpInventoryRequest.verify|verify} messages.
286
+ * @param message InsertLfpInventoryRequest message or plain object to encode
287
+ * @param [writer] Writer to encode to
288
+ * @returns Writer
289
+ */
290
+ public static encode(message: google.shopping.merchant.lfp.v1.IInsertLfpInventoryRequest, writer?: $protobuf.Writer): $protobuf.Writer;
291
+
292
+ /**
293
+ * Encodes the specified InsertLfpInventoryRequest message, length delimited. Does not implicitly {@link google.shopping.merchant.lfp.v1.InsertLfpInventoryRequest.verify|verify} messages.
294
+ * @param message InsertLfpInventoryRequest message or plain object to encode
295
+ * @param [writer] Writer to encode to
296
+ * @returns Writer
297
+ */
298
+ public static encodeDelimited(message: google.shopping.merchant.lfp.v1.IInsertLfpInventoryRequest, writer?: $protobuf.Writer): $protobuf.Writer;
299
+
300
+ /**
301
+ * Decodes an InsertLfpInventoryRequest message from the specified reader or buffer.
302
+ * @param reader Reader or buffer to decode from
303
+ * @param [length] Message length if known beforehand
304
+ * @returns InsertLfpInventoryRequest
305
+ * @throws {Error} If the payload is not a reader or valid buffer
306
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
307
+ */
308
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.lfp.v1.InsertLfpInventoryRequest;
309
+
310
+ /**
311
+ * Decodes an InsertLfpInventoryRequest message from the specified reader or buffer, length delimited.
312
+ * @param reader Reader or buffer to decode from
313
+ * @returns InsertLfpInventoryRequest
314
+ * @throws {Error} If the payload is not a reader or valid buffer
315
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
316
+ */
317
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.lfp.v1.InsertLfpInventoryRequest;
318
+
319
+ /**
320
+ * Verifies an InsertLfpInventoryRequest message.
321
+ * @param message Plain object to verify
322
+ * @returns `null` if valid, otherwise the reason why it is not
323
+ */
324
+ public static verify(message: { [k: string]: any }): (string|null);
325
+
326
+ /**
327
+ * Creates an InsertLfpInventoryRequest message from a plain object. Also converts values to their respective internal types.
328
+ * @param object Plain object
329
+ * @returns InsertLfpInventoryRequest
330
+ */
331
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.lfp.v1.InsertLfpInventoryRequest;
332
+
333
+ /**
334
+ * Creates a plain object from an InsertLfpInventoryRequest message. Also converts values to other types if specified.
335
+ * @param message InsertLfpInventoryRequest
336
+ * @param [options] Conversion options
337
+ * @returns Plain object
338
+ */
339
+ public static toObject(message: google.shopping.merchant.lfp.v1.InsertLfpInventoryRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
340
+
341
+ /**
342
+ * Converts this InsertLfpInventoryRequest to JSON.
343
+ * @returns JSON object
344
+ */
345
+ public toJSON(): { [k: string]: any };
346
+
347
+ /**
348
+ * Gets the default type url for InsertLfpInventoryRequest
349
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
350
+ * @returns The default type url
351
+ */
352
+ public static getTypeUrl(typeUrlPrefix?: string): string;
353
+ }
354
+
355
+ /** Represents a LfpMerchantStateService */
356
+ class LfpMerchantStateService extends $protobuf.rpc.Service {
357
+
358
+ /**
359
+ * Constructs a new LfpMerchantStateService service.
360
+ * @param rpcImpl RPC implementation
361
+ * @param [requestDelimited=false] Whether requests are length-delimited
362
+ * @param [responseDelimited=false] Whether responses are length-delimited
363
+ */
364
+ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean);
365
+
366
+ /**
367
+ * Creates new LfpMerchantStateService service using the specified rpc implementation.
368
+ * @param rpcImpl RPC implementation
369
+ * @param [requestDelimited=false] Whether requests are length-delimited
370
+ * @param [responseDelimited=false] Whether responses are length-delimited
371
+ * @returns RPC service. Useful where requests and/or responses are streamed.
372
+ */
373
+ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): LfpMerchantStateService;
374
+
375
+ /**
376
+ * Calls GetLfpMerchantState.
377
+ * @param request GetLfpMerchantStateRequest message or plain object
378
+ * @param callback Node-style callback called with the error, if any, and LfpMerchantState
379
+ */
380
+ public getLfpMerchantState(request: google.shopping.merchant.lfp.v1.IGetLfpMerchantStateRequest, callback: google.shopping.merchant.lfp.v1.LfpMerchantStateService.GetLfpMerchantStateCallback): void;
381
+
382
+ /**
383
+ * Calls GetLfpMerchantState.
384
+ * @param request GetLfpMerchantStateRequest message or plain object
385
+ * @returns Promise
386
+ */
387
+ public getLfpMerchantState(request: google.shopping.merchant.lfp.v1.IGetLfpMerchantStateRequest): Promise<google.shopping.merchant.lfp.v1.LfpMerchantState>;
388
+ }
389
+
390
+ namespace LfpMerchantStateService {
391
+
392
+ /**
393
+ * Callback as used by {@link google.shopping.merchant.lfp.v1.LfpMerchantStateService|getLfpMerchantState}.
394
+ * @param error Error, if any
395
+ * @param [response] LfpMerchantState
396
+ */
397
+ type GetLfpMerchantStateCallback = (error: (Error|null), response?: google.shopping.merchant.lfp.v1.LfpMerchantState) => void;
398
+ }
399
+
400
+ /** Properties of a LfpMerchantState. */
401
+ interface ILfpMerchantState {
402
+
403
+ /** LfpMerchantState name */
404
+ name?: (string|null);
405
+
406
+ /** LfpMerchantState linkedGbps */
407
+ linkedGbps?: (number|Long|string|null);
408
+
409
+ /** LfpMerchantState storeStates */
410
+ storeStates?: (google.shopping.merchant.lfp.v1.LfpMerchantState.ILfpStoreState[]|null);
411
+
412
+ /** LfpMerchantState inventoryStats */
413
+ inventoryStats?: (google.shopping.merchant.lfp.v1.LfpMerchantState.IInventoryStats|null);
414
+
415
+ /** LfpMerchantState countrySettings */
416
+ countrySettings?: (google.shopping.merchant.lfp.v1.LfpMerchantState.ICountrySettings[]|null);
417
+ }
418
+
419
+ /** Represents a LfpMerchantState. */
420
+ class LfpMerchantState implements ILfpMerchantState {
421
+
422
+ /**
423
+ * Constructs a new LfpMerchantState.
424
+ * @param [properties] Properties to set
425
+ */
426
+ constructor(properties?: google.shopping.merchant.lfp.v1.ILfpMerchantState);
427
+
428
+ /** LfpMerchantState name. */
429
+ public name: string;
430
+
431
+ /** LfpMerchantState linkedGbps. */
432
+ public linkedGbps: (number|Long|string);
433
+
434
+ /** LfpMerchantState storeStates. */
435
+ public storeStates: google.shopping.merchant.lfp.v1.LfpMerchantState.ILfpStoreState[];
436
+
437
+ /** LfpMerchantState inventoryStats. */
438
+ public inventoryStats?: (google.shopping.merchant.lfp.v1.LfpMerchantState.IInventoryStats|null);
439
+
440
+ /** LfpMerchantState countrySettings. */
441
+ public countrySettings: google.shopping.merchant.lfp.v1.LfpMerchantState.ICountrySettings[];
442
+
443
+ /**
444
+ * Creates a new LfpMerchantState instance using the specified properties.
445
+ * @param [properties] Properties to set
446
+ * @returns LfpMerchantState instance
447
+ */
448
+ public static create(properties?: google.shopping.merchant.lfp.v1.ILfpMerchantState): google.shopping.merchant.lfp.v1.LfpMerchantState;
449
+
450
+ /**
451
+ * Encodes the specified LfpMerchantState message. Does not implicitly {@link google.shopping.merchant.lfp.v1.LfpMerchantState.verify|verify} messages.
452
+ * @param message LfpMerchantState message or plain object to encode
453
+ * @param [writer] Writer to encode to
454
+ * @returns Writer
455
+ */
456
+ public static encode(message: google.shopping.merchant.lfp.v1.ILfpMerchantState, writer?: $protobuf.Writer): $protobuf.Writer;
457
+
458
+ /**
459
+ * Encodes the specified LfpMerchantState message, length delimited. Does not implicitly {@link google.shopping.merchant.lfp.v1.LfpMerchantState.verify|verify} messages.
460
+ * @param message LfpMerchantState message or plain object to encode
461
+ * @param [writer] Writer to encode to
462
+ * @returns Writer
463
+ */
464
+ public static encodeDelimited(message: google.shopping.merchant.lfp.v1.ILfpMerchantState, writer?: $protobuf.Writer): $protobuf.Writer;
465
+
466
+ /**
467
+ * Decodes a LfpMerchantState message from the specified reader or buffer.
468
+ * @param reader Reader or buffer to decode from
469
+ * @param [length] Message length if known beforehand
470
+ * @returns LfpMerchantState
471
+ * @throws {Error} If the payload is not a reader or valid buffer
472
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
473
+ */
474
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.lfp.v1.LfpMerchantState;
475
+
476
+ /**
477
+ * Decodes a LfpMerchantState message from the specified reader or buffer, length delimited.
478
+ * @param reader Reader or buffer to decode from
479
+ * @returns LfpMerchantState
480
+ * @throws {Error} If the payload is not a reader or valid buffer
481
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
482
+ */
483
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.lfp.v1.LfpMerchantState;
484
+
485
+ /**
486
+ * Verifies a LfpMerchantState message.
487
+ * @param message Plain object to verify
488
+ * @returns `null` if valid, otherwise the reason why it is not
489
+ */
490
+ public static verify(message: { [k: string]: any }): (string|null);
491
+
492
+ /**
493
+ * Creates a LfpMerchantState message from a plain object. Also converts values to their respective internal types.
494
+ * @param object Plain object
495
+ * @returns LfpMerchantState
496
+ */
497
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.lfp.v1.LfpMerchantState;
498
+
499
+ /**
500
+ * Creates a plain object from a LfpMerchantState message. Also converts values to other types if specified.
501
+ * @param message LfpMerchantState
502
+ * @param [options] Conversion options
503
+ * @returns Plain object
504
+ */
505
+ public static toObject(message: google.shopping.merchant.lfp.v1.LfpMerchantState, options?: $protobuf.IConversionOptions): { [k: string]: any };
506
+
507
+ /**
508
+ * Converts this LfpMerchantState to JSON.
509
+ * @returns JSON object
510
+ */
511
+ public toJSON(): { [k: string]: any };
512
+
513
+ /**
514
+ * Gets the default type url for LfpMerchantState
515
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
516
+ * @returns The default type url
517
+ */
518
+ public static getTypeUrl(typeUrlPrefix?: string): string;
519
+ }
520
+
521
+ namespace LfpMerchantState {
522
+
523
+ /** Properties of a LfpStoreState. */
524
+ interface ILfpStoreState {
525
+
526
+ /** LfpStoreState storeCode */
527
+ storeCode?: (string|null);
528
+
529
+ /** LfpStoreState matchingState */
530
+ matchingState?: (google.shopping.merchant.lfp.v1.LfpMerchantState.LfpStoreState.StoreMatchingState|keyof typeof google.shopping.merchant.lfp.v1.LfpMerchantState.LfpStoreState.StoreMatchingState|null);
531
+
532
+ /** LfpStoreState matchingStateHint */
533
+ matchingStateHint?: (string|null);
534
+ }
535
+
536
+ /** Represents a LfpStoreState. */
537
+ class LfpStoreState implements ILfpStoreState {
538
+
539
+ /**
540
+ * Constructs a new LfpStoreState.
541
+ * @param [properties] Properties to set
542
+ */
543
+ constructor(properties?: google.shopping.merchant.lfp.v1.LfpMerchantState.ILfpStoreState);
544
+
545
+ /** LfpStoreState storeCode. */
546
+ public storeCode: string;
547
+
548
+ /** LfpStoreState matchingState. */
549
+ public matchingState: (google.shopping.merchant.lfp.v1.LfpMerchantState.LfpStoreState.StoreMatchingState|keyof typeof google.shopping.merchant.lfp.v1.LfpMerchantState.LfpStoreState.StoreMatchingState);
550
+
551
+ /** LfpStoreState matchingStateHint. */
552
+ public matchingStateHint: string;
553
+
554
+ /**
555
+ * Creates a new LfpStoreState instance using the specified properties.
556
+ * @param [properties] Properties to set
557
+ * @returns LfpStoreState instance
558
+ */
559
+ public static create(properties?: google.shopping.merchant.lfp.v1.LfpMerchantState.ILfpStoreState): google.shopping.merchant.lfp.v1.LfpMerchantState.LfpStoreState;
560
+
561
+ /**
562
+ * Encodes the specified LfpStoreState message. Does not implicitly {@link google.shopping.merchant.lfp.v1.LfpMerchantState.LfpStoreState.verify|verify} messages.
563
+ * @param message LfpStoreState message or plain object to encode
564
+ * @param [writer] Writer to encode to
565
+ * @returns Writer
566
+ */
567
+ public static encode(message: google.shopping.merchant.lfp.v1.LfpMerchantState.ILfpStoreState, writer?: $protobuf.Writer): $protobuf.Writer;
568
+
569
+ /**
570
+ * Encodes the specified LfpStoreState message, length delimited. Does not implicitly {@link google.shopping.merchant.lfp.v1.LfpMerchantState.LfpStoreState.verify|verify} messages.
571
+ * @param message LfpStoreState message or plain object to encode
572
+ * @param [writer] Writer to encode to
573
+ * @returns Writer
574
+ */
575
+ public static encodeDelimited(message: google.shopping.merchant.lfp.v1.LfpMerchantState.ILfpStoreState, writer?: $protobuf.Writer): $protobuf.Writer;
576
+
577
+ /**
578
+ * Decodes a LfpStoreState message from the specified reader or buffer.
579
+ * @param reader Reader or buffer to decode from
580
+ * @param [length] Message length if known beforehand
581
+ * @returns LfpStoreState
582
+ * @throws {Error} If the payload is not a reader or valid buffer
583
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
584
+ */
585
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.lfp.v1.LfpMerchantState.LfpStoreState;
586
+
587
+ /**
588
+ * Decodes a LfpStoreState message from the specified reader or buffer, length delimited.
589
+ * @param reader Reader or buffer to decode from
590
+ * @returns LfpStoreState
591
+ * @throws {Error} If the payload is not a reader or valid buffer
592
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
593
+ */
594
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.lfp.v1.LfpMerchantState.LfpStoreState;
595
+
596
+ /**
597
+ * Verifies a LfpStoreState message.
598
+ * @param message Plain object to verify
599
+ * @returns `null` if valid, otherwise the reason why it is not
600
+ */
601
+ public static verify(message: { [k: string]: any }): (string|null);
602
+
603
+ /**
604
+ * Creates a LfpStoreState message from a plain object. Also converts values to their respective internal types.
605
+ * @param object Plain object
606
+ * @returns LfpStoreState
607
+ */
608
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.lfp.v1.LfpMerchantState.LfpStoreState;
609
+
610
+ /**
611
+ * Creates a plain object from a LfpStoreState message. Also converts values to other types if specified.
612
+ * @param message LfpStoreState
613
+ * @param [options] Conversion options
614
+ * @returns Plain object
615
+ */
616
+ public static toObject(message: google.shopping.merchant.lfp.v1.LfpMerchantState.LfpStoreState, options?: $protobuf.IConversionOptions): { [k: string]: any };
617
+
618
+ /**
619
+ * Converts this LfpStoreState to JSON.
620
+ * @returns JSON object
621
+ */
622
+ public toJSON(): { [k: string]: any };
623
+
624
+ /**
625
+ * Gets the default type url for LfpStoreState
626
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
627
+ * @returns The default type url
628
+ */
629
+ public static getTypeUrl(typeUrlPrefix?: string): string;
630
+ }
631
+
632
+ namespace LfpStoreState {
633
+
634
+ /** StoreMatchingState enum. */
635
+ enum StoreMatchingState {
636
+ STORE_MATCHING_STATE_UNSPECIFIED = 0,
637
+ STORE_MATCHING_STATE_MATCHED = 1,
638
+ STORE_MATCHING_STATE_FAILED = 2
639
+ }
640
+ }
641
+
642
+ /** Properties of an InventoryStats. */
643
+ interface IInventoryStats {
644
+
645
+ /** InventoryStats submittedEntries */
646
+ submittedEntries?: (number|Long|string|null);
647
+
648
+ /** InventoryStats submittedInStockEntries */
649
+ submittedInStockEntries?: (number|Long|string|null);
650
+
651
+ /** InventoryStats unsubmittedEntries */
652
+ unsubmittedEntries?: (number|Long|string|null);
653
+
654
+ /** InventoryStats submittedProducts */
655
+ submittedProducts?: (number|Long|string|null);
656
+ }
657
+
658
+ /** Represents an InventoryStats. */
659
+ class InventoryStats implements IInventoryStats {
660
+
661
+ /**
662
+ * Constructs a new InventoryStats.
663
+ * @param [properties] Properties to set
664
+ */
665
+ constructor(properties?: google.shopping.merchant.lfp.v1.LfpMerchantState.IInventoryStats);
666
+
667
+ /** InventoryStats submittedEntries. */
668
+ public submittedEntries: (number|Long|string);
669
+
670
+ /** InventoryStats submittedInStockEntries. */
671
+ public submittedInStockEntries: (number|Long|string);
672
+
673
+ /** InventoryStats unsubmittedEntries. */
674
+ public unsubmittedEntries: (number|Long|string);
675
+
676
+ /** InventoryStats submittedProducts. */
677
+ public submittedProducts: (number|Long|string);
678
+
679
+ /**
680
+ * Creates a new InventoryStats instance using the specified properties.
681
+ * @param [properties] Properties to set
682
+ * @returns InventoryStats instance
683
+ */
684
+ public static create(properties?: google.shopping.merchant.lfp.v1.LfpMerchantState.IInventoryStats): google.shopping.merchant.lfp.v1.LfpMerchantState.InventoryStats;
685
+
686
+ /**
687
+ * Encodes the specified InventoryStats message. Does not implicitly {@link google.shopping.merchant.lfp.v1.LfpMerchantState.InventoryStats.verify|verify} messages.
688
+ * @param message InventoryStats message or plain object to encode
689
+ * @param [writer] Writer to encode to
690
+ * @returns Writer
691
+ */
692
+ public static encode(message: google.shopping.merchant.lfp.v1.LfpMerchantState.IInventoryStats, writer?: $protobuf.Writer): $protobuf.Writer;
693
+
694
+ /**
695
+ * Encodes the specified InventoryStats message, length delimited. Does not implicitly {@link google.shopping.merchant.lfp.v1.LfpMerchantState.InventoryStats.verify|verify} messages.
696
+ * @param message InventoryStats message or plain object to encode
697
+ * @param [writer] Writer to encode to
698
+ * @returns Writer
699
+ */
700
+ public static encodeDelimited(message: google.shopping.merchant.lfp.v1.LfpMerchantState.IInventoryStats, writer?: $protobuf.Writer): $protobuf.Writer;
701
+
702
+ /**
703
+ * Decodes an InventoryStats message from the specified reader or buffer.
704
+ * @param reader Reader or buffer to decode from
705
+ * @param [length] Message length if known beforehand
706
+ * @returns InventoryStats
707
+ * @throws {Error} If the payload is not a reader or valid buffer
708
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
709
+ */
710
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.lfp.v1.LfpMerchantState.InventoryStats;
711
+
712
+ /**
713
+ * Decodes an InventoryStats message from the specified reader or buffer, length delimited.
714
+ * @param reader Reader or buffer to decode from
715
+ * @returns InventoryStats
716
+ * @throws {Error} If the payload is not a reader or valid buffer
717
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
718
+ */
719
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.lfp.v1.LfpMerchantState.InventoryStats;
720
+
721
+ /**
722
+ * Verifies an InventoryStats message.
723
+ * @param message Plain object to verify
724
+ * @returns `null` if valid, otherwise the reason why it is not
725
+ */
726
+ public static verify(message: { [k: string]: any }): (string|null);
727
+
728
+ /**
729
+ * Creates an InventoryStats message from a plain object. Also converts values to their respective internal types.
730
+ * @param object Plain object
731
+ * @returns InventoryStats
732
+ */
733
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.lfp.v1.LfpMerchantState.InventoryStats;
734
+
735
+ /**
736
+ * Creates a plain object from an InventoryStats message. Also converts values to other types if specified.
737
+ * @param message InventoryStats
738
+ * @param [options] Conversion options
739
+ * @returns Plain object
740
+ */
741
+ public static toObject(message: google.shopping.merchant.lfp.v1.LfpMerchantState.InventoryStats, options?: $protobuf.IConversionOptions): { [k: string]: any };
742
+
743
+ /**
744
+ * Converts this InventoryStats to JSON.
745
+ * @returns JSON object
746
+ */
747
+ public toJSON(): { [k: string]: any };
748
+
749
+ /**
750
+ * Gets the default type url for InventoryStats
751
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
752
+ * @returns The default type url
753
+ */
754
+ public static getTypeUrl(typeUrlPrefix?: string): string;
755
+ }
756
+
757
+ /** Properties of a CountrySettings. */
758
+ interface ICountrySettings {
759
+
760
+ /** CountrySettings regionCode */
761
+ regionCode?: (string|null);
762
+
763
+ /** CountrySettings freeLocalListingsEnabled */
764
+ freeLocalListingsEnabled?: (boolean|null);
765
+
766
+ /** CountrySettings localInventoryAdsEnabled */
767
+ localInventoryAdsEnabled?: (boolean|null);
768
+
769
+ /** CountrySettings inventoryVerificationState */
770
+ inventoryVerificationState?: (google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings.VerificationState|keyof typeof google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings.VerificationState|null);
771
+
772
+ /** CountrySettings productPageType */
773
+ productPageType?: (google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings.ProductPageType|keyof typeof google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings.ProductPageType|null);
774
+
775
+ /** CountrySettings instockServingVerificationState */
776
+ instockServingVerificationState?: (google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings.VerificationState|keyof typeof google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings.VerificationState|null);
777
+
778
+ /** CountrySettings pickupServingVerificationState */
779
+ pickupServingVerificationState?: (google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings.VerificationState|keyof typeof google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings.VerificationState|null);
780
+ }
781
+
782
+ /** Represents a CountrySettings. */
783
+ class CountrySettings implements ICountrySettings {
784
+
785
+ /**
786
+ * Constructs a new CountrySettings.
787
+ * @param [properties] Properties to set
788
+ */
789
+ constructor(properties?: google.shopping.merchant.lfp.v1.LfpMerchantState.ICountrySettings);
790
+
791
+ /** CountrySettings regionCode. */
792
+ public regionCode: string;
793
+
794
+ /** CountrySettings freeLocalListingsEnabled. */
795
+ public freeLocalListingsEnabled: boolean;
796
+
797
+ /** CountrySettings localInventoryAdsEnabled. */
798
+ public localInventoryAdsEnabled: boolean;
799
+
800
+ /** CountrySettings inventoryVerificationState. */
801
+ public inventoryVerificationState: (google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings.VerificationState|keyof typeof google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings.VerificationState);
802
+
803
+ /** CountrySettings productPageType. */
804
+ public productPageType: (google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings.ProductPageType|keyof typeof google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings.ProductPageType);
805
+
806
+ /** CountrySettings instockServingVerificationState. */
807
+ public instockServingVerificationState: (google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings.VerificationState|keyof typeof google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings.VerificationState);
808
+
809
+ /** CountrySettings pickupServingVerificationState. */
810
+ public pickupServingVerificationState: (google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings.VerificationState|keyof typeof google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings.VerificationState);
811
+
812
+ /**
813
+ * Creates a new CountrySettings instance using the specified properties.
814
+ * @param [properties] Properties to set
815
+ * @returns CountrySettings instance
816
+ */
817
+ public static create(properties?: google.shopping.merchant.lfp.v1.LfpMerchantState.ICountrySettings): google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings;
818
+
819
+ /**
820
+ * Encodes the specified CountrySettings message. Does not implicitly {@link google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings.verify|verify} messages.
821
+ * @param message CountrySettings message or plain object to encode
822
+ * @param [writer] Writer to encode to
823
+ * @returns Writer
824
+ */
825
+ public static encode(message: google.shopping.merchant.lfp.v1.LfpMerchantState.ICountrySettings, writer?: $protobuf.Writer): $protobuf.Writer;
826
+
827
+ /**
828
+ * Encodes the specified CountrySettings message, length delimited. Does not implicitly {@link google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings.verify|verify} messages.
829
+ * @param message CountrySettings message or plain object to encode
830
+ * @param [writer] Writer to encode to
831
+ * @returns Writer
832
+ */
833
+ public static encodeDelimited(message: google.shopping.merchant.lfp.v1.LfpMerchantState.ICountrySettings, writer?: $protobuf.Writer): $protobuf.Writer;
834
+
835
+ /**
836
+ * Decodes a CountrySettings message from the specified reader or buffer.
837
+ * @param reader Reader or buffer to decode from
838
+ * @param [length] Message length if known beforehand
839
+ * @returns CountrySettings
840
+ * @throws {Error} If the payload is not a reader or valid buffer
841
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
842
+ */
843
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings;
844
+
845
+ /**
846
+ * Decodes a CountrySettings message from the specified reader or buffer, length delimited.
847
+ * @param reader Reader or buffer to decode from
848
+ * @returns CountrySettings
849
+ * @throws {Error} If the payload is not a reader or valid buffer
850
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
851
+ */
852
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings;
853
+
854
+ /**
855
+ * Verifies a CountrySettings message.
856
+ * @param message Plain object to verify
857
+ * @returns `null` if valid, otherwise the reason why it is not
858
+ */
859
+ public static verify(message: { [k: string]: any }): (string|null);
860
+
861
+ /**
862
+ * Creates a CountrySettings message from a plain object. Also converts values to their respective internal types.
863
+ * @param object Plain object
864
+ * @returns CountrySettings
865
+ */
866
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings;
867
+
868
+ /**
869
+ * Creates a plain object from a CountrySettings message. Also converts values to other types if specified.
870
+ * @param message CountrySettings
871
+ * @param [options] Conversion options
872
+ * @returns Plain object
873
+ */
874
+ public static toObject(message: google.shopping.merchant.lfp.v1.LfpMerchantState.CountrySettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
875
+
876
+ /**
877
+ * Converts this CountrySettings to JSON.
878
+ * @returns JSON object
879
+ */
880
+ public toJSON(): { [k: string]: any };
881
+
882
+ /**
883
+ * Gets the default type url for CountrySettings
884
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
885
+ * @returns The default type url
886
+ */
887
+ public static getTypeUrl(typeUrlPrefix?: string): string;
888
+ }
889
+
890
+ namespace CountrySettings {
891
+
892
+ /** VerificationState enum. */
893
+ enum VerificationState {
894
+ VERIFICATION_STATE_UNSPECIFIED = 0,
895
+ VERIFICATION_STATE_NOT_APPROVED = 1,
896
+ VERIFICATION_STATE_IN_PROGRESS = 2,
897
+ VERIFICATION_STATE_APPROVED = 3
898
+ }
899
+
900
+ /** ProductPageType enum. */
901
+ enum ProductPageType {
902
+ PRODUCT_PAGE_TYPE_UNSPECIFIED = 0,
903
+ GOOGLE_HOSTED = 1,
904
+ MERCHANT_HOSTED = 2,
905
+ MERCHANT_HOSTED_STORE_SPECIFIC = 3
906
+ }
907
+ }
908
+ }
909
+
910
+ /** Properties of a GetLfpMerchantStateRequest. */
911
+ interface IGetLfpMerchantStateRequest {
912
+
913
+ /** GetLfpMerchantStateRequest name */
914
+ name?: (string|null);
915
+ }
916
+
917
+ /** Represents a GetLfpMerchantStateRequest. */
918
+ class GetLfpMerchantStateRequest implements IGetLfpMerchantStateRequest {
919
+
920
+ /**
921
+ * Constructs a new GetLfpMerchantStateRequest.
922
+ * @param [properties] Properties to set
923
+ */
924
+ constructor(properties?: google.shopping.merchant.lfp.v1.IGetLfpMerchantStateRequest);
925
+
926
+ /** GetLfpMerchantStateRequest name. */
927
+ public name: string;
928
+
929
+ /**
930
+ * Creates a new GetLfpMerchantStateRequest instance using the specified properties.
931
+ * @param [properties] Properties to set
932
+ * @returns GetLfpMerchantStateRequest instance
933
+ */
934
+ public static create(properties?: google.shopping.merchant.lfp.v1.IGetLfpMerchantStateRequest): google.shopping.merchant.lfp.v1.GetLfpMerchantStateRequest;
935
+
936
+ /**
937
+ * Encodes the specified GetLfpMerchantStateRequest message. Does not implicitly {@link google.shopping.merchant.lfp.v1.GetLfpMerchantStateRequest.verify|verify} messages.
938
+ * @param message GetLfpMerchantStateRequest message or plain object to encode
939
+ * @param [writer] Writer to encode to
940
+ * @returns Writer
941
+ */
942
+ public static encode(message: google.shopping.merchant.lfp.v1.IGetLfpMerchantStateRequest, writer?: $protobuf.Writer): $protobuf.Writer;
943
+
944
+ /**
945
+ * Encodes the specified GetLfpMerchantStateRequest message, length delimited. Does not implicitly {@link google.shopping.merchant.lfp.v1.GetLfpMerchantStateRequest.verify|verify} messages.
946
+ * @param message GetLfpMerchantStateRequest message or plain object to encode
947
+ * @param [writer] Writer to encode to
948
+ * @returns Writer
949
+ */
950
+ public static encodeDelimited(message: google.shopping.merchant.lfp.v1.IGetLfpMerchantStateRequest, writer?: $protobuf.Writer): $protobuf.Writer;
951
+
952
+ /**
953
+ * Decodes a GetLfpMerchantStateRequest message from the specified reader or buffer.
954
+ * @param reader Reader or buffer to decode from
955
+ * @param [length] Message length if known beforehand
956
+ * @returns GetLfpMerchantStateRequest
957
+ * @throws {Error} If the payload is not a reader or valid buffer
958
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
959
+ */
960
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.lfp.v1.GetLfpMerchantStateRequest;
961
+
962
+ /**
963
+ * Decodes a GetLfpMerchantStateRequest message from the specified reader or buffer, length delimited.
964
+ * @param reader Reader or buffer to decode from
965
+ * @returns GetLfpMerchantStateRequest
966
+ * @throws {Error} If the payload is not a reader or valid buffer
967
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
968
+ */
969
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.lfp.v1.GetLfpMerchantStateRequest;
970
+
971
+ /**
972
+ * Verifies a GetLfpMerchantStateRequest message.
973
+ * @param message Plain object to verify
974
+ * @returns `null` if valid, otherwise the reason why it is not
975
+ */
976
+ public static verify(message: { [k: string]: any }): (string|null);
977
+
978
+ /**
979
+ * Creates a GetLfpMerchantStateRequest message from a plain object. Also converts values to their respective internal types.
980
+ * @param object Plain object
981
+ * @returns GetLfpMerchantStateRequest
982
+ */
983
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.lfp.v1.GetLfpMerchantStateRequest;
984
+
985
+ /**
986
+ * Creates a plain object from a GetLfpMerchantStateRequest message. Also converts values to other types if specified.
987
+ * @param message GetLfpMerchantStateRequest
988
+ * @param [options] Conversion options
989
+ * @returns Plain object
990
+ */
991
+ public static toObject(message: google.shopping.merchant.lfp.v1.GetLfpMerchantStateRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
992
+
993
+ /**
994
+ * Converts this GetLfpMerchantStateRequest to JSON.
995
+ * @returns JSON object
996
+ */
997
+ public toJSON(): { [k: string]: any };
998
+
999
+ /**
1000
+ * Gets the default type url for GetLfpMerchantStateRequest
1001
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
1002
+ * @returns The default type url
1003
+ */
1004
+ public static getTypeUrl(typeUrlPrefix?: string): string;
1005
+ }
1006
+
1007
+ /** Represents a LfpSaleService */
1008
+ class LfpSaleService extends $protobuf.rpc.Service {
1009
+
1010
+ /**
1011
+ * Constructs a new LfpSaleService service.
1012
+ * @param rpcImpl RPC implementation
1013
+ * @param [requestDelimited=false] Whether requests are length-delimited
1014
+ * @param [responseDelimited=false] Whether responses are length-delimited
1015
+ */
1016
+ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean);
1017
+
1018
+ /**
1019
+ * Creates new LfpSaleService service using the specified rpc implementation.
1020
+ * @param rpcImpl RPC implementation
1021
+ * @param [requestDelimited=false] Whether requests are length-delimited
1022
+ * @param [responseDelimited=false] Whether responses are length-delimited
1023
+ * @returns RPC service. Useful where requests and/or responses are streamed.
1024
+ */
1025
+ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): LfpSaleService;
1026
+
1027
+ /**
1028
+ * Calls InsertLfpSale.
1029
+ * @param request InsertLfpSaleRequest message or plain object
1030
+ * @param callback Node-style callback called with the error, if any, and LfpSale
1031
+ */
1032
+ public insertLfpSale(request: google.shopping.merchant.lfp.v1.IInsertLfpSaleRequest, callback: google.shopping.merchant.lfp.v1.LfpSaleService.InsertLfpSaleCallback): void;
1033
+
1034
+ /**
1035
+ * Calls InsertLfpSale.
1036
+ * @param request InsertLfpSaleRequest message or plain object
1037
+ * @returns Promise
1038
+ */
1039
+ public insertLfpSale(request: google.shopping.merchant.lfp.v1.IInsertLfpSaleRequest): Promise<google.shopping.merchant.lfp.v1.LfpSale>;
1040
+ }
1041
+
1042
+ namespace LfpSaleService {
1043
+
1044
+ /**
1045
+ * Callback as used by {@link google.shopping.merchant.lfp.v1.LfpSaleService|insertLfpSale}.
1046
+ * @param error Error, if any
1047
+ * @param [response] LfpSale
1048
+ */
1049
+ type InsertLfpSaleCallback = (error: (Error|null), response?: google.shopping.merchant.lfp.v1.LfpSale) => void;
1050
+ }
1051
+
1052
+ /** Properties of a LfpSale. */
1053
+ interface ILfpSale {
1054
+
1055
+ /** LfpSale name */
1056
+ name?: (string|null);
1057
+
1058
+ /** LfpSale targetAccount */
1059
+ targetAccount?: (number|Long|string|null);
1060
+
1061
+ /** LfpSale storeCode */
1062
+ storeCode?: (string|null);
1063
+
1064
+ /** LfpSale offerId */
1065
+ offerId?: (string|null);
1066
+
1067
+ /** LfpSale regionCode */
1068
+ regionCode?: (string|null);
1069
+
1070
+ /** LfpSale contentLanguage */
1071
+ contentLanguage?: (string|null);
1072
+
1073
+ /** LfpSale gtin */
1074
+ gtin?: (string|null);
1075
+
1076
+ /** LfpSale price */
1077
+ price?: (google.shopping.type.IPrice|null);
1078
+
1079
+ /** LfpSale quantity */
1080
+ quantity?: (number|Long|string|null);
1081
+
1082
+ /** LfpSale saleTime */
1083
+ saleTime?: (google.protobuf.ITimestamp|null);
1084
+
1085
+ /** LfpSale uid */
1086
+ uid?: (string|null);
1087
+
1088
+ /** LfpSale feedLabel */
1089
+ feedLabel?: (string|null);
1090
+ }
1091
+
1092
+ /** Represents a LfpSale. */
1093
+ class LfpSale implements ILfpSale {
1094
+
1095
+ /**
1096
+ * Constructs a new LfpSale.
1097
+ * @param [properties] Properties to set
1098
+ */
1099
+ constructor(properties?: google.shopping.merchant.lfp.v1.ILfpSale);
1100
+
1101
+ /** LfpSale name. */
1102
+ public name: string;
1103
+
1104
+ /** LfpSale targetAccount. */
1105
+ public targetAccount: (number|Long|string);
1106
+
1107
+ /** LfpSale storeCode. */
1108
+ public storeCode: string;
1109
+
1110
+ /** LfpSale offerId. */
1111
+ public offerId: string;
1112
+
1113
+ /** LfpSale regionCode. */
1114
+ public regionCode: string;
1115
+
1116
+ /** LfpSale contentLanguage. */
1117
+ public contentLanguage: string;
1118
+
1119
+ /** LfpSale gtin. */
1120
+ public gtin: string;
1121
+
1122
+ /** LfpSale price. */
1123
+ public price?: (google.shopping.type.IPrice|null);
1124
+
1125
+ /** LfpSale quantity. */
1126
+ public quantity: (number|Long|string);
1127
+
1128
+ /** LfpSale saleTime. */
1129
+ public saleTime?: (google.protobuf.ITimestamp|null);
1130
+
1131
+ /** LfpSale uid. */
1132
+ public uid?: (string|null);
1133
+
1134
+ /** LfpSale feedLabel. */
1135
+ public feedLabel?: (string|null);
1136
+
1137
+ /**
1138
+ * Creates a new LfpSale instance using the specified properties.
1139
+ * @param [properties] Properties to set
1140
+ * @returns LfpSale instance
1141
+ */
1142
+ public static create(properties?: google.shopping.merchant.lfp.v1.ILfpSale): google.shopping.merchant.lfp.v1.LfpSale;
1143
+
1144
+ /**
1145
+ * Encodes the specified LfpSale message. Does not implicitly {@link google.shopping.merchant.lfp.v1.LfpSale.verify|verify} messages.
1146
+ * @param message LfpSale message or plain object to encode
1147
+ * @param [writer] Writer to encode to
1148
+ * @returns Writer
1149
+ */
1150
+ public static encode(message: google.shopping.merchant.lfp.v1.ILfpSale, writer?: $protobuf.Writer): $protobuf.Writer;
1151
+
1152
+ /**
1153
+ * Encodes the specified LfpSale message, length delimited. Does not implicitly {@link google.shopping.merchant.lfp.v1.LfpSale.verify|verify} messages.
1154
+ * @param message LfpSale message or plain object to encode
1155
+ * @param [writer] Writer to encode to
1156
+ * @returns Writer
1157
+ */
1158
+ public static encodeDelimited(message: google.shopping.merchant.lfp.v1.ILfpSale, writer?: $protobuf.Writer): $protobuf.Writer;
1159
+
1160
+ /**
1161
+ * Decodes a LfpSale message from the specified reader or buffer.
1162
+ * @param reader Reader or buffer to decode from
1163
+ * @param [length] Message length if known beforehand
1164
+ * @returns LfpSale
1165
+ * @throws {Error} If the payload is not a reader or valid buffer
1166
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1167
+ */
1168
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.lfp.v1.LfpSale;
1169
+
1170
+ /**
1171
+ * Decodes a LfpSale message from the specified reader or buffer, length delimited.
1172
+ * @param reader Reader or buffer to decode from
1173
+ * @returns LfpSale
1174
+ * @throws {Error} If the payload is not a reader or valid buffer
1175
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1176
+ */
1177
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.lfp.v1.LfpSale;
1178
+
1179
+ /**
1180
+ * Verifies a LfpSale message.
1181
+ * @param message Plain object to verify
1182
+ * @returns `null` if valid, otherwise the reason why it is not
1183
+ */
1184
+ public static verify(message: { [k: string]: any }): (string|null);
1185
+
1186
+ /**
1187
+ * Creates a LfpSale message from a plain object. Also converts values to their respective internal types.
1188
+ * @param object Plain object
1189
+ * @returns LfpSale
1190
+ */
1191
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.lfp.v1.LfpSale;
1192
+
1193
+ /**
1194
+ * Creates a plain object from a LfpSale message. Also converts values to other types if specified.
1195
+ * @param message LfpSale
1196
+ * @param [options] Conversion options
1197
+ * @returns Plain object
1198
+ */
1199
+ public static toObject(message: google.shopping.merchant.lfp.v1.LfpSale, options?: $protobuf.IConversionOptions): { [k: string]: any };
1200
+
1201
+ /**
1202
+ * Converts this LfpSale to JSON.
1203
+ * @returns JSON object
1204
+ */
1205
+ public toJSON(): { [k: string]: any };
1206
+
1207
+ /**
1208
+ * Gets the default type url for LfpSale
1209
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
1210
+ * @returns The default type url
1211
+ */
1212
+ public static getTypeUrl(typeUrlPrefix?: string): string;
1213
+ }
1214
+
1215
+ /** Properties of an InsertLfpSaleRequest. */
1216
+ interface IInsertLfpSaleRequest {
1217
+
1218
+ /** InsertLfpSaleRequest parent */
1219
+ parent?: (string|null);
1220
+
1221
+ /** InsertLfpSaleRequest lfpSale */
1222
+ lfpSale?: (google.shopping.merchant.lfp.v1.ILfpSale|null);
1223
+ }
1224
+
1225
+ /** Represents an InsertLfpSaleRequest. */
1226
+ class InsertLfpSaleRequest implements IInsertLfpSaleRequest {
1227
+
1228
+ /**
1229
+ * Constructs a new InsertLfpSaleRequest.
1230
+ * @param [properties] Properties to set
1231
+ */
1232
+ constructor(properties?: google.shopping.merchant.lfp.v1.IInsertLfpSaleRequest);
1233
+
1234
+ /** InsertLfpSaleRequest parent. */
1235
+ public parent: string;
1236
+
1237
+ /** InsertLfpSaleRequest lfpSale. */
1238
+ public lfpSale?: (google.shopping.merchant.lfp.v1.ILfpSale|null);
1239
+
1240
+ /**
1241
+ * Creates a new InsertLfpSaleRequest instance using the specified properties.
1242
+ * @param [properties] Properties to set
1243
+ * @returns InsertLfpSaleRequest instance
1244
+ */
1245
+ public static create(properties?: google.shopping.merchant.lfp.v1.IInsertLfpSaleRequest): google.shopping.merchant.lfp.v1.InsertLfpSaleRequest;
1246
+
1247
+ /**
1248
+ * Encodes the specified InsertLfpSaleRequest message. Does not implicitly {@link google.shopping.merchant.lfp.v1.InsertLfpSaleRequest.verify|verify} messages.
1249
+ * @param message InsertLfpSaleRequest message or plain object to encode
1250
+ * @param [writer] Writer to encode to
1251
+ * @returns Writer
1252
+ */
1253
+ public static encode(message: google.shopping.merchant.lfp.v1.IInsertLfpSaleRequest, writer?: $protobuf.Writer): $protobuf.Writer;
1254
+
1255
+ /**
1256
+ * Encodes the specified InsertLfpSaleRequest message, length delimited. Does not implicitly {@link google.shopping.merchant.lfp.v1.InsertLfpSaleRequest.verify|verify} messages.
1257
+ * @param message InsertLfpSaleRequest message or plain object to encode
1258
+ * @param [writer] Writer to encode to
1259
+ * @returns Writer
1260
+ */
1261
+ public static encodeDelimited(message: google.shopping.merchant.lfp.v1.IInsertLfpSaleRequest, writer?: $protobuf.Writer): $protobuf.Writer;
1262
+
1263
+ /**
1264
+ * Decodes an InsertLfpSaleRequest message from the specified reader or buffer.
1265
+ * @param reader Reader or buffer to decode from
1266
+ * @param [length] Message length if known beforehand
1267
+ * @returns InsertLfpSaleRequest
1268
+ * @throws {Error} If the payload is not a reader or valid buffer
1269
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1270
+ */
1271
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.lfp.v1.InsertLfpSaleRequest;
1272
+
1273
+ /**
1274
+ * Decodes an InsertLfpSaleRequest message from the specified reader or buffer, length delimited.
1275
+ * @param reader Reader or buffer to decode from
1276
+ * @returns InsertLfpSaleRequest
1277
+ * @throws {Error} If the payload is not a reader or valid buffer
1278
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1279
+ */
1280
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.lfp.v1.InsertLfpSaleRequest;
1281
+
1282
+ /**
1283
+ * Verifies an InsertLfpSaleRequest message.
1284
+ * @param message Plain object to verify
1285
+ * @returns `null` if valid, otherwise the reason why it is not
1286
+ */
1287
+ public static verify(message: { [k: string]: any }): (string|null);
1288
+
1289
+ /**
1290
+ * Creates an InsertLfpSaleRequest message from a plain object. Also converts values to their respective internal types.
1291
+ * @param object Plain object
1292
+ * @returns InsertLfpSaleRequest
1293
+ */
1294
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.lfp.v1.InsertLfpSaleRequest;
1295
+
1296
+ /**
1297
+ * Creates a plain object from an InsertLfpSaleRequest message. Also converts values to other types if specified.
1298
+ * @param message InsertLfpSaleRequest
1299
+ * @param [options] Conversion options
1300
+ * @returns Plain object
1301
+ */
1302
+ public static toObject(message: google.shopping.merchant.lfp.v1.InsertLfpSaleRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
1303
+
1304
+ /**
1305
+ * Converts this InsertLfpSaleRequest to JSON.
1306
+ * @returns JSON object
1307
+ */
1308
+ public toJSON(): { [k: string]: any };
1309
+
1310
+ /**
1311
+ * Gets the default type url for InsertLfpSaleRequest
1312
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
1313
+ * @returns The default type url
1314
+ */
1315
+ public static getTypeUrl(typeUrlPrefix?: string): string;
1316
+ }
1317
+
1318
+ /** Represents a LfpStoreService */
1319
+ class LfpStoreService extends $protobuf.rpc.Service {
1320
+
1321
+ /**
1322
+ * Constructs a new LfpStoreService service.
1323
+ * @param rpcImpl RPC implementation
1324
+ * @param [requestDelimited=false] Whether requests are length-delimited
1325
+ * @param [responseDelimited=false] Whether responses are length-delimited
1326
+ */
1327
+ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean);
1328
+
1329
+ /**
1330
+ * Creates new LfpStoreService service using the specified rpc implementation.
1331
+ * @param rpcImpl RPC implementation
1332
+ * @param [requestDelimited=false] Whether requests are length-delimited
1333
+ * @param [responseDelimited=false] Whether responses are length-delimited
1334
+ * @returns RPC service. Useful where requests and/or responses are streamed.
1335
+ */
1336
+ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): LfpStoreService;
1337
+
1338
+ /**
1339
+ * Calls GetLfpStore.
1340
+ * @param request GetLfpStoreRequest message or plain object
1341
+ * @param callback Node-style callback called with the error, if any, and LfpStore
1342
+ */
1343
+ public getLfpStore(request: google.shopping.merchant.lfp.v1.IGetLfpStoreRequest, callback: google.shopping.merchant.lfp.v1.LfpStoreService.GetLfpStoreCallback): void;
1344
+
1345
+ /**
1346
+ * Calls GetLfpStore.
1347
+ * @param request GetLfpStoreRequest message or plain object
1348
+ * @returns Promise
1349
+ */
1350
+ public getLfpStore(request: google.shopping.merchant.lfp.v1.IGetLfpStoreRequest): Promise<google.shopping.merchant.lfp.v1.LfpStore>;
1351
+
1352
+ /**
1353
+ * Calls InsertLfpStore.
1354
+ * @param request InsertLfpStoreRequest message or plain object
1355
+ * @param callback Node-style callback called with the error, if any, and LfpStore
1356
+ */
1357
+ public insertLfpStore(request: google.shopping.merchant.lfp.v1.IInsertLfpStoreRequest, callback: google.shopping.merchant.lfp.v1.LfpStoreService.InsertLfpStoreCallback): void;
1358
+
1359
+ /**
1360
+ * Calls InsertLfpStore.
1361
+ * @param request InsertLfpStoreRequest message or plain object
1362
+ * @returns Promise
1363
+ */
1364
+ public insertLfpStore(request: google.shopping.merchant.lfp.v1.IInsertLfpStoreRequest): Promise<google.shopping.merchant.lfp.v1.LfpStore>;
1365
+
1366
+ /**
1367
+ * Calls DeleteLfpStore.
1368
+ * @param request DeleteLfpStoreRequest message or plain object
1369
+ * @param callback Node-style callback called with the error, if any, and Empty
1370
+ */
1371
+ public deleteLfpStore(request: google.shopping.merchant.lfp.v1.IDeleteLfpStoreRequest, callback: google.shopping.merchant.lfp.v1.LfpStoreService.DeleteLfpStoreCallback): void;
1372
+
1373
+ /**
1374
+ * Calls DeleteLfpStore.
1375
+ * @param request DeleteLfpStoreRequest message or plain object
1376
+ * @returns Promise
1377
+ */
1378
+ public deleteLfpStore(request: google.shopping.merchant.lfp.v1.IDeleteLfpStoreRequest): Promise<google.protobuf.Empty>;
1379
+
1380
+ /**
1381
+ * Calls ListLfpStores.
1382
+ * @param request ListLfpStoresRequest message or plain object
1383
+ * @param callback Node-style callback called with the error, if any, and ListLfpStoresResponse
1384
+ */
1385
+ public listLfpStores(request: google.shopping.merchant.lfp.v1.IListLfpStoresRequest, callback: google.shopping.merchant.lfp.v1.LfpStoreService.ListLfpStoresCallback): void;
1386
+
1387
+ /**
1388
+ * Calls ListLfpStores.
1389
+ * @param request ListLfpStoresRequest message or plain object
1390
+ * @returns Promise
1391
+ */
1392
+ public listLfpStores(request: google.shopping.merchant.lfp.v1.IListLfpStoresRequest): Promise<google.shopping.merchant.lfp.v1.ListLfpStoresResponse>;
1393
+ }
1394
+
1395
+ namespace LfpStoreService {
1396
+
1397
+ /**
1398
+ * Callback as used by {@link google.shopping.merchant.lfp.v1.LfpStoreService|getLfpStore}.
1399
+ * @param error Error, if any
1400
+ * @param [response] LfpStore
1401
+ */
1402
+ type GetLfpStoreCallback = (error: (Error|null), response?: google.shopping.merchant.lfp.v1.LfpStore) => void;
1403
+
1404
+ /**
1405
+ * Callback as used by {@link google.shopping.merchant.lfp.v1.LfpStoreService|insertLfpStore}.
1406
+ * @param error Error, if any
1407
+ * @param [response] LfpStore
1408
+ */
1409
+ type InsertLfpStoreCallback = (error: (Error|null), response?: google.shopping.merchant.lfp.v1.LfpStore) => void;
1410
+
1411
+ /**
1412
+ * Callback as used by {@link google.shopping.merchant.lfp.v1.LfpStoreService|deleteLfpStore}.
1413
+ * @param error Error, if any
1414
+ * @param [response] Empty
1415
+ */
1416
+ type DeleteLfpStoreCallback = (error: (Error|null), response?: google.protobuf.Empty) => void;
1417
+
1418
+ /**
1419
+ * Callback as used by {@link google.shopping.merchant.lfp.v1.LfpStoreService|listLfpStores}.
1420
+ * @param error Error, if any
1421
+ * @param [response] ListLfpStoresResponse
1422
+ */
1423
+ type ListLfpStoresCallback = (error: (Error|null), response?: google.shopping.merchant.lfp.v1.ListLfpStoresResponse) => void;
1424
+ }
1425
+
1426
+ /** Properties of a LfpStore. */
1427
+ interface ILfpStore {
1428
+
1429
+ /** LfpStore name */
1430
+ name?: (string|null);
1431
+
1432
+ /** LfpStore targetAccount */
1433
+ targetAccount?: (number|Long|string|null);
1434
+
1435
+ /** LfpStore storeCode */
1436
+ storeCode?: (string|null);
1437
+
1438
+ /** LfpStore storeAddress */
1439
+ storeAddress?: (string|null);
1440
+
1441
+ /** LfpStore storeName */
1442
+ storeName?: (string|null);
1443
+
1444
+ /** LfpStore phoneNumber */
1445
+ phoneNumber?: (string|null);
1446
+
1447
+ /** LfpStore websiteUri */
1448
+ websiteUri?: (string|null);
1449
+
1450
+ /** LfpStore gcidCategory */
1451
+ gcidCategory?: (string[]|null);
1452
+
1453
+ /** LfpStore placeId */
1454
+ placeId?: (string|null);
1455
+
1456
+ /** LfpStore matchingState */
1457
+ matchingState?: (google.shopping.merchant.lfp.v1.LfpStore.StoreMatchingState|keyof typeof google.shopping.merchant.lfp.v1.LfpStore.StoreMatchingState|null);
1458
+
1459
+ /** LfpStore matchingStateHint */
1460
+ matchingStateHint?: (string|null);
1461
+ }
1462
+
1463
+ /** Represents a LfpStore. */
1464
+ class LfpStore implements ILfpStore {
1465
+
1466
+ /**
1467
+ * Constructs a new LfpStore.
1468
+ * @param [properties] Properties to set
1469
+ */
1470
+ constructor(properties?: google.shopping.merchant.lfp.v1.ILfpStore);
1471
+
1472
+ /** LfpStore name. */
1473
+ public name: string;
1474
+
1475
+ /** LfpStore targetAccount. */
1476
+ public targetAccount: (number|Long|string);
1477
+
1478
+ /** LfpStore storeCode. */
1479
+ public storeCode: string;
1480
+
1481
+ /** LfpStore storeAddress. */
1482
+ public storeAddress: string;
1483
+
1484
+ /** LfpStore storeName. */
1485
+ public storeName?: (string|null);
1486
+
1487
+ /** LfpStore phoneNumber. */
1488
+ public phoneNumber?: (string|null);
1489
+
1490
+ /** LfpStore websiteUri. */
1491
+ public websiteUri?: (string|null);
1492
+
1493
+ /** LfpStore gcidCategory. */
1494
+ public gcidCategory: string[];
1495
+
1496
+ /** LfpStore placeId. */
1497
+ public placeId?: (string|null);
1498
+
1499
+ /** LfpStore matchingState. */
1500
+ public matchingState: (google.shopping.merchant.lfp.v1.LfpStore.StoreMatchingState|keyof typeof google.shopping.merchant.lfp.v1.LfpStore.StoreMatchingState);
1501
+
1502
+ /** LfpStore matchingStateHint. */
1503
+ public matchingStateHint?: (string|null);
1504
+
1505
+ /**
1506
+ * Creates a new LfpStore instance using the specified properties.
1507
+ * @param [properties] Properties to set
1508
+ * @returns LfpStore instance
1509
+ */
1510
+ public static create(properties?: google.shopping.merchant.lfp.v1.ILfpStore): google.shopping.merchant.lfp.v1.LfpStore;
1511
+
1512
+ /**
1513
+ * Encodes the specified LfpStore message. Does not implicitly {@link google.shopping.merchant.lfp.v1.LfpStore.verify|verify} messages.
1514
+ * @param message LfpStore message or plain object to encode
1515
+ * @param [writer] Writer to encode to
1516
+ * @returns Writer
1517
+ */
1518
+ public static encode(message: google.shopping.merchant.lfp.v1.ILfpStore, writer?: $protobuf.Writer): $protobuf.Writer;
1519
+
1520
+ /**
1521
+ * Encodes the specified LfpStore message, length delimited. Does not implicitly {@link google.shopping.merchant.lfp.v1.LfpStore.verify|verify} messages.
1522
+ * @param message LfpStore message or plain object to encode
1523
+ * @param [writer] Writer to encode to
1524
+ * @returns Writer
1525
+ */
1526
+ public static encodeDelimited(message: google.shopping.merchant.lfp.v1.ILfpStore, writer?: $protobuf.Writer): $protobuf.Writer;
1527
+
1528
+ /**
1529
+ * Decodes a LfpStore message from the specified reader or buffer.
1530
+ * @param reader Reader or buffer to decode from
1531
+ * @param [length] Message length if known beforehand
1532
+ * @returns LfpStore
1533
+ * @throws {Error} If the payload is not a reader or valid buffer
1534
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1535
+ */
1536
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.lfp.v1.LfpStore;
1537
+
1538
+ /**
1539
+ * Decodes a LfpStore message from the specified reader or buffer, length delimited.
1540
+ * @param reader Reader or buffer to decode from
1541
+ * @returns LfpStore
1542
+ * @throws {Error} If the payload is not a reader or valid buffer
1543
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1544
+ */
1545
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.lfp.v1.LfpStore;
1546
+
1547
+ /**
1548
+ * Verifies a LfpStore message.
1549
+ * @param message Plain object to verify
1550
+ * @returns `null` if valid, otherwise the reason why it is not
1551
+ */
1552
+ public static verify(message: { [k: string]: any }): (string|null);
1553
+
1554
+ /**
1555
+ * Creates a LfpStore message from a plain object. Also converts values to their respective internal types.
1556
+ * @param object Plain object
1557
+ * @returns LfpStore
1558
+ */
1559
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.lfp.v1.LfpStore;
1560
+
1561
+ /**
1562
+ * Creates a plain object from a LfpStore message. Also converts values to other types if specified.
1563
+ * @param message LfpStore
1564
+ * @param [options] Conversion options
1565
+ * @returns Plain object
1566
+ */
1567
+ public static toObject(message: google.shopping.merchant.lfp.v1.LfpStore, options?: $protobuf.IConversionOptions): { [k: string]: any };
1568
+
1569
+ /**
1570
+ * Converts this LfpStore to JSON.
1571
+ * @returns JSON object
1572
+ */
1573
+ public toJSON(): { [k: string]: any };
1574
+
1575
+ /**
1576
+ * Gets the default type url for LfpStore
1577
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
1578
+ * @returns The default type url
1579
+ */
1580
+ public static getTypeUrl(typeUrlPrefix?: string): string;
1581
+ }
1582
+
1583
+ namespace LfpStore {
1584
+
1585
+ /** StoreMatchingState enum. */
1586
+ enum StoreMatchingState {
1587
+ STORE_MATCHING_STATE_UNSPECIFIED = 0,
1588
+ STORE_MATCHING_STATE_MATCHED = 1,
1589
+ STORE_MATCHING_STATE_FAILED = 2
1590
+ }
1591
+ }
1592
+
1593
+ /** Properties of a GetLfpStoreRequest. */
1594
+ interface IGetLfpStoreRequest {
1595
+
1596
+ /** GetLfpStoreRequest name */
1597
+ name?: (string|null);
1598
+ }
1599
+
1600
+ /** Represents a GetLfpStoreRequest. */
1601
+ class GetLfpStoreRequest implements IGetLfpStoreRequest {
1602
+
1603
+ /**
1604
+ * Constructs a new GetLfpStoreRequest.
1605
+ * @param [properties] Properties to set
1606
+ */
1607
+ constructor(properties?: google.shopping.merchant.lfp.v1.IGetLfpStoreRequest);
1608
+
1609
+ /** GetLfpStoreRequest name. */
1610
+ public name: string;
1611
+
1612
+ /**
1613
+ * Creates a new GetLfpStoreRequest instance using the specified properties.
1614
+ * @param [properties] Properties to set
1615
+ * @returns GetLfpStoreRequest instance
1616
+ */
1617
+ public static create(properties?: google.shopping.merchant.lfp.v1.IGetLfpStoreRequest): google.shopping.merchant.lfp.v1.GetLfpStoreRequest;
1618
+
1619
+ /**
1620
+ * Encodes the specified GetLfpStoreRequest message. Does not implicitly {@link google.shopping.merchant.lfp.v1.GetLfpStoreRequest.verify|verify} messages.
1621
+ * @param message GetLfpStoreRequest message or plain object to encode
1622
+ * @param [writer] Writer to encode to
1623
+ * @returns Writer
1624
+ */
1625
+ public static encode(message: google.shopping.merchant.lfp.v1.IGetLfpStoreRequest, writer?: $protobuf.Writer): $protobuf.Writer;
1626
+
1627
+ /**
1628
+ * Encodes the specified GetLfpStoreRequest message, length delimited. Does not implicitly {@link google.shopping.merchant.lfp.v1.GetLfpStoreRequest.verify|verify} messages.
1629
+ * @param message GetLfpStoreRequest message or plain object to encode
1630
+ * @param [writer] Writer to encode to
1631
+ * @returns Writer
1632
+ */
1633
+ public static encodeDelimited(message: google.shopping.merchant.lfp.v1.IGetLfpStoreRequest, writer?: $protobuf.Writer): $protobuf.Writer;
1634
+
1635
+ /**
1636
+ * Decodes a GetLfpStoreRequest message from the specified reader or buffer.
1637
+ * @param reader Reader or buffer to decode from
1638
+ * @param [length] Message length if known beforehand
1639
+ * @returns GetLfpStoreRequest
1640
+ * @throws {Error} If the payload is not a reader or valid buffer
1641
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1642
+ */
1643
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.lfp.v1.GetLfpStoreRequest;
1644
+
1645
+ /**
1646
+ * Decodes a GetLfpStoreRequest message from the specified reader or buffer, length delimited.
1647
+ * @param reader Reader or buffer to decode from
1648
+ * @returns GetLfpStoreRequest
1649
+ * @throws {Error} If the payload is not a reader or valid buffer
1650
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1651
+ */
1652
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.lfp.v1.GetLfpStoreRequest;
1653
+
1654
+ /**
1655
+ * Verifies a GetLfpStoreRequest message.
1656
+ * @param message Plain object to verify
1657
+ * @returns `null` if valid, otherwise the reason why it is not
1658
+ */
1659
+ public static verify(message: { [k: string]: any }): (string|null);
1660
+
1661
+ /**
1662
+ * Creates a GetLfpStoreRequest message from a plain object. Also converts values to their respective internal types.
1663
+ * @param object Plain object
1664
+ * @returns GetLfpStoreRequest
1665
+ */
1666
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.lfp.v1.GetLfpStoreRequest;
1667
+
1668
+ /**
1669
+ * Creates a plain object from a GetLfpStoreRequest message. Also converts values to other types if specified.
1670
+ * @param message GetLfpStoreRequest
1671
+ * @param [options] Conversion options
1672
+ * @returns Plain object
1673
+ */
1674
+ public static toObject(message: google.shopping.merchant.lfp.v1.GetLfpStoreRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
1675
+
1676
+ /**
1677
+ * Converts this GetLfpStoreRequest to JSON.
1678
+ * @returns JSON object
1679
+ */
1680
+ public toJSON(): { [k: string]: any };
1681
+
1682
+ /**
1683
+ * Gets the default type url for GetLfpStoreRequest
1684
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
1685
+ * @returns The default type url
1686
+ */
1687
+ public static getTypeUrl(typeUrlPrefix?: string): string;
1688
+ }
1689
+
1690
+ /** Properties of an InsertLfpStoreRequest. */
1691
+ interface IInsertLfpStoreRequest {
1692
+
1693
+ /** InsertLfpStoreRequest parent */
1694
+ parent?: (string|null);
1695
+
1696
+ /** InsertLfpStoreRequest lfpStore */
1697
+ lfpStore?: (google.shopping.merchant.lfp.v1.ILfpStore|null);
1698
+ }
1699
+
1700
+ /** Represents an InsertLfpStoreRequest. */
1701
+ class InsertLfpStoreRequest implements IInsertLfpStoreRequest {
1702
+
1703
+ /**
1704
+ * Constructs a new InsertLfpStoreRequest.
1705
+ * @param [properties] Properties to set
1706
+ */
1707
+ constructor(properties?: google.shopping.merchant.lfp.v1.IInsertLfpStoreRequest);
1708
+
1709
+ /** InsertLfpStoreRequest parent. */
1710
+ public parent: string;
1711
+
1712
+ /** InsertLfpStoreRequest lfpStore. */
1713
+ public lfpStore?: (google.shopping.merchant.lfp.v1.ILfpStore|null);
1714
+
1715
+ /**
1716
+ * Creates a new InsertLfpStoreRequest instance using the specified properties.
1717
+ * @param [properties] Properties to set
1718
+ * @returns InsertLfpStoreRequest instance
1719
+ */
1720
+ public static create(properties?: google.shopping.merchant.lfp.v1.IInsertLfpStoreRequest): google.shopping.merchant.lfp.v1.InsertLfpStoreRequest;
1721
+
1722
+ /**
1723
+ * Encodes the specified InsertLfpStoreRequest message. Does not implicitly {@link google.shopping.merchant.lfp.v1.InsertLfpStoreRequest.verify|verify} messages.
1724
+ * @param message InsertLfpStoreRequest message or plain object to encode
1725
+ * @param [writer] Writer to encode to
1726
+ * @returns Writer
1727
+ */
1728
+ public static encode(message: google.shopping.merchant.lfp.v1.IInsertLfpStoreRequest, writer?: $protobuf.Writer): $protobuf.Writer;
1729
+
1730
+ /**
1731
+ * Encodes the specified InsertLfpStoreRequest message, length delimited. Does not implicitly {@link google.shopping.merchant.lfp.v1.InsertLfpStoreRequest.verify|verify} messages.
1732
+ * @param message InsertLfpStoreRequest message or plain object to encode
1733
+ * @param [writer] Writer to encode to
1734
+ * @returns Writer
1735
+ */
1736
+ public static encodeDelimited(message: google.shopping.merchant.lfp.v1.IInsertLfpStoreRequest, writer?: $protobuf.Writer): $protobuf.Writer;
1737
+
1738
+ /**
1739
+ * Decodes an InsertLfpStoreRequest message from the specified reader or buffer.
1740
+ * @param reader Reader or buffer to decode from
1741
+ * @param [length] Message length if known beforehand
1742
+ * @returns InsertLfpStoreRequest
1743
+ * @throws {Error} If the payload is not a reader or valid buffer
1744
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1745
+ */
1746
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.lfp.v1.InsertLfpStoreRequest;
1747
+
1748
+ /**
1749
+ * Decodes an InsertLfpStoreRequest message from the specified reader or buffer, length delimited.
1750
+ * @param reader Reader or buffer to decode from
1751
+ * @returns InsertLfpStoreRequest
1752
+ * @throws {Error} If the payload is not a reader or valid buffer
1753
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1754
+ */
1755
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.lfp.v1.InsertLfpStoreRequest;
1756
+
1757
+ /**
1758
+ * Verifies an InsertLfpStoreRequest message.
1759
+ * @param message Plain object to verify
1760
+ * @returns `null` if valid, otherwise the reason why it is not
1761
+ */
1762
+ public static verify(message: { [k: string]: any }): (string|null);
1763
+
1764
+ /**
1765
+ * Creates an InsertLfpStoreRequest message from a plain object. Also converts values to their respective internal types.
1766
+ * @param object Plain object
1767
+ * @returns InsertLfpStoreRequest
1768
+ */
1769
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.lfp.v1.InsertLfpStoreRequest;
1770
+
1771
+ /**
1772
+ * Creates a plain object from an InsertLfpStoreRequest message. Also converts values to other types if specified.
1773
+ * @param message InsertLfpStoreRequest
1774
+ * @param [options] Conversion options
1775
+ * @returns Plain object
1776
+ */
1777
+ public static toObject(message: google.shopping.merchant.lfp.v1.InsertLfpStoreRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
1778
+
1779
+ /**
1780
+ * Converts this InsertLfpStoreRequest to JSON.
1781
+ * @returns JSON object
1782
+ */
1783
+ public toJSON(): { [k: string]: any };
1784
+
1785
+ /**
1786
+ * Gets the default type url for InsertLfpStoreRequest
1787
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
1788
+ * @returns The default type url
1789
+ */
1790
+ public static getTypeUrl(typeUrlPrefix?: string): string;
1791
+ }
1792
+
1793
+ /** Properties of a DeleteLfpStoreRequest. */
1794
+ interface IDeleteLfpStoreRequest {
1795
+
1796
+ /** DeleteLfpStoreRequest name */
1797
+ name?: (string|null);
1798
+ }
1799
+
1800
+ /** Represents a DeleteLfpStoreRequest. */
1801
+ class DeleteLfpStoreRequest implements IDeleteLfpStoreRequest {
1802
+
1803
+ /**
1804
+ * Constructs a new DeleteLfpStoreRequest.
1805
+ * @param [properties] Properties to set
1806
+ */
1807
+ constructor(properties?: google.shopping.merchant.lfp.v1.IDeleteLfpStoreRequest);
1808
+
1809
+ /** DeleteLfpStoreRequest name. */
1810
+ public name: string;
1811
+
1812
+ /**
1813
+ * Creates a new DeleteLfpStoreRequest instance using the specified properties.
1814
+ * @param [properties] Properties to set
1815
+ * @returns DeleteLfpStoreRequest instance
1816
+ */
1817
+ public static create(properties?: google.shopping.merchant.lfp.v1.IDeleteLfpStoreRequest): google.shopping.merchant.lfp.v1.DeleteLfpStoreRequest;
1818
+
1819
+ /**
1820
+ * Encodes the specified DeleteLfpStoreRequest message. Does not implicitly {@link google.shopping.merchant.lfp.v1.DeleteLfpStoreRequest.verify|verify} messages.
1821
+ * @param message DeleteLfpStoreRequest message or plain object to encode
1822
+ * @param [writer] Writer to encode to
1823
+ * @returns Writer
1824
+ */
1825
+ public static encode(message: google.shopping.merchant.lfp.v1.IDeleteLfpStoreRequest, writer?: $protobuf.Writer): $protobuf.Writer;
1826
+
1827
+ /**
1828
+ * Encodes the specified DeleteLfpStoreRequest message, length delimited. Does not implicitly {@link google.shopping.merchant.lfp.v1.DeleteLfpStoreRequest.verify|verify} messages.
1829
+ * @param message DeleteLfpStoreRequest message or plain object to encode
1830
+ * @param [writer] Writer to encode to
1831
+ * @returns Writer
1832
+ */
1833
+ public static encodeDelimited(message: google.shopping.merchant.lfp.v1.IDeleteLfpStoreRequest, writer?: $protobuf.Writer): $protobuf.Writer;
1834
+
1835
+ /**
1836
+ * Decodes a DeleteLfpStoreRequest message from the specified reader or buffer.
1837
+ * @param reader Reader or buffer to decode from
1838
+ * @param [length] Message length if known beforehand
1839
+ * @returns DeleteLfpStoreRequest
1840
+ * @throws {Error} If the payload is not a reader or valid buffer
1841
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1842
+ */
1843
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.lfp.v1.DeleteLfpStoreRequest;
1844
+
1845
+ /**
1846
+ * Decodes a DeleteLfpStoreRequest message from the specified reader or buffer, length delimited.
1847
+ * @param reader Reader or buffer to decode from
1848
+ * @returns DeleteLfpStoreRequest
1849
+ * @throws {Error} If the payload is not a reader or valid buffer
1850
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1851
+ */
1852
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.lfp.v1.DeleteLfpStoreRequest;
1853
+
1854
+ /**
1855
+ * Verifies a DeleteLfpStoreRequest message.
1856
+ * @param message Plain object to verify
1857
+ * @returns `null` if valid, otherwise the reason why it is not
1858
+ */
1859
+ public static verify(message: { [k: string]: any }): (string|null);
1860
+
1861
+ /**
1862
+ * Creates a DeleteLfpStoreRequest message from a plain object. Also converts values to their respective internal types.
1863
+ * @param object Plain object
1864
+ * @returns DeleteLfpStoreRequest
1865
+ */
1866
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.lfp.v1.DeleteLfpStoreRequest;
1867
+
1868
+ /**
1869
+ * Creates a plain object from a DeleteLfpStoreRequest message. Also converts values to other types if specified.
1870
+ * @param message DeleteLfpStoreRequest
1871
+ * @param [options] Conversion options
1872
+ * @returns Plain object
1873
+ */
1874
+ public static toObject(message: google.shopping.merchant.lfp.v1.DeleteLfpStoreRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
1875
+
1876
+ /**
1877
+ * Converts this DeleteLfpStoreRequest to JSON.
1878
+ * @returns JSON object
1879
+ */
1880
+ public toJSON(): { [k: string]: any };
1881
+
1882
+ /**
1883
+ * Gets the default type url for DeleteLfpStoreRequest
1884
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
1885
+ * @returns The default type url
1886
+ */
1887
+ public static getTypeUrl(typeUrlPrefix?: string): string;
1888
+ }
1889
+
1890
+ /** Properties of a ListLfpStoresRequest. */
1891
+ interface IListLfpStoresRequest {
1892
+
1893
+ /** ListLfpStoresRequest parent */
1894
+ parent?: (string|null);
1895
+
1896
+ /** ListLfpStoresRequest targetAccount */
1897
+ targetAccount?: (number|Long|string|null);
1898
+
1899
+ /** ListLfpStoresRequest pageSize */
1900
+ pageSize?: (number|null);
1901
+
1902
+ /** ListLfpStoresRequest pageToken */
1903
+ pageToken?: (string|null);
1904
+ }
1905
+
1906
+ /** Represents a ListLfpStoresRequest. */
1907
+ class ListLfpStoresRequest implements IListLfpStoresRequest {
1908
+
1909
+ /**
1910
+ * Constructs a new ListLfpStoresRequest.
1911
+ * @param [properties] Properties to set
1912
+ */
1913
+ constructor(properties?: google.shopping.merchant.lfp.v1.IListLfpStoresRequest);
1914
+
1915
+ /** ListLfpStoresRequest parent. */
1916
+ public parent: string;
1917
+
1918
+ /** ListLfpStoresRequest targetAccount. */
1919
+ public targetAccount: (number|Long|string);
1920
+
1921
+ /** ListLfpStoresRequest pageSize. */
1922
+ public pageSize: number;
1923
+
1924
+ /** ListLfpStoresRequest pageToken. */
1925
+ public pageToken: string;
1926
+
1927
+ /**
1928
+ * Creates a new ListLfpStoresRequest instance using the specified properties.
1929
+ * @param [properties] Properties to set
1930
+ * @returns ListLfpStoresRequest instance
1931
+ */
1932
+ public static create(properties?: google.shopping.merchant.lfp.v1.IListLfpStoresRequest): google.shopping.merchant.lfp.v1.ListLfpStoresRequest;
1933
+
1934
+ /**
1935
+ * Encodes the specified ListLfpStoresRequest message. Does not implicitly {@link google.shopping.merchant.lfp.v1.ListLfpStoresRequest.verify|verify} messages.
1936
+ * @param message ListLfpStoresRequest message or plain object to encode
1937
+ * @param [writer] Writer to encode to
1938
+ * @returns Writer
1939
+ */
1940
+ public static encode(message: google.shopping.merchant.lfp.v1.IListLfpStoresRequest, writer?: $protobuf.Writer): $protobuf.Writer;
1941
+
1942
+ /**
1943
+ * Encodes the specified ListLfpStoresRequest message, length delimited. Does not implicitly {@link google.shopping.merchant.lfp.v1.ListLfpStoresRequest.verify|verify} messages.
1944
+ * @param message ListLfpStoresRequest message or plain object to encode
1945
+ * @param [writer] Writer to encode to
1946
+ * @returns Writer
1947
+ */
1948
+ public static encodeDelimited(message: google.shopping.merchant.lfp.v1.IListLfpStoresRequest, writer?: $protobuf.Writer): $protobuf.Writer;
1949
+
1950
+ /**
1951
+ * Decodes a ListLfpStoresRequest message from the specified reader or buffer.
1952
+ * @param reader Reader or buffer to decode from
1953
+ * @param [length] Message length if known beforehand
1954
+ * @returns ListLfpStoresRequest
1955
+ * @throws {Error} If the payload is not a reader or valid buffer
1956
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1957
+ */
1958
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.lfp.v1.ListLfpStoresRequest;
1959
+
1960
+ /**
1961
+ * Decodes a ListLfpStoresRequest message from the specified reader or buffer, length delimited.
1962
+ * @param reader Reader or buffer to decode from
1963
+ * @returns ListLfpStoresRequest
1964
+ * @throws {Error} If the payload is not a reader or valid buffer
1965
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1966
+ */
1967
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.lfp.v1.ListLfpStoresRequest;
1968
+
1969
+ /**
1970
+ * Verifies a ListLfpStoresRequest message.
1971
+ * @param message Plain object to verify
1972
+ * @returns `null` if valid, otherwise the reason why it is not
1973
+ */
1974
+ public static verify(message: { [k: string]: any }): (string|null);
1975
+
1976
+ /**
1977
+ * Creates a ListLfpStoresRequest message from a plain object. Also converts values to their respective internal types.
1978
+ * @param object Plain object
1979
+ * @returns ListLfpStoresRequest
1980
+ */
1981
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.lfp.v1.ListLfpStoresRequest;
1982
+
1983
+ /**
1984
+ * Creates a plain object from a ListLfpStoresRequest message. Also converts values to other types if specified.
1985
+ * @param message ListLfpStoresRequest
1986
+ * @param [options] Conversion options
1987
+ * @returns Plain object
1988
+ */
1989
+ public static toObject(message: google.shopping.merchant.lfp.v1.ListLfpStoresRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
1990
+
1991
+ /**
1992
+ * Converts this ListLfpStoresRequest to JSON.
1993
+ * @returns JSON object
1994
+ */
1995
+ public toJSON(): { [k: string]: any };
1996
+
1997
+ /**
1998
+ * Gets the default type url for ListLfpStoresRequest
1999
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
2000
+ * @returns The default type url
2001
+ */
2002
+ public static getTypeUrl(typeUrlPrefix?: string): string;
2003
+ }
2004
+
2005
+ /** Properties of a ListLfpStoresResponse. */
2006
+ interface IListLfpStoresResponse {
2007
+
2008
+ /** ListLfpStoresResponse lfpStores */
2009
+ lfpStores?: (google.shopping.merchant.lfp.v1.ILfpStore[]|null);
2010
+
2011
+ /** ListLfpStoresResponse nextPageToken */
2012
+ nextPageToken?: (string|null);
2013
+ }
2014
+
2015
+ /** Represents a ListLfpStoresResponse. */
2016
+ class ListLfpStoresResponse implements IListLfpStoresResponse {
2017
+
2018
+ /**
2019
+ * Constructs a new ListLfpStoresResponse.
2020
+ * @param [properties] Properties to set
2021
+ */
2022
+ constructor(properties?: google.shopping.merchant.lfp.v1.IListLfpStoresResponse);
2023
+
2024
+ /** ListLfpStoresResponse lfpStores. */
2025
+ public lfpStores: google.shopping.merchant.lfp.v1.ILfpStore[];
2026
+
2027
+ /** ListLfpStoresResponse nextPageToken. */
2028
+ public nextPageToken: string;
2029
+
2030
+ /**
2031
+ * Creates a new ListLfpStoresResponse instance using the specified properties.
2032
+ * @param [properties] Properties to set
2033
+ * @returns ListLfpStoresResponse instance
2034
+ */
2035
+ public static create(properties?: google.shopping.merchant.lfp.v1.IListLfpStoresResponse): google.shopping.merchant.lfp.v1.ListLfpStoresResponse;
2036
+
2037
+ /**
2038
+ * Encodes the specified ListLfpStoresResponse message. Does not implicitly {@link google.shopping.merchant.lfp.v1.ListLfpStoresResponse.verify|verify} messages.
2039
+ * @param message ListLfpStoresResponse message or plain object to encode
2040
+ * @param [writer] Writer to encode to
2041
+ * @returns Writer
2042
+ */
2043
+ public static encode(message: google.shopping.merchant.lfp.v1.IListLfpStoresResponse, writer?: $protobuf.Writer): $protobuf.Writer;
2044
+
2045
+ /**
2046
+ * Encodes the specified ListLfpStoresResponse message, length delimited. Does not implicitly {@link google.shopping.merchant.lfp.v1.ListLfpStoresResponse.verify|verify} messages.
2047
+ * @param message ListLfpStoresResponse message or plain object to encode
2048
+ * @param [writer] Writer to encode to
2049
+ * @returns Writer
2050
+ */
2051
+ public static encodeDelimited(message: google.shopping.merchant.lfp.v1.IListLfpStoresResponse, writer?: $protobuf.Writer): $protobuf.Writer;
2052
+
2053
+ /**
2054
+ * Decodes a ListLfpStoresResponse message from the specified reader or buffer.
2055
+ * @param reader Reader or buffer to decode from
2056
+ * @param [length] Message length if known beforehand
2057
+ * @returns ListLfpStoresResponse
2058
+ * @throws {Error} If the payload is not a reader or valid buffer
2059
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2060
+ */
2061
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.shopping.merchant.lfp.v1.ListLfpStoresResponse;
2062
+
2063
+ /**
2064
+ * Decodes a ListLfpStoresResponse message from the specified reader or buffer, length delimited.
2065
+ * @param reader Reader or buffer to decode from
2066
+ * @returns ListLfpStoresResponse
2067
+ * @throws {Error} If the payload is not a reader or valid buffer
2068
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2069
+ */
2070
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.shopping.merchant.lfp.v1.ListLfpStoresResponse;
2071
+
2072
+ /**
2073
+ * Verifies a ListLfpStoresResponse message.
2074
+ * @param message Plain object to verify
2075
+ * @returns `null` if valid, otherwise the reason why it is not
2076
+ */
2077
+ public static verify(message: { [k: string]: any }): (string|null);
2078
+
2079
+ /**
2080
+ * Creates a ListLfpStoresResponse message from a plain object. Also converts values to their respective internal types.
2081
+ * @param object Plain object
2082
+ * @returns ListLfpStoresResponse
2083
+ */
2084
+ public static fromObject(object: { [k: string]: any }): google.shopping.merchant.lfp.v1.ListLfpStoresResponse;
2085
+
2086
+ /**
2087
+ * Creates a plain object from a ListLfpStoresResponse message. Also converts values to other types if specified.
2088
+ * @param message ListLfpStoresResponse
2089
+ * @param [options] Conversion options
2090
+ * @returns Plain object
2091
+ */
2092
+ public static toObject(message: google.shopping.merchant.lfp.v1.ListLfpStoresResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
2093
+
2094
+ /**
2095
+ * Converts this ListLfpStoresResponse to JSON.
2096
+ * @returns JSON object
2097
+ */
2098
+ public toJSON(): { [k: string]: any };
2099
+
2100
+ /**
2101
+ * Gets the default type url for ListLfpStoresResponse
2102
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
2103
+ * @returns The default type url
2104
+ */
2105
+ public static getTypeUrl(typeUrlPrefix?: string): string;
2106
+ }
2107
+ }
2108
+
29
2109
  /** Namespace v1beta. */
30
2110
  namespace v1beta {
31
2111
 
@@ -3128,6 +5208,9 @@ export namespace google {
3128
5208
 
3129
5209
  /** CommonLanguageSettings destinations */
3130
5210
  destinations?: (google.api.ClientLibraryDestination[]|null);
5211
+
5212
+ /** CommonLanguageSettings selectiveGapicGeneration */
5213
+ selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
3131
5214
  }
3132
5215
 
3133
5216
  /** Represents a CommonLanguageSettings. */
@@ -3145,6 +5228,9 @@ export namespace google {
3145
5228
  /** CommonLanguageSettings destinations. */
3146
5229
  public destinations: google.api.ClientLibraryDestination[];
3147
5230
 
5231
+ /** CommonLanguageSettings selectiveGapicGeneration. */
5232
+ public selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
5233
+
3148
5234
  /**
3149
5235
  * Creates a new CommonLanguageSettings instance using the specified properties.
3150
5236
  * @param [properties] Properties to set
@@ -3845,6 +5931,9 @@ export namespace google {
3845
5931
 
3846
5932
  /** PythonSettings common */
3847
5933
  common?: (google.api.ICommonLanguageSettings|null);
5934
+
5935
+ /** PythonSettings experimentalFeatures */
5936
+ experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
3848
5937
  }
3849
5938
 
3850
5939
  /** Represents a PythonSettings. */
@@ -3859,6 +5948,9 @@ export namespace google {
3859
5948
  /** PythonSettings common. */
3860
5949
  public common?: (google.api.ICommonLanguageSettings|null);
3861
5950
 
5951
+ /** PythonSettings experimentalFeatures. */
5952
+ public experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
5953
+
3862
5954
  /**
3863
5955
  * Creates a new PythonSettings instance using the specified properties.
3864
5956
  * @param [properties] Properties to set
@@ -3937,6 +6029,118 @@ export namespace google {
3937
6029
  public static getTypeUrl(typeUrlPrefix?: string): string;
3938
6030
  }
3939
6031
 
6032
+ namespace PythonSettings {
6033
+
6034
+ /** Properties of an ExperimentalFeatures. */
6035
+ interface IExperimentalFeatures {
6036
+
6037
+ /** ExperimentalFeatures restAsyncIoEnabled */
6038
+ restAsyncIoEnabled?: (boolean|null);
6039
+
6040
+ /** ExperimentalFeatures protobufPythonicTypesEnabled */
6041
+ protobufPythonicTypesEnabled?: (boolean|null);
6042
+
6043
+ /** ExperimentalFeatures unversionedPackageDisabled */
6044
+ unversionedPackageDisabled?: (boolean|null);
6045
+ }
6046
+
6047
+ /** Represents an ExperimentalFeatures. */
6048
+ class ExperimentalFeatures implements IExperimentalFeatures {
6049
+
6050
+ /**
6051
+ * Constructs a new ExperimentalFeatures.
6052
+ * @param [properties] Properties to set
6053
+ */
6054
+ constructor(properties?: google.api.PythonSettings.IExperimentalFeatures);
6055
+
6056
+ /** ExperimentalFeatures restAsyncIoEnabled. */
6057
+ public restAsyncIoEnabled: boolean;
6058
+
6059
+ /** ExperimentalFeatures protobufPythonicTypesEnabled. */
6060
+ public protobufPythonicTypesEnabled: boolean;
6061
+
6062
+ /** ExperimentalFeatures unversionedPackageDisabled. */
6063
+ public unversionedPackageDisabled: boolean;
6064
+
6065
+ /**
6066
+ * Creates a new ExperimentalFeatures instance using the specified properties.
6067
+ * @param [properties] Properties to set
6068
+ * @returns ExperimentalFeatures instance
6069
+ */
6070
+ public static create(properties?: google.api.PythonSettings.IExperimentalFeatures): google.api.PythonSettings.ExperimentalFeatures;
6071
+
6072
+ /**
6073
+ * Encodes the specified ExperimentalFeatures message. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
6074
+ * @param message ExperimentalFeatures message or plain object to encode
6075
+ * @param [writer] Writer to encode to
6076
+ * @returns Writer
6077
+ */
6078
+ public static encode(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
6079
+
6080
+ /**
6081
+ * Encodes the specified ExperimentalFeatures message, length delimited. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
6082
+ * @param message ExperimentalFeatures message or plain object to encode
6083
+ * @param [writer] Writer to encode to
6084
+ * @returns Writer
6085
+ */
6086
+ public static encodeDelimited(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
6087
+
6088
+ /**
6089
+ * Decodes an ExperimentalFeatures message from the specified reader or buffer.
6090
+ * @param reader Reader or buffer to decode from
6091
+ * @param [length] Message length if known beforehand
6092
+ * @returns ExperimentalFeatures
6093
+ * @throws {Error} If the payload is not a reader or valid buffer
6094
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6095
+ */
6096
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings.ExperimentalFeatures;
6097
+
6098
+ /**
6099
+ * Decodes an ExperimentalFeatures message from the specified reader or buffer, length delimited.
6100
+ * @param reader Reader or buffer to decode from
6101
+ * @returns ExperimentalFeatures
6102
+ * @throws {Error} If the payload is not a reader or valid buffer
6103
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6104
+ */
6105
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings.ExperimentalFeatures;
6106
+
6107
+ /**
6108
+ * Verifies an ExperimentalFeatures message.
6109
+ * @param message Plain object to verify
6110
+ * @returns `null` if valid, otherwise the reason why it is not
6111
+ */
6112
+ public static verify(message: { [k: string]: any }): (string|null);
6113
+
6114
+ /**
6115
+ * Creates an ExperimentalFeatures message from a plain object. Also converts values to their respective internal types.
6116
+ * @param object Plain object
6117
+ * @returns ExperimentalFeatures
6118
+ */
6119
+ public static fromObject(object: { [k: string]: any }): google.api.PythonSettings.ExperimentalFeatures;
6120
+
6121
+ /**
6122
+ * Creates a plain object from an ExperimentalFeatures message. Also converts values to other types if specified.
6123
+ * @param message ExperimentalFeatures
6124
+ * @param [options] Conversion options
6125
+ * @returns Plain object
6126
+ */
6127
+ public static toObject(message: google.api.PythonSettings.ExperimentalFeatures, options?: $protobuf.IConversionOptions): { [k: string]: any };
6128
+
6129
+ /**
6130
+ * Converts this ExperimentalFeatures to JSON.
6131
+ * @returns JSON object
6132
+ */
6133
+ public toJSON(): { [k: string]: any };
6134
+
6135
+ /**
6136
+ * Gets the default type url for ExperimentalFeatures
6137
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6138
+ * @returns The default type url
6139
+ */
6140
+ public static getTypeUrl(typeUrlPrefix?: string): string;
6141
+ }
6142
+ }
6143
+
3940
6144
  /** Properties of a NodeSettings. */
3941
6145
  interface INodeSettings {
3942
6146
 
@@ -4263,6 +6467,9 @@ export namespace google {
4263
6467
 
4264
6468
  /** GoSettings common */
4265
6469
  common?: (google.api.ICommonLanguageSettings|null);
6470
+
6471
+ /** GoSettings renamedServices */
6472
+ renamedServices?: ({ [k: string]: string }|null);
4266
6473
  }
4267
6474
 
4268
6475
  /** Represents a GoSettings. */
@@ -4277,6 +6484,9 @@ export namespace google {
4277
6484
  /** GoSettings common. */
4278
6485
  public common?: (google.api.ICommonLanguageSettings|null);
4279
6486
 
6487
+ /** GoSettings renamedServices. */
6488
+ public renamedServices: { [k: string]: string };
6489
+
4280
6490
  /**
4281
6491
  * Creates a new GoSettings instance using the specified properties.
4282
6492
  * @param [properties] Properties to set
@@ -4582,23 +6792,126 @@ export namespace google {
4582
6792
  }
4583
6793
  }
4584
6794
 
4585
- /** ClientLibraryOrganization enum. */
4586
- enum ClientLibraryOrganization {
4587
- CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED = 0,
4588
- CLOUD = 1,
4589
- ADS = 2,
4590
- PHOTOS = 3,
4591
- STREET_VIEW = 4,
4592
- SHOPPING = 5,
4593
- GEO = 6,
4594
- GENERATIVE_AI = 7
4595
- }
6795
+ /** ClientLibraryOrganization enum. */
6796
+ enum ClientLibraryOrganization {
6797
+ CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED = 0,
6798
+ CLOUD = 1,
6799
+ ADS = 2,
6800
+ PHOTOS = 3,
6801
+ STREET_VIEW = 4,
6802
+ SHOPPING = 5,
6803
+ GEO = 6,
6804
+ GENERATIVE_AI = 7
6805
+ }
6806
+
6807
+ /** ClientLibraryDestination enum. */
6808
+ enum ClientLibraryDestination {
6809
+ CLIENT_LIBRARY_DESTINATION_UNSPECIFIED = 0,
6810
+ GITHUB = 10,
6811
+ PACKAGE_MANAGER = 20
6812
+ }
6813
+
6814
+ /** Properties of a SelectiveGapicGeneration. */
6815
+ interface ISelectiveGapicGeneration {
6816
+
6817
+ /** SelectiveGapicGeneration methods */
6818
+ methods?: (string[]|null);
6819
+
6820
+ /** SelectiveGapicGeneration generateOmittedAsInternal */
6821
+ generateOmittedAsInternal?: (boolean|null);
6822
+ }
6823
+
6824
+ /** Represents a SelectiveGapicGeneration. */
6825
+ class SelectiveGapicGeneration implements ISelectiveGapicGeneration {
6826
+
6827
+ /**
6828
+ * Constructs a new SelectiveGapicGeneration.
6829
+ * @param [properties] Properties to set
6830
+ */
6831
+ constructor(properties?: google.api.ISelectiveGapicGeneration);
6832
+
6833
+ /** SelectiveGapicGeneration methods. */
6834
+ public methods: string[];
6835
+
6836
+ /** SelectiveGapicGeneration generateOmittedAsInternal. */
6837
+ public generateOmittedAsInternal: boolean;
6838
+
6839
+ /**
6840
+ * Creates a new SelectiveGapicGeneration instance using the specified properties.
6841
+ * @param [properties] Properties to set
6842
+ * @returns SelectiveGapicGeneration instance
6843
+ */
6844
+ public static create(properties?: google.api.ISelectiveGapicGeneration): google.api.SelectiveGapicGeneration;
6845
+
6846
+ /**
6847
+ * Encodes the specified SelectiveGapicGeneration message. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
6848
+ * @param message SelectiveGapicGeneration message or plain object to encode
6849
+ * @param [writer] Writer to encode to
6850
+ * @returns Writer
6851
+ */
6852
+ public static encode(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
6853
+
6854
+ /**
6855
+ * Encodes the specified SelectiveGapicGeneration message, length delimited. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
6856
+ * @param message SelectiveGapicGeneration message or plain object to encode
6857
+ * @param [writer] Writer to encode to
6858
+ * @returns Writer
6859
+ */
6860
+ public static encodeDelimited(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
6861
+
6862
+ /**
6863
+ * Decodes a SelectiveGapicGeneration message from the specified reader or buffer.
6864
+ * @param reader Reader or buffer to decode from
6865
+ * @param [length] Message length if known beforehand
6866
+ * @returns SelectiveGapicGeneration
6867
+ * @throws {Error} If the payload is not a reader or valid buffer
6868
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6869
+ */
6870
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.SelectiveGapicGeneration;
6871
+
6872
+ /**
6873
+ * Decodes a SelectiveGapicGeneration message from the specified reader or buffer, length delimited.
6874
+ * @param reader Reader or buffer to decode from
6875
+ * @returns SelectiveGapicGeneration
6876
+ * @throws {Error} If the payload is not a reader or valid buffer
6877
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6878
+ */
6879
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.SelectiveGapicGeneration;
6880
+
6881
+ /**
6882
+ * Verifies a SelectiveGapicGeneration message.
6883
+ * @param message Plain object to verify
6884
+ * @returns `null` if valid, otherwise the reason why it is not
6885
+ */
6886
+ public static verify(message: { [k: string]: any }): (string|null);
6887
+
6888
+ /**
6889
+ * Creates a SelectiveGapicGeneration message from a plain object. Also converts values to their respective internal types.
6890
+ * @param object Plain object
6891
+ * @returns SelectiveGapicGeneration
6892
+ */
6893
+ public static fromObject(object: { [k: string]: any }): google.api.SelectiveGapicGeneration;
4596
6894
 
4597
- /** ClientLibraryDestination enum. */
4598
- enum ClientLibraryDestination {
4599
- CLIENT_LIBRARY_DESTINATION_UNSPECIFIED = 0,
4600
- GITHUB = 10,
4601
- PACKAGE_MANAGER = 20
6895
+ /**
6896
+ * Creates a plain object from a SelectiveGapicGeneration message. Also converts values to other types if specified.
6897
+ * @param message SelectiveGapicGeneration
6898
+ * @param [options] Conversion options
6899
+ * @returns Plain object
6900
+ */
6901
+ public static toObject(message: google.api.SelectiveGapicGeneration, options?: $protobuf.IConversionOptions): { [k: string]: any };
6902
+
6903
+ /**
6904
+ * Converts this SelectiveGapicGeneration to JSON.
6905
+ * @returns JSON object
6906
+ */
6907
+ public toJSON(): { [k: string]: any };
6908
+
6909
+ /**
6910
+ * Gets the default type url for SelectiveGapicGeneration
6911
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6912
+ * @returns The default type url
6913
+ */
6914
+ public static getTypeUrl(typeUrlPrefix?: string): string;
4602
6915
  }
4603
6916
 
4604
6917
  /** LaunchStage enum. */
@@ -4883,6 +7196,9 @@ export namespace google {
4883
7196
 
4884
7197
  /** FieldInfo format */
4885
7198
  format?: (google.api.FieldInfo.Format|keyof typeof google.api.FieldInfo.Format|null);
7199
+
7200
+ /** FieldInfo referencedTypes */
7201
+ referencedTypes?: (google.api.ITypeReference[]|null);
4886
7202
  }
4887
7203
 
4888
7204
  /** Represents a FieldInfo. */
@@ -4897,6 +7213,9 @@ export namespace google {
4897
7213
  /** FieldInfo format. */
4898
7214
  public format: (google.api.FieldInfo.Format|keyof typeof google.api.FieldInfo.Format);
4899
7215
 
7216
+ /** FieldInfo referencedTypes. */
7217
+ public referencedTypes: google.api.ITypeReference[];
7218
+
4900
7219
  /**
4901
7220
  * Creates a new FieldInfo instance using the specified properties.
4902
7221
  * @param [properties] Properties to set
@@ -4986,6 +7305,103 @@ export namespace google {
4986
7305
  IPV4_OR_IPV6 = 4
4987
7306
  }
4988
7307
  }
7308
+
7309
+ /** Properties of a TypeReference. */
7310
+ interface ITypeReference {
7311
+
7312
+ /** TypeReference typeName */
7313
+ typeName?: (string|null);
7314
+ }
7315
+
7316
+ /** Represents a TypeReference. */
7317
+ class TypeReference implements ITypeReference {
7318
+
7319
+ /**
7320
+ * Constructs a new TypeReference.
7321
+ * @param [properties] Properties to set
7322
+ */
7323
+ constructor(properties?: google.api.ITypeReference);
7324
+
7325
+ /** TypeReference typeName. */
7326
+ public typeName: string;
7327
+
7328
+ /**
7329
+ * Creates a new TypeReference instance using the specified properties.
7330
+ * @param [properties] Properties to set
7331
+ * @returns TypeReference instance
7332
+ */
7333
+ public static create(properties?: google.api.ITypeReference): google.api.TypeReference;
7334
+
7335
+ /**
7336
+ * Encodes the specified TypeReference message. Does not implicitly {@link google.api.TypeReference.verify|verify} messages.
7337
+ * @param message TypeReference message or plain object to encode
7338
+ * @param [writer] Writer to encode to
7339
+ * @returns Writer
7340
+ */
7341
+ public static encode(message: google.api.ITypeReference, writer?: $protobuf.Writer): $protobuf.Writer;
7342
+
7343
+ /**
7344
+ * Encodes the specified TypeReference message, length delimited. Does not implicitly {@link google.api.TypeReference.verify|verify} messages.
7345
+ * @param message TypeReference message or plain object to encode
7346
+ * @param [writer] Writer to encode to
7347
+ * @returns Writer
7348
+ */
7349
+ public static encodeDelimited(message: google.api.ITypeReference, writer?: $protobuf.Writer): $protobuf.Writer;
7350
+
7351
+ /**
7352
+ * Decodes a TypeReference message from the specified reader or buffer.
7353
+ * @param reader Reader or buffer to decode from
7354
+ * @param [length] Message length if known beforehand
7355
+ * @returns TypeReference
7356
+ * @throws {Error} If the payload is not a reader or valid buffer
7357
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
7358
+ */
7359
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.TypeReference;
7360
+
7361
+ /**
7362
+ * Decodes a TypeReference message from the specified reader or buffer, length delimited.
7363
+ * @param reader Reader or buffer to decode from
7364
+ * @returns TypeReference
7365
+ * @throws {Error} If the payload is not a reader or valid buffer
7366
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
7367
+ */
7368
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.TypeReference;
7369
+
7370
+ /**
7371
+ * Verifies a TypeReference message.
7372
+ * @param message Plain object to verify
7373
+ * @returns `null` if valid, otherwise the reason why it is not
7374
+ */
7375
+ public static verify(message: { [k: string]: any }): (string|null);
7376
+
7377
+ /**
7378
+ * Creates a TypeReference message from a plain object. Also converts values to their respective internal types.
7379
+ * @param object Plain object
7380
+ * @returns TypeReference
7381
+ */
7382
+ public static fromObject(object: { [k: string]: any }): google.api.TypeReference;
7383
+
7384
+ /**
7385
+ * Creates a plain object from a TypeReference message. Also converts values to other types if specified.
7386
+ * @param message TypeReference
7387
+ * @param [options] Conversion options
7388
+ * @returns Plain object
7389
+ */
7390
+ public static toObject(message: google.api.TypeReference, options?: $protobuf.IConversionOptions): { [k: string]: any };
7391
+
7392
+ /**
7393
+ * Converts this TypeReference to JSON.
7394
+ * @returns JSON object
7395
+ */
7396
+ public toJSON(): { [k: string]: any };
7397
+
7398
+ /**
7399
+ * Gets the default type url for TypeReference
7400
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
7401
+ * @returns The default type url
7402
+ */
7403
+ public static getTypeUrl(typeUrlPrefix?: string): string;
7404
+ }
4989
7405
  }
4990
7406
 
4991
7407
  /** Namespace protobuf. */
@@ -5091,6 +7507,7 @@ export namespace google {
5091
7507
  /** Edition enum. */
5092
7508
  enum Edition {
5093
7509
  EDITION_UNKNOWN = 0,
7510
+ EDITION_LEGACY = 900,
5094
7511
  EDITION_PROTO2 = 998,
5095
7512
  EDITION_PROTO3 = 999,
5096
7513
  EDITION_2023 = 1000,
@@ -5121,6 +7538,9 @@ export namespace google {
5121
7538
  /** FileDescriptorProto weakDependency */
5122
7539
  weakDependency?: (number[]|null);
5123
7540
 
7541
+ /** FileDescriptorProto optionDependency */
7542
+ optionDependency?: (string[]|null);
7543
+
5124
7544
  /** FileDescriptorProto messageType */
5125
7545
  messageType?: (google.protobuf.IDescriptorProto[]|null);
5126
7546
 
@@ -5170,6 +7590,9 @@ export namespace google {
5170
7590
  /** FileDescriptorProto weakDependency. */
5171
7591
  public weakDependency: number[];
5172
7592
 
7593
+ /** FileDescriptorProto optionDependency. */
7594
+ public optionDependency: string[];
7595
+
5173
7596
  /** FileDescriptorProto messageType. */
5174
7597
  public messageType: google.protobuf.IDescriptorProto[];
5175
7598
 
@@ -5304,6 +7727,9 @@ export namespace google {
5304
7727
 
5305
7728
  /** DescriptorProto reservedName */
5306
7729
  reservedName?: (string[]|null);
7730
+
7731
+ /** DescriptorProto visibility */
7732
+ visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
5307
7733
  }
5308
7734
 
5309
7735
  /** Represents a DescriptorProto. */
@@ -5345,6 +7771,9 @@ export namespace google {
5345
7771
  /** DescriptorProto reservedName. */
5346
7772
  public reservedName: string[];
5347
7773
 
7774
+ /** DescriptorProto visibility. */
7775
+ public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
7776
+
5348
7777
  /**
5349
7778
  * Creates a new DescriptorProto instance using the specified properties.
5350
7779
  * @param [properties] Properties to set
@@ -6192,6 +8621,9 @@ export namespace google {
6192
8621
 
6193
8622
  /** EnumDescriptorProto reservedName */
6194
8623
  reservedName?: (string[]|null);
8624
+
8625
+ /** EnumDescriptorProto visibility */
8626
+ visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
6195
8627
  }
6196
8628
 
6197
8629
  /** Represents an EnumDescriptorProto. */
@@ -6218,6 +8650,9 @@ export namespace google {
6218
8650
  /** EnumDescriptorProto reservedName. */
6219
8651
  public reservedName: string[];
6220
8652
 
8653
+ /** EnumDescriptorProto visibility. */
8654
+ public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
8655
+
6221
8656
  /**
6222
8657
  * Creates a new EnumDescriptorProto instance using the specified properties.
6223
8658
  * @param [properties] Properties to set
@@ -7152,6 +9587,9 @@ export namespace google {
7152
9587
  /** FieldOptions features */
7153
9588
  features?: (google.protobuf.IFeatureSet|null);
7154
9589
 
9590
+ /** FieldOptions featureSupport */
9591
+ featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
9592
+
7155
9593
  /** FieldOptions uninterpretedOption */
7156
9594
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
7157
9595
 
@@ -7210,6 +9648,9 @@ export namespace google {
7210
9648
  /** FieldOptions features. */
7211
9649
  public features?: (google.protobuf.IFeatureSet|null);
7212
9650
 
9651
+ /** FieldOptions featureSupport. */
9652
+ public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
9653
+
7213
9654
  /** FieldOptions uninterpretedOption. */
7214
9655
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
7215
9656
 
@@ -7430,6 +9871,121 @@ export namespace google {
7430
9871
  */
7431
9872
  public static getTypeUrl(typeUrlPrefix?: string): string;
7432
9873
  }
9874
+
9875
+ /** Properties of a FeatureSupport. */
9876
+ interface IFeatureSupport {
9877
+
9878
+ /** FeatureSupport editionIntroduced */
9879
+ editionIntroduced?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
9880
+
9881
+ /** FeatureSupport editionDeprecated */
9882
+ editionDeprecated?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
9883
+
9884
+ /** FeatureSupport deprecationWarning */
9885
+ deprecationWarning?: (string|null);
9886
+
9887
+ /** FeatureSupport editionRemoved */
9888
+ editionRemoved?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
9889
+ }
9890
+
9891
+ /** Represents a FeatureSupport. */
9892
+ class FeatureSupport implements IFeatureSupport {
9893
+
9894
+ /**
9895
+ * Constructs a new FeatureSupport.
9896
+ * @param [properties] Properties to set
9897
+ */
9898
+ constructor(properties?: google.protobuf.FieldOptions.IFeatureSupport);
9899
+
9900
+ /** FeatureSupport editionIntroduced. */
9901
+ public editionIntroduced: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
9902
+
9903
+ /** FeatureSupport editionDeprecated. */
9904
+ public editionDeprecated: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
9905
+
9906
+ /** FeatureSupport deprecationWarning. */
9907
+ public deprecationWarning: string;
9908
+
9909
+ /** FeatureSupport editionRemoved. */
9910
+ public editionRemoved: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
9911
+
9912
+ /**
9913
+ * Creates a new FeatureSupport instance using the specified properties.
9914
+ * @param [properties] Properties to set
9915
+ * @returns FeatureSupport instance
9916
+ */
9917
+ public static create(properties?: google.protobuf.FieldOptions.IFeatureSupport): google.protobuf.FieldOptions.FeatureSupport;
9918
+
9919
+ /**
9920
+ * Encodes the specified FeatureSupport message. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
9921
+ * @param message FeatureSupport message or plain object to encode
9922
+ * @param [writer] Writer to encode to
9923
+ * @returns Writer
9924
+ */
9925
+ public static encode(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
9926
+
9927
+ /**
9928
+ * Encodes the specified FeatureSupport message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
9929
+ * @param message FeatureSupport message or plain object to encode
9930
+ * @param [writer] Writer to encode to
9931
+ * @returns Writer
9932
+ */
9933
+ public static encodeDelimited(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
9934
+
9935
+ /**
9936
+ * Decodes a FeatureSupport message from the specified reader or buffer.
9937
+ * @param reader Reader or buffer to decode from
9938
+ * @param [length] Message length if known beforehand
9939
+ * @returns FeatureSupport
9940
+ * @throws {Error} If the payload is not a reader or valid buffer
9941
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
9942
+ */
9943
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.FeatureSupport;
9944
+
9945
+ /**
9946
+ * Decodes a FeatureSupport message from the specified reader or buffer, length delimited.
9947
+ * @param reader Reader or buffer to decode from
9948
+ * @returns FeatureSupport
9949
+ * @throws {Error} If the payload is not a reader or valid buffer
9950
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
9951
+ */
9952
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.FeatureSupport;
9953
+
9954
+ /**
9955
+ * Verifies a FeatureSupport message.
9956
+ * @param message Plain object to verify
9957
+ * @returns `null` if valid, otherwise the reason why it is not
9958
+ */
9959
+ public static verify(message: { [k: string]: any }): (string|null);
9960
+
9961
+ /**
9962
+ * Creates a FeatureSupport message from a plain object. Also converts values to their respective internal types.
9963
+ * @param object Plain object
9964
+ * @returns FeatureSupport
9965
+ */
9966
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.FeatureSupport;
9967
+
9968
+ /**
9969
+ * Creates a plain object from a FeatureSupport message. Also converts values to other types if specified.
9970
+ * @param message FeatureSupport
9971
+ * @param [options] Conversion options
9972
+ * @returns Plain object
9973
+ */
9974
+ public static toObject(message: google.protobuf.FieldOptions.FeatureSupport, options?: $protobuf.IConversionOptions): { [k: string]: any };
9975
+
9976
+ /**
9977
+ * Converts this FeatureSupport to JSON.
9978
+ * @returns JSON object
9979
+ */
9980
+ public toJSON(): { [k: string]: any };
9981
+
9982
+ /**
9983
+ * Gets the default type url for FeatureSupport
9984
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
9985
+ * @returns The default type url
9986
+ */
9987
+ public static getTypeUrl(typeUrlPrefix?: string): string;
9988
+ }
7433
9989
  }
7434
9990
 
7435
9991
  /** Properties of an OneofOptions. */
@@ -7668,6 +10224,9 @@ export namespace google {
7668
10224
  /** EnumValueOptions debugRedact */
7669
10225
  debugRedact?: (boolean|null);
7670
10226
 
10227
+ /** EnumValueOptions featureSupport */
10228
+ featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
10229
+
7671
10230
  /** EnumValueOptions uninterpretedOption */
7672
10231
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
7673
10232
  }
@@ -7690,6 +10249,9 @@ export namespace google {
7690
10249
  /** EnumValueOptions debugRedact. */
7691
10250
  public debugRedact: boolean;
7692
10251
 
10252
+ /** EnumValueOptions featureSupport. */
10253
+ public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
10254
+
7693
10255
  /** EnumValueOptions uninterpretedOption. */
7694
10256
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
7695
10257
 
@@ -8279,6 +10841,12 @@ export namespace google {
8279
10841
 
8280
10842
  /** FeatureSet jsonFormat */
8281
10843
  jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
10844
+
10845
+ /** FeatureSet enforceNamingStyle */
10846
+ enforceNamingStyle?: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle|null);
10847
+
10848
+ /** FeatureSet defaultSymbolVisibility */
10849
+ defaultSymbolVisibility?: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|null);
8282
10850
  }
8283
10851
 
8284
10852
  /** Represents a FeatureSet. */
@@ -8308,6 +10876,12 @@ export namespace google {
8308
10876
  /** FeatureSet jsonFormat. */
8309
10877
  public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
8310
10878
 
10879
+ /** FeatureSet enforceNamingStyle. */
10880
+ public enforceNamingStyle: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle);
10881
+
10882
+ /** FeatureSet defaultSymbolVisibility. */
10883
+ public defaultSymbolVisibility: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility);
10884
+
8311
10885
  /**
8312
10886
  * Creates a new FeatureSet instance using the specified properties.
8313
10887
  * @param [properties] Properties to set
@@ -8430,6 +11004,116 @@ export namespace google {
8430
11004
  ALLOW = 1,
8431
11005
  LEGACY_BEST_EFFORT = 2
8432
11006
  }
11007
+
11008
+ /** EnforceNamingStyle enum. */
11009
+ enum EnforceNamingStyle {
11010
+ ENFORCE_NAMING_STYLE_UNKNOWN = 0,
11011
+ STYLE2024 = 1,
11012
+ STYLE_LEGACY = 2
11013
+ }
11014
+
11015
+ /** Properties of a VisibilityFeature. */
11016
+ interface IVisibilityFeature {
11017
+ }
11018
+
11019
+ /** Represents a VisibilityFeature. */
11020
+ class VisibilityFeature implements IVisibilityFeature {
11021
+
11022
+ /**
11023
+ * Constructs a new VisibilityFeature.
11024
+ * @param [properties] Properties to set
11025
+ */
11026
+ constructor(properties?: google.protobuf.FeatureSet.IVisibilityFeature);
11027
+
11028
+ /**
11029
+ * Creates a new VisibilityFeature instance using the specified properties.
11030
+ * @param [properties] Properties to set
11031
+ * @returns VisibilityFeature instance
11032
+ */
11033
+ public static create(properties?: google.protobuf.FeatureSet.IVisibilityFeature): google.protobuf.FeatureSet.VisibilityFeature;
11034
+
11035
+ /**
11036
+ * Encodes the specified VisibilityFeature message. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
11037
+ * @param message VisibilityFeature message or plain object to encode
11038
+ * @param [writer] Writer to encode to
11039
+ * @returns Writer
11040
+ */
11041
+ public static encode(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
11042
+
11043
+ /**
11044
+ * Encodes the specified VisibilityFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
11045
+ * @param message VisibilityFeature message or plain object to encode
11046
+ * @param [writer] Writer to encode to
11047
+ * @returns Writer
11048
+ */
11049
+ public static encodeDelimited(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
11050
+
11051
+ /**
11052
+ * Decodes a VisibilityFeature message from the specified reader or buffer.
11053
+ * @param reader Reader or buffer to decode from
11054
+ * @param [length] Message length if known beforehand
11055
+ * @returns VisibilityFeature
11056
+ * @throws {Error} If the payload is not a reader or valid buffer
11057
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
11058
+ */
11059
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.VisibilityFeature;
11060
+
11061
+ /**
11062
+ * Decodes a VisibilityFeature message from the specified reader or buffer, length delimited.
11063
+ * @param reader Reader or buffer to decode from
11064
+ * @returns VisibilityFeature
11065
+ * @throws {Error} If the payload is not a reader or valid buffer
11066
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
11067
+ */
11068
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.VisibilityFeature;
11069
+
11070
+ /**
11071
+ * Verifies a VisibilityFeature message.
11072
+ * @param message Plain object to verify
11073
+ * @returns `null` if valid, otherwise the reason why it is not
11074
+ */
11075
+ public static verify(message: { [k: string]: any }): (string|null);
11076
+
11077
+ /**
11078
+ * Creates a VisibilityFeature message from a plain object. Also converts values to their respective internal types.
11079
+ * @param object Plain object
11080
+ * @returns VisibilityFeature
11081
+ */
11082
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.VisibilityFeature;
11083
+
11084
+ /**
11085
+ * Creates a plain object from a VisibilityFeature message. Also converts values to other types if specified.
11086
+ * @param message VisibilityFeature
11087
+ * @param [options] Conversion options
11088
+ * @returns Plain object
11089
+ */
11090
+ public static toObject(message: google.protobuf.FeatureSet.VisibilityFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
11091
+
11092
+ /**
11093
+ * Converts this VisibilityFeature to JSON.
11094
+ * @returns JSON object
11095
+ */
11096
+ public toJSON(): { [k: string]: any };
11097
+
11098
+ /**
11099
+ * Gets the default type url for VisibilityFeature
11100
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
11101
+ * @returns The default type url
11102
+ */
11103
+ public static getTypeUrl(typeUrlPrefix?: string): string;
11104
+ }
11105
+
11106
+ namespace VisibilityFeature {
11107
+
11108
+ /** DefaultSymbolVisibility enum. */
11109
+ enum DefaultSymbolVisibility {
11110
+ DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0,
11111
+ EXPORT_ALL = 1,
11112
+ EXPORT_TOP_LEVEL = 2,
11113
+ LOCAL_ALL = 3,
11114
+ STRICT = 4
11115
+ }
11116
+ }
8433
11117
  }
8434
11118
 
8435
11119
  /** Properties of a FeatureSetDefaults. */
@@ -8549,8 +11233,11 @@ export namespace google {
8549
11233
  /** FeatureSetEditionDefault edition */
8550
11234
  edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
8551
11235
 
8552
- /** FeatureSetEditionDefault features */
8553
- features?: (google.protobuf.IFeatureSet|null);
11236
+ /** FeatureSetEditionDefault overridableFeatures */
11237
+ overridableFeatures?: (google.protobuf.IFeatureSet|null);
11238
+
11239
+ /** FeatureSetEditionDefault fixedFeatures */
11240
+ fixedFeatures?: (google.protobuf.IFeatureSet|null);
8554
11241
  }
8555
11242
 
8556
11243
  /** Represents a FeatureSetEditionDefault. */
@@ -8565,8 +11252,11 @@ export namespace google {
8565
11252
  /** FeatureSetEditionDefault edition. */
8566
11253
  public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
8567
11254
 
8568
- /** FeatureSetEditionDefault features. */
8569
- public features?: (google.protobuf.IFeatureSet|null);
11255
+ /** FeatureSetEditionDefault overridableFeatures. */
11256
+ public overridableFeatures?: (google.protobuf.IFeatureSet|null);
11257
+
11258
+ /** FeatureSetEditionDefault fixedFeatures. */
11259
+ public fixedFeatures?: (google.protobuf.IFeatureSet|null);
8570
11260
 
8571
11261
  /**
8572
11262
  * Creates a new FeatureSetEditionDefault instance using the specified properties.
@@ -9099,6 +11789,13 @@ export namespace google {
9099
11789
  }
9100
11790
  }
9101
11791
 
11792
+ /** SymbolVisibility enum. */
11793
+ enum SymbolVisibility {
11794
+ VISIBILITY_UNSET = 0,
11795
+ VISIBILITY_LOCAL = 1,
11796
+ VISIBILITY_EXPORT = 2
11797
+ }
11798
+
9102
11799
  /** Properties of a Duration. */
9103
11800
  interface IDuration {
9104
11801