milkio 1.0.0-alpha.37 → 1.0.0-alpha.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/.co.toml +0 -0
- package/LICENSE +0 -0
- package/README.md +0 -0
- package/action/index.ts +0 -0
- package/command/index.ts +0 -0
- package/context/index.ts +0 -0
- package/events/index.ts +0 -0
- package/exception/index.ts +0 -0
- package/execute/execute-id-generator.ts +0 -0
- package/execute/index.ts +0 -0
- package/index.ts +0 -0
- package/listener/index.ts +0 -0
- package/logger/index.ts +0 -0
- package/meta/index.ts +0 -0
- package/package.json +1 -1
- package/stream/index.ts +0 -0
- package/tsconfig.json +0 -0
- package/types/index.ts +0 -0
- package/utils/create-id.ts +4 -2
- package/utils/send-cookbook-event.ts +0 -0
- package/world/index.ts +0 -0
package/.co.toml
CHANGED
|
File without changes
|
package/LICENSE
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
File without changes
|
package/action/index.ts
CHANGED
|
File without changes
|
package/command/index.ts
CHANGED
|
File without changes
|
package/context/index.ts
CHANGED
|
File without changes
|
package/events/index.ts
CHANGED
|
File without changes
|
package/exception/index.ts
CHANGED
|
File without changes
|
|
File without changes
|
package/execute/index.ts
CHANGED
|
File without changes
|
package/index.ts
CHANGED
|
File without changes
|
package/listener/index.ts
CHANGED
|
File without changes
|
package/logger/index.ts
CHANGED
|
File without changes
|
package/meta/index.ts
CHANGED
|
File without changes
|
package/package.json
CHANGED
package/stream/index.ts
CHANGED
|
File without changes
|
package/tsconfig.json
CHANGED
|
File without changes
|
package/types/index.ts
CHANGED
|
File without changes
|
package/utils/create-id.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { defineIdGenerator } from "milkid";
|
|
2
2
|
|
|
3
3
|
const idGenerator = defineIdGenerator({
|
|
4
|
-
length:
|
|
4
|
+
length: 32,
|
|
5
|
+
hyphen: false,
|
|
6
|
+
fingerprint: false,
|
|
5
7
|
timestamp: true,
|
|
6
|
-
|
|
8
|
+
sequential: false,
|
|
7
9
|
});
|
|
8
10
|
|
|
9
11
|
export const createId = idGenerator.createId;
|
|
File without changes
|
package/world/index.ts
CHANGED
|
File without changes
|