@valentine-efagene/qshelter-common 2.0.11 → 2.0.12
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/generated/client/browser.d.ts +5 -0
- package/dist/generated/client/client.d.ts +5 -0
- package/dist/generated/client/internal/class.d.ts +11 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +81 -1
- package/dist/generated/client/internal/prismaNamespace.js +11 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +13 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +11 -0
- package/dist/generated/client/models/OAuthState.d.ts +864 -0
- package/dist/generated/client/models/OAuthState.js +1 -0
- package/dist/generated/client/models.d.ts +1 -0
- package/package.json +1 -1
- package/prisma/schema.prisma +11 -0
|
@@ -51,6 +51,7 @@ export const ModelName = {
|
|
|
51
51
|
EmailPreference: 'EmailPreference',
|
|
52
52
|
DeviceEndpoint: 'DeviceEndpoint',
|
|
53
53
|
Social: 'Social',
|
|
54
|
+
OAuthState: 'OAuthState',
|
|
54
55
|
Wallet: 'Wallet',
|
|
55
56
|
Transaction: 'Transaction',
|
|
56
57
|
Settings: 'Settings',
|
|
@@ -187,6 +188,12 @@ export const SocialScalarFieldEnum = {
|
|
|
187
188
|
createdAt: 'createdAt',
|
|
188
189
|
updatedAt: 'updatedAt'
|
|
189
190
|
};
|
|
191
|
+
export const OAuthStateScalarFieldEnum = {
|
|
192
|
+
id: 'id',
|
|
193
|
+
state: 'state',
|
|
194
|
+
expiresAt: 'expiresAt',
|
|
195
|
+
createdAt: 'createdAt'
|
|
196
|
+
};
|
|
190
197
|
export const WalletScalarFieldEnum = {
|
|
191
198
|
id: 'id',
|
|
192
199
|
balance: 'balance',
|
|
@@ -528,6 +535,10 @@ export const SocialOrderByRelevanceFieldEnum = {
|
|
|
528
535
|
provider: 'provider',
|
|
529
536
|
socialId: 'socialId'
|
|
530
537
|
};
|
|
538
|
+
export const OAuthStateOrderByRelevanceFieldEnum = {
|
|
539
|
+
id: 'id',
|
|
540
|
+
state: 'state'
|
|
541
|
+
};
|
|
531
542
|
export const WalletOrderByRelevanceFieldEnum = {
|
|
532
543
|
id: 'id',
|
|
533
544
|
currency: 'currency'
|