@dbos-inc/create 1.5.6-preview → 1.5.8-preview
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/package.json
CHANGED
|
@@ -45,6 +45,7 @@ Congratulations! You just launched a DBOS application.
|
|
|
45
45
|
|
|
46
46
|
## Next Steps
|
|
47
47
|
|
|
48
|
-
- To add more functionality to this application, modify `src/operations.ts`, then
|
|
48
|
+
- To add more functionality to this application, modify `src/operations.ts`, then rebuild and restart it. Alternatively, `npm run dev` uses `nodemon` to automatically rebuild and restart the app when source files change, using instructions specified in `nodemon.json`.
|
|
49
|
+
- For a detailed tutorial, check out our [programming quickstart](https://docs.dbos.dev/getting-started/quickstart-programming).
|
|
49
50
|
- To learn how to deploy your application to DBOS Cloud, visit our [cloud quickstart](https://docs.dbos.dev/getting-started/quickstart-cloud/)
|
|
50
|
-
- To learn more about DBOS, take a look at [our documentation](https://docs.dbos.dev/) or our [source code](https://github.com/dbos-inc/dbos-
|
|
51
|
+
- To learn more about DBOS, take a look at [our documentation](https://docs.dbos.dev/) or our [source code](https://github.com/dbos-inc/dbos-transact).
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"@types/supertest": "^2.0.14",
|
|
18
18
|
"eslint": "^8.56.0",
|
|
19
19
|
"jest": "^29.7.0",
|
|
20
|
+
"nodemon": "^3.1.0",
|
|
20
21
|
"supertest": "^6.3.3",
|
|
21
22
|
"ts-jest": "^29.1.1",
|
|
22
23
|
"typescript": "^5.2.2"
|
|
@@ -1693,6 +1694,12 @@
|
|
|
1693
1694
|
"integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==",
|
|
1694
1695
|
"dev": true
|
|
1695
1696
|
},
|
|
1697
|
+
"node_modules/abbrev": {
|
|
1698
|
+
"version": "1.1.1",
|
|
1699
|
+
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
|
|
1700
|
+
"integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
|
|
1701
|
+
"dev": true
|
|
1702
|
+
},
|
|
1696
1703
|
"node_modules/acorn": {
|
|
1697
1704
|
"version": "8.11.3",
|
|
1698
1705
|
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz",
|
|
@@ -1943,6 +1950,18 @@
|
|
|
1943
1950
|
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
1944
1951
|
"dev": true
|
|
1945
1952
|
},
|
|
1953
|
+
"node_modules/binary-extensions": {
|
|
1954
|
+
"version": "2.3.0",
|
|
1955
|
+
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
|
|
1956
|
+
"integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
|
|
1957
|
+
"dev": true,
|
|
1958
|
+
"engines": {
|
|
1959
|
+
"node": ">=8"
|
|
1960
|
+
},
|
|
1961
|
+
"funding": {
|
|
1962
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1963
|
+
}
|
|
1964
|
+
},
|
|
1946
1965
|
"node_modules/brace-expansion": {
|
|
1947
1966
|
"version": "2.0.1",
|
|
1948
1967
|
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
|
|
@@ -2105,6 +2124,42 @@
|
|
|
2105
2124
|
"node": ">=10"
|
|
2106
2125
|
}
|
|
2107
2126
|
},
|
|
2127
|
+
"node_modules/chokidar": {
|
|
2128
|
+
"version": "3.6.0",
|
|
2129
|
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
|
|
2130
|
+
"integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
|
|
2131
|
+
"dev": true,
|
|
2132
|
+
"dependencies": {
|
|
2133
|
+
"anymatch": "~3.1.2",
|
|
2134
|
+
"braces": "~3.0.2",
|
|
2135
|
+
"glob-parent": "~5.1.2",
|
|
2136
|
+
"is-binary-path": "~2.1.0",
|
|
2137
|
+
"is-glob": "~4.0.1",
|
|
2138
|
+
"normalize-path": "~3.0.0",
|
|
2139
|
+
"readdirp": "~3.6.0"
|
|
2140
|
+
},
|
|
2141
|
+
"engines": {
|
|
2142
|
+
"node": ">= 8.10.0"
|
|
2143
|
+
},
|
|
2144
|
+
"funding": {
|
|
2145
|
+
"url": "https://paulmillr.com/funding/"
|
|
2146
|
+
},
|
|
2147
|
+
"optionalDependencies": {
|
|
2148
|
+
"fsevents": "~2.3.2"
|
|
2149
|
+
}
|
|
2150
|
+
},
|
|
2151
|
+
"node_modules/chokidar/node_modules/glob-parent": {
|
|
2152
|
+
"version": "5.1.2",
|
|
2153
|
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
|
2154
|
+
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
|
2155
|
+
"dev": true,
|
|
2156
|
+
"dependencies": {
|
|
2157
|
+
"is-glob": "^4.0.1"
|
|
2158
|
+
},
|
|
2159
|
+
"engines": {
|
|
2160
|
+
"node": ">= 6"
|
|
2161
|
+
}
|
|
2162
|
+
},
|
|
2108
2163
|
"node_modules/ci-info": {
|
|
2109
2164
|
"version": "3.9.0",
|
|
2110
2165
|
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
|
|
@@ -3164,6 +3219,12 @@
|
|
|
3164
3219
|
"node": ">= 4"
|
|
3165
3220
|
}
|
|
3166
3221
|
},
|
|
3222
|
+
"node_modules/ignore-by-default": {
|
|
3223
|
+
"version": "1.0.1",
|
|
3224
|
+
"resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz",
|
|
3225
|
+
"integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==",
|
|
3226
|
+
"dev": true
|
|
3227
|
+
},
|
|
3167
3228
|
"node_modules/import-fresh": {
|
|
3168
3229
|
"version": "3.3.0",
|
|
3169
3230
|
"resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
|
|
@@ -3238,6 +3299,18 @@
|
|
|
3238
3299
|
"integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
|
|
3239
3300
|
"dev": true
|
|
3240
3301
|
},
|
|
3302
|
+
"node_modules/is-binary-path": {
|
|
3303
|
+
"version": "2.1.0",
|
|
3304
|
+
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
|
|
3305
|
+
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
|
|
3306
|
+
"dev": true,
|
|
3307
|
+
"dependencies": {
|
|
3308
|
+
"binary-extensions": "^2.0.0"
|
|
3309
|
+
},
|
|
3310
|
+
"engines": {
|
|
3311
|
+
"node": ">=8"
|
|
3312
|
+
}
|
|
3313
|
+
},
|
|
3241
3314
|
"node_modules/is-core-module": {
|
|
3242
3315
|
"version": "2.13.1",
|
|
3243
3316
|
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz",
|
|
@@ -4303,6 +4376,92 @@
|
|
|
4303
4376
|
"integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==",
|
|
4304
4377
|
"dev": true
|
|
4305
4378
|
},
|
|
4379
|
+
"node_modules/nodemon": {
|
|
4380
|
+
"version": "3.1.0",
|
|
4381
|
+
"resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.0.tgz",
|
|
4382
|
+
"integrity": "sha512-xqlktYlDMCepBJd43ZQhjWwMw2obW/JRvkrLxq5RCNcuDDX1DbcPT+qT1IlIIdf+DhnWs90JpTMe+Y5KxOchvA==",
|
|
4383
|
+
"dev": true,
|
|
4384
|
+
"dependencies": {
|
|
4385
|
+
"chokidar": "^3.5.2",
|
|
4386
|
+
"debug": "^4",
|
|
4387
|
+
"ignore-by-default": "^1.0.1",
|
|
4388
|
+
"minimatch": "^3.1.2",
|
|
4389
|
+
"pstree.remy": "^1.1.8",
|
|
4390
|
+
"semver": "^7.5.3",
|
|
4391
|
+
"simple-update-notifier": "^2.0.0",
|
|
4392
|
+
"supports-color": "^5.5.0",
|
|
4393
|
+
"touch": "^3.1.0",
|
|
4394
|
+
"undefsafe": "^2.0.5"
|
|
4395
|
+
},
|
|
4396
|
+
"bin": {
|
|
4397
|
+
"nodemon": "bin/nodemon.js"
|
|
4398
|
+
},
|
|
4399
|
+
"engines": {
|
|
4400
|
+
"node": ">=10"
|
|
4401
|
+
},
|
|
4402
|
+
"funding": {
|
|
4403
|
+
"type": "opencollective",
|
|
4404
|
+
"url": "https://opencollective.com/nodemon"
|
|
4405
|
+
}
|
|
4406
|
+
},
|
|
4407
|
+
"node_modules/nodemon/node_modules/brace-expansion": {
|
|
4408
|
+
"version": "1.1.11",
|
|
4409
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
|
|
4410
|
+
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
|
|
4411
|
+
"dev": true,
|
|
4412
|
+
"dependencies": {
|
|
4413
|
+
"balanced-match": "^1.0.0",
|
|
4414
|
+
"concat-map": "0.0.1"
|
|
4415
|
+
}
|
|
4416
|
+
},
|
|
4417
|
+
"node_modules/nodemon/node_modules/has-flag": {
|
|
4418
|
+
"version": "3.0.0",
|
|
4419
|
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
|
|
4420
|
+
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
|
|
4421
|
+
"dev": true,
|
|
4422
|
+
"engines": {
|
|
4423
|
+
"node": ">=4"
|
|
4424
|
+
}
|
|
4425
|
+
},
|
|
4426
|
+
"node_modules/nodemon/node_modules/minimatch": {
|
|
4427
|
+
"version": "3.1.2",
|
|
4428
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
|
|
4429
|
+
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
|
|
4430
|
+
"dev": true,
|
|
4431
|
+
"dependencies": {
|
|
4432
|
+
"brace-expansion": "^1.1.7"
|
|
4433
|
+
},
|
|
4434
|
+
"engines": {
|
|
4435
|
+
"node": "*"
|
|
4436
|
+
}
|
|
4437
|
+
},
|
|
4438
|
+
"node_modules/nodemon/node_modules/supports-color": {
|
|
4439
|
+
"version": "5.5.0",
|
|
4440
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
|
|
4441
|
+
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
|
|
4442
|
+
"dev": true,
|
|
4443
|
+
"dependencies": {
|
|
4444
|
+
"has-flag": "^3.0.0"
|
|
4445
|
+
},
|
|
4446
|
+
"engines": {
|
|
4447
|
+
"node": ">=4"
|
|
4448
|
+
}
|
|
4449
|
+
},
|
|
4450
|
+
"node_modules/nopt": {
|
|
4451
|
+
"version": "1.0.10",
|
|
4452
|
+
"resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz",
|
|
4453
|
+
"integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==",
|
|
4454
|
+
"dev": true,
|
|
4455
|
+
"dependencies": {
|
|
4456
|
+
"abbrev": "1"
|
|
4457
|
+
},
|
|
4458
|
+
"bin": {
|
|
4459
|
+
"nopt": "bin/nopt.js"
|
|
4460
|
+
},
|
|
4461
|
+
"engines": {
|
|
4462
|
+
"node": "*"
|
|
4463
|
+
}
|
|
4464
|
+
},
|
|
4306
4465
|
"node_modules/normalize-path": {
|
|
4307
4466
|
"version": "3.0.0",
|
|
4308
4467
|
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
|
|
@@ -4628,6 +4787,12 @@
|
|
|
4628
4787
|
"node": ">= 6"
|
|
4629
4788
|
}
|
|
4630
4789
|
},
|
|
4790
|
+
"node_modules/pstree.remy": {
|
|
4791
|
+
"version": "1.1.8",
|
|
4792
|
+
"resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz",
|
|
4793
|
+
"integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==",
|
|
4794
|
+
"dev": true
|
|
4795
|
+
},
|
|
4631
4796
|
"node_modules/punycode": {
|
|
4632
4797
|
"version": "2.3.1",
|
|
4633
4798
|
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
|
|
@@ -4694,6 +4859,18 @@
|
|
|
4694
4859
|
"integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
|
|
4695
4860
|
"dev": true
|
|
4696
4861
|
},
|
|
4862
|
+
"node_modules/readdirp": {
|
|
4863
|
+
"version": "3.6.0",
|
|
4864
|
+
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
|
|
4865
|
+
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
|
|
4866
|
+
"dev": true,
|
|
4867
|
+
"dependencies": {
|
|
4868
|
+
"picomatch": "^2.2.1"
|
|
4869
|
+
},
|
|
4870
|
+
"engines": {
|
|
4871
|
+
"node": ">=8.10.0"
|
|
4872
|
+
}
|
|
4873
|
+
},
|
|
4697
4874
|
"node_modules/rechoir": {
|
|
4698
4875
|
"version": "0.8.0",
|
|
4699
4876
|
"resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz",
|
|
@@ -4930,6 +5107,18 @@
|
|
|
4930
5107
|
"integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
|
|
4931
5108
|
"dev": true
|
|
4932
5109
|
},
|
|
5110
|
+
"node_modules/simple-update-notifier": {
|
|
5111
|
+
"version": "2.0.0",
|
|
5112
|
+
"resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz",
|
|
5113
|
+
"integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==",
|
|
5114
|
+
"dev": true,
|
|
5115
|
+
"dependencies": {
|
|
5116
|
+
"semver": "^7.5.3"
|
|
5117
|
+
},
|
|
5118
|
+
"engines": {
|
|
5119
|
+
"node": ">=10"
|
|
5120
|
+
}
|
|
5121
|
+
},
|
|
4933
5122
|
"node_modules/sisteransi": {
|
|
4934
5123
|
"version": "1.0.5",
|
|
4935
5124
|
"resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
|
|
@@ -5202,6 +5391,18 @@
|
|
|
5202
5391
|
"node": ">=8.0"
|
|
5203
5392
|
}
|
|
5204
5393
|
},
|
|
5394
|
+
"node_modules/touch": {
|
|
5395
|
+
"version": "3.1.0",
|
|
5396
|
+
"resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz",
|
|
5397
|
+
"integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==",
|
|
5398
|
+
"dev": true,
|
|
5399
|
+
"dependencies": {
|
|
5400
|
+
"nopt": "~1.0.10"
|
|
5401
|
+
},
|
|
5402
|
+
"bin": {
|
|
5403
|
+
"nodetouch": "bin/nodetouch.js"
|
|
5404
|
+
}
|
|
5405
|
+
},
|
|
5205
5406
|
"node_modules/ts-api-utils": {
|
|
5206
5407
|
"version": "1.3.0",
|
|
5207
5408
|
"resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz",
|
|
@@ -5303,6 +5504,12 @@
|
|
|
5303
5504
|
"node": ">=14.17"
|
|
5304
5505
|
}
|
|
5305
5506
|
},
|
|
5507
|
+
"node_modules/undefsafe": {
|
|
5508
|
+
"version": "2.0.5",
|
|
5509
|
+
"resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz",
|
|
5510
|
+
"integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==",
|
|
5511
|
+
"dev": true
|
|
5512
|
+
},
|
|
5306
5513
|
"node_modules/undici-types": {
|
|
5307
5514
|
"version": "5.26.5",
|
|
5308
5515
|
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
|
|
@@ -5,7 +5,9 @@
|
|
|
5
5
|
"build": "tsc",
|
|
6
6
|
"test": "npx knex migrate:rollback && npx knex migrate:up && jest",
|
|
7
7
|
"lint": "eslint src",
|
|
8
|
-
"lint-fix": "eslint --fix src"
|
|
8
|
+
"lint-fix": "eslint --fix src",
|
|
9
|
+
"dev": "nodemon",
|
|
10
|
+
"start": "npx dbos-sdk start"
|
|
9
11
|
},
|
|
10
12
|
"devDependencies": {
|
|
11
13
|
"@dbos-inc/eslint-plugin": "^0.0.6",
|
|
@@ -13,6 +15,7 @@
|
|
|
13
15
|
"@types/supertest": "^2.0.14",
|
|
14
16
|
"eslint": "^8.56.0",
|
|
15
17
|
"jest": "^29.7.0",
|
|
18
|
+
"nodemon": "^3.1.0",
|
|
16
19
|
"supertest": "^6.3.3",
|
|
17
20
|
"ts-jest": "^29.1.1",
|
|
18
21
|
"typescript": "^5.2.2"
|