You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/wallet/backend/src/rafiki/auth/generated/graphql.ts
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -12,8 +12,10 @@ export type Scalars = {
12
12
Boolean: {input: boolean;output: boolean;}
13
13
Int: {input: number;output: number;}
14
14
Float: {input: number;output: number;}
15
-
BigInt: {input: bigint;output: bigint;}
15
+
/** The `UInt8` scalar type represents unsigned 8-bit whole numeric values, ranging from 0 to 255. */
16
16
UInt8: {input: number;output: number;}
17
+
/** The `UInt64` scalar type represents unsigned 64-bit whole numeric values. It is capable of handling values that are larger than the JavaScript `Number` type limit (greater than 2^53). */
18
+
UInt64: {input: any;output: any;}
17
19
};
18
20
19
21
exporttypeAccess=Model&{
@@ -65,6 +67,8 @@ export type Grant = Model & {
65
67
id: Scalars['ID']['output'];
66
68
/** Current state of the grant. */
67
69
state: GrantState;
70
+
/** Unique identifier of the tenant associated with the grant. */
71
+
tenantId: Scalars['ID']['output'];
68
72
};
69
73
70
74
exporttypeGrantEdge={
@@ -161,7 +165,7 @@ export type PaymentAmount = {
161
165
/** Difference in orders of magnitude between the standard unit of an asset and a corresponding fractional unit. */
162
166
assetScale: Scalars['UInt8']['output'];
163
167
/** The value of the payment amount. */
164
-
value: Scalars['BigInt']['output'];
168
+
value: Scalars['UInt64']['output'];
165
169
};
166
170
167
171
exporttypeQuery={
@@ -185,6 +189,7 @@ export type QueryGrantsArgs = {
185
189
first?: InputMaybe<Scalars['Int']['input']>;
186
190
last?: InputMaybe<Scalars['Int']['input']>;
187
191
sortOrder?: InputMaybe<SortOrder>;
192
+
tenantId?: InputMaybe<Scalars['ID']['input']>;
188
193
};
189
194
190
195
exporttypeRevokeGrantInput={
@@ -214,14 +219,14 @@ export type GetGrantsQueryVariables = Exact<{
0 commit comments