strapi-content-sync-pro 1.0.3 → 1.0.4

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.
@@ -49,6 +49,7 @@ export const HelpTab = () => {
49
49
  <Tabs.Trigger value="content-types">Content Types</Tabs.Trigger>
50
50
  <Tabs.Trigger value="sync-profiles">Sync Profiles</Tabs.Trigger>
51
51
  <Tabs.Trigger value="execution">Sync Execution</Tabs.Trigger>
52
+ <Tabs.Trigger value="bulk-transfer">Bulk Transfer</Tabs.Trigger>
52
53
  <Tabs.Trigger value="media">Media</Tabs.Trigger>
53
54
  <Tabs.Trigger value="stats">Stats</Tabs.Trigger>
54
55
  <Tabs.Trigger value="enforcement">Enforcement</Tabs.Trigger>
@@ -130,6 +131,8 @@ export const HelpTab = () => {
130
131
  <li><Typography variant="omega">Conflict resolution strategies (Latest, Local, Remote wins)</Typography></li>
131
132
  <li><Typography variant="omega">Pagination support for large datasets with bounded memory usage</Typography></li>
132
133
  <li><Typography variant="omega">Dependency resolution - sync related entities automatically</Typography></li>
134
+ <li><Typography variant="omega"><strong>Bulk Transfer</strong> - top-level tab for one-click full push / full pull with selectable chunks, page-level progress, pause / resume / cancel, and persisted run history (restart or resume any previous run)</Typography></li>
135
+ <li><Typography variant="omega">Media sync (URL or rsync) with MIME filters and morph-link remapping</Typography></li>
133
136
  <li><Typography variant="omega">Enforcement checks - schema, version, and time validation</Typography></li>
134
137
  <li><Typography variant="omega">Configurable alerts via email, webhook, or Strapi logs</Typography></li>
135
138
  <li><Typography variant="omega">Secure communication via API tokens and HMAC signatures</Typography></li>
@@ -143,6 +146,7 @@ export const HelpTab = () => {
143
146
  <ul style={{ paddingLeft: '20px', marginTop: '8px', lineHeight: '1.8' }}>
144
147
  <li><Typography variant="omega"><strong>Sync Profiles</strong> - Define WHAT to sync (direction, conflict strategy, field policies)</Typography></li>
145
148
  <li><Typography variant="omega"><strong>Sync Execution</strong> - Define WHEN to sync (on-demand, scheduled, live) and dependency handling</Typography></li>
149
+ <li><Typography variant="omega"><strong>Bulk Transfer</strong> - One-click full pull / push across selectable chunks with pause / resume and persisted history (separate top-level tab)</Typography></li>
146
150
  <li><Typography variant="omega"><strong>Enforcement</strong> - Pre-sync validation (schema match, version check, time sync)</Typography></li>
147
151
  <li><Typography variant="omega"><strong>Alerts</strong> - Notifications for sync success/failure</Typography></li>
148
152
  </ul>
@@ -153,7 +157,8 @@ export const HelpTab = () => {
153
157
  <li><Typography variant="omega"><strong>Configuration Tab</strong> - Set up remote server URL, API token, instance ID, and shared secret</Typography></li>
154
158
  <li><Typography variant="omega"><strong>Content Types Tab</strong> - Enable content types for sync (auto-generates default profiles)</Typography></li>
155
159
  <li><Typography variant="omega"><strong>Sync Profiles Tab</strong> - Customize sync behavior or use defaults</Typography></li>
156
- <li><Typography variant="omega"><strong>Sync Execution Tab</strong> - Configure execution settings, page size, and run sync operations</Typography></li>
160
+ <li><Typography variant="omega"><strong>Sync Tab</strong> - Configure execution settings, page size, and run sync operations</Typography></li>
161
+ <li><Typography variant="omega"><strong>Bulk Transfer Tab</strong> - For a first-time migration or full refresh, run a one-click Full Pull or Full Push with selectable chunks, pause / resume, and persisted run history</Typography></li>
157
162
  </ol>
158
163
  </HelpSection>
159
164
 
@@ -568,6 +573,18 @@ http://localhost:1337</CodeBlock>
568
573
  </ul>
569
574
  </HelpSection>
570
575
 
576
+ <HelpSection title="Bulk Transfer (Full Pull / Full Push)">
577
+ <Typography variant="omega">
578
+ Bulk Transfer is now its own <strong>top-level tab</strong> (separate from Sync). It is a
579
+ one-click helper for moving everything between local and remote, with selectable chunks,
580
+ page-level progress, pause / resume / cancel, and a persisted run history you can restart
581
+ or resume from.
582
+ </Typography>
583
+ <Typography variant="omega" paddingTop={2}>
584
+ See the <strong>Bulk Transfer</strong> help tab for the full guide.
585
+ </Typography>
586
+ </HelpSection>
587
+
571
588
  <HelpSection title="Execution Status">
572
589
  <Typography variant="omega">
573
590
  The Status tab in Sync shows the current state of all profiles:
@@ -579,11 +596,103 @@ http://localhost:1337</CodeBlock>
579
596
  <li><Typography variant="omega"><strong>Next Run</strong> - When scheduled sync will run next</Typography></li>
580
597
  <li><Typography variant="omega"><strong>Status</strong> - Running or Idle</Typography></li>
581
598
  </ul>
582
- </HelpSection>
583
- </Box>
584
- </Tabs.Content>
599
+ </HelpSection>
600
+ </Box>
601
+ </Tabs.Content>
602
+
603
+ {/* Bulk Transfer Tab */}
604
+ <Tabs.Content value="bulk-transfer">
605
+ <Box paddingTop={4}>
606
+ <HelpSection title="What is Bulk Transfer?">
607
+ <Typography variant="omega">
608
+ <strong>Bulk Transfer</strong> is a dedicated top-level tab for one-click, full-scope data
609
+ movement between the local and remote Strapi instances. It is the fastest way to perform an
610
+ initial migration, a full refresh, or a disaster-recovery style mirror, without having to
611
+ orchestrate individual Sync Profiles.
612
+ </Typography>
613
+ <Typography variant="omega" paddingTop={2}>
614
+ Unlike the Sync tab — which is profile-driven and can be scheduled or live — Bulk Transfer is
615
+ an explicit, user-driven run: pick a direction, pick the scopes, pick (or deselect) the chunks,
616
+ and start. It is designed to be safely pausable, resumable, and inspectable.
617
+ </Typography>
618
+ </HelpSection>
619
+
620
+ <HelpSection title="Direction & Scopes">
621
+ <ul style={{ paddingLeft: '20px', marginTop: '8px', lineHeight: '1.8' }}>
622
+ <li><Typography variant="omega"><strong>Direction</strong> — <em>Full Pull</em> (remote → local) or <em>Full Push</em> (local → remote). In <strong>Single-side</strong> mode only Full Pull is available.</Typography></li>
623
+ <li><Typography variant="omega"><strong>Content</strong> — All user-defined <code>api::*</code> content types.</Typography></li>
624
+ <li><Typography variant="omega"><strong>Media</strong> — Files and morph links via the active media profiles.</Typography></li>
625
+ <li><Typography variant="omega"><strong>Strapi Users</strong> — <code>plugin::users-permissions.user</code>.</Typography></li>
626
+ <li><Typography variant="omega"><strong>Admin Users</strong> — <code>admin::user</code> (experimental; use with care).</Typography></li>
627
+ <li><Typography variant="omega"><strong>Apply deletions</strong> — Destination removes items missing on source. Use with care, especially with user scopes.</Typography></li>
628
+ <li><Typography variant="omega"><strong>Conflict strategy</strong> — Latest updated wins (default), Local wins, or Remote wins.</Typography></li>
629
+ <li><Typography variant="omega"><strong>Auto-continue</strong> — Run all selected chunks back-to-back, or pause between chunks to review.</Typography></li>
630
+ </ul>
631
+ </HelpSection>
632
+
633
+ <HelpSection title="Selectable Chunks & Page-level Progress">
634
+ <Typography variant="omega">
635
+ A bulk job expands into one <strong>chunk</strong> per content type and one chunk per active
636
+ media profile (plus any selected user scopes). In the Run Transfer view you can:
637
+ </Typography>
638
+ <ul style={{ paddingLeft: '20px', marginTop: '8px', lineHeight: '1.8' }}>
639
+ <li><Typography variant="omega">Toggle individual chunks, or use <strong>Select / Deselect All</strong> to run only a subset.</Typography></li>
640
+ <li><Typography variant="omega">Watch per-chunk <strong>page progress</strong> (<code>page X of Y</code>, records pushed / pulled, errors) updated in near real-time.</Typography></li>
641
+ <li><Typography variant="omega">See consolidated run stats (total pushed, pulled, errors, pages done) and a spinner while the job is actively processing.</Typography></li>
642
+ <li><Typography variant="omega">Use <strong>Pause</strong> to stop after the current page, <strong>Resume</strong> to continue from the exact saved cursor, <strong>Run Next Chunk</strong> in manual mode, or <strong>Cancel</strong> to stop the run without losing the progress already made.</Typography></li>
643
+ </ul>
644
+ <Typography variant="pi" textColor="neutral600" paddingTop={2}>
645
+ Because transfer is paginated end-to-end using the global <code>syncPageSize</code>, memory
646
+ stays bounded even on very large datasets.
647
+ </Typography>
648
+ </HelpSection>
649
+
650
+ <HelpSection title="Pause, Resume & Cancel">
651
+ <Typography variant="omega">
652
+ Bulk Transfer treats <strong>pause</strong>, <strong>cancel</strong>, and <strong>resume</strong> as
653
+ first-class operations:
654
+ </Typography>
655
+ <ul style={{ paddingLeft: '20px', marginTop: '8px', lineHeight: '1.8' }}>
656
+ <li><Typography variant="omega"><strong>Pause</strong> — Stops after the current page finishes. The chunk cursor, page number, and counters are persisted, so resume continues from the same place.</Typography></li>
657
+ <li><Typography variant="omega"><strong>Cancel</strong> — Distinct from pause: the run is marked cancelled and the in-flight chunk is preserved as <em>paused</em> with accumulated progress, not falsely reported as successful.</Typography></li>
658
+ <li><Typography variant="omega"><strong>Resume</strong> — Re-opens the run exactly where it stopped: same direction, scopes, deletion flag, auto-continue, conflict strategy, and the same chunk selection, with cursor/page restored.</Typography></li>
659
+ </ul>
660
+ </HelpSection>
661
+
662
+ <HelpSection title="Previous Runs & History">
663
+ <Typography variant="omega">
664
+ Every bulk run — completed, paused, cancelled, or failed — is recorded in the
665
+ <strong> Previous Runs</strong> sub-tab. History is persisted in the plugin store (not just
666
+ in memory), with serialized writes so concurrent updates from the polling loop and control
667
+ actions never clobber each other.
668
+ </Typography>
669
+ <ul style={{ paddingLeft: '20px', marginTop: '8px', lineHeight: '1.8' }}>
670
+ <li><Typography variant="omega"><strong>Expand</strong> a row to inspect per-chunk status, page progress, record counts, and error messages for that run.</Typography></li>
671
+ <li><Typography variant="omega"><strong>Restart</strong> — Re-runs the same configuration from scratch (fresh cursor) while keeping the original entry in history.</Typography></li>
672
+ <li><Typography variant="omega"><strong>Resume</strong> — For paused / cancelled / incomplete runs, rehydrates the Run Transfer tab with the exact prior state (direction, scopes, options, chunk selection) and continues from the saved cursor and page.</Typography></li>
673
+ <li><Typography variant="omega"><strong>Clear history</strong> — Removes the stored history entries.</Typography></li>
674
+ </ul>
675
+ <Typography variant="omega" paddingTop={2}>
676
+ Each run is also recorded as a Stats report with <code>runType = bulk_transfer</code>, so the
677
+ before/after snapshots are available in the Stats tab.
678
+ </Typography>
679
+ </HelpSection>
680
+
681
+ <HelpSection title="Bulk Transfer vs Sync">
682
+ <ul style={{ paddingLeft: '20px', marginTop: '8px', lineHeight: '1.8' }}>
683
+ <li><Typography variant="omega"><strong>Sync</strong> is <em>profile-driven</em>: on-demand, scheduled, or live; intended for ongoing incremental synchronization with field-level policies.</Typography></li>
684
+ <li><Typography variant="omega"><strong>Bulk Transfer</strong> is <em>operation-driven</em>: an explicit full pull/push, chunked and resumable, intended for migrations, backfills, and full refreshes.</Typography></li>
685
+ </ul>
686
+ <Typography variant="pi" textColor="warning600" paddingTop={2}>
687
+ Note: The active in-memory job registry is cleared on Strapi restart, but the run history
688
+ (and its saved cursor/page/selection) is persisted — so after a restart you can open Previous
689
+ Runs and <strong>Resume</strong> the interrupted job.
690
+ </Typography>
691
+ </HelpSection>
692
+ </Box>
693
+ </Tabs.Content>
585
694
 
586
- {/* Media Tab */}
695
+ {/* Media Tab */}
587
696
  <Tabs.Content value="media">
588
697
  <Box paddingTop={4}>
589
698
  <HelpSection title="Pagination for Large Datasets">
@@ -26,6 +26,8 @@ import {
26
26
  import { Play, Clock, Cog, ArrowUp, ArrowDown } from '@strapi/icons';
27
27
  import { useFetchClient } from '@strapi/strapi/admin';
28
28
 
29
+
30
+
29
31
  const PLUGIN_ID = 'strapi-content-sync-pro';
30
32
 
31
33
  const EXECUTION_MODE_OPTIONS = [
@@ -10,12 +10,14 @@ import { StatsTab } from '../../components/StatsTab';
10
10
  import { HelpTab } from '../../components/HelpTab';
11
11
  import { SyncProfilesTab } from '../../components/SyncProfilesTab';
12
12
  import { MediaTab } from '../../components/MediaTab';
13
+ import BulkTransferTab from '../../components/BulkTransferTab';
13
14
 
14
15
  const TABS = [
15
16
  { key: 'config', label: 'Configuration' },
16
17
  { key: 'content-types', label: 'Content Types' },
17
18
  { key: 'sync-profiles', label: 'Sync Profiles' },
18
19
  { key: 'sync', label: 'Sync' },
20
+ { key: 'bulk-transfer', label: 'Bulk Transfer' },
19
21
  { key: 'media', label: 'Media' },
20
22
  { key: 'stats', label: 'Stats' },
21
23
  { key: 'logs', label: 'Logs' },
@@ -29,8 +31,16 @@ const HomePage = () => {
29
31
  <Main>
30
32
  <Box padding={8} background="neutral100">
31
33
  <Typography variant="alpha" tag="h1">
32
- Content Sync Pro Plugin - Reliable Data Synchronization for Strapi Environments
34
+ Content Sync Pro Plugin - Bulk Data Transfer, Live Sync, and Automated Content Replication between Strapi instances
33
35
  </Typography>
36
+ <Box paddingTop={2}>
37
+ <Typography variant="omega" textColor="neutral600">
38
+ Copy, migrate, and keep content, media, users, and relations in sync across environments.
39
+ Run full one-click Bulk Transfers with selectable chunks, page-level progress, pause /
40
+ resume / cancel, and persisted run history — alongside profile-driven bi-directional sync,
41
+ field-level policies, scheduling, live hooks, and alerts.
42
+ </Typography>
43
+ </Box>
34
44
 
35
45
 
36
46
  <Box paddingTop={4} paddingBottom={6}>
@@ -51,6 +61,7 @@ const HomePage = () => {
51
61
  {activeTab === 'content-types' && <ContentTypesTab />}
52
62
  {activeTab === 'sync-profiles' && <SyncProfilesTab />}
53
63
  {activeTab === 'sync' && <SyncTab />}
64
+ {activeTab === 'bulk-transfer' && <BulkTransferTab />}
54
65
  {activeTab === 'media' && <MediaTab />}
55
66
  {activeTab === 'stats' && <StatsTab />}
56
67
  {activeTab === 'logs' && <LogsTab />}
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "strapi-content-sync-pro",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Strapi v5 plugin to copy, migrate, and live-sync content, media, and data between multiple Strapi environments with bi-directional sync, field-level policies, scheduling, and alerts.",
5
5
  "license": "MIT",
6
6
  "author": {
7
- "name": "Ejaz Husain Arain",
7
+ "name": "Ejaz Hussain Arain",
8
8
  "email": "eharain@yahoo.com",
9
- "url": "https://github.com/eharain"
9
+ "url": "https://www.linkedin.com/in/ejazarain"
10
10
  },
11
11
  "repository": {
12
12
  "type": "git",
@@ -24,7 +24,10 @@
24
24
  "strapi",
25
25
  "strapi-plugin",
26
26
  "strapi-v5",
27
+ "strapi pulgin to transfer content",
27
28
  "sync",
29
+ "hot sync",
30
+ "real-time sync",
28
31
  "live-sync",
29
32
  "data-sync",
30
33
  "content-sync",
@@ -39,7 +42,13 @@
39
42
  "cross-environment",
40
43
  "data-transfer",
41
44
  "headless-cms",
42
- "content-management"
45
+ "content-management",
46
+ "data transfer",
47
+ "bulk transfer",
48
+ "field-level policies",
49
+ "scheduling",
50
+ "alerts",
51
+ "bi-directional sync"
43
52
  ],
44
53
  "exports": {
45
54
  "./strapi-admin": {
@@ -0,0 +1,141 @@
1
+ 'use strict';
2
+
3
+ const PLUGIN_ID = 'strapi-content-sync-pro';
4
+
5
+ function svc(strapi) {
6
+ return strapi.plugin(PLUGIN_ID).service('bulkTransfer');
7
+ }
8
+
9
+ module.exports = ({ strapi }) => ({
10
+ async preview(ctx) {
11
+ try {
12
+ const body = ctx.request.body || {};
13
+ const data = await svc(strapi).preview({
14
+ direction: body.direction,
15
+ scopes: body.scopes,
16
+ });
17
+ ctx.body = { data };
18
+ } catch (err) {
19
+ ctx.throw(400, err.message);
20
+ }
21
+ },
22
+
23
+ async start(ctx) {
24
+ try {
25
+ const body = ctx.request.body || {};
26
+ const data = await svc(strapi).start(body);
27
+ ctx.body = { data };
28
+ } catch (err) {
29
+ ctx.throw(400, err.message);
30
+ }
31
+ },
32
+
33
+ async next(ctx) {
34
+ try {
35
+ const { jobId } = ctx.params;
36
+ const data = await svc(strapi).next(jobId);
37
+ ctx.body = { data };
38
+ } catch (err) {
39
+ ctx.throw(400, err.message);
40
+ }
41
+ },
42
+
43
+ async runAll(ctx) {
44
+ try {
45
+ const { jobId } = ctx.params;
46
+ const data = await svc(strapi).runToCompletion(jobId);
47
+ ctx.body = { data };
48
+ } catch (err) {
49
+ ctx.throw(400, err.message);
50
+ }
51
+ },
52
+
53
+ async status(ctx) {
54
+ try {
55
+ const { jobId } = ctx.params;
56
+ const data = svc(strapi).getStatus(jobId);
57
+ if (!data) return ctx.notFound('Job not found');
58
+ ctx.body = { data };
59
+ } catch (err) {
60
+ ctx.throw(500, err.message);
61
+ }
62
+ },
63
+
64
+ async cancel(ctx) {
65
+ try {
66
+ const { jobId } = ctx.params;
67
+ const data = await svc(strapi).cancel(jobId);
68
+ ctx.body = { data };
69
+ } catch (err) {
70
+ ctx.throw(400, err.message);
71
+ }
72
+ },
73
+
74
+ async pause(ctx) {
75
+ try {
76
+ const { jobId } = ctx.params;
77
+ const data = await svc(strapi).pause(jobId);
78
+ ctx.body = { data };
79
+ } catch (err) {
80
+ ctx.throw(400, err.message);
81
+ }
82
+ },
83
+
84
+ async resume(ctx) {
85
+ try {
86
+ const { jobId } = ctx.params;
87
+ const data = await svc(strapi).resume(jobId);
88
+ ctx.body = { data };
89
+ } catch (err) {
90
+ ctx.throw(400, err.message);
91
+ }
92
+ },
93
+
94
+ async list(ctx) {
95
+ try {
96
+ ctx.body = { data: svc(strapi).listJobs() };
97
+ } catch (err) {
98
+ ctx.throw(500, err.message);
99
+ }
100
+ },
101
+
102
+ async history(ctx) {
103
+ try {
104
+ const data = await svc(strapi).getHistory();
105
+ ctx.body = { data };
106
+ } catch (err) {
107
+ ctx.throw(500, err.message);
108
+ }
109
+ },
110
+
111
+ async clearHistory(ctx) {
112
+ try {
113
+ const data = await svc(strapi).clearHistory();
114
+ ctx.body = { data };
115
+ } catch (err) {
116
+ ctx.throw(500, err.message);
117
+ }
118
+ },
119
+
120
+ async restart(ctx) {
121
+ try {
122
+ const { historyId } = ctx.params;
123
+ const body = ctx.request.body || {};
124
+ const data = await svc(strapi).restart(historyId, body);
125
+ ctx.body = { data };
126
+ } catch (err) {
127
+ ctx.throw(400, err.message);
128
+ }
129
+ },
130
+
131
+ async resumeFromHistory(ctx) {
132
+ try {
133
+ const { historyId } = ctx.params;
134
+ const body = ctx.request.body || {};
135
+ const data = await svc(strapi).resumeFromHistory(historyId, body);
136
+ ctx.body = { data };
137
+ } catch (err) {
138
+ ctx.throw(400, err.message);
139
+ }
140
+ },
141
+ });
@@ -13,6 +13,7 @@ const syncMedia = require('./sync-media');
13
13
  const alerts = require('./alerts');
14
14
  const dependencies = require('./dependencies');
15
15
  const syncStats = require('./sync-stats');
16
+ const bulkTransfer = require('./bulk-transfer');
16
17
 
17
18
  module.exports = {
18
19
  ping,
@@ -28,4 +29,5 @@ module.exports = {
28
29
  alerts,
29
30
  dependencies,
30
31
  syncStats,
32
+ bulkTransfer,
31
33
  };
@@ -110,6 +110,21 @@ const adminRoutes = [
110
110
  { method: 'GET', path: '/dependencies/:uid/sync-order', handler: 'dependencies.getSyncOrder', config: { policies: [] } },
111
111
  { method: 'GET', path: '/dependencies/:uid/summary', handler: 'dependencies.getSummary', config: { policies: [] } },
112
112
  { method: 'POST', path: '/dependencies/clear-cache', handler: 'dependencies.clearCache', config: { policies: [] } },
113
+
114
+ // Bulk Transfer (one-click full pull / full push)
115
+ { method: 'POST', path: '/bulk-transfer/preview', handler: 'bulkTransfer.preview', config: { policies: [] } },
116
+ { method: 'POST', path: '/bulk-transfer/start', handler: 'bulkTransfer.start', config: { policies: [] } },
117
+ { method: 'GET', path: '/bulk-transfer/jobs', handler: 'bulkTransfer.list', config: { policies: [] } },
118
+ { method: 'GET', path: '/bulk-transfer/jobs/:jobId', handler: 'bulkTransfer.status', config: { policies: [] } },
119
+ { method: 'POST', path: '/bulk-transfer/jobs/:jobId/next', handler: 'bulkTransfer.next', config: { policies: [] } },
120
+ { method: 'POST', path: '/bulk-transfer/jobs/:jobId/run-all', handler: 'bulkTransfer.runAll', config: { policies: [] } },
121
+ { method: 'POST', path: '/bulk-transfer/jobs/:jobId/pause', handler: 'bulkTransfer.pause', config: { policies: [] } },
122
+ { method: 'POST', path: '/bulk-transfer/jobs/:jobId/resume', handler: 'bulkTransfer.resume', config: { policies: [] } },
123
+ { method: 'POST', path: '/bulk-transfer/jobs/:jobId/cancel', handler: 'bulkTransfer.cancel', config: { policies: [] } },
124
+ { method: 'GET', path: '/bulk-transfer/history', handler: 'bulkTransfer.history', config: { policies: [] } },
125
+ { method: 'POST', path: '/bulk-transfer/history/clear', handler: 'bulkTransfer.clearHistory', config: { policies: [] } },
126
+ { method: 'POST', path: '/bulk-transfer/history/:historyId/restart', handler: 'bulkTransfer.restart', config: { policies: [] } },
127
+ { method: 'POST', path: '/bulk-transfer/history/:historyId/resume', handler: 'bulkTransfer.resumeFromHistory', config: { policies: [] } },
113
128
  ];
114
129
 
115
130
  module.exports = {