telescope-prisma-client 0.0.52 → 0.0.53
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 +14 -2
- package/dist/generatedClient/index.d.ts +552 -113
- package/dist/generatedClient/index.js +19 -10
- package/dist/generatedClient/schema.prisma +12 -2
- package/dist/schema.prisma +12 -2
- package/package.json +1 -1
- package/schema.prisma +12 -2
|
@@ -122,7 +122,12 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
122
122
|
browser_extension_linkedin_url: 'browser_extension_linkedin_url',
|
|
123
123
|
registered_at: 'registered_at',
|
|
124
124
|
updated_at: 'updated_at',
|
|
125
|
-
deleted_at: 'deleted_at'
|
|
125
|
+
deleted_at: 'deleted_at',
|
|
126
|
+
credits: 'credits',
|
|
127
|
+
stripe_customer_id: 'stripe_customer_id',
|
|
128
|
+
stripe_subscription_id: 'stripe_subscription_id',
|
|
129
|
+
subscription_expiration: 'subscription_expiration',
|
|
130
|
+
subscription_tier: 'subscription_tier'
|
|
126
131
|
};
|
|
127
132
|
|
|
128
133
|
exports.Prisma.MergeConnectionScalarFieldEnum = {
|
|
@@ -413,7 +418,9 @@ exports.Prisma.UserOrderByRelevanceFieldEnum = {
|
|
|
413
418
|
first_name: 'first_name',
|
|
414
419
|
last_name: 'last_name',
|
|
415
420
|
email: 'email',
|
|
416
|
-
browser_extension_linkedin_url: 'browser_extension_linkedin_url'
|
|
421
|
+
browser_extension_linkedin_url: 'browser_extension_linkedin_url',
|
|
422
|
+
stripe_customer_id: 'stripe_customer_id',
|
|
423
|
+
stripe_subscription_id: 'stripe_subscription_id'
|
|
417
424
|
};
|
|
418
425
|
|
|
419
426
|
exports.Prisma.MergeConnectionOrderByRelevanceFieldEnum = {
|
|
@@ -592,6 +599,11 @@ exports.Prisma.ProspectInteractionEventOrderByRelevanceFieldEnum = {
|
|
|
592
599
|
prospect_interest_reason: 'prospect_interest_reason',
|
|
593
600
|
owner_id: 'owner_id'
|
|
594
601
|
};
|
|
602
|
+
exports.SubscriptionTierType = {
|
|
603
|
+
FREE: 'FREE',
|
|
604
|
+
PRO: 'PRO'
|
|
605
|
+
};
|
|
606
|
+
|
|
595
607
|
exports.OutreachStatus = {
|
|
596
608
|
RUNNING: 'RUNNING',
|
|
597
609
|
PAUSED: 'PAUSED',
|