📄️ changeSettings()
Use this when you want to configure the reading range of the spreadsheet.
📄️ Global omit
By specifying omit in the GassmaClient constructor, default field exclusion is applied to all queries for the specified sheets.
📄️ defaults (@default)
This is the equivalent of Prisma's @default(). It automatically sets default values for fields during create operations.
📄️ updatedAt (@updatedAt)
This is the equivalent of Prisma's @updatedAt. It automatically sets the current timestamp on specified columns when a record is created or updated.
📄️ ignore / ignoreSheets (@ignore / @@ignore)
This is the equivalent of Prisma's @ignore (field-level) and @@ignore (model-level).
📄️ map / mapSheets (@map / @@map)
This is the equivalent of Prisma's @map("name") (field-level) and @@map("name") (model-level). It maps names in your code to names in the spreadsheet.
📄️ autoincrement
This is the equivalent of Prisma's autoincrement(). It automatically assigns unique, monotonically increasing values during create operations.