@bee-hole/server 1.88.1 → 1.89.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/main.exe CHANGED
Binary file
package/mainD CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bee-hole/server",
3
- "version": "1.88.1",
3
+ "version": "1.89.0",
4
4
  "description": "www.bee-hole.com",
5
5
  "main": "index.js",
6
6
  "directories": {
@@ -13221,6 +13221,8 @@ CREATE TABLE `admin_gmc_product` (
13221
13221
  `merchant_id` bigint(20) UNSIGNED NOT NULL COMMENT 'gmc侧商户号',
13222
13222
  `title` varchar(255) NOT NULL COMMENT '商品标题',
13223
13223
  `beehole_goods_id` bigint(20) NOT NULL COMMENT 'beehole侧商品ID',
13224
+ `language` varchar(2) NOT NULL COMMENT '语言',
13225
+ `country` varchar(2) NOT NULL COMMENT '国家',
13224
13226
  `gmc_offer_id` varchar(64) NOT NULL COMMENT 'gmc侧产品ID',
13225
13227
  `image_url` text COMMENT '商品主图',
13226
13228
  `status` tinyint(4) NOT NULL COMMENT '0:审核中 1:已通过',
@@ -1 +1,3 @@
1
+ alter table admin_gmc_product add language varchar(2) not null comment '语言' after beehole_goods_id;
1
2
 
3
+ alter table admin_gmc_product add country varchar(2) not null comment '国家' after language;
package/version CHANGED
@@ -1 +1 @@
1
- v1.88.1
1
+ v1.89.0