@valentine-efagene/qshelter-common 2.0.10 → 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.
@@ -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'