telescope-prisma-client 0.0.114 → 0.0.115
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/generatedClient/index-browser.js +39 -59
- package/dist/generatedClient/index.d.ts +8572 -10571
- package/dist/generatedClient/index.js +35 -56
- package/dist/generatedClient/libquery_engine-darwin-arm64.dylib.node +0 -0
- package/dist/generatedClient/libquery_engine-darwin.dylib.node +0 -0
- package/dist/generatedClient/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/dist/generatedClient/libquery_engine-linux-musl-openssl-3.0.x.so.node +0 -0
- package/dist/generatedClient/libquery_engine-linux-musl.so.node +0 -0
- package/dist/generatedClient/libquery_engine-rhel-openssl-1.0.x.so.node +0 -0
- package/dist/generatedClient/runtime/index-browser.d.ts +4 -27
- package/dist/generatedClient/runtime/index-browser.js +2424 -13
- package/dist/generatedClient/runtime/library.d.ts +1 -3025
- package/dist/generatedClient/runtime/library.js +142 -73
- package/dist/generatedClient/schema.prisma +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/libquery_engine-darwin-arm64.dylib.node +0 -0
- package/dist/libquery_engine-darwin.dylib.node +0 -0
- package/dist/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/dist/libquery_engine-linux-musl-openssl-3.0.x.so.node +0 -0
- package/dist/libquery_engine-linux-musl.so.node +0 -0
- package/dist/libquery_engine-rhel-openssl-1.0.x.so.node +0 -0
- package/dist/schema.prisma +1 -0
- package/package.json +1 -1
- package/schema.prisma +1 -0
|
@@ -6,46 +6,44 @@ const {
|
|
|
6
6
|
objectEnumValues,
|
|
7
7
|
makeStrictEnum,
|
|
8
8
|
Public,
|
|
9
|
-
detectRuntime,
|
|
10
9
|
} = require('./runtime/index-browser')
|
|
11
10
|
|
|
12
11
|
|
|
13
12
|
const Prisma = {}
|
|
14
13
|
|
|
15
14
|
exports.Prisma = Prisma
|
|
16
|
-
exports.$Enums = {}
|
|
17
15
|
|
|
18
16
|
/**
|
|
19
|
-
* Prisma Client JS version:
|
|
20
|
-
* Query Engine version:
|
|
17
|
+
* Prisma Client JS version: 4.16.2
|
|
18
|
+
* Query Engine version: 4bc8b6e1b66cb932731fb1bdbbc550d1e010de81
|
|
21
19
|
*/
|
|
22
20
|
Prisma.prismaVersion = {
|
|
23
|
-
client: "
|
|
24
|
-
engine: "
|
|
21
|
+
client: "4.16.2",
|
|
22
|
+
engine: "4bc8b6e1b66cb932731fb1bdbbc550d1e010de81"
|
|
25
23
|
}
|
|
26
24
|
|
|
27
25
|
Prisma.PrismaClientKnownRequestError = () => {
|
|
28
|
-
throw new Error(`PrismaClientKnownRequestError is unable to be run
|
|
26
|
+
throw new Error(`PrismaClientKnownRequestError is unable to be run in the browser.
|
|
29
27
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
30
28
|
)};
|
|
31
29
|
Prisma.PrismaClientUnknownRequestError = () => {
|
|
32
|
-
throw new Error(`PrismaClientUnknownRequestError is unable to be run
|
|
30
|
+
throw new Error(`PrismaClientUnknownRequestError is unable to be run in the browser.
|
|
33
31
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
34
32
|
)}
|
|
35
33
|
Prisma.PrismaClientRustPanicError = () => {
|
|
36
|
-
throw new Error(`PrismaClientRustPanicError is unable to be run
|
|
34
|
+
throw new Error(`PrismaClientRustPanicError is unable to be run in the browser.
|
|
37
35
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
38
36
|
)}
|
|
39
37
|
Prisma.PrismaClientInitializationError = () => {
|
|
40
|
-
throw new Error(`PrismaClientInitializationError is unable to be run
|
|
38
|
+
throw new Error(`PrismaClientInitializationError is unable to be run in the browser.
|
|
41
39
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
42
40
|
)}
|
|
43
41
|
Prisma.PrismaClientValidationError = () => {
|
|
44
|
-
throw new Error(`PrismaClientValidationError is unable to be run
|
|
42
|
+
throw new Error(`PrismaClientValidationError is unable to be run in the browser.
|
|
45
43
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
46
44
|
)}
|
|
47
45
|
Prisma.NotFoundError = () => {
|
|
48
|
-
throw new Error(`NotFoundError is unable to be run
|
|
46
|
+
throw new Error(`NotFoundError is unable to be run in the browser.
|
|
49
47
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
50
48
|
)}
|
|
51
49
|
Prisma.Decimal = Decimal
|
|
@@ -54,19 +52,19 @@ Prisma.Decimal = Decimal
|
|
|
54
52
|
* Re-export of sql-template-tag
|
|
55
53
|
*/
|
|
56
54
|
Prisma.sql = () => {
|
|
57
|
-
throw new Error(`sqltag is unable to be run
|
|
55
|
+
throw new Error(`sqltag is unable to be run in the browser.
|
|
58
56
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
59
57
|
)}
|
|
60
58
|
Prisma.empty = () => {
|
|
61
|
-
throw new Error(`empty is unable to be run
|
|
59
|
+
throw new Error(`empty is unable to be run in the browser.
|
|
62
60
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
63
61
|
)}
|
|
64
62
|
Prisma.join = () => {
|
|
65
|
-
throw new Error(`join is unable to be run
|
|
63
|
+
throw new Error(`join is unable to be run in the browser.
|
|
66
64
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
67
65
|
)}
|
|
68
66
|
Prisma.raw = () => {
|
|
69
|
-
throw new Error(`raw is unable to be run
|
|
67
|
+
throw new Error(`raw is unable to be run in the browser.
|
|
70
68
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
71
69
|
)}
|
|
72
70
|
Prisma.validator = Public.validator
|
|
@@ -75,11 +73,11 @@ Prisma.validator = Public.validator
|
|
|
75
73
|
* Extensions
|
|
76
74
|
*/
|
|
77
75
|
Prisma.getExtensionContext = () => {
|
|
78
|
-
throw new Error(`Extensions.getExtensionContext is unable to be run
|
|
76
|
+
throw new Error(`Extensions.getExtensionContext is unable to be run in the browser.
|
|
79
77
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
80
78
|
)}
|
|
81
79
|
Prisma.defineExtension = () => {
|
|
82
|
-
throw new Error(`Extensions.defineExtension is unable to be run
|
|
80
|
+
throw new Error(`Extensions.defineExtension is unable to be run in the browser.
|
|
83
81
|
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
84
82
|
)}
|
|
85
83
|
|
|
@@ -493,6 +491,7 @@ exports.Prisma.EvaluatedCandidateScalarFieldEnum = {
|
|
|
493
491
|
icp_id: 'icp_id',
|
|
494
492
|
entity_type: 'entity_type',
|
|
495
493
|
company_id: 'company_id',
|
|
494
|
+
company_candidate_person_ids: 'company_candidate_person_ids',
|
|
496
495
|
person_id: 'person_id',
|
|
497
496
|
recommendation_reason: 'recommendation_reason',
|
|
498
497
|
company_matching_score: 'company_matching_score',
|
|
@@ -777,6 +776,7 @@ exports.Prisma.EvaluatedCandidateOrderByRelevanceFieldEnum = {
|
|
|
777
776
|
icp_id: 'icp_id',
|
|
778
777
|
entity_type: 'entity_type',
|
|
779
778
|
company_id: 'company_id',
|
|
779
|
+
company_candidate_person_ids: 'company_candidate_person_ids',
|
|
780
780
|
person_id: 'person_id',
|
|
781
781
|
recommendation_reason: 'recommendation_reason',
|
|
782
782
|
company_matching_result: 'company_matching_result',
|
|
@@ -784,41 +784,41 @@ exports.Prisma.EvaluatedCandidateOrderByRelevanceFieldEnum = {
|
|
|
784
784
|
campaign_id: 'campaign_id',
|
|
785
785
|
owner_id: 'owner_id'
|
|
786
786
|
};
|
|
787
|
-
exports.SubscriptionTierType =
|
|
787
|
+
exports.SubscriptionTierType = {
|
|
788
788
|
FREE: 'FREE',
|
|
789
789
|
BASIC: 'BASIC',
|
|
790
790
|
PRO: 'PRO',
|
|
791
791
|
UNLIMITED: 'UNLIMITED'
|
|
792
792
|
};
|
|
793
793
|
|
|
794
|
-
exports.SubscriptionBillingInterval =
|
|
794
|
+
exports.SubscriptionBillingInterval = {
|
|
795
795
|
MONTH: 'MONTH',
|
|
796
796
|
YEAR: 'YEAR'
|
|
797
797
|
};
|
|
798
798
|
|
|
799
|
-
exports.OutreachStatus =
|
|
799
|
+
exports.OutreachStatus = {
|
|
800
800
|
RUNNING: 'RUNNING',
|
|
801
801
|
PAUSED: 'PAUSED',
|
|
802
802
|
DISABLED: 'DISABLED'
|
|
803
803
|
};
|
|
804
804
|
|
|
805
|
-
exports.RecommendationMode =
|
|
805
|
+
exports.RecommendationMode = {
|
|
806
806
|
LEAD: 'LEAD',
|
|
807
807
|
COMPANY: 'COMPANY'
|
|
808
808
|
};
|
|
809
809
|
|
|
810
|
-
exports.MergeCrmExportStatus =
|
|
810
|
+
exports.MergeCrmExportStatus = {
|
|
811
811
|
SUCCESS: 'SUCCESS',
|
|
812
812
|
FAILED: 'FAILED'
|
|
813
813
|
};
|
|
814
814
|
|
|
815
|
-
exports.RecommendationType =
|
|
815
|
+
exports.RecommendationType = {
|
|
816
816
|
STANDARD: 'STANDARD',
|
|
817
817
|
DAILY: 'DAILY',
|
|
818
818
|
LIST: 'LIST'
|
|
819
819
|
};
|
|
820
820
|
|
|
821
|
-
exports.RecommendationStatus =
|
|
821
|
+
exports.RecommendationStatus = {
|
|
822
822
|
ACCEPTED: 'ACCEPTED',
|
|
823
823
|
REJECTED: 'REJECTED',
|
|
824
824
|
PENDING: 'PENDING',
|
|
@@ -827,7 +827,7 @@ exports.RecommendationStatus = exports.$Enums.RecommendationStatus = {
|
|
|
827
827
|
NOT_SEEN: 'NOT_SEEN'
|
|
828
828
|
};
|
|
829
829
|
|
|
830
|
-
exports.RecommendationRejectionReason =
|
|
830
|
+
exports.RecommendationRejectionReason = {
|
|
831
831
|
NOT_RELEVANT: 'NOT_RELEVANT',
|
|
832
832
|
WRONG_POSITION_RIGHT_COMPANY: 'WRONG_POSITION_RIGHT_COMPANY',
|
|
833
833
|
RIGHT_POSITION_WRONG_COMPANY: 'RIGHT_POSITION_WRONG_COMPANY',
|
|
@@ -837,35 +837,35 @@ exports.RecommendationRejectionReason = exports.$Enums.RecommendationRejectionRe
|
|
|
837
837
|
DISCARDED: 'DISCARDED'
|
|
838
838
|
};
|
|
839
839
|
|
|
840
|
-
exports.ConnectedMailboxStatus =
|
|
840
|
+
exports.ConnectedMailboxStatus = {
|
|
841
841
|
CONNECTED: 'CONNECTED',
|
|
842
842
|
DISCONNECTED: 'DISCONNECTED'
|
|
843
843
|
};
|
|
844
844
|
|
|
845
|
-
exports.ConnectedMailboxType =
|
|
845
|
+
exports.ConnectedMailboxType = {
|
|
846
846
|
GMAIL: 'GMAIL',
|
|
847
847
|
OUTLOOK: 'OUTLOOK'
|
|
848
848
|
};
|
|
849
849
|
|
|
850
|
-
exports.SequenceStepType =
|
|
850
|
+
exports.SequenceStepType = {
|
|
851
851
|
EMAIL: 'EMAIL',
|
|
852
852
|
LINKEDIN_CONNECTION: 'LINKEDIN_CONNECTION',
|
|
853
853
|
LINKEDIN_MESSAGE: 'LINKEDIN_MESSAGE'
|
|
854
854
|
};
|
|
855
855
|
|
|
856
|
-
exports.SequenceStepCondition =
|
|
856
|
+
exports.SequenceStepCondition = {
|
|
857
857
|
LINKEDIN_ACCEPTED_CONNECTION: 'LINKEDIN_ACCEPTED_CONNECTION',
|
|
858
858
|
LINKEDIN_CONNECTION_NOT_ACCEPTED: 'LINKEDIN_CONNECTION_NOT_ACCEPTED'
|
|
859
859
|
};
|
|
860
860
|
|
|
861
|
-
exports.ProspectSequenceStepStatus =
|
|
861
|
+
exports.ProspectSequenceStepStatus = {
|
|
862
862
|
PENDING: 'PENDING',
|
|
863
863
|
COMPLETED: 'COMPLETED',
|
|
864
864
|
ERROR: 'ERROR',
|
|
865
865
|
SCHEDULED: 'SCHEDULED'
|
|
866
866
|
};
|
|
867
867
|
|
|
868
|
-
exports.ProspectInteractionEventType =
|
|
868
|
+
exports.ProspectInteractionEventType = {
|
|
869
869
|
EMAIL_REPLY: 'EMAIL_REPLY',
|
|
870
870
|
EMAIL_BOUNCE_NOTIFICATION: 'EMAIL_BOUNCE_NOTIFICATION',
|
|
871
871
|
EMAIL_OOO_NOTIFICATION: 'EMAIL_OOO_NOTIFICATION',
|
|
@@ -875,13 +875,13 @@ exports.ProspectInteractionEventType = exports.$Enums.ProspectInteractionEventTy
|
|
|
875
875
|
LINKEDIN_REPLY: 'LINKEDIN_REPLY'
|
|
876
876
|
};
|
|
877
877
|
|
|
878
|
-
exports.ProspectInterestType =
|
|
878
|
+
exports.ProspectInterestType = {
|
|
879
879
|
POSITIVE: 'POSITIVE',
|
|
880
880
|
NEGATIVE: 'NEGATIVE',
|
|
881
881
|
UNKNOWN: 'UNKNOWN'
|
|
882
882
|
};
|
|
883
883
|
|
|
884
|
-
exports.VerificationStatus =
|
|
884
|
+
exports.VerificationStatus = {
|
|
885
885
|
VALID: 'VALID',
|
|
886
886
|
INVALID: 'INVALID',
|
|
887
887
|
UNKNOWN: 'UNKNOWN',
|
|
@@ -911,36 +911,16 @@ exports.Prisma.ModelName = {
|
|
|
911
911
|
};
|
|
912
912
|
|
|
913
913
|
/**
|
|
914
|
-
*
|
|
914
|
+
* Create the Client
|
|
915
915
|
*/
|
|
916
916
|
class PrismaClient {
|
|
917
917
|
constructor() {
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
'workerd': 'Cloudflare Workers',
|
|
923
|
-
'deno': 'Deno and Deno Deploy',
|
|
924
|
-
'netlify': 'Netlify Edge Functions',
|
|
925
|
-
'edge-light': 'Vercel Edge Functions',
|
|
926
|
-
}[runtime]
|
|
927
|
-
|
|
928
|
-
let message = 'PrismaClient is unable to run in '
|
|
929
|
-
if (edgeRuntimeName !== undefined) {
|
|
930
|
-
message += edgeRuntimeName + '. As an alternative, try Accelerate: https://pris.ly/d/accelerate.'
|
|
931
|
-
} else {
|
|
932
|
-
message += 'this browser environment, or has been bundled for the browser (running in `' + runtime + '`).'
|
|
933
|
-
}
|
|
934
|
-
|
|
935
|
-
message += `
|
|
936
|
-
If this is unexpected, please open an issue: https://github.com/prisma/prisma/issues`
|
|
937
|
-
|
|
938
|
-
throw new Error(message)
|
|
939
|
-
}
|
|
940
|
-
})
|
|
918
|
+
throw new Error(
|
|
919
|
+
`PrismaClient is unable to be run in the browser.
|
|
920
|
+
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`,
|
|
921
|
+
)
|
|
941
922
|
}
|
|
942
923
|
}
|
|
943
|
-
|
|
944
924
|
exports.PrismaClient = PrismaClient
|
|
945
925
|
|
|
946
926
|
Object.assign(exports, Prisma)
|