@a_team/prisma 3.2.9-macos → 3.2.10-linux
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/client/edge.js +6 -9
- package/dist/client/index-browser.js +2 -1
- package/dist/client/index.d.ts +151 -2
- package/dist/client/index.js +8 -15
- package/dist/client/{libquery_engine-darwin-arm64.dylib.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +9 -0
- package/dist/client/wasm.js +2 -1
- package/package.json +4 -2
- package/dist/client/libquery_engine-darwin.dylib.node +0 -0
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -150,12 +150,21 @@ type ContractParty {
|
|
|
150
150
|
enum ContractPartyType {
|
|
151
151
|
BillingCustomer
|
|
152
152
|
MissionRole
|
|
153
|
+
ATeam
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
type PandadocRecipient {
|
|
157
|
+
id String
|
|
158
|
+
email String
|
|
159
|
+
role String?
|
|
153
160
|
}
|
|
154
161
|
|
|
155
162
|
type PandadocMetadata {
|
|
156
163
|
id String
|
|
157
164
|
hubspotDealId String?
|
|
158
165
|
hubspotCompanyId String?
|
|
166
|
+
recipients PandadocRecipient[]
|
|
167
|
+
isDocumentSent Boolean @default(false)
|
|
159
168
|
}
|
|
160
169
|
|
|
161
170
|
enum ContractSource {
|
package/dist/client/wasm.js
CHANGED
|
@@ -359,7 +359,8 @@ exports.PresetID = exports.$Enums.PresetID = {
|
|
|
359
359
|
|
|
360
360
|
exports.ContractPartyType = exports.$Enums.ContractPartyType = {
|
|
361
361
|
BillingCustomer: 'BillingCustomer',
|
|
362
|
-
MissionRole: 'MissionRole'
|
|
362
|
+
MissionRole: 'MissionRole',
|
|
363
|
+
ATeam: 'ATeam'
|
|
363
364
|
};
|
|
364
365
|
|
|
365
366
|
exports.MissionRoleStatus = exports.$Enums.MissionRoleStatus = {
|
package/package.json
CHANGED
|
Binary file
|