cityworks 0.0.37 → 0.0.39
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 +4 -2
- package/dist/cityworks.d.ts +10 -25
- package/dist/index.js.map +1 -1
- package/dist/index.m.js.map +1 -1
- package/dist/index.modern.mjs.map +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -1
- package/index.js +0 -1
- package/src/activity_link.ts +0 -241
- package/src/case.ts +0 -282
- package/src/case_admin.ts +0 -883
- package/src/case_assets.ts +0 -129
- package/src/case_data.ts +0 -446
- package/src/case_financial.ts +0 -848
- package/src/case_workflow.ts +0 -462
- package/src/cityworks.ts +0 -719
- package/src/comments.ts +0 -167
- package/src/costs.ts +0 -289
- package/src/error.ts +0 -56
- package/src/event_layer.ts +0 -231
- package/src/general.ts +0 -143
- package/src/gis.ts +0 -242
- package/src/index.ts +0 -1
- package/src/inspection.ts +0 -851
- package/src/inspection_admin.ts +0 -45
- package/src/message_queue.ts +0 -243
- package/src/request.ts +0 -823
- package/src/request_admin.ts +0 -35
- package/src/search.ts +0 -339
- package/src/workorder.ts +0 -838
- package/src/workorder_admin.ts +0 -248
- package/test/01.cityworksTest.js +0 -80
- package/test/02.activitylinkTest.js +0 -58
- package/test/03.generalTest.js +0 -87
- package/test/04.requestTest.js +0 -293
- package/test/05.caseTest.js +0 -110
- package/test/06.caseFinancialTest.js +0 -172
- package/test/07.searchTest.js +0 -191
- package/test/08.workOrderTest.js +0 -48
- package/test/09.caseAssetsTest.js +0 -72
- package/test/09.inspectionTest.js +0 -28
- package/tsconfig.json +0 -68
package/test/07.searchTest.js
DELETED
|
@@ -1,191 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
require('dotenv').config();
|
|
3
|
-
var chai = require('chai');
|
|
4
|
-
var expect = require('chai').expect;
|
|
5
|
-
var assert = require('chai').assert;
|
|
6
|
-
var chaiAsPromised = require("chai-as-promised");
|
|
7
|
-
chai.use(chaiAsPromised);
|
|
8
|
-
var Cityworks = require('../dist/index.js');
|
|
9
|
-
var cw7 = new Cityworks(process.env.domain, {path: process.env.path});
|
|
10
|
-
|
|
11
|
-
before(function(done) {
|
|
12
|
-
this.timeout(20000000);
|
|
13
|
-
cw7.authenticate(process.env.login, process.env.password).then(resp => {
|
|
14
|
-
done();
|
|
15
|
-
}).catch(e => {
|
|
16
|
-
console.log(e, 'unexpected error')
|
|
17
|
-
done();
|
|
18
|
-
});
|
|
19
|
-
});
|
|
20
|
-
|
|
21
|
-
describe('[Search::quick] function test', () => {
|
|
22
|
-
it('should resolve results', (done) => {
|
|
23
|
-
cw7.search.quick('256460').then(r => {
|
|
24
|
-
assert.property(r, 'ServiceRequests');
|
|
25
|
-
done();
|
|
26
|
-
});
|
|
27
|
-
});
|
|
28
|
-
|
|
29
|
-
it('should resolve (empty) results even when the string is not found', (done) => {
|
|
30
|
-
cw7.search.quick('SomethingSidewalk').then(r => {
|
|
31
|
-
assert.property(r, 'Permits');
|
|
32
|
-
done();
|
|
33
|
-
});
|
|
34
|
-
});
|
|
35
|
-
});
|
|
36
|
-
|
|
37
|
-
describe('[Search::execute] function test', () => {
|
|
38
|
-
it('should resolve a collection of search results', (done) => {
|
|
39
|
-
cw7.search.execute(3897).then(r => {
|
|
40
|
-
assert.isArray(r);
|
|
41
|
-
done();
|
|
42
|
-
});
|
|
43
|
-
});
|
|
44
|
-
|
|
45
|
-
it('should resolve an empty array if search ID is not found', (done) => {
|
|
46
|
-
cw7.search.execute(999999999).then(r => {
|
|
47
|
-
assert.isEmpty(r);
|
|
48
|
-
done();
|
|
49
|
-
});
|
|
50
|
-
});
|
|
51
|
-
});
|
|
52
|
-
|
|
53
|
-
describe('[Search::getSaved] function test', () => {
|
|
54
|
-
it('should resolve a collection of saved searches', (done) => {
|
|
55
|
-
cw7.search.getSaved('Request').then(r => {
|
|
56
|
-
assert.isArray(r);
|
|
57
|
-
done();
|
|
58
|
-
});
|
|
59
|
-
});
|
|
60
|
-
|
|
61
|
-
it('should reject with an error if the search type does not exist', (done) => {
|
|
62
|
-
cw7.search.getSaved('ServiceRequest').then(r => {
|
|
63
|
-
}).catch(e => {
|
|
64
|
-
assert.equal(e.message, 'SearchType provided does not exist or is mispelled.')
|
|
65
|
-
done();
|
|
66
|
-
});
|
|
67
|
-
});
|
|
68
|
-
|
|
69
|
-
it('should reject with an error if the applyToEntities and employeeSid/domainId are all set at the same time', (done) => {
|
|
70
|
-
cw7.search.getSaved('Request', ['EASEMENT_TREES'], 127, 1).then(r => {
|
|
71
|
-
}).catch(e => {
|
|
72
|
-
assert.equal(e.message, 'You cannot specify both applyToEntities AND employeeSid/domainId')
|
|
73
|
-
done();
|
|
74
|
-
});
|
|
75
|
-
});
|
|
76
|
-
});
|
|
77
|
-
|
|
78
|
-
describe('[Search::displayFields] function test', () => {
|
|
79
|
-
it('should resolve a collection of display fields', (done) => {
|
|
80
|
-
cw7.search.displayFields('WorkOrder').then(r => {
|
|
81
|
-
assert.isArray(r);
|
|
82
|
-
done();
|
|
83
|
-
});
|
|
84
|
-
});
|
|
85
|
-
|
|
86
|
-
it('should reject with an error if the searchType is not found', (done) => {
|
|
87
|
-
cw7.search.displayFields('ServiceRequest').then(r => {
|
|
88
|
-
}).catch(e => {
|
|
89
|
-
assert.equal(e.message, 'SearchType provided does not exist or is mispelled.')
|
|
90
|
-
done();
|
|
91
|
-
});
|
|
92
|
-
});
|
|
93
|
-
});
|
|
94
|
-
|
|
95
|
-
describe('[Search::types] function test', () => {
|
|
96
|
-
it('should resolve a collection of types', (done) => {
|
|
97
|
-
cw7.search.types().then(r => {
|
|
98
|
-
assert.isArray(r);
|
|
99
|
-
done();
|
|
100
|
-
});
|
|
101
|
-
});
|
|
102
|
-
});
|
|
103
|
-
|
|
104
|
-
describe('[Search::disableServices] function test', () => {
|
|
105
|
-
it('should resolve dictionary of searchIDs and boolean', (done) => {
|
|
106
|
-
cw7.search.disableServices([4338]).then(r => {
|
|
107
|
-
assert.propertyVal(r, 4338, true);
|
|
108
|
-
done();
|
|
109
|
-
});
|
|
110
|
-
});
|
|
111
|
-
it('should always be "False" if search ID does not exist', (done) => {
|
|
112
|
-
cw7.search.disableServices([9999999]).then(r => {
|
|
113
|
-
assert.propertyVal(r, 9999999, false);
|
|
114
|
-
done();
|
|
115
|
-
});
|
|
116
|
-
});
|
|
117
|
-
});
|
|
118
|
-
|
|
119
|
-
describe('[Search::enableServices] function test', () => {
|
|
120
|
-
it('should resolve dictionary of searchIDs and boolean', (done) => {
|
|
121
|
-
cw7.search.enableServices([4338]).then(r => {
|
|
122
|
-
assert.propertyVal(r, 4338, true);
|
|
123
|
-
done();
|
|
124
|
-
});
|
|
125
|
-
});
|
|
126
|
-
it('should always be "False" if search ID does not exist', (done) => {
|
|
127
|
-
cw7.search.enableServices([9999999]).then(r => {
|
|
128
|
-
assert.propertyVal(r, 9999999, false);
|
|
129
|
-
done();
|
|
130
|
-
});
|
|
131
|
-
});
|
|
132
|
-
});
|
|
133
|
-
|
|
134
|
-
describe('[Search::getDefinition] function test', () => {
|
|
135
|
-
it('should resolve the definition of the search', (done) => {
|
|
136
|
-
cw7.search.getDefinition(4338).then(r => {
|
|
137
|
-
assert.isObject(r);
|
|
138
|
-
done();
|
|
139
|
-
});
|
|
140
|
-
});
|
|
141
|
-
it('should be blanked search definition if the definition doesn\'t exist', (done) => {
|
|
142
|
-
cw7.search.getDefinition(9999999).then(r => {
|
|
143
|
-
assert.isEmpty(r.SearchFields);
|
|
144
|
-
done();
|
|
145
|
-
});
|
|
146
|
-
});
|
|
147
|
-
});
|
|
148
|
-
|
|
149
|
-
describe('[Search::getDefinitions] function test', () => {
|
|
150
|
-
it('should resolve the definition of the search', (done) => {
|
|
151
|
-
cw7.search.getDefinitions([4338,4337,4336]).then(r => {
|
|
152
|
-
assert.isArray(r);
|
|
153
|
-
done();
|
|
154
|
-
});
|
|
155
|
-
});
|
|
156
|
-
it('should be blanked search definition(s) if the definitions don\'t exist', (done) => {
|
|
157
|
-
cw7.search.getDefinitions([9999999,99999999,999999999]).then(r => {
|
|
158
|
-
assert.isEmpty(r[0].SearchFields);
|
|
159
|
-
done();
|
|
160
|
-
});
|
|
161
|
-
});
|
|
162
|
-
});
|
|
163
|
-
|
|
164
|
-
describe('[Search::getDefinitionNames] function test', () => {
|
|
165
|
-
it('should resolve a collection', (done) => {
|
|
166
|
-
cw7.search.getDefinitionNames([1,2,3,4,5]).then(r => {
|
|
167
|
-
assert.isArray(r);
|
|
168
|
-
done();
|
|
169
|
-
});
|
|
170
|
-
});
|
|
171
|
-
});
|
|
172
|
-
|
|
173
|
-
describe('[Search::saveDefinition] function test', () => {
|
|
174
|
-
it('should resolve a collection', (done) => {
|
|
175
|
-
cw7.search.saveDefinition('Request').then(r => {
|
|
176
|
-
assert.isNumber(r.SearchId);
|
|
177
|
-
done();
|
|
178
|
-
});
|
|
179
|
-
});
|
|
180
|
-
});
|
|
181
|
-
|
|
182
|
-
describe('[Search::deleteDefinitions] function test', () => {
|
|
183
|
-
it('should resolve a list of success or failure to delete per id', (done) => {
|
|
184
|
-
cw7.search.saveDefinition('Request').then(r => {
|
|
185
|
-
cw7.search.deleteDefinitions([r.SearchId]).then(rez => {
|
|
186
|
-
assert.isBoolean(rez[r.SearchId]);
|
|
187
|
-
done();
|
|
188
|
-
});
|
|
189
|
-
});
|
|
190
|
-
});
|
|
191
|
-
});
|
package/test/08.workOrderTest.js
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
require('dotenv').config();
|
|
3
|
-
var chai = require('chai');
|
|
4
|
-
var expect = require('chai').expect;
|
|
5
|
-
var assert = require('chai').assert;
|
|
6
|
-
var chaiAsPromised = require("chai-as-promised");
|
|
7
|
-
chai.use(chaiAsPromised);
|
|
8
|
-
var Cityworks = require('../dist/index.js');
|
|
9
|
-
var cw8 = new Cityworks(process.env.domain, {path: process.env.path});
|
|
10
|
-
|
|
11
|
-
before(function(done) {
|
|
12
|
-
this.timeout(20000000);
|
|
13
|
-
cw8.authenticate(process.env.login, process.env.password).then(resp => {
|
|
14
|
-
done();
|
|
15
|
-
}).catch(e => {
|
|
16
|
-
console.log(e, 'unexpected error')
|
|
17
|
-
done();
|
|
18
|
-
});
|
|
19
|
-
});
|
|
20
|
-
|
|
21
|
-
describe('[WorkOrder (construct)] function test', () => {
|
|
22
|
-
it('should be a defined object', (done) => {
|
|
23
|
-
assert.isObject(cw8.request, 'Request is an object');
|
|
24
|
-
done();
|
|
25
|
-
});
|
|
26
|
-
it('should have an admin property which is a defined object', (done) => {
|
|
27
|
-
assert.isObject(cw8.case.admin, 'Admin is an object');
|
|
28
|
-
done();
|
|
29
|
-
});
|
|
30
|
-
it('should have an comment property which is a defined object', (done) => {
|
|
31
|
-
assert.isObject(cw8.case.comment, 'Comment is an object');
|
|
32
|
-
done();
|
|
33
|
-
});
|
|
34
|
-
});
|
|
35
|
-
|
|
36
|
-
describe('[WorkOrder::create] function test', () => {
|
|
37
|
-
it('should resolve collection of WorkOrders', (done) => {
|
|
38
|
-
cw8.workorder.create({WOTemplateId: 209, EntityType: 'MAINTENANCE_CATEGORIZATION'}).then(r => {
|
|
39
|
-
assert.property(r[0], 'WorkOrderSid');
|
|
40
|
-
done();
|
|
41
|
-
}).catch(e => {
|
|
42
|
-
console.log(e, 'unexpected error')
|
|
43
|
-
done();
|
|
44
|
-
});
|
|
45
|
-
});
|
|
46
|
-
it('should have attached inspections when specified');
|
|
47
|
-
it('should have attached service requests when specified');
|
|
48
|
-
});
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
require('dotenv').config();
|
|
3
|
-
var expect = require('chai').expect;
|
|
4
|
-
var assert = require('chai').assert;
|
|
5
|
-
var Cityworks = require('../dist/index.js');
|
|
6
|
-
var cw6 = new Cityworks(process.env.domain, {path: process.env.path});
|
|
7
|
-
const _ = require('lodash')
|
|
8
|
-
|
|
9
|
-
before(function(done) {
|
|
10
|
-
this.timeout(20000000);
|
|
11
|
-
cw6.authenticate(process.env.login, process.env.password).then(resp => {
|
|
12
|
-
done();
|
|
13
|
-
}).catch(e => {
|
|
14
|
-
console.log(e, 'unexpected error')
|
|
15
|
-
done();
|
|
16
|
-
});
|
|
17
|
-
});
|
|
18
|
-
|
|
19
|
-
describe('[CaseAssets (construct)] function test', () => {
|
|
20
|
-
it('should be a defined object', (done) => {
|
|
21
|
-
assert.isObject(cw6.case.financial, 'Request is an object');
|
|
22
|
-
done();
|
|
23
|
-
});
|
|
24
|
-
});
|
|
25
|
-
|
|
26
|
-
describe('[CaseAssets::attach] function test', () => {
|
|
27
|
-
it('should resolve a collection of case fees', (done) => {
|
|
28
|
-
cw6.case.financial.getFees(16086).then(r => {
|
|
29
|
-
assert.isArray(r);
|
|
30
|
-
done();
|
|
31
|
-
});
|
|
32
|
-
});
|
|
33
|
-
});
|
|
34
|
-
|
|
35
|
-
describe('[CaseAssets::detach] function test', () => {
|
|
36
|
-
it('should resolve a fee object', (done) => {
|
|
37
|
-
cw6.case.financial.addFee(16085, 183, {}).then(r => {
|
|
38
|
-
assert.isNumber(r.CaFeeId);
|
|
39
|
-
done();
|
|
40
|
-
});
|
|
41
|
-
});
|
|
42
|
-
});
|
|
43
|
-
|
|
44
|
-
describe('[CaseAssets::detachAll] function test', () => {
|
|
45
|
-
it('should resolve a fee object', (done) => {
|
|
46
|
-
cw6.case.financial.addFee(16085, 183, {AutoRecalculate: 'Y', Amount: 9}).then(r => {
|
|
47
|
-
assert.isNumber(r.CaFeeId);
|
|
48
|
-
done();
|
|
49
|
-
});
|
|
50
|
-
});
|
|
51
|
-
});
|
|
52
|
-
|
|
53
|
-
describe('[CaseAssets::getForCase] function test', () => {
|
|
54
|
-
it('should resolve a ', (done) => {
|
|
55
|
-
cw6.case.assets.getForCase(42337).then(r => {
|
|
56
|
-
assert.isArray(r);
|
|
57
|
-
done();
|
|
58
|
-
}).catch(e => {
|
|
59
|
-
console.log(e, e)
|
|
60
|
-
})
|
|
61
|
-
});
|
|
62
|
-
});
|
|
63
|
-
|
|
64
|
-
describe('[CaseAssets::search] function test', () => {
|
|
65
|
-
it('should resolve a fee object with the updated amount', (done) => {
|
|
66
|
-
var newAmount = ((Math.random()*100)*8).toFixed(2);
|
|
67
|
-
cw6.case.assets.search(18480, {}).then(r => { // TODO: ?
|
|
68
|
-
// assert.equal(r.Amount, newAmount);
|
|
69
|
-
done();
|
|
70
|
-
});
|
|
71
|
-
});
|
|
72
|
-
});
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
require('dotenv').config();
|
|
3
|
-
var chai = require('chai');
|
|
4
|
-
var expect = require('chai').expect;
|
|
5
|
-
var assert = require('chai').assert;
|
|
6
|
-
var chaiAsPromised = require("chai-as-promised");
|
|
7
|
-
chai.use(chaiAsPromised);
|
|
8
|
-
var Cityworks = require('../dist/index.js');
|
|
9
|
-
var cw9 = new Cityworks(process.env.domain, {path: process.env.path});
|
|
10
|
-
|
|
11
|
-
before(function(done) {
|
|
12
|
-
this.timeout(20000000);
|
|
13
|
-
cw9.authenticate(process.env.login, process.env.password).then(resp => {
|
|
14
|
-
done();
|
|
15
|
-
}).catch(e => {
|
|
16
|
-
console.log(e, 'unexpected error')
|
|
17
|
-
done();
|
|
18
|
-
});
|
|
19
|
-
});
|
|
20
|
-
|
|
21
|
-
describe('[Inspection::create] function test', () => {
|
|
22
|
-
it('should resolve (empty) results even when the string is not found', (done) => {
|
|
23
|
-
cw9.inspection.create('SomethingSidewalk').then(r => {
|
|
24
|
-
assert.property(r, 'Permits');
|
|
25
|
-
done();
|
|
26
|
-
});
|
|
27
|
-
});
|
|
28
|
-
});
|
package/tsconfig.json
DELETED
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
/* Basic Options */
|
|
4
|
-
"target": "es5",
|
|
5
|
-
/* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */
|
|
6
|
-
"module": "commonjs",
|
|
7
|
-
/* Specify module code generation: 'none', commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
|
|
8
|
-
// "lib": [], /* Specify library files to be included in the compilation: */
|
|
9
|
-
// "allowJs": true, /* Allow javascript files to be compiled. */
|
|
10
|
-
// "checkJs": true, /* Report errors in .js files. */
|
|
11
|
-
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
|
|
12
|
-
"declaration": true,
|
|
13
|
-
/* Generates corresponding '.d.ts' file. */
|
|
14
|
-
// "sourceMap": true, /* Generates corresponding '.map' file. */
|
|
15
|
-
// "outFile": "./", /* Concatenate and emit output to single file. */
|
|
16
|
-
"outDir": "./dist",
|
|
17
|
-
/* Redirect output structure to the directory. */
|
|
18
|
-
// "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
|
|
19
|
-
// "removeComments": true, /* Do not emit comments to output. */
|
|
20
|
-
// "noEmit": true, /* Do not emit outputs. */
|
|
21
|
-
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
|
|
22
|
-
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
|
|
23
|
-
// "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
|
|
24
|
-
|
|
25
|
-
/* Strict Type-Checking Options */
|
|
26
|
-
"strict": true,
|
|
27
|
-
"noImplicitAny": false, /* Raise error on expressions and declarations with an implied 'any' type. */
|
|
28
|
-
"useUnknownInCatchVariables": false,
|
|
29
|
-
/* Enable all strict type-checking options. */
|
|
30
|
-
// "strictNullChecks": true, /* Enable strict null checks. */
|
|
31
|
-
// "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
|
|
32
|
-
// "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
|
|
33
|
-
|
|
34
|
-
/* Additional Checks */
|
|
35
|
-
// "noUnusedLocals": true, /* Report errors on unused locals. */
|
|
36
|
-
// "noUnusedParameters": true, /* Report errors on unused parameters. */
|
|
37
|
-
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
|
|
38
|
-
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
|
|
39
|
-
|
|
40
|
-
/* Module Resolution Options */
|
|
41
|
-
"moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
|
|
42
|
-
// "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
|
|
43
|
-
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
|
|
44
|
-
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
|
|
45
|
-
// "typeRoots": [], /* List of folders to include type definitions from. */
|
|
46
|
-
// "types": [], /* Type declaration files to be included in compilation. */
|
|
47
|
-
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
|
|
48
|
-
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
|
|
49
|
-
|
|
50
|
-
/* Source Map Options */
|
|
51
|
-
// "sourceRoot": "./", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
|
|
52
|
-
// "mapRoot": "./", /* Specify the location where debugger should locate map files instead of generated locations. */
|
|
53
|
-
// "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
|
|
54
|
-
// "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
|
|
55
|
-
|
|
56
|
-
/* Experimental Options */
|
|
57
|
-
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
|
|
58
|
-
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
|
|
59
|
-
},
|
|
60
|
-
"typedocOptions": {
|
|
61
|
-
"excludeExternals": true,
|
|
62
|
-
"externalPattern": "**/node_modules/**",
|
|
63
|
-
"hideGenerator": true,
|
|
64
|
-
"entryPoints": ["src"],
|
|
65
|
-
"entryPointStrategy": "expand",
|
|
66
|
-
"out": "docs"
|
|
67
|
-
}
|
|
68
|
-
}
|