@s-hirano-ist/s-database 1.18.0 → 1.18.2

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.
@@ -471,7 +471,7 @@ declare type Deprecation = ReadonlyDeep_2<{
471
471
 
472
472
  declare type DeserializedResponse = Array<Record<string, unknown>>;
473
473
 
474
- export declare function deserializeJsonResponse(result: unknown): unknown;
474
+ export declare function deserializeJsonObject(result: unknown): unknown;
475
475
 
476
476
  export declare function deserializeRawResult(response: RawResponse): DeserializedResponse;
477
477
 
@@ -1936,7 +1936,7 @@ declare type OutputType = ReadonlyDeep_2<{
1936
1936
  declare type OutputTypeRef = TypeRef<'scalar' | 'outputObjectTypes' | 'enumTypes'>;
1937
1937
 
1938
1938
  declare type Pagination = {
1939
- cursor: Record<string, PrismaValue> | null;
1939
+ cursor: Record<string, unknown> | null;
1940
1940
  take: number | null;
1941
1941
  skip: number | null;
1942
1942
  };