-
Using the documentation of both this repository (in the Operations with Expressions section) and [dynamodb-expression](https://awslabs.github.io/dynamodb-data-mapper-js/packages/dynamodb-expressions/)…
-
## 💡 Idea
Generating structures being tied to one another in a many-to-many or one-to-many relationship in fast-check is not trivial. While feasible it requires our users to come up with advanced a…
-
Thanks once more for the awesome work and supporting the project.
There is a new uuid v7 which combines the benefits of v4/v1, is sortable and can be used in distributed systems.
There are a lot…
aefji updated
2 months ago
-
Fix `Device.uuid` definition.
Currently:
``` js
uuid: {
type: 'string',
// primaryKey: true,
required: true
},
```
Needs to be:
``` js
uuid: {
uuidv4: true,
unique: true…
-
Here is my convertHeic function:
```
export async function convertHeic(heicFile: File) {
const heic2any = require("heic2any");
const convertedBlob = await heic2any({ blob: heicFile });
cons…
-
We currently use UUIDv4 for our primary keys, which has a number of nice properties for us, however it does have a[ number of downsides](https://www.cybertec-postgresql.com/en/unexpected-downsides-of-…
-
Current Initialization of Vuex plugin seems like not really compatible with Nuxt.
I was not able to implement it as the only file i can put plugin in Nuxt state is exporting `export const plugins` …
-
Hola, Fazt.
Ante todo darte la enhorabuena por los vídeos, guías y repositorios que compartes con todos nosotros, pues son muy didácticos y a mí, personalmente, me están sirviendo muchísimo de cara…
-
I'm trying to do:
```
let newEvent: Event = {
id: (uuidv4() as unknown) as Guid,
streamId: msg.streamId,
data: msg.data,
// response: undefined,
// responseCod…
-
i have a dto
`import { IsUUID } from 'class-validator';
export class idDto {
@IsUUID()
id: string;
}`
a controller ` @Get(USER_REQUEST_MAPPING.GET_USER_BY_ID)
getUserById(@Param('id', …