@google-shopping/lfp 0.4.1 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/README.md +3 -2
  2. package/build/protos/google/shopping/merchant/lfp/v1beta/lfpmerchantstate.proto +201 -0
  3. package/build/protos/protos.d.ts +663 -53
  4. package/build/protos/protos.js +2126 -275
  5. package/build/protos/protos.json +258 -16
  6. package/build/src/index.d.ts +4 -1
  7. package/build/src/index.js +4 -7
  8. package/build/src/index.js.map +1 -1
  9. package/build/src/v1beta/gapic_metadata.json +24 -0
  10. package/build/src/v1beta/index.d.ts +1 -0
  11. package/build/src/v1beta/index.js +3 -1
  12. package/build/src/v1beta/index.js.map +1 -1
  13. package/build/src/v1beta/lfp_inventory_service_client.d.ts +25 -1
  14. package/build/src/v1beta/lfp_inventory_service_client.js +67 -44
  15. package/build/src/v1beta/lfp_inventory_service_client.js.map +1 -1
  16. package/build/src/v1beta/lfp_inventory_service_proto_list.json +1 -0
  17. package/build/src/v1beta/lfp_merchant_state_service_client.d.ts +273 -0
  18. package/build/src/v1beta/lfp_merchant_state_service_client.js +505 -0
  19. package/build/src/v1beta/lfp_merchant_state_service_client.js.map +1 -0
  20. package/build/src/v1beta/lfp_merchant_state_service_client_config.json +43 -0
  21. package/build/src/v1beta/lfp_merchant_state_service_proto_list.json +7 -0
  22. package/build/src/v1beta/lfp_sale_service_client.d.ts +25 -1
  23. package/build/src/v1beta/lfp_sale_service_client.js +67 -44
  24. package/build/src/v1beta/lfp_sale_service_client.js.map +1 -1
  25. package/build/src/v1beta/lfp_sale_service_proto_list.json +1 -0
  26. package/build/src/v1beta/lfp_store_service_client.d.ts +62 -38
  27. package/build/src/v1beta/lfp_store_service_client.js +102 -88
  28. package/build/src/v1beta/lfp_store_service_client.js.map +1 -1
  29. package/build/src/v1beta/lfp_store_service_proto_list.json +1 -0
  30. package/package.json +4 -4
  31. package/CHANGELOG.md +0 -47
@@ -201,6 +201,200 @@
201
201
  }
202
202
  }
203
203
  },
204
+ "LfpMerchantStateService": {
205
+ "options": {
206
+ "(google.api.default_host)": "merchantapi.googleapis.com",
207
+ "(google.api.oauth_scopes)": "https://www.googleapis.com/auth/content"
208
+ },
209
+ "methods": {
210
+ "GetLfpMerchantState": {
211
+ "requestType": "GetLfpMerchantStateRequest",
212
+ "responseType": "LfpMerchantState",
213
+ "options": {
214
+ "(google.api.http).get": "/lfp/v1beta/{name=accounts/*/lfpMerchantStates/*}",
215
+ "(google.api.method_signature)": "name"
216
+ },
217
+ "parsedOptions": [
218
+ {
219
+ "(google.api.http)": {
220
+ "get": "/lfp/v1beta/{name=accounts/*/lfpMerchantStates/*}"
221
+ }
222
+ },
223
+ {
224
+ "(google.api.method_signature)": "name"
225
+ }
226
+ ]
227
+ }
228
+ }
229
+ },
230
+ "LfpMerchantState": {
231
+ "options": {
232
+ "(google.api.resource).type": "merchantapi.googleapis.com/LfpMerchantState",
233
+ "(google.api.resource).pattern": "accounts/{account}/lfpMerchantStates/{lfp_merchant_state}",
234
+ "(google.api.resource).plural": "lfpMerchantStates",
235
+ "(google.api.resource).singular": "lfpMerchantState"
236
+ },
237
+ "fields": {
238
+ "name": {
239
+ "type": "string",
240
+ "id": 1,
241
+ "options": {
242
+ "(google.api.field_behavior)": "IDENTIFIER"
243
+ }
244
+ },
245
+ "linkedGbps": {
246
+ "type": "int64",
247
+ "id": 2
248
+ },
249
+ "storeStates": {
250
+ "rule": "repeated",
251
+ "type": "LfpStoreState",
252
+ "id": 3,
253
+ "options": {
254
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
255
+ }
256
+ },
257
+ "inventoryStats": {
258
+ "type": "InventoryStats",
259
+ "id": 4
260
+ },
261
+ "countrySettings": {
262
+ "rule": "repeated",
263
+ "type": "CountrySettings",
264
+ "id": 5
265
+ }
266
+ },
267
+ "nested": {
268
+ "LfpStoreState": {
269
+ "fields": {
270
+ "storeCode": {
271
+ "type": "string",
272
+ "id": 1,
273
+ "options": {
274
+ "(google.api.field_behavior)": "IMMUTABLE"
275
+ }
276
+ },
277
+ "matchingState": {
278
+ "type": "StoreMatchingState",
279
+ "id": 2,
280
+ "options": {
281
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
282
+ }
283
+ },
284
+ "matchingStateHint": {
285
+ "type": "string",
286
+ "id": 3
287
+ }
288
+ },
289
+ "nested": {
290
+ "StoreMatchingState": {
291
+ "values": {
292
+ "STORE_MATCHING_STATE_UNSPECIFIED": 0,
293
+ "STORE_MATCHING_STATE_MATCHED": 1,
294
+ "STORE_MATCHING_STATE_FAILED": 2
295
+ }
296
+ }
297
+ }
298
+ },
299
+ "InventoryStats": {
300
+ "fields": {
301
+ "submittedEntries": {
302
+ "type": "int64",
303
+ "id": 1
304
+ },
305
+ "submittedInStockEntries": {
306
+ "type": "int64",
307
+ "id": 2
308
+ },
309
+ "unsubmittedEntries": {
310
+ "type": "int64",
311
+ "id": 3
312
+ },
313
+ "submittedProducts": {
314
+ "type": "int64",
315
+ "id": 4
316
+ }
317
+ }
318
+ },
319
+ "CountrySettings": {
320
+ "fields": {
321
+ "regionCode": {
322
+ "type": "string",
323
+ "id": 1,
324
+ "options": {
325
+ "(google.api.field_behavior)": "REQUIRED"
326
+ }
327
+ },
328
+ "freeLocalListingsEnabled": {
329
+ "type": "bool",
330
+ "id": 2
331
+ },
332
+ "localInventoryAdsEnabled": {
333
+ "type": "bool",
334
+ "id": 3
335
+ },
336
+ "inventoryVerificationState": {
337
+ "type": "VerificationState",
338
+ "id": 4,
339
+ "options": {
340
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
341
+ }
342
+ },
343
+ "productPageType": {
344
+ "type": "ProductPageType",
345
+ "id": 5,
346
+ "options": {
347
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
348
+ }
349
+ },
350
+ "instockServingVerificationState": {
351
+ "type": "VerificationState",
352
+ "id": 6,
353
+ "options": {
354
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
355
+ }
356
+ },
357
+ "pickupServingVerificationState": {
358
+ "type": "VerificationState",
359
+ "id": 7,
360
+ "options": {
361
+ "(google.api.field_behavior)": "OUTPUT_ONLY"
362
+ }
363
+ }
364
+ },
365
+ "nested": {
366
+ "VerificationState": {
367
+ "values": {
368
+ "VERIFICATION_STATE_UNSPECIFIED": 0,
369
+ "VERIFICATION_STATE_NOT_APPROVED": 1,
370
+ "VERIFICATION_STATE_IN_PROGRESS": 2,
371
+ "VERIFICATION_STATE_APPROVED": 3
372
+ }
373
+ },
374
+ "ProductPageType": {
375
+ "values": {
376
+ "PRODUCT_PAGE_TYPE_UNSPECIFIED": 0,
377
+ "GOOGLE_HOSTED": 1,
378
+ "MERCHANT_HOSTED": 2,
379
+ "MERCHANT_HOSTED_STORE_SPECIFIC": 3
380
+ }
381
+ }
382
+ }
383
+ }
384
+ }
385
+ },
386
+ "GetLfpMerchantStateRequest": {
387
+ "fields": {
388
+ "name": {
389
+ "type": "string",
390
+ "id": 1,
391
+ "options": {
392
+ "(google.api.field_behavior)": "REQUIRED",
393
+ "(google.api.resource_reference).type": "merchantapi.googleapis.com/LfpMerchantState"
394
+ }
395
+ }
396
+ }
397
+ },
204
398
  "LfpSaleService": {
205
399
  "options": {
206
400
  "(google.api.default_host)": "merchantapi.googleapis.com",
@@ -937,6 +1131,11 @@
937
1131
  "id": 1050,
938
1132
  "extend": "google.protobuf.ServiceOptions"
939
1133
  },
1134
+ "apiVersion": {
1135
+ "type": "string",
1136
+ "id": 525000001,
1137
+ "extend": "google.protobuf.ServiceOptions"
1138
+ },
940
1139
  "CommonLanguageSettings": {
941
1140
  "fields": {
942
1141
  "referenceDocsUri": {
@@ -1045,6 +1244,10 @@
1045
1244
  "protoReferenceDocumentationUri": {
1046
1245
  "type": "string",
1047
1246
  "id": 110
1247
+ },
1248
+ "restReferenceDocumentationUri": {
1249
+ "type": "string",
1250
+ "id": 111
1048
1251
  }
1049
1252
  }
1050
1253
  },
@@ -1220,7 +1423,10 @@
1220
1423
  "rule": "repeated",
1221
1424
  "type": "google.api.FieldBehavior",
1222
1425
  "id": 1052,
1223
- "extend": "google.protobuf.FieldOptions"
1426
+ "extend": "google.protobuf.FieldOptions",
1427
+ "options": {
1428
+ "packed": false
1429
+ }
1224
1430
  },
1225
1431
  "FieldBehavior": {
1226
1432
  "values": {
@@ -1350,6 +1556,7 @@
1350
1556
  },
1351
1557
  "nested": {
1352
1558
  "FileDescriptorSet": {
1559
+ "edition": "proto2",
1353
1560
  "fields": {
1354
1561
  "file": {
1355
1562
  "rule": "repeated",
@@ -1359,6 +1566,7 @@
1359
1566
  }
1360
1567
  },
1361
1568
  "Edition": {
1569
+ "edition": "proto2",
1362
1570
  "values": {
1363
1571
  "EDITION_UNKNOWN": 0,
1364
1572
  "EDITION_PROTO2": 998,
@@ -1374,6 +1582,7 @@
1374
1582
  }
1375
1583
  },
1376
1584
  "FileDescriptorProto": {
1585
+ "edition": "proto2",
1377
1586
  "fields": {
1378
1587
  "name": {
1379
1588
  "type": "string",
@@ -1391,18 +1600,12 @@
1391
1600
  "publicDependency": {
1392
1601
  "rule": "repeated",
1393
1602
  "type": "int32",
1394
- "id": 10,
1395
- "options": {
1396
- "packed": false
1397
- }
1603
+ "id": 10
1398
1604
  },
1399
1605
  "weakDependency": {
1400
1606
  "rule": "repeated",
1401
1607
  "type": "int32",
1402
- "id": 11,
1403
- "options": {
1404
- "packed": false
1405
- }
1608
+ "id": 11
1406
1609
  },
1407
1610
  "messageType": {
1408
1611
  "rule": "repeated",
@@ -1443,6 +1646,7 @@
1443
1646
  }
1444
1647
  },
1445
1648
  "DescriptorProto": {
1649
+ "edition": "proto2",
1446
1650
  "fields": {
1447
1651
  "name": {
1448
1652
  "type": "string",
@@ -1525,6 +1729,7 @@
1525
1729
  }
1526
1730
  },
1527
1731
  "ExtensionRangeOptions": {
1732
+ "edition": "proto2",
1528
1733
  "fields": {
1529
1734
  "uninterpretedOption": {
1530
1735
  "rule": "repeated",
@@ -1598,6 +1803,7 @@
1598
1803
  }
1599
1804
  },
1600
1805
  "FieldDescriptorProto": {
1806
+ "edition": "proto2",
1601
1807
  "fields": {
1602
1808
  "name": {
1603
1809
  "type": "string",
@@ -1677,6 +1883,7 @@
1677
1883
  }
1678
1884
  },
1679
1885
  "OneofDescriptorProto": {
1886
+ "edition": "proto2",
1680
1887
  "fields": {
1681
1888
  "name": {
1682
1889
  "type": "string",
@@ -1689,6 +1896,7 @@
1689
1896
  }
1690
1897
  },
1691
1898
  "EnumDescriptorProto": {
1899
+ "edition": "proto2",
1692
1900
  "fields": {
1693
1901
  "name": {
1694
1902
  "type": "string",
@@ -1730,6 +1938,7 @@
1730
1938
  }
1731
1939
  },
1732
1940
  "EnumValueDescriptorProto": {
1941
+ "edition": "proto2",
1733
1942
  "fields": {
1734
1943
  "name": {
1735
1944
  "type": "string",
@@ -1746,6 +1955,7 @@
1746
1955
  }
1747
1956
  },
1748
1957
  "ServiceDescriptorProto": {
1958
+ "edition": "proto2",
1749
1959
  "fields": {
1750
1960
  "name": {
1751
1961
  "type": "string",
@@ -1763,6 +1973,7 @@
1763
1973
  }
1764
1974
  },
1765
1975
  "MethodDescriptorProto": {
1976
+ "edition": "proto2",
1766
1977
  "fields": {
1767
1978
  "name": {
1768
1979
  "type": "string",
@@ -1797,6 +2008,7 @@
1797
2008
  }
1798
2009
  },
1799
2010
  "FileOptions": {
2011
+ "edition": "proto2",
1800
2012
  "fields": {
1801
2013
  "javaPackage": {
1802
2014
  "type": "string",
@@ -1938,6 +2150,7 @@
1938
2150
  }
1939
2151
  },
1940
2152
  "MessageOptions": {
2153
+ "edition": "proto2",
1941
2154
  "fields": {
1942
2155
  "messageSetWireFormat": {
1943
2156
  "type": "bool",
@@ -2011,6 +2224,7 @@
2011
2224
  ]
2012
2225
  },
2013
2226
  "FieldOptions": {
2227
+ "edition": "proto2",
2014
2228
  "fields": {
2015
2229
  "ctype": {
2016
2230
  "type": "CType",
@@ -2072,10 +2286,7 @@
2072
2286
  "targets": {
2073
2287
  "rule": "repeated",
2074
2288
  "type": "OptionTargetType",
2075
- "id": 19,
2076
- "options": {
2077
- "packed": false
2078
- }
2289
+ "id": 19
2079
2290
  },
2080
2291
  "editionDefaults": {
2081
2292
  "rule": "repeated",
@@ -2159,6 +2370,7 @@
2159
2370
  }
2160
2371
  },
2161
2372
  "OneofOptions": {
2373
+ "edition": "proto2",
2162
2374
  "fields": {
2163
2375
  "features": {
2164
2376
  "type": "FeatureSet",
@@ -2178,6 +2390,7 @@
2178
2390
  ]
2179
2391
  },
2180
2392
  "EnumOptions": {
2393
+ "edition": "proto2",
2181
2394
  "fields": {
2182
2395
  "allowAlias": {
2183
2396
  "type": "bool",
@@ -2221,6 +2434,7 @@
2221
2434
  ]
2222
2435
  },
2223
2436
  "EnumValueOptions": {
2437
+ "edition": "proto2",
2224
2438
  "fields": {
2225
2439
  "deprecated": {
2226
2440
  "type": "bool",
@@ -2254,6 +2468,7 @@
2254
2468
  ]
2255
2469
  },
2256
2470
  "ServiceOptions": {
2471
+ "edition": "proto2",
2257
2472
  "fields": {
2258
2473
  "features": {
2259
2474
  "type": "FeatureSet",
@@ -2280,6 +2495,7 @@
2280
2495
  ]
2281
2496
  },
2282
2497
  "MethodOptions": {
2498
+ "edition": "proto2",
2283
2499
  "fields": {
2284
2500
  "deprecated": {
2285
2501
  "type": "bool",
@@ -2322,6 +2538,7 @@
2322
2538
  }
2323
2539
  },
2324
2540
  "UninterpretedOption": {
2541
+ "edition": "proto2",
2325
2542
  "fields": {
2326
2543
  "name": {
2327
2544
  "rule": "repeated",
@@ -2371,6 +2588,7 @@
2371
2588
  }
2372
2589
  },
2373
2590
  "FeatureSet": {
2591
+ "edition": "proto2",
2374
2592
  "fields": {
2375
2593
  "fieldPresence": {
2376
2594
  "type": "FieldPresence",
@@ -2442,9 +2660,21 @@
2442
2660
  1001,
2443
2661
  1001
2444
2662
  ],
2663
+ [
2664
+ 1002,
2665
+ 1002
2666
+ ],
2667
+ [
2668
+ 9990,
2669
+ 9990
2670
+ ],
2445
2671
  [
2446
2672
  9995,
2447
2673
  9999
2674
+ ],
2675
+ [
2676
+ 10000,
2677
+ 10000
2448
2678
  ]
2449
2679
  ],
2450
2680
  "reserved": [
@@ -2500,6 +2730,7 @@
2500
2730
  }
2501
2731
  },
2502
2732
  "FeatureSetDefaults": {
2733
+ "edition": "proto2",
2503
2734
  "fields": {
2504
2735
  "defaults": {
2505
2736
  "rule": "repeated",
@@ -2531,6 +2762,7 @@
2531
2762
  }
2532
2763
  },
2533
2764
  "SourceCodeInfo": {
2765
+ "edition": "proto2",
2534
2766
  "fields": {
2535
2767
  "location": {
2536
2768
  "rule": "repeated",
@@ -2544,12 +2776,18 @@
2544
2776
  "path": {
2545
2777
  "rule": "repeated",
2546
2778
  "type": "int32",
2547
- "id": 1
2779
+ "id": 1,
2780
+ "options": {
2781
+ "packed": true
2782
+ }
2548
2783
  },
2549
2784
  "span": {
2550
2785
  "rule": "repeated",
2551
2786
  "type": "int32",
2552
- "id": 2
2787
+ "id": 2,
2788
+ "options": {
2789
+ "packed": true
2790
+ }
2553
2791
  },
2554
2792
  "leadingComments": {
2555
2793
  "type": "string",
@@ -2569,6 +2807,7 @@
2569
2807
  }
2570
2808
  },
2571
2809
  "GeneratedCodeInfo": {
2810
+ "edition": "proto2",
2572
2811
  "fields": {
2573
2812
  "annotation": {
2574
2813
  "rule": "repeated",
@@ -2582,7 +2821,10 @@
2582
2821
  "path": {
2583
2822
  "rule": "repeated",
2584
2823
  "type": "int32",
2585
- "id": 1
2824
+ "id": 1,
2825
+ "options": {
2826
+ "packed": true
2827
+ }
2586
2828
  },
2587
2829
  "sourceFile": {
2588
2830
  "type": "string",
@@ -1,14 +1,17 @@
1
1
  import * as v1beta from './v1beta';
2
2
  declare const LfpInventoryServiceClient: typeof v1beta.LfpInventoryServiceClient;
3
3
  type LfpInventoryServiceClient = v1beta.LfpInventoryServiceClient;
4
+ declare const LfpMerchantStateServiceClient: typeof v1beta.LfpMerchantStateServiceClient;
5
+ type LfpMerchantStateServiceClient = v1beta.LfpMerchantStateServiceClient;
4
6
  declare const LfpSaleServiceClient: typeof v1beta.LfpSaleServiceClient;
5
7
  type LfpSaleServiceClient = v1beta.LfpSaleServiceClient;
6
8
  declare const LfpStoreServiceClient: typeof v1beta.LfpStoreServiceClient;
7
9
  type LfpStoreServiceClient = v1beta.LfpStoreServiceClient;
8
- export { v1beta, LfpInventoryServiceClient, LfpSaleServiceClient, LfpStoreServiceClient, };
10
+ export { v1beta, LfpInventoryServiceClient, LfpMerchantStateServiceClient, LfpSaleServiceClient, LfpStoreServiceClient };
9
11
  declare const _default: {
10
12
  v1beta: typeof v1beta;
11
13
  LfpInventoryServiceClient: typeof v1beta.LfpInventoryServiceClient;
14
+ LfpMerchantStateServiceClient: typeof v1beta.LfpMerchantStateServiceClient;
12
15
  LfpSaleServiceClient: typeof v1beta.LfpSaleServiceClient;
13
16
  LfpStoreServiceClient: typeof v1beta.LfpStoreServiceClient;
14
17
  };
@@ -17,21 +17,18 @@
17
17
  // ** https://github.com/googleapis/synthtool **
18
18
  // ** All changes to this file may be overwritten. **
19
19
  Object.defineProperty(exports, "__esModule", { value: true });
20
- exports.protos = exports.LfpStoreServiceClient = exports.LfpSaleServiceClient = exports.LfpInventoryServiceClient = exports.v1beta = void 0;
20
+ exports.protos = exports.LfpStoreServiceClient = exports.LfpSaleServiceClient = exports.LfpMerchantStateServiceClient = exports.LfpInventoryServiceClient = exports.v1beta = void 0;
21
21
  const v1beta = require("./v1beta");
22
22
  exports.v1beta = v1beta;
23
23
  const LfpInventoryServiceClient = v1beta.LfpInventoryServiceClient;
24
24
  exports.LfpInventoryServiceClient = LfpInventoryServiceClient;
25
+ const LfpMerchantStateServiceClient = v1beta.LfpMerchantStateServiceClient;
26
+ exports.LfpMerchantStateServiceClient = LfpMerchantStateServiceClient;
25
27
  const LfpSaleServiceClient = v1beta.LfpSaleServiceClient;
26
28
  exports.LfpSaleServiceClient = LfpSaleServiceClient;
27
29
  const LfpStoreServiceClient = v1beta.LfpStoreServiceClient;
28
30
  exports.LfpStoreServiceClient = LfpStoreServiceClient;
29
- exports.default = {
30
- v1beta,
31
- LfpInventoryServiceClient,
32
- LfpSaleServiceClient,
33
- LfpStoreServiceClient,
34
- };
31
+ exports.default = { v1beta, LfpInventoryServiceClient, LfpMerchantStateServiceClient, LfpSaleServiceClient, LfpStoreServiceClient };
35
32
  const protos = require("../protos/protos");
36
33
  exports.protos = protos;
37
34
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AAAA,4BAA4B;AAC5B,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,kDAAkD;AAClD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;AACjC,EAAE;AACF,2DAA2D;AAC3D,gDAAgD;AAChD,qDAAqD;;;AAErD,mCAAmC;AAUjC,wBAAM;AARR,MAAM,yBAAyB,GAAG,MAAM,CAAC,yBAAyB,CAAC;AASjE,8DAAyB;AAP3B,MAAM,oBAAoB,GAAG,MAAM,CAAC,oBAAoB,CAAC;AAQvD,oDAAoB;AANtB,MAAM,qBAAqB,GAAG,MAAM,CAAC,qBAAqB,CAAC;AAOzD,sDAAqB;AAEvB,kBAAe;IACb,MAAM;IACN,yBAAyB;IACzB,oBAAoB;IACpB,qBAAqB;CACtB,CAAC;AACF,2CAA2C;AACnC,wBAAM"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AAAA,4BAA4B;AAC5B,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,kDAAkD;AAClD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;AACjC,EAAE;AACF,2DAA2D;AAC3D,gDAAgD;AAChD,qDAAqD;;;AAErD,mCAAmC;AAW3B,wBAAM;AATd,MAAM,yBAAyB,GAAG,MAAM,CAAC,yBAAyB,CAAC;AASnD,8DAAyB;AAPzC,MAAM,6BAA6B,GAAG,MAAM,CAAC,6BAA6B,CAAC;AAOhC,sEAA6B;AALxE,MAAM,oBAAoB,GAAG,MAAM,CAAC,oBAAoB,CAAC;AAKiB,oDAAoB;AAH9F,MAAM,qBAAqB,GAAG,MAAM,CAAC,qBAAqB,CAAC;AAGqC,sDAAqB;AACrH,kBAAe,EAAC,MAAM,EAAE,yBAAyB,EAAE,6BAA6B,EAAE,oBAAoB,EAAE,qBAAqB,EAAC,CAAC;AAC/H,2CAA2C;AACnC,wBAAM"}
@@ -29,6 +29,30 @@
29
29
  }
30
30
  }
31
31
  },
32
+ "LfpMerchantStateService": {
33
+ "clients": {
34
+ "grpc": {
35
+ "libraryClient": "LfpMerchantStateServiceClient",
36
+ "rpcs": {
37
+ "GetLfpMerchantState": {
38
+ "methods": [
39
+ "getLfpMerchantState"
40
+ ]
41
+ }
42
+ }
43
+ },
44
+ "grpc-fallback": {
45
+ "libraryClient": "LfpMerchantStateServiceClient",
46
+ "rpcs": {
47
+ "GetLfpMerchantState": {
48
+ "methods": [
49
+ "getLfpMerchantState"
50
+ ]
51
+ }
52
+ }
53
+ }
54
+ }
55
+ },
32
56
  "LfpSaleService": {
33
57
  "clients": {
34
58
  "grpc": {
@@ -1,3 +1,4 @@
1
1
  export { LfpInventoryServiceClient } from './lfp_inventory_service_client';
2
+ export { LfpMerchantStateServiceClient } from './lfp_merchant_state_service_client';
2
3
  export { LfpSaleServiceClient } from './lfp_sale_service_client';
3
4
  export { LfpStoreServiceClient } from './lfp_store_service_client';
@@ -17,9 +17,11 @@
17
17
  // ** https://github.com/googleapis/gapic-generator-typescript **
18
18
  // ** All changes to this file may be overwritten. **
19
19
  Object.defineProperty(exports, "__esModule", { value: true });
20
- exports.LfpStoreServiceClient = exports.LfpSaleServiceClient = exports.LfpInventoryServiceClient = void 0;
20
+ exports.LfpStoreServiceClient = exports.LfpSaleServiceClient = exports.LfpMerchantStateServiceClient = exports.LfpInventoryServiceClient = void 0;
21
21
  var lfp_inventory_service_client_1 = require("./lfp_inventory_service_client");
22
22
  Object.defineProperty(exports, "LfpInventoryServiceClient", { enumerable: true, get: function () { return lfp_inventory_service_client_1.LfpInventoryServiceClient; } });
23
+ var lfp_merchant_state_service_client_1 = require("./lfp_merchant_state_service_client");
24
+ Object.defineProperty(exports, "LfpMerchantStateServiceClient", { enumerable: true, get: function () { return lfp_merchant_state_service_client_1.LfpMerchantStateServiceClient; } });
23
25
  var lfp_sale_service_client_1 = require("./lfp_sale_service_client");
24
26
  Object.defineProperty(exports, "LfpSaleServiceClient", { enumerable: true, get: function () { return lfp_sale_service_client_1.LfpSaleServiceClient; } });
25
27
  var lfp_store_service_client_1 = require("./lfp_store_service_client");
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/v1beta/index.ts"],"names":[],"mappings":";AAAA,4BAA4B;AAC5B,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,kDAAkD;AAClD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;AACjC,EAAE;AACF,4EAA4E;AAC5E,iEAAiE;AACjE,qDAAqD;;;AAErD,+EAAyE;AAAjE,yIAAA,yBAAyB,OAAA;AACjC,qEAA+D;AAAvD,+HAAA,oBAAoB,OAAA;AAC5B,uEAAiE;AAAzD,iIAAA,qBAAqB,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/v1beta/index.ts"],"names":[],"mappings":";AAAA,4BAA4B;AAC5B,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,kDAAkD;AAClD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;AACjC,EAAE;AACF,4EAA4E;AAC5E,iEAAiE;AACjE,qDAAqD;;;AAErD,+EAAyE;AAAjE,yIAAA,yBAAyB,OAAA;AACjC,yFAAkF;AAA1E,kJAAA,6BAA6B,OAAA;AACrC,qEAA+D;AAAvD,+HAAA,oBAAoB,OAAA;AAC5B,uEAAiE;AAAzD,iIAAA,qBAAqB,OAAA"}
@@ -139,7 +139,7 @@ export declare class LfpInventoryServiceClient {
139
139
  */
140
140
  insertLfpInventory(request?: protos.google.shopping.merchant.lfp.v1beta.IInsertLfpInventoryRequest, options?: CallOptions): Promise<[
141
141
  protos.google.shopping.merchant.lfp.v1beta.ILfpInventory,
142
- (protos.google.shopping.merchant.lfp.v1beta.IInsertLfpInventoryRequest | undefined),
142
+ protos.google.shopping.merchant.lfp.v1beta.IInsertLfpInventoryRequest | undefined,
143
143
  {} | undefined
144
144
  ]>;
145
145
  insertLfpInventory(request: protos.google.shopping.merchant.lfp.v1beta.IInsertLfpInventoryRequest, options: CallOptions, callback: Callback<protos.google.shopping.merchant.lfp.v1beta.ILfpInventory, protos.google.shopping.merchant.lfp.v1beta.IInsertLfpInventoryRequest | null | undefined, {} | null | undefined>): void;
@@ -201,6 +201,30 @@ export declare class LfpInventoryServiceClient {
201
201
  * @returns {string} A string representing the offer.
202
202
  */
203
203
  matchOfferFromLfpInventoryName(lfpInventoryName: string): string | number;
204
+ /**
205
+ * Return a fully-qualified lfpMerchantState resource name string.
206
+ *
207
+ * @param {string} account
208
+ * @param {string} lfp_merchant_state
209
+ * @returns {string} Resource name string.
210
+ */
211
+ lfpMerchantStatePath(account: string, lfpMerchantState: string): string;
212
+ /**
213
+ * Parse the account from LfpMerchantState resource.
214
+ *
215
+ * @param {string} lfpMerchantStateName
216
+ * A fully-qualified path representing LfpMerchantState resource.
217
+ * @returns {string} A string representing the account.
218
+ */
219
+ matchAccountFromLfpMerchantStateName(lfpMerchantStateName: string): string | number;
220
+ /**
221
+ * Parse the lfp_merchant_state from LfpMerchantState resource.
222
+ *
223
+ * @param {string} lfpMerchantStateName
224
+ * A fully-qualified path representing LfpMerchantState resource.
225
+ * @returns {string} A string representing the lfp_merchant_state.
226
+ */
227
+ matchLfpMerchantStateFromLfpMerchantStateName(lfpMerchantStateName: string): string | number;
204
228
  /**
205
229
  * Return a fully-qualified lfpSale resource name string.
206
230
  *