@lessly/sdk-app 70.0.0 → 70.2.0

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.
Files changed (42) hide show
  1. package/dist/_types/gen/client.gen.d.ts +3 -40
  2. package/dist/_types/gen/manifest.gen.d.ts +1 -1
  3. package/dist/_types/gen/organization/index.d.ts +1 -1
  4. package/dist/_types/gen/organization/queryOptions.gen.d.ts +1 -13
  5. package/dist/_types/gen/types.gen.d.ts +51 -380
  6. package/dist/_types/gen/users/index.d.ts +1 -1
  7. package/dist/_types/gen/users/queryOptions.gen.d.ts +9 -1
  8. package/dist/index.cjs +49 -348
  9. package/dist/index.cjs.map +1 -1
  10. package/dist/index.js +11053 -75
  11. package/dist/index.js.map +1 -1
  12. package/dist/organization/index.cjs +0 -15
  13. package/dist/organization/index.cjs.map +1 -1
  14. package/dist/organization/index.js +1 -13
  15. package/dist/organization/index.js.map +1 -1
  16. package/dist/users/index.cjs +10 -0
  17. package/dist/users/index.cjs.map +1 -1
  18. package/dist/users/index.js +9 -1
  19. package/dist/users/index.js.map +1 -1
  20. package/package.json +2 -12
  21. package/src/gen/bindings.gen.ts +37 -284
  22. package/src/gen/client.gen.ts +6 -77
  23. package/src/gen/manifest.gen.ts +14 -74
  24. package/src/gen/organization/index.ts +1 -1
  25. package/src/gen/organization/queryOptions.gen.ts +0 -19
  26. package/src/gen/types.gen.ts +55 -430
  27. package/src/gen/users/index.ts +1 -1
  28. package/src/gen/users/queryOptions.gen.ts +12 -0
  29. package/dist/_types/gen/playground/connect.gen.d.ts +0 -3
  30. package/dist/_types/gen/playground/index.d.ts +0 -3
  31. package/dist/_types/gen/playground/queryOptions.gen.d.ts +0 -66
  32. package/dist/chunk-GFP6RQ7Z.js +0 -11291
  33. package/dist/chunk-GFP6RQ7Z.js.map +0 -1
  34. package/dist/playground/index.cjs +0 -101
  35. package/dist/playground/index.cjs.map +0 -1
  36. package/dist/playground/index.d.cts +0 -1
  37. package/dist/playground/index.d.ts +0 -1
  38. package/dist/playground/index.js +0 -74
  39. package/dist/playground/index.js.map +0 -1
  40. package/src/gen/playground/connect.gen.ts +0 -9
  41. package/src/gen/playground/index.ts +0 -4
  42. package/src/gen/playground/queryOptions.gen.ts +0 -112
@@ -71565,7 +71565,7 @@ export interface BrainKnowledgeEntityMemoriesOutput {
71565
71565
  }
71566
71566
  export interface BrainKnowledgeGraphInput {
71567
71567
  /**
71568
- * Max nodes (default 5000). When the cap applies, the highest-degree nodes are kept, so a small limit (e.g. 100) returns the hub concepts.
71568
+ * Max nodes (default 5000). When the cap applies the HIGHEST-DEGREE nodes are kept, so a small limit (e.g. 100) returns the hub concepts — that is usually what you want
71569
71569
  */
71570
71570
  limit?: number;
71571
71571
  /**
@@ -90705,77 +90705,6 @@ export interface OrganizationPermissionCatalogOutput {
90705
90705
  display_name: string;
90706
90706
  }[];
90707
90707
  }
90708
- export interface OrganizationPrincipalGrantsApproveInput {
90709
- /**
90710
- * @minItems 1
90711
- * @maxItems 200
90712
- */
90713
- tools: [string, ...(string)[]];
90714
- productId: string;
90715
- principalId: string;
90716
- principalKind: "workflow";
90717
- }
90718
- export interface OrganizationPrincipalGrantsApproveOutput {
90719
- grants: {
90720
- reason: (string | null);
90721
- status: string;
90722
- sponsor: ({
90723
- userId: (string | null);
90724
- memberId: string;
90725
- } | null);
90726
- toolKey: string;
90727
- approvedAt: (string | null);
90728
- }[];
90729
- pending: string[];
90730
- effective: string[];
90731
- productId: string;
90732
- principalId: string;
90733
- needsSponsor: string[];
90734
- principalKind: "workflow";
90735
- notSponsorable: string[];
90736
- }
90737
- export interface OrganizationPrincipalGrantsListInput {
90738
- productId: string;
90739
- principalKind?: "workflow";
90740
- }
90741
- export interface OrganizationPrincipalGrantsListOutput {
90742
- principals: {
90743
- pending: string[];
90744
- effective: string[];
90745
- principalId: string;
90746
- needsSponsor: string[];
90747
- principalKind: "workflow";
90748
- }[];
90749
- }
90750
- export interface OrganizationPrincipalGrantsRevokeInput {
90751
- /**
90752
- * @minItems 1
90753
- * @maxItems 200
90754
- */
90755
- tools?: [string, ...(string)[]];
90756
- reason?: string;
90757
- productId: string;
90758
- principalId: string;
90759
- principalKind: "workflow";
90760
- }
90761
- export interface OrganizationPrincipalGrantsRevokeOutput {
90762
- grants: {
90763
- reason: (string | null);
90764
- status: string;
90765
- sponsor: ({
90766
- userId: (string | null);
90767
- memberId: string;
90768
- } | null);
90769
- toolKey: string;
90770
- approvedAt: (string | null);
90771
- }[];
90772
- pending: string[];
90773
- effective: string[];
90774
- productId: string;
90775
- principalId: string;
90776
- needsSponsor: string[];
90777
- principalKind: "workflow";
90778
- }
90779
90708
  export interface OrganizationProductCreateInput {
90780
90709
  name: string;
90781
90710
  region?: "eu";
@@ -91220,312 +91149,6 @@ export interface OrganizationYoutubeInstallInput {
91220
91149
  export interface OrganizationYoutubeInstallOutput {
91221
91150
  url: string;
91222
91151
  }
91223
- export interface PlaygroundAnalyticsOverviewInput {
91224
- /**
91225
- * Max records per entity in recent[]; omit for the endpoint default
91226
- */
91227
- limit?: number;
91228
- }
91229
- export interface PlaygroundAnalyticsOverviewOutput {
91230
- ok: boolean;
91231
- minted: boolean;
91232
- overview?: unknown;
91233
- http_status: number;
91234
- }
91235
- export interface PlaygroundBillingEntitlementsInput {
91236
- }
91237
- export interface PlaygroundBillingEntitlementsOutput {
91238
- ok: boolean;
91239
- minted: boolean;
91240
- http_status: number;
91241
- entitlements?: unknown;
91242
- }
91243
- export interface PlaygroundBillingRecordUsageInput {
91244
- /**
91245
- * Quantity of events to record against playground-events (SUM); defaults to 1
91246
- */
91247
- value?: number;
91248
- }
91249
- export interface PlaygroundBillingRecordUsageOutput {
91250
- minted: boolean;
91251
- accepted: (number | null);
91252
- recorded: boolean;
91253
- duplicates: (number | null);
91254
- http_status: number;
91255
- }
91256
- export interface PlaygroundClickupCreateTaskInput {
91257
- /**
91258
- * Task title; defaults to a fixture label
91259
- */
91260
- name?: string;
91261
- /**
91262
- * ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
91263
- */
91264
- listId?: string;
91265
- }
91266
- export interface PlaygroundClickupCreateTaskOutput {
91267
- minted: boolean;
91268
- task_id: (string | null);
91269
- list_status: number;
91270
- vend_status: number;
91271
- clickup_status: number;
91272
- installation_count: number;
91273
- }
91274
- export interface PlaygroundClickupGetLastWebhookInput {
91275
- }
91276
- export type PlaygroundClickupGetLastWebhookOutput = ({
91277
- payload: string;
91278
- event_id: string;
91279
- provider: string;
91280
- verified: boolean;
91281
- product_id: string;
91282
- occurred_at: string;
91283
- connector_id: string;
91284
- clickup_event: (string | null);
91285
- receipt_count: number;
91286
- } | {
91287
- found: false;
91288
- });
91289
- export interface PlaygroundClickupGetOverviewInput {
91290
- }
91291
- export interface PlaygroundClickupGetOverviewOutput {
91292
- team: ({
91293
- teamId: string;
91294
- teamName: string;
91295
- } | null);
91296
- lists: PlaygroundClickupGetOverviewOutputItems[];
91297
- tasks: {
91298
- id: string;
91299
- name: string;
91300
- status: (string | null);
91301
- }[];
91302
- minted: boolean;
91303
- spaces: PlaygroundClickupGetOverviewOutputItems[];
91304
- list_status: number;
91305
- vend_status: number;
91306
- lists_status: number;
91307
- tasks_status: number;
91308
- spaces_status: number;
91309
- folders_status: number;
91310
- installation_count: number;
91311
- }
91312
- export interface PlaygroundClickupGetOverviewOutputItems {
91313
- id: string;
91314
- name: string;
91315
- }
91316
- export interface PlaygroundGdriveGetLastChangeInput {
91317
- }
91318
- export type PlaygroundGdriveGetLastChangeOutput = ({
91319
- file_id: string;
91320
- removed: boolean;
91321
- file_name: (string | null);
91322
- mime_type: (string | null);
91323
- product_id: string;
91324
- occurred_at: string;
91325
- connector_id: string;
91326
- resource_state: string;
91327
- } | {
91328
- found: false;
91329
- });
91330
- export interface PlaygroundGdriveReadFileInput {
91331
- /**
91332
- * Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
91333
- */
91334
- fileId?: string;
91335
- }
91336
- export interface PlaygroundGdriveReadFileOutput {
91337
- minted: boolean;
91338
- file_id: (string | null);
91339
- file_name: (string | null);
91340
- mime_type: (string | null);
91341
- file_count: number;
91342
- get_status: number;
91343
- list_status: number;
91344
- vend_status: number;
91345
- content_bytes: (number | null);
91346
- }
91347
- export interface PlaygroundGoogleadsReadCustomerInput {
91348
- }
91349
- export interface PlaygroundGoogleadsReadCustomerOutput {
91350
- minted: boolean;
91351
- vended: boolean;
91352
- customer_id: (string | null);
91353
- vend_status: number;
91354
- result_count: number;
91355
- search_status: number;
91356
- login_customer_id: (string | null);
91357
- }
91358
- export interface PlaygroundLifecycleGetStateInput {
91359
- }
91360
- export interface PlaygroundLifecycleGetStateOutput {
91361
- blocked: boolean;
91362
- archived: boolean;
91363
- productId: string;
91364
- lastBlockTransition: ({
91365
- eventId: string;
91366
- eventName: string;
91367
- productId: string;
91368
- occurredAt: string;
91369
- recordedAt: string;
91370
- receiptCount: number;
91371
- organizationId: string;
91372
- cascadedFromOrg: boolean;
91373
- } | null);
91374
- lastArchiveTransition: ({
91375
- eventId: string;
91376
- eventName: string;
91377
- productId: string;
91378
- occurredAt: string;
91379
- recordedAt: string;
91380
- receiptCount: number;
91381
- organizationId: string;
91382
- cascadedFromOrg: boolean;
91383
- } | null);
91384
- }
91385
- export interface PlaygroundLifecycleListEventsInput {
91386
- }
91387
- export type PlaygroundLifecycleListEventsOutput = {
91388
- eventId: string;
91389
- eventName: string;
91390
- productId: string;
91391
- occurredAt: string;
91392
- recordedAt: string;
91393
- receiptCount: number;
91394
- organizationId: string;
91395
- cascadedFromOrg: boolean;
91396
- }[];
91397
- export interface PlaygroundWebhookGetLastInput {
91398
- }
91399
- export type PlaygroundWebhookGetLastOutput = ({
91400
- payload?: unknown;
91401
- event_id: string;
91402
- provider: string;
91403
- verified: boolean;
91404
- product_id: string;
91405
- occurred_at: string;
91406
- connector_id: string;
91407
- delivery_count: number;
91408
- } | {
91409
- found: false;
91410
- });
91411
- export interface PlaygroundWorkflowEchoInput {
91412
- /**
91413
- * The text to store, 1–1024 characters
91414
- */
91415
- note: string;
91416
- /**
91417
- * Optional labels stored alongside the note, at most 20
91418
- *
91419
- * @maxItems 20
91420
- */
91421
- tags?: [] | [string] | [string, string] | [string, string, string] | [string, string, string, string] | [string, string, string, string, string] | [string, string, string, string, string, string] | [string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string];
91422
- }
91423
- export interface PlaygroundWorkflowEchoOutput {
91424
- /**
91425
- * Identifier of the stored echo
91426
- */
91427
- id: string;
91428
- /**
91429
- * The note exactly as it was received
91430
- */
91431
- note: string;
91432
- /**
91433
- * The tags exactly as they were received
91434
- */
91435
- tags: string[];
91436
- /**
91437
- * Correlation id for this echo. The playground/workflow.echoed event published about two seconds later repeats it, which is how a composer matches the completion back to this step.
91438
- */
91439
- echo_id: string;
91440
- /**
91441
- * ISO-8601 instant (UTC) at which the echo was stored
91442
- */
91443
- received_at: string;
91444
- }
91445
- export interface PlaygroundWorkflowEchoListInput {
91446
- }
91447
- export type PlaygroundWorkflowEchoListOutput = {
91448
- /**
91449
- * Identifier of the stored echo
91450
- */
91451
- id: string;
91452
- /**
91453
- * The note exactly as it was received
91454
- */
91455
- note: string;
91456
- /**
91457
- * The tags exactly as they were received
91458
- */
91459
- tags: string[];
91460
- /**
91461
- * ISO-8601 instant (UTC) at which the echo was stored
91462
- */
91463
- received_at: string;
91464
- }[];
91465
- export interface PlaygroundWorkflowPingInput {
91466
- /**
91467
- * Class of ping, echoed on the emitted event and filterable on the trigger. Defaults to 'manual'.
91468
- */
91469
- kind?: string;
91470
- }
91471
- export interface PlaygroundWorkflowPingOutput {
91472
- /**
91473
- * Correlation id for this ping. The emitted playground/workflow.ping event repeats it, which is how a composer matches the event back to this step.
91474
- */
91475
- id: string;
91476
- /**
91477
- * The name of the event that was published
91478
- */
91479
- event: string;
91480
- }
91481
- export interface PlaygroundWorkflowSubjectsListInput {
91482
- /**
91483
- * How many subjects to return, 1–100. Defaults to 25.
91484
- */
91485
- limit?: number;
91486
- /**
91487
- * The next_cursor of the previous page. Opaque — pass it back unchanged. Omit for the first page.
91488
- */
91489
- cursor?: string;
91490
- /**
91491
- * ISO-8601 UTC instant. Return only subjects whose last_activity_at is AT OR AFTER this — the opposite question, the recently active population. Omit for no lower bound.
91492
- */
91493
- last_activity_after?: string;
91494
- /**
91495
- * ISO-8601 UTC instant. Return only subjects whose last_activity_at is AT OR BEFORE this — the "inactive for N days" question: pass now minus N days. Omit for no upper bound.
91496
- */
91497
- last_activity_before?: string;
91498
- }
91499
- export interface PlaygroundWorkflowSubjectsListOutput {
91500
- /**
91501
- * This page of subjects, most recently active first
91502
- */
91503
- items: {
91504
- /**
91505
- * Stable identifier for the subject. This is the field a batch trigger keys on, so a subject already served in an earlier run is skipped rather than served twice.
91506
- */
91507
- subject_key: string;
91508
- /**
91509
- * Human-readable name of the subject
91510
- */
91511
- display_name: string;
91512
- /**
91513
- * ISO-8601 instant (UTC) of the subject last activity
91514
- */
91515
- last_activity_at: string;
91516
- }[];
91517
- /**
91518
- * Whether another page follows. False and a null next_cursor both mark the last page, so a consumer that loops on either terminates.
91519
- */
91520
- has_more: boolean;
91521
- /**
91522
- * Pass back as `cursor` to fetch the next page; null on the last page. Always null when has_more is false.
91523
- */
91524
- next_cursor: (string | null);
91525
- }
91526
- export interface PlaygroundWsEchoInput {
91527
- }
91528
- export type PlaygroundWsEchoOutput = unknown;
91529
91152
  export interface RealtimeArchiveExportInput {
91530
91153
  /**
91531
91154
  * Only entries with ts <= to_ts (epoch ms)
@@ -114352,6 +113975,7 @@ export interface TrackingProfilesDeleteOutput {
114352
113975
  archive: {
114353
113976
  note: string;
114354
113977
  status: "gap_flagged";
113978
+ erasureRequestId: string;
114355
113979
  };
114356
113980
  deleted: {
114357
113981
  events: number;
@@ -116384,7 +116008,7 @@ export interface UsersUsersCreateInput {
116384
116008
  */
116385
116009
  imageUrl?: string;
116386
116010
  /**
116387
- * Credential to store for this user. Supply hashes only; omit password to create no password identity.
116011
+ * Optional credential to store for this user. Hashes only this toolkit never accepts a plaintext password. Nothing verifies it until Phase 2.
116388
116012
  */
116389
116013
  password?: {
116390
116014
  /**
@@ -116392,7 +116016,7 @@ export interface UsersUsersCreateInput {
116392
116016
  */
116393
116017
  phcHash?: string;
116394
116018
  /**
116395
- * An imported hash from another system, to be lazily rehashed on the first successful sign-in.
116019
+ * An imported hash from another system, to be lazily rehashed on the first successful sign-in (Phase 2).
116396
116020
  */
116397
116021
  foreignHash?: string;
116398
116022
  /**
@@ -116546,6 +116170,44 @@ export interface UsersUsersDeleteOutput {
116546
116170
  export interface UsersUsersDeleteOutputPublicMetadata {
116547
116171
  [k: string]: unknown;
116548
116172
  }
116173
+ export interface UsersUsersEraseInput {
116174
+ /**
116175
+ * The opaque user id returned by users_users_create or _list.
116176
+ */
116177
+ userId: string;
116178
+ }
116179
+ export interface UsersUsersEraseOutput {
116180
+ id: string;
116181
+ name: (string | null);
116182
+ bannedAt: (string | null);
116183
+ erasedAt: (string | null);
116184
+ imageUrl: (string | null);
116185
+ testUser: boolean;
116186
+ createdAt: string;
116187
+ deletedAt: (string | null);
116188
+ productId: string;
116189
+ updatedAt: string;
116190
+ waitlisted: boolean;
116191
+ identifiers: {
116192
+ id: string;
116193
+ type: "email";
116194
+ value: string;
116195
+ isPrimary: boolean;
116196
+ verifiedAt: (string | null);
116197
+ valueCanonical: string;
116198
+ verificationStatus: ("unverified" | "verified" | "expired");
116199
+ }[];
116200
+ lockedUntil: (string | null);
116201
+ lastSignInAt: (string | null);
116202
+ requiresReset: boolean;
116203
+ publicMetadata: UsersUsersEraseOutputPublicMetadata;
116204
+ unsafeMetadata: UsersUsersEraseOutputPublicMetadata;
116205
+ privateMetadata: UsersUsersEraseOutputPublicMetadata;
116206
+ emailChangeLockedUntil: (string | null);
116207
+ }
116208
+ export interface UsersUsersEraseOutputPublicMetadata {
116209
+ [k: string]: unknown;
116210
+ }
116549
116211
  export interface UsersUsersExportInput {
116550
116212
  /**
116551
116213
  * Rows per page, 1-500. Default 100.
@@ -116891,6 +116553,15 @@ export interface UsersUsersUpdateOutput {
116891
116553
  export interface UsersUsersUpdateOutputPublicMetadata {
116892
116554
  [k: string]: unknown;
116893
116555
  }
116556
+ export interface UsersWaitlistEraseInput {
116557
+ /**
116558
+ * The waitlisted user whose entry and directory row to erase.
116559
+ */
116560
+ userId: string;
116561
+ }
116562
+ export interface UsersWaitlistEraseOutput {
116563
+ erased: boolean;
116564
+ }
116894
116565
  export interface UsersWaitlistFunnelInput {
116895
116566
  }
116896
116567
  export interface UsersWaitlistFunnelOutput {
@@ -1,2 +1,2 @@
1
1
  export * from './queryOptions.gen.js';
2
- export type { UsersApikeysCreateInput, UsersApikeysCreateOutput, UsersApikeysListInput, UsersApikeysListOutput, UsersApikeysRevokeInput, UsersApikeysRevokeOutput, UsersAuditListInput, UsersAuditListOutput, UsersConfigGetInput, UsersConfigGetOutput, UsersConfigUpsertInput, UsersConfigUpsertOutput, UsersFactorsListInput, UsersFactorsListOutput, UsersFactorsResetInput, UsersFactorsResetOutput, UsersKeysListInput, UsersKeysListOutput, UsersKeysRevokeInput, UsersKeysRevokeOutput, UsersKeysRotateInput, UsersKeysRotateOutput, UsersOpsRetentionGetInput, UsersOpsRetentionGetOutput, UsersOpsSloGetInput, UsersOpsSloGetOutput, UsersPasskeysListInput, UsersPasskeysListOutput, UsersPasskeysRevokeInput, UsersPasskeysRevokeOutput, UsersSessionsGetInput, UsersSessionsGetOutput, UsersSessionsImpersonateInput, UsersSessionsImpersonateOutput, UsersSessionsListInput, UsersSessionsListOutput, UsersSessionsRevokeInput, UsersSessionsRevokeOutput, UsersStatsGetInput, UsersStatsGetOutput, UsersUsersBanInput, UsersUsersBanOutput, UsersUsersCreateInput, UsersUsersCreateOutput, UsersUsersDeleteInput, UsersUsersDeleteOutput, UsersUsersExportInput, UsersUsersExportOutput, UsersUsersGetInput, UsersUsersGetOutput, UsersUsersImportInput, UsersUsersImportOutput, UsersUsersInviteInput, UsersUsersInviteOutput, UsersUsersListInput, UsersUsersListOutput, UsersUsersSetPrimaryIdentifierInput, UsersUsersSetPrimaryIdentifierOutput, UsersUsersUnbanInput, UsersUsersUnbanOutput, UsersUsersUpdateInput, UsersUsersUpdateOutput, UsersWaitlistFunnelInput, UsersWaitlistFunnelOutput, UsersWaitlistImportInput, UsersWaitlistImportOutput, UsersWaitlistInviteInput, UsersWaitlistInviteOutput, UsersWaitlistListInput, UsersWaitlistListOutput, UsersWebhooksCreateInput, UsersWebhooksCreateOutput, UsersWebhooksDeleteInput, UsersWebhooksDeleteOutput, UsersWebhooksDeliveriesListInput, UsersWebhooksDeliveriesListOutput, UsersWebhooksGetInput, UsersWebhooksGetOutput, UsersWebhooksListInput, UsersWebhooksListOutput, UsersWebhooksRotateSecretInput, UsersWebhooksRotateSecretOutput, UsersWebhooksUpdateInput, UsersWebhooksUpdateOutput } from '../types.gen.js';
2
+ export type { UsersApikeysCreateInput, UsersApikeysCreateOutput, UsersApikeysListInput, UsersApikeysListOutput, UsersApikeysRevokeInput, UsersApikeysRevokeOutput, UsersAuditListInput, UsersAuditListOutput, UsersConfigGetInput, UsersConfigGetOutput, UsersConfigUpsertInput, UsersConfigUpsertOutput, UsersFactorsListInput, UsersFactorsListOutput, UsersFactorsResetInput, UsersFactorsResetOutput, UsersKeysListInput, UsersKeysListOutput, UsersKeysRevokeInput, UsersKeysRevokeOutput, UsersKeysRotateInput, UsersKeysRotateOutput, UsersOpsRetentionGetInput, UsersOpsRetentionGetOutput, UsersOpsSloGetInput, UsersOpsSloGetOutput, UsersPasskeysListInput, UsersPasskeysListOutput, UsersPasskeysRevokeInput, UsersPasskeysRevokeOutput, UsersSessionsGetInput, UsersSessionsGetOutput, UsersSessionsImpersonateInput, UsersSessionsImpersonateOutput, UsersSessionsListInput, UsersSessionsListOutput, UsersSessionsRevokeInput, UsersSessionsRevokeOutput, UsersStatsGetInput, UsersStatsGetOutput, UsersUsersBanInput, UsersUsersBanOutput, UsersUsersCreateInput, UsersUsersCreateOutput, UsersUsersDeleteInput, UsersUsersDeleteOutput, UsersUsersEraseInput, UsersUsersEraseOutput, UsersUsersExportInput, UsersUsersExportOutput, UsersUsersGetInput, UsersUsersGetOutput, UsersUsersImportInput, UsersUsersImportOutput, UsersUsersInviteInput, UsersUsersInviteOutput, UsersUsersListInput, UsersUsersListOutput, UsersUsersSetPrimaryIdentifierInput, UsersUsersSetPrimaryIdentifierOutput, UsersUsersUnbanInput, UsersUsersUnbanOutput, UsersUsersUpdateInput, UsersUsersUpdateOutput, UsersWaitlistEraseInput, UsersWaitlistEraseOutput, UsersWaitlistFunnelInput, UsersWaitlistFunnelOutput, UsersWaitlistImportInput, UsersWaitlistImportOutput, UsersWaitlistInviteInput, UsersWaitlistInviteOutput, UsersWaitlistListInput, UsersWaitlistListOutput, UsersWebhooksCreateInput, UsersWebhooksCreateOutput, UsersWebhooksDeleteInput, UsersWebhooksDeleteOutput, UsersWebhooksDeliveriesListInput, UsersWebhooksDeliveriesListOutput, UsersWebhooksGetInput, UsersWebhooksGetOutput, UsersWebhooksListInput, UsersWebhooksListOutput, UsersWebhooksRotateSecretInput, UsersWebhooksRotateSecretOutput, UsersWebhooksUpdateInput, UsersWebhooksUpdateOutput } from '../types.gen.js';
@@ -1,5 +1,5 @@
1
1
  import type { GeneratedClient } from '../client.gen.js';
2
- import type { UsersApikeysCreateInput, UsersApikeysListInput, UsersApikeysListOutput, UsersApikeysRevokeInput, UsersAuditListInput, UsersAuditListOutput, UsersConfigGetInput, UsersConfigGetOutput, UsersConfigUpsertInput, UsersFactorsListInput, UsersFactorsListOutput, UsersFactorsResetInput, UsersKeysListInput, UsersKeysListOutput, UsersKeysRevokeInput, UsersKeysRotateInput, UsersOpsRetentionGetInput, UsersOpsSloGetInput, UsersPasskeysListInput, UsersPasskeysListOutput, UsersPasskeysRevokeInput, UsersSessionsGetInput, UsersSessionsGetOutput, UsersSessionsImpersonateInput, UsersSessionsListInput, UsersSessionsListOutput, UsersSessionsRevokeInput, UsersStatsGetInput, UsersUsersBanInput, UsersUsersCreateInput, UsersUsersDeleteInput, UsersUsersExportInput, UsersUsersGetInput, UsersUsersGetOutput, UsersUsersImportInput, UsersUsersInviteInput, UsersUsersListInput, UsersUsersListOutput, UsersUsersSetPrimaryIdentifierInput, UsersUsersUnbanInput, UsersUsersUpdateInput, UsersWaitlistFunnelInput, UsersWaitlistImportInput, UsersWaitlistInviteInput, UsersWaitlistListInput, UsersWebhooksCreateInput, UsersWebhooksDeleteInput, UsersWebhooksDeliveriesListInput, UsersWebhooksDeliveriesListOutput, UsersWebhooksGetInput, UsersWebhooksGetOutput, UsersWebhooksListInput, UsersWebhooksListOutput, UsersWebhooksRotateSecretInput, UsersWebhooksUpdateInput } from '../types.gen.js';
2
+ import type { UsersApikeysCreateInput, UsersApikeysListInput, UsersApikeysListOutput, UsersApikeysRevokeInput, UsersAuditListInput, UsersAuditListOutput, UsersConfigGetInput, UsersConfigGetOutput, UsersConfigUpsertInput, UsersFactorsListInput, UsersFactorsListOutput, UsersFactorsResetInput, UsersKeysListInput, UsersKeysListOutput, UsersKeysRevokeInput, UsersKeysRotateInput, UsersOpsRetentionGetInput, UsersOpsSloGetInput, UsersPasskeysListInput, UsersPasskeysListOutput, UsersPasskeysRevokeInput, UsersSessionsGetInput, UsersSessionsGetOutput, UsersSessionsImpersonateInput, UsersSessionsListInput, UsersSessionsListOutput, UsersSessionsRevokeInput, UsersStatsGetInput, UsersUsersBanInput, UsersUsersCreateInput, UsersUsersDeleteInput, UsersUsersEraseInput, UsersUsersExportInput, UsersUsersGetInput, UsersUsersGetOutput, UsersUsersImportInput, UsersUsersInviteInput, UsersUsersListInput, UsersUsersListOutput, UsersUsersSetPrimaryIdentifierInput, UsersUsersUnbanInput, UsersUsersUpdateInput, UsersWaitlistEraseInput, UsersWaitlistFunnelInput, UsersWaitlistImportInput, UsersWaitlistInviteInput, UsersWaitlistListInput, UsersWebhooksCreateInput, UsersWebhooksDeleteInput, UsersWebhooksDeliveriesListInput, UsersWebhooksDeliveriesListOutput, UsersWebhooksGetInput, UsersWebhooksGetOutput, UsersWebhooksListInput, UsersWebhooksListOutput, UsersWebhooksRotateSecretInput, UsersWebhooksUpdateInput } from '../types.gen.js';
3
3
  export declare const usersApikeysCreateMutationOptions: (sdk: GeneratedClient) => {
4
4
  mutationKey: string[];
5
5
  mutationFn: (input: UsersApikeysCreateInput) => Promise<import(".").UsersApikeysCreateOutput>;
@@ -92,6 +92,10 @@ export declare const usersUsersDeleteMutationOptions: (sdk: GeneratedClient) =>
92
92
  mutationKey: string[];
93
93
  mutationFn: (input: UsersUsersDeleteInput) => Promise<import(".").UsersUsersDeleteOutput>;
94
94
  };
95
+ export declare const usersUsersEraseMutationOptions: (sdk: GeneratedClient) => {
96
+ mutationKey: string[];
97
+ mutationFn: (input: UsersUsersEraseInput) => Promise<import(".").UsersUsersEraseOutput>;
98
+ };
95
99
  export declare const usersUsersExportMutationOptions: (sdk: GeneratedClient) => {
96
100
  mutationKey: string[];
97
101
  mutationFn: (input: UsersUsersExportInput) => Promise<import(".").UsersUsersExportOutput>;
@@ -124,6 +128,10 @@ export declare const usersUsersUpdateMutationOptions: (sdk: GeneratedClient) =>
124
128
  mutationKey: string[];
125
129
  mutationFn: (input: UsersUsersUpdateInput) => Promise<import(".").UsersUsersUpdateOutput>;
126
130
  };
131
+ export declare const usersWaitlistEraseMutationOptions: (sdk: GeneratedClient) => {
132
+ mutationKey: string[];
133
+ mutationFn: (input: UsersWaitlistEraseInput) => Promise<import(".").UsersWaitlistEraseOutput>;
134
+ };
127
135
  export declare const usersWaitlistFunnelMutationOptions: (sdk: GeneratedClient) => {
128
136
  mutationKey: string[];
129
137
  mutationFn: (input: UsersWaitlistFunnelInput) => Promise<import(".").UsersWaitlistFunnelOutput>;