@lessly/sdk-app 71.2.0 → 71.3.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.
- package/dist/_types/gen/client.gen.d.ts +35 -3
- package/dist/_types/gen/manifest.gen.d.ts +1 -1
- package/dist/_types/gen/playground/connect.gen.d.ts +3 -0
- package/dist/_types/gen/playground/index.d.ts +3 -0
- package/dist/_types/gen/playground/queryOptions.gen.d.ts +66 -0
- package/dist/_types/gen/types.gen.d.ts +308 -49
- package/dist/_types/gen/users/index.d.ts +1 -1
- package/dist/_types/gen/users/queryOptions.gen.d.ts +1 -9
- package/dist/chunk-C3QGKPUY.js +11364 -0
- package/dist/chunk-C3QGKPUY.js.map +1 -0
- package/dist/index.cjs +252 -49
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +52 -11199
- package/dist/index.js.map +1 -1
- package/dist/playground/index.cjs +101 -0
- package/dist/playground/index.cjs.map +1 -0
- package/dist/playground/index.d.cts +1 -0
- package/dist/playground/index.d.ts +1 -0
- package/dist/playground/index.js +74 -0
- package/dist/playground/index.js.map +1 -0
- package/dist/users/index.cjs +0 -10
- package/dist/users/index.cjs.map +1 -1
- package/dist/users/index.js +1 -9
- package/dist/users/index.js.map +1 -1
- package/package.json +12 -2
- package/src/gen/bindings.gen.ts +211 -37
- package/src/gen/client.gen.ts +66 -6
- package/src/gen/manifest.gen.ts +50 -13
- package/src/gen/playground/connect.gen.ts +9 -0
- package/src/gen/playground/index.ts +4 -0
- package/src/gen/playground/queryOptions.gen.ts +112 -0
- package/src/gen/types.gen.ts +352 -53
- package/src/gen/users/index.ts +1 -1
- package/src/gen/users/queryOptions.gen.ts +0 -12
|
@@ -91381,6 +91381,312 @@ export interface OrganizationYoutubeInstallInput {
|
|
|
91381
91381
|
export interface OrganizationYoutubeInstallOutput {
|
|
91382
91382
|
url: string;
|
|
91383
91383
|
}
|
|
91384
|
+
export interface PlaygroundAnalyticsOverviewInput {
|
|
91385
|
+
/**
|
|
91386
|
+
* Max records per entity in recent[]; omit for the endpoint default
|
|
91387
|
+
*/
|
|
91388
|
+
limit?: number;
|
|
91389
|
+
}
|
|
91390
|
+
export interface PlaygroundAnalyticsOverviewOutput {
|
|
91391
|
+
ok: boolean;
|
|
91392
|
+
minted: boolean;
|
|
91393
|
+
overview?: unknown;
|
|
91394
|
+
http_status: number;
|
|
91395
|
+
}
|
|
91396
|
+
export interface PlaygroundBillingEntitlementsInput {
|
|
91397
|
+
}
|
|
91398
|
+
export interface PlaygroundBillingEntitlementsOutput {
|
|
91399
|
+
ok: boolean;
|
|
91400
|
+
minted: boolean;
|
|
91401
|
+
http_status: number;
|
|
91402
|
+
entitlements?: unknown;
|
|
91403
|
+
}
|
|
91404
|
+
export interface PlaygroundBillingRecordUsageInput {
|
|
91405
|
+
/**
|
|
91406
|
+
* Quantity of events to record against playground-events (SUM); defaults to 1
|
|
91407
|
+
*/
|
|
91408
|
+
value?: number;
|
|
91409
|
+
}
|
|
91410
|
+
export interface PlaygroundBillingRecordUsageOutput {
|
|
91411
|
+
minted: boolean;
|
|
91412
|
+
accepted: (number | null);
|
|
91413
|
+
recorded: boolean;
|
|
91414
|
+
duplicates: (number | null);
|
|
91415
|
+
http_status: number;
|
|
91416
|
+
}
|
|
91417
|
+
export interface PlaygroundClickupCreateTaskInput {
|
|
91418
|
+
/**
|
|
91419
|
+
* Task title; defaults to a fixture label
|
|
91420
|
+
*/
|
|
91421
|
+
name?: string;
|
|
91422
|
+
/**
|
|
91423
|
+
* ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
|
|
91424
|
+
*/
|
|
91425
|
+
listId?: string;
|
|
91426
|
+
}
|
|
91427
|
+
export interface PlaygroundClickupCreateTaskOutput {
|
|
91428
|
+
minted: boolean;
|
|
91429
|
+
task_id: (string | null);
|
|
91430
|
+
list_status: number;
|
|
91431
|
+
vend_status: number;
|
|
91432
|
+
clickup_status: number;
|
|
91433
|
+
installation_count: number;
|
|
91434
|
+
}
|
|
91435
|
+
export interface PlaygroundClickupGetLastWebhookInput {
|
|
91436
|
+
}
|
|
91437
|
+
export type PlaygroundClickupGetLastWebhookOutput = ({
|
|
91438
|
+
payload: string;
|
|
91439
|
+
event_id: string;
|
|
91440
|
+
provider: string;
|
|
91441
|
+
verified: boolean;
|
|
91442
|
+
product_id: string;
|
|
91443
|
+
occurred_at: string;
|
|
91444
|
+
connector_id: string;
|
|
91445
|
+
clickup_event: (string | null);
|
|
91446
|
+
receipt_count: number;
|
|
91447
|
+
} | {
|
|
91448
|
+
found: false;
|
|
91449
|
+
});
|
|
91450
|
+
export interface PlaygroundClickupGetOverviewInput {
|
|
91451
|
+
}
|
|
91452
|
+
export interface PlaygroundClickupGetOverviewOutput {
|
|
91453
|
+
team: ({
|
|
91454
|
+
teamId: string;
|
|
91455
|
+
teamName: string;
|
|
91456
|
+
} | null);
|
|
91457
|
+
lists: PlaygroundClickupGetOverviewOutputItems[];
|
|
91458
|
+
tasks: {
|
|
91459
|
+
id: string;
|
|
91460
|
+
name: string;
|
|
91461
|
+
status: (string | null);
|
|
91462
|
+
}[];
|
|
91463
|
+
minted: boolean;
|
|
91464
|
+
spaces: PlaygroundClickupGetOverviewOutputItems[];
|
|
91465
|
+
list_status: number;
|
|
91466
|
+
vend_status: number;
|
|
91467
|
+
lists_status: number;
|
|
91468
|
+
tasks_status: number;
|
|
91469
|
+
spaces_status: number;
|
|
91470
|
+
folders_status: number;
|
|
91471
|
+
installation_count: number;
|
|
91472
|
+
}
|
|
91473
|
+
export interface PlaygroundClickupGetOverviewOutputItems {
|
|
91474
|
+
id: string;
|
|
91475
|
+
name: string;
|
|
91476
|
+
}
|
|
91477
|
+
export interface PlaygroundGdriveGetLastChangeInput {
|
|
91478
|
+
}
|
|
91479
|
+
export type PlaygroundGdriveGetLastChangeOutput = ({
|
|
91480
|
+
file_id: string;
|
|
91481
|
+
removed: boolean;
|
|
91482
|
+
file_name: (string | null);
|
|
91483
|
+
mime_type: (string | null);
|
|
91484
|
+
product_id: string;
|
|
91485
|
+
occurred_at: string;
|
|
91486
|
+
connector_id: string;
|
|
91487
|
+
resource_state: string;
|
|
91488
|
+
} | {
|
|
91489
|
+
found: false;
|
|
91490
|
+
});
|
|
91491
|
+
export interface PlaygroundGdriveReadFileInput {
|
|
91492
|
+
/**
|
|
91493
|
+
* Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
|
|
91494
|
+
*/
|
|
91495
|
+
fileId?: string;
|
|
91496
|
+
}
|
|
91497
|
+
export interface PlaygroundGdriveReadFileOutput {
|
|
91498
|
+
minted: boolean;
|
|
91499
|
+
file_id: (string | null);
|
|
91500
|
+
file_name: (string | null);
|
|
91501
|
+
mime_type: (string | null);
|
|
91502
|
+
file_count: number;
|
|
91503
|
+
get_status: number;
|
|
91504
|
+
list_status: number;
|
|
91505
|
+
vend_status: number;
|
|
91506
|
+
content_bytes: (number | null);
|
|
91507
|
+
}
|
|
91508
|
+
export interface PlaygroundGoogleadsReadCustomerInput {
|
|
91509
|
+
}
|
|
91510
|
+
export interface PlaygroundGoogleadsReadCustomerOutput {
|
|
91511
|
+
minted: boolean;
|
|
91512
|
+
vended: boolean;
|
|
91513
|
+
customer_id: (string | null);
|
|
91514
|
+
vend_status: number;
|
|
91515
|
+
result_count: number;
|
|
91516
|
+
search_status: number;
|
|
91517
|
+
login_customer_id: (string | null);
|
|
91518
|
+
}
|
|
91519
|
+
export interface PlaygroundLifecycleGetStateInput {
|
|
91520
|
+
}
|
|
91521
|
+
export interface PlaygroundLifecycleGetStateOutput {
|
|
91522
|
+
blocked: boolean;
|
|
91523
|
+
archived: boolean;
|
|
91524
|
+
productId: string;
|
|
91525
|
+
lastBlockTransition: ({
|
|
91526
|
+
eventId: string;
|
|
91527
|
+
eventName: string;
|
|
91528
|
+
productId: string;
|
|
91529
|
+
occurredAt: string;
|
|
91530
|
+
recordedAt: string;
|
|
91531
|
+
receiptCount: number;
|
|
91532
|
+
organizationId: string;
|
|
91533
|
+
cascadedFromOrg: boolean;
|
|
91534
|
+
} | null);
|
|
91535
|
+
lastArchiveTransition: ({
|
|
91536
|
+
eventId: string;
|
|
91537
|
+
eventName: string;
|
|
91538
|
+
productId: string;
|
|
91539
|
+
occurredAt: string;
|
|
91540
|
+
recordedAt: string;
|
|
91541
|
+
receiptCount: number;
|
|
91542
|
+
organizationId: string;
|
|
91543
|
+
cascadedFromOrg: boolean;
|
|
91544
|
+
} | null);
|
|
91545
|
+
}
|
|
91546
|
+
export interface PlaygroundLifecycleListEventsInput {
|
|
91547
|
+
}
|
|
91548
|
+
export type PlaygroundLifecycleListEventsOutput = {
|
|
91549
|
+
eventId: string;
|
|
91550
|
+
eventName: string;
|
|
91551
|
+
productId: string;
|
|
91552
|
+
occurredAt: string;
|
|
91553
|
+
recordedAt: string;
|
|
91554
|
+
receiptCount: number;
|
|
91555
|
+
organizationId: string;
|
|
91556
|
+
cascadedFromOrg: boolean;
|
|
91557
|
+
}[];
|
|
91558
|
+
export interface PlaygroundWebhookGetLastInput {
|
|
91559
|
+
}
|
|
91560
|
+
export type PlaygroundWebhookGetLastOutput = ({
|
|
91561
|
+
payload?: unknown;
|
|
91562
|
+
event_id: string;
|
|
91563
|
+
provider: string;
|
|
91564
|
+
verified: boolean;
|
|
91565
|
+
product_id: string;
|
|
91566
|
+
occurred_at: string;
|
|
91567
|
+
connector_id: string;
|
|
91568
|
+
delivery_count: number;
|
|
91569
|
+
} | {
|
|
91570
|
+
found: false;
|
|
91571
|
+
});
|
|
91572
|
+
export interface PlaygroundWorkflowEchoInput {
|
|
91573
|
+
/**
|
|
91574
|
+
* The text to store, 1–1024 characters
|
|
91575
|
+
*/
|
|
91576
|
+
note: string;
|
|
91577
|
+
/**
|
|
91578
|
+
* Optional labels stored alongside the note, at most 20
|
|
91579
|
+
*
|
|
91580
|
+
* @maxItems 20
|
|
91581
|
+
*/
|
|
91582
|
+
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];
|
|
91583
|
+
}
|
|
91584
|
+
export interface PlaygroundWorkflowEchoOutput {
|
|
91585
|
+
/**
|
|
91586
|
+
* Identifier of the stored echo
|
|
91587
|
+
*/
|
|
91588
|
+
id: string;
|
|
91589
|
+
/**
|
|
91590
|
+
* The note exactly as it was received
|
|
91591
|
+
*/
|
|
91592
|
+
note: string;
|
|
91593
|
+
/**
|
|
91594
|
+
* The tags exactly as they were received
|
|
91595
|
+
*/
|
|
91596
|
+
tags: string[];
|
|
91597
|
+
/**
|
|
91598
|
+
* 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.
|
|
91599
|
+
*/
|
|
91600
|
+
echo_id: string;
|
|
91601
|
+
/**
|
|
91602
|
+
* ISO-8601 instant (UTC) at which the echo was stored
|
|
91603
|
+
*/
|
|
91604
|
+
received_at: string;
|
|
91605
|
+
}
|
|
91606
|
+
export interface PlaygroundWorkflowEchoListInput {
|
|
91607
|
+
}
|
|
91608
|
+
export type PlaygroundWorkflowEchoListOutput = {
|
|
91609
|
+
/**
|
|
91610
|
+
* Identifier of the stored echo
|
|
91611
|
+
*/
|
|
91612
|
+
id: string;
|
|
91613
|
+
/**
|
|
91614
|
+
* The note exactly as it was received
|
|
91615
|
+
*/
|
|
91616
|
+
note: string;
|
|
91617
|
+
/**
|
|
91618
|
+
* The tags exactly as they were received
|
|
91619
|
+
*/
|
|
91620
|
+
tags: string[];
|
|
91621
|
+
/**
|
|
91622
|
+
* ISO-8601 instant (UTC) at which the echo was stored
|
|
91623
|
+
*/
|
|
91624
|
+
received_at: string;
|
|
91625
|
+
}[];
|
|
91626
|
+
export interface PlaygroundWorkflowPingInput {
|
|
91627
|
+
/**
|
|
91628
|
+
* Class of ping, echoed on the emitted event and filterable on the trigger. Defaults to 'manual'.
|
|
91629
|
+
*/
|
|
91630
|
+
kind?: string;
|
|
91631
|
+
}
|
|
91632
|
+
export interface PlaygroundWorkflowPingOutput {
|
|
91633
|
+
/**
|
|
91634
|
+
* 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.
|
|
91635
|
+
*/
|
|
91636
|
+
id: string;
|
|
91637
|
+
/**
|
|
91638
|
+
* The name of the event that was published
|
|
91639
|
+
*/
|
|
91640
|
+
event: string;
|
|
91641
|
+
}
|
|
91642
|
+
export interface PlaygroundWorkflowSubjectsListInput {
|
|
91643
|
+
/**
|
|
91644
|
+
* How many subjects to return, 1–100. Defaults to 25.
|
|
91645
|
+
*/
|
|
91646
|
+
limit?: number;
|
|
91647
|
+
/**
|
|
91648
|
+
* The next_cursor of the previous page. Opaque — pass it back unchanged. Omit for the first page.
|
|
91649
|
+
*/
|
|
91650
|
+
cursor?: string;
|
|
91651
|
+
/**
|
|
91652
|
+
* 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.
|
|
91653
|
+
*/
|
|
91654
|
+
last_activity_after?: string;
|
|
91655
|
+
/**
|
|
91656
|
+
* 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.
|
|
91657
|
+
*/
|
|
91658
|
+
last_activity_before?: string;
|
|
91659
|
+
}
|
|
91660
|
+
export interface PlaygroundWorkflowSubjectsListOutput {
|
|
91661
|
+
/**
|
|
91662
|
+
* This page of subjects, most recently active first
|
|
91663
|
+
*/
|
|
91664
|
+
items: {
|
|
91665
|
+
/**
|
|
91666
|
+
* 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.
|
|
91667
|
+
*/
|
|
91668
|
+
subject_key: string;
|
|
91669
|
+
/**
|
|
91670
|
+
* Human-readable name of the subject
|
|
91671
|
+
*/
|
|
91672
|
+
display_name: string;
|
|
91673
|
+
/**
|
|
91674
|
+
* ISO-8601 instant (UTC) of the subject last activity
|
|
91675
|
+
*/
|
|
91676
|
+
last_activity_at: string;
|
|
91677
|
+
}[];
|
|
91678
|
+
/**
|
|
91679
|
+
* Whether another page follows. False and a null next_cursor both mark the last page, so a consumer that loops on either terminates.
|
|
91680
|
+
*/
|
|
91681
|
+
has_more: boolean;
|
|
91682
|
+
/**
|
|
91683
|
+
* Pass back as `cursor` to fetch the next page; null on the last page. Always null when has_more is false.
|
|
91684
|
+
*/
|
|
91685
|
+
next_cursor: (string | null);
|
|
91686
|
+
}
|
|
91687
|
+
export interface PlaygroundWsEchoInput {
|
|
91688
|
+
}
|
|
91689
|
+
export type PlaygroundWsEchoOutput = unknown;
|
|
91384
91690
|
export interface RealtimeArchiveExportInput {
|
|
91385
91691
|
/**
|
|
91386
91692
|
* Only entries with ts <= to_ts (epoch ms)
|
|
@@ -116239,7 +116545,7 @@ export interface UsersUsersCreateInput {
|
|
|
116239
116545
|
*/
|
|
116240
116546
|
imageUrl?: string;
|
|
116241
116547
|
/**
|
|
116242
|
-
*
|
|
116548
|
+
* Credential to store for this user. Supply hashes only; omit password to create no password identity.
|
|
116243
116549
|
*/
|
|
116244
116550
|
password?: {
|
|
116245
116551
|
/**
|
|
@@ -116247,7 +116553,7 @@ export interface UsersUsersCreateInput {
|
|
|
116247
116553
|
*/
|
|
116248
116554
|
phcHash?: string;
|
|
116249
116555
|
/**
|
|
116250
|
-
* An imported hash from another system, to be lazily rehashed on the first successful sign-in
|
|
116556
|
+
* An imported hash from another system, to be lazily rehashed on the first successful sign-in.
|
|
116251
116557
|
*/
|
|
116252
116558
|
foreignHash?: string;
|
|
116253
116559
|
/**
|
|
@@ -116401,44 +116707,6 @@ export interface UsersUsersDeleteOutput {
|
|
|
116401
116707
|
export interface UsersUsersDeleteOutputPublicMetadata {
|
|
116402
116708
|
[k: string]: unknown;
|
|
116403
116709
|
}
|
|
116404
|
-
export interface UsersUsersEraseInput {
|
|
116405
|
-
/**
|
|
116406
|
-
* The opaque user id returned by users_users_create or _list.
|
|
116407
|
-
*/
|
|
116408
|
-
userId: string;
|
|
116409
|
-
}
|
|
116410
|
-
export interface UsersUsersEraseOutput {
|
|
116411
|
-
id: string;
|
|
116412
|
-
name: (string | null);
|
|
116413
|
-
bannedAt: (string | null);
|
|
116414
|
-
erasedAt: (string | null);
|
|
116415
|
-
imageUrl: (string | null);
|
|
116416
|
-
testUser: boolean;
|
|
116417
|
-
createdAt: string;
|
|
116418
|
-
deletedAt: (string | null);
|
|
116419
|
-
productId: string;
|
|
116420
|
-
updatedAt: string;
|
|
116421
|
-
waitlisted: boolean;
|
|
116422
|
-
identifiers: {
|
|
116423
|
-
id: string;
|
|
116424
|
-
type: "email";
|
|
116425
|
-
value: string;
|
|
116426
|
-
isPrimary: boolean;
|
|
116427
|
-
verifiedAt: (string | null);
|
|
116428
|
-
valueCanonical: string;
|
|
116429
|
-
verificationStatus: ("unverified" | "verified" | "expired");
|
|
116430
|
-
}[];
|
|
116431
|
-
lockedUntil: (string | null);
|
|
116432
|
-
lastSignInAt: (string | null);
|
|
116433
|
-
requiresReset: boolean;
|
|
116434
|
-
publicMetadata: UsersUsersEraseOutputPublicMetadata;
|
|
116435
|
-
unsafeMetadata: UsersUsersEraseOutputPublicMetadata;
|
|
116436
|
-
privateMetadata: UsersUsersEraseOutputPublicMetadata;
|
|
116437
|
-
emailChangeLockedUntil: (string | null);
|
|
116438
|
-
}
|
|
116439
|
-
export interface UsersUsersEraseOutputPublicMetadata {
|
|
116440
|
-
[k: string]: unknown;
|
|
116441
|
-
}
|
|
116442
116710
|
export interface UsersUsersExportInput {
|
|
116443
116711
|
/**
|
|
116444
116712
|
* Rows per page, 1-500. Default 100.
|
|
@@ -116784,15 +117052,6 @@ export interface UsersUsersUpdateOutput {
|
|
|
116784
117052
|
export interface UsersUsersUpdateOutputPublicMetadata {
|
|
116785
117053
|
[k: string]: unknown;
|
|
116786
117054
|
}
|
|
116787
|
-
export interface UsersWaitlistEraseInput {
|
|
116788
|
-
/**
|
|
116789
|
-
* The waitlisted user whose entry and directory row to erase.
|
|
116790
|
-
*/
|
|
116791
|
-
userId: string;
|
|
116792
|
-
}
|
|
116793
|
-
export interface UsersWaitlistEraseOutput {
|
|
116794
|
-
erased: boolean;
|
|
116795
|
-
}
|
|
116796
117055
|
export interface UsersWaitlistFunnelInput {
|
|
116797
117056
|
}
|
|
116798
117057
|
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,
|
|
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';
|
|
@@ -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,
|
|
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';
|
|
3
3
|
export declare const usersApikeysCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
4
4
|
mutationKey: string[];
|
|
5
5
|
mutationFn: (input: UsersApikeysCreateInput) => Promise<import(".").UsersApikeysCreateOutput>;
|
|
@@ -92,10 +92,6 @@ 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
|
-
};
|
|
99
95
|
export declare const usersUsersExportMutationOptions: (sdk: GeneratedClient) => {
|
|
100
96
|
mutationKey: string[];
|
|
101
97
|
mutationFn: (input: UsersUsersExportInput) => Promise<import(".").UsersUsersExportOutput>;
|
|
@@ -128,10 +124,6 @@ export declare const usersUsersUpdateMutationOptions: (sdk: GeneratedClient) =>
|
|
|
128
124
|
mutationKey: string[];
|
|
129
125
|
mutationFn: (input: UsersUsersUpdateInput) => Promise<import(".").UsersUsersUpdateOutput>;
|
|
130
126
|
};
|
|
131
|
-
export declare const usersWaitlistEraseMutationOptions: (sdk: GeneratedClient) => {
|
|
132
|
-
mutationKey: string[];
|
|
133
|
-
mutationFn: (input: UsersWaitlistEraseInput) => Promise<import(".").UsersWaitlistEraseOutput>;
|
|
134
|
-
};
|
|
135
127
|
export declare const usersWaitlistFunnelMutationOptions: (sdk: GeneratedClient) => {
|
|
136
128
|
mutationKey: string[];
|
|
137
129
|
mutationFn: (input: UsersWaitlistFunnelInput) => Promise<import(".").UsersWaitlistFunnelOutput>;
|