@requestnetwork/payment-detection 0.45.1-next.2067 → 0.45.1-next.2069

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.
@@ -242,6 +242,16 @@ export type AccountTokenSnapshot = {
242
242
  *
243
243
  */
244
244
  activeOutgoingStreamCount: Scalars['Int']['output'];
245
+ /**
246
+ * Counts how many pools the account is a pool admin of. The pool admin can be set arbitrarily when creating a GDA pool. The pool admin might receive an "adjustment flow" if the pool has a flow distribution.
247
+ *
248
+ */
249
+ adminOfPoolCount: Scalars['Int']['output'];
250
+ /**
251
+ * The last block the balance was queried from an RPC (the most accurate source for balance data).
252
+ *
253
+ */
254
+ balanceLastUpdatedFromRpcBlocknumber?: Maybe<Scalars['BigInt']['output']>;
245
255
  /**
246
256
  * Balance of `account` as of `updatedAtTimestamp`/`updatedAtBlock`.
247
257
  *
@@ -349,7 +359,7 @@ export type AccountTokenSnapshot = {
349
359
  */
350
360
  totalCFAOutflowRate: Scalars['BigInt']['output'];
351
361
  /**
352
- * Counts all currently (as of updatedAt) approved membership whether or not they have units.
362
+ * Counts all currently (as of updatedAt) approved membership whether or not they have units. (both IDA and GDA)
353
363
  *
354
364
  */
355
365
  totalConnectedMemberships: Scalars['Int']['output'];
@@ -385,7 +395,7 @@ export type AccountTokenSnapshot = {
385
395
  */
386
396
  totalInflowRate: Scalars['BigInt']['output'];
387
397
  /**
388
- * The current (as of updatedAt) number of membership with units allocated to them tied to this `account`.
398
+ * The current (as of updatedAt) number of membership with units allocated to them tied to this `account`. (both IDA and GDA)
389
399
  *
390
400
  */
391
401
  totalMembershipsWithUnits: Scalars['Int']['output'];
@@ -1061,6 +1071,8 @@ export declare enum AccountTokenSnapshotLog_OrderBy {
1061
1071
  AccountTokenSnapshot__activeGDAOutgoingStreamCount = "accountTokenSnapshot__activeGDAOutgoingStreamCount",
1062
1072
  AccountTokenSnapshot__activeIncomingStreamCount = "accountTokenSnapshot__activeIncomingStreamCount",
1063
1073
  AccountTokenSnapshot__activeOutgoingStreamCount = "accountTokenSnapshot__activeOutgoingStreamCount",
1074
+ AccountTokenSnapshot__adminOfPoolCount = "accountTokenSnapshot__adminOfPoolCount",
1075
+ AccountTokenSnapshot__balanceLastUpdatedFromRpcBlocknumber = "accountTokenSnapshot__balanceLastUpdatedFromRpcBlocknumber",
1064
1076
  AccountTokenSnapshot__balanceUntilUpdatedAt = "accountTokenSnapshot__balanceUntilUpdatedAt",
1065
1077
  AccountTokenSnapshot__createdAtBlockNumber = "accountTokenSnapshot__createdAtBlockNumber",
1066
1078
  AccountTokenSnapshot__createdAtTimestamp = "accountTokenSnapshot__createdAtTimestamp",
@@ -1215,7 +1227,23 @@ export type AccountTokenSnapshot_Filter = {
1215
1227
  activeOutgoingStreamCount_lte?: InputMaybe<Scalars['Int']['input']>;
1216
1228
  activeOutgoingStreamCount_not?: InputMaybe<Scalars['Int']['input']>;
1217
1229
  activeOutgoingStreamCount_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
1230
+ adminOfPoolCount?: InputMaybe<Scalars['Int']['input']>;
1231
+ adminOfPoolCount_gt?: InputMaybe<Scalars['Int']['input']>;
1232
+ adminOfPoolCount_gte?: InputMaybe<Scalars['Int']['input']>;
1233
+ adminOfPoolCount_in?: InputMaybe<Array<Scalars['Int']['input']>>;
1234
+ adminOfPoolCount_lt?: InputMaybe<Scalars['Int']['input']>;
1235
+ adminOfPoolCount_lte?: InputMaybe<Scalars['Int']['input']>;
1236
+ adminOfPoolCount_not?: InputMaybe<Scalars['Int']['input']>;
1237
+ adminOfPoolCount_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
1218
1238
  and?: InputMaybe<Array<InputMaybe<AccountTokenSnapshot_Filter>>>;
1239
+ balanceLastUpdatedFromRpcBlocknumber?: InputMaybe<Scalars['BigInt']['input']>;
1240
+ balanceLastUpdatedFromRpcBlocknumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
1241
+ balanceLastUpdatedFromRpcBlocknumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
1242
+ balanceLastUpdatedFromRpcBlocknumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
1243
+ balanceLastUpdatedFromRpcBlocknumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
1244
+ balanceLastUpdatedFromRpcBlocknumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
1245
+ balanceLastUpdatedFromRpcBlocknumber_not?: InputMaybe<Scalars['BigInt']['input']>;
1246
+ balanceLastUpdatedFromRpcBlocknumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
1219
1247
  balanceUntilUpdatedAt?: InputMaybe<Scalars['BigInt']['input']>;
1220
1248
  balanceUntilUpdatedAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
1221
1249
  balanceUntilUpdatedAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
@@ -1545,6 +1573,8 @@ export declare enum AccountTokenSnapshot_OrderBy {
1545
1573
  ActiveGDAOutgoingStreamCount = "activeGDAOutgoingStreamCount",
1546
1574
  ActiveIncomingStreamCount = "activeIncomingStreamCount",
1547
1575
  ActiveOutgoingStreamCount = "activeOutgoingStreamCount",
1576
+ AdminOfPoolCount = "adminOfPoolCount",
1577
+ BalanceLastUpdatedFromRpcBlocknumber = "balanceLastUpdatedFromRpcBlocknumber",
1548
1578
  BalanceUntilUpdatedAt = "balanceUntilUpdatedAt",
1549
1579
  CreatedAtBlockNumber = "createdAtBlockNumber",
1550
1580
  CreatedAtTimestamp = "createdAtTimestamp",
@@ -5322,6 +5352,8 @@ export declare enum FlowOperator_OrderBy {
5322
5352
  AccountTokenSnapshot__activeGDAOutgoingStreamCount = "accountTokenSnapshot__activeGDAOutgoingStreamCount",
5323
5353
  AccountTokenSnapshot__activeIncomingStreamCount = "accountTokenSnapshot__activeIncomingStreamCount",
5324
5354
  AccountTokenSnapshot__activeOutgoingStreamCount = "accountTokenSnapshot__activeOutgoingStreamCount",
5355
+ AccountTokenSnapshot__adminOfPoolCount = "accountTokenSnapshot__adminOfPoolCount",
5356
+ AccountTokenSnapshot__balanceLastUpdatedFromRpcBlocknumber = "accountTokenSnapshot__balanceLastUpdatedFromRpcBlocknumber",
5325
5357
  AccountTokenSnapshot__balanceUntilUpdatedAt = "accountTokenSnapshot__balanceUntilUpdatedAt",
5326
5358
  AccountTokenSnapshot__createdAtBlockNumber = "accountTokenSnapshot__createdAtBlockNumber",
5327
5359
  AccountTokenSnapshot__createdAtTimestamp = "accountTokenSnapshot__createdAtTimestamp",