@prisma/json-protocol 7.3.0-dev.9 → 7.3.0-integration-engines-7-3-0-12-parameterization-844f54891f0a80ec1820fc26cf513002357e4245.1

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/dist/index.d.mts CHANGED
@@ -73,6 +73,17 @@ export declare type JsonTaggedValue = {
73
73
  value: string;
74
74
  };
75
75
 
76
+ export declare type RawJsonQuery = {
77
+ action: 'executeRaw' | 'queryRaw';
78
+ query: {
79
+ arguments: {
80
+ query: string;
81
+ parameters: string;
82
+ };
83
+ selection: JsonSelectionSet;
84
+ };
85
+ };
86
+
76
87
  export declare type RawTaggedValue = {
77
88
  $type: 'Raw';
78
89
  value: unknown;
package/dist/index.d.ts CHANGED
@@ -73,6 +73,17 @@ export declare type JsonTaggedValue = {
73
73
  value: string;
74
74
  };
75
75
 
76
+ export declare type RawJsonQuery = {
77
+ action: 'executeRaw' | 'queryRaw';
78
+ query: {
79
+ arguments: {
80
+ query: string;
81
+ parameters: string;
82
+ };
83
+ selection: JsonSelectionSet;
84
+ };
85
+ };
86
+
76
87
  export declare type RawTaggedValue = {
77
88
  $type: 'Raw';
78
89
  value: unknown;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/json-protocol",
3
- "version": "7.3.0-dev.9",
3
+ "version": "7.3.0-integration-engines-7-3-0-12-parameterization-844f54891f0a80ec1820fc26cf513002357e4245.1",
4
4
  "description": "JSON protocol types for Prisma",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",