@lessly/sdk-app 17.0.0 → 17.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.
- package/dist/analytics/index.d.cts +1 -1
- package/dist/analytics/index.d.ts +1 -1
- package/dist/brain/index.d.cts +1 -1
- package/dist/brain/index.d.ts +1 -1
- package/dist/{client.gen-DYlVp4ZF.d.cts → client.gen-C3-OM0XA.d.cts} +2688 -1
- package/dist/{client.gen-DYlVp4ZF.d.ts → client.gen-C3-OM0XA.d.ts} +2688 -1
- package/dist/consent/index.d.cts +1 -1
- package/dist/consent/index.d.ts +1 -1
- package/dist/deployment/index.d.cts +1 -1
- package/dist/deployment/index.d.ts +1 -1
- package/dist/index.cjs +742 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +742 -0
- package/dist/index.js.map +1 -1
- package/dist/mail/index.d.cts +2 -2
- package/dist/mail/index.d.ts +2 -2
- package/dist/organization/index.d.cts +1 -1
- package/dist/organization/index.d.ts +1 -1
- package/dist/realtime/index.d.cts +1 -1
- package/dist/realtime/index.d.ts +1 -1
- package/dist/tracking/index.d.cts +1 -1
- package/dist/tracking/index.d.ts +1 -1
- package/dist/users/index.cjs +216 -0
- package/dist/users/index.cjs.map +1 -0
- package/dist/users/index.d.cts +172 -0
- package/dist/users/index.d.ts +172 -0
- package/dist/users/index.js +173 -0
- package/dist/users/index.js.map +1 -0
- package/dist/waitlist/index.d.cts +1 -1
- package/dist/waitlist/index.d.ts +1 -1
- package/package.json +7 -2
- package/src/gen/bindings.gen.ts +742 -0
- package/src/gen/client.gen.ts +158 -0
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/types.gen.ts +2699 -0
- package/src/gen/users/index.ts +3 -0
- package/src/gen/users/queryOptions.gen.ts +268 -0
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
import { G as GeneratedClient, j_ as UsersApikeysCreateInput, j$ as UsersApikeysCreateOutput, k0 as UsersApikeysListInput, k1 as UsersApikeysListOutput, k2 as UsersApikeysRevokeInput, k3 as UsersApikeysRevokeOutput, k4 as UsersAuditListInput, k5 as UsersAuditListOutput, k6 as UsersConfigGetInput, k7 as UsersConfigGetOutput, k8 as UsersConfigUpsertInput, k9 as UsersConfigUpsertOutput, ka as UsersFactorsListInput, kb as UsersFactorsListOutput, kc as UsersFactorsResetInput, kd as UsersFactorsResetOutput, ke as UsersKeysListInput, kf as UsersKeysListOutput, kg as UsersKeysRevokeInput, kh as UsersKeysRevokeOutput, ki as UsersKeysRotateInput, kj as UsersKeysRotateOutput, kk as UsersOpsRetentionGetInput, kl as UsersOpsRetentionGetOutput, km as UsersOpsSloGetInput, kn as UsersOpsSloGetOutput, ko as UsersSessionsGetInput, kp as UsersSessionsGetOutput, kq as UsersSessionsImpersonateInput, kr as UsersSessionsImpersonateOutput, ks as UsersSessionsListInput, kt as UsersSessionsListOutput, ku as UsersSessionsRevokeInput, kv as UsersSessionsRevokeOutput, kw as UsersStatsGetInput, kx as UsersStatsGetOutput, ky as UsersUsersBanInput, kz as UsersUsersBanOutput, kA as UsersUsersCreateInput, kB as UsersUsersCreateOutput, kC as UsersUsersDeleteInput, kD as UsersUsersDeleteOutput, kE as UsersUsersEraseInput, kF as UsersUsersEraseOutput, kG as UsersUsersExportInput, kH as UsersUsersExportOutput, kI as UsersUsersGetInput, kJ as UsersUsersGetOutput, kK as UsersUsersImportInput, kL as UsersUsersImportOutput, kM as UsersUsersInviteInput, kN as UsersUsersInviteOutput, kO as UsersUsersListInput, kP as UsersUsersListOutput, kQ as UsersUsersSetPrimaryIdentifierInput, kR as UsersUsersSetPrimaryIdentifierOutput, kS as UsersUsersUnbanInput, kT as UsersUsersUnbanOutput, kU as UsersUsersUpdateInput, kV as UsersUsersUpdateOutput, kW as UsersWaitlistEraseInput, kX as UsersWaitlistEraseOutput, kY as UsersWaitlistFunnelInput, kZ as UsersWaitlistFunnelOutput, k_ as UsersWaitlistImportInput, k$ as UsersWaitlistImportOutput, l0 as UsersWaitlistInviteInput, l1 as UsersWaitlistInviteOutput, l2 as UsersWaitlistListInput, l3 as UsersWaitlistListOutput, l4 as UsersWebhooksCreateInput, l5 as UsersWebhooksCreateOutput, l6 as UsersWebhooksDeleteInput, l7 as UsersWebhooksDeleteOutput, l8 as UsersWebhooksDeliveriesListInput, l9 as UsersWebhooksDeliveriesListOutput, la as UsersWebhooksGetInput, lb as UsersWebhooksGetOutput, lc as UsersWebhooksListInput, ld as UsersWebhooksListOutput, le as UsersWebhooksRotateSecretInput, lf as UsersWebhooksRotateSecretOutput, lg as UsersWebhooksUpdateInput, lh as UsersWebhooksUpdateOutput } from '../client.gen-C3-OM0XA.js';
|
|
2
|
+
|
|
3
|
+
declare const usersApikeysCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
4
|
+
mutationKey: string[];
|
|
5
|
+
mutationFn: (input: UsersApikeysCreateInput) => Promise<UsersApikeysCreateOutput>;
|
|
6
|
+
};
|
|
7
|
+
declare const usersApikeysListQueryOptions: (sdk: GeneratedClient, input: UsersApikeysListInput) => {
|
|
8
|
+
queryKey: readonly ["users", "apikeys", "list", UsersApikeysListInput];
|
|
9
|
+
queryFn: () => Promise<UsersApikeysListOutput>;
|
|
10
|
+
};
|
|
11
|
+
declare const usersApikeysRevokeMutationOptions: (sdk: GeneratedClient) => {
|
|
12
|
+
mutationKey: string[];
|
|
13
|
+
mutationFn: (input: UsersApikeysRevokeInput) => Promise<UsersApikeysRevokeOutput>;
|
|
14
|
+
};
|
|
15
|
+
declare const usersAuditListQueryOptions: (sdk: GeneratedClient, input: UsersAuditListInput) => {
|
|
16
|
+
queryKey: readonly ["users", "audit", "list", UsersAuditListInput];
|
|
17
|
+
queryFn: () => Promise<UsersAuditListOutput>;
|
|
18
|
+
};
|
|
19
|
+
declare const usersConfigGetQueryOptions: (sdk: GeneratedClient, input: UsersConfigGetInput) => {
|
|
20
|
+
queryKey: readonly ["users", "config", "get", UsersConfigGetInput];
|
|
21
|
+
queryFn: () => Promise<UsersConfigGetOutput>;
|
|
22
|
+
};
|
|
23
|
+
declare const usersConfigUpsertMutationOptions: (sdk: GeneratedClient) => {
|
|
24
|
+
mutationKey: string[];
|
|
25
|
+
mutationFn: (input: UsersConfigUpsertInput) => Promise<UsersConfigUpsertOutput>;
|
|
26
|
+
};
|
|
27
|
+
declare const usersFactorsListQueryOptions: (sdk: GeneratedClient, input: UsersFactorsListInput) => {
|
|
28
|
+
queryKey: readonly ["users", "factors", "list", UsersFactorsListInput];
|
|
29
|
+
queryFn: () => Promise<UsersFactorsListOutput>;
|
|
30
|
+
};
|
|
31
|
+
declare const usersFactorsResetMutationOptions: (sdk: GeneratedClient) => {
|
|
32
|
+
mutationKey: string[];
|
|
33
|
+
mutationFn: (input: UsersFactorsResetInput) => Promise<UsersFactorsResetOutput>;
|
|
34
|
+
};
|
|
35
|
+
declare const usersKeysListQueryOptions: (sdk: GeneratedClient, input: UsersKeysListInput) => {
|
|
36
|
+
queryKey: readonly ["users", "keys", "list", UsersKeysListInput];
|
|
37
|
+
queryFn: () => Promise<UsersKeysListOutput>;
|
|
38
|
+
};
|
|
39
|
+
declare const usersKeysRevokeMutationOptions: (sdk: GeneratedClient) => {
|
|
40
|
+
mutationKey: string[];
|
|
41
|
+
mutationFn: (input: UsersKeysRevokeInput) => Promise<UsersKeysRevokeOutput>;
|
|
42
|
+
};
|
|
43
|
+
declare const usersKeysRotateMutationOptions: (sdk: GeneratedClient) => {
|
|
44
|
+
mutationKey: string[];
|
|
45
|
+
mutationFn: (input: UsersKeysRotateInput) => Promise<UsersKeysRotateOutput>;
|
|
46
|
+
};
|
|
47
|
+
declare const usersOpsRetentionGetMutationOptions: (sdk: GeneratedClient) => {
|
|
48
|
+
mutationKey: string[];
|
|
49
|
+
mutationFn: (input: UsersOpsRetentionGetInput) => Promise<UsersOpsRetentionGetOutput>;
|
|
50
|
+
};
|
|
51
|
+
declare const usersOpsSloGetMutationOptions: (sdk: GeneratedClient) => {
|
|
52
|
+
mutationKey: string[];
|
|
53
|
+
mutationFn: (input: UsersOpsSloGetInput) => Promise<UsersOpsSloGetOutput>;
|
|
54
|
+
};
|
|
55
|
+
declare const usersSessionsGetQueryOptions: (sdk: GeneratedClient, input: UsersSessionsGetInput) => {
|
|
56
|
+
queryKey: readonly ["users", "sessions", "get", UsersSessionsGetInput];
|
|
57
|
+
queryFn: () => Promise<UsersSessionsGetOutput>;
|
|
58
|
+
};
|
|
59
|
+
declare const usersSessionsImpersonateMutationOptions: (sdk: GeneratedClient) => {
|
|
60
|
+
mutationKey: string[];
|
|
61
|
+
mutationFn: (input: UsersSessionsImpersonateInput) => Promise<UsersSessionsImpersonateOutput>;
|
|
62
|
+
};
|
|
63
|
+
declare const usersSessionsListQueryOptions: (sdk: GeneratedClient, input: UsersSessionsListInput) => {
|
|
64
|
+
queryKey: readonly ["users", "sessions", "list", UsersSessionsListInput];
|
|
65
|
+
queryFn: () => Promise<UsersSessionsListOutput>;
|
|
66
|
+
};
|
|
67
|
+
declare const usersSessionsRevokeMutationOptions: (sdk: GeneratedClient) => {
|
|
68
|
+
mutationKey: string[];
|
|
69
|
+
mutationFn: (input: UsersSessionsRevokeInput) => Promise<UsersSessionsRevokeOutput>;
|
|
70
|
+
};
|
|
71
|
+
declare const usersStatsGetMutationOptions: (sdk: GeneratedClient) => {
|
|
72
|
+
mutationKey: string[];
|
|
73
|
+
mutationFn: (input: UsersStatsGetInput) => Promise<UsersStatsGetOutput>;
|
|
74
|
+
};
|
|
75
|
+
declare const usersUsersBanMutationOptions: (sdk: GeneratedClient) => {
|
|
76
|
+
mutationKey: string[];
|
|
77
|
+
mutationFn: (input: UsersUsersBanInput) => Promise<UsersUsersBanOutput>;
|
|
78
|
+
};
|
|
79
|
+
declare const usersUsersCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
80
|
+
mutationKey: string[];
|
|
81
|
+
mutationFn: (input: UsersUsersCreateInput) => Promise<UsersUsersCreateOutput>;
|
|
82
|
+
};
|
|
83
|
+
declare const usersUsersDeleteMutationOptions: (sdk: GeneratedClient) => {
|
|
84
|
+
mutationKey: string[];
|
|
85
|
+
mutationFn: (input: UsersUsersDeleteInput) => Promise<UsersUsersDeleteOutput>;
|
|
86
|
+
};
|
|
87
|
+
declare const usersUsersEraseMutationOptions: (sdk: GeneratedClient) => {
|
|
88
|
+
mutationKey: string[];
|
|
89
|
+
mutationFn: (input: UsersUsersEraseInput) => Promise<UsersUsersEraseOutput>;
|
|
90
|
+
};
|
|
91
|
+
declare const usersUsersExportMutationOptions: (sdk: GeneratedClient) => {
|
|
92
|
+
mutationKey: string[];
|
|
93
|
+
mutationFn: (input: UsersUsersExportInput) => Promise<UsersUsersExportOutput>;
|
|
94
|
+
};
|
|
95
|
+
declare const usersUsersGetQueryOptions: (sdk: GeneratedClient, input: UsersUsersGetInput) => {
|
|
96
|
+
queryKey: readonly ["users", "users", "get", UsersUsersGetInput];
|
|
97
|
+
queryFn: () => Promise<UsersUsersGetOutput>;
|
|
98
|
+
};
|
|
99
|
+
declare const usersUsersImportMutationOptions: (sdk: GeneratedClient) => {
|
|
100
|
+
mutationKey: string[];
|
|
101
|
+
mutationFn: (input: UsersUsersImportInput) => Promise<UsersUsersImportOutput>;
|
|
102
|
+
};
|
|
103
|
+
declare const usersUsersInviteMutationOptions: (sdk: GeneratedClient) => {
|
|
104
|
+
mutationKey: string[];
|
|
105
|
+
mutationFn: (input: UsersUsersInviteInput) => Promise<UsersUsersInviteOutput>;
|
|
106
|
+
};
|
|
107
|
+
declare const usersUsersListQueryOptions: (sdk: GeneratedClient, input: UsersUsersListInput) => {
|
|
108
|
+
queryKey: readonly ["users", "users", "list", UsersUsersListInput];
|
|
109
|
+
queryFn: () => Promise<UsersUsersListOutput>;
|
|
110
|
+
};
|
|
111
|
+
declare const usersUsersSetPrimaryIdentifierMutationOptions: (sdk: GeneratedClient) => {
|
|
112
|
+
mutationKey: string[];
|
|
113
|
+
mutationFn: (input: UsersUsersSetPrimaryIdentifierInput) => Promise<UsersUsersSetPrimaryIdentifierOutput>;
|
|
114
|
+
};
|
|
115
|
+
declare const usersUsersUnbanMutationOptions: (sdk: GeneratedClient) => {
|
|
116
|
+
mutationKey: string[];
|
|
117
|
+
mutationFn: (input: UsersUsersUnbanInput) => Promise<UsersUsersUnbanOutput>;
|
|
118
|
+
};
|
|
119
|
+
declare const usersUsersUpdateMutationOptions: (sdk: GeneratedClient) => {
|
|
120
|
+
mutationKey: string[];
|
|
121
|
+
mutationFn: (input: UsersUsersUpdateInput) => Promise<UsersUsersUpdateOutput>;
|
|
122
|
+
};
|
|
123
|
+
declare const usersWaitlistEraseMutationOptions: (sdk: GeneratedClient) => {
|
|
124
|
+
mutationKey: string[];
|
|
125
|
+
mutationFn: (input: UsersWaitlistEraseInput) => Promise<UsersWaitlistEraseOutput>;
|
|
126
|
+
};
|
|
127
|
+
declare const usersWaitlistFunnelMutationOptions: (sdk: GeneratedClient) => {
|
|
128
|
+
mutationKey: string[];
|
|
129
|
+
mutationFn: (input: UsersWaitlistFunnelInput) => Promise<UsersWaitlistFunnelOutput>;
|
|
130
|
+
};
|
|
131
|
+
declare const usersWaitlistImportMutationOptions: (sdk: GeneratedClient) => {
|
|
132
|
+
mutationKey: string[];
|
|
133
|
+
mutationFn: (input: UsersWaitlistImportInput) => Promise<UsersWaitlistImportOutput>;
|
|
134
|
+
};
|
|
135
|
+
declare const usersWaitlistInviteMutationOptions: (sdk: GeneratedClient) => {
|
|
136
|
+
mutationKey: string[];
|
|
137
|
+
mutationFn: (input: UsersWaitlistInviteInput) => Promise<UsersWaitlistInviteOutput>;
|
|
138
|
+
};
|
|
139
|
+
declare const usersWaitlistListMutationOptions: (sdk: GeneratedClient) => {
|
|
140
|
+
mutationKey: string[];
|
|
141
|
+
mutationFn: (input: UsersWaitlistListInput) => Promise<UsersWaitlistListOutput>;
|
|
142
|
+
};
|
|
143
|
+
declare const usersWebhooksCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
144
|
+
mutationKey: string[];
|
|
145
|
+
mutationFn: (input: UsersWebhooksCreateInput) => Promise<UsersWebhooksCreateOutput>;
|
|
146
|
+
};
|
|
147
|
+
declare const usersWebhooksDeleteMutationOptions: (sdk: GeneratedClient) => {
|
|
148
|
+
mutationKey: string[];
|
|
149
|
+
mutationFn: (input: UsersWebhooksDeleteInput) => Promise<UsersWebhooksDeleteOutput>;
|
|
150
|
+
};
|
|
151
|
+
declare const usersWebhooksDeliveriesListQueryOptions: (sdk: GeneratedClient, input: UsersWebhooksDeliveriesListInput) => {
|
|
152
|
+
queryKey: readonly ["users", "webhooks-deliveries", "list", UsersWebhooksDeliveriesListInput];
|
|
153
|
+
queryFn: () => Promise<UsersWebhooksDeliveriesListOutput>;
|
|
154
|
+
};
|
|
155
|
+
declare const usersWebhooksGetQueryOptions: (sdk: GeneratedClient, input: UsersWebhooksGetInput) => {
|
|
156
|
+
queryKey: readonly ["users", "webhooks", "get", UsersWebhooksGetInput];
|
|
157
|
+
queryFn: () => Promise<UsersWebhooksGetOutput>;
|
|
158
|
+
};
|
|
159
|
+
declare const usersWebhooksListQueryOptions: (sdk: GeneratedClient, input: UsersWebhooksListInput) => {
|
|
160
|
+
queryKey: readonly ["users", "webhooks", "list", UsersWebhooksListInput];
|
|
161
|
+
queryFn: () => Promise<UsersWebhooksListOutput>;
|
|
162
|
+
};
|
|
163
|
+
declare const usersWebhooksRotateSecretMutationOptions: (sdk: GeneratedClient) => {
|
|
164
|
+
mutationKey: string[];
|
|
165
|
+
mutationFn: (input: UsersWebhooksRotateSecretInput) => Promise<UsersWebhooksRotateSecretOutput>;
|
|
166
|
+
};
|
|
167
|
+
declare const usersWebhooksUpdateMutationOptions: (sdk: GeneratedClient) => {
|
|
168
|
+
mutationKey: string[];
|
|
169
|
+
mutationFn: (input: UsersWebhooksUpdateInput) => Promise<UsersWebhooksUpdateOutput>;
|
|
170
|
+
};
|
|
171
|
+
|
|
172
|
+
export { 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, 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, usersApikeysCreateMutationOptions, usersApikeysListQueryOptions, usersApikeysRevokeMutationOptions, usersAuditListQueryOptions, usersConfigGetQueryOptions, usersConfigUpsertMutationOptions, usersFactorsListQueryOptions, usersFactorsResetMutationOptions, usersKeysListQueryOptions, usersKeysRevokeMutationOptions, usersKeysRotateMutationOptions, usersOpsRetentionGetMutationOptions, usersOpsSloGetMutationOptions, usersSessionsGetQueryOptions, usersSessionsImpersonateMutationOptions, usersSessionsListQueryOptions, usersSessionsRevokeMutationOptions, usersStatsGetMutationOptions, usersUsersBanMutationOptions, usersUsersCreateMutationOptions, usersUsersDeleteMutationOptions, usersUsersEraseMutationOptions, usersUsersExportMutationOptions, usersUsersGetQueryOptions, usersUsersImportMutationOptions, usersUsersInviteMutationOptions, usersUsersListQueryOptions, usersUsersSetPrimaryIdentifierMutationOptions, usersUsersUnbanMutationOptions, usersUsersUpdateMutationOptions, usersWaitlistEraseMutationOptions, usersWaitlistFunnelMutationOptions, usersWaitlistImportMutationOptions, usersWaitlistInviteMutationOptions, usersWaitlistListMutationOptions, usersWebhooksCreateMutationOptions, usersWebhooksDeleteMutationOptions, usersWebhooksDeliveriesListQueryOptions, usersWebhooksGetQueryOptions, usersWebhooksListQueryOptions, usersWebhooksRotateSecretMutationOptions, usersWebhooksUpdateMutationOptions };
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
// src/gen/users/queryOptions.gen.ts
|
|
2
|
+
var usersApikeysCreateMutationOptions = (sdk) => ({
|
|
3
|
+
mutationKey: ["users", "apikeys", "create"],
|
|
4
|
+
mutationFn: (input) => sdk["users"]["apikeys"]["create"](input)
|
|
5
|
+
});
|
|
6
|
+
var usersApikeysListQueryOptions = (sdk, input) => ({
|
|
7
|
+
queryKey: ["users", "apikeys", "list", input],
|
|
8
|
+
queryFn: () => sdk["users"]["apikeys"]["list"](input)
|
|
9
|
+
});
|
|
10
|
+
var usersApikeysRevokeMutationOptions = (sdk) => ({
|
|
11
|
+
mutationKey: ["users", "apikeys", "revoke"],
|
|
12
|
+
mutationFn: (input) => sdk["users"]["apikeys"]["revoke"](input)
|
|
13
|
+
});
|
|
14
|
+
var usersAuditListQueryOptions = (sdk, input) => ({
|
|
15
|
+
queryKey: ["users", "audit", "list", input],
|
|
16
|
+
queryFn: () => sdk["users"]["audit"]["list"](input)
|
|
17
|
+
});
|
|
18
|
+
var usersConfigGetQueryOptions = (sdk, input) => ({
|
|
19
|
+
queryKey: ["users", "config", "get", input],
|
|
20
|
+
queryFn: () => sdk["users"]["config"]["get"](input)
|
|
21
|
+
});
|
|
22
|
+
var usersConfigUpsertMutationOptions = (sdk) => ({
|
|
23
|
+
mutationKey: ["users", "config", "upsert"],
|
|
24
|
+
mutationFn: (input) => sdk["users"]["config"]["upsert"](input)
|
|
25
|
+
});
|
|
26
|
+
var usersFactorsListQueryOptions = (sdk, input) => ({
|
|
27
|
+
queryKey: ["users", "factors", "list", input],
|
|
28
|
+
queryFn: () => sdk["users"]["factors"]["list"](input)
|
|
29
|
+
});
|
|
30
|
+
var usersFactorsResetMutationOptions = (sdk) => ({
|
|
31
|
+
mutationKey: ["users", "factors", "reset"],
|
|
32
|
+
mutationFn: (input) => sdk["users"]["factors"]["reset"](input)
|
|
33
|
+
});
|
|
34
|
+
var usersKeysListQueryOptions = (sdk, input) => ({
|
|
35
|
+
queryKey: ["users", "keys", "list", input],
|
|
36
|
+
queryFn: () => sdk["users"]["keys"]["list"](input)
|
|
37
|
+
});
|
|
38
|
+
var usersKeysRevokeMutationOptions = (sdk) => ({
|
|
39
|
+
mutationKey: ["users", "keys", "revoke"],
|
|
40
|
+
mutationFn: (input) => sdk["users"]["keys"]["revoke"](input)
|
|
41
|
+
});
|
|
42
|
+
var usersKeysRotateMutationOptions = (sdk) => ({
|
|
43
|
+
mutationKey: ["users", "keys", "rotate"],
|
|
44
|
+
mutationFn: (input) => sdk["users"]["keys"]["rotate"](input)
|
|
45
|
+
});
|
|
46
|
+
var usersOpsRetentionGetMutationOptions = (sdk) => ({
|
|
47
|
+
mutationKey: ["users", "ops-retention", "get"],
|
|
48
|
+
mutationFn: (input) => sdk["users"]["ops-retention"]["get"](input)
|
|
49
|
+
});
|
|
50
|
+
var usersOpsSloGetMutationOptions = (sdk) => ({
|
|
51
|
+
mutationKey: ["users", "ops-slo", "get"],
|
|
52
|
+
mutationFn: (input) => sdk["users"]["ops-slo"]["get"](input)
|
|
53
|
+
});
|
|
54
|
+
var usersSessionsGetQueryOptions = (sdk, input) => ({
|
|
55
|
+
queryKey: ["users", "sessions", "get", input],
|
|
56
|
+
queryFn: () => sdk["users"]["sessions"]["get"](input)
|
|
57
|
+
});
|
|
58
|
+
var usersSessionsImpersonateMutationOptions = (sdk) => ({
|
|
59
|
+
mutationKey: ["users", "sessions", "impersonate"],
|
|
60
|
+
mutationFn: (input) => sdk["users"]["sessions"]["impersonate"](input)
|
|
61
|
+
});
|
|
62
|
+
var usersSessionsListQueryOptions = (sdk, input) => ({
|
|
63
|
+
queryKey: ["users", "sessions", "list", input],
|
|
64
|
+
queryFn: () => sdk["users"]["sessions"]["list"](input)
|
|
65
|
+
});
|
|
66
|
+
var usersSessionsRevokeMutationOptions = (sdk) => ({
|
|
67
|
+
mutationKey: ["users", "sessions", "revoke"],
|
|
68
|
+
mutationFn: (input) => sdk["users"]["sessions"]["revoke"](input)
|
|
69
|
+
});
|
|
70
|
+
var usersStatsGetMutationOptions = (sdk) => ({
|
|
71
|
+
mutationKey: ["users", "stats", "get"],
|
|
72
|
+
mutationFn: (input) => sdk["users"]["stats"]["get"](input)
|
|
73
|
+
});
|
|
74
|
+
var usersUsersBanMutationOptions = (sdk) => ({
|
|
75
|
+
mutationKey: ["users", "users", "ban"],
|
|
76
|
+
mutationFn: (input) => sdk["users"]["users"]["ban"](input)
|
|
77
|
+
});
|
|
78
|
+
var usersUsersCreateMutationOptions = (sdk) => ({
|
|
79
|
+
mutationKey: ["users", "users", "create"],
|
|
80
|
+
mutationFn: (input) => sdk["users"]["users"]["create"](input)
|
|
81
|
+
});
|
|
82
|
+
var usersUsersDeleteMutationOptions = (sdk) => ({
|
|
83
|
+
mutationKey: ["users", "users", "delete"],
|
|
84
|
+
mutationFn: (input) => sdk["users"]["users"]["delete"](input)
|
|
85
|
+
});
|
|
86
|
+
var usersUsersEraseMutationOptions = (sdk) => ({
|
|
87
|
+
mutationKey: ["users", "users", "erase"],
|
|
88
|
+
mutationFn: (input) => sdk["users"]["users"]["erase"](input)
|
|
89
|
+
});
|
|
90
|
+
var usersUsersExportMutationOptions = (sdk) => ({
|
|
91
|
+
mutationKey: ["users", "users", "export"],
|
|
92
|
+
mutationFn: (input) => sdk["users"]["users"]["export"](input)
|
|
93
|
+
});
|
|
94
|
+
var usersUsersGetQueryOptions = (sdk, input) => ({
|
|
95
|
+
queryKey: ["users", "users", "get", input],
|
|
96
|
+
queryFn: () => sdk["users"]["users"]["get"](input)
|
|
97
|
+
});
|
|
98
|
+
var usersUsersImportMutationOptions = (sdk) => ({
|
|
99
|
+
mutationKey: ["users", "users", "import"],
|
|
100
|
+
mutationFn: (input) => sdk["users"]["users"]["import"](input)
|
|
101
|
+
});
|
|
102
|
+
var usersUsersInviteMutationOptions = (sdk) => ({
|
|
103
|
+
mutationKey: ["users", "users", "invite"],
|
|
104
|
+
mutationFn: (input) => sdk["users"]["users"]["invite"](input)
|
|
105
|
+
});
|
|
106
|
+
var usersUsersListQueryOptions = (sdk, input) => ({
|
|
107
|
+
queryKey: ["users", "users", "list", input],
|
|
108
|
+
queryFn: () => sdk["users"]["users"]["list"](input)
|
|
109
|
+
});
|
|
110
|
+
var usersUsersSetPrimaryIdentifierMutationOptions = (sdk) => ({
|
|
111
|
+
mutationKey: ["users", "users-set-primary", "identifier"],
|
|
112
|
+
mutationFn: (input) => sdk["users"]["users-set-primary"]["identifier"](input)
|
|
113
|
+
});
|
|
114
|
+
var usersUsersUnbanMutationOptions = (sdk) => ({
|
|
115
|
+
mutationKey: ["users", "users", "unban"],
|
|
116
|
+
mutationFn: (input) => sdk["users"]["users"]["unban"](input)
|
|
117
|
+
});
|
|
118
|
+
var usersUsersUpdateMutationOptions = (sdk) => ({
|
|
119
|
+
mutationKey: ["users", "users", "update"],
|
|
120
|
+
mutationFn: (input) => sdk["users"]["users"]["update"](input)
|
|
121
|
+
});
|
|
122
|
+
var usersWaitlistEraseMutationOptions = (sdk) => ({
|
|
123
|
+
mutationKey: ["users", "waitlist", "erase"],
|
|
124
|
+
mutationFn: (input) => sdk["users"]["waitlist"]["erase"](input)
|
|
125
|
+
});
|
|
126
|
+
var usersWaitlistFunnelMutationOptions = (sdk) => ({
|
|
127
|
+
mutationKey: ["users", "waitlist", "funnel"],
|
|
128
|
+
mutationFn: (input) => sdk["users"]["waitlist"]["funnel"](input)
|
|
129
|
+
});
|
|
130
|
+
var usersWaitlistImportMutationOptions = (sdk) => ({
|
|
131
|
+
mutationKey: ["users", "waitlist", "import"],
|
|
132
|
+
mutationFn: (input) => sdk["users"]["waitlist"]["import"](input)
|
|
133
|
+
});
|
|
134
|
+
var usersWaitlistInviteMutationOptions = (sdk) => ({
|
|
135
|
+
mutationKey: ["users", "waitlist", "invite"],
|
|
136
|
+
mutationFn: (input) => sdk["users"]["waitlist"]["invite"](input)
|
|
137
|
+
});
|
|
138
|
+
var usersWaitlistListMutationOptions = (sdk) => ({
|
|
139
|
+
mutationKey: ["users", "waitlist", "list"],
|
|
140
|
+
mutationFn: (input) => sdk["users"]["waitlist"]["list"](input)
|
|
141
|
+
});
|
|
142
|
+
var usersWebhooksCreateMutationOptions = (sdk) => ({
|
|
143
|
+
mutationKey: ["users", "webhooks", "create"],
|
|
144
|
+
mutationFn: (input) => sdk["users"]["webhooks"]["create"](input)
|
|
145
|
+
});
|
|
146
|
+
var usersWebhooksDeleteMutationOptions = (sdk) => ({
|
|
147
|
+
mutationKey: ["users", "webhooks", "delete"],
|
|
148
|
+
mutationFn: (input) => sdk["users"]["webhooks"]["delete"](input)
|
|
149
|
+
});
|
|
150
|
+
var usersWebhooksDeliveriesListQueryOptions = (sdk, input) => ({
|
|
151
|
+
queryKey: ["users", "webhooks-deliveries", "list", input],
|
|
152
|
+
queryFn: () => sdk["users"]["webhooks-deliveries"]["list"](input)
|
|
153
|
+
});
|
|
154
|
+
var usersWebhooksGetQueryOptions = (sdk, input) => ({
|
|
155
|
+
queryKey: ["users", "webhooks", "get", input],
|
|
156
|
+
queryFn: () => sdk["users"]["webhooks"]["get"](input)
|
|
157
|
+
});
|
|
158
|
+
var usersWebhooksListQueryOptions = (sdk, input) => ({
|
|
159
|
+
queryKey: ["users", "webhooks", "list", input],
|
|
160
|
+
queryFn: () => sdk["users"]["webhooks"]["list"](input)
|
|
161
|
+
});
|
|
162
|
+
var usersWebhooksRotateSecretMutationOptions = (sdk) => ({
|
|
163
|
+
mutationKey: ["users", "webhooks-rotate", "secret"],
|
|
164
|
+
mutationFn: (input) => sdk["users"]["webhooks-rotate"]["secret"](input)
|
|
165
|
+
});
|
|
166
|
+
var usersWebhooksUpdateMutationOptions = (sdk) => ({
|
|
167
|
+
mutationKey: ["users", "webhooks", "update"],
|
|
168
|
+
mutationFn: (input) => sdk["users"]["webhooks"]["update"](input)
|
|
169
|
+
});
|
|
170
|
+
|
|
171
|
+
export { usersApikeysCreateMutationOptions, usersApikeysListQueryOptions, usersApikeysRevokeMutationOptions, usersAuditListQueryOptions, usersConfigGetQueryOptions, usersConfigUpsertMutationOptions, usersFactorsListQueryOptions, usersFactorsResetMutationOptions, usersKeysListQueryOptions, usersKeysRevokeMutationOptions, usersKeysRotateMutationOptions, usersOpsRetentionGetMutationOptions, usersOpsSloGetMutationOptions, usersSessionsGetQueryOptions, usersSessionsImpersonateMutationOptions, usersSessionsListQueryOptions, usersSessionsRevokeMutationOptions, usersStatsGetMutationOptions, usersUsersBanMutationOptions, usersUsersCreateMutationOptions, usersUsersDeleteMutationOptions, usersUsersEraseMutationOptions, usersUsersExportMutationOptions, usersUsersGetQueryOptions, usersUsersImportMutationOptions, usersUsersInviteMutationOptions, usersUsersListQueryOptions, usersUsersSetPrimaryIdentifierMutationOptions, usersUsersUnbanMutationOptions, usersUsersUpdateMutationOptions, usersWaitlistEraseMutationOptions, usersWaitlistFunnelMutationOptions, usersWaitlistImportMutationOptions, usersWaitlistInviteMutationOptions, usersWaitlistListMutationOptions, usersWebhooksCreateMutationOptions, usersWebhooksDeleteMutationOptions, usersWebhooksDeliveriesListQueryOptions, usersWebhooksGetQueryOptions, usersWebhooksListQueryOptions, usersWebhooksRotateSecretMutationOptions, usersWebhooksUpdateMutationOptions };
|
|
172
|
+
//# sourceMappingURL=index.js.map
|
|
173
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/gen/users/queryOptions.gen.ts"],"names":[],"mappings":"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","file":"index.js","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n UsersApikeysCreateInput,\n UsersApikeysListInput,\n UsersApikeysListOutput,\n UsersApikeysRevokeInput,\n UsersAuditListInput,\n UsersAuditListOutput,\n UsersConfigGetInput,\n UsersConfigGetOutput,\n UsersConfigUpsertInput,\n UsersFactorsListInput,\n UsersFactorsListOutput,\n UsersFactorsResetInput,\n UsersKeysListInput,\n UsersKeysListOutput,\n UsersKeysRevokeInput,\n UsersKeysRotateInput,\n UsersOpsRetentionGetInput,\n UsersOpsSloGetInput,\n UsersSessionsGetInput,\n UsersSessionsGetOutput,\n UsersSessionsImpersonateInput,\n UsersSessionsListInput,\n UsersSessionsListOutput,\n UsersSessionsRevokeInput,\n UsersStatsGetInput,\n UsersUsersBanInput,\n UsersUsersCreateInput,\n UsersUsersDeleteInput,\n UsersUsersEraseInput,\n UsersUsersExportInput,\n UsersUsersGetInput,\n UsersUsersGetOutput,\n UsersUsersImportInput,\n UsersUsersInviteInput,\n UsersUsersListInput,\n UsersUsersListOutput,\n UsersUsersSetPrimaryIdentifierInput,\n UsersUsersUnbanInput,\n UsersUsersUpdateInput,\n UsersWaitlistEraseInput,\n UsersWaitlistFunnelInput,\n UsersWaitlistImportInput,\n UsersWaitlistInviteInput,\n UsersWaitlistListInput,\n UsersWebhooksCreateInput,\n UsersWebhooksDeleteInput,\n UsersWebhooksDeliveriesListInput,\n UsersWebhooksDeliveriesListOutput,\n UsersWebhooksGetInput,\n UsersWebhooksGetOutput,\n UsersWebhooksListInput,\n UsersWebhooksListOutput,\n UsersWebhooksRotateSecretInput,\n UsersWebhooksUpdateInput,\n} from '../types.gen';\n\nexport const usersApikeysCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'apikeys', 'create'],\n mutationFn: (input: UsersApikeysCreateInput) => sdk['users']['apikeys']['create'](input),\n});\n\nexport const usersApikeysListQueryOptions = (sdk: GeneratedClient, input: UsersApikeysListInput) => ({\n queryKey: ['users', 'apikeys', 'list', input] as const,\n queryFn: () => sdk['users']['apikeys']['list'](input),\n});\n\nexport const usersApikeysRevokeMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'apikeys', 'revoke'],\n mutationFn: (input: UsersApikeysRevokeInput) => sdk['users']['apikeys']['revoke'](input),\n});\n\nexport const usersAuditListQueryOptions = (sdk: GeneratedClient, input: UsersAuditListInput) => ({\n queryKey: ['users', 'audit', 'list', input] as const,\n queryFn: () => sdk['users']['audit']['list'](input),\n});\n\nexport const usersConfigGetQueryOptions = (sdk: GeneratedClient, input: UsersConfigGetInput) => ({\n queryKey: ['users', 'config', 'get', input] as const,\n queryFn: () => sdk['users']['config']['get'](input),\n});\n\nexport const usersConfigUpsertMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'config', 'upsert'],\n mutationFn: (input: UsersConfigUpsertInput) => sdk['users']['config']['upsert'](input),\n});\n\nexport const usersFactorsListQueryOptions = (sdk: GeneratedClient, input: UsersFactorsListInput) => ({\n queryKey: ['users', 'factors', 'list', input] as const,\n queryFn: () => sdk['users']['factors']['list'](input),\n});\n\nexport const usersFactorsResetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'factors', 'reset'],\n mutationFn: (input: UsersFactorsResetInput) => sdk['users']['factors']['reset'](input),\n});\n\nexport const usersKeysListQueryOptions = (sdk: GeneratedClient, input: UsersKeysListInput) => ({\n queryKey: ['users', 'keys', 'list', input] as const,\n queryFn: () => sdk['users']['keys']['list'](input),\n});\n\nexport const usersKeysRevokeMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'keys', 'revoke'],\n mutationFn: (input: UsersKeysRevokeInput) => sdk['users']['keys']['revoke'](input),\n});\n\nexport const usersKeysRotateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'keys', 'rotate'],\n mutationFn: (input: UsersKeysRotateInput) => sdk['users']['keys']['rotate'](input),\n});\n\nexport const usersOpsRetentionGetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'ops-retention', 'get'],\n mutationFn: (input: UsersOpsRetentionGetInput) => sdk['users']['ops-retention']['get'](input),\n});\n\nexport const usersOpsSloGetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'ops-slo', 'get'],\n mutationFn: (input: UsersOpsSloGetInput) => sdk['users']['ops-slo']['get'](input),\n});\n\nexport const usersSessionsGetQueryOptions = (sdk: GeneratedClient, input: UsersSessionsGetInput) => ({\n queryKey: ['users', 'sessions', 'get', input] as const,\n queryFn: () => sdk['users']['sessions']['get'](input),\n});\n\nexport const usersSessionsImpersonateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'sessions', 'impersonate'],\n mutationFn: (input: UsersSessionsImpersonateInput) => sdk['users']['sessions']['impersonate'](input),\n});\n\nexport const usersSessionsListQueryOptions = (sdk: GeneratedClient, input: UsersSessionsListInput) => ({\n queryKey: ['users', 'sessions', 'list', input] as const,\n queryFn: () => sdk['users']['sessions']['list'](input),\n});\n\nexport const usersSessionsRevokeMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'sessions', 'revoke'],\n mutationFn: (input: UsersSessionsRevokeInput) => sdk['users']['sessions']['revoke'](input),\n});\n\nexport const usersStatsGetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'stats', 'get'],\n mutationFn: (input: UsersStatsGetInput) => sdk['users']['stats']['get'](input),\n});\n\nexport const usersUsersBanMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'users', 'ban'],\n mutationFn: (input: UsersUsersBanInput) => sdk['users']['users']['ban'](input),\n});\n\nexport const usersUsersCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'users', 'create'],\n mutationFn: (input: UsersUsersCreateInput) => sdk['users']['users']['create'](input),\n});\n\nexport const usersUsersDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'users', 'delete'],\n mutationFn: (input: UsersUsersDeleteInput) => sdk['users']['users']['delete'](input),\n});\n\nexport const usersUsersEraseMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'users', 'erase'],\n mutationFn: (input: UsersUsersEraseInput) => sdk['users']['users']['erase'](input),\n});\n\nexport const usersUsersExportMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'users', 'export'],\n mutationFn: (input: UsersUsersExportInput) => sdk['users']['users']['export'](input),\n});\n\nexport const usersUsersGetQueryOptions = (sdk: GeneratedClient, input: UsersUsersGetInput) => ({\n queryKey: ['users', 'users', 'get', input] as const,\n queryFn: () => sdk['users']['users']['get'](input),\n});\n\nexport const usersUsersImportMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'users', 'import'],\n mutationFn: (input: UsersUsersImportInput) => sdk['users']['users']['import'](input),\n});\n\nexport const usersUsersInviteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'users', 'invite'],\n mutationFn: (input: UsersUsersInviteInput) => sdk['users']['users']['invite'](input),\n});\n\nexport const usersUsersListQueryOptions = (sdk: GeneratedClient, input: UsersUsersListInput) => ({\n queryKey: ['users', 'users', 'list', input] as const,\n queryFn: () => sdk['users']['users']['list'](input),\n});\n\nexport const usersUsersSetPrimaryIdentifierMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'users-set-primary', 'identifier'],\n mutationFn: (input: UsersUsersSetPrimaryIdentifierInput) => sdk['users']['users-set-primary']['identifier'](input),\n});\n\nexport const usersUsersUnbanMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'users', 'unban'],\n mutationFn: (input: UsersUsersUnbanInput) => sdk['users']['users']['unban'](input),\n});\n\nexport const usersUsersUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'users', 'update'],\n mutationFn: (input: UsersUsersUpdateInput) => sdk['users']['users']['update'](input),\n});\n\nexport const usersWaitlistEraseMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'waitlist', 'erase'],\n mutationFn: (input: UsersWaitlistEraseInput) => sdk['users']['waitlist']['erase'](input),\n});\n\nexport const usersWaitlistFunnelMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'waitlist', 'funnel'],\n mutationFn: (input: UsersWaitlistFunnelInput) => sdk['users']['waitlist']['funnel'](input),\n});\n\nexport const usersWaitlistImportMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'waitlist', 'import'],\n mutationFn: (input: UsersWaitlistImportInput) => sdk['users']['waitlist']['import'](input),\n});\n\nexport const usersWaitlistInviteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'waitlist', 'invite'],\n mutationFn: (input: UsersWaitlistInviteInput) => sdk['users']['waitlist']['invite'](input),\n});\n\nexport const usersWaitlistListMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'waitlist', 'list'],\n mutationFn: (input: UsersWaitlistListInput) => sdk['users']['waitlist']['list'](input),\n});\n\nexport const usersWebhooksCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'webhooks', 'create'],\n mutationFn: (input: UsersWebhooksCreateInput) => sdk['users']['webhooks']['create'](input),\n});\n\nexport const usersWebhooksDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'webhooks', 'delete'],\n mutationFn: (input: UsersWebhooksDeleteInput) => sdk['users']['webhooks']['delete'](input),\n});\n\nexport const usersWebhooksDeliveriesListQueryOptions = (sdk: GeneratedClient, input: UsersWebhooksDeliveriesListInput) => ({\n queryKey: ['users', 'webhooks-deliveries', 'list', input] as const,\n queryFn: () => sdk['users']['webhooks-deliveries']['list'](input),\n});\n\nexport const usersWebhooksGetQueryOptions = (sdk: GeneratedClient, input: UsersWebhooksGetInput) => ({\n queryKey: ['users', 'webhooks', 'get', input] as const,\n queryFn: () => sdk['users']['webhooks']['get'](input),\n});\n\nexport const usersWebhooksListQueryOptions = (sdk: GeneratedClient, input: UsersWebhooksListInput) => ({\n queryKey: ['users', 'webhooks', 'list', input] as const,\n queryFn: () => sdk['users']['webhooks']['list'](input),\n});\n\nexport const usersWebhooksRotateSecretMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'webhooks-rotate', 'secret'],\n mutationFn: (input: UsersWebhooksRotateSecretInput) => sdk['users']['webhooks-rotate']['secret'](input),\n});\n\nexport const usersWebhooksUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['users', 'webhooks', 'update'],\n mutationFn: (input: UsersWebhooksUpdateInput) => sdk['users']['webhooks']['update'](input),\n});\n"]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, li as WaitlistConfigGetInput, lj as WaitlistConfigGetOutput, lk as WaitlistConfigUpsertInput, ll as WaitlistConfigUpsertOutput, lm as WaitlistEmbedGetInput, ln as WaitlistEmbedGetOutput, lo as WaitlistInvitesSendInput, lp as WaitlistInvitesSendOutput, lq as WaitlistSignupsEraseInput, lr as WaitlistSignupsEraseOutput, ls as WaitlistSignupsFunnelInput, lt as WaitlistSignupsFunnelOutput, lu as WaitlistSignupsListInput, lv as WaitlistSignupsListOutput } from '../client.gen-C3-OM0XA.cjs';
|
|
2
2
|
|
|
3
3
|
declare const waitlistConfigGetQueryOptions: (sdk: GeneratedClient, input: WaitlistConfigGetInput) => {
|
|
4
4
|
queryKey: readonly ["waitlist", "config", "get", WaitlistConfigGetInput];
|
package/dist/waitlist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, li as WaitlistConfigGetInput, lj as WaitlistConfigGetOutput, lk as WaitlistConfigUpsertInput, ll as WaitlistConfigUpsertOutput, lm as WaitlistEmbedGetInput, ln as WaitlistEmbedGetOutput, lo as WaitlistInvitesSendInput, lp as WaitlistInvitesSendOutput, lq as WaitlistSignupsEraseInput, lr as WaitlistSignupsEraseOutput, ls as WaitlistSignupsFunnelInput, lt as WaitlistSignupsFunnelOutput, lu as WaitlistSignupsListInput, lv as WaitlistSignupsListOutput } from '../client.gen-C3-OM0XA.js';
|
|
2
2
|
|
|
3
3
|
declare const waitlistConfigGetQueryOptions: (sdk: GeneratedClient, input: WaitlistConfigGetInput) => {
|
|
4
4
|
queryKey: readonly ["waitlist", "config", "get", WaitlistConfigGetInput];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lessly/sdk-app",
|
|
3
|
-
"version": "17.
|
|
3
|
+
"version": "17.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"engines": {
|
|
@@ -80,11 +80,16 @@
|
|
|
80
80
|
"import": "./dist/tracking/index.js",
|
|
81
81
|
"require": "./dist/tracking/index.cjs"
|
|
82
82
|
},
|
|
83
|
+
"./users": {
|
|
84
|
+
"types": "./dist/users/index.d.ts",
|
|
85
|
+
"import": "./dist/users/index.js",
|
|
86
|
+
"require": "./dist/users/index.cjs"
|
|
87
|
+
},
|
|
83
88
|
"./waitlist": {
|
|
84
89
|
"types": "./dist/waitlist/index.d.ts",
|
|
85
90
|
"import": "./dist/waitlist/index.js",
|
|
86
91
|
"require": "./dist/waitlist/index.cjs"
|
|
87
92
|
}
|
|
88
93
|
},
|
|
89
|
-
"sdkContentHash": "sha256:
|
|
94
|
+
"sdkContentHash": "sha256:c6320520f96f1ca1c38eeeac4ce9db4d00ab9cdc344efb06e5bb57ab3deebe24"
|
|
90
95
|
}
|