@polymeshassociation/polymesh-sdk 23.0.0-beta.1 → 23.0.0-beta.2
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/CHANGELOG.md +7 -71
- package/api/client/Claims.d.ts +14 -1
- package/api/client/Claims.d.ts.map +1 -1
- package/api/client/Claims.js +29 -0
- package/api/client/Claims.js.map +1 -1
- package/api/client/Polymesh.d.ts.map +1 -1
- package/api/client/Polymesh.js +2 -1
- package/api/client/Polymesh.js.map +1 -1
- package/api/entities/Portfolio/index.d.ts.map +1 -1
- package/api/entities/Portfolio/index.js +7 -4
- package/api/entities/Portfolio/index.js.map +1 -1
- package/generated/types.d.ts +10 -3
- package/generated/types.d.ts.map +1 -1
- package/generated/types.js +7 -0
- package/generated/types.js.map +1 -1
- package/middleware/queries.d.ts +16 -0
- package/middleware/queries.d.ts.map +1 -1
- package/middleware/queries.js +51 -1
- package/middleware/queries.js.map +1 -1
- package/middleware/types.d.ts +1861 -69
- package/middleware/types.d.ts.map +1 -1
- package/middleware/types.js +774 -12
- package/middleware/types.js.map +1 -1
- package/npm-package/polymeshassociation-polymesh-sdk-23.0.0-beta.2.tgz +0 -0
- package/package.json +1 -1
- package/polkadot/augment-api-errors.d.ts +28 -0
- package/polkadot/augment-api-errors.d.ts.map +1 -1
- package/polkadot/augment-api-events.d.ts +81 -2
- package/polkadot/augment-api-events.d.ts.map +1 -1
- package/polkadot/augment-api-query.d.ts +43 -1
- package/polkadot/augment-api-query.d.ts.map +1 -1
- package/polkadot/augment-api-rpc.d.ts +9 -2
- package/polkadot/augment-api-rpc.d.ts.map +1 -1
- package/polkadot/augment-api-tx.d.ts +128 -3
- package/polkadot/augment-api-tx.d.ts.map +1 -1
- package/polkadot/augment-types.d.ts +3 -1
- package/polkadot/augment-types.d.ts.map +1 -1
- package/polkadot/lookup.d.ts +300 -221
- package/polkadot/lookup.d.ts.map +1 -1
- package/polkadot/lookup.js +307 -221
- package/polkadot/lookup.js.map +1 -1
- package/polkadot/polymesh/definitions.d.ts +11 -1
- package/polkadot/polymesh/definitions.d.ts.map +1 -1
- package/polkadot/polymesh/definitions.js +14 -1
- package/polkadot/polymesh/definitions.js.map +1 -1
- package/polkadot/polymesh/types.d.ts +17 -2
- package/polkadot/polymesh/types.d.ts.map +1 -1
- package/polkadot/registry.d.ts +6 -2
- package/polkadot/registry.d.ts.map +1 -1
- package/polkadot/schema.d.ts +29 -2
- package/polkadot/schema.d.ts.map +1 -1
- package/polkadot/schema.js +51 -3
- package/polkadot/schema.js.map +1 -1
- package/polkadot/settlement/definitions.d.ts +9 -0
- package/polkadot/settlement/definitions.d.ts.map +1 -1
- package/polkadot/settlement/definitions.js +21 -0
- package/polkadot/settlement/definitions.js.map +1 -1
- package/polkadot/types-lookup.d.ts +336 -231
- package/polkadot/types-lookup.d.ts.map +1 -1
- package/types/index.d.ts +9 -0
- package/types/index.d.ts.map +1 -1
- package/utils/constants.d.ts +1 -1
- package/utils/constants.js +1 -1
- package/utils/conversion.d.ts +6 -2
- package/utils/conversion.d.ts.map +1 -1
- package/utils/conversion.js +16 -5
- package/utils/conversion.js.map +1 -1
- package/npm-package/polymeshassociation-polymesh-sdk-23.0.0-beta.1.tgz +0 -0
package/middleware/types.d.ts
CHANGED
|
@@ -10758,6 +10758,10 @@ export declare type Block = Node & {
|
|
|
10758
10758
|
/** Reads and enables pagination through a set of `Block`. */
|
|
10759
10759
|
blocksByComplianceUpdatedBlockIdAndCreatedBlockId: BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyConnection;
|
|
10760
10760
|
/** Reads and enables pagination through a set of `Block`. */
|
|
10761
|
+
blocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockId: BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyConnection;
|
|
10762
|
+
/** Reads and enables pagination through a set of `Block`. */
|
|
10763
|
+
blocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockId: BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyConnection;
|
|
10764
|
+
/** Reads and enables pagination through a set of `Block`. */
|
|
10761
10765
|
blocksByDistributionCreatedBlockIdAndUpdatedBlockId: BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection;
|
|
10762
10766
|
/** Reads and enables pagination through a set of `Block`. */
|
|
10763
10767
|
blocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockId: BlockBlocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockIdManyToManyConnection;
|
|
@@ -10904,6 +10908,14 @@ export declare type Block = Node & {
|
|
|
10904
10908
|
countExtrinsicsSuccess: Scalars['Int']['output'];
|
|
10905
10909
|
countExtrinsicsUnsigned: Scalars['Int']['output'];
|
|
10906
10910
|
createdAt: Scalars['Datetime']['output'];
|
|
10911
|
+
/** Reads and enables pagination through a set of `CustomClaimType`. */
|
|
10912
|
+
customClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeId: BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyConnection;
|
|
10913
|
+
/** Reads and enables pagination through a set of `CustomClaimType`. */
|
|
10914
|
+
customClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeId: BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnection;
|
|
10915
|
+
/** Reads and enables pagination through a set of `CustomClaimType`. */
|
|
10916
|
+
customClaimTypesByCreatedBlockId: CustomClaimTypesConnection;
|
|
10917
|
+
/** Reads and enables pagination through a set of `CustomClaimType`. */
|
|
10918
|
+
customClaimTypesByUpdatedBlockId: CustomClaimTypesConnection;
|
|
10907
10919
|
datetime: Scalars['Datetime']['output'];
|
|
10908
10920
|
/** Reads and enables pagination through a set of `DistributionPayment`. */
|
|
10909
10921
|
distributionPaymentsByCreatedBlockId: DistributionPaymentsConnection;
|
|
@@ -10973,6 +10985,10 @@ export declare type Block = Node & {
|
|
|
10973
10985
|
/** Reads and enables pagination through a set of `Identity`. */
|
|
10974
10986
|
identitiesByCreatedBlockId: IdentitiesConnection;
|
|
10975
10987
|
/** Reads and enables pagination through a set of `Identity`. */
|
|
10988
|
+
identitiesByCustomClaimTypeCreatedBlockIdAndIdentityId: BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyConnection;
|
|
10989
|
+
/** Reads and enables pagination through a set of `Identity`. */
|
|
10990
|
+
identitiesByCustomClaimTypeUpdatedBlockIdAndIdentityId: BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyConnection;
|
|
10991
|
+
/** Reads and enables pagination through a set of `Identity`. */
|
|
10976
10992
|
identitiesByDistributionCreatedBlockIdAndIdentityId: BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdManyToManyConnection;
|
|
10977
10993
|
/** Reads and enables pagination through a set of `Identity`. */
|
|
10978
10994
|
identitiesByDistributionPaymentCreatedBlockIdAndTargetId: BlockIdentitiesByDistributionPaymentCreatedBlockIdAndTargetIdManyToManyConnection;
|
|
@@ -12203,6 +12219,28 @@ export declare type BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdArgs =
|
|
|
12203
12219
|
orderBy?: InputMaybe<Array<BlocksOrderBy>>;
|
|
12204
12220
|
};
|
|
12205
12221
|
/** A set of transactions that were executed together. Includes a reference to its parent, which reference its parent, this forms a chain to the genesis block */
|
|
12222
|
+
export declare type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdArgs = {
|
|
12223
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
12224
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
12225
|
+
distinct?: InputMaybe<Array<InputMaybe<Blocks_Distinct_Enum>>>;
|
|
12226
|
+
filter?: InputMaybe<BlockFilter>;
|
|
12227
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
12228
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
12229
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
12230
|
+
orderBy?: InputMaybe<Array<BlocksOrderBy>>;
|
|
12231
|
+
};
|
|
12232
|
+
/** A set of transactions that were executed together. Includes a reference to its parent, which reference its parent, this forms a chain to the genesis block */
|
|
12233
|
+
export declare type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdArgs = {
|
|
12234
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
12235
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
12236
|
+
distinct?: InputMaybe<Array<InputMaybe<Blocks_Distinct_Enum>>>;
|
|
12237
|
+
filter?: InputMaybe<BlockFilter>;
|
|
12238
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
12239
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
12240
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
12241
|
+
orderBy?: InputMaybe<Array<BlocksOrderBy>>;
|
|
12242
|
+
};
|
|
12243
|
+
/** A set of transactions that were executed together. Includes a reference to its parent, which reference its parent, this forms a chain to the genesis block */
|
|
12206
12244
|
export declare type BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdArgs = {
|
|
12207
12245
|
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
12208
12246
|
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
@@ -12973,6 +13011,50 @@ export declare type BlockCompliancesByUpdatedBlockIdArgs = {
|
|
|
12973
13011
|
orderBy?: InputMaybe<Array<CompliancesOrderBy>>;
|
|
12974
13012
|
};
|
|
12975
13013
|
/** A set of transactions that were executed together. Includes a reference to its parent, which reference its parent, this forms a chain to the genesis block */
|
|
13014
|
+
export declare type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdArgs = {
|
|
13015
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
13016
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
13017
|
+
distinct?: InputMaybe<Array<InputMaybe<Custom_Claim_Types_Distinct_Enum>>>;
|
|
13018
|
+
filter?: InputMaybe<CustomClaimTypeFilter>;
|
|
13019
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13020
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
13021
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
13022
|
+
orderBy?: InputMaybe<Array<CustomClaimTypesOrderBy>>;
|
|
13023
|
+
};
|
|
13024
|
+
/** A set of transactions that were executed together. Includes a reference to its parent, which reference its parent, this forms a chain to the genesis block */
|
|
13025
|
+
export declare type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdArgs = {
|
|
13026
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
13027
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
13028
|
+
distinct?: InputMaybe<Array<InputMaybe<Custom_Claim_Types_Distinct_Enum>>>;
|
|
13029
|
+
filter?: InputMaybe<CustomClaimTypeFilter>;
|
|
13030
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13031
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
13032
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
13033
|
+
orderBy?: InputMaybe<Array<CustomClaimTypesOrderBy>>;
|
|
13034
|
+
};
|
|
13035
|
+
/** A set of transactions that were executed together. Includes a reference to its parent, which reference its parent, this forms a chain to the genesis block */
|
|
13036
|
+
export declare type BlockCustomClaimTypesByCreatedBlockIdArgs = {
|
|
13037
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
13038
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
13039
|
+
distinct?: InputMaybe<Array<InputMaybe<Custom_Claim_Types_Distinct_Enum>>>;
|
|
13040
|
+
filter?: InputMaybe<CustomClaimTypeFilter>;
|
|
13041
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13042
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
13043
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
13044
|
+
orderBy?: InputMaybe<Array<CustomClaimTypesOrderBy>>;
|
|
13045
|
+
};
|
|
13046
|
+
/** A set of transactions that were executed together. Includes a reference to its parent, which reference its parent, this forms a chain to the genesis block */
|
|
13047
|
+
export declare type BlockCustomClaimTypesByUpdatedBlockIdArgs = {
|
|
13048
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
13049
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
13050
|
+
distinct?: InputMaybe<Array<InputMaybe<Custom_Claim_Types_Distinct_Enum>>>;
|
|
13051
|
+
filter?: InputMaybe<CustomClaimTypeFilter>;
|
|
13052
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13053
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
13054
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
13055
|
+
orderBy?: InputMaybe<Array<CustomClaimTypesOrderBy>>;
|
|
13056
|
+
};
|
|
13057
|
+
/** A set of transactions that were executed together. Includes a reference to its parent, which reference its parent, this forms a chain to the genesis block */
|
|
12976
13058
|
export declare type BlockDistributionPaymentsByCreatedBlockIdArgs = {
|
|
12977
13059
|
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
12978
13060
|
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
@@ -13325,6 +13407,28 @@ export declare type BlockIdentitiesByCreatedBlockIdArgs = {
|
|
|
13325
13407
|
orderBy?: InputMaybe<Array<IdentitiesOrderBy>>;
|
|
13326
13408
|
};
|
|
13327
13409
|
/** A set of transactions that were executed together. Includes a reference to its parent, which reference its parent, this forms a chain to the genesis block */
|
|
13410
|
+
export declare type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdArgs = {
|
|
13411
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
13412
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
13413
|
+
distinct?: InputMaybe<Array<InputMaybe<Identities_Distinct_Enum>>>;
|
|
13414
|
+
filter?: InputMaybe<IdentityFilter>;
|
|
13415
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13416
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
13417
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
13418
|
+
orderBy?: InputMaybe<Array<IdentitiesOrderBy>>;
|
|
13419
|
+
};
|
|
13420
|
+
/** A set of transactions that were executed together. Includes a reference to its parent, which reference its parent, this forms a chain to the genesis block */
|
|
13421
|
+
export declare type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdArgs = {
|
|
13422
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
13423
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
13424
|
+
distinct?: InputMaybe<Array<InputMaybe<Identities_Distinct_Enum>>>;
|
|
13425
|
+
filter?: InputMaybe<IdentityFilter>;
|
|
13426
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13427
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
13428
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
13429
|
+
orderBy?: InputMaybe<Array<IdentitiesOrderBy>>;
|
|
13430
|
+
};
|
|
13431
|
+
/** A set of transactions that were executed together. Includes a reference to its parent, which reference its parent, this forms a chain to the genesis block */
|
|
13328
13432
|
export declare type BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdArgs = {
|
|
13329
13433
|
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
13330
13434
|
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
@@ -17620,6 +17724,90 @@ export declare type BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdManyTo
|
|
|
17620
17724
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
17621
17725
|
orderBy?: InputMaybe<Array<CompliancesOrderBy>>;
|
|
17622
17726
|
};
|
|
17727
|
+
/** A connection to a list of `Block` values, with data from `CustomClaimType`. */
|
|
17728
|
+
export declare type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = {
|
|
17729
|
+
__typename?: 'BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyConnection';
|
|
17730
|
+
/** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
17731
|
+
aggregates?: Maybe<BlockAggregates>;
|
|
17732
|
+
/** A list of edges which contains the `Block`, info from the `CustomClaimType`, and the cursor to aid in pagination. */
|
|
17733
|
+
edges: Array<BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyEdge>;
|
|
17734
|
+
/** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
17735
|
+
groupedAggregates?: Maybe<Array<BlockAggregates>>;
|
|
17736
|
+
/** A list of `Block` objects. */
|
|
17737
|
+
nodes: Array<Maybe<Block>>;
|
|
17738
|
+
/** Information to aid in pagination. */
|
|
17739
|
+
pageInfo: PageInfo;
|
|
17740
|
+
/** The count of *all* `Block` you could get from the connection. */
|
|
17741
|
+
totalCount: Scalars['Int']['output'];
|
|
17742
|
+
};
|
|
17743
|
+
/** A connection to a list of `Block` values, with data from `CustomClaimType`. */
|
|
17744
|
+
export declare type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = {
|
|
17745
|
+
groupBy: Array<BlocksGroupBy>;
|
|
17746
|
+
having?: InputMaybe<BlocksHavingInput>;
|
|
17747
|
+
};
|
|
17748
|
+
/** A `Block` edge in the connection, with data from `CustomClaimType`. */
|
|
17749
|
+
export declare type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = {
|
|
17750
|
+
__typename?: 'BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyEdge';
|
|
17751
|
+
/** A cursor for use in pagination. */
|
|
17752
|
+
cursor?: Maybe<Scalars['Cursor']['output']>;
|
|
17753
|
+
/** Reads and enables pagination through a set of `CustomClaimType`. */
|
|
17754
|
+
customClaimTypesByUpdatedBlockId: CustomClaimTypesConnection;
|
|
17755
|
+
/** The `Block` at the end of the edge. */
|
|
17756
|
+
node?: Maybe<Block>;
|
|
17757
|
+
};
|
|
17758
|
+
/** A `Block` edge in the connection, with data from `CustomClaimType`. */
|
|
17759
|
+
export declare type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeCustomClaimTypesByUpdatedBlockIdArgs = {
|
|
17760
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
17761
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
17762
|
+
distinct?: InputMaybe<Array<InputMaybe<Custom_Claim_Types_Distinct_Enum>>>;
|
|
17763
|
+
filter?: InputMaybe<CustomClaimTypeFilter>;
|
|
17764
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17765
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
17766
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
17767
|
+
orderBy?: InputMaybe<Array<CustomClaimTypesOrderBy>>;
|
|
17768
|
+
};
|
|
17769
|
+
/** A connection to a list of `Block` values, with data from `CustomClaimType`. */
|
|
17770
|
+
export declare type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = {
|
|
17771
|
+
__typename?: 'BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyConnection';
|
|
17772
|
+
/** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
17773
|
+
aggregates?: Maybe<BlockAggregates>;
|
|
17774
|
+
/** A list of edges which contains the `Block`, info from the `CustomClaimType`, and the cursor to aid in pagination. */
|
|
17775
|
+
edges: Array<BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyEdge>;
|
|
17776
|
+
/** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
17777
|
+
groupedAggregates?: Maybe<Array<BlockAggregates>>;
|
|
17778
|
+
/** A list of `Block` objects. */
|
|
17779
|
+
nodes: Array<Maybe<Block>>;
|
|
17780
|
+
/** Information to aid in pagination. */
|
|
17781
|
+
pageInfo: PageInfo;
|
|
17782
|
+
/** The count of *all* `Block` you could get from the connection. */
|
|
17783
|
+
totalCount: Scalars['Int']['output'];
|
|
17784
|
+
};
|
|
17785
|
+
/** A connection to a list of `Block` values, with data from `CustomClaimType`. */
|
|
17786
|
+
export declare type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = {
|
|
17787
|
+
groupBy: Array<BlocksGroupBy>;
|
|
17788
|
+
having?: InputMaybe<BlocksHavingInput>;
|
|
17789
|
+
};
|
|
17790
|
+
/** A `Block` edge in the connection, with data from `CustomClaimType`. */
|
|
17791
|
+
export declare type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = {
|
|
17792
|
+
__typename?: 'BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyEdge';
|
|
17793
|
+
/** A cursor for use in pagination. */
|
|
17794
|
+
cursor?: Maybe<Scalars['Cursor']['output']>;
|
|
17795
|
+
/** Reads and enables pagination through a set of `CustomClaimType`. */
|
|
17796
|
+
customClaimTypesByCreatedBlockId: CustomClaimTypesConnection;
|
|
17797
|
+
/** The `Block` at the end of the edge. */
|
|
17798
|
+
node?: Maybe<Block>;
|
|
17799
|
+
};
|
|
17800
|
+
/** A `Block` edge in the connection, with data from `CustomClaimType`. */
|
|
17801
|
+
export declare type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeCustomClaimTypesByCreatedBlockIdArgs = {
|
|
17802
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
17803
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
17804
|
+
distinct?: InputMaybe<Array<InputMaybe<Custom_Claim_Types_Distinct_Enum>>>;
|
|
17805
|
+
filter?: InputMaybe<CustomClaimTypeFilter>;
|
|
17806
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17807
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
17808
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
17809
|
+
orderBy?: InputMaybe<Array<CustomClaimTypesOrderBy>>;
|
|
17810
|
+
};
|
|
17623
17811
|
/** A connection to a list of `Block` values, with data from `Distribution`. */
|
|
17624
17812
|
export declare type BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = {
|
|
17625
17813
|
__typename?: 'BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection';
|
|
@@ -20140,6 +20328,90 @@ export declare type BlockBlocksByVenueUpdatedBlockIdAndCreatedBlockIdManyToManyE
|
|
|
20140
20328
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
20141
20329
|
orderBy?: InputMaybe<Array<VenuesOrderBy>>;
|
|
20142
20330
|
};
|
|
20331
|
+
/** A connection to a list of `CustomClaimType` values, with data from `Claim`. */
|
|
20332
|
+
export declare type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyConnection = {
|
|
20333
|
+
__typename?: 'BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyConnection';
|
|
20334
|
+
/** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
20335
|
+
aggregates?: Maybe<CustomClaimTypeAggregates>;
|
|
20336
|
+
/** A list of edges which contains the `CustomClaimType`, info from the `Claim`, and the cursor to aid in pagination. */
|
|
20337
|
+
edges: Array<BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyEdge>;
|
|
20338
|
+
/** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
20339
|
+
groupedAggregates?: Maybe<Array<CustomClaimTypeAggregates>>;
|
|
20340
|
+
/** A list of `CustomClaimType` objects. */
|
|
20341
|
+
nodes: Array<Maybe<CustomClaimType>>;
|
|
20342
|
+
/** Information to aid in pagination. */
|
|
20343
|
+
pageInfo: PageInfo;
|
|
20344
|
+
/** The count of *all* `CustomClaimType` you could get from the connection. */
|
|
20345
|
+
totalCount: Scalars['Int']['output'];
|
|
20346
|
+
};
|
|
20347
|
+
/** A connection to a list of `CustomClaimType` values, with data from `Claim`. */
|
|
20348
|
+
export declare type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = {
|
|
20349
|
+
groupBy: Array<CustomClaimTypesGroupBy>;
|
|
20350
|
+
having?: InputMaybe<CustomClaimTypesHavingInput>;
|
|
20351
|
+
};
|
|
20352
|
+
/** A `CustomClaimType` edge in the connection, with data from `Claim`. */
|
|
20353
|
+
export declare type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyEdge = {
|
|
20354
|
+
__typename?: 'BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyEdge';
|
|
20355
|
+
/** Reads and enables pagination through a set of `Claim`. */
|
|
20356
|
+
claims: ClaimsConnection;
|
|
20357
|
+
/** A cursor for use in pagination. */
|
|
20358
|
+
cursor?: Maybe<Scalars['Cursor']['output']>;
|
|
20359
|
+
/** The `CustomClaimType` at the end of the edge. */
|
|
20360
|
+
node?: Maybe<CustomClaimType>;
|
|
20361
|
+
};
|
|
20362
|
+
/** A `CustomClaimType` edge in the connection, with data from `Claim`. */
|
|
20363
|
+
export declare type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyEdgeClaimsArgs = {
|
|
20364
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
20365
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
20366
|
+
distinct?: InputMaybe<Array<InputMaybe<Claims_Distinct_Enum>>>;
|
|
20367
|
+
filter?: InputMaybe<ClaimFilter>;
|
|
20368
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
20369
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
20370
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
20371
|
+
orderBy?: InputMaybe<Array<ClaimsOrderBy>>;
|
|
20372
|
+
};
|
|
20373
|
+
/** A connection to a list of `CustomClaimType` values, with data from `Claim`. */
|
|
20374
|
+
export declare type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnection = {
|
|
20375
|
+
__typename?: 'BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnection';
|
|
20376
|
+
/** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
20377
|
+
aggregates?: Maybe<CustomClaimTypeAggregates>;
|
|
20378
|
+
/** A list of edges which contains the `CustomClaimType`, info from the `Claim`, and the cursor to aid in pagination. */
|
|
20379
|
+
edges: Array<BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyEdge>;
|
|
20380
|
+
/** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
20381
|
+
groupedAggregates?: Maybe<Array<CustomClaimTypeAggregates>>;
|
|
20382
|
+
/** A list of `CustomClaimType` objects. */
|
|
20383
|
+
nodes: Array<Maybe<CustomClaimType>>;
|
|
20384
|
+
/** Information to aid in pagination. */
|
|
20385
|
+
pageInfo: PageInfo;
|
|
20386
|
+
/** The count of *all* `CustomClaimType` you could get from the connection. */
|
|
20387
|
+
totalCount: Scalars['Int']['output'];
|
|
20388
|
+
};
|
|
20389
|
+
/** A connection to a list of `CustomClaimType` values, with data from `Claim`. */
|
|
20390
|
+
export declare type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = {
|
|
20391
|
+
groupBy: Array<CustomClaimTypesGroupBy>;
|
|
20392
|
+
having?: InputMaybe<CustomClaimTypesHavingInput>;
|
|
20393
|
+
};
|
|
20394
|
+
/** A `CustomClaimType` edge in the connection, with data from `Claim`. */
|
|
20395
|
+
export declare type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyEdge = {
|
|
20396
|
+
__typename?: 'BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyEdge';
|
|
20397
|
+
/** Reads and enables pagination through a set of `Claim`. */
|
|
20398
|
+
claims: ClaimsConnection;
|
|
20399
|
+
/** A cursor for use in pagination. */
|
|
20400
|
+
cursor?: Maybe<Scalars['Cursor']['output']>;
|
|
20401
|
+
/** The `CustomClaimType` at the end of the edge. */
|
|
20402
|
+
node?: Maybe<CustomClaimType>;
|
|
20403
|
+
};
|
|
20404
|
+
/** A `CustomClaimType` edge in the connection, with data from `Claim`. */
|
|
20405
|
+
export declare type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyEdgeClaimsArgs = {
|
|
20406
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
20407
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
20408
|
+
distinct?: InputMaybe<Array<InputMaybe<Claims_Distinct_Enum>>>;
|
|
20409
|
+
filter?: InputMaybe<ClaimFilter>;
|
|
20410
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
20411
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
20412
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
20413
|
+
orderBy?: InputMaybe<Array<ClaimsOrderBy>>;
|
|
20414
|
+
};
|
|
20143
20415
|
export declare type BlockDistinctCountAggregates = {
|
|
20144
20416
|
__typename?: 'BlockDistinctCountAggregates';
|
|
20145
20417
|
/** Distinct count of blockId across the matching connection */
|
|
@@ -20527,6 +20799,14 @@ export declare type BlockFilter = {
|
|
|
20527
20799
|
countExtrinsicsUnsigned?: InputMaybe<IntFilter>;
|
|
20528
20800
|
/** Filter by the object’s `createdAt` field. */
|
|
20529
20801
|
createdAt?: InputMaybe<DatetimeFilter>;
|
|
20802
|
+
/** Filter by the object’s `customClaimTypesByCreatedBlockId` relation. */
|
|
20803
|
+
customClaimTypesByCreatedBlockId?: InputMaybe<BlockToManyCustomClaimTypeFilter>;
|
|
20804
|
+
/** Some related `customClaimTypesByCreatedBlockId` exist. */
|
|
20805
|
+
customClaimTypesByCreatedBlockIdExist?: InputMaybe<Scalars['Boolean']['input']>;
|
|
20806
|
+
/** Filter by the object’s `customClaimTypesByUpdatedBlockId` relation. */
|
|
20807
|
+
customClaimTypesByUpdatedBlockId?: InputMaybe<BlockToManyCustomClaimTypeFilter>;
|
|
20808
|
+
/** Some related `customClaimTypesByUpdatedBlockId` exist. */
|
|
20809
|
+
customClaimTypesByUpdatedBlockIdExist?: InputMaybe<Scalars['Boolean']['input']>;
|
|
20530
20810
|
/** Filter by the object’s `datetime` field. */
|
|
20531
20811
|
datetime?: InputMaybe<DatetimeFilter>;
|
|
20532
20812
|
/** Filter by the object’s `distributionPaymentsByCreatedBlockId` relation. */
|
|
@@ -21554,6 +21834,90 @@ export declare type BlockIdentitiesByClaimUpdatedBlockIdAndTargetIdManyToManyEdg
|
|
|
21554
21834
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
21555
21835
|
orderBy?: InputMaybe<Array<ClaimsOrderBy>>;
|
|
21556
21836
|
};
|
|
21837
|
+
/** A connection to a list of `Identity` values, with data from `CustomClaimType`. */
|
|
21838
|
+
export declare type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyConnection = {
|
|
21839
|
+
__typename?: 'BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyConnection';
|
|
21840
|
+
/** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
21841
|
+
aggregates?: Maybe<IdentityAggregates>;
|
|
21842
|
+
/** A list of edges which contains the `Identity`, info from the `CustomClaimType`, and the cursor to aid in pagination. */
|
|
21843
|
+
edges: Array<BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyEdge>;
|
|
21844
|
+
/** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
21845
|
+
groupedAggregates?: Maybe<Array<IdentityAggregates>>;
|
|
21846
|
+
/** A list of `Identity` objects. */
|
|
21847
|
+
nodes: Array<Maybe<Identity>>;
|
|
21848
|
+
/** Information to aid in pagination. */
|
|
21849
|
+
pageInfo: PageInfo;
|
|
21850
|
+
/** The count of *all* `Identity` you could get from the connection. */
|
|
21851
|
+
totalCount: Scalars['Int']['output'];
|
|
21852
|
+
};
|
|
21853
|
+
/** A connection to a list of `Identity` values, with data from `CustomClaimType`. */
|
|
21854
|
+
export declare type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = {
|
|
21855
|
+
groupBy: Array<IdentitiesGroupBy>;
|
|
21856
|
+
having?: InputMaybe<IdentitiesHavingInput>;
|
|
21857
|
+
};
|
|
21858
|
+
/** A `Identity` edge in the connection, with data from `CustomClaimType`. */
|
|
21859
|
+
export declare type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyEdge = {
|
|
21860
|
+
__typename?: 'BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyEdge';
|
|
21861
|
+
/** A cursor for use in pagination. */
|
|
21862
|
+
cursor?: Maybe<Scalars['Cursor']['output']>;
|
|
21863
|
+
/** Reads and enables pagination through a set of `CustomClaimType`. */
|
|
21864
|
+
customClaimTypes: CustomClaimTypesConnection;
|
|
21865
|
+
/** The `Identity` at the end of the edge. */
|
|
21866
|
+
node?: Maybe<Identity>;
|
|
21867
|
+
};
|
|
21868
|
+
/** A `Identity` edge in the connection, with data from `CustomClaimType`. */
|
|
21869
|
+
export declare type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyEdgeCustomClaimTypesArgs = {
|
|
21870
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
21871
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
21872
|
+
distinct?: InputMaybe<Array<InputMaybe<Custom_Claim_Types_Distinct_Enum>>>;
|
|
21873
|
+
filter?: InputMaybe<CustomClaimTypeFilter>;
|
|
21874
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21875
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
21876
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
21877
|
+
orderBy?: InputMaybe<Array<CustomClaimTypesOrderBy>>;
|
|
21878
|
+
};
|
|
21879
|
+
/** A connection to a list of `Identity` values, with data from `CustomClaimType`. */
|
|
21880
|
+
export declare type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyConnection = {
|
|
21881
|
+
__typename?: 'BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyConnection';
|
|
21882
|
+
/** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
21883
|
+
aggregates?: Maybe<IdentityAggregates>;
|
|
21884
|
+
/** A list of edges which contains the `Identity`, info from the `CustomClaimType`, and the cursor to aid in pagination. */
|
|
21885
|
+
edges: Array<BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyEdge>;
|
|
21886
|
+
/** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
21887
|
+
groupedAggregates?: Maybe<Array<IdentityAggregates>>;
|
|
21888
|
+
/** A list of `Identity` objects. */
|
|
21889
|
+
nodes: Array<Maybe<Identity>>;
|
|
21890
|
+
/** Information to aid in pagination. */
|
|
21891
|
+
pageInfo: PageInfo;
|
|
21892
|
+
/** The count of *all* `Identity` you could get from the connection. */
|
|
21893
|
+
totalCount: Scalars['Int']['output'];
|
|
21894
|
+
};
|
|
21895
|
+
/** A connection to a list of `Identity` values, with data from `CustomClaimType`. */
|
|
21896
|
+
export declare type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = {
|
|
21897
|
+
groupBy: Array<IdentitiesGroupBy>;
|
|
21898
|
+
having?: InputMaybe<IdentitiesHavingInput>;
|
|
21899
|
+
};
|
|
21900
|
+
/** A `Identity` edge in the connection, with data from `CustomClaimType`. */
|
|
21901
|
+
export declare type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyEdge = {
|
|
21902
|
+
__typename?: 'BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyEdge';
|
|
21903
|
+
/** A cursor for use in pagination. */
|
|
21904
|
+
cursor?: Maybe<Scalars['Cursor']['output']>;
|
|
21905
|
+
/** Reads and enables pagination through a set of `CustomClaimType`. */
|
|
21906
|
+
customClaimTypes: CustomClaimTypesConnection;
|
|
21907
|
+
/** The `Identity` at the end of the edge. */
|
|
21908
|
+
node?: Maybe<Identity>;
|
|
21909
|
+
};
|
|
21910
|
+
/** A `Identity` edge in the connection, with data from `CustomClaimType`. */
|
|
21911
|
+
export declare type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyEdgeCustomClaimTypesArgs = {
|
|
21912
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
21913
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
21914
|
+
distinct?: InputMaybe<Array<InputMaybe<Custom_Claim_Types_Distinct_Enum>>>;
|
|
21915
|
+
filter?: InputMaybe<CustomClaimTypeFilter>;
|
|
21916
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21917
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
21918
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
21919
|
+
orderBy?: InputMaybe<Array<CustomClaimTypesOrderBy>>;
|
|
21920
|
+
};
|
|
21557
21921
|
/** A connection to a list of `Identity` values, with data from `Distribution`. */
|
|
21558
21922
|
export declare type BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdManyToManyConnection = {
|
|
21559
21923
|
__typename?: 'BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdManyToManyConnection';
|
|
@@ -24764,6 +25128,17 @@ export declare type BlockToManyComplianceFilter = {
|
|
|
24764
25128
|
/** Some related `Compliance` matches the filter criteria. All fields are combined with a logical ‘and.’ */
|
|
24765
25129
|
some?: InputMaybe<ComplianceFilter>;
|
|
24766
25130
|
};
|
|
25131
|
+
/** A filter to be used against many `CustomClaimType` object types. All fields are combined with a logical ‘and.’ */
|
|
25132
|
+
export declare type BlockToManyCustomClaimTypeFilter = {
|
|
25133
|
+
/** Aggregates across related `CustomClaimType` match the filter criteria. */
|
|
25134
|
+
aggregates?: InputMaybe<CustomClaimTypeAggregatesFilter>;
|
|
25135
|
+
/** Every related `CustomClaimType` matches the filter criteria. All fields are combined with a logical ‘and.’ */
|
|
25136
|
+
every?: InputMaybe<CustomClaimTypeFilter>;
|
|
25137
|
+
/** No related `CustomClaimType` matches the filter criteria. All fields are combined with a logical ‘and.’ */
|
|
25138
|
+
none?: InputMaybe<CustomClaimTypeFilter>;
|
|
25139
|
+
/** Some related `CustomClaimType` matches the filter criteria. All fields are combined with a logical ‘and.’ */
|
|
25140
|
+
some?: InputMaybe<CustomClaimTypeFilter>;
|
|
25141
|
+
};
|
|
24767
25142
|
/** A filter to be used against many `Distribution` object types. All fields are combined with a logical ‘and.’ */
|
|
24768
25143
|
export declare type BlockToManyDistributionFilter = {
|
|
24769
25144
|
/** Aggregates across related `Distribution` match the filter criteria. */
|
|
@@ -31392,6 +31767,262 @@ export declare enum BlocksOrderBy {
|
|
|
31392
31767
|
CountExtrinsicsUnsignedDesc = "COUNT_EXTRINSICS_UNSIGNED_DESC",
|
|
31393
31768
|
CreatedAtAsc = "CREATED_AT_ASC",
|
|
31394
31769
|
CreatedAtDesc = "CREATED_AT_DESC",
|
|
31770
|
+
CustomClaimTypesByCreatedBlockIdAverageCreatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC",
|
|
31771
|
+
CustomClaimTypesByCreatedBlockIdAverageCreatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC",
|
|
31772
|
+
CustomClaimTypesByCreatedBlockIdAverageCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC",
|
|
31773
|
+
CustomClaimTypesByCreatedBlockIdAverageCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC",
|
|
31774
|
+
CustomClaimTypesByCreatedBlockIdAverageIdentityIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC",
|
|
31775
|
+
CustomClaimTypesByCreatedBlockIdAverageIdentityIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC",
|
|
31776
|
+
CustomClaimTypesByCreatedBlockIdAverageIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC",
|
|
31777
|
+
CustomClaimTypesByCreatedBlockIdAverageIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC",
|
|
31778
|
+
CustomClaimTypesByCreatedBlockIdAverageNameAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_NAME_ASC",
|
|
31779
|
+
CustomClaimTypesByCreatedBlockIdAverageNameDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_NAME_DESC",
|
|
31780
|
+
CustomClaimTypesByCreatedBlockIdAverageUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_AT_ASC",
|
|
31781
|
+
CustomClaimTypesByCreatedBlockIdAverageUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_AT_DESC",
|
|
31782
|
+
CustomClaimTypesByCreatedBlockIdAverageUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC",
|
|
31783
|
+
CustomClaimTypesByCreatedBlockIdAverageUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC",
|
|
31784
|
+
CustomClaimTypesByCreatedBlockIdCountAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_COUNT_ASC",
|
|
31785
|
+
CustomClaimTypesByCreatedBlockIdCountDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_COUNT_DESC",
|
|
31786
|
+
CustomClaimTypesByCreatedBlockIdDistinctCountCreatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC",
|
|
31787
|
+
CustomClaimTypesByCreatedBlockIdDistinctCountCreatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC",
|
|
31788
|
+
CustomClaimTypesByCreatedBlockIdDistinctCountCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC",
|
|
31789
|
+
CustomClaimTypesByCreatedBlockIdDistinctCountCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC",
|
|
31790
|
+
CustomClaimTypesByCreatedBlockIdDistinctCountIdentityIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC",
|
|
31791
|
+
CustomClaimTypesByCreatedBlockIdDistinctCountIdentityIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC",
|
|
31792
|
+
CustomClaimTypesByCreatedBlockIdDistinctCountIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC",
|
|
31793
|
+
CustomClaimTypesByCreatedBlockIdDistinctCountIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC",
|
|
31794
|
+
CustomClaimTypesByCreatedBlockIdDistinctCountNameAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NAME_ASC",
|
|
31795
|
+
CustomClaimTypesByCreatedBlockIdDistinctCountNameDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NAME_DESC",
|
|
31796
|
+
CustomClaimTypesByCreatedBlockIdDistinctCountUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_AT_ASC",
|
|
31797
|
+
CustomClaimTypesByCreatedBlockIdDistinctCountUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_AT_DESC",
|
|
31798
|
+
CustomClaimTypesByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC",
|
|
31799
|
+
CustomClaimTypesByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC",
|
|
31800
|
+
CustomClaimTypesByCreatedBlockIdMaxCreatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC",
|
|
31801
|
+
CustomClaimTypesByCreatedBlockIdMaxCreatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC",
|
|
31802
|
+
CustomClaimTypesByCreatedBlockIdMaxCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC",
|
|
31803
|
+
CustomClaimTypesByCreatedBlockIdMaxCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC",
|
|
31804
|
+
CustomClaimTypesByCreatedBlockIdMaxIdentityIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_ASC",
|
|
31805
|
+
CustomClaimTypesByCreatedBlockIdMaxIdentityIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_DESC",
|
|
31806
|
+
CustomClaimTypesByCreatedBlockIdMaxIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_ID_ASC",
|
|
31807
|
+
CustomClaimTypesByCreatedBlockIdMaxIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_ID_DESC",
|
|
31808
|
+
CustomClaimTypesByCreatedBlockIdMaxNameAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_NAME_ASC",
|
|
31809
|
+
CustomClaimTypesByCreatedBlockIdMaxNameDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_NAME_DESC",
|
|
31810
|
+
CustomClaimTypesByCreatedBlockIdMaxUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_UPDATED_AT_ASC",
|
|
31811
|
+
CustomClaimTypesByCreatedBlockIdMaxUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_UPDATED_AT_DESC",
|
|
31812
|
+
CustomClaimTypesByCreatedBlockIdMaxUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC",
|
|
31813
|
+
CustomClaimTypesByCreatedBlockIdMaxUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC",
|
|
31814
|
+
CustomClaimTypesByCreatedBlockIdMinCreatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC",
|
|
31815
|
+
CustomClaimTypesByCreatedBlockIdMinCreatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC",
|
|
31816
|
+
CustomClaimTypesByCreatedBlockIdMinCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC",
|
|
31817
|
+
CustomClaimTypesByCreatedBlockIdMinCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC",
|
|
31818
|
+
CustomClaimTypesByCreatedBlockIdMinIdentityIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_ASC",
|
|
31819
|
+
CustomClaimTypesByCreatedBlockIdMinIdentityIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_DESC",
|
|
31820
|
+
CustomClaimTypesByCreatedBlockIdMinIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_ID_ASC",
|
|
31821
|
+
CustomClaimTypesByCreatedBlockIdMinIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_ID_DESC",
|
|
31822
|
+
CustomClaimTypesByCreatedBlockIdMinNameAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_NAME_ASC",
|
|
31823
|
+
CustomClaimTypesByCreatedBlockIdMinNameDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_NAME_DESC",
|
|
31824
|
+
CustomClaimTypesByCreatedBlockIdMinUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_UPDATED_AT_ASC",
|
|
31825
|
+
CustomClaimTypesByCreatedBlockIdMinUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_UPDATED_AT_DESC",
|
|
31826
|
+
CustomClaimTypesByCreatedBlockIdMinUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC",
|
|
31827
|
+
CustomClaimTypesByCreatedBlockIdMinUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC",
|
|
31828
|
+
CustomClaimTypesByCreatedBlockIdStddevPopulationCreatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC",
|
|
31829
|
+
CustomClaimTypesByCreatedBlockIdStddevPopulationCreatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC",
|
|
31830
|
+
CustomClaimTypesByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC",
|
|
31831
|
+
CustomClaimTypesByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC",
|
|
31832
|
+
CustomClaimTypesByCreatedBlockIdStddevPopulationIdentityIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC",
|
|
31833
|
+
CustomClaimTypesByCreatedBlockIdStddevPopulationIdentityIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC",
|
|
31834
|
+
CustomClaimTypesByCreatedBlockIdStddevPopulationIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC",
|
|
31835
|
+
CustomClaimTypesByCreatedBlockIdStddevPopulationIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC",
|
|
31836
|
+
CustomClaimTypesByCreatedBlockIdStddevPopulationNameAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NAME_ASC",
|
|
31837
|
+
CustomClaimTypesByCreatedBlockIdStddevPopulationNameDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NAME_DESC",
|
|
31838
|
+
CustomClaimTypesByCreatedBlockIdStddevPopulationUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_AT_ASC",
|
|
31839
|
+
CustomClaimTypesByCreatedBlockIdStddevPopulationUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_AT_DESC",
|
|
31840
|
+
CustomClaimTypesByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC",
|
|
31841
|
+
CustomClaimTypesByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC",
|
|
31842
|
+
CustomClaimTypesByCreatedBlockIdStddevSampleCreatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC",
|
|
31843
|
+
CustomClaimTypesByCreatedBlockIdStddevSampleCreatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC",
|
|
31844
|
+
CustomClaimTypesByCreatedBlockIdStddevSampleCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC",
|
|
31845
|
+
CustomClaimTypesByCreatedBlockIdStddevSampleCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC",
|
|
31846
|
+
CustomClaimTypesByCreatedBlockIdStddevSampleIdentityIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC",
|
|
31847
|
+
CustomClaimTypesByCreatedBlockIdStddevSampleIdentityIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC",
|
|
31848
|
+
CustomClaimTypesByCreatedBlockIdStddevSampleIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC",
|
|
31849
|
+
CustomClaimTypesByCreatedBlockIdStddevSampleIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC",
|
|
31850
|
+
CustomClaimTypesByCreatedBlockIdStddevSampleNameAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NAME_ASC",
|
|
31851
|
+
CustomClaimTypesByCreatedBlockIdStddevSampleNameDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NAME_DESC",
|
|
31852
|
+
CustomClaimTypesByCreatedBlockIdStddevSampleUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_AT_ASC",
|
|
31853
|
+
CustomClaimTypesByCreatedBlockIdStddevSampleUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_AT_DESC",
|
|
31854
|
+
CustomClaimTypesByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC",
|
|
31855
|
+
CustomClaimTypesByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC",
|
|
31856
|
+
CustomClaimTypesByCreatedBlockIdSumCreatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC",
|
|
31857
|
+
CustomClaimTypesByCreatedBlockIdSumCreatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC",
|
|
31858
|
+
CustomClaimTypesByCreatedBlockIdSumCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC",
|
|
31859
|
+
CustomClaimTypesByCreatedBlockIdSumCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC",
|
|
31860
|
+
CustomClaimTypesByCreatedBlockIdSumIdentityIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_ASC",
|
|
31861
|
+
CustomClaimTypesByCreatedBlockIdSumIdentityIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_DESC",
|
|
31862
|
+
CustomClaimTypesByCreatedBlockIdSumIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_ID_ASC",
|
|
31863
|
+
CustomClaimTypesByCreatedBlockIdSumIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_ID_DESC",
|
|
31864
|
+
CustomClaimTypesByCreatedBlockIdSumNameAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_NAME_ASC",
|
|
31865
|
+
CustomClaimTypesByCreatedBlockIdSumNameDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_NAME_DESC",
|
|
31866
|
+
CustomClaimTypesByCreatedBlockIdSumUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_UPDATED_AT_ASC",
|
|
31867
|
+
CustomClaimTypesByCreatedBlockIdSumUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_UPDATED_AT_DESC",
|
|
31868
|
+
CustomClaimTypesByCreatedBlockIdSumUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC",
|
|
31869
|
+
CustomClaimTypesByCreatedBlockIdSumUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC",
|
|
31870
|
+
CustomClaimTypesByCreatedBlockIdVariancePopulationCreatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC",
|
|
31871
|
+
CustomClaimTypesByCreatedBlockIdVariancePopulationCreatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC",
|
|
31872
|
+
CustomClaimTypesByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC",
|
|
31873
|
+
CustomClaimTypesByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC",
|
|
31874
|
+
CustomClaimTypesByCreatedBlockIdVariancePopulationIdentityIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC",
|
|
31875
|
+
CustomClaimTypesByCreatedBlockIdVariancePopulationIdentityIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC",
|
|
31876
|
+
CustomClaimTypesByCreatedBlockIdVariancePopulationIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC",
|
|
31877
|
+
CustomClaimTypesByCreatedBlockIdVariancePopulationIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC",
|
|
31878
|
+
CustomClaimTypesByCreatedBlockIdVariancePopulationNameAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NAME_ASC",
|
|
31879
|
+
CustomClaimTypesByCreatedBlockIdVariancePopulationNameDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NAME_DESC",
|
|
31880
|
+
CustomClaimTypesByCreatedBlockIdVariancePopulationUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_AT_ASC",
|
|
31881
|
+
CustomClaimTypesByCreatedBlockIdVariancePopulationUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_AT_DESC",
|
|
31882
|
+
CustomClaimTypesByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC",
|
|
31883
|
+
CustomClaimTypesByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC",
|
|
31884
|
+
CustomClaimTypesByCreatedBlockIdVarianceSampleCreatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC",
|
|
31885
|
+
CustomClaimTypesByCreatedBlockIdVarianceSampleCreatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC",
|
|
31886
|
+
CustomClaimTypesByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC",
|
|
31887
|
+
CustomClaimTypesByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC",
|
|
31888
|
+
CustomClaimTypesByCreatedBlockIdVarianceSampleIdentityIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC",
|
|
31889
|
+
CustomClaimTypesByCreatedBlockIdVarianceSampleIdentityIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC",
|
|
31890
|
+
CustomClaimTypesByCreatedBlockIdVarianceSampleIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC",
|
|
31891
|
+
CustomClaimTypesByCreatedBlockIdVarianceSampleIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC",
|
|
31892
|
+
CustomClaimTypesByCreatedBlockIdVarianceSampleNameAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_ASC",
|
|
31893
|
+
CustomClaimTypesByCreatedBlockIdVarianceSampleNameDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_DESC",
|
|
31894
|
+
CustomClaimTypesByCreatedBlockIdVarianceSampleUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_AT_ASC",
|
|
31895
|
+
CustomClaimTypesByCreatedBlockIdVarianceSampleUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_AT_DESC",
|
|
31896
|
+
CustomClaimTypesByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC",
|
|
31897
|
+
CustomClaimTypesByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC",
|
|
31898
|
+
CustomClaimTypesByUpdatedBlockIdAverageCreatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC",
|
|
31899
|
+
CustomClaimTypesByUpdatedBlockIdAverageCreatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC",
|
|
31900
|
+
CustomClaimTypesByUpdatedBlockIdAverageCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC",
|
|
31901
|
+
CustomClaimTypesByUpdatedBlockIdAverageCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC",
|
|
31902
|
+
CustomClaimTypesByUpdatedBlockIdAverageIdentityIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC",
|
|
31903
|
+
CustomClaimTypesByUpdatedBlockIdAverageIdentityIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC",
|
|
31904
|
+
CustomClaimTypesByUpdatedBlockIdAverageIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC",
|
|
31905
|
+
CustomClaimTypesByUpdatedBlockIdAverageIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC",
|
|
31906
|
+
CustomClaimTypesByUpdatedBlockIdAverageNameAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_NAME_ASC",
|
|
31907
|
+
CustomClaimTypesByUpdatedBlockIdAverageNameDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_NAME_DESC",
|
|
31908
|
+
CustomClaimTypesByUpdatedBlockIdAverageUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_AT_ASC",
|
|
31909
|
+
CustomClaimTypesByUpdatedBlockIdAverageUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_AT_DESC",
|
|
31910
|
+
CustomClaimTypesByUpdatedBlockIdAverageUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC",
|
|
31911
|
+
CustomClaimTypesByUpdatedBlockIdAverageUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC",
|
|
31912
|
+
CustomClaimTypesByUpdatedBlockIdCountAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_COUNT_ASC",
|
|
31913
|
+
CustomClaimTypesByUpdatedBlockIdCountDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_COUNT_DESC",
|
|
31914
|
+
CustomClaimTypesByUpdatedBlockIdDistinctCountCreatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC",
|
|
31915
|
+
CustomClaimTypesByUpdatedBlockIdDistinctCountCreatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC",
|
|
31916
|
+
CustomClaimTypesByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC",
|
|
31917
|
+
CustomClaimTypesByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC",
|
|
31918
|
+
CustomClaimTypesByUpdatedBlockIdDistinctCountIdentityIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC",
|
|
31919
|
+
CustomClaimTypesByUpdatedBlockIdDistinctCountIdentityIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC",
|
|
31920
|
+
CustomClaimTypesByUpdatedBlockIdDistinctCountIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC",
|
|
31921
|
+
CustomClaimTypesByUpdatedBlockIdDistinctCountIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC",
|
|
31922
|
+
CustomClaimTypesByUpdatedBlockIdDistinctCountNameAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NAME_ASC",
|
|
31923
|
+
CustomClaimTypesByUpdatedBlockIdDistinctCountNameDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NAME_DESC",
|
|
31924
|
+
CustomClaimTypesByUpdatedBlockIdDistinctCountUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_AT_ASC",
|
|
31925
|
+
CustomClaimTypesByUpdatedBlockIdDistinctCountUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_AT_DESC",
|
|
31926
|
+
CustomClaimTypesByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC",
|
|
31927
|
+
CustomClaimTypesByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC",
|
|
31928
|
+
CustomClaimTypesByUpdatedBlockIdMaxCreatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC",
|
|
31929
|
+
CustomClaimTypesByUpdatedBlockIdMaxCreatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC",
|
|
31930
|
+
CustomClaimTypesByUpdatedBlockIdMaxCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC",
|
|
31931
|
+
CustomClaimTypesByUpdatedBlockIdMaxCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC",
|
|
31932
|
+
CustomClaimTypesByUpdatedBlockIdMaxIdentityIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_ASC",
|
|
31933
|
+
CustomClaimTypesByUpdatedBlockIdMaxIdentityIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_DESC",
|
|
31934
|
+
CustomClaimTypesByUpdatedBlockIdMaxIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_ID_ASC",
|
|
31935
|
+
CustomClaimTypesByUpdatedBlockIdMaxIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_ID_DESC",
|
|
31936
|
+
CustomClaimTypesByUpdatedBlockIdMaxNameAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_NAME_ASC",
|
|
31937
|
+
CustomClaimTypesByUpdatedBlockIdMaxNameDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_NAME_DESC",
|
|
31938
|
+
CustomClaimTypesByUpdatedBlockIdMaxUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_AT_ASC",
|
|
31939
|
+
CustomClaimTypesByUpdatedBlockIdMaxUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_AT_DESC",
|
|
31940
|
+
CustomClaimTypesByUpdatedBlockIdMaxUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC",
|
|
31941
|
+
CustomClaimTypesByUpdatedBlockIdMaxUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC",
|
|
31942
|
+
CustomClaimTypesByUpdatedBlockIdMinCreatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC",
|
|
31943
|
+
CustomClaimTypesByUpdatedBlockIdMinCreatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC",
|
|
31944
|
+
CustomClaimTypesByUpdatedBlockIdMinCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC",
|
|
31945
|
+
CustomClaimTypesByUpdatedBlockIdMinCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC",
|
|
31946
|
+
CustomClaimTypesByUpdatedBlockIdMinIdentityIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_ASC",
|
|
31947
|
+
CustomClaimTypesByUpdatedBlockIdMinIdentityIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_DESC",
|
|
31948
|
+
CustomClaimTypesByUpdatedBlockIdMinIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_ID_ASC",
|
|
31949
|
+
CustomClaimTypesByUpdatedBlockIdMinIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_ID_DESC",
|
|
31950
|
+
CustomClaimTypesByUpdatedBlockIdMinNameAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_NAME_ASC",
|
|
31951
|
+
CustomClaimTypesByUpdatedBlockIdMinNameDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_NAME_DESC",
|
|
31952
|
+
CustomClaimTypesByUpdatedBlockIdMinUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_AT_ASC",
|
|
31953
|
+
CustomClaimTypesByUpdatedBlockIdMinUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_AT_DESC",
|
|
31954
|
+
CustomClaimTypesByUpdatedBlockIdMinUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC",
|
|
31955
|
+
CustomClaimTypesByUpdatedBlockIdMinUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC",
|
|
31956
|
+
CustomClaimTypesByUpdatedBlockIdStddevPopulationCreatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC",
|
|
31957
|
+
CustomClaimTypesByUpdatedBlockIdStddevPopulationCreatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC",
|
|
31958
|
+
CustomClaimTypesByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC",
|
|
31959
|
+
CustomClaimTypesByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC",
|
|
31960
|
+
CustomClaimTypesByUpdatedBlockIdStddevPopulationIdentityIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC",
|
|
31961
|
+
CustomClaimTypesByUpdatedBlockIdStddevPopulationIdentityIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC",
|
|
31962
|
+
CustomClaimTypesByUpdatedBlockIdStddevPopulationIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC",
|
|
31963
|
+
CustomClaimTypesByUpdatedBlockIdStddevPopulationIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC",
|
|
31964
|
+
CustomClaimTypesByUpdatedBlockIdStddevPopulationNameAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NAME_ASC",
|
|
31965
|
+
CustomClaimTypesByUpdatedBlockIdStddevPopulationNameDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NAME_DESC",
|
|
31966
|
+
CustomClaimTypesByUpdatedBlockIdStddevPopulationUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_AT_ASC",
|
|
31967
|
+
CustomClaimTypesByUpdatedBlockIdStddevPopulationUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_AT_DESC",
|
|
31968
|
+
CustomClaimTypesByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC",
|
|
31969
|
+
CustomClaimTypesByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC",
|
|
31970
|
+
CustomClaimTypesByUpdatedBlockIdStddevSampleCreatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC",
|
|
31971
|
+
CustomClaimTypesByUpdatedBlockIdStddevSampleCreatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC",
|
|
31972
|
+
CustomClaimTypesByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC",
|
|
31973
|
+
CustomClaimTypesByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC",
|
|
31974
|
+
CustomClaimTypesByUpdatedBlockIdStddevSampleIdentityIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC",
|
|
31975
|
+
CustomClaimTypesByUpdatedBlockIdStddevSampleIdentityIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC",
|
|
31976
|
+
CustomClaimTypesByUpdatedBlockIdStddevSampleIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC",
|
|
31977
|
+
CustomClaimTypesByUpdatedBlockIdStddevSampleIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC",
|
|
31978
|
+
CustomClaimTypesByUpdatedBlockIdStddevSampleNameAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NAME_ASC",
|
|
31979
|
+
CustomClaimTypesByUpdatedBlockIdStddevSampleNameDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NAME_DESC",
|
|
31980
|
+
CustomClaimTypesByUpdatedBlockIdStddevSampleUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_AT_ASC",
|
|
31981
|
+
CustomClaimTypesByUpdatedBlockIdStddevSampleUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_AT_DESC",
|
|
31982
|
+
CustomClaimTypesByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC",
|
|
31983
|
+
CustomClaimTypesByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC",
|
|
31984
|
+
CustomClaimTypesByUpdatedBlockIdSumCreatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC",
|
|
31985
|
+
CustomClaimTypesByUpdatedBlockIdSumCreatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC",
|
|
31986
|
+
CustomClaimTypesByUpdatedBlockIdSumCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC",
|
|
31987
|
+
CustomClaimTypesByUpdatedBlockIdSumCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC",
|
|
31988
|
+
CustomClaimTypesByUpdatedBlockIdSumIdentityIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_ASC",
|
|
31989
|
+
CustomClaimTypesByUpdatedBlockIdSumIdentityIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_DESC",
|
|
31990
|
+
CustomClaimTypesByUpdatedBlockIdSumIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_ID_ASC",
|
|
31991
|
+
CustomClaimTypesByUpdatedBlockIdSumIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_ID_DESC",
|
|
31992
|
+
CustomClaimTypesByUpdatedBlockIdSumNameAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_NAME_ASC",
|
|
31993
|
+
CustomClaimTypesByUpdatedBlockIdSumNameDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_NAME_DESC",
|
|
31994
|
+
CustomClaimTypesByUpdatedBlockIdSumUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_AT_ASC",
|
|
31995
|
+
CustomClaimTypesByUpdatedBlockIdSumUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_AT_DESC",
|
|
31996
|
+
CustomClaimTypesByUpdatedBlockIdSumUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC",
|
|
31997
|
+
CustomClaimTypesByUpdatedBlockIdSumUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC",
|
|
31998
|
+
CustomClaimTypesByUpdatedBlockIdVariancePopulationCreatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC",
|
|
31999
|
+
CustomClaimTypesByUpdatedBlockIdVariancePopulationCreatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC",
|
|
32000
|
+
CustomClaimTypesByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC",
|
|
32001
|
+
CustomClaimTypesByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC",
|
|
32002
|
+
CustomClaimTypesByUpdatedBlockIdVariancePopulationIdentityIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC",
|
|
32003
|
+
CustomClaimTypesByUpdatedBlockIdVariancePopulationIdentityIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC",
|
|
32004
|
+
CustomClaimTypesByUpdatedBlockIdVariancePopulationIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC",
|
|
32005
|
+
CustomClaimTypesByUpdatedBlockIdVariancePopulationIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC",
|
|
32006
|
+
CustomClaimTypesByUpdatedBlockIdVariancePopulationNameAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NAME_ASC",
|
|
32007
|
+
CustomClaimTypesByUpdatedBlockIdVariancePopulationNameDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NAME_DESC",
|
|
32008
|
+
CustomClaimTypesByUpdatedBlockIdVariancePopulationUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_AT_ASC",
|
|
32009
|
+
CustomClaimTypesByUpdatedBlockIdVariancePopulationUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_AT_DESC",
|
|
32010
|
+
CustomClaimTypesByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC",
|
|
32011
|
+
CustomClaimTypesByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC",
|
|
32012
|
+
CustomClaimTypesByUpdatedBlockIdVarianceSampleCreatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC",
|
|
32013
|
+
CustomClaimTypesByUpdatedBlockIdVarianceSampleCreatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC",
|
|
32014
|
+
CustomClaimTypesByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC",
|
|
32015
|
+
CustomClaimTypesByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC",
|
|
32016
|
+
CustomClaimTypesByUpdatedBlockIdVarianceSampleIdentityIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC",
|
|
32017
|
+
CustomClaimTypesByUpdatedBlockIdVarianceSampleIdentityIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC",
|
|
32018
|
+
CustomClaimTypesByUpdatedBlockIdVarianceSampleIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC",
|
|
32019
|
+
CustomClaimTypesByUpdatedBlockIdVarianceSampleIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC",
|
|
32020
|
+
CustomClaimTypesByUpdatedBlockIdVarianceSampleNameAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_ASC",
|
|
32021
|
+
CustomClaimTypesByUpdatedBlockIdVarianceSampleNameDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_DESC",
|
|
32022
|
+
CustomClaimTypesByUpdatedBlockIdVarianceSampleUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_AT_ASC",
|
|
32023
|
+
CustomClaimTypesByUpdatedBlockIdVarianceSampleUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_AT_DESC",
|
|
32024
|
+
CustomClaimTypesByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC",
|
|
32025
|
+
CustomClaimTypesByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC",
|
|
31395
32026
|
DatetimeAsc = "DATETIME_ASC",
|
|
31396
32027
|
DatetimeDesc = "DATETIME_DESC",
|
|
31397
32028
|
DistributionsByCreatedBlockIdAverageAmountAsc = "DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_ASC",
|
|
@@ -44919,6 +45550,7 @@ export declare enum CallIdEnum {
|
|
|
44919
45550
|
AffirmInstructionWithCount = "affirm_instruction_with_count",
|
|
44920
45551
|
AffirmWithReceipts = "affirm_with_receipts",
|
|
44921
45552
|
AffirmWithReceiptsWithCount = "affirm_with_receipts_with_count",
|
|
45553
|
+
AllowIdentityToCreatePortfolios = "allow_identity_to_create_portfolios",
|
|
44922
45554
|
AllowVenues = "allow_venues",
|
|
44923
45555
|
AmendProposal = "amend_proposal",
|
|
44924
45556
|
Approve = "approve",
|
|
@@ -45009,6 +45641,7 @@ export declare enum CallIdEnum {
|
|
|
45009
45641
|
CreateCheckpoint = "create_checkpoint",
|
|
45010
45642
|
CreateChildIdentities = "create_child_identities",
|
|
45011
45643
|
CreateChildIdentity = "create_child_identity",
|
|
45644
|
+
CreateCustodyPortfolio = "create_custody_portfolio",
|
|
45012
45645
|
CreateFundraiser = "create_fundraiser",
|
|
45013
45646
|
CreateGroup = "create_group",
|
|
45014
45647
|
CreateGroupAndAddAuth = "create_group_and_add_auth",
|
|
@@ -45075,8 +45708,10 @@ export declare enum CallIdEnum {
|
|
|
45075
45708
|
Instantiate = "instantiate",
|
|
45076
45709
|
InstantiateOldWeight = "instantiate_old_weight",
|
|
45077
45710
|
InstantiateWithCode = "instantiate_with_code",
|
|
45711
|
+
InstantiateWithCodeAsPrimaryKey = "instantiate_with_code_as_primary_key",
|
|
45078
45712
|
InstantiateWithCodeOldWeight = "instantiate_with_code_old_weight",
|
|
45079
45713
|
InstantiateWithCodePerms = "instantiate_with_code_perms",
|
|
45714
|
+
InstantiateWithHashAsPrimaryKey = "instantiate_with_hash_as_primary_key",
|
|
45080
45715
|
InstantiateWithHashPerms = "instantiate_with_hash_perms",
|
|
45081
45716
|
InvalidateCddClaims = "invalidate_cdd_claims",
|
|
45082
45717
|
Invest = "invest",
|
|
@@ -45207,6 +45842,7 @@ export declare enum CallIdEnum {
|
|
|
45207
45842
|
ResumeAssetRules = "resume_asset_rules",
|
|
45208
45843
|
RevokeClaim = "revoke_claim",
|
|
45209
45844
|
RevokeClaimByIndex = "revoke_claim_by_index",
|
|
45845
|
+
RevokeCreatePortfoliosPermission = "revoke_create_portfolios_permission",
|
|
45210
45846
|
RevokeOffchainAuthorization = "revoke_offchain_authorization",
|
|
45211
45847
|
RotatePrimaryKeyToSecondary = "rotate_primary_key_to_secondary",
|
|
45212
45848
|
ScaleValidatorCount = "scale_validator_count",
|
|
@@ -45290,6 +45926,7 @@ export declare enum CallIdEnum {
|
|
|
45290
45926
|
UpdateVenueDetails = "update_venue_details",
|
|
45291
45927
|
UpdateVenueSigners = "update_venue_signers",
|
|
45292
45928
|
UpdateVenueType = "update_venue_type",
|
|
45929
|
+
UpgradeApi = "upgrade_api",
|
|
45293
45930
|
UploadCode = "upload_code",
|
|
45294
45931
|
Validate = "validate",
|
|
45295
45932
|
ValidateCddExpiryNominators = "validate_cdd_expiry_nominators",
|
|
@@ -45541,7 +46178,9 @@ export declare type Claim = Node & {
|
|
|
45541
46178
|
/** Reads a single `Block` that is related to this `Claim`. */
|
|
45542
46179
|
createdBlock?: Maybe<Block>;
|
|
45543
46180
|
createdBlockId: Scalars['String']['output'];
|
|
45544
|
-
|
|
46181
|
+
/** Reads a single `CustomClaimType` that is related to this `Claim`. */
|
|
46182
|
+
customClaimType?: Maybe<CustomClaimType>;
|
|
46183
|
+
customClaimTypeId?: Maybe<Scalars['String']['output']>;
|
|
45545
46184
|
eventIdx: Scalars['Int']['output'];
|
|
45546
46185
|
expiry?: Maybe<Scalars['BigFloat']['output']>;
|
|
45547
46186
|
filterExpiry: Scalars['BigFloat']['output'];
|
|
@@ -45611,7 +46250,6 @@ export declare type ClaimAggregatesFilter = {
|
|
|
45611
46250
|
varianceSample?: InputMaybe<ClaimVarianceSampleAggregateFilter>;
|
|
45612
46251
|
};
|
|
45613
46252
|
export declare type ClaimAverageAggregateFilter = {
|
|
45614
|
-
customClaimTypeId?: InputMaybe<BigFloatFilter>;
|
|
45615
46253
|
eventIdx?: InputMaybe<BigFloatFilter>;
|
|
45616
46254
|
expiry?: InputMaybe<BigFloatFilter>;
|
|
45617
46255
|
filterExpiry?: InputMaybe<BigFloatFilter>;
|
|
@@ -45621,8 +46259,6 @@ export declare type ClaimAverageAggregateFilter = {
|
|
|
45621
46259
|
};
|
|
45622
46260
|
export declare type ClaimAverageAggregates = {
|
|
45623
46261
|
__typename?: 'ClaimAverageAggregates';
|
|
45624
|
-
/** Mean average of customClaimTypeId across the matching connection */
|
|
45625
|
-
customClaimTypeId?: Maybe<Scalars['BigFloat']['output']>;
|
|
45626
46262
|
/** Mean average of eventIdx across the matching connection */
|
|
45627
46263
|
eventIdx?: Maybe<Scalars['BigFloat']['output']>;
|
|
45628
46264
|
/** Mean average of expiry across the matching connection */
|
|
@@ -45707,8 +46343,12 @@ export declare type ClaimFilter = {
|
|
|
45707
46343
|
createdBlock?: InputMaybe<BlockFilter>;
|
|
45708
46344
|
/** Filter by the object’s `createdBlockId` field. */
|
|
45709
46345
|
createdBlockId?: InputMaybe<StringFilter>;
|
|
46346
|
+
/** Filter by the object’s `customClaimType` relation. */
|
|
46347
|
+
customClaimType?: InputMaybe<CustomClaimTypeFilter>;
|
|
46348
|
+
/** A related `customClaimType` exists. */
|
|
46349
|
+
customClaimTypeExists?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45710
46350
|
/** Filter by the object’s `customClaimTypeId` field. */
|
|
45711
|
-
customClaimTypeId?: InputMaybe<
|
|
46351
|
+
customClaimTypeId?: InputMaybe<StringFilter>;
|
|
45712
46352
|
/** Filter by the object’s `eventIdx` field. */
|
|
45713
46353
|
eventIdx?: InputMaybe<IntFilter>;
|
|
45714
46354
|
/** Filter by the object’s `expiry` field. */
|
|
@@ -45749,7 +46389,6 @@ export declare type ClaimFilter = {
|
|
|
45749
46389
|
updatedBlockId?: InputMaybe<StringFilter>;
|
|
45750
46390
|
};
|
|
45751
46391
|
export declare type ClaimMaxAggregateFilter = {
|
|
45752
|
-
customClaimTypeId?: InputMaybe<BigFloatFilter>;
|
|
45753
46392
|
eventIdx?: InputMaybe<IntFilter>;
|
|
45754
46393
|
expiry?: InputMaybe<BigFloatFilter>;
|
|
45755
46394
|
filterExpiry?: InputMaybe<BigFloatFilter>;
|
|
@@ -45759,8 +46398,6 @@ export declare type ClaimMaxAggregateFilter = {
|
|
|
45759
46398
|
};
|
|
45760
46399
|
export declare type ClaimMaxAggregates = {
|
|
45761
46400
|
__typename?: 'ClaimMaxAggregates';
|
|
45762
|
-
/** Maximum of customClaimTypeId across the matching connection */
|
|
45763
|
-
customClaimTypeId?: Maybe<Scalars['BigFloat']['output']>;
|
|
45764
46401
|
/** Maximum of eventIdx across the matching connection */
|
|
45765
46402
|
eventIdx?: Maybe<Scalars['Int']['output']>;
|
|
45766
46403
|
/** Maximum of expiry across the matching connection */
|
|
@@ -45775,7 +46412,6 @@ export declare type ClaimMaxAggregates = {
|
|
|
45775
46412
|
revokeDate?: Maybe<Scalars['BigFloat']['output']>;
|
|
45776
46413
|
};
|
|
45777
46414
|
export declare type ClaimMinAggregateFilter = {
|
|
45778
|
-
customClaimTypeId?: InputMaybe<BigFloatFilter>;
|
|
45779
46415
|
eventIdx?: InputMaybe<IntFilter>;
|
|
45780
46416
|
expiry?: InputMaybe<BigFloatFilter>;
|
|
45781
46417
|
filterExpiry?: InputMaybe<BigFloatFilter>;
|
|
@@ -45785,8 +46421,6 @@ export declare type ClaimMinAggregateFilter = {
|
|
|
45785
46421
|
};
|
|
45786
46422
|
export declare type ClaimMinAggregates = {
|
|
45787
46423
|
__typename?: 'ClaimMinAggregates';
|
|
45788
|
-
/** Minimum of customClaimTypeId across the matching connection */
|
|
45789
|
-
customClaimTypeId?: Maybe<Scalars['BigFloat']['output']>;
|
|
45790
46424
|
/** Minimum of eventIdx across the matching connection */
|
|
45791
46425
|
eventIdx?: Maybe<Scalars['Int']['output']>;
|
|
45792
46426
|
/** Minimum of expiry across the matching connection */
|
|
@@ -46009,7 +46643,6 @@ export declare enum ClaimScopesOrderBy {
|
|
|
46009
46643
|
UpdatedBlockIdDesc = "UPDATED_BLOCK_ID_DESC"
|
|
46010
46644
|
}
|
|
46011
46645
|
export declare type ClaimStddevPopulationAggregateFilter = {
|
|
46012
|
-
customClaimTypeId?: InputMaybe<BigFloatFilter>;
|
|
46013
46646
|
eventIdx?: InputMaybe<BigFloatFilter>;
|
|
46014
46647
|
expiry?: InputMaybe<BigFloatFilter>;
|
|
46015
46648
|
filterExpiry?: InputMaybe<BigFloatFilter>;
|
|
@@ -46019,8 +46652,6 @@ export declare type ClaimStddevPopulationAggregateFilter = {
|
|
|
46019
46652
|
};
|
|
46020
46653
|
export declare type ClaimStddevPopulationAggregates = {
|
|
46021
46654
|
__typename?: 'ClaimStddevPopulationAggregates';
|
|
46022
|
-
/** Population standard deviation of customClaimTypeId across the matching connection */
|
|
46023
|
-
customClaimTypeId?: Maybe<Scalars['BigFloat']['output']>;
|
|
46024
46655
|
/** Population standard deviation of eventIdx across the matching connection */
|
|
46025
46656
|
eventIdx?: Maybe<Scalars['BigFloat']['output']>;
|
|
46026
46657
|
/** Population standard deviation of expiry across the matching connection */
|
|
@@ -46035,7 +46666,6 @@ export declare type ClaimStddevPopulationAggregates = {
|
|
|
46035
46666
|
revokeDate?: Maybe<Scalars['BigFloat']['output']>;
|
|
46036
46667
|
};
|
|
46037
46668
|
export declare type ClaimStddevSampleAggregateFilter = {
|
|
46038
|
-
customClaimTypeId?: InputMaybe<BigFloatFilter>;
|
|
46039
46669
|
eventIdx?: InputMaybe<BigFloatFilter>;
|
|
46040
46670
|
expiry?: InputMaybe<BigFloatFilter>;
|
|
46041
46671
|
filterExpiry?: InputMaybe<BigFloatFilter>;
|
|
@@ -46045,8 +46675,6 @@ export declare type ClaimStddevSampleAggregateFilter = {
|
|
|
46045
46675
|
};
|
|
46046
46676
|
export declare type ClaimStddevSampleAggregates = {
|
|
46047
46677
|
__typename?: 'ClaimStddevSampleAggregates';
|
|
46048
|
-
/** Sample standard deviation of customClaimTypeId across the matching connection */
|
|
46049
|
-
customClaimTypeId?: Maybe<Scalars['BigFloat']['output']>;
|
|
46050
46678
|
/** Sample standard deviation of eventIdx across the matching connection */
|
|
46051
46679
|
eventIdx?: Maybe<Scalars['BigFloat']['output']>;
|
|
46052
46680
|
/** Sample standard deviation of expiry across the matching connection */
|
|
@@ -46061,7 +46689,6 @@ export declare type ClaimStddevSampleAggregates = {
|
|
|
46061
46689
|
revokeDate?: Maybe<Scalars['BigFloat']['output']>;
|
|
46062
46690
|
};
|
|
46063
46691
|
export declare type ClaimSumAggregateFilter = {
|
|
46064
|
-
customClaimTypeId?: InputMaybe<BigFloatFilter>;
|
|
46065
46692
|
eventIdx?: InputMaybe<BigIntFilter>;
|
|
46066
46693
|
expiry?: InputMaybe<BigFloatFilter>;
|
|
46067
46694
|
filterExpiry?: InputMaybe<BigFloatFilter>;
|
|
@@ -46071,8 +46698,6 @@ export declare type ClaimSumAggregateFilter = {
|
|
|
46071
46698
|
};
|
|
46072
46699
|
export declare type ClaimSumAggregates = {
|
|
46073
46700
|
__typename?: 'ClaimSumAggregates';
|
|
46074
|
-
/** Sum of customClaimTypeId across the matching connection */
|
|
46075
|
-
customClaimTypeId: Scalars['BigFloat']['output'];
|
|
46076
46701
|
/** Sum of eventIdx across the matching connection */
|
|
46077
46702
|
eventIdx: Scalars['BigInt']['output'];
|
|
46078
46703
|
/** Sum of expiry across the matching connection */
|
|
@@ -46129,7 +46754,6 @@ export declare type ClaimTypeEnumFilter = {
|
|
|
46129
46754
|
notIn?: InputMaybe<Array<ClaimTypeEnum>>;
|
|
46130
46755
|
};
|
|
46131
46756
|
export declare type ClaimVariancePopulationAggregateFilter = {
|
|
46132
|
-
customClaimTypeId?: InputMaybe<BigFloatFilter>;
|
|
46133
46757
|
eventIdx?: InputMaybe<BigFloatFilter>;
|
|
46134
46758
|
expiry?: InputMaybe<BigFloatFilter>;
|
|
46135
46759
|
filterExpiry?: InputMaybe<BigFloatFilter>;
|
|
@@ -46139,8 +46763,6 @@ export declare type ClaimVariancePopulationAggregateFilter = {
|
|
|
46139
46763
|
};
|
|
46140
46764
|
export declare type ClaimVariancePopulationAggregates = {
|
|
46141
46765
|
__typename?: 'ClaimVariancePopulationAggregates';
|
|
46142
|
-
/** Population variance of customClaimTypeId across the matching connection */
|
|
46143
|
-
customClaimTypeId?: Maybe<Scalars['BigFloat']['output']>;
|
|
46144
46766
|
/** Population variance of eventIdx across the matching connection */
|
|
46145
46767
|
eventIdx?: Maybe<Scalars['BigFloat']['output']>;
|
|
46146
46768
|
/** Population variance of expiry across the matching connection */
|
|
@@ -46155,7 +46777,6 @@ export declare type ClaimVariancePopulationAggregates = {
|
|
|
46155
46777
|
revokeDate?: Maybe<Scalars['BigFloat']['output']>;
|
|
46156
46778
|
};
|
|
46157
46779
|
export declare type ClaimVarianceSampleAggregateFilter = {
|
|
46158
|
-
customClaimTypeId?: InputMaybe<BigFloatFilter>;
|
|
46159
46780
|
eventIdx?: InputMaybe<BigFloatFilter>;
|
|
46160
46781
|
expiry?: InputMaybe<BigFloatFilter>;
|
|
46161
46782
|
filterExpiry?: InputMaybe<BigFloatFilter>;
|
|
@@ -46165,8 +46786,6 @@ export declare type ClaimVarianceSampleAggregateFilter = {
|
|
|
46165
46786
|
};
|
|
46166
46787
|
export declare type ClaimVarianceSampleAggregates = {
|
|
46167
46788
|
__typename?: 'ClaimVarianceSampleAggregates';
|
|
46168
|
-
/** Sample variance of customClaimTypeId across the matching connection */
|
|
46169
|
-
customClaimTypeId?: Maybe<Scalars['BigFloat']['output']>;
|
|
46170
46789
|
/** Sample variance of eventIdx across the matching connection */
|
|
46171
46790
|
eventIdx?: Maybe<Scalars['BigFloat']['output']>;
|
|
46172
46791
|
/** Sample variance of expiry across the matching connection */
|
|
@@ -46235,7 +46854,6 @@ export declare enum ClaimsGroupBy {
|
|
|
46235
46854
|
}
|
|
46236
46855
|
export declare type ClaimsHavingAverageInput = {
|
|
46237
46856
|
createdAt?: InputMaybe<HavingDatetimeFilter>;
|
|
46238
|
-
customClaimTypeId?: InputMaybe<HavingBigfloatFilter>;
|
|
46239
46857
|
eventIdx?: InputMaybe<HavingIntFilter>;
|
|
46240
46858
|
expiry?: InputMaybe<HavingBigfloatFilter>;
|
|
46241
46859
|
filterExpiry?: InputMaybe<HavingBigfloatFilter>;
|
|
@@ -46246,7 +46864,6 @@ export declare type ClaimsHavingAverageInput = {
|
|
|
46246
46864
|
};
|
|
46247
46865
|
export declare type ClaimsHavingDistinctCountInput = {
|
|
46248
46866
|
createdAt?: InputMaybe<HavingDatetimeFilter>;
|
|
46249
|
-
customClaimTypeId?: InputMaybe<HavingBigfloatFilter>;
|
|
46250
46867
|
eventIdx?: InputMaybe<HavingIntFilter>;
|
|
46251
46868
|
expiry?: InputMaybe<HavingBigfloatFilter>;
|
|
46252
46869
|
filterExpiry?: InputMaybe<HavingBigfloatFilter>;
|
|
@@ -46271,7 +46888,6 @@ export declare type ClaimsHavingInput = {
|
|
|
46271
46888
|
};
|
|
46272
46889
|
export declare type ClaimsHavingMaxInput = {
|
|
46273
46890
|
createdAt?: InputMaybe<HavingDatetimeFilter>;
|
|
46274
|
-
customClaimTypeId?: InputMaybe<HavingBigfloatFilter>;
|
|
46275
46891
|
eventIdx?: InputMaybe<HavingIntFilter>;
|
|
46276
46892
|
expiry?: InputMaybe<HavingBigfloatFilter>;
|
|
46277
46893
|
filterExpiry?: InputMaybe<HavingBigfloatFilter>;
|
|
@@ -46282,7 +46898,6 @@ export declare type ClaimsHavingMaxInput = {
|
|
|
46282
46898
|
};
|
|
46283
46899
|
export declare type ClaimsHavingMinInput = {
|
|
46284
46900
|
createdAt?: InputMaybe<HavingDatetimeFilter>;
|
|
46285
|
-
customClaimTypeId?: InputMaybe<HavingBigfloatFilter>;
|
|
46286
46901
|
eventIdx?: InputMaybe<HavingIntFilter>;
|
|
46287
46902
|
expiry?: InputMaybe<HavingBigfloatFilter>;
|
|
46288
46903
|
filterExpiry?: InputMaybe<HavingBigfloatFilter>;
|
|
@@ -46293,7 +46908,6 @@ export declare type ClaimsHavingMinInput = {
|
|
|
46293
46908
|
};
|
|
46294
46909
|
export declare type ClaimsHavingStddevPopulationInput = {
|
|
46295
46910
|
createdAt?: InputMaybe<HavingDatetimeFilter>;
|
|
46296
|
-
customClaimTypeId?: InputMaybe<HavingBigfloatFilter>;
|
|
46297
46911
|
eventIdx?: InputMaybe<HavingIntFilter>;
|
|
46298
46912
|
expiry?: InputMaybe<HavingBigfloatFilter>;
|
|
46299
46913
|
filterExpiry?: InputMaybe<HavingBigfloatFilter>;
|
|
@@ -46304,7 +46918,6 @@ export declare type ClaimsHavingStddevPopulationInput = {
|
|
|
46304
46918
|
};
|
|
46305
46919
|
export declare type ClaimsHavingStddevSampleInput = {
|
|
46306
46920
|
createdAt?: InputMaybe<HavingDatetimeFilter>;
|
|
46307
|
-
customClaimTypeId?: InputMaybe<HavingBigfloatFilter>;
|
|
46308
46921
|
eventIdx?: InputMaybe<HavingIntFilter>;
|
|
46309
46922
|
expiry?: InputMaybe<HavingBigfloatFilter>;
|
|
46310
46923
|
filterExpiry?: InputMaybe<HavingBigfloatFilter>;
|
|
@@ -46315,7 +46928,6 @@ export declare type ClaimsHavingStddevSampleInput = {
|
|
|
46315
46928
|
};
|
|
46316
46929
|
export declare type ClaimsHavingSumInput = {
|
|
46317
46930
|
createdAt?: InputMaybe<HavingDatetimeFilter>;
|
|
46318
|
-
customClaimTypeId?: InputMaybe<HavingBigfloatFilter>;
|
|
46319
46931
|
eventIdx?: InputMaybe<HavingIntFilter>;
|
|
46320
46932
|
expiry?: InputMaybe<HavingBigfloatFilter>;
|
|
46321
46933
|
filterExpiry?: InputMaybe<HavingBigfloatFilter>;
|
|
@@ -46326,7 +46938,6 @@ export declare type ClaimsHavingSumInput = {
|
|
|
46326
46938
|
};
|
|
46327
46939
|
export declare type ClaimsHavingVariancePopulationInput = {
|
|
46328
46940
|
createdAt?: InputMaybe<HavingDatetimeFilter>;
|
|
46329
|
-
customClaimTypeId?: InputMaybe<HavingBigfloatFilter>;
|
|
46330
46941
|
eventIdx?: InputMaybe<HavingIntFilter>;
|
|
46331
46942
|
expiry?: InputMaybe<HavingBigfloatFilter>;
|
|
46332
46943
|
filterExpiry?: InputMaybe<HavingBigfloatFilter>;
|
|
@@ -46337,7 +46948,6 @@ export declare type ClaimsHavingVariancePopulationInput = {
|
|
|
46337
46948
|
};
|
|
46338
46949
|
export declare type ClaimsHavingVarianceSampleInput = {
|
|
46339
46950
|
createdAt?: InputMaybe<HavingDatetimeFilter>;
|
|
46340
|
-
customClaimTypeId?: InputMaybe<HavingBigfloatFilter>;
|
|
46341
46951
|
eventIdx?: InputMaybe<HavingIntFilter>;
|
|
46342
46952
|
expiry?: InputMaybe<HavingBigfloatFilter>;
|
|
46343
46953
|
filterExpiry?: InputMaybe<HavingBigfloatFilter>;
|
|
@@ -46705,6 +47315,781 @@ export declare enum CompliancesOrderBy {
|
|
|
46705
47315
|
UpdatedBlockIdAsc = "UPDATED_BLOCK_ID_ASC",
|
|
46706
47316
|
UpdatedBlockIdDesc = "UPDATED_BLOCK_ID_DESC"
|
|
46707
47317
|
}
|
|
47318
|
+
/** Represents the registered CustomClaimType */
|
|
47319
|
+
export declare type CustomClaimType = Node & {
|
|
47320
|
+
__typename?: 'CustomClaimType';
|
|
47321
|
+
/** Reads and enables pagination through a set of `Block`. */
|
|
47322
|
+
blocksByClaimCustomClaimTypeIdAndCreatedBlockId: CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyConnection;
|
|
47323
|
+
/** Reads and enables pagination through a set of `Block`. */
|
|
47324
|
+
blocksByClaimCustomClaimTypeIdAndUpdatedBlockId: CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnection;
|
|
47325
|
+
/** Reads and enables pagination through a set of `Claim`. */
|
|
47326
|
+
claims: ClaimsConnection;
|
|
47327
|
+
createdAt: Scalars['Datetime']['output'];
|
|
47328
|
+
/** Reads a single `Block` that is related to this `CustomClaimType`. */
|
|
47329
|
+
createdBlock?: Maybe<Block>;
|
|
47330
|
+
createdBlockId: Scalars['String']['output'];
|
|
47331
|
+
id: Scalars['String']['output'];
|
|
47332
|
+
/** Reads and enables pagination through a set of `Identity`. */
|
|
47333
|
+
identitiesByClaimCustomClaimTypeIdAndIssuerId: CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyConnection;
|
|
47334
|
+
/** Reads and enables pagination through a set of `Identity`. */
|
|
47335
|
+
identitiesByClaimCustomClaimTypeIdAndTargetId: CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyConnection;
|
|
47336
|
+
/** Reads a single `Identity` that is related to this `CustomClaimType`. */
|
|
47337
|
+
identity?: Maybe<Identity>;
|
|
47338
|
+
identityId?: Maybe<Scalars['String']['output']>;
|
|
47339
|
+
name: Scalars['String']['output'];
|
|
47340
|
+
/** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
|
|
47341
|
+
nodeId: Scalars['ID']['output'];
|
|
47342
|
+
updatedAt: Scalars['Datetime']['output'];
|
|
47343
|
+
/** Reads a single `Block` that is related to this `CustomClaimType`. */
|
|
47344
|
+
updatedBlock?: Maybe<Block>;
|
|
47345
|
+
updatedBlockId: Scalars['String']['output'];
|
|
47346
|
+
};
|
|
47347
|
+
/** Represents the registered CustomClaimType */
|
|
47348
|
+
export declare type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdArgs = {
|
|
47349
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
47350
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
47351
|
+
distinct?: InputMaybe<Array<InputMaybe<Blocks_Distinct_Enum>>>;
|
|
47352
|
+
filter?: InputMaybe<BlockFilter>;
|
|
47353
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47354
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47355
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
47356
|
+
orderBy?: InputMaybe<Array<BlocksOrderBy>>;
|
|
47357
|
+
};
|
|
47358
|
+
/** Represents the registered CustomClaimType */
|
|
47359
|
+
export declare type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdArgs = {
|
|
47360
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
47361
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
47362
|
+
distinct?: InputMaybe<Array<InputMaybe<Blocks_Distinct_Enum>>>;
|
|
47363
|
+
filter?: InputMaybe<BlockFilter>;
|
|
47364
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47365
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47366
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
47367
|
+
orderBy?: InputMaybe<Array<BlocksOrderBy>>;
|
|
47368
|
+
};
|
|
47369
|
+
/** Represents the registered CustomClaimType */
|
|
47370
|
+
export declare type CustomClaimTypeClaimsArgs = {
|
|
47371
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
47372
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
47373
|
+
distinct?: InputMaybe<Array<InputMaybe<Claims_Distinct_Enum>>>;
|
|
47374
|
+
filter?: InputMaybe<ClaimFilter>;
|
|
47375
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47376
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47377
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
47378
|
+
orderBy?: InputMaybe<Array<ClaimsOrderBy>>;
|
|
47379
|
+
};
|
|
47380
|
+
/** Represents the registered CustomClaimType */
|
|
47381
|
+
export declare type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdArgs = {
|
|
47382
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
47383
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
47384
|
+
distinct?: InputMaybe<Array<InputMaybe<Identities_Distinct_Enum>>>;
|
|
47385
|
+
filter?: InputMaybe<IdentityFilter>;
|
|
47386
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47387
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47388
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
47389
|
+
orderBy?: InputMaybe<Array<IdentitiesOrderBy>>;
|
|
47390
|
+
};
|
|
47391
|
+
/** Represents the registered CustomClaimType */
|
|
47392
|
+
export declare type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdArgs = {
|
|
47393
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
47394
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
47395
|
+
distinct?: InputMaybe<Array<InputMaybe<Identities_Distinct_Enum>>>;
|
|
47396
|
+
filter?: InputMaybe<IdentityFilter>;
|
|
47397
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47398
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47399
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
47400
|
+
orderBy?: InputMaybe<Array<IdentitiesOrderBy>>;
|
|
47401
|
+
};
|
|
47402
|
+
export declare type CustomClaimTypeAggregates = {
|
|
47403
|
+
__typename?: 'CustomClaimTypeAggregates';
|
|
47404
|
+
/** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
47405
|
+
distinctCount?: Maybe<CustomClaimTypeDistinctCountAggregates>;
|
|
47406
|
+
keys?: Maybe<Array<Scalars['String']['output']>>;
|
|
47407
|
+
};
|
|
47408
|
+
/** A filter to be used against aggregates of `CustomClaimType` object types. */
|
|
47409
|
+
export declare type CustomClaimTypeAggregatesFilter = {
|
|
47410
|
+
/** Distinct count aggregate over matching `CustomClaimType` objects. */
|
|
47411
|
+
distinctCount?: InputMaybe<CustomClaimTypeDistinctCountAggregateFilter>;
|
|
47412
|
+
/** A filter that must pass for the relevant `CustomClaimType` object to be included within the aggregate. */
|
|
47413
|
+
filter?: InputMaybe<CustomClaimTypeFilter>;
|
|
47414
|
+
};
|
|
47415
|
+
/** A connection to a list of `Block` values, with data from `Claim`. */
|
|
47416
|
+
export declare type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyConnection = {
|
|
47417
|
+
__typename?: 'CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyConnection';
|
|
47418
|
+
/** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
47419
|
+
aggregates?: Maybe<BlockAggregates>;
|
|
47420
|
+
/** A list of edges which contains the `Block`, info from the `Claim`, and the cursor to aid in pagination. */
|
|
47421
|
+
edges: Array<CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyEdge>;
|
|
47422
|
+
/** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
47423
|
+
groupedAggregates?: Maybe<Array<BlockAggregates>>;
|
|
47424
|
+
/** A list of `Block` objects. */
|
|
47425
|
+
nodes: Array<Maybe<Block>>;
|
|
47426
|
+
/** Information to aid in pagination. */
|
|
47427
|
+
pageInfo: PageInfo;
|
|
47428
|
+
/** The count of *all* `Block` you could get from the connection. */
|
|
47429
|
+
totalCount: Scalars['Int']['output'];
|
|
47430
|
+
};
|
|
47431
|
+
/** A connection to a list of `Block` values, with data from `Claim`. */
|
|
47432
|
+
export declare type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = {
|
|
47433
|
+
groupBy: Array<BlocksGroupBy>;
|
|
47434
|
+
having?: InputMaybe<BlocksHavingInput>;
|
|
47435
|
+
};
|
|
47436
|
+
/** A `Block` edge in the connection, with data from `Claim`. */
|
|
47437
|
+
export declare type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyEdge = {
|
|
47438
|
+
__typename?: 'CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyEdge';
|
|
47439
|
+
/** Reads and enables pagination through a set of `Claim`. */
|
|
47440
|
+
claimsByCreatedBlockId: ClaimsConnection;
|
|
47441
|
+
/** A cursor for use in pagination. */
|
|
47442
|
+
cursor?: Maybe<Scalars['Cursor']['output']>;
|
|
47443
|
+
/** The `Block` at the end of the edge. */
|
|
47444
|
+
node?: Maybe<Block>;
|
|
47445
|
+
};
|
|
47446
|
+
/** A `Block` edge in the connection, with data from `Claim`. */
|
|
47447
|
+
export declare type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyEdgeClaimsByCreatedBlockIdArgs = {
|
|
47448
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
47449
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
47450
|
+
distinct?: InputMaybe<Array<InputMaybe<Claims_Distinct_Enum>>>;
|
|
47451
|
+
filter?: InputMaybe<ClaimFilter>;
|
|
47452
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47453
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47454
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
47455
|
+
orderBy?: InputMaybe<Array<ClaimsOrderBy>>;
|
|
47456
|
+
};
|
|
47457
|
+
/** A connection to a list of `Block` values, with data from `Claim`. */
|
|
47458
|
+
export declare type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnection = {
|
|
47459
|
+
__typename?: 'CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnection';
|
|
47460
|
+
/** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
47461
|
+
aggregates?: Maybe<BlockAggregates>;
|
|
47462
|
+
/** A list of edges which contains the `Block`, info from the `Claim`, and the cursor to aid in pagination. */
|
|
47463
|
+
edges: Array<CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyEdge>;
|
|
47464
|
+
/** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
47465
|
+
groupedAggregates?: Maybe<Array<BlockAggregates>>;
|
|
47466
|
+
/** A list of `Block` objects. */
|
|
47467
|
+
nodes: Array<Maybe<Block>>;
|
|
47468
|
+
/** Information to aid in pagination. */
|
|
47469
|
+
pageInfo: PageInfo;
|
|
47470
|
+
/** The count of *all* `Block` you could get from the connection. */
|
|
47471
|
+
totalCount: Scalars['Int']['output'];
|
|
47472
|
+
};
|
|
47473
|
+
/** A connection to a list of `Block` values, with data from `Claim`. */
|
|
47474
|
+
export declare type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = {
|
|
47475
|
+
groupBy: Array<BlocksGroupBy>;
|
|
47476
|
+
having?: InputMaybe<BlocksHavingInput>;
|
|
47477
|
+
};
|
|
47478
|
+
/** A `Block` edge in the connection, with data from `Claim`. */
|
|
47479
|
+
export declare type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyEdge = {
|
|
47480
|
+
__typename?: 'CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyEdge';
|
|
47481
|
+
/** Reads and enables pagination through a set of `Claim`. */
|
|
47482
|
+
claimsByUpdatedBlockId: ClaimsConnection;
|
|
47483
|
+
/** A cursor for use in pagination. */
|
|
47484
|
+
cursor?: Maybe<Scalars['Cursor']['output']>;
|
|
47485
|
+
/** The `Block` at the end of the edge. */
|
|
47486
|
+
node?: Maybe<Block>;
|
|
47487
|
+
};
|
|
47488
|
+
/** A `Block` edge in the connection, with data from `Claim`. */
|
|
47489
|
+
export declare type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyEdgeClaimsByUpdatedBlockIdArgs = {
|
|
47490
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
47491
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
47492
|
+
distinct?: InputMaybe<Array<InputMaybe<Claims_Distinct_Enum>>>;
|
|
47493
|
+
filter?: InputMaybe<ClaimFilter>;
|
|
47494
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47495
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47496
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
47497
|
+
orderBy?: InputMaybe<Array<ClaimsOrderBy>>;
|
|
47498
|
+
};
|
|
47499
|
+
export declare type CustomClaimTypeDistinctCountAggregateFilter = {
|
|
47500
|
+
createdAt?: InputMaybe<BigIntFilter>;
|
|
47501
|
+
createdBlockId?: InputMaybe<BigIntFilter>;
|
|
47502
|
+
id?: InputMaybe<BigIntFilter>;
|
|
47503
|
+
identityId?: InputMaybe<BigIntFilter>;
|
|
47504
|
+
name?: InputMaybe<BigIntFilter>;
|
|
47505
|
+
updatedAt?: InputMaybe<BigIntFilter>;
|
|
47506
|
+
updatedBlockId?: InputMaybe<BigIntFilter>;
|
|
47507
|
+
};
|
|
47508
|
+
export declare type CustomClaimTypeDistinctCountAggregates = {
|
|
47509
|
+
__typename?: 'CustomClaimTypeDistinctCountAggregates';
|
|
47510
|
+
/** Distinct count of createdAt across the matching connection */
|
|
47511
|
+
createdAt?: Maybe<Scalars['BigInt']['output']>;
|
|
47512
|
+
/** Distinct count of createdBlockId across the matching connection */
|
|
47513
|
+
createdBlockId?: Maybe<Scalars['BigInt']['output']>;
|
|
47514
|
+
/** Distinct count of id across the matching connection */
|
|
47515
|
+
id?: Maybe<Scalars['BigInt']['output']>;
|
|
47516
|
+
/** Distinct count of identityId across the matching connection */
|
|
47517
|
+
identityId?: Maybe<Scalars['BigInt']['output']>;
|
|
47518
|
+
/** Distinct count of name across the matching connection */
|
|
47519
|
+
name?: Maybe<Scalars['BigInt']['output']>;
|
|
47520
|
+
/** Distinct count of updatedAt across the matching connection */
|
|
47521
|
+
updatedAt?: Maybe<Scalars['BigInt']['output']>;
|
|
47522
|
+
/** Distinct count of updatedBlockId across the matching connection */
|
|
47523
|
+
updatedBlockId?: Maybe<Scalars['BigInt']['output']>;
|
|
47524
|
+
};
|
|
47525
|
+
/** A filter to be used against `CustomClaimType` object types. All fields are combined with a logical ‘and.’ */
|
|
47526
|
+
export declare type CustomClaimTypeFilter = {
|
|
47527
|
+
/** Checks for all expressions in this list. */
|
|
47528
|
+
and?: InputMaybe<Array<CustomClaimTypeFilter>>;
|
|
47529
|
+
/** Filter by the object’s `claims` relation. */
|
|
47530
|
+
claims?: InputMaybe<CustomClaimTypeToManyClaimFilter>;
|
|
47531
|
+
/** Some related `claims` exist. */
|
|
47532
|
+
claimsExist?: InputMaybe<Scalars['Boolean']['input']>;
|
|
47533
|
+
/** Filter by the object’s `createdAt` field. */
|
|
47534
|
+
createdAt?: InputMaybe<DatetimeFilter>;
|
|
47535
|
+
/** Filter by the object’s `createdBlock` relation. */
|
|
47536
|
+
createdBlock?: InputMaybe<BlockFilter>;
|
|
47537
|
+
/** Filter by the object’s `createdBlockId` field. */
|
|
47538
|
+
createdBlockId?: InputMaybe<StringFilter>;
|
|
47539
|
+
/** Filter by the object’s `id` field. */
|
|
47540
|
+
id?: InputMaybe<StringFilter>;
|
|
47541
|
+
/** Filter by the object’s `identity` relation. */
|
|
47542
|
+
identity?: InputMaybe<IdentityFilter>;
|
|
47543
|
+
/** A related `identity` exists. */
|
|
47544
|
+
identityExists?: InputMaybe<Scalars['Boolean']['input']>;
|
|
47545
|
+
/** Filter by the object’s `identityId` field. */
|
|
47546
|
+
identityId?: InputMaybe<StringFilter>;
|
|
47547
|
+
/** Filter by the object’s `name` field. */
|
|
47548
|
+
name?: InputMaybe<StringFilter>;
|
|
47549
|
+
/** Negates the expression. */
|
|
47550
|
+
not?: InputMaybe<CustomClaimTypeFilter>;
|
|
47551
|
+
/** Checks for any expressions in this list. */
|
|
47552
|
+
or?: InputMaybe<Array<CustomClaimTypeFilter>>;
|
|
47553
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
47554
|
+
updatedAt?: InputMaybe<DatetimeFilter>;
|
|
47555
|
+
/** Filter by the object’s `updatedBlock` relation. */
|
|
47556
|
+
updatedBlock?: InputMaybe<BlockFilter>;
|
|
47557
|
+
/** Filter by the object’s `updatedBlockId` field. */
|
|
47558
|
+
updatedBlockId?: InputMaybe<StringFilter>;
|
|
47559
|
+
};
|
|
47560
|
+
/** A connection to a list of `Identity` values, with data from `Claim`. */
|
|
47561
|
+
export declare type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyConnection = {
|
|
47562
|
+
__typename?: 'CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyConnection';
|
|
47563
|
+
/** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
47564
|
+
aggregates?: Maybe<IdentityAggregates>;
|
|
47565
|
+
/** A list of edges which contains the `Identity`, info from the `Claim`, and the cursor to aid in pagination. */
|
|
47566
|
+
edges: Array<CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyEdge>;
|
|
47567
|
+
/** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
47568
|
+
groupedAggregates?: Maybe<Array<IdentityAggregates>>;
|
|
47569
|
+
/** A list of `Identity` objects. */
|
|
47570
|
+
nodes: Array<Maybe<Identity>>;
|
|
47571
|
+
/** Information to aid in pagination. */
|
|
47572
|
+
pageInfo: PageInfo;
|
|
47573
|
+
/** The count of *all* `Identity` you could get from the connection. */
|
|
47574
|
+
totalCount: Scalars['Int']['output'];
|
|
47575
|
+
};
|
|
47576
|
+
/** A connection to a list of `Identity` values, with data from `Claim`. */
|
|
47577
|
+
export declare type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyConnectionGroupedAggregatesArgs = {
|
|
47578
|
+
groupBy: Array<IdentitiesGroupBy>;
|
|
47579
|
+
having?: InputMaybe<IdentitiesHavingInput>;
|
|
47580
|
+
};
|
|
47581
|
+
/** A `Identity` edge in the connection, with data from `Claim`. */
|
|
47582
|
+
export declare type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyEdge = {
|
|
47583
|
+
__typename?: 'CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyEdge';
|
|
47584
|
+
/** Reads and enables pagination through a set of `Claim`. */
|
|
47585
|
+
claimsByIssuerId: ClaimsConnection;
|
|
47586
|
+
/** A cursor for use in pagination. */
|
|
47587
|
+
cursor?: Maybe<Scalars['Cursor']['output']>;
|
|
47588
|
+
/** The `Identity` at the end of the edge. */
|
|
47589
|
+
node?: Maybe<Identity>;
|
|
47590
|
+
};
|
|
47591
|
+
/** A `Identity` edge in the connection, with data from `Claim`. */
|
|
47592
|
+
export declare type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyEdgeClaimsByIssuerIdArgs = {
|
|
47593
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
47594
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
47595
|
+
distinct?: InputMaybe<Array<InputMaybe<Claims_Distinct_Enum>>>;
|
|
47596
|
+
filter?: InputMaybe<ClaimFilter>;
|
|
47597
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47598
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47599
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
47600
|
+
orderBy?: InputMaybe<Array<ClaimsOrderBy>>;
|
|
47601
|
+
};
|
|
47602
|
+
/** A connection to a list of `Identity` values, with data from `Claim`. */
|
|
47603
|
+
export declare type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyConnection = {
|
|
47604
|
+
__typename?: 'CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyConnection';
|
|
47605
|
+
/** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
47606
|
+
aggregates?: Maybe<IdentityAggregates>;
|
|
47607
|
+
/** A list of edges which contains the `Identity`, info from the `Claim`, and the cursor to aid in pagination. */
|
|
47608
|
+
edges: Array<CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyEdge>;
|
|
47609
|
+
/** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
47610
|
+
groupedAggregates?: Maybe<Array<IdentityAggregates>>;
|
|
47611
|
+
/** A list of `Identity` objects. */
|
|
47612
|
+
nodes: Array<Maybe<Identity>>;
|
|
47613
|
+
/** Information to aid in pagination. */
|
|
47614
|
+
pageInfo: PageInfo;
|
|
47615
|
+
/** The count of *all* `Identity` you could get from the connection. */
|
|
47616
|
+
totalCount: Scalars['Int']['output'];
|
|
47617
|
+
};
|
|
47618
|
+
/** A connection to a list of `Identity` values, with data from `Claim`. */
|
|
47619
|
+
export declare type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = {
|
|
47620
|
+
groupBy: Array<IdentitiesGroupBy>;
|
|
47621
|
+
having?: InputMaybe<IdentitiesHavingInput>;
|
|
47622
|
+
};
|
|
47623
|
+
/** A `Identity` edge in the connection, with data from `Claim`. */
|
|
47624
|
+
export declare type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyEdge = {
|
|
47625
|
+
__typename?: 'CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyEdge';
|
|
47626
|
+
/** Reads and enables pagination through a set of `Claim`. */
|
|
47627
|
+
claimsByTargetId: ClaimsConnection;
|
|
47628
|
+
/** A cursor for use in pagination. */
|
|
47629
|
+
cursor?: Maybe<Scalars['Cursor']['output']>;
|
|
47630
|
+
/** The `Identity` at the end of the edge. */
|
|
47631
|
+
node?: Maybe<Identity>;
|
|
47632
|
+
};
|
|
47633
|
+
/** A `Identity` edge in the connection, with data from `Claim`. */
|
|
47634
|
+
export declare type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyEdgeClaimsByTargetIdArgs = {
|
|
47635
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
47636
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
47637
|
+
distinct?: InputMaybe<Array<InputMaybe<Claims_Distinct_Enum>>>;
|
|
47638
|
+
filter?: InputMaybe<ClaimFilter>;
|
|
47639
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47640
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47641
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
47642
|
+
orderBy?: InputMaybe<Array<ClaimsOrderBy>>;
|
|
47643
|
+
};
|
|
47644
|
+
/** A filter to be used against many `Claim` object types. All fields are combined with a logical ‘and.’ */
|
|
47645
|
+
export declare type CustomClaimTypeToManyClaimFilter = {
|
|
47646
|
+
/** Aggregates across related `Claim` match the filter criteria. */
|
|
47647
|
+
aggregates?: InputMaybe<ClaimAggregatesFilter>;
|
|
47648
|
+
/** Every related `Claim` matches the filter criteria. All fields are combined with a logical ‘and.’ */
|
|
47649
|
+
every?: InputMaybe<ClaimFilter>;
|
|
47650
|
+
/** No related `Claim` matches the filter criteria. All fields are combined with a logical ‘and.’ */
|
|
47651
|
+
none?: InputMaybe<ClaimFilter>;
|
|
47652
|
+
/** Some related `Claim` matches the filter criteria. All fields are combined with a logical ‘and.’ */
|
|
47653
|
+
some?: InputMaybe<ClaimFilter>;
|
|
47654
|
+
};
|
|
47655
|
+
/** A connection to a list of `CustomClaimType` values. */
|
|
47656
|
+
export declare type CustomClaimTypesConnection = {
|
|
47657
|
+
__typename?: 'CustomClaimTypesConnection';
|
|
47658
|
+
/** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
47659
|
+
aggregates?: Maybe<CustomClaimTypeAggregates>;
|
|
47660
|
+
/** A list of edges which contains the `CustomClaimType` and cursor to aid in pagination. */
|
|
47661
|
+
edges: Array<CustomClaimTypesEdge>;
|
|
47662
|
+
/** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
47663
|
+
groupedAggregates?: Maybe<Array<CustomClaimTypeAggregates>>;
|
|
47664
|
+
/** A list of `CustomClaimType` objects. */
|
|
47665
|
+
nodes: Array<Maybe<CustomClaimType>>;
|
|
47666
|
+
/** Information to aid in pagination. */
|
|
47667
|
+
pageInfo: PageInfo;
|
|
47668
|
+
/** The count of *all* `CustomClaimType` you could get from the connection. */
|
|
47669
|
+
totalCount: Scalars['Int']['output'];
|
|
47670
|
+
};
|
|
47671
|
+
/** A connection to a list of `CustomClaimType` values. */
|
|
47672
|
+
export declare type CustomClaimTypesConnectionGroupedAggregatesArgs = {
|
|
47673
|
+
groupBy: Array<CustomClaimTypesGroupBy>;
|
|
47674
|
+
having?: InputMaybe<CustomClaimTypesHavingInput>;
|
|
47675
|
+
};
|
|
47676
|
+
/** A `CustomClaimType` edge in the connection. */
|
|
47677
|
+
export declare type CustomClaimTypesEdge = {
|
|
47678
|
+
__typename?: 'CustomClaimTypesEdge';
|
|
47679
|
+
/** A cursor for use in pagination. */
|
|
47680
|
+
cursor?: Maybe<Scalars['Cursor']['output']>;
|
|
47681
|
+
/** The `CustomClaimType` at the end of the edge. */
|
|
47682
|
+
node?: Maybe<CustomClaimType>;
|
|
47683
|
+
};
|
|
47684
|
+
/** Grouping methods for `CustomClaimType` for usage during aggregation. */
|
|
47685
|
+
export declare enum CustomClaimTypesGroupBy {
|
|
47686
|
+
CreatedAt = "CREATED_AT",
|
|
47687
|
+
CreatedAtTruncatedToDay = "CREATED_AT_TRUNCATED_TO_DAY",
|
|
47688
|
+
CreatedAtTruncatedToHour = "CREATED_AT_TRUNCATED_TO_HOUR",
|
|
47689
|
+
CreatedBlockId = "CREATED_BLOCK_ID",
|
|
47690
|
+
IdentityId = "IDENTITY_ID",
|
|
47691
|
+
Name = "NAME",
|
|
47692
|
+
UpdatedAt = "UPDATED_AT",
|
|
47693
|
+
UpdatedAtTruncatedToDay = "UPDATED_AT_TRUNCATED_TO_DAY",
|
|
47694
|
+
UpdatedAtTruncatedToHour = "UPDATED_AT_TRUNCATED_TO_HOUR",
|
|
47695
|
+
UpdatedBlockId = "UPDATED_BLOCK_ID"
|
|
47696
|
+
}
|
|
47697
|
+
export declare type CustomClaimTypesHavingAverageInput = {
|
|
47698
|
+
createdAt?: InputMaybe<HavingDatetimeFilter>;
|
|
47699
|
+
updatedAt?: InputMaybe<HavingDatetimeFilter>;
|
|
47700
|
+
};
|
|
47701
|
+
export declare type CustomClaimTypesHavingDistinctCountInput = {
|
|
47702
|
+
createdAt?: InputMaybe<HavingDatetimeFilter>;
|
|
47703
|
+
updatedAt?: InputMaybe<HavingDatetimeFilter>;
|
|
47704
|
+
};
|
|
47705
|
+
/** Conditions for `CustomClaimType` aggregates. */
|
|
47706
|
+
export declare type CustomClaimTypesHavingInput = {
|
|
47707
|
+
AND?: InputMaybe<Array<CustomClaimTypesHavingInput>>;
|
|
47708
|
+
OR?: InputMaybe<Array<CustomClaimTypesHavingInput>>;
|
|
47709
|
+
average?: InputMaybe<CustomClaimTypesHavingAverageInput>;
|
|
47710
|
+
distinctCount?: InputMaybe<CustomClaimTypesHavingDistinctCountInput>;
|
|
47711
|
+
max?: InputMaybe<CustomClaimTypesHavingMaxInput>;
|
|
47712
|
+
min?: InputMaybe<CustomClaimTypesHavingMinInput>;
|
|
47713
|
+
stddevPopulation?: InputMaybe<CustomClaimTypesHavingStddevPopulationInput>;
|
|
47714
|
+
stddevSample?: InputMaybe<CustomClaimTypesHavingStddevSampleInput>;
|
|
47715
|
+
sum?: InputMaybe<CustomClaimTypesHavingSumInput>;
|
|
47716
|
+
variancePopulation?: InputMaybe<CustomClaimTypesHavingVariancePopulationInput>;
|
|
47717
|
+
varianceSample?: InputMaybe<CustomClaimTypesHavingVarianceSampleInput>;
|
|
47718
|
+
};
|
|
47719
|
+
export declare type CustomClaimTypesHavingMaxInput = {
|
|
47720
|
+
createdAt?: InputMaybe<HavingDatetimeFilter>;
|
|
47721
|
+
updatedAt?: InputMaybe<HavingDatetimeFilter>;
|
|
47722
|
+
};
|
|
47723
|
+
export declare type CustomClaimTypesHavingMinInput = {
|
|
47724
|
+
createdAt?: InputMaybe<HavingDatetimeFilter>;
|
|
47725
|
+
updatedAt?: InputMaybe<HavingDatetimeFilter>;
|
|
47726
|
+
};
|
|
47727
|
+
export declare type CustomClaimTypesHavingStddevPopulationInput = {
|
|
47728
|
+
createdAt?: InputMaybe<HavingDatetimeFilter>;
|
|
47729
|
+
updatedAt?: InputMaybe<HavingDatetimeFilter>;
|
|
47730
|
+
};
|
|
47731
|
+
export declare type CustomClaimTypesHavingStddevSampleInput = {
|
|
47732
|
+
createdAt?: InputMaybe<HavingDatetimeFilter>;
|
|
47733
|
+
updatedAt?: InputMaybe<HavingDatetimeFilter>;
|
|
47734
|
+
};
|
|
47735
|
+
export declare type CustomClaimTypesHavingSumInput = {
|
|
47736
|
+
createdAt?: InputMaybe<HavingDatetimeFilter>;
|
|
47737
|
+
updatedAt?: InputMaybe<HavingDatetimeFilter>;
|
|
47738
|
+
};
|
|
47739
|
+
export declare type CustomClaimTypesHavingVariancePopulationInput = {
|
|
47740
|
+
createdAt?: InputMaybe<HavingDatetimeFilter>;
|
|
47741
|
+
updatedAt?: InputMaybe<HavingDatetimeFilter>;
|
|
47742
|
+
};
|
|
47743
|
+
export declare type CustomClaimTypesHavingVarianceSampleInput = {
|
|
47744
|
+
createdAt?: InputMaybe<HavingDatetimeFilter>;
|
|
47745
|
+
updatedAt?: InputMaybe<HavingDatetimeFilter>;
|
|
47746
|
+
};
|
|
47747
|
+
/** Methods to use when ordering `CustomClaimType`. */
|
|
47748
|
+
export declare enum CustomClaimTypesOrderBy {
|
|
47749
|
+
ClaimsAverageCddIdAsc = "CLAIMS_AVERAGE_CDD_ID_ASC",
|
|
47750
|
+
ClaimsAverageCddIdDesc = "CLAIMS_AVERAGE_CDD_ID_DESC",
|
|
47751
|
+
ClaimsAverageCreatedAtAsc = "CLAIMS_AVERAGE_CREATED_AT_ASC",
|
|
47752
|
+
ClaimsAverageCreatedAtDesc = "CLAIMS_AVERAGE_CREATED_AT_DESC",
|
|
47753
|
+
ClaimsAverageCreatedBlockIdAsc = "CLAIMS_AVERAGE_CREATED_BLOCK_ID_ASC",
|
|
47754
|
+
ClaimsAverageCreatedBlockIdDesc = "CLAIMS_AVERAGE_CREATED_BLOCK_ID_DESC",
|
|
47755
|
+
ClaimsAverageCustomClaimTypeIdAsc = "CLAIMS_AVERAGE_CUSTOM_CLAIM_TYPE_ID_ASC",
|
|
47756
|
+
ClaimsAverageCustomClaimTypeIdDesc = "CLAIMS_AVERAGE_CUSTOM_CLAIM_TYPE_ID_DESC",
|
|
47757
|
+
ClaimsAverageEventIdxAsc = "CLAIMS_AVERAGE_EVENT_IDX_ASC",
|
|
47758
|
+
ClaimsAverageEventIdxDesc = "CLAIMS_AVERAGE_EVENT_IDX_DESC",
|
|
47759
|
+
ClaimsAverageExpiryAsc = "CLAIMS_AVERAGE_EXPIRY_ASC",
|
|
47760
|
+
ClaimsAverageExpiryDesc = "CLAIMS_AVERAGE_EXPIRY_DESC",
|
|
47761
|
+
ClaimsAverageFilterExpiryAsc = "CLAIMS_AVERAGE_FILTER_EXPIRY_ASC",
|
|
47762
|
+
ClaimsAverageFilterExpiryDesc = "CLAIMS_AVERAGE_FILTER_EXPIRY_DESC",
|
|
47763
|
+
ClaimsAverageIdAsc = "CLAIMS_AVERAGE_ID_ASC",
|
|
47764
|
+
ClaimsAverageIdDesc = "CLAIMS_AVERAGE_ID_DESC",
|
|
47765
|
+
ClaimsAverageIssuanceDateAsc = "CLAIMS_AVERAGE_ISSUANCE_DATE_ASC",
|
|
47766
|
+
ClaimsAverageIssuanceDateDesc = "CLAIMS_AVERAGE_ISSUANCE_DATE_DESC",
|
|
47767
|
+
ClaimsAverageIssuerIdAsc = "CLAIMS_AVERAGE_ISSUER_ID_ASC",
|
|
47768
|
+
ClaimsAverageIssuerIdDesc = "CLAIMS_AVERAGE_ISSUER_ID_DESC",
|
|
47769
|
+
ClaimsAverageJurisdictionAsc = "CLAIMS_AVERAGE_JURISDICTION_ASC",
|
|
47770
|
+
ClaimsAverageJurisdictionDesc = "CLAIMS_AVERAGE_JURISDICTION_DESC",
|
|
47771
|
+
ClaimsAverageLastUpdateDateAsc = "CLAIMS_AVERAGE_LAST_UPDATE_DATE_ASC",
|
|
47772
|
+
ClaimsAverageLastUpdateDateDesc = "CLAIMS_AVERAGE_LAST_UPDATE_DATE_DESC",
|
|
47773
|
+
ClaimsAverageRevokeDateAsc = "CLAIMS_AVERAGE_REVOKE_DATE_ASC",
|
|
47774
|
+
ClaimsAverageRevokeDateDesc = "CLAIMS_AVERAGE_REVOKE_DATE_DESC",
|
|
47775
|
+
ClaimsAverageScopeAsc = "CLAIMS_AVERAGE_SCOPE_ASC",
|
|
47776
|
+
ClaimsAverageScopeDesc = "CLAIMS_AVERAGE_SCOPE_DESC",
|
|
47777
|
+
ClaimsAverageTargetIdAsc = "CLAIMS_AVERAGE_TARGET_ID_ASC",
|
|
47778
|
+
ClaimsAverageTargetIdDesc = "CLAIMS_AVERAGE_TARGET_ID_DESC",
|
|
47779
|
+
ClaimsAverageTypeAsc = "CLAIMS_AVERAGE_TYPE_ASC",
|
|
47780
|
+
ClaimsAverageTypeDesc = "CLAIMS_AVERAGE_TYPE_DESC",
|
|
47781
|
+
ClaimsAverageUpdatedAtAsc = "CLAIMS_AVERAGE_UPDATED_AT_ASC",
|
|
47782
|
+
ClaimsAverageUpdatedAtDesc = "CLAIMS_AVERAGE_UPDATED_AT_DESC",
|
|
47783
|
+
ClaimsAverageUpdatedBlockIdAsc = "CLAIMS_AVERAGE_UPDATED_BLOCK_ID_ASC",
|
|
47784
|
+
ClaimsAverageUpdatedBlockIdDesc = "CLAIMS_AVERAGE_UPDATED_BLOCK_ID_DESC",
|
|
47785
|
+
ClaimsCountAsc = "CLAIMS_COUNT_ASC",
|
|
47786
|
+
ClaimsCountDesc = "CLAIMS_COUNT_DESC",
|
|
47787
|
+
ClaimsDistinctCountCddIdAsc = "CLAIMS_DISTINCT_COUNT_CDD_ID_ASC",
|
|
47788
|
+
ClaimsDistinctCountCddIdDesc = "CLAIMS_DISTINCT_COUNT_CDD_ID_DESC",
|
|
47789
|
+
ClaimsDistinctCountCreatedAtAsc = "CLAIMS_DISTINCT_COUNT_CREATED_AT_ASC",
|
|
47790
|
+
ClaimsDistinctCountCreatedAtDesc = "CLAIMS_DISTINCT_COUNT_CREATED_AT_DESC",
|
|
47791
|
+
ClaimsDistinctCountCreatedBlockIdAsc = "CLAIMS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC",
|
|
47792
|
+
ClaimsDistinctCountCreatedBlockIdDesc = "CLAIMS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC",
|
|
47793
|
+
ClaimsDistinctCountCustomClaimTypeIdAsc = "CLAIMS_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_ASC",
|
|
47794
|
+
ClaimsDistinctCountCustomClaimTypeIdDesc = "CLAIMS_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_DESC",
|
|
47795
|
+
ClaimsDistinctCountEventIdxAsc = "CLAIMS_DISTINCT_COUNT_EVENT_IDX_ASC",
|
|
47796
|
+
ClaimsDistinctCountEventIdxDesc = "CLAIMS_DISTINCT_COUNT_EVENT_IDX_DESC",
|
|
47797
|
+
ClaimsDistinctCountExpiryAsc = "CLAIMS_DISTINCT_COUNT_EXPIRY_ASC",
|
|
47798
|
+
ClaimsDistinctCountExpiryDesc = "CLAIMS_DISTINCT_COUNT_EXPIRY_DESC",
|
|
47799
|
+
ClaimsDistinctCountFilterExpiryAsc = "CLAIMS_DISTINCT_COUNT_FILTER_EXPIRY_ASC",
|
|
47800
|
+
ClaimsDistinctCountFilterExpiryDesc = "CLAIMS_DISTINCT_COUNT_FILTER_EXPIRY_DESC",
|
|
47801
|
+
ClaimsDistinctCountIdAsc = "CLAIMS_DISTINCT_COUNT_ID_ASC",
|
|
47802
|
+
ClaimsDistinctCountIdDesc = "CLAIMS_DISTINCT_COUNT_ID_DESC",
|
|
47803
|
+
ClaimsDistinctCountIssuanceDateAsc = "CLAIMS_DISTINCT_COUNT_ISSUANCE_DATE_ASC",
|
|
47804
|
+
ClaimsDistinctCountIssuanceDateDesc = "CLAIMS_DISTINCT_COUNT_ISSUANCE_DATE_DESC",
|
|
47805
|
+
ClaimsDistinctCountIssuerIdAsc = "CLAIMS_DISTINCT_COUNT_ISSUER_ID_ASC",
|
|
47806
|
+
ClaimsDistinctCountIssuerIdDesc = "CLAIMS_DISTINCT_COUNT_ISSUER_ID_DESC",
|
|
47807
|
+
ClaimsDistinctCountJurisdictionAsc = "CLAIMS_DISTINCT_COUNT_JURISDICTION_ASC",
|
|
47808
|
+
ClaimsDistinctCountJurisdictionDesc = "CLAIMS_DISTINCT_COUNT_JURISDICTION_DESC",
|
|
47809
|
+
ClaimsDistinctCountLastUpdateDateAsc = "CLAIMS_DISTINCT_COUNT_LAST_UPDATE_DATE_ASC",
|
|
47810
|
+
ClaimsDistinctCountLastUpdateDateDesc = "CLAIMS_DISTINCT_COUNT_LAST_UPDATE_DATE_DESC",
|
|
47811
|
+
ClaimsDistinctCountRevokeDateAsc = "CLAIMS_DISTINCT_COUNT_REVOKE_DATE_ASC",
|
|
47812
|
+
ClaimsDistinctCountRevokeDateDesc = "CLAIMS_DISTINCT_COUNT_REVOKE_DATE_DESC",
|
|
47813
|
+
ClaimsDistinctCountScopeAsc = "CLAIMS_DISTINCT_COUNT_SCOPE_ASC",
|
|
47814
|
+
ClaimsDistinctCountScopeDesc = "CLAIMS_DISTINCT_COUNT_SCOPE_DESC",
|
|
47815
|
+
ClaimsDistinctCountTargetIdAsc = "CLAIMS_DISTINCT_COUNT_TARGET_ID_ASC",
|
|
47816
|
+
ClaimsDistinctCountTargetIdDesc = "CLAIMS_DISTINCT_COUNT_TARGET_ID_DESC",
|
|
47817
|
+
ClaimsDistinctCountTypeAsc = "CLAIMS_DISTINCT_COUNT_TYPE_ASC",
|
|
47818
|
+
ClaimsDistinctCountTypeDesc = "CLAIMS_DISTINCT_COUNT_TYPE_DESC",
|
|
47819
|
+
ClaimsDistinctCountUpdatedAtAsc = "CLAIMS_DISTINCT_COUNT_UPDATED_AT_ASC",
|
|
47820
|
+
ClaimsDistinctCountUpdatedAtDesc = "CLAIMS_DISTINCT_COUNT_UPDATED_AT_DESC",
|
|
47821
|
+
ClaimsDistinctCountUpdatedBlockIdAsc = "CLAIMS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC",
|
|
47822
|
+
ClaimsDistinctCountUpdatedBlockIdDesc = "CLAIMS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC",
|
|
47823
|
+
ClaimsMaxCddIdAsc = "CLAIMS_MAX_CDD_ID_ASC",
|
|
47824
|
+
ClaimsMaxCddIdDesc = "CLAIMS_MAX_CDD_ID_DESC",
|
|
47825
|
+
ClaimsMaxCreatedAtAsc = "CLAIMS_MAX_CREATED_AT_ASC",
|
|
47826
|
+
ClaimsMaxCreatedAtDesc = "CLAIMS_MAX_CREATED_AT_DESC",
|
|
47827
|
+
ClaimsMaxCreatedBlockIdAsc = "CLAIMS_MAX_CREATED_BLOCK_ID_ASC",
|
|
47828
|
+
ClaimsMaxCreatedBlockIdDesc = "CLAIMS_MAX_CREATED_BLOCK_ID_DESC",
|
|
47829
|
+
ClaimsMaxCustomClaimTypeIdAsc = "CLAIMS_MAX_CUSTOM_CLAIM_TYPE_ID_ASC",
|
|
47830
|
+
ClaimsMaxCustomClaimTypeIdDesc = "CLAIMS_MAX_CUSTOM_CLAIM_TYPE_ID_DESC",
|
|
47831
|
+
ClaimsMaxEventIdxAsc = "CLAIMS_MAX_EVENT_IDX_ASC",
|
|
47832
|
+
ClaimsMaxEventIdxDesc = "CLAIMS_MAX_EVENT_IDX_DESC",
|
|
47833
|
+
ClaimsMaxExpiryAsc = "CLAIMS_MAX_EXPIRY_ASC",
|
|
47834
|
+
ClaimsMaxExpiryDesc = "CLAIMS_MAX_EXPIRY_DESC",
|
|
47835
|
+
ClaimsMaxFilterExpiryAsc = "CLAIMS_MAX_FILTER_EXPIRY_ASC",
|
|
47836
|
+
ClaimsMaxFilterExpiryDesc = "CLAIMS_MAX_FILTER_EXPIRY_DESC",
|
|
47837
|
+
ClaimsMaxIdAsc = "CLAIMS_MAX_ID_ASC",
|
|
47838
|
+
ClaimsMaxIdDesc = "CLAIMS_MAX_ID_DESC",
|
|
47839
|
+
ClaimsMaxIssuanceDateAsc = "CLAIMS_MAX_ISSUANCE_DATE_ASC",
|
|
47840
|
+
ClaimsMaxIssuanceDateDesc = "CLAIMS_MAX_ISSUANCE_DATE_DESC",
|
|
47841
|
+
ClaimsMaxIssuerIdAsc = "CLAIMS_MAX_ISSUER_ID_ASC",
|
|
47842
|
+
ClaimsMaxIssuerIdDesc = "CLAIMS_MAX_ISSUER_ID_DESC",
|
|
47843
|
+
ClaimsMaxJurisdictionAsc = "CLAIMS_MAX_JURISDICTION_ASC",
|
|
47844
|
+
ClaimsMaxJurisdictionDesc = "CLAIMS_MAX_JURISDICTION_DESC",
|
|
47845
|
+
ClaimsMaxLastUpdateDateAsc = "CLAIMS_MAX_LAST_UPDATE_DATE_ASC",
|
|
47846
|
+
ClaimsMaxLastUpdateDateDesc = "CLAIMS_MAX_LAST_UPDATE_DATE_DESC",
|
|
47847
|
+
ClaimsMaxRevokeDateAsc = "CLAIMS_MAX_REVOKE_DATE_ASC",
|
|
47848
|
+
ClaimsMaxRevokeDateDesc = "CLAIMS_MAX_REVOKE_DATE_DESC",
|
|
47849
|
+
ClaimsMaxScopeAsc = "CLAIMS_MAX_SCOPE_ASC",
|
|
47850
|
+
ClaimsMaxScopeDesc = "CLAIMS_MAX_SCOPE_DESC",
|
|
47851
|
+
ClaimsMaxTargetIdAsc = "CLAIMS_MAX_TARGET_ID_ASC",
|
|
47852
|
+
ClaimsMaxTargetIdDesc = "CLAIMS_MAX_TARGET_ID_DESC",
|
|
47853
|
+
ClaimsMaxTypeAsc = "CLAIMS_MAX_TYPE_ASC",
|
|
47854
|
+
ClaimsMaxTypeDesc = "CLAIMS_MAX_TYPE_DESC",
|
|
47855
|
+
ClaimsMaxUpdatedAtAsc = "CLAIMS_MAX_UPDATED_AT_ASC",
|
|
47856
|
+
ClaimsMaxUpdatedAtDesc = "CLAIMS_MAX_UPDATED_AT_DESC",
|
|
47857
|
+
ClaimsMaxUpdatedBlockIdAsc = "CLAIMS_MAX_UPDATED_BLOCK_ID_ASC",
|
|
47858
|
+
ClaimsMaxUpdatedBlockIdDesc = "CLAIMS_MAX_UPDATED_BLOCK_ID_DESC",
|
|
47859
|
+
ClaimsMinCddIdAsc = "CLAIMS_MIN_CDD_ID_ASC",
|
|
47860
|
+
ClaimsMinCddIdDesc = "CLAIMS_MIN_CDD_ID_DESC",
|
|
47861
|
+
ClaimsMinCreatedAtAsc = "CLAIMS_MIN_CREATED_AT_ASC",
|
|
47862
|
+
ClaimsMinCreatedAtDesc = "CLAIMS_MIN_CREATED_AT_DESC",
|
|
47863
|
+
ClaimsMinCreatedBlockIdAsc = "CLAIMS_MIN_CREATED_BLOCK_ID_ASC",
|
|
47864
|
+
ClaimsMinCreatedBlockIdDesc = "CLAIMS_MIN_CREATED_BLOCK_ID_DESC",
|
|
47865
|
+
ClaimsMinCustomClaimTypeIdAsc = "CLAIMS_MIN_CUSTOM_CLAIM_TYPE_ID_ASC",
|
|
47866
|
+
ClaimsMinCustomClaimTypeIdDesc = "CLAIMS_MIN_CUSTOM_CLAIM_TYPE_ID_DESC",
|
|
47867
|
+
ClaimsMinEventIdxAsc = "CLAIMS_MIN_EVENT_IDX_ASC",
|
|
47868
|
+
ClaimsMinEventIdxDesc = "CLAIMS_MIN_EVENT_IDX_DESC",
|
|
47869
|
+
ClaimsMinExpiryAsc = "CLAIMS_MIN_EXPIRY_ASC",
|
|
47870
|
+
ClaimsMinExpiryDesc = "CLAIMS_MIN_EXPIRY_DESC",
|
|
47871
|
+
ClaimsMinFilterExpiryAsc = "CLAIMS_MIN_FILTER_EXPIRY_ASC",
|
|
47872
|
+
ClaimsMinFilterExpiryDesc = "CLAIMS_MIN_FILTER_EXPIRY_DESC",
|
|
47873
|
+
ClaimsMinIdAsc = "CLAIMS_MIN_ID_ASC",
|
|
47874
|
+
ClaimsMinIdDesc = "CLAIMS_MIN_ID_DESC",
|
|
47875
|
+
ClaimsMinIssuanceDateAsc = "CLAIMS_MIN_ISSUANCE_DATE_ASC",
|
|
47876
|
+
ClaimsMinIssuanceDateDesc = "CLAIMS_MIN_ISSUANCE_DATE_DESC",
|
|
47877
|
+
ClaimsMinIssuerIdAsc = "CLAIMS_MIN_ISSUER_ID_ASC",
|
|
47878
|
+
ClaimsMinIssuerIdDesc = "CLAIMS_MIN_ISSUER_ID_DESC",
|
|
47879
|
+
ClaimsMinJurisdictionAsc = "CLAIMS_MIN_JURISDICTION_ASC",
|
|
47880
|
+
ClaimsMinJurisdictionDesc = "CLAIMS_MIN_JURISDICTION_DESC",
|
|
47881
|
+
ClaimsMinLastUpdateDateAsc = "CLAIMS_MIN_LAST_UPDATE_DATE_ASC",
|
|
47882
|
+
ClaimsMinLastUpdateDateDesc = "CLAIMS_MIN_LAST_UPDATE_DATE_DESC",
|
|
47883
|
+
ClaimsMinRevokeDateAsc = "CLAIMS_MIN_REVOKE_DATE_ASC",
|
|
47884
|
+
ClaimsMinRevokeDateDesc = "CLAIMS_MIN_REVOKE_DATE_DESC",
|
|
47885
|
+
ClaimsMinScopeAsc = "CLAIMS_MIN_SCOPE_ASC",
|
|
47886
|
+
ClaimsMinScopeDesc = "CLAIMS_MIN_SCOPE_DESC",
|
|
47887
|
+
ClaimsMinTargetIdAsc = "CLAIMS_MIN_TARGET_ID_ASC",
|
|
47888
|
+
ClaimsMinTargetIdDesc = "CLAIMS_MIN_TARGET_ID_DESC",
|
|
47889
|
+
ClaimsMinTypeAsc = "CLAIMS_MIN_TYPE_ASC",
|
|
47890
|
+
ClaimsMinTypeDesc = "CLAIMS_MIN_TYPE_DESC",
|
|
47891
|
+
ClaimsMinUpdatedAtAsc = "CLAIMS_MIN_UPDATED_AT_ASC",
|
|
47892
|
+
ClaimsMinUpdatedAtDesc = "CLAIMS_MIN_UPDATED_AT_DESC",
|
|
47893
|
+
ClaimsMinUpdatedBlockIdAsc = "CLAIMS_MIN_UPDATED_BLOCK_ID_ASC",
|
|
47894
|
+
ClaimsMinUpdatedBlockIdDesc = "CLAIMS_MIN_UPDATED_BLOCK_ID_DESC",
|
|
47895
|
+
ClaimsStddevPopulationCddIdAsc = "CLAIMS_STDDEV_POPULATION_CDD_ID_ASC",
|
|
47896
|
+
ClaimsStddevPopulationCddIdDesc = "CLAIMS_STDDEV_POPULATION_CDD_ID_DESC",
|
|
47897
|
+
ClaimsStddevPopulationCreatedAtAsc = "CLAIMS_STDDEV_POPULATION_CREATED_AT_ASC",
|
|
47898
|
+
ClaimsStddevPopulationCreatedAtDesc = "CLAIMS_STDDEV_POPULATION_CREATED_AT_DESC",
|
|
47899
|
+
ClaimsStddevPopulationCreatedBlockIdAsc = "CLAIMS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC",
|
|
47900
|
+
ClaimsStddevPopulationCreatedBlockIdDesc = "CLAIMS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC",
|
|
47901
|
+
ClaimsStddevPopulationCustomClaimTypeIdAsc = "CLAIMS_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC",
|
|
47902
|
+
ClaimsStddevPopulationCustomClaimTypeIdDesc = "CLAIMS_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC",
|
|
47903
|
+
ClaimsStddevPopulationEventIdxAsc = "CLAIMS_STDDEV_POPULATION_EVENT_IDX_ASC",
|
|
47904
|
+
ClaimsStddevPopulationEventIdxDesc = "CLAIMS_STDDEV_POPULATION_EVENT_IDX_DESC",
|
|
47905
|
+
ClaimsStddevPopulationExpiryAsc = "CLAIMS_STDDEV_POPULATION_EXPIRY_ASC",
|
|
47906
|
+
ClaimsStddevPopulationExpiryDesc = "CLAIMS_STDDEV_POPULATION_EXPIRY_DESC",
|
|
47907
|
+
ClaimsStddevPopulationFilterExpiryAsc = "CLAIMS_STDDEV_POPULATION_FILTER_EXPIRY_ASC",
|
|
47908
|
+
ClaimsStddevPopulationFilterExpiryDesc = "CLAIMS_STDDEV_POPULATION_FILTER_EXPIRY_DESC",
|
|
47909
|
+
ClaimsStddevPopulationIdAsc = "CLAIMS_STDDEV_POPULATION_ID_ASC",
|
|
47910
|
+
ClaimsStddevPopulationIdDesc = "CLAIMS_STDDEV_POPULATION_ID_DESC",
|
|
47911
|
+
ClaimsStddevPopulationIssuanceDateAsc = "CLAIMS_STDDEV_POPULATION_ISSUANCE_DATE_ASC",
|
|
47912
|
+
ClaimsStddevPopulationIssuanceDateDesc = "CLAIMS_STDDEV_POPULATION_ISSUANCE_DATE_DESC",
|
|
47913
|
+
ClaimsStddevPopulationIssuerIdAsc = "CLAIMS_STDDEV_POPULATION_ISSUER_ID_ASC",
|
|
47914
|
+
ClaimsStddevPopulationIssuerIdDesc = "CLAIMS_STDDEV_POPULATION_ISSUER_ID_DESC",
|
|
47915
|
+
ClaimsStddevPopulationJurisdictionAsc = "CLAIMS_STDDEV_POPULATION_JURISDICTION_ASC",
|
|
47916
|
+
ClaimsStddevPopulationJurisdictionDesc = "CLAIMS_STDDEV_POPULATION_JURISDICTION_DESC",
|
|
47917
|
+
ClaimsStddevPopulationLastUpdateDateAsc = "CLAIMS_STDDEV_POPULATION_LAST_UPDATE_DATE_ASC",
|
|
47918
|
+
ClaimsStddevPopulationLastUpdateDateDesc = "CLAIMS_STDDEV_POPULATION_LAST_UPDATE_DATE_DESC",
|
|
47919
|
+
ClaimsStddevPopulationRevokeDateAsc = "CLAIMS_STDDEV_POPULATION_REVOKE_DATE_ASC",
|
|
47920
|
+
ClaimsStddevPopulationRevokeDateDesc = "CLAIMS_STDDEV_POPULATION_REVOKE_DATE_DESC",
|
|
47921
|
+
ClaimsStddevPopulationScopeAsc = "CLAIMS_STDDEV_POPULATION_SCOPE_ASC",
|
|
47922
|
+
ClaimsStddevPopulationScopeDesc = "CLAIMS_STDDEV_POPULATION_SCOPE_DESC",
|
|
47923
|
+
ClaimsStddevPopulationTargetIdAsc = "CLAIMS_STDDEV_POPULATION_TARGET_ID_ASC",
|
|
47924
|
+
ClaimsStddevPopulationTargetIdDesc = "CLAIMS_STDDEV_POPULATION_TARGET_ID_DESC",
|
|
47925
|
+
ClaimsStddevPopulationTypeAsc = "CLAIMS_STDDEV_POPULATION_TYPE_ASC",
|
|
47926
|
+
ClaimsStddevPopulationTypeDesc = "CLAIMS_STDDEV_POPULATION_TYPE_DESC",
|
|
47927
|
+
ClaimsStddevPopulationUpdatedAtAsc = "CLAIMS_STDDEV_POPULATION_UPDATED_AT_ASC",
|
|
47928
|
+
ClaimsStddevPopulationUpdatedAtDesc = "CLAIMS_STDDEV_POPULATION_UPDATED_AT_DESC",
|
|
47929
|
+
ClaimsStddevPopulationUpdatedBlockIdAsc = "CLAIMS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC",
|
|
47930
|
+
ClaimsStddevPopulationUpdatedBlockIdDesc = "CLAIMS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC",
|
|
47931
|
+
ClaimsStddevSampleCddIdAsc = "CLAIMS_STDDEV_SAMPLE_CDD_ID_ASC",
|
|
47932
|
+
ClaimsStddevSampleCddIdDesc = "CLAIMS_STDDEV_SAMPLE_CDD_ID_DESC",
|
|
47933
|
+
ClaimsStddevSampleCreatedAtAsc = "CLAIMS_STDDEV_SAMPLE_CREATED_AT_ASC",
|
|
47934
|
+
ClaimsStddevSampleCreatedAtDesc = "CLAIMS_STDDEV_SAMPLE_CREATED_AT_DESC",
|
|
47935
|
+
ClaimsStddevSampleCreatedBlockIdAsc = "CLAIMS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC",
|
|
47936
|
+
ClaimsStddevSampleCreatedBlockIdDesc = "CLAIMS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC",
|
|
47937
|
+
ClaimsStddevSampleCustomClaimTypeIdAsc = "CLAIMS_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC",
|
|
47938
|
+
ClaimsStddevSampleCustomClaimTypeIdDesc = "CLAIMS_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC",
|
|
47939
|
+
ClaimsStddevSampleEventIdxAsc = "CLAIMS_STDDEV_SAMPLE_EVENT_IDX_ASC",
|
|
47940
|
+
ClaimsStddevSampleEventIdxDesc = "CLAIMS_STDDEV_SAMPLE_EVENT_IDX_DESC",
|
|
47941
|
+
ClaimsStddevSampleExpiryAsc = "CLAIMS_STDDEV_SAMPLE_EXPIRY_ASC",
|
|
47942
|
+
ClaimsStddevSampleExpiryDesc = "CLAIMS_STDDEV_SAMPLE_EXPIRY_DESC",
|
|
47943
|
+
ClaimsStddevSampleFilterExpiryAsc = "CLAIMS_STDDEV_SAMPLE_FILTER_EXPIRY_ASC",
|
|
47944
|
+
ClaimsStddevSampleFilterExpiryDesc = "CLAIMS_STDDEV_SAMPLE_FILTER_EXPIRY_DESC",
|
|
47945
|
+
ClaimsStddevSampleIdAsc = "CLAIMS_STDDEV_SAMPLE_ID_ASC",
|
|
47946
|
+
ClaimsStddevSampleIdDesc = "CLAIMS_STDDEV_SAMPLE_ID_DESC",
|
|
47947
|
+
ClaimsStddevSampleIssuanceDateAsc = "CLAIMS_STDDEV_SAMPLE_ISSUANCE_DATE_ASC",
|
|
47948
|
+
ClaimsStddevSampleIssuanceDateDesc = "CLAIMS_STDDEV_SAMPLE_ISSUANCE_DATE_DESC",
|
|
47949
|
+
ClaimsStddevSampleIssuerIdAsc = "CLAIMS_STDDEV_SAMPLE_ISSUER_ID_ASC",
|
|
47950
|
+
ClaimsStddevSampleIssuerIdDesc = "CLAIMS_STDDEV_SAMPLE_ISSUER_ID_DESC",
|
|
47951
|
+
ClaimsStddevSampleJurisdictionAsc = "CLAIMS_STDDEV_SAMPLE_JURISDICTION_ASC",
|
|
47952
|
+
ClaimsStddevSampleJurisdictionDesc = "CLAIMS_STDDEV_SAMPLE_JURISDICTION_DESC",
|
|
47953
|
+
ClaimsStddevSampleLastUpdateDateAsc = "CLAIMS_STDDEV_SAMPLE_LAST_UPDATE_DATE_ASC",
|
|
47954
|
+
ClaimsStddevSampleLastUpdateDateDesc = "CLAIMS_STDDEV_SAMPLE_LAST_UPDATE_DATE_DESC",
|
|
47955
|
+
ClaimsStddevSampleRevokeDateAsc = "CLAIMS_STDDEV_SAMPLE_REVOKE_DATE_ASC",
|
|
47956
|
+
ClaimsStddevSampleRevokeDateDesc = "CLAIMS_STDDEV_SAMPLE_REVOKE_DATE_DESC",
|
|
47957
|
+
ClaimsStddevSampleScopeAsc = "CLAIMS_STDDEV_SAMPLE_SCOPE_ASC",
|
|
47958
|
+
ClaimsStddevSampleScopeDesc = "CLAIMS_STDDEV_SAMPLE_SCOPE_DESC",
|
|
47959
|
+
ClaimsStddevSampleTargetIdAsc = "CLAIMS_STDDEV_SAMPLE_TARGET_ID_ASC",
|
|
47960
|
+
ClaimsStddevSampleTargetIdDesc = "CLAIMS_STDDEV_SAMPLE_TARGET_ID_DESC",
|
|
47961
|
+
ClaimsStddevSampleTypeAsc = "CLAIMS_STDDEV_SAMPLE_TYPE_ASC",
|
|
47962
|
+
ClaimsStddevSampleTypeDesc = "CLAIMS_STDDEV_SAMPLE_TYPE_DESC",
|
|
47963
|
+
ClaimsStddevSampleUpdatedAtAsc = "CLAIMS_STDDEV_SAMPLE_UPDATED_AT_ASC",
|
|
47964
|
+
ClaimsStddevSampleUpdatedAtDesc = "CLAIMS_STDDEV_SAMPLE_UPDATED_AT_DESC",
|
|
47965
|
+
ClaimsStddevSampleUpdatedBlockIdAsc = "CLAIMS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC",
|
|
47966
|
+
ClaimsStddevSampleUpdatedBlockIdDesc = "CLAIMS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC",
|
|
47967
|
+
ClaimsSumCddIdAsc = "CLAIMS_SUM_CDD_ID_ASC",
|
|
47968
|
+
ClaimsSumCddIdDesc = "CLAIMS_SUM_CDD_ID_DESC",
|
|
47969
|
+
ClaimsSumCreatedAtAsc = "CLAIMS_SUM_CREATED_AT_ASC",
|
|
47970
|
+
ClaimsSumCreatedAtDesc = "CLAIMS_SUM_CREATED_AT_DESC",
|
|
47971
|
+
ClaimsSumCreatedBlockIdAsc = "CLAIMS_SUM_CREATED_BLOCK_ID_ASC",
|
|
47972
|
+
ClaimsSumCreatedBlockIdDesc = "CLAIMS_SUM_CREATED_BLOCK_ID_DESC",
|
|
47973
|
+
ClaimsSumCustomClaimTypeIdAsc = "CLAIMS_SUM_CUSTOM_CLAIM_TYPE_ID_ASC",
|
|
47974
|
+
ClaimsSumCustomClaimTypeIdDesc = "CLAIMS_SUM_CUSTOM_CLAIM_TYPE_ID_DESC",
|
|
47975
|
+
ClaimsSumEventIdxAsc = "CLAIMS_SUM_EVENT_IDX_ASC",
|
|
47976
|
+
ClaimsSumEventIdxDesc = "CLAIMS_SUM_EVENT_IDX_DESC",
|
|
47977
|
+
ClaimsSumExpiryAsc = "CLAIMS_SUM_EXPIRY_ASC",
|
|
47978
|
+
ClaimsSumExpiryDesc = "CLAIMS_SUM_EXPIRY_DESC",
|
|
47979
|
+
ClaimsSumFilterExpiryAsc = "CLAIMS_SUM_FILTER_EXPIRY_ASC",
|
|
47980
|
+
ClaimsSumFilterExpiryDesc = "CLAIMS_SUM_FILTER_EXPIRY_DESC",
|
|
47981
|
+
ClaimsSumIdAsc = "CLAIMS_SUM_ID_ASC",
|
|
47982
|
+
ClaimsSumIdDesc = "CLAIMS_SUM_ID_DESC",
|
|
47983
|
+
ClaimsSumIssuanceDateAsc = "CLAIMS_SUM_ISSUANCE_DATE_ASC",
|
|
47984
|
+
ClaimsSumIssuanceDateDesc = "CLAIMS_SUM_ISSUANCE_DATE_DESC",
|
|
47985
|
+
ClaimsSumIssuerIdAsc = "CLAIMS_SUM_ISSUER_ID_ASC",
|
|
47986
|
+
ClaimsSumIssuerIdDesc = "CLAIMS_SUM_ISSUER_ID_DESC",
|
|
47987
|
+
ClaimsSumJurisdictionAsc = "CLAIMS_SUM_JURISDICTION_ASC",
|
|
47988
|
+
ClaimsSumJurisdictionDesc = "CLAIMS_SUM_JURISDICTION_DESC",
|
|
47989
|
+
ClaimsSumLastUpdateDateAsc = "CLAIMS_SUM_LAST_UPDATE_DATE_ASC",
|
|
47990
|
+
ClaimsSumLastUpdateDateDesc = "CLAIMS_SUM_LAST_UPDATE_DATE_DESC",
|
|
47991
|
+
ClaimsSumRevokeDateAsc = "CLAIMS_SUM_REVOKE_DATE_ASC",
|
|
47992
|
+
ClaimsSumRevokeDateDesc = "CLAIMS_SUM_REVOKE_DATE_DESC",
|
|
47993
|
+
ClaimsSumScopeAsc = "CLAIMS_SUM_SCOPE_ASC",
|
|
47994
|
+
ClaimsSumScopeDesc = "CLAIMS_SUM_SCOPE_DESC",
|
|
47995
|
+
ClaimsSumTargetIdAsc = "CLAIMS_SUM_TARGET_ID_ASC",
|
|
47996
|
+
ClaimsSumTargetIdDesc = "CLAIMS_SUM_TARGET_ID_DESC",
|
|
47997
|
+
ClaimsSumTypeAsc = "CLAIMS_SUM_TYPE_ASC",
|
|
47998
|
+
ClaimsSumTypeDesc = "CLAIMS_SUM_TYPE_DESC",
|
|
47999
|
+
ClaimsSumUpdatedAtAsc = "CLAIMS_SUM_UPDATED_AT_ASC",
|
|
48000
|
+
ClaimsSumUpdatedAtDesc = "CLAIMS_SUM_UPDATED_AT_DESC",
|
|
48001
|
+
ClaimsSumUpdatedBlockIdAsc = "CLAIMS_SUM_UPDATED_BLOCK_ID_ASC",
|
|
48002
|
+
ClaimsSumUpdatedBlockIdDesc = "CLAIMS_SUM_UPDATED_BLOCK_ID_DESC",
|
|
48003
|
+
ClaimsVariancePopulationCddIdAsc = "CLAIMS_VARIANCE_POPULATION_CDD_ID_ASC",
|
|
48004
|
+
ClaimsVariancePopulationCddIdDesc = "CLAIMS_VARIANCE_POPULATION_CDD_ID_DESC",
|
|
48005
|
+
ClaimsVariancePopulationCreatedAtAsc = "CLAIMS_VARIANCE_POPULATION_CREATED_AT_ASC",
|
|
48006
|
+
ClaimsVariancePopulationCreatedAtDesc = "CLAIMS_VARIANCE_POPULATION_CREATED_AT_DESC",
|
|
48007
|
+
ClaimsVariancePopulationCreatedBlockIdAsc = "CLAIMS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC",
|
|
48008
|
+
ClaimsVariancePopulationCreatedBlockIdDesc = "CLAIMS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC",
|
|
48009
|
+
ClaimsVariancePopulationCustomClaimTypeIdAsc = "CLAIMS_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC",
|
|
48010
|
+
ClaimsVariancePopulationCustomClaimTypeIdDesc = "CLAIMS_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC",
|
|
48011
|
+
ClaimsVariancePopulationEventIdxAsc = "CLAIMS_VARIANCE_POPULATION_EVENT_IDX_ASC",
|
|
48012
|
+
ClaimsVariancePopulationEventIdxDesc = "CLAIMS_VARIANCE_POPULATION_EVENT_IDX_DESC",
|
|
48013
|
+
ClaimsVariancePopulationExpiryAsc = "CLAIMS_VARIANCE_POPULATION_EXPIRY_ASC",
|
|
48014
|
+
ClaimsVariancePopulationExpiryDesc = "CLAIMS_VARIANCE_POPULATION_EXPIRY_DESC",
|
|
48015
|
+
ClaimsVariancePopulationFilterExpiryAsc = "CLAIMS_VARIANCE_POPULATION_FILTER_EXPIRY_ASC",
|
|
48016
|
+
ClaimsVariancePopulationFilterExpiryDesc = "CLAIMS_VARIANCE_POPULATION_FILTER_EXPIRY_DESC",
|
|
48017
|
+
ClaimsVariancePopulationIdAsc = "CLAIMS_VARIANCE_POPULATION_ID_ASC",
|
|
48018
|
+
ClaimsVariancePopulationIdDesc = "CLAIMS_VARIANCE_POPULATION_ID_DESC",
|
|
48019
|
+
ClaimsVariancePopulationIssuanceDateAsc = "CLAIMS_VARIANCE_POPULATION_ISSUANCE_DATE_ASC",
|
|
48020
|
+
ClaimsVariancePopulationIssuanceDateDesc = "CLAIMS_VARIANCE_POPULATION_ISSUANCE_DATE_DESC",
|
|
48021
|
+
ClaimsVariancePopulationIssuerIdAsc = "CLAIMS_VARIANCE_POPULATION_ISSUER_ID_ASC",
|
|
48022
|
+
ClaimsVariancePopulationIssuerIdDesc = "CLAIMS_VARIANCE_POPULATION_ISSUER_ID_DESC",
|
|
48023
|
+
ClaimsVariancePopulationJurisdictionAsc = "CLAIMS_VARIANCE_POPULATION_JURISDICTION_ASC",
|
|
48024
|
+
ClaimsVariancePopulationJurisdictionDesc = "CLAIMS_VARIANCE_POPULATION_JURISDICTION_DESC",
|
|
48025
|
+
ClaimsVariancePopulationLastUpdateDateAsc = "CLAIMS_VARIANCE_POPULATION_LAST_UPDATE_DATE_ASC",
|
|
48026
|
+
ClaimsVariancePopulationLastUpdateDateDesc = "CLAIMS_VARIANCE_POPULATION_LAST_UPDATE_DATE_DESC",
|
|
48027
|
+
ClaimsVariancePopulationRevokeDateAsc = "CLAIMS_VARIANCE_POPULATION_REVOKE_DATE_ASC",
|
|
48028
|
+
ClaimsVariancePopulationRevokeDateDesc = "CLAIMS_VARIANCE_POPULATION_REVOKE_DATE_DESC",
|
|
48029
|
+
ClaimsVariancePopulationScopeAsc = "CLAIMS_VARIANCE_POPULATION_SCOPE_ASC",
|
|
48030
|
+
ClaimsVariancePopulationScopeDesc = "CLAIMS_VARIANCE_POPULATION_SCOPE_DESC",
|
|
48031
|
+
ClaimsVariancePopulationTargetIdAsc = "CLAIMS_VARIANCE_POPULATION_TARGET_ID_ASC",
|
|
48032
|
+
ClaimsVariancePopulationTargetIdDesc = "CLAIMS_VARIANCE_POPULATION_TARGET_ID_DESC",
|
|
48033
|
+
ClaimsVariancePopulationTypeAsc = "CLAIMS_VARIANCE_POPULATION_TYPE_ASC",
|
|
48034
|
+
ClaimsVariancePopulationTypeDesc = "CLAIMS_VARIANCE_POPULATION_TYPE_DESC",
|
|
48035
|
+
ClaimsVariancePopulationUpdatedAtAsc = "CLAIMS_VARIANCE_POPULATION_UPDATED_AT_ASC",
|
|
48036
|
+
ClaimsVariancePopulationUpdatedAtDesc = "CLAIMS_VARIANCE_POPULATION_UPDATED_AT_DESC",
|
|
48037
|
+
ClaimsVariancePopulationUpdatedBlockIdAsc = "CLAIMS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC",
|
|
48038
|
+
ClaimsVariancePopulationUpdatedBlockIdDesc = "CLAIMS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC",
|
|
48039
|
+
ClaimsVarianceSampleCddIdAsc = "CLAIMS_VARIANCE_SAMPLE_CDD_ID_ASC",
|
|
48040
|
+
ClaimsVarianceSampleCddIdDesc = "CLAIMS_VARIANCE_SAMPLE_CDD_ID_DESC",
|
|
48041
|
+
ClaimsVarianceSampleCreatedAtAsc = "CLAIMS_VARIANCE_SAMPLE_CREATED_AT_ASC",
|
|
48042
|
+
ClaimsVarianceSampleCreatedAtDesc = "CLAIMS_VARIANCE_SAMPLE_CREATED_AT_DESC",
|
|
48043
|
+
ClaimsVarianceSampleCreatedBlockIdAsc = "CLAIMS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC",
|
|
48044
|
+
ClaimsVarianceSampleCreatedBlockIdDesc = "CLAIMS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC",
|
|
48045
|
+
ClaimsVarianceSampleCustomClaimTypeIdAsc = "CLAIMS_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC",
|
|
48046
|
+
ClaimsVarianceSampleCustomClaimTypeIdDesc = "CLAIMS_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC",
|
|
48047
|
+
ClaimsVarianceSampleEventIdxAsc = "CLAIMS_VARIANCE_SAMPLE_EVENT_IDX_ASC",
|
|
48048
|
+
ClaimsVarianceSampleEventIdxDesc = "CLAIMS_VARIANCE_SAMPLE_EVENT_IDX_DESC",
|
|
48049
|
+
ClaimsVarianceSampleExpiryAsc = "CLAIMS_VARIANCE_SAMPLE_EXPIRY_ASC",
|
|
48050
|
+
ClaimsVarianceSampleExpiryDesc = "CLAIMS_VARIANCE_SAMPLE_EXPIRY_DESC",
|
|
48051
|
+
ClaimsVarianceSampleFilterExpiryAsc = "CLAIMS_VARIANCE_SAMPLE_FILTER_EXPIRY_ASC",
|
|
48052
|
+
ClaimsVarianceSampleFilterExpiryDesc = "CLAIMS_VARIANCE_SAMPLE_FILTER_EXPIRY_DESC",
|
|
48053
|
+
ClaimsVarianceSampleIdAsc = "CLAIMS_VARIANCE_SAMPLE_ID_ASC",
|
|
48054
|
+
ClaimsVarianceSampleIdDesc = "CLAIMS_VARIANCE_SAMPLE_ID_DESC",
|
|
48055
|
+
ClaimsVarianceSampleIssuanceDateAsc = "CLAIMS_VARIANCE_SAMPLE_ISSUANCE_DATE_ASC",
|
|
48056
|
+
ClaimsVarianceSampleIssuanceDateDesc = "CLAIMS_VARIANCE_SAMPLE_ISSUANCE_DATE_DESC",
|
|
48057
|
+
ClaimsVarianceSampleIssuerIdAsc = "CLAIMS_VARIANCE_SAMPLE_ISSUER_ID_ASC",
|
|
48058
|
+
ClaimsVarianceSampleIssuerIdDesc = "CLAIMS_VARIANCE_SAMPLE_ISSUER_ID_DESC",
|
|
48059
|
+
ClaimsVarianceSampleJurisdictionAsc = "CLAIMS_VARIANCE_SAMPLE_JURISDICTION_ASC",
|
|
48060
|
+
ClaimsVarianceSampleJurisdictionDesc = "CLAIMS_VARIANCE_SAMPLE_JURISDICTION_DESC",
|
|
48061
|
+
ClaimsVarianceSampleLastUpdateDateAsc = "CLAIMS_VARIANCE_SAMPLE_LAST_UPDATE_DATE_ASC",
|
|
48062
|
+
ClaimsVarianceSampleLastUpdateDateDesc = "CLAIMS_VARIANCE_SAMPLE_LAST_UPDATE_DATE_DESC",
|
|
48063
|
+
ClaimsVarianceSampleRevokeDateAsc = "CLAIMS_VARIANCE_SAMPLE_REVOKE_DATE_ASC",
|
|
48064
|
+
ClaimsVarianceSampleRevokeDateDesc = "CLAIMS_VARIANCE_SAMPLE_REVOKE_DATE_DESC",
|
|
48065
|
+
ClaimsVarianceSampleScopeAsc = "CLAIMS_VARIANCE_SAMPLE_SCOPE_ASC",
|
|
48066
|
+
ClaimsVarianceSampleScopeDesc = "CLAIMS_VARIANCE_SAMPLE_SCOPE_DESC",
|
|
48067
|
+
ClaimsVarianceSampleTargetIdAsc = "CLAIMS_VARIANCE_SAMPLE_TARGET_ID_ASC",
|
|
48068
|
+
ClaimsVarianceSampleTargetIdDesc = "CLAIMS_VARIANCE_SAMPLE_TARGET_ID_DESC",
|
|
48069
|
+
ClaimsVarianceSampleTypeAsc = "CLAIMS_VARIANCE_SAMPLE_TYPE_ASC",
|
|
48070
|
+
ClaimsVarianceSampleTypeDesc = "CLAIMS_VARIANCE_SAMPLE_TYPE_DESC",
|
|
48071
|
+
ClaimsVarianceSampleUpdatedAtAsc = "CLAIMS_VARIANCE_SAMPLE_UPDATED_AT_ASC",
|
|
48072
|
+
ClaimsVarianceSampleUpdatedAtDesc = "CLAIMS_VARIANCE_SAMPLE_UPDATED_AT_DESC",
|
|
48073
|
+
ClaimsVarianceSampleUpdatedBlockIdAsc = "CLAIMS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC",
|
|
48074
|
+
ClaimsVarianceSampleUpdatedBlockIdDesc = "CLAIMS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC",
|
|
48075
|
+
CreatedAtAsc = "CREATED_AT_ASC",
|
|
48076
|
+
CreatedAtDesc = "CREATED_AT_DESC",
|
|
48077
|
+
CreatedBlockIdAsc = "CREATED_BLOCK_ID_ASC",
|
|
48078
|
+
CreatedBlockIdDesc = "CREATED_BLOCK_ID_DESC",
|
|
48079
|
+
IdentityIdAsc = "IDENTITY_ID_ASC",
|
|
48080
|
+
IdentityIdDesc = "IDENTITY_ID_DESC",
|
|
48081
|
+
IdAsc = "ID_ASC",
|
|
48082
|
+
IdDesc = "ID_DESC",
|
|
48083
|
+
NameAsc = "NAME_ASC",
|
|
48084
|
+
NameDesc = "NAME_DESC",
|
|
48085
|
+
Natural = "NATURAL",
|
|
48086
|
+
PrimaryKeyAsc = "PRIMARY_KEY_ASC",
|
|
48087
|
+
PrimaryKeyDesc = "PRIMARY_KEY_DESC",
|
|
48088
|
+
UpdatedAtAsc = "UPDATED_AT_ASC",
|
|
48089
|
+
UpdatedAtDesc = "UPDATED_AT_DESC",
|
|
48090
|
+
UpdatedBlockIdAsc = "UPDATED_BLOCK_ID_ASC",
|
|
48091
|
+
UpdatedBlockIdDesc = "UPDATED_BLOCK_ID_DESC"
|
|
48092
|
+
}
|
|
46708
48093
|
/** A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ */
|
|
46709
48094
|
export declare type DatetimeFilter = {
|
|
46710
48095
|
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
@@ -48581,8 +49966,10 @@ export declare enum EventIdEnum {
|
|
|
48581
49966
|
AgentAdded = "AgentAdded",
|
|
48582
49967
|
AgentRemoved = "AgentRemoved",
|
|
48583
49968
|
AllGood = "AllGood",
|
|
49969
|
+
ApiHashUpdated = "ApiHashUpdated",
|
|
48584
49970
|
Approval = "Approval",
|
|
48585
49971
|
Approved = "Approved",
|
|
49972
|
+
AssetAffirmationExemption = "AssetAffirmationExemption",
|
|
48586
49973
|
AssetBalanceUpdated = "AssetBalanceUpdated",
|
|
48587
49974
|
AssetCompliancePaused = "AssetCompliancePaused",
|
|
48588
49975
|
AssetComplianceReplaced = "AssetComplianceReplaced",
|
|
@@ -48737,6 +50124,7 @@ export declare enum EventIdEnum {
|
|
|
48737
50124
|
InstantiationUnFreezed = "InstantiationUnFreezed",
|
|
48738
50125
|
InstructionAffirmed = "InstructionAffirmed",
|
|
48739
50126
|
InstructionAuthorized = "InstructionAuthorized",
|
|
50127
|
+
InstructionAutomaticallyAffirmed = "InstructionAutomaticallyAffirmed",
|
|
48740
50128
|
InstructionCreated = "InstructionCreated",
|
|
48741
50129
|
InstructionExecuted = "InstructionExecuted",
|
|
48742
50130
|
InstructionFailed = "InstructionFailed",
|
|
@@ -48805,6 +50193,8 @@ export declare enum EventIdEnum {
|
|
|
48805
50193
|
PortfolioCustodianChanged = "PortfolioCustodianChanged",
|
|
48806
50194
|
PortfolioDeleted = "PortfolioDeleted",
|
|
48807
50195
|
PortfolioRenamed = "PortfolioRenamed",
|
|
50196
|
+
PreApprovedAsset = "PreApprovedAsset",
|
|
50197
|
+
PreApprovedPortfolio = "PreApprovedPortfolio",
|
|
48808
50198
|
PrimaryIssuanceAgentTransfered = "PrimaryIssuanceAgentTransfered",
|
|
48809
50199
|
PrimaryIssuanceAgentTransferred = "PrimaryIssuanceAgentTransferred",
|
|
48810
50200
|
PrimaryKeyUpdated = "PrimaryKeyUpdated",
|
|
@@ -48844,6 +50234,8 @@ export declare enum EventIdEnum {
|
|
|
48844
50234
|
RelayedTx = "RelayedTx",
|
|
48845
50235
|
ReleaseCoordinatorUpdated = "ReleaseCoordinatorUpdated",
|
|
48846
50236
|
Remarked = "Remarked",
|
|
50237
|
+
RemoveAssetAffirmationExemption = "RemoveAssetAffirmationExemption",
|
|
50238
|
+
RemovePreApprovedAsset = "RemovePreApprovedAsset",
|
|
48847
50239
|
Removed = "Removed",
|
|
48848
50240
|
RemovedPayingKey = "RemovedPayingKey",
|
|
48849
50241
|
Requested = "Requested",
|
|
@@ -48851,8 +50243,10 @@ export declare enum EventIdEnum {
|
|
|
48851
50243
|
Reserved = "Reserved",
|
|
48852
50244
|
Restored = "Restored",
|
|
48853
50245
|
Resumed = "Resumed",
|
|
50246
|
+
RevokePreApprovedPortfolio = "RevokePreApprovedPortfolio",
|
|
48854
50247
|
Reward = "Reward",
|
|
48855
50248
|
RewardPaymentSchedulingInterrupted = "RewardPaymentSchedulingInterrupted",
|
|
50249
|
+
ScRuntimeCall = "SCRuntimeCall",
|
|
48856
50250
|
ScheduleCreated = "ScheduleCreated",
|
|
48857
50251
|
ScheduleRemoved = "ScheduleRemoved",
|
|
48858
50252
|
ScheduleUpdated = "ScheduleUpdated",
|
|
@@ -53015,6 +54409,134 @@ export declare enum IdentitiesOrderBy {
|
|
|
53015
54409
|
CreatedAtDesc = "CREATED_AT_DESC",
|
|
53016
54410
|
CreatedBlockIdAsc = "CREATED_BLOCK_ID_ASC",
|
|
53017
54411
|
CreatedBlockIdDesc = "CREATED_BLOCK_ID_DESC",
|
|
54412
|
+
CustomClaimTypesAverageCreatedAtAsc = "CUSTOM_CLAIM_TYPES_AVERAGE_CREATED_AT_ASC",
|
|
54413
|
+
CustomClaimTypesAverageCreatedAtDesc = "CUSTOM_CLAIM_TYPES_AVERAGE_CREATED_AT_DESC",
|
|
54414
|
+
CustomClaimTypesAverageCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_AVERAGE_CREATED_BLOCK_ID_ASC",
|
|
54415
|
+
CustomClaimTypesAverageCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_AVERAGE_CREATED_BLOCK_ID_DESC",
|
|
54416
|
+
CustomClaimTypesAverageIdentityIdAsc = "CUSTOM_CLAIM_TYPES_AVERAGE_IDENTITY_ID_ASC",
|
|
54417
|
+
CustomClaimTypesAverageIdentityIdDesc = "CUSTOM_CLAIM_TYPES_AVERAGE_IDENTITY_ID_DESC",
|
|
54418
|
+
CustomClaimTypesAverageIdAsc = "CUSTOM_CLAIM_TYPES_AVERAGE_ID_ASC",
|
|
54419
|
+
CustomClaimTypesAverageIdDesc = "CUSTOM_CLAIM_TYPES_AVERAGE_ID_DESC",
|
|
54420
|
+
CustomClaimTypesAverageNameAsc = "CUSTOM_CLAIM_TYPES_AVERAGE_NAME_ASC",
|
|
54421
|
+
CustomClaimTypesAverageNameDesc = "CUSTOM_CLAIM_TYPES_AVERAGE_NAME_DESC",
|
|
54422
|
+
CustomClaimTypesAverageUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_AVERAGE_UPDATED_AT_ASC",
|
|
54423
|
+
CustomClaimTypesAverageUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_AVERAGE_UPDATED_AT_DESC",
|
|
54424
|
+
CustomClaimTypesAverageUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_AVERAGE_UPDATED_BLOCK_ID_ASC",
|
|
54425
|
+
CustomClaimTypesAverageUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_AVERAGE_UPDATED_BLOCK_ID_DESC",
|
|
54426
|
+
CustomClaimTypesCountAsc = "CUSTOM_CLAIM_TYPES_COUNT_ASC",
|
|
54427
|
+
CustomClaimTypesCountDesc = "CUSTOM_CLAIM_TYPES_COUNT_DESC",
|
|
54428
|
+
CustomClaimTypesDistinctCountCreatedAtAsc = "CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_CREATED_AT_ASC",
|
|
54429
|
+
CustomClaimTypesDistinctCountCreatedAtDesc = "CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_CREATED_AT_DESC",
|
|
54430
|
+
CustomClaimTypesDistinctCountCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC",
|
|
54431
|
+
CustomClaimTypesDistinctCountCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC",
|
|
54432
|
+
CustomClaimTypesDistinctCountIdentityIdAsc = "CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_IDENTITY_ID_ASC",
|
|
54433
|
+
CustomClaimTypesDistinctCountIdentityIdDesc = "CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_IDENTITY_ID_DESC",
|
|
54434
|
+
CustomClaimTypesDistinctCountIdAsc = "CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_ID_ASC",
|
|
54435
|
+
CustomClaimTypesDistinctCountIdDesc = "CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_ID_DESC",
|
|
54436
|
+
CustomClaimTypesDistinctCountNameAsc = "CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_NAME_ASC",
|
|
54437
|
+
CustomClaimTypesDistinctCountNameDesc = "CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_NAME_DESC",
|
|
54438
|
+
CustomClaimTypesDistinctCountUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_UPDATED_AT_ASC",
|
|
54439
|
+
CustomClaimTypesDistinctCountUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_UPDATED_AT_DESC",
|
|
54440
|
+
CustomClaimTypesDistinctCountUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC",
|
|
54441
|
+
CustomClaimTypesDistinctCountUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC",
|
|
54442
|
+
CustomClaimTypesMaxCreatedAtAsc = "CUSTOM_CLAIM_TYPES_MAX_CREATED_AT_ASC",
|
|
54443
|
+
CustomClaimTypesMaxCreatedAtDesc = "CUSTOM_CLAIM_TYPES_MAX_CREATED_AT_DESC",
|
|
54444
|
+
CustomClaimTypesMaxCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_MAX_CREATED_BLOCK_ID_ASC",
|
|
54445
|
+
CustomClaimTypesMaxCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_MAX_CREATED_BLOCK_ID_DESC",
|
|
54446
|
+
CustomClaimTypesMaxIdentityIdAsc = "CUSTOM_CLAIM_TYPES_MAX_IDENTITY_ID_ASC",
|
|
54447
|
+
CustomClaimTypesMaxIdentityIdDesc = "CUSTOM_CLAIM_TYPES_MAX_IDENTITY_ID_DESC",
|
|
54448
|
+
CustomClaimTypesMaxIdAsc = "CUSTOM_CLAIM_TYPES_MAX_ID_ASC",
|
|
54449
|
+
CustomClaimTypesMaxIdDesc = "CUSTOM_CLAIM_TYPES_MAX_ID_DESC",
|
|
54450
|
+
CustomClaimTypesMaxNameAsc = "CUSTOM_CLAIM_TYPES_MAX_NAME_ASC",
|
|
54451
|
+
CustomClaimTypesMaxNameDesc = "CUSTOM_CLAIM_TYPES_MAX_NAME_DESC",
|
|
54452
|
+
CustomClaimTypesMaxUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_MAX_UPDATED_AT_ASC",
|
|
54453
|
+
CustomClaimTypesMaxUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_MAX_UPDATED_AT_DESC",
|
|
54454
|
+
CustomClaimTypesMaxUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_MAX_UPDATED_BLOCK_ID_ASC",
|
|
54455
|
+
CustomClaimTypesMaxUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_MAX_UPDATED_BLOCK_ID_DESC",
|
|
54456
|
+
CustomClaimTypesMinCreatedAtAsc = "CUSTOM_CLAIM_TYPES_MIN_CREATED_AT_ASC",
|
|
54457
|
+
CustomClaimTypesMinCreatedAtDesc = "CUSTOM_CLAIM_TYPES_MIN_CREATED_AT_DESC",
|
|
54458
|
+
CustomClaimTypesMinCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_MIN_CREATED_BLOCK_ID_ASC",
|
|
54459
|
+
CustomClaimTypesMinCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_MIN_CREATED_BLOCK_ID_DESC",
|
|
54460
|
+
CustomClaimTypesMinIdentityIdAsc = "CUSTOM_CLAIM_TYPES_MIN_IDENTITY_ID_ASC",
|
|
54461
|
+
CustomClaimTypesMinIdentityIdDesc = "CUSTOM_CLAIM_TYPES_MIN_IDENTITY_ID_DESC",
|
|
54462
|
+
CustomClaimTypesMinIdAsc = "CUSTOM_CLAIM_TYPES_MIN_ID_ASC",
|
|
54463
|
+
CustomClaimTypesMinIdDesc = "CUSTOM_CLAIM_TYPES_MIN_ID_DESC",
|
|
54464
|
+
CustomClaimTypesMinNameAsc = "CUSTOM_CLAIM_TYPES_MIN_NAME_ASC",
|
|
54465
|
+
CustomClaimTypesMinNameDesc = "CUSTOM_CLAIM_TYPES_MIN_NAME_DESC",
|
|
54466
|
+
CustomClaimTypesMinUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_MIN_UPDATED_AT_ASC",
|
|
54467
|
+
CustomClaimTypesMinUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_MIN_UPDATED_AT_DESC",
|
|
54468
|
+
CustomClaimTypesMinUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_MIN_UPDATED_BLOCK_ID_ASC",
|
|
54469
|
+
CustomClaimTypesMinUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_MIN_UPDATED_BLOCK_ID_DESC",
|
|
54470
|
+
CustomClaimTypesStddevPopulationCreatedAtAsc = "CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_CREATED_AT_ASC",
|
|
54471
|
+
CustomClaimTypesStddevPopulationCreatedAtDesc = "CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_CREATED_AT_DESC",
|
|
54472
|
+
CustomClaimTypesStddevPopulationCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC",
|
|
54473
|
+
CustomClaimTypesStddevPopulationCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC",
|
|
54474
|
+
CustomClaimTypesStddevPopulationIdentityIdAsc = "CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_IDENTITY_ID_ASC",
|
|
54475
|
+
CustomClaimTypesStddevPopulationIdentityIdDesc = "CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_IDENTITY_ID_DESC",
|
|
54476
|
+
CustomClaimTypesStddevPopulationIdAsc = "CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_ID_ASC",
|
|
54477
|
+
CustomClaimTypesStddevPopulationIdDesc = "CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_ID_DESC",
|
|
54478
|
+
CustomClaimTypesStddevPopulationNameAsc = "CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_NAME_ASC",
|
|
54479
|
+
CustomClaimTypesStddevPopulationNameDesc = "CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_NAME_DESC",
|
|
54480
|
+
CustomClaimTypesStddevPopulationUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_UPDATED_AT_ASC",
|
|
54481
|
+
CustomClaimTypesStddevPopulationUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_UPDATED_AT_DESC",
|
|
54482
|
+
CustomClaimTypesStddevPopulationUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC",
|
|
54483
|
+
CustomClaimTypesStddevPopulationUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC",
|
|
54484
|
+
CustomClaimTypesStddevSampleCreatedAtAsc = "CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_CREATED_AT_ASC",
|
|
54485
|
+
CustomClaimTypesStddevSampleCreatedAtDesc = "CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_CREATED_AT_DESC",
|
|
54486
|
+
CustomClaimTypesStddevSampleCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC",
|
|
54487
|
+
CustomClaimTypesStddevSampleCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC",
|
|
54488
|
+
CustomClaimTypesStddevSampleIdentityIdAsc = "CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_IDENTITY_ID_ASC",
|
|
54489
|
+
CustomClaimTypesStddevSampleIdentityIdDesc = "CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_IDENTITY_ID_DESC",
|
|
54490
|
+
CustomClaimTypesStddevSampleIdAsc = "CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_ID_ASC",
|
|
54491
|
+
CustomClaimTypesStddevSampleIdDesc = "CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_ID_DESC",
|
|
54492
|
+
CustomClaimTypesStddevSampleNameAsc = "CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_NAME_ASC",
|
|
54493
|
+
CustomClaimTypesStddevSampleNameDesc = "CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_NAME_DESC",
|
|
54494
|
+
CustomClaimTypesStddevSampleUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_UPDATED_AT_ASC",
|
|
54495
|
+
CustomClaimTypesStddevSampleUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_UPDATED_AT_DESC",
|
|
54496
|
+
CustomClaimTypesStddevSampleUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC",
|
|
54497
|
+
CustomClaimTypesStddevSampleUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC",
|
|
54498
|
+
CustomClaimTypesSumCreatedAtAsc = "CUSTOM_CLAIM_TYPES_SUM_CREATED_AT_ASC",
|
|
54499
|
+
CustomClaimTypesSumCreatedAtDesc = "CUSTOM_CLAIM_TYPES_SUM_CREATED_AT_DESC",
|
|
54500
|
+
CustomClaimTypesSumCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_SUM_CREATED_BLOCK_ID_ASC",
|
|
54501
|
+
CustomClaimTypesSumCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_SUM_CREATED_BLOCK_ID_DESC",
|
|
54502
|
+
CustomClaimTypesSumIdentityIdAsc = "CUSTOM_CLAIM_TYPES_SUM_IDENTITY_ID_ASC",
|
|
54503
|
+
CustomClaimTypesSumIdentityIdDesc = "CUSTOM_CLAIM_TYPES_SUM_IDENTITY_ID_DESC",
|
|
54504
|
+
CustomClaimTypesSumIdAsc = "CUSTOM_CLAIM_TYPES_SUM_ID_ASC",
|
|
54505
|
+
CustomClaimTypesSumIdDesc = "CUSTOM_CLAIM_TYPES_SUM_ID_DESC",
|
|
54506
|
+
CustomClaimTypesSumNameAsc = "CUSTOM_CLAIM_TYPES_SUM_NAME_ASC",
|
|
54507
|
+
CustomClaimTypesSumNameDesc = "CUSTOM_CLAIM_TYPES_SUM_NAME_DESC",
|
|
54508
|
+
CustomClaimTypesSumUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_SUM_UPDATED_AT_ASC",
|
|
54509
|
+
CustomClaimTypesSumUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_SUM_UPDATED_AT_DESC",
|
|
54510
|
+
CustomClaimTypesSumUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_SUM_UPDATED_BLOCK_ID_ASC",
|
|
54511
|
+
CustomClaimTypesSumUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_SUM_UPDATED_BLOCK_ID_DESC",
|
|
54512
|
+
CustomClaimTypesVariancePopulationCreatedAtAsc = "CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_CREATED_AT_ASC",
|
|
54513
|
+
CustomClaimTypesVariancePopulationCreatedAtDesc = "CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_CREATED_AT_DESC",
|
|
54514
|
+
CustomClaimTypesVariancePopulationCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC",
|
|
54515
|
+
CustomClaimTypesVariancePopulationCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC",
|
|
54516
|
+
CustomClaimTypesVariancePopulationIdentityIdAsc = "CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_IDENTITY_ID_ASC",
|
|
54517
|
+
CustomClaimTypesVariancePopulationIdentityIdDesc = "CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_IDENTITY_ID_DESC",
|
|
54518
|
+
CustomClaimTypesVariancePopulationIdAsc = "CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_ID_ASC",
|
|
54519
|
+
CustomClaimTypesVariancePopulationIdDesc = "CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_ID_DESC",
|
|
54520
|
+
CustomClaimTypesVariancePopulationNameAsc = "CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_NAME_ASC",
|
|
54521
|
+
CustomClaimTypesVariancePopulationNameDesc = "CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_NAME_DESC",
|
|
54522
|
+
CustomClaimTypesVariancePopulationUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_UPDATED_AT_ASC",
|
|
54523
|
+
CustomClaimTypesVariancePopulationUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_UPDATED_AT_DESC",
|
|
54524
|
+
CustomClaimTypesVariancePopulationUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC",
|
|
54525
|
+
CustomClaimTypesVariancePopulationUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC",
|
|
54526
|
+
CustomClaimTypesVarianceSampleCreatedAtAsc = "CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_CREATED_AT_ASC",
|
|
54527
|
+
CustomClaimTypesVarianceSampleCreatedAtDesc = "CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_CREATED_AT_DESC",
|
|
54528
|
+
CustomClaimTypesVarianceSampleCreatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC",
|
|
54529
|
+
CustomClaimTypesVarianceSampleCreatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC",
|
|
54530
|
+
CustomClaimTypesVarianceSampleIdentityIdAsc = "CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_IDENTITY_ID_ASC",
|
|
54531
|
+
CustomClaimTypesVarianceSampleIdentityIdDesc = "CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_IDENTITY_ID_DESC",
|
|
54532
|
+
CustomClaimTypesVarianceSampleIdAsc = "CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_ID_ASC",
|
|
54533
|
+
CustomClaimTypesVarianceSampleIdDesc = "CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_ID_DESC",
|
|
54534
|
+
CustomClaimTypesVarianceSampleNameAsc = "CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_NAME_ASC",
|
|
54535
|
+
CustomClaimTypesVarianceSampleNameDesc = "CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_NAME_DESC",
|
|
54536
|
+
CustomClaimTypesVarianceSampleUpdatedAtAsc = "CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_UPDATED_AT_ASC",
|
|
54537
|
+
CustomClaimTypesVarianceSampleUpdatedAtDesc = "CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_UPDATED_AT_DESC",
|
|
54538
|
+
CustomClaimTypesVarianceSampleUpdatedBlockIdAsc = "CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC",
|
|
54539
|
+
CustomClaimTypesVarianceSampleUpdatedBlockIdDesc = "CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC",
|
|
53018
54540
|
DatetimeAsc = "DATETIME_ASC",
|
|
53019
54541
|
DatetimeDesc = "DATETIME_DESC",
|
|
53020
54542
|
DidAsc = "DID_ASC",
|
|
@@ -57193,6 +58715,10 @@ export declare type Identity = Node & {
|
|
|
57193
58715
|
/** Reads and enables pagination through a set of `Block`. */
|
|
57194
58716
|
blocksByClaimTargetIdAndUpdatedBlockId: IdentityBlocksByClaimTargetIdAndUpdatedBlockIdManyToManyConnection;
|
|
57195
58717
|
/** Reads and enables pagination through a set of `Block`. */
|
|
58718
|
+
blocksByCustomClaimTypeIdentityIdAndCreatedBlockId: IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyConnection;
|
|
58719
|
+
/** Reads and enables pagination through a set of `Block`. */
|
|
58720
|
+
blocksByCustomClaimTypeIdentityIdAndUpdatedBlockId: IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyConnection;
|
|
58721
|
+
/** Reads and enables pagination through a set of `Block`. */
|
|
57196
58722
|
blocksByDistributionIdentityIdAndCreatedBlockId: IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdManyToManyConnection;
|
|
57197
58723
|
/** Reads and enables pagination through a set of `Block`. */
|
|
57198
58724
|
blocksByDistributionIdentityIdAndUpdatedBlockId: IdentityBlocksByDistributionIdentityIdAndUpdatedBlockIdManyToManyConnection;
|
|
@@ -57272,6 +58798,12 @@ export declare type Identity = Node & {
|
|
|
57272
58798
|
/** Reads a single `Block` that is related to this `Identity`. */
|
|
57273
58799
|
createdBlock?: Maybe<Block>;
|
|
57274
58800
|
createdBlockId: Scalars['String']['output'];
|
|
58801
|
+
/** Reads and enables pagination through a set of `CustomClaimType`. */
|
|
58802
|
+
customClaimTypes: CustomClaimTypesConnection;
|
|
58803
|
+
/** Reads and enables pagination through a set of `CustomClaimType`. */
|
|
58804
|
+
customClaimTypesByClaimIssuerIdAndCustomClaimTypeId: IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyConnection;
|
|
58805
|
+
/** Reads and enables pagination through a set of `CustomClaimType`. */
|
|
58806
|
+
customClaimTypesByClaimTargetIdAndCustomClaimTypeId: IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToManyConnection;
|
|
57275
58807
|
datetime: Scalars['Datetime']['output'];
|
|
57276
58808
|
did: Scalars['String']['output'];
|
|
57277
58809
|
/** Reads and enables pagination through a set of `DistributionPayment`. */
|
|
@@ -57803,6 +59335,36 @@ export declare type IdentityBlocksByClaimTargetIdAndUpdatedBlockIdArgs = {
|
|
|
57803
59335
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
57804
59336
|
orderBy?: InputMaybe<Array<BlocksOrderBy>>;
|
|
57805
59337
|
};
|
|
59338
|
+
/**
|
|
59339
|
+
* Represents a person or business on chain. All Polymesh assets belong to an Identity. A single Identity can have many accounts (i.e. "keys")
|
|
59340
|
+
*
|
|
59341
|
+
* An Identity needs a valid CDD claim from at least one KYC/KYB provider to perform most actions on chain
|
|
59342
|
+
*/
|
|
59343
|
+
export declare type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdArgs = {
|
|
59344
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
59345
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
59346
|
+
distinct?: InputMaybe<Array<InputMaybe<Blocks_Distinct_Enum>>>;
|
|
59347
|
+
filter?: InputMaybe<BlockFilter>;
|
|
59348
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59349
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
59350
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
59351
|
+
orderBy?: InputMaybe<Array<BlocksOrderBy>>;
|
|
59352
|
+
};
|
|
59353
|
+
/**
|
|
59354
|
+
* Represents a person or business on chain. All Polymesh assets belong to an Identity. A single Identity can have many accounts (i.e. "keys")
|
|
59355
|
+
*
|
|
59356
|
+
* An Identity needs a valid CDD claim from at least one KYC/KYB provider to perform most actions on chain
|
|
59357
|
+
*/
|
|
59358
|
+
export declare type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdArgs = {
|
|
59359
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
59360
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
59361
|
+
distinct?: InputMaybe<Array<InputMaybe<Blocks_Distinct_Enum>>>;
|
|
59362
|
+
filter?: InputMaybe<BlockFilter>;
|
|
59363
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59364
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
59365
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
59366
|
+
orderBy?: InputMaybe<Array<BlocksOrderBy>>;
|
|
59367
|
+
};
|
|
57806
59368
|
/**
|
|
57807
59369
|
* Represents a person or business on chain. All Polymesh assets belong to an Identity. A single Identity can have many accounts (i.e. "keys")
|
|
57808
59370
|
*
|
|
@@ -58373,6 +59935,51 @@ export declare type IdentityClaimsByTargetIdArgs = {
|
|
|
58373
59935
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
58374
59936
|
orderBy?: InputMaybe<Array<ClaimsOrderBy>>;
|
|
58375
59937
|
};
|
|
59938
|
+
/**
|
|
59939
|
+
* Represents a person or business on chain. All Polymesh assets belong to an Identity. A single Identity can have many accounts (i.e. "keys")
|
|
59940
|
+
*
|
|
59941
|
+
* An Identity needs a valid CDD claim from at least one KYC/KYB provider to perform most actions on chain
|
|
59942
|
+
*/
|
|
59943
|
+
export declare type IdentityCustomClaimTypesArgs = {
|
|
59944
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
59945
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
59946
|
+
distinct?: InputMaybe<Array<InputMaybe<Custom_Claim_Types_Distinct_Enum>>>;
|
|
59947
|
+
filter?: InputMaybe<CustomClaimTypeFilter>;
|
|
59948
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59949
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
59950
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
59951
|
+
orderBy?: InputMaybe<Array<CustomClaimTypesOrderBy>>;
|
|
59952
|
+
};
|
|
59953
|
+
/**
|
|
59954
|
+
* Represents a person or business on chain. All Polymesh assets belong to an Identity. A single Identity can have many accounts (i.e. "keys")
|
|
59955
|
+
*
|
|
59956
|
+
* An Identity needs a valid CDD claim from at least one KYC/KYB provider to perform most actions on chain
|
|
59957
|
+
*/
|
|
59958
|
+
export declare type IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdArgs = {
|
|
59959
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
59960
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
59961
|
+
distinct?: InputMaybe<Array<InputMaybe<Custom_Claim_Types_Distinct_Enum>>>;
|
|
59962
|
+
filter?: InputMaybe<CustomClaimTypeFilter>;
|
|
59963
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59964
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
59965
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
59966
|
+
orderBy?: InputMaybe<Array<CustomClaimTypesOrderBy>>;
|
|
59967
|
+
};
|
|
59968
|
+
/**
|
|
59969
|
+
* Represents a person or business on chain. All Polymesh assets belong to an Identity. A single Identity can have many accounts (i.e. "keys")
|
|
59970
|
+
*
|
|
59971
|
+
* An Identity needs a valid CDD claim from at least one KYC/KYB provider to perform most actions on chain
|
|
59972
|
+
*/
|
|
59973
|
+
export declare type IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdArgs = {
|
|
59974
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
59975
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
59976
|
+
distinct?: InputMaybe<Array<InputMaybe<Custom_Claim_Types_Distinct_Enum>>>;
|
|
59977
|
+
filter?: InputMaybe<CustomClaimTypeFilter>;
|
|
59978
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59979
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
59980
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
59981
|
+
orderBy?: InputMaybe<Array<CustomClaimTypesOrderBy>>;
|
|
59982
|
+
};
|
|
58376
59983
|
/**
|
|
58377
59984
|
* Represents a person or business on chain. All Polymesh assets belong to an Identity. A single Identity can have many accounts (i.e. "keys")
|
|
58378
59985
|
*
|
|
@@ -60072,6 +61679,90 @@ export declare type IdentityBlocksByClaimTargetIdAndUpdatedBlockIdManyToManyEdge
|
|
|
60072
61679
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
60073
61680
|
orderBy?: InputMaybe<Array<ClaimsOrderBy>>;
|
|
60074
61681
|
};
|
|
61682
|
+
/** A connection to a list of `Block` values, with data from `CustomClaimType`. */
|
|
61683
|
+
export declare type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyConnection = {
|
|
61684
|
+
__typename?: 'IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyConnection';
|
|
61685
|
+
/** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
61686
|
+
aggregates?: Maybe<BlockAggregates>;
|
|
61687
|
+
/** A list of edges which contains the `Block`, info from the `CustomClaimType`, and the cursor to aid in pagination. */
|
|
61688
|
+
edges: Array<IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyEdge>;
|
|
61689
|
+
/** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
61690
|
+
groupedAggregates?: Maybe<Array<BlockAggregates>>;
|
|
61691
|
+
/** A list of `Block` objects. */
|
|
61692
|
+
nodes: Array<Maybe<Block>>;
|
|
61693
|
+
/** Information to aid in pagination. */
|
|
61694
|
+
pageInfo: PageInfo;
|
|
61695
|
+
/** The count of *all* `Block` you could get from the connection. */
|
|
61696
|
+
totalCount: Scalars['Int']['output'];
|
|
61697
|
+
};
|
|
61698
|
+
/** A connection to a list of `Block` values, with data from `CustomClaimType`. */
|
|
61699
|
+
export declare type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = {
|
|
61700
|
+
groupBy: Array<BlocksGroupBy>;
|
|
61701
|
+
having?: InputMaybe<BlocksHavingInput>;
|
|
61702
|
+
};
|
|
61703
|
+
/** A `Block` edge in the connection, with data from `CustomClaimType`. */
|
|
61704
|
+
export declare type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyEdge = {
|
|
61705
|
+
__typename?: 'IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyEdge';
|
|
61706
|
+
/** A cursor for use in pagination. */
|
|
61707
|
+
cursor?: Maybe<Scalars['Cursor']['output']>;
|
|
61708
|
+
/** Reads and enables pagination through a set of `CustomClaimType`. */
|
|
61709
|
+
customClaimTypesByCreatedBlockId: CustomClaimTypesConnection;
|
|
61710
|
+
/** The `Block` at the end of the edge. */
|
|
61711
|
+
node?: Maybe<Block>;
|
|
61712
|
+
};
|
|
61713
|
+
/** A `Block` edge in the connection, with data from `CustomClaimType`. */
|
|
61714
|
+
export declare type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyEdgeCustomClaimTypesByCreatedBlockIdArgs = {
|
|
61715
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
61716
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
61717
|
+
distinct?: InputMaybe<Array<InputMaybe<Custom_Claim_Types_Distinct_Enum>>>;
|
|
61718
|
+
filter?: InputMaybe<CustomClaimTypeFilter>;
|
|
61719
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61720
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61721
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
61722
|
+
orderBy?: InputMaybe<Array<CustomClaimTypesOrderBy>>;
|
|
61723
|
+
};
|
|
61724
|
+
/** A connection to a list of `Block` values, with data from `CustomClaimType`. */
|
|
61725
|
+
export declare type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyConnection = {
|
|
61726
|
+
__typename?: 'IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyConnection';
|
|
61727
|
+
/** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
61728
|
+
aggregates?: Maybe<BlockAggregates>;
|
|
61729
|
+
/** A list of edges which contains the `Block`, info from the `CustomClaimType`, and the cursor to aid in pagination. */
|
|
61730
|
+
edges: Array<IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyEdge>;
|
|
61731
|
+
/** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
61732
|
+
groupedAggregates?: Maybe<Array<BlockAggregates>>;
|
|
61733
|
+
/** A list of `Block` objects. */
|
|
61734
|
+
nodes: Array<Maybe<Block>>;
|
|
61735
|
+
/** Information to aid in pagination. */
|
|
61736
|
+
pageInfo: PageInfo;
|
|
61737
|
+
/** The count of *all* `Block` you could get from the connection. */
|
|
61738
|
+
totalCount: Scalars['Int']['output'];
|
|
61739
|
+
};
|
|
61740
|
+
/** A connection to a list of `Block` values, with data from `CustomClaimType`. */
|
|
61741
|
+
export declare type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = {
|
|
61742
|
+
groupBy: Array<BlocksGroupBy>;
|
|
61743
|
+
having?: InputMaybe<BlocksHavingInput>;
|
|
61744
|
+
};
|
|
61745
|
+
/** A `Block` edge in the connection, with data from `CustomClaimType`. */
|
|
61746
|
+
export declare type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyEdge = {
|
|
61747
|
+
__typename?: 'IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyEdge';
|
|
61748
|
+
/** A cursor for use in pagination. */
|
|
61749
|
+
cursor?: Maybe<Scalars['Cursor']['output']>;
|
|
61750
|
+
/** Reads and enables pagination through a set of `CustomClaimType`. */
|
|
61751
|
+
customClaimTypesByUpdatedBlockId: CustomClaimTypesConnection;
|
|
61752
|
+
/** The `Block` at the end of the edge. */
|
|
61753
|
+
node?: Maybe<Block>;
|
|
61754
|
+
};
|
|
61755
|
+
/** A `Block` edge in the connection, with data from `CustomClaimType`. */
|
|
61756
|
+
export declare type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyEdgeCustomClaimTypesByUpdatedBlockIdArgs = {
|
|
61757
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
61758
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
61759
|
+
distinct?: InputMaybe<Array<InputMaybe<Custom_Claim_Types_Distinct_Enum>>>;
|
|
61760
|
+
filter?: InputMaybe<CustomClaimTypeFilter>;
|
|
61761
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61762
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61763
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
61764
|
+
orderBy?: InputMaybe<Array<CustomClaimTypesOrderBy>>;
|
|
61765
|
+
};
|
|
60075
61766
|
/** A connection to a list of `Block` values, with data from `Distribution`. */
|
|
60076
61767
|
export declare type IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdManyToManyConnection = {
|
|
60077
61768
|
__typename?: 'IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdManyToManyConnection';
|
|
@@ -61500,6 +63191,90 @@ export declare type IdentityBlocksByVenueOwnerIdAndUpdatedBlockIdManyToManyEdgeV
|
|
|
61500
63191
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
61501
63192
|
orderBy?: InputMaybe<Array<VenuesOrderBy>>;
|
|
61502
63193
|
};
|
|
63194
|
+
/** A connection to a list of `CustomClaimType` values, with data from `Claim`. */
|
|
63195
|
+
export declare type IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyConnection = {
|
|
63196
|
+
__typename?: 'IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyConnection';
|
|
63197
|
+
/** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
63198
|
+
aggregates?: Maybe<CustomClaimTypeAggregates>;
|
|
63199
|
+
/** A list of edges which contains the `CustomClaimType`, info from the `Claim`, and the cursor to aid in pagination. */
|
|
63200
|
+
edges: Array<IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyEdge>;
|
|
63201
|
+
/** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
63202
|
+
groupedAggregates?: Maybe<Array<CustomClaimTypeAggregates>>;
|
|
63203
|
+
/** A list of `CustomClaimType` objects. */
|
|
63204
|
+
nodes: Array<Maybe<CustomClaimType>>;
|
|
63205
|
+
/** Information to aid in pagination. */
|
|
63206
|
+
pageInfo: PageInfo;
|
|
63207
|
+
/** The count of *all* `CustomClaimType` you could get from the connection. */
|
|
63208
|
+
totalCount: Scalars['Int']['output'];
|
|
63209
|
+
};
|
|
63210
|
+
/** A connection to a list of `CustomClaimType` values, with data from `Claim`. */
|
|
63211
|
+
export declare type IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = {
|
|
63212
|
+
groupBy: Array<CustomClaimTypesGroupBy>;
|
|
63213
|
+
having?: InputMaybe<CustomClaimTypesHavingInput>;
|
|
63214
|
+
};
|
|
63215
|
+
/** A `CustomClaimType` edge in the connection, with data from `Claim`. */
|
|
63216
|
+
export declare type IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyEdge = {
|
|
63217
|
+
__typename?: 'IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyEdge';
|
|
63218
|
+
/** Reads and enables pagination through a set of `Claim`. */
|
|
63219
|
+
claims: ClaimsConnection;
|
|
63220
|
+
/** A cursor for use in pagination. */
|
|
63221
|
+
cursor?: Maybe<Scalars['Cursor']['output']>;
|
|
63222
|
+
/** The `CustomClaimType` at the end of the edge. */
|
|
63223
|
+
node?: Maybe<CustomClaimType>;
|
|
63224
|
+
};
|
|
63225
|
+
/** A `CustomClaimType` edge in the connection, with data from `Claim`. */
|
|
63226
|
+
export declare type IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyEdgeClaimsArgs = {
|
|
63227
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
63228
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
63229
|
+
distinct?: InputMaybe<Array<InputMaybe<Claims_Distinct_Enum>>>;
|
|
63230
|
+
filter?: InputMaybe<ClaimFilter>;
|
|
63231
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63232
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63233
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
63234
|
+
orderBy?: InputMaybe<Array<ClaimsOrderBy>>;
|
|
63235
|
+
};
|
|
63236
|
+
/** A connection to a list of `CustomClaimType` values, with data from `Claim`. */
|
|
63237
|
+
export declare type IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToManyConnection = {
|
|
63238
|
+
__typename?: 'IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToManyConnection';
|
|
63239
|
+
/** Aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
63240
|
+
aggregates?: Maybe<CustomClaimTypeAggregates>;
|
|
63241
|
+
/** A list of edges which contains the `CustomClaimType`, info from the `Claim`, and the cursor to aid in pagination. */
|
|
63242
|
+
edges: Array<IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToManyEdge>;
|
|
63243
|
+
/** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */
|
|
63244
|
+
groupedAggregates?: Maybe<Array<CustomClaimTypeAggregates>>;
|
|
63245
|
+
/** A list of `CustomClaimType` objects. */
|
|
63246
|
+
nodes: Array<Maybe<CustomClaimType>>;
|
|
63247
|
+
/** Information to aid in pagination. */
|
|
63248
|
+
pageInfo: PageInfo;
|
|
63249
|
+
/** The count of *all* `CustomClaimType` you could get from the connection. */
|
|
63250
|
+
totalCount: Scalars['Int']['output'];
|
|
63251
|
+
};
|
|
63252
|
+
/** A connection to a list of `CustomClaimType` values, with data from `Claim`. */
|
|
63253
|
+
export declare type IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = {
|
|
63254
|
+
groupBy: Array<CustomClaimTypesGroupBy>;
|
|
63255
|
+
having?: InputMaybe<CustomClaimTypesHavingInput>;
|
|
63256
|
+
};
|
|
63257
|
+
/** A `CustomClaimType` edge in the connection, with data from `Claim`. */
|
|
63258
|
+
export declare type IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToManyEdge = {
|
|
63259
|
+
__typename?: 'IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToManyEdge';
|
|
63260
|
+
/** Reads and enables pagination through a set of `Claim`. */
|
|
63261
|
+
claims: ClaimsConnection;
|
|
63262
|
+
/** A cursor for use in pagination. */
|
|
63263
|
+
cursor?: Maybe<Scalars['Cursor']['output']>;
|
|
63264
|
+
/** The `CustomClaimType` at the end of the edge. */
|
|
63265
|
+
node?: Maybe<CustomClaimType>;
|
|
63266
|
+
};
|
|
63267
|
+
/** A `CustomClaimType` edge in the connection, with data from `Claim`. */
|
|
63268
|
+
export declare type IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToManyEdgeClaimsArgs = {
|
|
63269
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
63270
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
63271
|
+
distinct?: InputMaybe<Array<InputMaybe<Claims_Distinct_Enum>>>;
|
|
63272
|
+
filter?: InputMaybe<ClaimFilter>;
|
|
63273
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63274
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63275
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
63276
|
+
orderBy?: InputMaybe<Array<ClaimsOrderBy>>;
|
|
63277
|
+
};
|
|
61503
63278
|
export declare type IdentityDistinctCountAggregateFilter = {
|
|
61504
63279
|
createdAt?: InputMaybe<BigIntFilter>;
|
|
61505
63280
|
createdBlockId?: InputMaybe<BigIntFilter>;
|
|
@@ -61611,6 +63386,10 @@ export declare type IdentityFilter = {
|
|
|
61611
63386
|
createdBlock?: InputMaybe<BlockFilter>;
|
|
61612
63387
|
/** Filter by the object’s `createdBlockId` field. */
|
|
61613
63388
|
createdBlockId?: InputMaybe<StringFilter>;
|
|
63389
|
+
/** Filter by the object’s `customClaimTypes` relation. */
|
|
63390
|
+
customClaimTypes?: InputMaybe<IdentityToManyCustomClaimTypeFilter>;
|
|
63391
|
+
/** Some related `customClaimTypes` exist. */
|
|
63392
|
+
customClaimTypesExist?: InputMaybe<Scalars['Boolean']['input']>;
|
|
61614
63393
|
/** Filter by the object’s `datetime` field. */
|
|
61615
63394
|
datetime?: InputMaybe<DatetimeFilter>;
|
|
61616
63395
|
/** Filter by the object’s `did` field. */
|
|
@@ -62295,6 +64074,17 @@ export declare type IdentityToManyClaimFilter = {
|
|
|
62295
64074
|
/** Some related `Claim` matches the filter criteria. All fields are combined with a logical ‘and.’ */
|
|
62296
64075
|
some?: InputMaybe<ClaimFilter>;
|
|
62297
64076
|
};
|
|
64077
|
+
/** A filter to be used against many `CustomClaimType` object types. All fields are combined with a logical ‘and.’ */
|
|
64078
|
+
export declare type IdentityToManyCustomClaimTypeFilter = {
|
|
64079
|
+
/** Aggregates across related `CustomClaimType` match the filter criteria. */
|
|
64080
|
+
aggregates?: InputMaybe<CustomClaimTypeAggregatesFilter>;
|
|
64081
|
+
/** Every related `CustomClaimType` matches the filter criteria. All fields are combined with a logical ‘and.’ */
|
|
64082
|
+
every?: InputMaybe<CustomClaimTypeFilter>;
|
|
64083
|
+
/** No related `CustomClaimType` matches the filter criteria. All fields are combined with a logical ‘and.’ */
|
|
64084
|
+
none?: InputMaybe<CustomClaimTypeFilter>;
|
|
64085
|
+
/** Some related `CustomClaimType` matches the filter criteria. All fields are combined with a logical ‘and.’ */
|
|
64086
|
+
some?: InputMaybe<CustomClaimTypeFilter>;
|
|
64087
|
+
};
|
|
62298
64088
|
/** A filter to be used against many `Distribution` object types. All fields are combined with a logical ‘and.’ */
|
|
62299
64089
|
export declare type IdentityToManyDistributionFilter = {
|
|
62300
64090
|
/** Aggregates across related `Distribution` match the filter criteria. */
|
|
@@ -65320,7 +67110,7 @@ export declare type MultiSigProposal = Node & {
|
|
|
65320
67110
|
nodeId: Scalars['ID']['output'];
|
|
65321
67111
|
proposalId: Scalars['Int']['output'];
|
|
65322
67112
|
rejectionCount: Scalars['Int']['output'];
|
|
65323
|
-
status
|
|
67113
|
+
status: Scalars['String']['output'];
|
|
65324
67114
|
updatedAt: Scalars['Datetime']['output'];
|
|
65325
67115
|
/** Reads a single `Block` that is related to this `MultiSigProposal`. */
|
|
65326
67116
|
updatedBlock?: Maybe<Block>;
|
|
@@ -65610,7 +67400,7 @@ export declare type MultiSigProposalFilter = {
|
|
|
65610
67400
|
/** Filter by the object’s `rejectionCount` field. */
|
|
65611
67401
|
rejectionCount?: InputMaybe<IntFilter>;
|
|
65612
67402
|
/** Filter by the object’s `status` field. */
|
|
65613
|
-
status?: InputMaybe<
|
|
67403
|
+
status?: InputMaybe<StringFilter>;
|
|
65614
67404
|
/** Filter by the object’s `updatedAt` field. */
|
|
65615
67405
|
updatedAt?: InputMaybe<DatetimeFilter>;
|
|
65616
67406
|
/** Filter by the object’s `updatedBlock` relation. */
|
|
@@ -65704,38 +67494,6 @@ export declare type MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposa
|
|
|
65704
67494
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
65705
67495
|
orderBy?: InputMaybe<Array<MultiSigProposalVotesOrderBy>>;
|
|
65706
67496
|
};
|
|
65707
|
-
/** Represents the list of proposal status */
|
|
65708
|
-
export declare enum MultiSigProposalStatusEnum {
|
|
65709
|
-
Active = "Active",
|
|
65710
|
-
Failed = "Failed",
|
|
65711
|
-
Rejected = "Rejected",
|
|
65712
|
-
Success = "Success"
|
|
65713
|
-
}
|
|
65714
|
-
/** A filter to be used against MultiSigProposalStatusEnum fields. All fields are combined with a logical ‘and.’ */
|
|
65715
|
-
export declare type MultiSigProposalStatusEnumFilter = {
|
|
65716
|
-
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
65717
|
-
distinctFrom?: InputMaybe<MultiSigProposalStatusEnum>;
|
|
65718
|
-
/** Equal to the specified value. */
|
|
65719
|
-
equalTo?: InputMaybe<MultiSigProposalStatusEnum>;
|
|
65720
|
-
/** Greater than the specified value. */
|
|
65721
|
-
greaterThan?: InputMaybe<MultiSigProposalStatusEnum>;
|
|
65722
|
-
/** Greater than or equal to the specified value. */
|
|
65723
|
-
greaterThanOrEqualTo?: InputMaybe<MultiSigProposalStatusEnum>;
|
|
65724
|
-
/** Included in the specified list. */
|
|
65725
|
-
in?: InputMaybe<Array<MultiSigProposalStatusEnum>>;
|
|
65726
|
-
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
65727
|
-
isNull?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65728
|
-
/** Less than the specified value. */
|
|
65729
|
-
lessThan?: InputMaybe<MultiSigProposalStatusEnum>;
|
|
65730
|
-
/** Less than or equal to the specified value. */
|
|
65731
|
-
lessThanOrEqualTo?: InputMaybe<MultiSigProposalStatusEnum>;
|
|
65732
|
-
/** Equal to the specified value, treating null like an ordinary value. */
|
|
65733
|
-
notDistinctFrom?: InputMaybe<MultiSigProposalStatusEnum>;
|
|
65734
|
-
/** Not equal to the specified value. */
|
|
65735
|
-
notEqualTo?: InputMaybe<MultiSigProposalStatusEnum>;
|
|
65736
|
-
/** Not included in the specified list. */
|
|
65737
|
-
notIn?: InputMaybe<Array<MultiSigProposalStatusEnum>>;
|
|
65738
|
-
};
|
|
65739
67497
|
export declare type MultiSigProposalStddevPopulationAggregateFilter = {
|
|
65740
67498
|
approvalCount?: InputMaybe<BigFloatFilter>;
|
|
65741
67499
|
eventIdx?: InputMaybe<BigFloatFilter>;
|
|
@@ -76376,6 +78134,11 @@ export declare type Query = Node & {
|
|
|
76376
78134
|
complianceByNodeId?: Maybe<Compliance>;
|
|
76377
78135
|
/** Reads and enables pagination through a set of `Compliance`. */
|
|
76378
78136
|
compliances?: Maybe<CompliancesConnection>;
|
|
78137
|
+
customClaimType?: Maybe<CustomClaimType>;
|
|
78138
|
+
/** Reads a single `CustomClaimType` using its globally unique `ID`. */
|
|
78139
|
+
customClaimTypeByNodeId?: Maybe<CustomClaimType>;
|
|
78140
|
+
/** Reads and enables pagination through a set of `CustomClaimType`. */
|
|
78141
|
+
customClaimTypes?: Maybe<CustomClaimTypesConnection>;
|
|
76379
78142
|
debug?: Maybe<Debug>;
|
|
76380
78143
|
/** Reads a single `Debug` using its globally unique `ID`. */
|
|
76381
78144
|
debugByNodeId?: Maybe<Debug>;
|
|
@@ -76896,6 +78659,26 @@ export declare type QueryCompliancesArgs = {
|
|
|
76896
78659
|
orderBy?: InputMaybe<Array<CompliancesOrderBy>>;
|
|
76897
78660
|
};
|
|
76898
78661
|
/** The root query type which gives access points into the data universe. */
|
|
78662
|
+
export declare type QueryCustomClaimTypeArgs = {
|
|
78663
|
+
id: Scalars['String']['input'];
|
|
78664
|
+
};
|
|
78665
|
+
/** The root query type which gives access points into the data universe. */
|
|
78666
|
+
export declare type QueryCustomClaimTypeByNodeIdArgs = {
|
|
78667
|
+
distinct?: InputMaybe<Array<InputMaybe<Custom_Claim_Types_Distinct_Enum>>>;
|
|
78668
|
+
nodeId: Scalars['ID']['input'];
|
|
78669
|
+
};
|
|
78670
|
+
/** The root query type which gives access points into the data universe. */
|
|
78671
|
+
export declare type QueryCustomClaimTypesArgs = {
|
|
78672
|
+
after?: InputMaybe<Scalars['Cursor']['input']>;
|
|
78673
|
+
before?: InputMaybe<Scalars['Cursor']['input']>;
|
|
78674
|
+
distinct?: InputMaybe<Array<InputMaybe<Custom_Claim_Types_Distinct_Enum>>>;
|
|
78675
|
+
filter?: InputMaybe<CustomClaimTypeFilter>;
|
|
78676
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78677
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
78678
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
78679
|
+
orderBy?: InputMaybe<Array<CustomClaimTypesOrderBy>>;
|
|
78680
|
+
};
|
|
78681
|
+
/** The root query type which gives access points into the data universe. */
|
|
76899
78682
|
export declare type QueryDebugArgs = {
|
|
76900
78683
|
id: Scalars['String']['input'];
|
|
76901
78684
|
};
|
|
@@ -84278,6 +86061,15 @@ export declare enum Compliances_Distinct_Enum {
|
|
|
84278
86061
|
UpdatedAt = "UPDATED_AT",
|
|
84279
86062
|
UpdatedBlockId = "UPDATED_BLOCK_ID"
|
|
84280
86063
|
}
|
|
86064
|
+
export declare enum Custom_Claim_Types_Distinct_Enum {
|
|
86065
|
+
CreatedAt = "CREATED_AT",
|
|
86066
|
+
CreatedBlockId = "CREATED_BLOCK_ID",
|
|
86067
|
+
Id = "ID",
|
|
86068
|
+
IdentityId = "IDENTITY_ID",
|
|
86069
|
+
Name = "NAME",
|
|
86070
|
+
UpdatedAt = "UPDATED_AT",
|
|
86071
|
+
UpdatedBlockId = "UPDATED_BLOCK_ID"
|
|
86072
|
+
}
|
|
84281
86073
|
export declare enum Debugs_Distinct_Enum {
|
|
84282
86074
|
Context = "CONTEXT",
|
|
84283
86075
|
CreatedAt = "CREATED_AT",
|