@bee-hole/server 1.88.0 → 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 +0 -0
- package/mainD +0 -0
- package/package.json +2 -2
- package/resource/public/cp/index.html +1 -1
- package/resource/public/cp/js/app~f075b844.ad05e822.js +1 -0
- package/resource/public/cp/js/app~f075b844.ad05e822.js.gz +0 -0
- package/resource/public/cp/js/{lang-package~4e34e71e.206bd010.js → lang-package~4e34e71e.f9855d6a.js} +3 -3
- package/resource/public/cp/js/lang-package~4e34e71e.f9855d6a.js.gz +0 -0
- package/storage/init/init.sql +2 -0
- package/storage/patch/patch.sql +3 -26
- package/version +1 -1
- package/resource/public/cp/js/app~f075b844.cb943a6a.js +0 -1
- package/resource/public/cp/js/app~f075b844.cb943a6a.js.gz +0 -0
- package/resource/public/cp/js/lang-package~4e34e71e.206bd010.js.gz +0 -0
- /package/resource/public/cp/css/{lang-package~4e34e71e.e61bc8e9.css → lang-package~4e34e71e.e855047a.css} +0 -0
- /package/resource/public/cp/css/{lang-package~4e34e71e.e61bc8e9.css.gz → lang-package~4e34e71e.e855047a.css.gz} +0 -0
- /package/resource/public/cp/js/{chunk-3fb81a1d.e33d2a26.js → chunk-3fb81a1d.60e47fe1.js} +0 -0
- /package/resource/public/cp/js/{chunk-3fb81a1d.e33d2a26.js.gz → chunk-3fb81a1d.60e47fe1.js.gz} +0 -0
- /package/resource/public/cp/js/{chunk-601f893e.b0871aa2.js → chunk-601f893e.e76041f2.js} +0 -0
- /package/resource/public/cp/js/{chunk-601f893e.b0871aa2.js.gz → chunk-601f893e.e76041f2.js.gz} +0 -0
- /package/resource/public/cp/js/{chunk-620ce8e8.4b531162.js → chunk-620ce8e8.13edd321.js} +0 -0
- /package/resource/public/cp/js/{chunk-620ce8e8.4b531162.js.gz → chunk-620ce8e8.13edd321.js.gz} +0 -0
- /package/resource/public/cp/js/{chunk-6443e584.547796d3.js → chunk-6443e584.b0674fd7.js} +0 -0
- /package/resource/public/cp/js/{chunk-6443e584.547796d3.js.gz → chunk-6443e584.b0674fd7.js.gz} +0 -0
- /package/resource/public/cp/js/{chunk-b41534d2.5b644d2f.js → chunk-b41534d2.393c51ab.js} +0 -0
- /package/resource/public/cp/js/{chunk-b41534d2.5b644d2f.js.gz → chunk-b41534d2.393c51ab.js.gz} +0 -0
- /package/resource/public/cp/js/{chunk-e4a3fce0.0adf3f5c.js → chunk-e4a3fce0.36cd6110.js} +0 -0
- /package/resource/public/cp/js/{chunk-e4a3fce0.0adf3f5c.js.gz → chunk-e4a3fce0.36cd6110.js.gz} +0 -0
- /package/resource/public/cp/js/{lang-zh-TW-service~f63b1681.286f2861.js → lang-zh-TW-service~f63b1681.2634caca.js} +0 -0
- /package/resource/public/cp/js/{lang-zh-TW-service~f63b1681.286f2861.js.gz → lang-zh-TW-service~f63b1681.2634caca.js.gz} +0 -0
|
Binary file
|
package/storage/init/init.sql
CHANGED
|
@@ -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:已通过',
|
package/storage/patch/patch.sql
CHANGED
|
@@ -1,26 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
(
|
|
4
|
-
id bigint auto_increment comment '表主键' primary key,
|
|
5
|
-
shop_id bigint not null comment '所属店铺',
|
|
6
|
-
beehole_goods_id bigint not null comment 'beehole侧商品ID',
|
|
7
|
-
bigcommerce_product_id bigint not null comment 'bigcommerce侧商品ID',
|
|
8
|
-
beehole_name varchar(255) not null comment 'beehole侧商品名称',
|
|
9
|
-
create_time datetime not null comment '数据创建时间'
|
|
10
|
-
) comment 'bigcommerce商品表';
|
|
11
|
-
create index admin_bigcommerce_product_shop_id_index on admin_bigcommerce_product (shop_id);
|
|
12
|
-
alter table admin_syn_config add credential longtext null comment '凭证' after data;
|
|
13
|
-
DROP TABLE IF EXISTS `admin_gmc_product`;
|
|
14
|
-
CREATE TABLE IF NOT EXISTS admin_gmc_product
|
|
15
|
-
(
|
|
16
|
-
id bigint auto_increment comment '表主键' primary key,
|
|
17
|
-
shop_id bigint not null comment '所属店铺',
|
|
18
|
-
merchant_id bigint unsigned not null comment 'gmc侧商户号',
|
|
19
|
-
title varchar(255) not null comment '商品标题',
|
|
20
|
-
beehole_goods_id bigint not null comment 'beehole侧商品ID',
|
|
21
|
-
gmc_offer_id varchar(64) not null comment 'gmc侧产品ID',
|
|
22
|
-
image_url text null comment '商品主图',
|
|
23
|
-
status tinyint not null comment '0:审核中 1:已通过',
|
|
24
|
-
create_time datetime not null comment '数据创建时间'
|
|
25
|
-
) comment 'google merchant center商品表';
|
|
26
|
-
create index admin_gmc_product_shop_id_index on admin_gmc_product (shop_id);
|
|
1
|
+
alter table admin_gmc_product add language varchar(2) not null comment '语言' after beehole_goods_id;
|
|
2
|
+
|
|
3
|
+
alter table admin_gmc_product add country varchar(2) not null comment '国家' after language;
|
package/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v1.
|
|
1
|
+
v1.89.0
|