@google-shopping/lfp 0.7.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -4
- package/build/src/index.d.ts +12 -12
- package/build/src/index.js +4 -4
- package/build/src/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
# [Merchant API: Node.js Client](https://github.com/googleapis/google-cloud-node/tree/main/packages/google-shopping-merchant-lfp)
|
|
6
6
|
|
|
7
|
-
[](https://cloud.google.com/terms/launch-stages)
|
|
8
8
|
[](https://www.npmjs.org/package/@google-shopping/lfp)
|
|
9
9
|
|
|
10
10
|
|
|
@@ -170,13 +170,14 @@ This library follows [Semantic Versioning](http://semver.org/).
|
|
|
170
170
|
|
|
171
171
|
|
|
172
172
|
|
|
173
|
+
This library is considered to be **stable**. The code surface will not change in backwards-incompatible ways
|
|
174
|
+
unless absolutely necessary (e.g. because of critical security issues) or with
|
|
175
|
+
an extensive deprecation period. Issues and requests against **stable** libraries
|
|
176
|
+
are addressed with the highest priority.
|
|
173
177
|
|
|
174
178
|
|
|
175
179
|
|
|
176
180
|
|
|
177
|
-
This library is considered to be in **preview**. This means it is still a
|
|
178
|
-
work-in-progress and under active development. Any release is subject to
|
|
179
|
-
backwards-incompatible changes at any time.
|
|
180
181
|
|
|
181
182
|
|
|
182
183
|
More Information: [Google Cloud Platform Launch Stages][launch_stages]
|
package/build/src/index.d.ts
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import * as v1 from './v1';
|
|
2
2
|
import * as v1beta from './v1beta';
|
|
3
|
-
declare const LfpInventoryServiceClient: typeof
|
|
4
|
-
type LfpInventoryServiceClient =
|
|
5
|
-
declare const LfpMerchantStateServiceClient: typeof
|
|
6
|
-
type LfpMerchantStateServiceClient =
|
|
7
|
-
declare const LfpSaleServiceClient: typeof
|
|
8
|
-
type LfpSaleServiceClient =
|
|
9
|
-
declare const LfpStoreServiceClient: typeof
|
|
10
|
-
type LfpStoreServiceClient =
|
|
3
|
+
declare const LfpInventoryServiceClient: typeof v1.LfpInventoryServiceClient;
|
|
4
|
+
type LfpInventoryServiceClient = v1.LfpInventoryServiceClient;
|
|
5
|
+
declare const LfpMerchantStateServiceClient: typeof v1.LfpMerchantStateServiceClient;
|
|
6
|
+
type LfpMerchantStateServiceClient = v1.LfpMerchantStateServiceClient;
|
|
7
|
+
declare const LfpSaleServiceClient: typeof v1.LfpSaleServiceClient;
|
|
8
|
+
type LfpSaleServiceClient = v1.LfpSaleServiceClient;
|
|
9
|
+
declare const LfpStoreServiceClient: typeof v1.LfpStoreServiceClient;
|
|
10
|
+
type LfpStoreServiceClient = v1.LfpStoreServiceClient;
|
|
11
11
|
export { v1, v1beta, LfpInventoryServiceClient, LfpMerchantStateServiceClient, LfpSaleServiceClient, LfpStoreServiceClient };
|
|
12
12
|
declare const _default: {
|
|
13
13
|
v1: typeof v1;
|
|
14
14
|
v1beta: typeof v1beta;
|
|
15
|
-
LfpInventoryServiceClient: typeof
|
|
16
|
-
LfpMerchantStateServiceClient: typeof
|
|
17
|
-
LfpSaleServiceClient: typeof
|
|
18
|
-
LfpStoreServiceClient: typeof
|
|
15
|
+
LfpInventoryServiceClient: typeof v1.LfpInventoryServiceClient;
|
|
16
|
+
LfpMerchantStateServiceClient: typeof v1.LfpMerchantStateServiceClient;
|
|
17
|
+
LfpSaleServiceClient: typeof v1.LfpSaleServiceClient;
|
|
18
|
+
LfpStoreServiceClient: typeof v1.LfpStoreServiceClient;
|
|
19
19
|
};
|
|
20
20
|
export default _default;
|
|
21
21
|
import * as protos from '../protos/protos';
|
package/build/src/index.js
CHANGED
|
@@ -22,13 +22,13 @@ const v1 = require("./v1");
|
|
|
22
22
|
exports.v1 = v1;
|
|
23
23
|
const v1beta = require("./v1beta");
|
|
24
24
|
exports.v1beta = v1beta;
|
|
25
|
-
const LfpInventoryServiceClient =
|
|
25
|
+
const LfpInventoryServiceClient = v1.LfpInventoryServiceClient;
|
|
26
26
|
exports.LfpInventoryServiceClient = LfpInventoryServiceClient;
|
|
27
|
-
const LfpMerchantStateServiceClient =
|
|
27
|
+
const LfpMerchantStateServiceClient = v1.LfpMerchantStateServiceClient;
|
|
28
28
|
exports.LfpMerchantStateServiceClient = LfpMerchantStateServiceClient;
|
|
29
|
-
const LfpSaleServiceClient =
|
|
29
|
+
const LfpSaleServiceClient = v1.LfpSaleServiceClient;
|
|
30
30
|
exports.LfpSaleServiceClient = LfpSaleServiceClient;
|
|
31
|
-
const LfpStoreServiceClient =
|
|
31
|
+
const LfpStoreServiceClient = v1.LfpStoreServiceClient;
|
|
32
32
|
exports.LfpStoreServiceClient = LfpStoreServiceClient;
|
|
33
33
|
exports.default = { v1, v1beta, LfpInventoryServiceClient, LfpMerchantStateServiceClient, LfpSaleServiceClient, LfpStoreServiceClient };
|
|
34
34
|
const protos = require("../protos/protos");
|
package/build/src/index.js.map
CHANGED
|
@@ -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,2BAA2B;AAYnB,gBAAE;AAXV,mCAAmC;AAWvB,wBAAM;AATlB,MAAM,yBAAyB,GAAG,
|
|
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,2BAA2B;AAYnB,gBAAE;AAXV,mCAAmC;AAWvB,wBAAM;AATlB,MAAM,yBAAyB,GAAG,EAAE,CAAC,yBAAyB,CAAC;AAS3C,8DAAyB;AAP7C,MAAM,6BAA6B,GAAG,EAAE,CAAC,6BAA6B,CAAC;AAOxB,sEAA6B;AAL5E,MAAM,oBAAoB,GAAG,EAAE,CAAC,oBAAoB,CAAC;AAKyB,oDAAoB;AAHlG,MAAM,qBAAqB,GAAG,EAAE,CAAC,qBAAqB,CAAC;AAG6C,sDAAqB;AACzH,kBAAe,EAAC,EAAE,EAAE,MAAM,EAAE,yBAAyB,EAAE,6BAA6B,EAAE,oBAAoB,EAAE,qBAAqB,EAAC,CAAC;AACnI,2CAA2C;AACnC,wBAAM"}
|