@google-shopping/lfp 0.1.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 (29) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/LICENSE +202 -0
  3. package/README.md +200 -0
  4. package/build/protos/google/shopping/merchant/lfp/v1beta/lfpinventory.proto +149 -0
  5. package/build/protos/google/shopping/merchant/lfp/v1beta/lfpsale.proto +122 -0
  6. package/build/protos/google/shopping/merchant/lfp/v1beta/lfpstore.proto +249 -0
  7. package/build/protos/google/shopping/type/types.proto +169 -0
  8. package/build/protos/protos.d.ts +8673 -0
  9. package/build/protos/protos.js +23511 -0
  10. package/build/protos/protos.json +2617 -0
  11. package/build/src/index.d.ts +17 -0
  12. package/build/src/index.js +37 -0
  13. package/build/src/index.js.map +1 -0
  14. package/build/src/v1beta/index.d.ts +3 -0
  15. package/build/src/v1beta/index.js +27 -0
  16. package/build/src/v1beta/index.js.map +1 -0
  17. package/build/src/v1beta/lfp_inventory_service_client.d.ts +267 -0
  18. package/build/src/v1beta/lfp_inventory_service_client.js +472 -0
  19. package/build/src/v1beta/lfp_inventory_service_client.js.map +1 -0
  20. package/build/src/v1beta/lfp_inventory_service_client_config.json +43 -0
  21. package/build/src/v1beta/lfp_sale_service_client.d.ts +250 -0
  22. package/build/src/v1beta/lfp_sale_service_client.js +450 -0
  23. package/build/src/v1beta/lfp_sale_service_client.js.map +1 -0
  24. package/build/src/v1beta/lfp_sale_service_client_config.json +43 -0
  25. package/build/src/v1beta/lfp_store_service_client.d.ts +430 -0
  26. package/build/src/v1beta/lfp_store_service_client.js +645 -0
  27. package/build/src/v1beta/lfp_store_service_client.js.map +1 -0
  28. package/build/src/v1beta/lfp_store_service_client_config.json +58 -0
  29. package/package.json +70 -0
@@ -0,0 +1,58 @@
1
+ {
2
+ "interfaces": {
3
+ "google.shopping.merchant.lfp.v1beta.LfpStoreService": {
4
+ "retry_codes": {
5
+ "non_idempotent": [],
6
+ "idempotent": [
7
+ "DEADLINE_EXCEEDED",
8
+ "UNAVAILABLE"
9
+ ],
10
+ "unavailable": [
11
+ "UNAVAILABLE"
12
+ ]
13
+ },
14
+ "retry_params": {
15
+ "default": {
16
+ "initial_retry_delay_millis": 100,
17
+ "retry_delay_multiplier": 1.3,
18
+ "max_retry_delay_millis": 60000,
19
+ "initial_rpc_timeout_millis": 60000,
20
+ "rpc_timeout_multiplier": 1,
21
+ "max_rpc_timeout_millis": 60000,
22
+ "total_timeout_millis": 600000
23
+ },
24
+ "ce5b960a6ed052e690863808e4f0deff3dc7d49f": {
25
+ "initial_retry_delay_millis": 1000,
26
+ "retry_delay_multiplier": 1.3,
27
+ "max_retry_delay_millis": 10000,
28
+ "initial_rpc_timeout_millis": 60000,
29
+ "rpc_timeout_multiplier": 1,
30
+ "max_rpc_timeout_millis": 60000,
31
+ "total_timeout_millis": 600000
32
+ }
33
+ },
34
+ "methods": {
35
+ "GetLfpStore": {
36
+ "timeout_millis": 60000,
37
+ "retry_codes_name": "unavailable",
38
+ "retry_params_name": "ce5b960a6ed052e690863808e4f0deff3dc7d49f"
39
+ },
40
+ "InsertLfpStore": {
41
+ "timeout_millis": 60000,
42
+ "retry_codes_name": "unavailable",
43
+ "retry_params_name": "ce5b960a6ed052e690863808e4f0deff3dc7d49f"
44
+ },
45
+ "DeleteLfpStore": {
46
+ "timeout_millis": 60000,
47
+ "retry_codes_name": "unavailable",
48
+ "retry_params_name": "ce5b960a6ed052e690863808e4f0deff3dc7d49f"
49
+ },
50
+ "ListLfpStores": {
51
+ "timeout_millis": 60000,
52
+ "retry_codes_name": "unavailable",
53
+ "retry_params_name": "ce5b960a6ed052e690863808e4f0deff3dc7d49f"
54
+ }
55
+ }
56
+ }
57
+ }
58
+ }
package/package.json ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "@google-shopping/lfp",
3
+ "version": "0.1.0",
4
+ "description": "Merchant API client for Node.js",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/googleapis/google-cloud-node.git",
8
+ "directory": "packages/google-shopping-merchant-lfp"
9
+ },
10
+ "license": "Apache-2.0",
11
+ "author": "Google LLC",
12
+ "main": "build/src/index.js",
13
+ "files": [
14
+ "build/src",
15
+ "build/protos"
16
+ ],
17
+ "homepage": "https://github.com/googleapis/google-cloud-node/tree/main/packages/google-shopping-merchant-lfp",
18
+ "keywords": [
19
+ "google apis client",
20
+ "google api client",
21
+ "google apis",
22
+ "google api",
23
+ "google",
24
+ "google cloud platform",
25
+ "google cloud",
26
+ "cloud",
27
+ "google merchantapi",
28
+ "merchantapi",
29
+ "Merchant API"
30
+ ],
31
+ "scripts": {
32
+ "clean": "gts clean",
33
+ "compile": "tsc -p . && cp -r protos build/",
34
+ "compile-protos": "compileProtos src",
35
+ "docs": "jsdoc -c .jsdoc.js",
36
+ "predocs-test": "npm run docs",
37
+ "docs-test": "linkinator docs",
38
+ "fix": "gts fix",
39
+ "lint": "gts check",
40
+ "postpack": "minifyProtoJson",
41
+ "prepare": "npm run compile",
42
+ "system-test": "c8 mocha build/system-test",
43
+ "test": "c8 mocha build/test",
44
+ "samples-test": "cd samples/ && npm link ../ && npm i && npm test",
45
+ "prelint": "cd samples; npm link ../; npm i"
46
+ },
47
+ "dependencies": {
48
+ "google-gax": "^4.0.3"
49
+ },
50
+ "devDependencies": {
51
+ "@types/mocha": "^9.0.0",
52
+ "@types/node": "^20.4.5",
53
+ "@types/sinon": "^17.0.0",
54
+ "c8": "^9.0.0",
55
+ "gapic-tools": "^0.4.0",
56
+ "gts": "^5.0.0",
57
+ "jsdoc": "^4.0.0",
58
+ "jsdoc-fresh": "^3.0.0",
59
+ "jsdoc-region-tag": "^3.0.0",
60
+ "linkinator": "4.1.2",
61
+ "long": "^5.2.3",
62
+ "mocha": "^9.2.2",
63
+ "pack-n-play": "^2.0.0",
64
+ "sinon": "^17.0.0",
65
+ "typescript": "^5.1.6"
66
+ },
67
+ "engines": {
68
+ "node": ">=14.0.0"
69
+ }
70
+ }