@valentine-efagene/qshelter-common 2.0.11 → 2.0.14

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.
@@ -38,6 +38,7 @@ export declare const ModelName: {
38
38
  readonly EmailPreference: "EmailPreference";
39
39
  readonly DeviceEndpoint: "DeviceEndpoint";
40
40
  readonly Social: "Social";
41
+ readonly OAuthState: "OAuthState";
41
42
  readonly Wallet: "Wallet";
42
43
  readonly Transaction: "Transaction";
43
44
  readonly Settings: "Settings";
@@ -131,6 +132,7 @@ export declare const TenantScalarFieldEnum: {
131
132
  export type TenantScalarFieldEnum = (typeof TenantScalarFieldEnum)[keyof typeof TenantScalarFieldEnum];
132
133
  export declare const RefreshTokenScalarFieldEnum: {
133
134
  readonly id: "id";
135
+ readonly tokenHash: "tokenHash";
134
136
  readonly token: "token";
135
137
  readonly userId: "userId";
136
138
  readonly expiresAt: "expiresAt";
@@ -185,6 +187,13 @@ export declare const SocialScalarFieldEnum: {
185
187
  readonly updatedAt: "updatedAt";
186
188
  };
187
189
  export type SocialScalarFieldEnum = (typeof SocialScalarFieldEnum)[keyof typeof SocialScalarFieldEnum];
190
+ export declare const OAuthStateScalarFieldEnum: {
191
+ readonly id: "id";
192
+ readonly state: "state";
193
+ readonly expiresAt: "expiresAt";
194
+ readonly createdAt: "createdAt";
195
+ };
196
+ export type OAuthStateScalarFieldEnum = (typeof OAuthStateScalarFieldEnum)[keyof typeof OAuthStateScalarFieldEnum];
188
197
  export declare const WalletScalarFieldEnum: {
189
198
  readonly id: "id";
190
199
  readonly balance: "balance";
@@ -528,6 +537,7 @@ export declare const TenantOrderByRelevanceFieldEnum: {
528
537
  export type TenantOrderByRelevanceFieldEnum = (typeof TenantOrderByRelevanceFieldEnum)[keyof typeof TenantOrderByRelevanceFieldEnum];
529
538
  export declare const RefreshTokenOrderByRelevanceFieldEnum: {
530
539
  readonly id: "id";
540
+ readonly tokenHash: "tokenHash";
531
541
  readonly token: "token";
532
542
  readonly userId: "userId";
533
543
  };
@@ -563,6 +573,11 @@ export declare const SocialOrderByRelevanceFieldEnum: {
563
573
  readonly socialId: "socialId";
564
574
  };
565
575
  export type SocialOrderByRelevanceFieldEnum = (typeof SocialOrderByRelevanceFieldEnum)[keyof typeof SocialOrderByRelevanceFieldEnum];
576
+ export declare const OAuthStateOrderByRelevanceFieldEnum: {
577
+ readonly id: "id";
578
+ readonly state: "state";
579
+ };
580
+ export type OAuthStateOrderByRelevanceFieldEnum = (typeof OAuthStateOrderByRelevanceFieldEnum)[keyof typeof OAuthStateOrderByRelevanceFieldEnum];
566
581
  export declare const WalletOrderByRelevanceFieldEnum: {
567
582
  readonly id: "id";
568
583
  readonly currency: "currency";
@@ -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',
@@ -139,6 +140,7 @@ export const TenantScalarFieldEnum = {
139
140
  };
140
141
  export const RefreshTokenScalarFieldEnum = {
141
142
  id: 'id',
143
+ tokenHash: 'tokenHash',
142
144
  token: 'token',
143
145
  userId: 'userId',
144
146
  expiresAt: 'expiresAt',
@@ -187,6 +189,12 @@ export const SocialScalarFieldEnum = {
187
189
  createdAt: 'createdAt',
188
190
  updatedAt: 'updatedAt'
189
191
  };
192
+ export const OAuthStateScalarFieldEnum = {
193
+ id: 'id',
194
+ state: 'state',
195
+ expiresAt: 'expiresAt',
196
+ createdAt: 'createdAt'
197
+ };
190
198
  export const WalletScalarFieldEnum = {
191
199
  id: 'id',
192
200
  balance: 'balance',
@@ -499,6 +507,7 @@ export const TenantOrderByRelevanceFieldEnum = {
499
507
  };
500
508
  export const RefreshTokenOrderByRelevanceFieldEnum = {
501
509
  id: 'id',
510
+ tokenHash: 'tokenHash',
502
511
  token: 'token',
503
512
  userId: 'userId'
504
513
  };
@@ -528,6 +537,10 @@ export const SocialOrderByRelevanceFieldEnum = {
528
537
  provider: 'provider',
529
538
  socialId: 'socialId'
530
539
  };
540
+ export const OAuthStateOrderByRelevanceFieldEnum = {
541
+ id: 'id',
542
+ state: 'state'
543
+ };
531
544
  export const WalletOrderByRelevanceFieldEnum = {
532
545
  id: 'id',
533
546
  currency: 'currency'