@lepsto/sdk-app 90.0.0 → 90.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.
@@ -124345,6 +124345,243 @@ export interface UsersStatsGetOutput {
124345
124345
  createdInWindow: number;
124346
124346
  };
124347
124347
  }
124348
+ export interface UsersTouchesCreateInput {
124349
+ /**
124350
+ * What was said or done, free text, 1-8192 characters. Personal data: it is whatever an operator typed about this person.
124351
+ */
124352
+ body: string;
124353
+ /**
124354
+ * The end user this interaction was with.
124355
+ */
124356
+ userId: string;
124357
+ /**
124358
+ * How the person was touched: 'message', 'call', 'meeting', 'note' (an internal observation nobody sent) or 'email' sent OUTSIDE the platform. Email this toolkit sent is not logged here — read those from the mail toolkit.
124359
+ */
124360
+ channel: ("message" | "call" | "meeting" | "note" | "email");
124361
+ /**
124362
+ * Which way it went: 'outbound' (you reached them), 'inbound' (they reached you) or 'none'. A 'note' or a 'meeting' must be 'none'.
124363
+ */
124364
+ direction: ("outbound" | "inbound" | "none");
124365
+ /**
124366
+ * When it happened (ISO 8601). Omit to mean now — pass it when logging after the fact, which may be any time in the past.
124367
+ */
124368
+ occurredAt?: string;
124369
+ }
124370
+ export interface UsersTouchesCreateOutput {
124371
+ /**
124372
+ * Id of this touch. Pass it to users_touches_update or _delete.
124373
+ */
124374
+ id: string;
124375
+ /**
124376
+ * What was said or done, free text, 1-8192 characters. Personal data: it is whatever an operator typed about this person.
124377
+ */
124378
+ body: string;
124379
+ /**
124380
+ * The end user this interaction was with.
124381
+ */
124382
+ userId: string;
124383
+ /**
124384
+ * Id of the operator or agent that logged it, verbatim.
124385
+ */
124386
+ actorId: string;
124387
+ /**
124388
+ * How the person was touched: 'message', 'call', 'meeting', 'note' (an internal observation nobody sent) or 'email' sent OUTSIDE the platform. Email this toolkit sent is not logged here — read those from the mail toolkit.
124389
+ */
124390
+ channel: ("message" | "call" | "meeting" | "note" | "email");
124391
+ /**
124392
+ * Who logged it: 'operator' (a human) or 'agent' (a workflow or agent principal).
124393
+ */
124394
+ actorType: ("operator" | "agent");
124395
+ /**
124396
+ * When the touch was logged (ISO 8601).
124397
+ */
124398
+ createdAt: string;
124399
+ /**
124400
+ * Which way it went: 'outbound' (you reached them), 'inbound' (they reached you) or 'none'. A 'note' or a 'meeting' must be 'none'.
124401
+ */
124402
+ direction: ("outbound" | "inbound" | "none");
124403
+ /**
124404
+ * Product this touch belongs to. Never an input — it comes from the calling identity.
124405
+ */
124406
+ productId: string;
124407
+ /**
124408
+ * When the touch was last edited (ISO 8601).
124409
+ */
124410
+ updatedAt: string;
124411
+ /**
124412
+ * When the interaction happened (ISO 8601) — not when it was logged.
124413
+ */
124414
+ occurredAt: string;
124415
+ }
124416
+ export interface UsersTouchesDeleteInput {
124417
+ /**
124418
+ * Act on a touch somebody else logged. Without it a touch you did not author answers 404, exactly as a touch that does not exist does — the refusal must not tell you the row is there. Every forced call is recorded in the audit trail.
124419
+ */
124420
+ force?: boolean;
124421
+ /**
124422
+ * The end user the touch belongs to.
124423
+ */
124424
+ userId: string;
124425
+ /**
124426
+ * The touch to delete, from users_touches_list.
124427
+ */
124428
+ touchId: string;
124429
+ }
124430
+ export interface UsersTouchesDeleteOutput {
124431
+ /**
124432
+ * Id of the touch that was deleted.
124433
+ */
124434
+ id: string;
124435
+ /**
124436
+ * The end user it belonged to.
124437
+ */
124438
+ userId: string;
124439
+ /**
124440
+ * Always true — a failure answers 404 instead.
124441
+ */
124442
+ deleted: true;
124443
+ }
124444
+ export interface UsersTouchesListInput {
124445
+ /**
124446
+ * Page size, 1-100. Default 50.
124447
+ */
124448
+ limit?: number;
124449
+ /**
124450
+ * Opaque cursor from a previous response's `nextCursor`. Omit for the first page.
124451
+ */
124452
+ cursor?: string;
124453
+ /**
124454
+ * The end user whose touches to list.
124455
+ */
124456
+ userId: string;
124457
+ /**
124458
+ * Only touches on this channel. Omit for all of them.
124459
+ */
124460
+ channel?: ("message" | "call" | "meeting" | "note" | "email");
124461
+ }
124462
+ export interface UsersTouchesListOutput {
124463
+ /**
124464
+ * The page of touches, newest first.
124465
+ */
124466
+ items: {
124467
+ /**
124468
+ * Id of this touch. Pass it to users_touches_update or _delete.
124469
+ */
124470
+ id: string;
124471
+ /**
124472
+ * What was said or done, free text, 1-8192 characters. Personal data: it is whatever an operator typed about this person.
124473
+ */
124474
+ body: string;
124475
+ /**
124476
+ * The end user this interaction was with.
124477
+ */
124478
+ userId: string;
124479
+ /**
124480
+ * Id of the operator or agent that logged it, verbatim.
124481
+ */
124482
+ actorId: string;
124483
+ /**
124484
+ * How the person was touched: 'message', 'call', 'meeting', 'note' (an internal observation nobody sent) or 'email' sent OUTSIDE the platform. Email this toolkit sent is not logged here — read those from the mail toolkit.
124485
+ */
124486
+ channel: ("message" | "call" | "meeting" | "note" | "email");
124487
+ /**
124488
+ * Who logged it: 'operator' (a human) or 'agent' (a workflow or agent principal).
124489
+ */
124490
+ actorType: ("operator" | "agent");
124491
+ /**
124492
+ * When the touch was logged (ISO 8601).
124493
+ */
124494
+ createdAt: string;
124495
+ /**
124496
+ * Which way it went: 'outbound' (you reached them), 'inbound' (they reached you) or 'none'. A 'note' or a 'meeting' must be 'none'.
124497
+ */
124498
+ direction: ("outbound" | "inbound" | "none");
124499
+ /**
124500
+ * Product this touch belongs to. Never an input — it comes from the calling identity.
124501
+ */
124502
+ productId: string;
124503
+ /**
124504
+ * When the touch was last edited (ISO 8601).
124505
+ */
124506
+ updatedAt: string;
124507
+ /**
124508
+ * When the interaction happened (ISO 8601) — not when it was logged.
124509
+ */
124510
+ occurredAt: string;
124511
+ }[];
124512
+ /**
124513
+ * Pass as `cursor` for the next page. Null when this was the last one.
124514
+ */
124515
+ nextCursor: (string | null);
124516
+ }
124517
+ export interface UsersTouchesUpdateInput {
124518
+ /**
124519
+ * Replacement text, 1-8192 characters. Omit to leave it unchanged.
124520
+ */
124521
+ body?: string;
124522
+ /**
124523
+ * Act on a touch somebody else logged. Without it a touch you did not author answers 404, exactly as a touch that does not exist does — the refusal must not tell you the row is there. Every forced call is recorded in the audit trail.
124524
+ */
124525
+ force?: boolean;
124526
+ /**
124527
+ * The end user the touch belongs to.
124528
+ */
124529
+ userId: string;
124530
+ /**
124531
+ * The touch to edit, from users_touches_list.
124532
+ */
124533
+ touchId: string;
124534
+ /**
124535
+ * Correct when it happened (ISO 8601). Omit to leave it unchanged.
124536
+ */
124537
+ occurredAt?: string;
124538
+ }
124539
+ export interface UsersTouchesUpdateOutput {
124540
+ /**
124541
+ * Id of this touch. Pass it to users_touches_update or _delete.
124542
+ */
124543
+ id: string;
124544
+ /**
124545
+ * What was said or done, free text, 1-8192 characters. Personal data: it is whatever an operator typed about this person.
124546
+ */
124547
+ body: string;
124548
+ /**
124549
+ * The end user this interaction was with.
124550
+ */
124551
+ userId: string;
124552
+ /**
124553
+ * Id of the operator or agent that logged it, verbatim.
124554
+ */
124555
+ actorId: string;
124556
+ /**
124557
+ * How the person was touched: 'message', 'call', 'meeting', 'note' (an internal observation nobody sent) or 'email' sent OUTSIDE the platform. Email this toolkit sent is not logged here — read those from the mail toolkit.
124558
+ */
124559
+ channel: ("message" | "call" | "meeting" | "note" | "email");
124560
+ /**
124561
+ * Who logged it: 'operator' (a human) or 'agent' (a workflow or agent principal).
124562
+ */
124563
+ actorType: ("operator" | "agent");
124564
+ /**
124565
+ * When the touch was logged (ISO 8601).
124566
+ */
124567
+ createdAt: string;
124568
+ /**
124569
+ * Which way it went: 'outbound' (you reached them), 'inbound' (they reached you) or 'none'. A 'note' or a 'meeting' must be 'none'.
124570
+ */
124571
+ direction: ("outbound" | "inbound" | "none");
124572
+ /**
124573
+ * Product this touch belongs to. Never an input — it comes from the calling identity.
124574
+ */
124575
+ productId: string;
124576
+ /**
124577
+ * When the touch was last edited (ISO 8601).
124578
+ */
124579
+ updatedAt: string;
124580
+ /**
124581
+ * When the interaction happened (ISO 8601) — not when it was logged.
124582
+ */
124583
+ occurredAt: string;
124584
+ }
124348
124585
  export interface UsersUsersBanInput {
124349
124586
  /**
124350
124587
  * The opaque user id returned by users_users_create or _list.
@@ -124419,7 +124656,7 @@ export interface UsersUsersBanOutput {
124419
124656
  /**
124420
124657
  * What kind of identifier this is. Today always `email`.
124421
124658
  */
124422
- type: "email";
124659
+ type: ("email" | "phone" | "telegram" | "linkedin" | "x");
124423
124660
  /**
124424
124661
  * The address as the user typed it, for display.
124425
124662
  */
@@ -124441,6 +124678,10 @@ export interface UsersUsersBanOutput {
124441
124678
  */
124442
124679
  verificationStatus: ("unverified" | "verified" | "expired");
124443
124680
  }[];
124681
+ /**
124682
+ * When this person was last touched — the most recent logged interaction (ISO 8601). Null when nobody has logged one. This is when the interaction HAPPENED, not when it was logged.
124683
+ */
124684
+ lastTouchAt: (string | null);
124444
124685
  /**
124445
124686
  * When a failed-attempt lockout expires (ISO 8601). Null when the user is not locked out.
124446
124687
  */
@@ -124535,7 +124776,7 @@ export interface UsersUsersCreateInput {
124535
124776
  */
124536
124777
  waitlisted?: boolean;
124537
124778
  /**
124538
- * The email addresses that reach this user. At least one is required.
124779
+ * How this user is reached: their email addresses, plus any contact channels (`phone`, `telegram`, `linkedin`, `x`). At least one is required.
124539
124780
  *
124540
124781
  * @minItems 1
124541
124782
  */
@@ -124544,13 +124785,13 @@ export interface UsersUsersCreateInput {
124544
124785
  /**
124545
124786
  * Identifier kind. Only 'email' exists in this phase.
124546
124787
  */
124547
- type: "email";
124788
+ type: ("email" | "phone" | "telegram" | "linkedin" | "x");
124548
124789
  /**
124549
124790
  * The email address. Stored canonicalised (lowercase, NFC) plus raw for display.
124550
124791
  */
124551
124792
  value: string;
124552
124793
  /**
124553
- * Record the identifier as already verified (use for trusted imports). Only ONE verified copy of a value may exist per product; unverified duplicates are allowed. Default false.
124794
+ * Record the identifier as already verified (use for trusted imports). IGNORED for contact channels, which are always stored unverified — nothing here can prove a phone or a handle. Only ONE verified copy of an email may exist per product; unverified duplicates are allowed. Default false.
124554
124795
  */
124555
124796
  verified?: boolean;
124556
124797
  /**
@@ -124562,13 +124803,13 @@ export interface UsersUsersCreateInput {
124562
124803
  /**
124563
124804
  * Identifier kind. Only 'email' exists in this phase.
124564
124805
  */
124565
- type: "email";
124806
+ type: ("email" | "phone" | "telegram" | "linkedin" | "x");
124566
124807
  /**
124567
124808
  * The email address. Stored canonicalised (lowercase, NFC) plus raw for display.
124568
124809
  */
124569
124810
  value: string;
124570
124811
  /**
124571
- * Record the identifier as already verified (use for trusted imports). Only ONE verified copy of a value may exist per product; unverified duplicates are allowed. Default false.
124812
+ * Record the identifier as already verified (use for trusted imports). IGNORED for contact channels, which are always stored unverified — nothing here can prove a phone or a handle. Only ONE verified copy of an email may exist per product; unverified duplicates are allowed. Default false.
124572
124813
  */
124573
124814
  verified?: boolean;
124574
124815
  /**
@@ -124670,7 +124911,7 @@ export interface UsersUsersCreateOutput {
124670
124911
  /**
124671
124912
  * What kind of identifier this is. Today always `email`.
124672
124913
  */
124673
- type: "email";
124914
+ type: ("email" | "phone" | "telegram" | "linkedin" | "x");
124674
124915
  /**
124675
124916
  * The address as the user typed it, for display.
124676
124917
  */
@@ -124692,6 +124933,10 @@ export interface UsersUsersCreateOutput {
124692
124933
  */
124693
124934
  verificationStatus: ("unverified" | "verified" | "expired");
124694
124935
  }[];
124936
+ /**
124937
+ * When this person was last touched — the most recent logged interaction (ISO 8601). Null when nobody has logged one. This is when the interaction HAPPENED, not when it was logged.
124938
+ */
124939
+ lastTouchAt: (string | null);
124695
124940
  /**
124696
124941
  * When a failed-attempt lockout expires (ISO 8601). Null when the user is not locked out.
124697
124942
  */
@@ -124813,7 +125058,7 @@ export interface UsersUsersDeleteOutput {
124813
125058
  /**
124814
125059
  * What kind of identifier this is. Today always `email`.
124815
125060
  */
124816
- type: "email";
125061
+ type: ("email" | "phone" | "telegram" | "linkedin" | "x");
124817
125062
  /**
124818
125063
  * The address as the user typed it, for display.
124819
125064
  */
@@ -124835,6 +125080,10 @@ export interface UsersUsersDeleteOutput {
124835
125080
  */
124836
125081
  verificationStatus: ("unverified" | "verified" | "expired");
124837
125082
  }[];
125083
+ /**
125084
+ * When this person was last touched — the most recent logged interaction (ISO 8601). Null when nobody has logged one. This is when the interaction HAPPENED, not when it was logged.
125085
+ */
125086
+ lastTouchAt: (string | null);
124838
125087
  /**
124839
125088
  * When a failed-attempt lockout expires (ISO 8601). Null when the user is not locked out.
124840
125089
  */
@@ -124982,7 +125231,7 @@ export interface UsersUsersExportOutput {
124982
125231
  /**
124983
125232
  * What kind of identifier this is. Today always `email`.
124984
125233
  */
124985
- type: "email";
125234
+ type: ("email" | "phone" | "telegram" | "linkedin" | "x");
124986
125235
  /**
124987
125236
  * The address as the user typed it, for display.
124988
125237
  */
@@ -125004,6 +125253,10 @@ export interface UsersUsersExportOutput {
125004
125253
  */
125005
125254
  verificationStatus: ("unverified" | "verified" | "expired");
125006
125255
  }[];
125256
+ /**
125257
+ * When this person was last touched — the most recent logged interaction (ISO 8601). Null when nobody has logged one. This is when the interaction HAPPENED, not when it was logged.
125258
+ */
125259
+ lastTouchAt: (string | null);
125007
125260
  /**
125008
125261
  * When a failed-attempt lockout expires (ISO 8601). Null when the user is not locked out.
125009
125262
  */
@@ -125128,7 +125381,7 @@ export interface UsersUsersGetOutput {
125128
125381
  /**
125129
125382
  * What kind of identifier this is. Today always `email`.
125130
125383
  */
125131
- type: "email";
125384
+ type: ("email" | "phone" | "telegram" | "linkedin" | "x");
125132
125385
  /**
125133
125386
  * The address as the user typed it, for display.
125134
125387
  */
@@ -125150,6 +125403,10 @@ export interface UsersUsersGetOutput {
125150
125403
  */
125151
125404
  verificationStatus: ("unverified" | "verified" | "expired");
125152
125405
  }[];
125406
+ /**
125407
+ * When this person was last touched — the most recent logged interaction (ISO 8601). Null when nobody has logged one. This is when the interaction HAPPENED, not when it was logged.
125408
+ */
125409
+ lastTouchAt: (string | null);
125153
125410
  /**
125154
125411
  * When a failed-attempt lockout expires (ISO 8601). Null when the user is not locked out.
125155
125412
  */
@@ -125322,10 +125579,18 @@ export interface UsersUsersListInput {
125322
125579
  * Include soft-deleted users. Default false — deleted users are hidden.
125323
125580
  */
125324
125581
  includeDeleted?: boolean;
125582
+ /**
125583
+ * Only people whose most recent logged interaction happened at or after this instant (ISO 8601). People never touched are EXCLUDED by this filter — list without it to see everyone.
125584
+ */
125585
+ lastTouchAfter?: string;
125325
125586
  /**
125326
125587
  * Include CONTACTS. Default false: a contact has no credential and has never signed in, so it is not part of the directory an operator browses — the same rule waitlist signups and test users follow. Use `kind: "contact"` to see only them.
125327
125588
  */
125328
125589
  includeContacts?: boolean;
125590
+ /**
125591
+ * Only people whose most recent logged interaction happened before this instant (ISO 8601) — the "gone quiet" list. People never touched are EXCLUDED rather than treated as infinitely stale; list without this filter to see everyone.
125592
+ */
125593
+ lastTouchBefore?: string;
125329
125594
  /**
125330
125595
  * Include TEST USERS. Default false: a test user is a fixture, not a customer — it is excluded from metering and from this listing for the same reason. Ask for it explicitly when you are debugging the fixtures themselves.
125331
125596
  */
@@ -125407,7 +125672,7 @@ export interface UsersUsersListOutput {
125407
125672
  /**
125408
125673
  * What kind of identifier this is. Today always `email`.
125409
125674
  */
125410
- type: "email";
125675
+ type: ("email" | "phone" | "telegram" | "linkedin" | "x");
125411
125676
  /**
125412
125677
  * The address as the user typed it, for display.
125413
125678
  */
@@ -125429,6 +125694,10 @@ export interface UsersUsersListOutput {
125429
125694
  */
125430
125695
  verificationStatus: ("unverified" | "verified" | "expired");
125431
125696
  }[];
125697
+ /**
125698
+ * When this person was last touched — the most recent logged interaction (ISO 8601). Null when nobody has logged one. This is when the interaction HAPPENED, not when it was logged.
125699
+ */
125700
+ lastTouchAt: (string | null);
125432
125701
  /**
125433
125702
  * When a failed-attempt lockout expires (ISO 8601). Null when the user is not locked out.
125434
125703
  */
@@ -125579,7 +125848,7 @@ export interface UsersUsersUnbanOutput {
125579
125848
  /**
125580
125849
  * What kind of identifier this is. Today always `email`.
125581
125850
  */
125582
- type: "email";
125851
+ type: ("email" | "phone" | "telegram" | "linkedin" | "x");
125583
125852
  /**
125584
125853
  * The address as the user typed it, for display.
125585
125854
  */
@@ -125601,6 +125870,10 @@ export interface UsersUsersUnbanOutput {
125601
125870
  */
125602
125871
  verificationStatus: ("unverified" | "verified" | "expired");
125603
125872
  }[];
125873
+ /**
125874
+ * When this person was last touched — the most recent logged interaction (ISO 8601). Null when nobody has logged one. This is when the interaction HAPPENED, not when it was logged.
125875
+ */
125876
+ lastTouchAt: (string | null);
125604
125877
  /**
125605
125878
  * When a failed-attempt lockout expires (ISO 8601). Null when the user is not locked out.
125606
125879
  */
@@ -125770,7 +126043,7 @@ export interface UsersUsersUpdateOutput {
125770
126043
  /**
125771
126044
  * What kind of identifier this is. Today always `email`.
125772
126045
  */
125773
- type: "email";
126046
+ type: ("email" | "phone" | "telegram" | "linkedin" | "x");
125774
126047
  /**
125775
126048
  * The address as the user typed it, for display.
125776
126049
  */
@@ -125792,6 +126065,10 @@ export interface UsersUsersUpdateOutput {
125792
126065
  */
125793
126066
  verificationStatus: ("unverified" | "verified" | "expired");
125794
126067
  }[];
126068
+ /**
126069
+ * When this person was last touched — the most recent logged interaction (ISO 8601). Null when nobody has logged one. This is when the interaction HAPPENED, not when it was logged.
126070
+ */
126071
+ lastTouchAt: (string | null);
125795
126072
  /**
125796
126073
  * When a failed-attempt lockout expires (ISO 8601). Null when the user is not locked out.
125797
126074
  */
@@ -1,2 +1,2 @@
1
1
  export * from './queryOptions.gen.js';
2
- export type { UsersApikeysCreateInput, UsersApikeysCreateOutput, UsersApikeysGetInput, UsersApikeysGetOutput, UsersApikeysListInput, UsersApikeysListOutput, UsersApikeysRevokeInput, UsersApikeysRevokeOutput, UsersAuditListInput, UsersAuditListOutput, UsersConfigGetInput, UsersConfigGetOutput, UsersConfigUpsertInput, UsersConfigUpsertOutput, UsersFactorsListInput, UsersFactorsListOutput, UsersFactorsResetInput, UsersFactorsResetOutput, UsersKeysListInput, UsersKeysListOutput, UsersKeysRevokeInput, UsersKeysRevokeOutput, UsersKeysRotateInput, UsersKeysRotateOutput, UsersOpsRetentionGetInput, UsersOpsRetentionGetOutput, UsersOpsSloGetInput, UsersOpsSloGetOutput, UsersPasskeysGetInput, UsersPasskeysGetOutput, 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, UsersWaitlistGetInput, UsersWaitlistGetOutput, 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, UsersApikeysGetInput, UsersApikeysGetOutput, UsersApikeysListInput, UsersApikeysListOutput, UsersApikeysRevokeInput, UsersApikeysRevokeOutput, UsersAuditListInput, UsersAuditListOutput, UsersConfigGetInput, UsersConfigGetOutput, UsersConfigUpsertInput, UsersConfigUpsertOutput, UsersFactorsListInput, UsersFactorsListOutput, UsersFactorsResetInput, UsersFactorsResetOutput, UsersKeysListInput, UsersKeysListOutput, UsersKeysRevokeInput, UsersKeysRevokeOutput, UsersKeysRotateInput, UsersKeysRotateOutput, UsersOpsRetentionGetInput, UsersOpsRetentionGetOutput, UsersOpsSloGetInput, UsersOpsSloGetOutput, UsersPasskeysGetInput, UsersPasskeysGetOutput, UsersPasskeysListInput, UsersPasskeysListOutput, UsersPasskeysRevokeInput, UsersPasskeysRevokeOutput, UsersSessionsGetInput, UsersSessionsGetOutput, UsersSessionsImpersonateInput, UsersSessionsImpersonateOutput, UsersSessionsListInput, UsersSessionsListOutput, UsersSessionsRevokeInput, UsersSessionsRevokeOutput, UsersStatsGetInput, UsersStatsGetOutput, UsersTouchesCreateInput, UsersTouchesCreateOutput, UsersTouchesDeleteInput, UsersTouchesDeleteOutput, UsersTouchesListInput, UsersTouchesListOutput, UsersTouchesUpdateInput, UsersTouchesUpdateOutput, UsersUsersBanInput, UsersUsersBanOutput, UsersUsersCreateInput, UsersUsersCreateOutput, UsersUsersDeleteInput, UsersUsersDeleteOutput, UsersUsersExportInput, UsersUsersExportOutput, UsersUsersGetInput, UsersUsersGetOutput, UsersUsersImportInput, UsersUsersImportOutput, UsersUsersInviteInput, UsersUsersInviteOutput, UsersUsersListInput, UsersUsersListOutput, UsersUsersSetPrimaryIdentifierInput, UsersUsersSetPrimaryIdentifierOutput, UsersUsersUnbanInput, UsersUsersUnbanOutput, UsersUsersUpdateInput, UsersUsersUpdateOutput, UsersWaitlistFunnelInput, UsersWaitlistFunnelOutput, UsersWaitlistGetInput, UsersWaitlistGetOutput, 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, UsersApikeysGetInput, UsersApikeysGetOutput, UsersApikeysListInput, UsersApikeysListOutput, UsersApikeysRevokeInput, UsersAuditListInput, UsersAuditListOutput, UsersConfigGetInput, UsersConfigGetOutput, UsersConfigUpsertInput, UsersFactorsListInput, UsersFactorsListOutput, UsersFactorsResetInput, UsersKeysListInput, UsersKeysListOutput, UsersKeysRevokeInput, UsersKeysRotateInput, UsersOpsRetentionGetInput, UsersOpsRetentionGetOutput, UsersOpsSloGetInput, UsersOpsSloGetOutput, UsersPasskeysGetInput, UsersPasskeysGetOutput, UsersPasskeysListInput, UsersPasskeysListOutput, UsersPasskeysRevokeInput, UsersSessionsGetInput, UsersSessionsGetOutput, UsersSessionsImpersonateInput, UsersSessionsListInput, UsersSessionsListOutput, UsersSessionsRevokeInput, UsersStatsGetInput, UsersStatsGetOutput, UsersUsersBanInput, UsersUsersCreateInput, UsersUsersDeleteInput, UsersUsersExportInput, UsersUsersGetInput, UsersUsersGetOutput, UsersUsersImportInput, UsersUsersInviteInput, UsersUsersListInput, UsersUsersListOutput, UsersUsersSetPrimaryIdentifierInput, UsersUsersUnbanInput, UsersUsersUpdateInput, UsersWaitlistFunnelInput, UsersWaitlistFunnelOutput, UsersWaitlistGetInput, UsersWaitlistGetOutput, UsersWaitlistImportInput, UsersWaitlistInviteInput, UsersWaitlistListInput, UsersWaitlistListOutput, UsersWebhooksCreateInput, UsersWebhooksDeleteInput, UsersWebhooksDeliveriesListInput, UsersWebhooksDeliveriesListOutput, UsersWebhooksGetInput, UsersWebhooksGetOutput, UsersWebhooksListInput, UsersWebhooksListOutput, UsersWebhooksRotateSecretInput, UsersWebhooksUpdateInput } from '../types.gen.js';
2
+ import type { UsersApikeysCreateInput, UsersApikeysGetInput, UsersApikeysGetOutput, UsersApikeysListInput, UsersApikeysListOutput, UsersApikeysRevokeInput, UsersAuditListInput, UsersAuditListOutput, UsersConfigGetInput, UsersConfigGetOutput, UsersConfigUpsertInput, UsersFactorsListInput, UsersFactorsListOutput, UsersFactorsResetInput, UsersKeysListInput, UsersKeysListOutput, UsersKeysRevokeInput, UsersKeysRotateInput, UsersOpsRetentionGetInput, UsersOpsRetentionGetOutput, UsersOpsSloGetInput, UsersOpsSloGetOutput, UsersPasskeysGetInput, UsersPasskeysGetOutput, UsersPasskeysListInput, UsersPasskeysListOutput, UsersPasskeysRevokeInput, UsersSessionsGetInput, UsersSessionsGetOutput, UsersSessionsImpersonateInput, UsersSessionsListInput, UsersSessionsListOutput, UsersSessionsRevokeInput, UsersStatsGetInput, UsersStatsGetOutput, UsersTouchesCreateInput, UsersTouchesDeleteInput, UsersTouchesListInput, UsersTouchesListOutput, UsersTouchesUpdateInput, UsersUsersBanInput, UsersUsersCreateInput, UsersUsersDeleteInput, UsersUsersExportInput, UsersUsersGetInput, UsersUsersGetOutput, UsersUsersImportInput, UsersUsersInviteInput, UsersUsersListInput, UsersUsersListOutput, UsersUsersSetPrimaryIdentifierInput, UsersUsersUnbanInput, UsersUsersUpdateInput, UsersWaitlistFunnelInput, UsersWaitlistFunnelOutput, UsersWaitlistGetInput, UsersWaitlistGetOutput, UsersWaitlistImportInput, UsersWaitlistInviteInput, UsersWaitlistListInput, UsersWaitlistListOutput, 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>;
@@ -88,6 +88,22 @@ export declare const usersStatsGetQueryOptions: (sdk: GeneratedClient, input: Us
88
88
  queryKey: readonly ["users", "stats", "get", UsersStatsGetInput];
89
89
  queryFn: () => Promise<UsersStatsGetOutput>;
90
90
  };
91
+ export declare const usersTouchesCreateMutationOptions: (sdk: GeneratedClient) => {
92
+ mutationKey: string[];
93
+ mutationFn: (input: UsersTouchesCreateInput) => Promise<import(".").UsersTouchesCreateOutput>;
94
+ };
95
+ export declare const usersTouchesDeleteMutationOptions: (sdk: GeneratedClient) => {
96
+ mutationKey: string[];
97
+ mutationFn: (input: UsersTouchesDeleteInput) => Promise<import(".").UsersTouchesDeleteOutput>;
98
+ };
99
+ export declare const usersTouchesListQueryOptions: (sdk: GeneratedClient, input: UsersTouchesListInput) => {
100
+ queryKey: readonly ["users", "touches", "list", UsersTouchesListInput];
101
+ queryFn: () => Promise<UsersTouchesListOutput>;
102
+ };
103
+ export declare const usersTouchesUpdateMutationOptions: (sdk: GeneratedClient) => {
104
+ mutationKey: string[];
105
+ mutationFn: (input: UsersTouchesUpdateInput) => Promise<import(".").UsersTouchesUpdateOutput>;
106
+ };
91
107
  export declare const usersUsersBanMutationOptions: (sdk: GeneratedClient) => {
92
108
  mutationKey: string[];
93
109
  mutationFn: (input: UsersUsersBanInput) => Promise<import(".").UsersUsersBanOutput>;
@@ -10304,6 +10304,112 @@ var bindings = {
10304
10304
  "readOnly": true
10305
10305
  }
10306
10306
  },
10307
+ "touches": {
10308
+ "create": {
10309
+ "level": "write",
10310
+ "method": "POST",
10311
+ "operationKey": "users_touches_create",
10312
+ "params": [
10313
+ {
10314
+ "in": "path",
10315
+ "name": "userId"
10316
+ },
10317
+ {
10318
+ "in": "body",
10319
+ "name": "channel"
10320
+ },
10321
+ {
10322
+ "in": "body",
10323
+ "name": "direction"
10324
+ },
10325
+ {
10326
+ "in": "body",
10327
+ "name": "occurredAt"
10328
+ },
10329
+ {
10330
+ "in": "body",
10331
+ "name": "body"
10332
+ }
10333
+ ],
10334
+ "path": "/users/users/:userId/touches",
10335
+ "readOnly": false
10336
+ },
10337
+ "delete": {
10338
+ "level": "write",
10339
+ "method": "DELETE",
10340
+ "operationKey": "users_touches_delete",
10341
+ "params": [
10342
+ {
10343
+ "in": "path",
10344
+ "name": "userId"
10345
+ },
10346
+ {
10347
+ "in": "path",
10348
+ "name": "touchId"
10349
+ },
10350
+ {
10351
+ "in": "query",
10352
+ "name": "force"
10353
+ }
10354
+ ],
10355
+ "path": "/users/users/:userId/touches/:touchId",
10356
+ "readOnly": false
10357
+ },
10358
+ "list": {
10359
+ "level": "read",
10360
+ "method": "GET",
10361
+ "operationKey": "users_touches_list",
10362
+ "params": [
10363
+ {
10364
+ "in": "path",
10365
+ "name": "userId"
10366
+ },
10367
+ {
10368
+ "in": "query",
10369
+ "name": "channel"
10370
+ },
10371
+ {
10372
+ "in": "query",
10373
+ "name": "limit"
10374
+ },
10375
+ {
10376
+ "in": "query",
10377
+ "name": "cursor"
10378
+ }
10379
+ ],
10380
+ "path": "/users/users/:userId/touches",
10381
+ "readOnly": true
10382
+ },
10383
+ "update": {
10384
+ "level": "write",
10385
+ "method": "PATCH",
10386
+ "operationKey": "users_touches_update",
10387
+ "params": [
10388
+ {
10389
+ "in": "path",
10390
+ "name": "userId"
10391
+ },
10392
+ {
10393
+ "in": "path",
10394
+ "name": "touchId"
10395
+ },
10396
+ {
10397
+ "in": "body",
10398
+ "name": "body"
10399
+ },
10400
+ {
10401
+ "in": "body",
10402
+ "name": "occurredAt"
10403
+ },
10404
+ {
10405
+ "in": "body",
10406
+ "name": "force"
10407
+ }
10408
+ ],
10409
+ "path": "/users/users/:userId/touches/:touchId",
10410
+ "readOnly": false
10411
+ }
10412
+ },
10307
10413
  "users": {
10308
10414
  "ban": {
10309
10415
  "level": "admin",
@@ -10521,6 +10627,14 @@ var bindings = {
10521
10627
  "in": "query",
10522
10628
  "name": "includeContacts"
10523
10629
  },
10630
+ {
10631
+ "in": "query",
10632
+ "name": "lastTouchAfter"
10633
+ },
10634
+ {
10635
+ "in": "query",
10636
+ "name": "lastTouchBefore"
10637
+ },
10524
10638
  {
10525
10639
  "in": "query",
10526
10640
  "name": "limit"
@@ -11571,5 +11685,5 @@ var wsBindings = {
11571
11685
  };
11572
11686
 
11573
11687
  export { bindings, wsBindings };
11574
- //# sourceMappingURL=chunk-T3O56NBF.js.map
11575
- //# sourceMappingURL=chunk-T3O56NBF.js.map
11688
+ //# sourceMappingURL=chunk-VHBBS4OY.js.map
11689
+ //# sourceMappingURL=chunk-VHBBS4OY.js.map