@carddb/core 0.4.1 → 0.4.5

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/dist/index.d.cts CHANGED
@@ -309,7 +309,14 @@ interface ScanMetrics {
309
309
  completedJobs: number;
310
310
  failedJobs: number;
311
311
  failureRate: number;
312
+ noMatchCount: number;
313
+ noMatchRate: number;
312
314
  averageShortlistSize: number;
315
+ vectorQueryCount: number;
316
+ vectorFallbackCount: number;
317
+ averageVectorCandidates: number;
318
+ averageVectorQueryMs: number;
319
+ averageEmbeddingMs: number;
313
320
  confidenceDistribution: Record<string, unknown>;
314
321
  feedback: ScanFeedbackMetrics;
315
322
  featureVersions: ScanFeatureVersionMetrics[];
@@ -326,8 +333,14 @@ interface ScanFeatureVersionMetrics {
326
333
  jobCount: number;
327
334
  completedJobs: number;
328
335
  failedJobs: number;
336
+ noMatchCount: number;
329
337
  averageConfidence: number | null;
330
338
  averageShortlistSize: number;
339
+ vectorQueryCount: number;
340
+ vectorFallbackCount: number;
341
+ averageVectorCandidates: number;
342
+ averageVectorQueryMs: number;
343
+ averageEmbeddingMs: number;
331
344
  feedbackCount: number;
332
345
  correctFeedback: number;
333
346
  correctedFeedback: number;
@@ -566,7 +579,7 @@ interface ImportJob {
566
579
  publisher: Publisher;
567
580
  datasetId: string;
568
581
  dataset: Dataset;
569
- accountId: string;
582
+ accountId: string | null;
570
583
  status: ImportJobStatus;
571
584
  mode: ImportMode;
572
585
  onConflict: OnConflict;
@@ -898,9 +911,10 @@ type DeckEnvironment = 'TEST' | 'LIVE';
898
911
  type DeckAccessMode = 'PUBLIC' | 'OWNER_ONLY' | 'AUTHORIZED_TOKEN';
899
912
  type DeckDiscoverability = 'LISTED' | 'UNLISTED';
900
913
  type DeckState = 'DRAFT' | 'PUBLISHED' | 'ARCHIVED' | 'DELETED';
901
- type DeckTokenReadMode = 'PUBLIC' | 'PREVIEW' | 'EMBED' | 'FULL';
902
- type DeckSessionScope = 'DECKS_READ' | 'DECKS_WRITE' | 'DECKS_PUBLISH' | 'DECKS_DELETE' | 'DECKS_EMBED' | 'DECKS_PREVIEW' | 'DECKS_COLLABORATE';
903
- type DeckAccessTokenSigningAlgorithm = 'ED25519';
914
+ type DeckReadState = 'DRAFT' | 'PUBLISHED';
915
+ type DeckRepresentation = 'PUBLIC' | 'EMBED' | 'DETAILED';
916
+ type DeckTokenScope = 'DECK_DRAFT_READ' | 'DECK_DRAFT_WRITE' | 'DECK_PUBLISH' | 'DECK_DELETE' | 'DECK_PUBLISHED_READ' | 'DECK_VERSION_READ' | 'DECK_COLLABORATE';
917
+ type DeckTokenSigningAlgorithm = 'ED25519';
904
918
  type DeckImportFormat = 'SIMPLE_TEXT' | 'CONFIGURED';
905
919
  type DeckExportFormat = 'SIMPLE_TEXT';
906
920
  type DeckCollaboratorRole = 'VIEWER' | 'EDITOR';
@@ -1058,46 +1072,18 @@ interface DeckAPIApplicationAccess {
1058
1072
  createdAt: string;
1059
1073
  updatedAt: string;
1060
1074
  }
1061
- interface DeckPreviewToken {
1062
- id: string;
1063
- deckId: string;
1064
- label: string | null;
1065
- expiresAt: string | null;
1066
- revokedAt: string | null;
1067
- lastUsedAt: string | null;
1068
- createdAt: string;
1069
- updatedAt: string;
1070
- }
1071
- interface DeckPreviewTokenCreatePayload {
1072
- token: string;
1073
- previewToken: DeckPreviewToken;
1074
- }
1075
- interface DeckEmbedToken {
1076
- id: string;
1077
- deckId: string;
1078
- apiApplicationId: string | null;
1079
- label: string | null;
1080
- readMode: DeckTokenReadMode;
1081
- allowedOrigins: string[];
1082
- externalSubject: string | null;
1083
- expiresAt: string | null;
1084
- revokedAt: string | null;
1085
- lastUsedAt: string | null;
1086
- createdAt: string;
1087
- updatedAt: string;
1088
- }
1089
- interface DeckEmbedTokenCreatePayload {
1090
- token: string;
1091
- embedToken: DeckEmbedToken;
1075
+ interface DeckPublishedVersionSelector {
1076
+ versionId?: string;
1077
+ versionNumber?: number;
1092
1078
  }
1093
- interface DeckAccessTokenIssuer {
1079
+ interface DeckTokenIssuer {
1094
1080
  id: string;
1095
- deckId: string;
1096
1081
  apiApplicationId: string;
1097
1082
  label: string | null;
1098
- readModes: DeckTokenReadMode[];
1083
+ allowedScopes: DeckTokenScope[];
1084
+ allowedRepresentations: DeckRepresentation[];
1099
1085
  maxTokenLifetimeSeconds: number;
1100
- directSigningAlg: DeckAccessTokenSigningAlgorithm | null;
1086
+ directSigningAlg: DeckTokenSigningAlgorithm | null;
1101
1087
  directSigningKeyId: string | null;
1102
1088
  directSigningPublicKey: string | null;
1103
1089
  directSigningKeyRevokedAt: string | null;
@@ -1105,40 +1091,24 @@ interface DeckAccessTokenIssuer {
1105
1091
  createdAt: string;
1106
1092
  updatedAt: string;
1107
1093
  }
1108
- interface DeckAccessToken {
1094
+ interface DeckToken {
1109
1095
  id: string;
1110
- deckId: string;
1111
1096
  apiApplicationId: string;
1112
- issuerId: string;
1113
- readMode: DeckTokenReadMode;
1097
+ issuerId: string | null;
1098
+ deckId: string | null;
1099
+ gameId: string | null;
1114
1100
  externalSubject: string | null;
1101
+ scopes: DeckTokenScope[];
1102
+ representation: DeckRepresentation | null;
1115
1103
  expiresAt: string;
1116
1104
  revokedAt: string | null;
1117
1105
  lastUsedAt: string | null;
1118
1106
  createdAt: string;
1119
1107
  updatedAt: string;
1120
1108
  }
1121
- interface DeckAccessTokenExchangePayload {
1122
- token: string;
1123
- accessToken: DeckAccessToken;
1124
- }
1125
- interface DeckSessionToken {
1126
- id: string;
1127
- accountId: string;
1128
- apiApplicationId: string;
1129
- gameId: string;
1130
- environment: DeckEnvironment;
1131
- externalSubject: string;
1132
- scopes: string[];
1133
- expiresAt: string;
1134
- revokedAt: string | null;
1135
- lastUsedAt: string | null;
1136
- createdAt: string;
1137
- updatedAt: string;
1138
- }
1139
- interface DeckSessionTokenExchangePayload {
1109
+ interface DeckTokenExchangePayload {
1140
1110
  token: string;
1141
- sessionToken: DeckSessionToken;
1111
+ deckToken: DeckToken;
1142
1112
  }
1143
1113
  interface DeckEntry {
1144
1114
  id: string;
@@ -1174,7 +1144,11 @@ interface DeckCreateInput {
1174
1144
  rulesetId?: string;
1175
1145
  sourceUrl?: string;
1176
1146
  metadata?: Record<string, unknown>;
1177
- entries: DeckEntryInput[];
1147
+ /**
1148
+ * Omit/null to create an empty deck on first upsert or preserve entries on update.
1149
+ * Pass [] to explicitly replace existing entries with an empty decklist.
1150
+ */
1151
+ entries?: DeckEntryInput[] | null;
1178
1152
  }
1179
1153
  interface DeckUpsertByExternalRefInput {
1180
1154
  externalRef: string;
@@ -1345,43 +1319,26 @@ interface DeckSectionDefinition {
1345
1319
  legalCardTypes: string[];
1346
1320
  metadata: Record<string, unknown>;
1347
1321
  }
1348
- interface DeckPreviewTokenCreateInput {
1349
- deckId: string;
1350
- label?: string;
1351
- expiresAt?: string;
1352
- }
1353
- interface DeckEmbedTokenCreateInput {
1354
- deckId: string;
1355
- label?: string;
1356
- readMode?: DeckTokenReadMode;
1357
- allowedOrigins?: string[];
1358
- externalSubject?: string;
1359
- expiresAt?: string;
1360
- }
1361
- interface DeckAccessTokenIssuerCreateInput {
1362
- deckId: string;
1363
- apiApplicationId?: string;
1322
+ interface DeckTokenIssuerCreateInput {
1364
1323
  label?: string;
1365
- readModes?: DeckTokenReadMode[];
1324
+ allowedScopes: DeckTokenScope[];
1325
+ allowedRepresentations?: DeckRepresentation[];
1366
1326
  maxTokenLifetimeSeconds?: number;
1367
- directSigningKey?: DeckAccessTokenIssuerSigningKeyInput;
1327
+ directSigningKey?: DeckTokenIssuerSigningKeyInput;
1368
1328
  }
1369
- interface DeckAccessTokenIssuerSigningKeyInput {
1370
- algorithm: DeckAccessTokenSigningAlgorithm;
1329
+ interface DeckTokenIssuerSigningKeyInput {
1330
+ algorithm: DeckTokenSigningAlgorithm;
1371
1331
  keyId: string;
1372
1332
  publicKey: string;
1373
1333
  }
1374
- interface DeckAccessTokenExchangeInput {
1375
- deckId: string;
1376
- readMode: DeckTokenReadMode;
1334
+ interface DeckTokenExchangeInput {
1335
+ issuerId?: string;
1336
+ deckId?: string;
1337
+ publisherSlug?: string;
1338
+ gameKey?: string;
1377
1339
  externalSubject?: string;
1378
- expiresAt?: string;
1379
- }
1380
- interface DeckSessionTokenExchangeInput {
1381
- publisherSlug: string;
1382
- gameKey: string;
1383
- externalSubject: string;
1384
- scopes: DeckSessionScope[];
1340
+ scopes: DeckTokenScope[];
1341
+ representation?: DeckRepresentation;
1385
1342
  expiresAt?: string;
1386
1343
  }
1387
1344
  interface DeckAPIApplicationAccessGrantInput {
@@ -2393,15 +2350,6 @@ declare const QueryBuilder: {
2393
2350
  query: string;
2394
2351
  variables: Record<string, unknown>;
2395
2352
  };
2396
- deckPreview(): {
2397
- query: string;
2398
- };
2399
- deckEmbed(): {
2400
- query: string;
2401
- };
2402
- deckAccess(): {
2403
- query: string;
2404
- };
2405
2353
  deckDraftDiff(): {
2406
2354
  query: string;
2407
2355
  };
@@ -2424,12 +2372,6 @@ declare const QueryBuilder: {
2424
2372
  deckCollaborators(): {
2425
2373
  query: string;
2426
2374
  };
2427
- deckEmbedTokens(): {
2428
- query: string;
2429
- };
2430
- deckAccessTokenIssuers(): {
2431
- query: string;
2432
- };
2433
2375
  deckApiApplicationAccesses(): {
2434
2376
  query: string;
2435
2377
  };
@@ -2446,9 +2388,6 @@ declare const QueryBuilder: {
2446
2388
  deckImportFormatTest(): {
2447
2389
  query: string;
2448
2390
  };
2449
- deckPreviewTokens(): {
2450
- query: string;
2451
- };
2452
2391
  createDeck(): {
2453
2392
  query: string;
2454
2393
  };
@@ -2521,31 +2460,19 @@ declare const QueryBuilder: {
2521
2460
  removeDeckCollaborator(): {
2522
2461
  query: string;
2523
2462
  };
2524
- createDeckPreviewToken(): {
2463
+ createDeckTokenIssuer(): {
2525
2464
  query: string;
2526
2465
  };
2527
- revokeDeckPreviewToken(): {
2466
+ revokeDeckTokenIssuer(): {
2528
2467
  query: string;
2529
2468
  };
2530
- createDeckEmbedToken(): {
2469
+ revokeDeckTokenIssuerSigningKey(): {
2531
2470
  query: string;
2532
2471
  };
2533
- revokeDeckEmbedToken(): {
2472
+ exchangeDeckToken(): {
2534
2473
  query: string;
2535
2474
  };
2536
- createDeckAccessTokenIssuer(): {
2537
- query: string;
2538
- };
2539
- revokeDeckAccessTokenIssuer(): {
2540
- query: string;
2541
- };
2542
- revokeDeckAccessTokenIssuerSigningKey(): {
2543
- query: string;
2544
- };
2545
- exchangeDeckAccessToken(): {
2546
- query: string;
2547
- };
2548
- exchangeDeckSessionToken(): {
2475
+ revokeDeckToken(): {
2549
2476
  query: string;
2550
2477
  };
2551
2478
  grantDeckApiApplicationAccess(): {
@@ -2554,9 +2481,6 @@ declare const QueryBuilder: {
2554
2481
  revokeDeckApiApplicationAccess(): {
2555
2482
  query: string;
2556
2483
  };
2557
- revokeDeckAccessToken(): {
2558
- query: string;
2559
- };
2560
2484
  deckCreateVariables(input: DeckCreateInput): Record<string, unknown>;
2561
2485
  deckUpdateVariables(id: string, input: DeckUpdateInput): Record<string, unknown>;
2562
2486
  deckEntryAddVariables(input: DeckEntryAddInput): Record<string, unknown>;
@@ -2569,6 +2493,8 @@ declare const QueryBuilder: {
2569
2493
  deckImportFormatUpdateVariables(id: string, input: DeckImportFormatUpdateInput): Record<string, unknown>;
2570
2494
  deckImportFormatTestVariables(input: DeckImportFormatTestInput): Record<string, unknown>;
2571
2495
  deckUpsertByExternalRefVariables(input: DeckUpsertByExternalRefInput): Record<string, unknown>;
2496
+ deckReadVariables(id: string, readState: DeckReadState, version?: DeckPublishedVersionSelector): Record<string, unknown>;
2497
+ deckExternalRefReadVariables(externalRef: string, readState: DeckReadState, version?: DeckPublishedVersionSelector): Record<string, unknown>;
2572
2498
  deckClaimVariables(id: string, input: DeckClaimInput): Record<string, unknown>;
2573
2499
  deckTransferOwnershipVariables(id: string, input: DeckTransferOwnershipInput): Record<string, unknown>;
2574
2500
  deckCopyVariables(id: string, input: DeckCopyInput): Record<string, unknown>;
@@ -2579,11 +2505,8 @@ declare const QueryBuilder: {
2579
2505
  deckExportVariables(id: string, format: DeckExportFormat): Record<string, unknown>;
2580
2506
  deckVersionDiffVariables(fromVersionId: string, toVersionId: string): Record<string, unknown>;
2581
2507
  deckCollaboratorVariables(deckId: string, accountId: string, role?: DeckCollaboratorRole): Record<string, unknown>;
2582
- deckPreviewTokenCreateVariables(input: DeckPreviewTokenCreateInput): Record<string, unknown>;
2583
- deckEmbedTokenCreateVariables(input: DeckEmbedTokenCreateInput): Record<string, unknown>;
2584
- deckAccessTokenIssuerCreateVariables(input: DeckAccessTokenIssuerCreateInput): Record<string, unknown>;
2585
- deckAccessTokenExchangeVariables(input: DeckAccessTokenExchangeInput): Record<string, unknown>;
2586
- deckSessionTokenExchangeVariables(input: DeckSessionTokenExchangeInput): Record<string, unknown>;
2508
+ deckTokenIssuerCreateVariables(input: DeckTokenIssuerCreateInput): Record<string, unknown>;
2509
+ deckTokenExchangeVariables(input: DeckTokenExchangeInput): Record<string, unknown>;
2587
2510
  deckApiApplicationAccessesVariables(deckId: string, includeRevoked?: boolean): Record<string, unknown>;
2588
2511
  myDeckApiApplicationAccessesVariables(applicationId?: string): Record<string, unknown>;
2589
2512
  deckApiApplicationAccessGrantVariables(input: DeckAPIApplicationAccessGrantInput): Record<string, unknown>;
@@ -2749,4 +2672,4 @@ declare class Collection<T> implements AsyncIterable<T> {
2749
2672
  each(): AsyncIterable<T>;
2750
2673
  }
2751
2674
 
2752
- export { type APIAccount, type APIApplication, type APIKeyInfo, type AppDecksFilterInput, type AppDecksParams, AuthenticationError, type BulkCreateResult, type BulkImportResult, type BulkInsertMode, type BulkRecordError, type Cache, type CardDBConfig, CardDBError, Collection, type ConfirmScanUploadInput, type Connection, ConnectionError, type CreateScanJobInput, type CreateScanUploadSessionInput, type CsvOptions, type Dataset, type DatasetExportInput, type DatasetImportFromFileInput, type DatasetImportFromPayloadInput, type DatasetImportFromUrlInput, type DatasetImportPreview, type DatasetImportPreviewInput, type DatasetImportPreviewResult, type DatasetImportRunInput, type DatasetImportValidateInput, type DatasetPurpose, type DatasetRecord, type DatasetRecordDeleteJob, type DatasetRecordDeleteJobConnection, type DatasetRecordDeleteJobResult, type DatasetRecordDeleteJobStatus, type DatasetRecordDeleteResultStatus, type DatasetRecordDeleteTargetType, type DatasetRecordsDeleteInput, type DatasetRecordsUpsertInput, type DatasetRecordsUpsertPayload, type DatasetRef, type DatasetSchema, type DatasetVisibility, type Deck, type DeckAPIApplicationAccess, type DeckAPIApplicationAccessGrantInput, type DeckAPIApplicationAccessGrantSource, type DeckAPIApplicationAccessRole, type DeckAccessApplication, type DeckAccessMode, type DeckAccessToken, type DeckAccessTokenExchangeInput, type DeckAccessTokenExchangePayload, type DeckAccessTokenIssuer, type DeckAccessTokenIssuerCreateInput, type DeckAccessTokenIssuerSigningKeyInput, type DeckAccessTokenSigningAlgorithm, type DeckAppAccessRetention, type DeckClaimInput, type DeckCollaborator, type DeckCollaboratorRole, type DeckCopyInput, type DeckCopyPayload, type DeckCreateInput, type DeckDiff, type DeckDiscoverability, type DeckEmbedToken, type DeckEmbedTokenCreateInput, type DeckEmbedTokenCreatePayload, type DeckEntriesReplaceInput, type DeckEntriesReplacePayload, type DeckEntry, type DeckEntryAddInput, type DeckEntryInput, type DeckEntryMutationPayload, type DeckEntryReorderInput, type DeckEntryReorderItemInput, type DeckEntryReorderPayload, type DeckEntryUpdateInput, type DeckEnvironment, type DeckExportFormat, type DeckExportPayload, type DeckHydrateEntriesInput, type DeckHydrateEntriesPayload, type DeckImportAmbiguousEntry, type DeckImportCandidate, type DeckImportEntry, type DeckImportFormat, type DeckImportFormatCreateInput, type DeckImportFormatDefinition, type DeckImportFormatDefinitionConnection, type DeckImportFormatDetection, type DeckImportFormatTestInput, type DeckImportFormatTestPayload, type DeckImportFormatUpdateInput, type DeckImportInput, type DeckImportIssue, type DeckImportPayload, type DeckImportUnmatchedEntry, type DeckOwnerType, type DeckOwnershipTransferPayload, type DeckPreviewToken, type DeckPreviewTokenCreateInput, type DeckPreviewTokenCreatePayload, type DeckPublishInput, type DeckPublishPayload, type DeckRemoveInvalidEntriesInput, type DeckSectionDefinition, type DeckSectionDefinitionsParams, type DeckSessionScope, type DeckSessionToken, type DeckSessionTokenExchangeInput, type DeckSessionTokenExchangePayload, type DeckState, type DeckTokenReadMode, type DeckTransferOwnershipInput, type DeckUpdateInput, type DeckUpsertByExternalRefInput, type DeckUpsertByExternalRefPayload, type DeckValidateInput, type DeckValidatedAgainst, type DeckValidation, type DeckValidationAffectedEntry, type DeckValidationIssue, type DeckValidationSeverity, type DeckVersion, type DeckVersionConnection, type DeckVisibility, type Edge, type ExportFormat, type ExportJob, type ExportJobConnection, type ExportJobStatus, type FieldInfo, type FieldMapping, type FieldMappingOverrideInput, type FieldMappingStatus, type FieldType, type File, type FileInfo, type FileStatus, type FileUploadInput, FilterBuilder, type FilterBuilderInterface, type FilterCondition, type FilterInput, type FilterOperatorValue, type FilterValue, type Game, type GameCreateInput, type GameImportDatasetStatus, type GameImportFromFileInput, type GameImportFromPayloadInput, type GameImportFromUrlInput, type GameImportJob, type GameImportJobConnection, type GameImportPreview, type GameImportPreviewInput, type GameImportRunInput, type GameRef, type GameScanRegion, type GameUpdateInput, type GameVisibility, GraphQLError, type GraphQLErrorInfo, type HydrateDeckEntryInput, type HydratedDeckEntry, type ImportFormat, type ImportJob, type ImportJobAsset, type ImportJobAssetInput, type ImportJobConnection, type ImportJobLog, type ImportJobLogConnection, type ImportJobStatus, type ImportLogLevel, type ImportMode, type ImportOptions, type ImportStats, type ImportValidationError, type ImportWarning, type ImportWarningSeverity, type InferredChildField, type LinkFieldInfo, LinkResolutionError, type LinkResolutionFailure, type ListDeckImportFormatsParams, type ListDeckVersionsParams, type ListDecksParams, type LogLevel, type Logger, type NextPageLoader, NotFoundError, type ObjectField, type OnConflict, type PageInfo, type PresignedUpload, type PreviewScanTemplateInput, type PublicDecksFilterInput, type PublicDecksParams, type Publisher, type PublisherRef, type PublisherStatus, QueryBuilder, RateLimitError, type RateLimitInfo, type ResolveScanTemplateInput, type ResolvedLink, type ResourceType, RestrictedError, type SaveScanTemplateInput, type ScanBestMatch, type ScanCandidate, type ScanFeatureVersionMetrics, type ScanFeedbackMetrics, type ScanFeedbackPayload, type ScanJob, type ScanJobError, type ScanJobMetrics, type ScanJobPayload, type ScanJobStatus, type ScanMetrics, type ScanMetricsInput, type ScanStageMetrics, type ScanTemplate, type ScanTemplateList, type ScanTemplatePayload, type ScanTemplatePreview, type ScanTemplateRegion, type ScanTemplateRegionInput, type ScanTemplateRegionPreview, type ScanTemplateResolution, type ScanTemplateWarning, type ScanTemplatesInput, type ScanWebhookState, type SearchDatasetsParams, type SearchGamesParams, type SearchPublishersParams, type SearchRecordsParams, ServerError, type SubmitScanFeedbackInput, type TCGPlayerPrice, type TCGPlayerPricing, TimeoutError, type UploadPurpose, ValidationError, type ViewerDecksFilterInput, type ViewerDecksParams, contains, eq, gt, gte, ilike, isNotNull, isNull, like, lt, lte, neq, notWithin, resolveFilter, within };
2675
+ export { type APIAccount, type APIApplication, type APIKeyInfo, type AppDecksFilterInput, type AppDecksParams, AuthenticationError, type BulkCreateResult, type BulkImportResult, type BulkInsertMode, type BulkRecordError, type Cache, type CardDBConfig, CardDBError, Collection, type ConfirmScanUploadInput, type Connection, ConnectionError, type CreateScanJobInput, type CreateScanUploadSessionInput, type CsvOptions, type Dataset, type DatasetExportInput, type DatasetImportFromFileInput, type DatasetImportFromPayloadInput, type DatasetImportFromUrlInput, type DatasetImportPreview, type DatasetImportPreviewInput, type DatasetImportPreviewResult, type DatasetImportRunInput, type DatasetImportValidateInput, type DatasetPurpose, type DatasetRecord, type DatasetRecordDeleteJob, type DatasetRecordDeleteJobConnection, type DatasetRecordDeleteJobResult, type DatasetRecordDeleteJobStatus, type DatasetRecordDeleteResultStatus, type DatasetRecordDeleteTargetType, type DatasetRecordsDeleteInput, type DatasetRecordsUpsertInput, type DatasetRecordsUpsertPayload, type DatasetRef, type DatasetSchema, type DatasetVisibility, type Deck, type DeckAPIApplicationAccess, type DeckAPIApplicationAccessGrantInput, type DeckAPIApplicationAccessGrantSource, type DeckAPIApplicationAccessRole, type DeckAccessApplication, type DeckAccessMode, type DeckAppAccessRetention, type DeckClaimInput, type DeckCollaborator, type DeckCollaboratorRole, type DeckCopyInput, type DeckCopyPayload, type DeckCreateInput, type DeckDiff, type DeckDiscoverability, type DeckEntriesReplaceInput, type DeckEntriesReplacePayload, type DeckEntry, type DeckEntryAddInput, type DeckEntryInput, type DeckEntryMutationPayload, type DeckEntryReorderInput, type DeckEntryReorderItemInput, type DeckEntryReorderPayload, type DeckEntryUpdateInput, type DeckEnvironment, type DeckExportFormat, type DeckExportPayload, type DeckHydrateEntriesInput, type DeckHydrateEntriesPayload, type DeckImportAmbiguousEntry, type DeckImportCandidate, type DeckImportEntry, type DeckImportFormat, type DeckImportFormatCreateInput, type DeckImportFormatDefinition, type DeckImportFormatDefinitionConnection, type DeckImportFormatDetection, type DeckImportFormatTestInput, type DeckImportFormatTestPayload, type DeckImportFormatUpdateInput, type DeckImportInput, type DeckImportIssue, type DeckImportPayload, type DeckImportUnmatchedEntry, type DeckOwnerType, type DeckOwnershipTransferPayload, type DeckPublishInput, type DeckPublishPayload, type DeckPublishedVersionSelector, type DeckReadState, type DeckRemoveInvalidEntriesInput, type DeckRepresentation, type DeckSectionDefinition, type DeckSectionDefinitionsParams, type DeckState, type DeckToken, type DeckTokenExchangeInput, type DeckTokenExchangePayload, type DeckTokenIssuer, type DeckTokenIssuerCreateInput, type DeckTokenIssuerSigningKeyInput, type DeckTokenScope, type DeckTokenSigningAlgorithm, type DeckTransferOwnershipInput, type DeckUpdateInput, type DeckUpsertByExternalRefInput, type DeckUpsertByExternalRefPayload, type DeckValidateInput, type DeckValidatedAgainst, type DeckValidation, type DeckValidationAffectedEntry, type DeckValidationIssue, type DeckValidationSeverity, type DeckVersion, type DeckVersionConnection, type DeckVisibility, type Edge, type ExportFormat, type ExportJob, type ExportJobConnection, type ExportJobStatus, type FieldInfo, type FieldMapping, type FieldMappingOverrideInput, type FieldMappingStatus, type FieldType, type File, type FileInfo, type FileStatus, type FileUploadInput, FilterBuilder, type FilterBuilderInterface, type FilterCondition, type FilterInput, type FilterOperatorValue, type FilterValue, type Game, type GameCreateInput, type GameImportDatasetStatus, type GameImportFromFileInput, type GameImportFromPayloadInput, type GameImportFromUrlInput, type GameImportJob, type GameImportJobConnection, type GameImportPreview, type GameImportPreviewInput, type GameImportRunInput, type GameRef, type GameScanRegion, type GameUpdateInput, type GameVisibility, GraphQLError, type GraphQLErrorInfo, type HydrateDeckEntryInput, type HydratedDeckEntry, type ImportFormat, type ImportJob, type ImportJobAsset, type ImportJobAssetInput, type ImportJobConnection, type ImportJobLog, type ImportJobLogConnection, type ImportJobStatus, type ImportLogLevel, type ImportMode, type ImportOptions, type ImportStats, type ImportValidationError, type ImportWarning, type ImportWarningSeverity, type InferredChildField, type LinkFieldInfo, LinkResolutionError, type LinkResolutionFailure, type ListDeckImportFormatsParams, type ListDeckVersionsParams, type ListDecksParams, type LogLevel, type Logger, type NextPageLoader, NotFoundError, type ObjectField, type OnConflict, type PageInfo, type PresignedUpload, type PreviewScanTemplateInput, type PublicDecksFilterInput, type PublicDecksParams, type Publisher, type PublisherRef, type PublisherStatus, QueryBuilder, RateLimitError, type RateLimitInfo, type ResolveScanTemplateInput, type ResolvedLink, type ResourceType, RestrictedError, type SaveScanTemplateInput, type ScanBestMatch, type ScanCandidate, type ScanFeatureVersionMetrics, type ScanFeedbackMetrics, type ScanFeedbackPayload, type ScanJob, type ScanJobError, type ScanJobMetrics, type ScanJobPayload, type ScanJobStatus, type ScanMetrics, type ScanMetricsInput, type ScanStageMetrics, type ScanTemplate, type ScanTemplateList, type ScanTemplatePayload, type ScanTemplatePreview, type ScanTemplateRegion, type ScanTemplateRegionInput, type ScanTemplateRegionPreview, type ScanTemplateResolution, type ScanTemplateWarning, type ScanTemplatesInput, type ScanWebhookState, type SearchDatasetsParams, type SearchGamesParams, type SearchPublishersParams, type SearchRecordsParams, ServerError, type SubmitScanFeedbackInput, type TCGPlayerPrice, type TCGPlayerPricing, TimeoutError, type UploadPurpose, ValidationError, type ViewerDecksFilterInput, type ViewerDecksParams, contains, eq, gt, gte, ilike, isNotNull, isNull, like, lt, lte, neq, notWithin, resolveFilter, within };