@lessly/sdk-app 9.1.0 → 10.0.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.cjs +0 -10
- package/dist/brain/index.cjs.map +1 -1
- package/dist/brain/index.d.cts +2 -10
- package/dist/brain/index.d.ts +2 -10
- package/dist/brain/index.js +1 -9
- package/dist/brain/index.js.map +1 -1
- package/dist/{client.gen-LEUVRZRQ.d.cts → client.gen-XqieBmDz.d.cts} +1102 -223
- package/dist/{client.gen-LEUVRZRQ.d.ts → client.gen-XqieBmDz.d.ts} +1102 -223
- 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 +512 -40
- 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 +512 -40
- 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/playground/index.cjs +66 -0
- package/dist/playground/index.cjs.map +1 -0
- package/dist/playground/index.d.cts +52 -0
- package/dist/playground/index.d.ts +52 -0
- package/dist/playground/index.js +53 -0
- package/dist/playground/index.js.map +1 -0
- package/dist/realtime/index.cjs +126 -0
- package/dist/realtime/index.cjs.map +1 -0
- package/dist/realtime/index.d.cts +100 -0
- package/dist/realtime/index.d.ts +100 -0
- package/dist/realtime/index.js +101 -0
- package/dist/realtime/index.js.map +1 -0
- package/dist/tracking/index.d.cts +1 -1
- package/dist/tracking/index.d.ts +1 -1
- package/dist/waitlist/index.d.cts +1 -1
- package/dist/waitlist/index.d.ts +1 -1
- package/package.json +12 -2
- package/src/gen/bindings.gen.ts +512 -40
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +0 -14
- package/src/gen/client.gen.ts +146 -8
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/playground/index.ts +3 -0
- package/src/gen/playground/queryOptions.gen.ts +86 -0
- package/src/gen/realtime/index.ts +3 -0
- package/src/gen/realtime/queryOptions.gen.ts +158 -0
- package/src/gen/types.gen.ts +994 -106
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { G as GeneratedClient, h_ as RealtimeGrantCreateInput, h$ as RealtimeGrantCreateOutput, i0 as RealtimeGrantListInput, i1 as RealtimeGrantListOutput, i2 as RealtimeGrantRevokeInput, i3 as RealtimeGrantRevokeOutput, i4 as RealtimeHistoryGetInput, i5 as RealtimeHistoryGetOutput, i6 as RealtimeMessagesPublishInput, i7 as RealtimeMessagesPublishOutput, i8 as RealtimeNamespaceCreateInput, i9 as RealtimeNamespaceCreateOutput, ia as RealtimeNamespaceDeleteInput, ib as RealtimeNamespaceDeleteOutput, ic as RealtimeNamespaceGetInput, id as RealtimeNamespaceGetOutput, ie as RealtimeNamespaceListInput, ig as RealtimeNamespaceListOutput, ih as RealtimeNamespaceUpdateInput, ii as RealtimeNamespaceUpdateOutput, ij as RealtimePresenceEnterInput, ik as RealtimePresenceEnterOutput, il as RealtimePresenceGetInput, im as RealtimePresenceGetOutput, io as RealtimePresenceLeaveInput, ip as RealtimePresenceLeaveOutput, iq as RealtimePresenceStatsInput, ir as RealtimePresenceStatsOutput, is as RealtimePresenceUpdateInput, it as RealtimePresenceUpdateOutput, iu as RealtimeStatusGetInput, iv as RealtimeStatusGetOutput, iw as RealtimeTokensCreateInput, ix as RealtimeTokensCreateOutput, iy as RealtimeWebhookCreateInput, iz as RealtimeWebhookCreateOutput, iA as RealtimeWebhookDeleteInput, iB as RealtimeWebhookDeleteOutput, iC as RealtimeWebhookDeliveriesListInput, iD as RealtimeWebhookDeliveriesListOutput, iE as RealtimeWebhookGetInput, iF as RealtimeWebhookGetOutput, iG as RealtimeWebhookListInput, iH as RealtimeWebhookListOutput, iI as RealtimeWebhookSecretRotateInput, iJ as RealtimeWebhookSecretRotateOutput, iK as RealtimeWebhookUpdateInput, iL as RealtimeWebhookUpdateOutput } from '../client.gen-XqieBmDz.cjs';
|
|
2
|
+
|
|
3
|
+
declare const realtimeGrantCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
4
|
+
mutationKey: string[];
|
|
5
|
+
mutationFn: (input: RealtimeGrantCreateInput) => Promise<RealtimeGrantCreateOutput>;
|
|
6
|
+
};
|
|
7
|
+
declare const realtimeGrantListQueryOptions: (sdk: GeneratedClient, input: RealtimeGrantListInput) => {
|
|
8
|
+
queryKey: readonly ["realtime", "grant", "list", RealtimeGrantListInput];
|
|
9
|
+
queryFn: () => Promise<RealtimeGrantListOutput>;
|
|
10
|
+
};
|
|
11
|
+
declare const realtimeGrantRevokeMutationOptions: (sdk: GeneratedClient) => {
|
|
12
|
+
mutationKey: string[];
|
|
13
|
+
mutationFn: (input: RealtimeGrantRevokeInput) => Promise<RealtimeGrantRevokeOutput>;
|
|
14
|
+
};
|
|
15
|
+
declare const realtimeHistoryGetQueryOptions: (sdk: GeneratedClient, input: RealtimeHistoryGetInput) => {
|
|
16
|
+
queryKey: readonly ["realtime", "history", "get", RealtimeHistoryGetInput];
|
|
17
|
+
queryFn: () => Promise<RealtimeHistoryGetOutput>;
|
|
18
|
+
};
|
|
19
|
+
declare const realtimeMessagesPublishMutationOptions: (sdk: GeneratedClient) => {
|
|
20
|
+
mutationKey: string[];
|
|
21
|
+
mutationFn: (input: RealtimeMessagesPublishInput) => Promise<RealtimeMessagesPublishOutput>;
|
|
22
|
+
};
|
|
23
|
+
declare const realtimeNamespaceCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
24
|
+
mutationKey: string[];
|
|
25
|
+
mutationFn: (input: RealtimeNamespaceCreateInput) => Promise<RealtimeNamespaceCreateOutput>;
|
|
26
|
+
};
|
|
27
|
+
declare const realtimeNamespaceDeleteMutationOptions: (sdk: GeneratedClient) => {
|
|
28
|
+
mutationKey: string[];
|
|
29
|
+
mutationFn: (input: RealtimeNamespaceDeleteInput) => Promise<RealtimeNamespaceDeleteOutput>;
|
|
30
|
+
};
|
|
31
|
+
declare const realtimeNamespaceGetQueryOptions: (sdk: GeneratedClient, input: RealtimeNamespaceGetInput) => {
|
|
32
|
+
queryKey: readonly ["realtime", "namespace", "get", RealtimeNamespaceGetInput];
|
|
33
|
+
queryFn: () => Promise<RealtimeNamespaceGetOutput>;
|
|
34
|
+
};
|
|
35
|
+
declare const realtimeNamespaceListQueryOptions: (sdk: GeneratedClient, input: RealtimeNamespaceListInput) => {
|
|
36
|
+
queryKey: readonly ["realtime", "namespace", "list", RealtimeNamespaceListInput];
|
|
37
|
+
queryFn: () => Promise<RealtimeNamespaceListOutput>;
|
|
38
|
+
};
|
|
39
|
+
declare const realtimeNamespaceUpdateMutationOptions: (sdk: GeneratedClient) => {
|
|
40
|
+
mutationKey: string[];
|
|
41
|
+
mutationFn: (input: RealtimeNamespaceUpdateInput) => Promise<RealtimeNamespaceUpdateOutput>;
|
|
42
|
+
};
|
|
43
|
+
declare const realtimePresenceEnterMutationOptions: (sdk: GeneratedClient) => {
|
|
44
|
+
mutationKey: string[];
|
|
45
|
+
mutationFn: (input: RealtimePresenceEnterInput) => Promise<RealtimePresenceEnterOutput>;
|
|
46
|
+
};
|
|
47
|
+
declare const realtimePresenceGetQueryOptions: (sdk: GeneratedClient, input: RealtimePresenceGetInput) => {
|
|
48
|
+
queryKey: readonly ["realtime", "presence", "get", RealtimePresenceGetInput];
|
|
49
|
+
queryFn: () => Promise<RealtimePresenceGetOutput>;
|
|
50
|
+
};
|
|
51
|
+
declare const realtimePresenceLeaveMutationOptions: (sdk: GeneratedClient) => {
|
|
52
|
+
mutationKey: string[];
|
|
53
|
+
mutationFn: (input: RealtimePresenceLeaveInput) => Promise<RealtimePresenceLeaveOutput>;
|
|
54
|
+
};
|
|
55
|
+
declare const realtimePresenceStatsQueryOptions: (sdk: GeneratedClient, input: RealtimePresenceStatsInput) => {
|
|
56
|
+
queryKey: readonly ["realtime", "presence", "stats", RealtimePresenceStatsInput];
|
|
57
|
+
queryFn: () => Promise<RealtimePresenceStatsOutput>;
|
|
58
|
+
};
|
|
59
|
+
declare const realtimePresenceUpdateMutationOptions: (sdk: GeneratedClient) => {
|
|
60
|
+
mutationKey: string[];
|
|
61
|
+
mutationFn: (input: RealtimePresenceUpdateInput) => Promise<RealtimePresenceUpdateOutput>;
|
|
62
|
+
};
|
|
63
|
+
declare const realtimeStatusGetQueryOptions: (sdk: GeneratedClient, input: RealtimeStatusGetInput) => {
|
|
64
|
+
queryKey: readonly ["realtime", "status", "get", RealtimeStatusGetInput];
|
|
65
|
+
queryFn: () => Promise<RealtimeStatusGetOutput>;
|
|
66
|
+
};
|
|
67
|
+
declare const realtimeTokensCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
68
|
+
mutationKey: string[];
|
|
69
|
+
mutationFn: (input: RealtimeTokensCreateInput) => Promise<RealtimeTokensCreateOutput>;
|
|
70
|
+
};
|
|
71
|
+
declare const realtimeWebhookCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
72
|
+
mutationKey: string[];
|
|
73
|
+
mutationFn: (input: RealtimeWebhookCreateInput) => Promise<RealtimeWebhookCreateOutput>;
|
|
74
|
+
};
|
|
75
|
+
declare const realtimeWebhookDeleteMutationOptions: (sdk: GeneratedClient) => {
|
|
76
|
+
mutationKey: string[];
|
|
77
|
+
mutationFn: (input: RealtimeWebhookDeleteInput) => Promise<RealtimeWebhookDeleteOutput>;
|
|
78
|
+
};
|
|
79
|
+
declare const realtimeWebhookDeliveriesListQueryOptions: (sdk: GeneratedClient, input: RealtimeWebhookDeliveriesListInput) => {
|
|
80
|
+
queryKey: readonly ["realtime", "webhook-deliveries", "list", RealtimeWebhookDeliveriesListInput];
|
|
81
|
+
queryFn: () => Promise<RealtimeWebhookDeliveriesListOutput>;
|
|
82
|
+
};
|
|
83
|
+
declare const realtimeWebhookGetQueryOptions: (sdk: GeneratedClient, input: RealtimeWebhookGetInput) => {
|
|
84
|
+
queryKey: readonly ["realtime", "webhook", "get", RealtimeWebhookGetInput];
|
|
85
|
+
queryFn: () => Promise<RealtimeWebhookGetOutput>;
|
|
86
|
+
};
|
|
87
|
+
declare const realtimeWebhookListQueryOptions: (sdk: GeneratedClient, input: RealtimeWebhookListInput) => {
|
|
88
|
+
queryKey: readonly ["realtime", "webhook", "list", RealtimeWebhookListInput];
|
|
89
|
+
queryFn: () => Promise<RealtimeWebhookListOutput>;
|
|
90
|
+
};
|
|
91
|
+
declare const realtimeWebhookSecretRotateMutationOptions: (sdk: GeneratedClient) => {
|
|
92
|
+
mutationKey: string[];
|
|
93
|
+
mutationFn: (input: RealtimeWebhookSecretRotateInput) => Promise<RealtimeWebhookSecretRotateOutput>;
|
|
94
|
+
};
|
|
95
|
+
declare const realtimeWebhookUpdateMutationOptions: (sdk: GeneratedClient) => {
|
|
96
|
+
mutationKey: string[];
|
|
97
|
+
mutationFn: (input: RealtimeWebhookUpdateInput) => Promise<RealtimeWebhookUpdateOutput>;
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
export { RealtimeGrantCreateInput, RealtimeGrantCreateOutput, RealtimeGrantListInput, RealtimeGrantListOutput, RealtimeGrantRevokeInput, RealtimeGrantRevokeOutput, RealtimeHistoryGetInput, RealtimeHistoryGetOutput, RealtimeMessagesPublishInput, RealtimeMessagesPublishOutput, RealtimeNamespaceCreateInput, RealtimeNamespaceCreateOutput, RealtimeNamespaceDeleteInput, RealtimeNamespaceDeleteOutput, RealtimeNamespaceGetInput, RealtimeNamespaceGetOutput, RealtimeNamespaceListInput, RealtimeNamespaceListOutput, RealtimeNamespaceUpdateInput, RealtimeNamespaceUpdateOutput, RealtimePresenceEnterInput, RealtimePresenceEnterOutput, RealtimePresenceGetInput, RealtimePresenceGetOutput, RealtimePresenceLeaveInput, RealtimePresenceLeaveOutput, RealtimePresenceStatsInput, RealtimePresenceStatsOutput, RealtimePresenceUpdateInput, RealtimePresenceUpdateOutput, RealtimeStatusGetInput, RealtimeStatusGetOutput, RealtimeTokensCreateInput, RealtimeTokensCreateOutput, RealtimeWebhookCreateInput, RealtimeWebhookCreateOutput, RealtimeWebhookDeleteInput, RealtimeWebhookDeleteOutput, RealtimeWebhookDeliveriesListInput, RealtimeWebhookDeliveriesListOutput, RealtimeWebhookGetInput, RealtimeWebhookGetOutput, RealtimeWebhookListInput, RealtimeWebhookListOutput, RealtimeWebhookSecretRotateInput, RealtimeWebhookSecretRotateOutput, RealtimeWebhookUpdateInput, RealtimeWebhookUpdateOutput, realtimeGrantCreateMutationOptions, realtimeGrantListQueryOptions, realtimeGrantRevokeMutationOptions, realtimeHistoryGetQueryOptions, realtimeMessagesPublishMutationOptions, realtimeNamespaceCreateMutationOptions, realtimeNamespaceDeleteMutationOptions, realtimeNamespaceGetQueryOptions, realtimeNamespaceListQueryOptions, realtimeNamespaceUpdateMutationOptions, realtimePresenceEnterMutationOptions, realtimePresenceGetQueryOptions, realtimePresenceLeaveMutationOptions, realtimePresenceStatsQueryOptions, realtimePresenceUpdateMutationOptions, realtimeStatusGetQueryOptions, realtimeTokensCreateMutationOptions, realtimeWebhookCreateMutationOptions, realtimeWebhookDeleteMutationOptions, realtimeWebhookDeliveriesListQueryOptions, realtimeWebhookGetQueryOptions, realtimeWebhookListQueryOptions, realtimeWebhookSecretRotateMutationOptions, realtimeWebhookUpdateMutationOptions };
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { G as GeneratedClient, h_ as RealtimeGrantCreateInput, h$ as RealtimeGrantCreateOutput, i0 as RealtimeGrantListInput, i1 as RealtimeGrantListOutput, i2 as RealtimeGrantRevokeInput, i3 as RealtimeGrantRevokeOutput, i4 as RealtimeHistoryGetInput, i5 as RealtimeHistoryGetOutput, i6 as RealtimeMessagesPublishInput, i7 as RealtimeMessagesPublishOutput, i8 as RealtimeNamespaceCreateInput, i9 as RealtimeNamespaceCreateOutput, ia as RealtimeNamespaceDeleteInput, ib as RealtimeNamespaceDeleteOutput, ic as RealtimeNamespaceGetInput, id as RealtimeNamespaceGetOutput, ie as RealtimeNamespaceListInput, ig as RealtimeNamespaceListOutput, ih as RealtimeNamespaceUpdateInput, ii as RealtimeNamespaceUpdateOutput, ij as RealtimePresenceEnterInput, ik as RealtimePresenceEnterOutput, il as RealtimePresenceGetInput, im as RealtimePresenceGetOutput, io as RealtimePresenceLeaveInput, ip as RealtimePresenceLeaveOutput, iq as RealtimePresenceStatsInput, ir as RealtimePresenceStatsOutput, is as RealtimePresenceUpdateInput, it as RealtimePresenceUpdateOutput, iu as RealtimeStatusGetInput, iv as RealtimeStatusGetOutput, iw as RealtimeTokensCreateInput, ix as RealtimeTokensCreateOutput, iy as RealtimeWebhookCreateInput, iz as RealtimeWebhookCreateOutput, iA as RealtimeWebhookDeleteInput, iB as RealtimeWebhookDeleteOutput, iC as RealtimeWebhookDeliveriesListInput, iD as RealtimeWebhookDeliveriesListOutput, iE as RealtimeWebhookGetInput, iF as RealtimeWebhookGetOutput, iG as RealtimeWebhookListInput, iH as RealtimeWebhookListOutput, iI as RealtimeWebhookSecretRotateInput, iJ as RealtimeWebhookSecretRotateOutput, iK as RealtimeWebhookUpdateInput, iL as RealtimeWebhookUpdateOutput } from '../client.gen-XqieBmDz.js';
|
|
2
|
+
|
|
3
|
+
declare const realtimeGrantCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
4
|
+
mutationKey: string[];
|
|
5
|
+
mutationFn: (input: RealtimeGrantCreateInput) => Promise<RealtimeGrantCreateOutput>;
|
|
6
|
+
};
|
|
7
|
+
declare const realtimeGrantListQueryOptions: (sdk: GeneratedClient, input: RealtimeGrantListInput) => {
|
|
8
|
+
queryKey: readonly ["realtime", "grant", "list", RealtimeGrantListInput];
|
|
9
|
+
queryFn: () => Promise<RealtimeGrantListOutput>;
|
|
10
|
+
};
|
|
11
|
+
declare const realtimeGrantRevokeMutationOptions: (sdk: GeneratedClient) => {
|
|
12
|
+
mutationKey: string[];
|
|
13
|
+
mutationFn: (input: RealtimeGrantRevokeInput) => Promise<RealtimeGrantRevokeOutput>;
|
|
14
|
+
};
|
|
15
|
+
declare const realtimeHistoryGetQueryOptions: (sdk: GeneratedClient, input: RealtimeHistoryGetInput) => {
|
|
16
|
+
queryKey: readonly ["realtime", "history", "get", RealtimeHistoryGetInput];
|
|
17
|
+
queryFn: () => Promise<RealtimeHistoryGetOutput>;
|
|
18
|
+
};
|
|
19
|
+
declare const realtimeMessagesPublishMutationOptions: (sdk: GeneratedClient) => {
|
|
20
|
+
mutationKey: string[];
|
|
21
|
+
mutationFn: (input: RealtimeMessagesPublishInput) => Promise<RealtimeMessagesPublishOutput>;
|
|
22
|
+
};
|
|
23
|
+
declare const realtimeNamespaceCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
24
|
+
mutationKey: string[];
|
|
25
|
+
mutationFn: (input: RealtimeNamespaceCreateInput) => Promise<RealtimeNamespaceCreateOutput>;
|
|
26
|
+
};
|
|
27
|
+
declare const realtimeNamespaceDeleteMutationOptions: (sdk: GeneratedClient) => {
|
|
28
|
+
mutationKey: string[];
|
|
29
|
+
mutationFn: (input: RealtimeNamespaceDeleteInput) => Promise<RealtimeNamespaceDeleteOutput>;
|
|
30
|
+
};
|
|
31
|
+
declare const realtimeNamespaceGetQueryOptions: (sdk: GeneratedClient, input: RealtimeNamespaceGetInput) => {
|
|
32
|
+
queryKey: readonly ["realtime", "namespace", "get", RealtimeNamespaceGetInput];
|
|
33
|
+
queryFn: () => Promise<RealtimeNamespaceGetOutput>;
|
|
34
|
+
};
|
|
35
|
+
declare const realtimeNamespaceListQueryOptions: (sdk: GeneratedClient, input: RealtimeNamespaceListInput) => {
|
|
36
|
+
queryKey: readonly ["realtime", "namespace", "list", RealtimeNamespaceListInput];
|
|
37
|
+
queryFn: () => Promise<RealtimeNamespaceListOutput>;
|
|
38
|
+
};
|
|
39
|
+
declare const realtimeNamespaceUpdateMutationOptions: (sdk: GeneratedClient) => {
|
|
40
|
+
mutationKey: string[];
|
|
41
|
+
mutationFn: (input: RealtimeNamespaceUpdateInput) => Promise<RealtimeNamespaceUpdateOutput>;
|
|
42
|
+
};
|
|
43
|
+
declare const realtimePresenceEnterMutationOptions: (sdk: GeneratedClient) => {
|
|
44
|
+
mutationKey: string[];
|
|
45
|
+
mutationFn: (input: RealtimePresenceEnterInput) => Promise<RealtimePresenceEnterOutput>;
|
|
46
|
+
};
|
|
47
|
+
declare const realtimePresenceGetQueryOptions: (sdk: GeneratedClient, input: RealtimePresenceGetInput) => {
|
|
48
|
+
queryKey: readonly ["realtime", "presence", "get", RealtimePresenceGetInput];
|
|
49
|
+
queryFn: () => Promise<RealtimePresenceGetOutput>;
|
|
50
|
+
};
|
|
51
|
+
declare const realtimePresenceLeaveMutationOptions: (sdk: GeneratedClient) => {
|
|
52
|
+
mutationKey: string[];
|
|
53
|
+
mutationFn: (input: RealtimePresenceLeaveInput) => Promise<RealtimePresenceLeaveOutput>;
|
|
54
|
+
};
|
|
55
|
+
declare const realtimePresenceStatsQueryOptions: (sdk: GeneratedClient, input: RealtimePresenceStatsInput) => {
|
|
56
|
+
queryKey: readonly ["realtime", "presence", "stats", RealtimePresenceStatsInput];
|
|
57
|
+
queryFn: () => Promise<RealtimePresenceStatsOutput>;
|
|
58
|
+
};
|
|
59
|
+
declare const realtimePresenceUpdateMutationOptions: (sdk: GeneratedClient) => {
|
|
60
|
+
mutationKey: string[];
|
|
61
|
+
mutationFn: (input: RealtimePresenceUpdateInput) => Promise<RealtimePresenceUpdateOutput>;
|
|
62
|
+
};
|
|
63
|
+
declare const realtimeStatusGetQueryOptions: (sdk: GeneratedClient, input: RealtimeStatusGetInput) => {
|
|
64
|
+
queryKey: readonly ["realtime", "status", "get", RealtimeStatusGetInput];
|
|
65
|
+
queryFn: () => Promise<RealtimeStatusGetOutput>;
|
|
66
|
+
};
|
|
67
|
+
declare const realtimeTokensCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
68
|
+
mutationKey: string[];
|
|
69
|
+
mutationFn: (input: RealtimeTokensCreateInput) => Promise<RealtimeTokensCreateOutput>;
|
|
70
|
+
};
|
|
71
|
+
declare const realtimeWebhookCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
72
|
+
mutationKey: string[];
|
|
73
|
+
mutationFn: (input: RealtimeWebhookCreateInput) => Promise<RealtimeWebhookCreateOutput>;
|
|
74
|
+
};
|
|
75
|
+
declare const realtimeWebhookDeleteMutationOptions: (sdk: GeneratedClient) => {
|
|
76
|
+
mutationKey: string[];
|
|
77
|
+
mutationFn: (input: RealtimeWebhookDeleteInput) => Promise<RealtimeWebhookDeleteOutput>;
|
|
78
|
+
};
|
|
79
|
+
declare const realtimeWebhookDeliveriesListQueryOptions: (sdk: GeneratedClient, input: RealtimeWebhookDeliveriesListInput) => {
|
|
80
|
+
queryKey: readonly ["realtime", "webhook-deliveries", "list", RealtimeWebhookDeliveriesListInput];
|
|
81
|
+
queryFn: () => Promise<RealtimeWebhookDeliveriesListOutput>;
|
|
82
|
+
};
|
|
83
|
+
declare const realtimeWebhookGetQueryOptions: (sdk: GeneratedClient, input: RealtimeWebhookGetInput) => {
|
|
84
|
+
queryKey: readonly ["realtime", "webhook", "get", RealtimeWebhookGetInput];
|
|
85
|
+
queryFn: () => Promise<RealtimeWebhookGetOutput>;
|
|
86
|
+
};
|
|
87
|
+
declare const realtimeWebhookListQueryOptions: (sdk: GeneratedClient, input: RealtimeWebhookListInput) => {
|
|
88
|
+
queryKey: readonly ["realtime", "webhook", "list", RealtimeWebhookListInput];
|
|
89
|
+
queryFn: () => Promise<RealtimeWebhookListOutput>;
|
|
90
|
+
};
|
|
91
|
+
declare const realtimeWebhookSecretRotateMutationOptions: (sdk: GeneratedClient) => {
|
|
92
|
+
mutationKey: string[];
|
|
93
|
+
mutationFn: (input: RealtimeWebhookSecretRotateInput) => Promise<RealtimeWebhookSecretRotateOutput>;
|
|
94
|
+
};
|
|
95
|
+
declare const realtimeWebhookUpdateMutationOptions: (sdk: GeneratedClient) => {
|
|
96
|
+
mutationKey: string[];
|
|
97
|
+
mutationFn: (input: RealtimeWebhookUpdateInput) => Promise<RealtimeWebhookUpdateOutput>;
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
export { RealtimeGrantCreateInput, RealtimeGrantCreateOutput, RealtimeGrantListInput, RealtimeGrantListOutput, RealtimeGrantRevokeInput, RealtimeGrantRevokeOutput, RealtimeHistoryGetInput, RealtimeHistoryGetOutput, RealtimeMessagesPublishInput, RealtimeMessagesPublishOutput, RealtimeNamespaceCreateInput, RealtimeNamespaceCreateOutput, RealtimeNamespaceDeleteInput, RealtimeNamespaceDeleteOutput, RealtimeNamespaceGetInput, RealtimeNamespaceGetOutput, RealtimeNamespaceListInput, RealtimeNamespaceListOutput, RealtimeNamespaceUpdateInput, RealtimeNamespaceUpdateOutput, RealtimePresenceEnterInput, RealtimePresenceEnterOutput, RealtimePresenceGetInput, RealtimePresenceGetOutput, RealtimePresenceLeaveInput, RealtimePresenceLeaveOutput, RealtimePresenceStatsInput, RealtimePresenceStatsOutput, RealtimePresenceUpdateInput, RealtimePresenceUpdateOutput, RealtimeStatusGetInput, RealtimeStatusGetOutput, RealtimeTokensCreateInput, RealtimeTokensCreateOutput, RealtimeWebhookCreateInput, RealtimeWebhookCreateOutput, RealtimeWebhookDeleteInput, RealtimeWebhookDeleteOutput, RealtimeWebhookDeliveriesListInput, RealtimeWebhookDeliveriesListOutput, RealtimeWebhookGetInput, RealtimeWebhookGetOutput, RealtimeWebhookListInput, RealtimeWebhookListOutput, RealtimeWebhookSecretRotateInput, RealtimeWebhookSecretRotateOutput, RealtimeWebhookUpdateInput, RealtimeWebhookUpdateOutput, realtimeGrantCreateMutationOptions, realtimeGrantListQueryOptions, realtimeGrantRevokeMutationOptions, realtimeHistoryGetQueryOptions, realtimeMessagesPublishMutationOptions, realtimeNamespaceCreateMutationOptions, realtimeNamespaceDeleteMutationOptions, realtimeNamespaceGetQueryOptions, realtimeNamespaceListQueryOptions, realtimeNamespaceUpdateMutationOptions, realtimePresenceEnterMutationOptions, realtimePresenceGetQueryOptions, realtimePresenceLeaveMutationOptions, realtimePresenceStatsQueryOptions, realtimePresenceUpdateMutationOptions, realtimeStatusGetQueryOptions, realtimeTokensCreateMutationOptions, realtimeWebhookCreateMutationOptions, realtimeWebhookDeleteMutationOptions, realtimeWebhookDeliveriesListQueryOptions, realtimeWebhookGetQueryOptions, realtimeWebhookListQueryOptions, realtimeWebhookSecretRotateMutationOptions, realtimeWebhookUpdateMutationOptions };
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
// src/gen/realtime/queryOptions.gen.ts
|
|
2
|
+
var realtimeGrantCreateMutationOptions = (sdk) => ({
|
|
3
|
+
mutationKey: ["realtime", "grant", "create"],
|
|
4
|
+
mutationFn: (input) => sdk["realtime"]["grant"]["create"](input)
|
|
5
|
+
});
|
|
6
|
+
var realtimeGrantListQueryOptions = (sdk, input) => ({
|
|
7
|
+
queryKey: ["realtime", "grant", "list", input],
|
|
8
|
+
queryFn: () => sdk["realtime"]["grant"]["list"](input)
|
|
9
|
+
});
|
|
10
|
+
var realtimeGrantRevokeMutationOptions = (sdk) => ({
|
|
11
|
+
mutationKey: ["realtime", "grant", "revoke"],
|
|
12
|
+
mutationFn: (input) => sdk["realtime"]["grant"]["revoke"](input)
|
|
13
|
+
});
|
|
14
|
+
var realtimeHistoryGetQueryOptions = (sdk, input) => ({
|
|
15
|
+
queryKey: ["realtime", "history", "get", input],
|
|
16
|
+
queryFn: () => sdk["realtime"]["history"]["get"](input)
|
|
17
|
+
});
|
|
18
|
+
var realtimeMessagesPublishMutationOptions = (sdk) => ({
|
|
19
|
+
mutationKey: ["realtime", "messages", "publish"],
|
|
20
|
+
mutationFn: (input) => sdk["realtime"]["messages"]["publish"](input)
|
|
21
|
+
});
|
|
22
|
+
var realtimeNamespaceCreateMutationOptions = (sdk) => ({
|
|
23
|
+
mutationKey: ["realtime", "namespace", "create"],
|
|
24
|
+
mutationFn: (input) => sdk["realtime"]["namespace"]["create"](input)
|
|
25
|
+
});
|
|
26
|
+
var realtimeNamespaceDeleteMutationOptions = (sdk) => ({
|
|
27
|
+
mutationKey: ["realtime", "namespace", "delete"],
|
|
28
|
+
mutationFn: (input) => sdk["realtime"]["namespace"]["delete"](input)
|
|
29
|
+
});
|
|
30
|
+
var realtimeNamespaceGetQueryOptions = (sdk, input) => ({
|
|
31
|
+
queryKey: ["realtime", "namespace", "get", input],
|
|
32
|
+
queryFn: () => sdk["realtime"]["namespace"]["get"](input)
|
|
33
|
+
});
|
|
34
|
+
var realtimeNamespaceListQueryOptions = (sdk, input) => ({
|
|
35
|
+
queryKey: ["realtime", "namespace", "list", input],
|
|
36
|
+
queryFn: () => sdk["realtime"]["namespace"]["list"](input)
|
|
37
|
+
});
|
|
38
|
+
var realtimeNamespaceUpdateMutationOptions = (sdk) => ({
|
|
39
|
+
mutationKey: ["realtime", "namespace", "update"],
|
|
40
|
+
mutationFn: (input) => sdk["realtime"]["namespace"]["update"](input)
|
|
41
|
+
});
|
|
42
|
+
var realtimePresenceEnterMutationOptions = (sdk) => ({
|
|
43
|
+
mutationKey: ["realtime", "presence", "enter"],
|
|
44
|
+
mutationFn: (input) => sdk["realtime"]["presence"]["enter"](input)
|
|
45
|
+
});
|
|
46
|
+
var realtimePresenceGetQueryOptions = (sdk, input) => ({
|
|
47
|
+
queryKey: ["realtime", "presence", "get", input],
|
|
48
|
+
queryFn: () => sdk["realtime"]["presence"]["get"](input)
|
|
49
|
+
});
|
|
50
|
+
var realtimePresenceLeaveMutationOptions = (sdk) => ({
|
|
51
|
+
mutationKey: ["realtime", "presence", "leave"],
|
|
52
|
+
mutationFn: (input) => sdk["realtime"]["presence"]["leave"](input)
|
|
53
|
+
});
|
|
54
|
+
var realtimePresenceStatsQueryOptions = (sdk, input) => ({
|
|
55
|
+
queryKey: ["realtime", "presence", "stats", input],
|
|
56
|
+
queryFn: () => sdk["realtime"]["presence"]["stats"](input)
|
|
57
|
+
});
|
|
58
|
+
var realtimePresenceUpdateMutationOptions = (sdk) => ({
|
|
59
|
+
mutationKey: ["realtime", "presence", "update"],
|
|
60
|
+
mutationFn: (input) => sdk["realtime"]["presence"]["update"](input)
|
|
61
|
+
});
|
|
62
|
+
var realtimeStatusGetQueryOptions = (sdk, input) => ({
|
|
63
|
+
queryKey: ["realtime", "status", "get", input],
|
|
64
|
+
queryFn: () => sdk["realtime"]["status"]["get"](input)
|
|
65
|
+
});
|
|
66
|
+
var realtimeTokensCreateMutationOptions = (sdk) => ({
|
|
67
|
+
mutationKey: ["realtime", "tokens", "create"],
|
|
68
|
+
mutationFn: (input) => sdk["realtime"]["tokens"]["create"](input)
|
|
69
|
+
});
|
|
70
|
+
var realtimeWebhookCreateMutationOptions = (sdk) => ({
|
|
71
|
+
mutationKey: ["realtime", "webhook", "create"],
|
|
72
|
+
mutationFn: (input) => sdk["realtime"]["webhook"]["create"](input)
|
|
73
|
+
});
|
|
74
|
+
var realtimeWebhookDeleteMutationOptions = (sdk) => ({
|
|
75
|
+
mutationKey: ["realtime", "webhook", "delete"],
|
|
76
|
+
mutationFn: (input) => sdk["realtime"]["webhook"]["delete"](input)
|
|
77
|
+
});
|
|
78
|
+
var realtimeWebhookDeliveriesListQueryOptions = (sdk, input) => ({
|
|
79
|
+
queryKey: ["realtime", "webhook-deliveries", "list", input],
|
|
80
|
+
queryFn: () => sdk["realtime"]["webhook-deliveries"]["list"](input)
|
|
81
|
+
});
|
|
82
|
+
var realtimeWebhookGetQueryOptions = (sdk, input) => ({
|
|
83
|
+
queryKey: ["realtime", "webhook", "get", input],
|
|
84
|
+
queryFn: () => sdk["realtime"]["webhook"]["get"](input)
|
|
85
|
+
});
|
|
86
|
+
var realtimeWebhookListQueryOptions = (sdk, input) => ({
|
|
87
|
+
queryKey: ["realtime", "webhook", "list", input],
|
|
88
|
+
queryFn: () => sdk["realtime"]["webhook"]["list"](input)
|
|
89
|
+
});
|
|
90
|
+
var realtimeWebhookSecretRotateMutationOptions = (sdk) => ({
|
|
91
|
+
mutationKey: ["realtime", "webhook-secret", "rotate"],
|
|
92
|
+
mutationFn: (input) => sdk["realtime"]["webhook-secret"]["rotate"](input)
|
|
93
|
+
});
|
|
94
|
+
var realtimeWebhookUpdateMutationOptions = (sdk) => ({
|
|
95
|
+
mutationKey: ["realtime", "webhook", "update"],
|
|
96
|
+
mutationFn: (input) => sdk["realtime"]["webhook"]["update"](input)
|
|
97
|
+
});
|
|
98
|
+
|
|
99
|
+
export { realtimeGrantCreateMutationOptions, realtimeGrantListQueryOptions, realtimeGrantRevokeMutationOptions, realtimeHistoryGetQueryOptions, realtimeMessagesPublishMutationOptions, realtimeNamespaceCreateMutationOptions, realtimeNamespaceDeleteMutationOptions, realtimeNamespaceGetQueryOptions, realtimeNamespaceListQueryOptions, realtimeNamespaceUpdateMutationOptions, realtimePresenceEnterMutationOptions, realtimePresenceGetQueryOptions, realtimePresenceLeaveMutationOptions, realtimePresenceStatsQueryOptions, realtimePresenceUpdateMutationOptions, realtimeStatusGetQueryOptions, realtimeTokensCreateMutationOptions, realtimeWebhookCreateMutationOptions, realtimeWebhookDeleteMutationOptions, realtimeWebhookDeliveriesListQueryOptions, realtimeWebhookGetQueryOptions, realtimeWebhookListQueryOptions, realtimeWebhookSecretRotateMutationOptions, realtimeWebhookUpdateMutationOptions };
|
|
100
|
+
//# sourceMappingURL=index.js.map
|
|
101
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/gen/realtime/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 RealtimeGrantCreateInput,\n RealtimeGrantListInput,\n RealtimeGrantListOutput,\n RealtimeGrantRevokeInput,\n RealtimeHistoryGetInput,\n RealtimeHistoryGetOutput,\n RealtimeMessagesPublishInput,\n RealtimeNamespaceCreateInput,\n RealtimeNamespaceDeleteInput,\n RealtimeNamespaceGetInput,\n RealtimeNamespaceGetOutput,\n RealtimeNamespaceListInput,\n RealtimeNamespaceListOutput,\n RealtimeNamespaceUpdateInput,\n RealtimePresenceEnterInput,\n RealtimePresenceGetInput,\n RealtimePresenceGetOutput,\n RealtimePresenceLeaveInput,\n RealtimePresenceStatsInput,\n RealtimePresenceStatsOutput,\n RealtimePresenceUpdateInput,\n RealtimeStatusGetInput,\n RealtimeStatusGetOutput,\n RealtimeTokensCreateInput,\n RealtimeWebhookCreateInput,\n RealtimeWebhookDeleteInput,\n RealtimeWebhookDeliveriesListInput,\n RealtimeWebhookDeliveriesListOutput,\n RealtimeWebhookGetInput,\n RealtimeWebhookGetOutput,\n RealtimeWebhookListInput,\n RealtimeWebhookListOutput,\n RealtimeWebhookSecretRotateInput,\n RealtimeWebhookUpdateInput,\n} from '../types.gen';\n\nexport const realtimeGrantCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'grant', 'create'],\n mutationFn: (input: RealtimeGrantCreateInput) => sdk['realtime']['grant']['create'](input),\n});\n\nexport const realtimeGrantListQueryOptions = (sdk: GeneratedClient, input: RealtimeGrantListInput) => ({\n queryKey: ['realtime', 'grant', 'list', input] as const,\n queryFn: () => sdk['realtime']['grant']['list'](input),\n});\n\nexport const realtimeGrantRevokeMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'grant', 'revoke'],\n mutationFn: (input: RealtimeGrantRevokeInput) => sdk['realtime']['grant']['revoke'](input),\n});\n\nexport const realtimeHistoryGetQueryOptions = (sdk: GeneratedClient, input: RealtimeHistoryGetInput) => ({\n queryKey: ['realtime', 'history', 'get', input] as const,\n queryFn: () => sdk['realtime']['history']['get'](input),\n});\n\nexport const realtimeMessagesPublishMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'messages', 'publish'],\n mutationFn: (input: RealtimeMessagesPublishInput) => sdk['realtime']['messages']['publish'](input),\n});\n\nexport const realtimeNamespaceCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'namespace', 'create'],\n mutationFn: (input: RealtimeNamespaceCreateInput) => sdk['realtime']['namespace']['create'](input),\n});\n\nexport const realtimeNamespaceDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'namespace', 'delete'],\n mutationFn: (input: RealtimeNamespaceDeleteInput) => sdk['realtime']['namespace']['delete'](input),\n});\n\nexport const realtimeNamespaceGetQueryOptions = (sdk: GeneratedClient, input: RealtimeNamespaceGetInput) => ({\n queryKey: ['realtime', 'namespace', 'get', input] as const,\n queryFn: () => sdk['realtime']['namespace']['get'](input),\n});\n\nexport const realtimeNamespaceListQueryOptions = (sdk: GeneratedClient, input: RealtimeNamespaceListInput) => ({\n queryKey: ['realtime', 'namespace', 'list', input] as const,\n queryFn: () => sdk['realtime']['namespace']['list'](input),\n});\n\nexport const realtimeNamespaceUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'namespace', 'update'],\n mutationFn: (input: RealtimeNamespaceUpdateInput) => sdk['realtime']['namespace']['update'](input),\n});\n\nexport const realtimePresenceEnterMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'presence', 'enter'],\n mutationFn: (input: RealtimePresenceEnterInput) => sdk['realtime']['presence']['enter'](input),\n});\n\nexport const realtimePresenceGetQueryOptions = (sdk: GeneratedClient, input: RealtimePresenceGetInput) => ({\n queryKey: ['realtime', 'presence', 'get', input] as const,\n queryFn: () => sdk['realtime']['presence']['get'](input),\n});\n\nexport const realtimePresenceLeaveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'presence', 'leave'],\n mutationFn: (input: RealtimePresenceLeaveInput) => sdk['realtime']['presence']['leave'](input),\n});\n\nexport const realtimePresenceStatsQueryOptions = (sdk: GeneratedClient, input: RealtimePresenceStatsInput) => ({\n queryKey: ['realtime', 'presence', 'stats', input] as const,\n queryFn: () => sdk['realtime']['presence']['stats'](input),\n});\n\nexport const realtimePresenceUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'presence', 'update'],\n mutationFn: (input: RealtimePresenceUpdateInput) => sdk['realtime']['presence']['update'](input),\n});\n\nexport const realtimeStatusGetQueryOptions = (sdk: GeneratedClient, input: RealtimeStatusGetInput) => ({\n queryKey: ['realtime', 'status', 'get', input] as const,\n queryFn: () => sdk['realtime']['status']['get'](input),\n});\n\nexport const realtimeTokensCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'tokens', 'create'],\n mutationFn: (input: RealtimeTokensCreateInput) => sdk['realtime']['tokens']['create'](input),\n});\n\nexport const realtimeWebhookCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'webhook', 'create'],\n mutationFn: (input: RealtimeWebhookCreateInput) => sdk['realtime']['webhook']['create'](input),\n});\n\nexport const realtimeWebhookDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'webhook', 'delete'],\n mutationFn: (input: RealtimeWebhookDeleteInput) => sdk['realtime']['webhook']['delete'](input),\n});\n\nexport const realtimeWebhookDeliveriesListQueryOptions = (sdk: GeneratedClient, input: RealtimeWebhookDeliveriesListInput) => ({\n queryKey: ['realtime', 'webhook-deliveries', 'list', input] as const,\n queryFn: () => sdk['realtime']['webhook-deliveries']['list'](input),\n});\n\nexport const realtimeWebhookGetQueryOptions = (sdk: GeneratedClient, input: RealtimeWebhookGetInput) => ({\n queryKey: ['realtime', 'webhook', 'get', input] as const,\n queryFn: () => sdk['realtime']['webhook']['get'](input),\n});\n\nexport const realtimeWebhookListQueryOptions = (sdk: GeneratedClient, input: RealtimeWebhookListInput) => ({\n queryKey: ['realtime', 'webhook', 'list', input] as const,\n queryFn: () => sdk['realtime']['webhook']['list'](input),\n});\n\nexport const realtimeWebhookSecretRotateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'webhook-secret', 'rotate'],\n mutationFn: (input: RealtimeWebhookSecretRotateInput) => sdk['realtime']['webhook-secret']['rotate'](input),\n});\n\nexport const realtimeWebhookUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'webhook', 'update'],\n mutationFn: (input: RealtimeWebhookUpdateInput) => sdk['realtime']['webhook']['update'](input),\n});\n"]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, iM as TrackingApiKeysCreateInput, iN as TrackingApiKeysCreateOutput, iO as TrackingApiKeysListInput, iP as TrackingApiKeysListOutput, iQ as TrackingApiKeysRevokeInput, iR as TrackingApiKeysRevokeOutput, iS as TrackingApiKeysRotateInput, iT as TrackingApiKeysRotateOutput, iU as TrackingDomainsCreateInput, iV as TrackingDomainsCreateOutput, iW as TrackingDomainsDeleteInput, iX as TrackingDomainsDeleteOutput, iY as TrackingDomainsGetInput, iZ as TrackingDomainsGetOutput, i_ as TrackingDomainsListInput, i$ as TrackingDomainsListOutput, j0 as TrackingDomainsVerifyInput, j1 as TrackingDomainsVerifyOutput, j2 as TrackingEventNamesArchiveInput, j3 as TrackingEventNamesArchiveOutput, j4 as TrackingEventNamesListInput, j5 as TrackingEventNamesListOutput, j6 as TrackingEventNamesUnarchiveInput, j7 as TrackingEventNamesUnarchiveOutput, j8 as TrackingGoogleadsConnectionStatusInput, j9 as TrackingGoogleadsConnectionStatusOutput, ja as TrackingGoogleadsConversionActionsInput, jb as TrackingGoogleadsConversionActionsOutput, jc as TrackingGoogleadsFeedbackConfigGetInput, jd as TrackingGoogleadsFeedbackConfigGetOutput, je as TrackingGoogleadsFeedbackConfigSetInput, jf as TrackingGoogleadsFeedbackConfigSetOutput, jg as TrackingGoogleadsFeedbackRunInput, jh as TrackingGoogleadsFeedbackRunOutput, ji as TrackingGoogleadsFeedbackStatusInput, jj as TrackingGoogleadsFeedbackStatusOutput, jk as TrackingGoogleadsFeedbackUploadsInput, jl as TrackingGoogleadsFeedbackUploadsOutput, jm as TrackingGoogleadsRoasReportInput, jn as TrackingGoogleadsRoasReportOutput, jo as TrackingGoogleadsSyncNowInput, jp as TrackingGoogleadsSyncNowOutput, jq as TrackingGoogleadsTrackingHealthInput, jr as TrackingGoogleadsTrackingHealthOutput, js as TrackingGoogleadsUsVsPlatformInput, jt as TrackingGoogleadsUsVsPlatformOutput, ju as TrackingIdentityHealthInput, jv as TrackingIdentityHealthOutput, jw as TrackingInstallDomainsCreateInput, jx as TrackingInstallDomainsCreateOutput, jy as TrackingInstallDomainsDeleteInput, jz as TrackingInstallDomainsDeleteOutput, jA as TrackingInstallDomainsListInput, jB as TrackingInstallDomainsListOutput, jC as TrackingLinkDomainsCreateInput, jD as TrackingLinkDomainsCreateOutput, jE as TrackingLinkDomainsDeleteInput, jF as TrackingLinkDomainsDeleteOutput, jG as TrackingLinkDomainsListInput, jH as TrackingLinkDomainsListOutput, jI as TrackingLiveEventsListInput, jJ as TrackingLiveEventsListOutput, jK as TrackingProfilesDeleteInput, jL as TrackingProfilesDeleteOutput, jM as TrackingProfilesExportInput, jN as TrackingProfilesExportOutput, jO as TrackingProfilesGetInput, jP as TrackingProfilesGetOutput, jQ as TrackingProfilesListInput, jR as TrackingProfilesListOutput, jS as TrackingReportsAttributedJourneyInput, jT as TrackingReportsAttributedJourneyOutput, jU as TrackingReportsRevenueBySourceInput, jV as TrackingReportsRevenueBySourceOutput, jW as TrackingReportsSourcePeopleInput, jX as TrackingReportsSourcePeopleOutput, jY as TrackingSnippetsGetInput, jZ as TrackingSnippetsGetOutput } from '../client.gen-XqieBmDz.cjs';
|
|
2
2
|
|
|
3
3
|
declare const trackingApiKeysCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
4
4
|
mutationKey: string[];
|
package/dist/tracking/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, iM as TrackingApiKeysCreateInput, iN as TrackingApiKeysCreateOutput, iO as TrackingApiKeysListInput, iP as TrackingApiKeysListOutput, iQ as TrackingApiKeysRevokeInput, iR as TrackingApiKeysRevokeOutput, iS as TrackingApiKeysRotateInput, iT as TrackingApiKeysRotateOutput, iU as TrackingDomainsCreateInput, iV as TrackingDomainsCreateOutput, iW as TrackingDomainsDeleteInput, iX as TrackingDomainsDeleteOutput, iY as TrackingDomainsGetInput, iZ as TrackingDomainsGetOutput, i_ as TrackingDomainsListInput, i$ as TrackingDomainsListOutput, j0 as TrackingDomainsVerifyInput, j1 as TrackingDomainsVerifyOutput, j2 as TrackingEventNamesArchiveInput, j3 as TrackingEventNamesArchiveOutput, j4 as TrackingEventNamesListInput, j5 as TrackingEventNamesListOutput, j6 as TrackingEventNamesUnarchiveInput, j7 as TrackingEventNamesUnarchiveOutput, j8 as TrackingGoogleadsConnectionStatusInput, j9 as TrackingGoogleadsConnectionStatusOutput, ja as TrackingGoogleadsConversionActionsInput, jb as TrackingGoogleadsConversionActionsOutput, jc as TrackingGoogleadsFeedbackConfigGetInput, jd as TrackingGoogleadsFeedbackConfigGetOutput, je as TrackingGoogleadsFeedbackConfigSetInput, jf as TrackingGoogleadsFeedbackConfigSetOutput, jg as TrackingGoogleadsFeedbackRunInput, jh as TrackingGoogleadsFeedbackRunOutput, ji as TrackingGoogleadsFeedbackStatusInput, jj as TrackingGoogleadsFeedbackStatusOutput, jk as TrackingGoogleadsFeedbackUploadsInput, jl as TrackingGoogleadsFeedbackUploadsOutput, jm as TrackingGoogleadsRoasReportInput, jn as TrackingGoogleadsRoasReportOutput, jo as TrackingGoogleadsSyncNowInput, jp as TrackingGoogleadsSyncNowOutput, jq as TrackingGoogleadsTrackingHealthInput, jr as TrackingGoogleadsTrackingHealthOutput, js as TrackingGoogleadsUsVsPlatformInput, jt as TrackingGoogleadsUsVsPlatformOutput, ju as TrackingIdentityHealthInput, jv as TrackingIdentityHealthOutput, jw as TrackingInstallDomainsCreateInput, jx as TrackingInstallDomainsCreateOutput, jy as TrackingInstallDomainsDeleteInput, jz as TrackingInstallDomainsDeleteOutput, jA as TrackingInstallDomainsListInput, jB as TrackingInstallDomainsListOutput, jC as TrackingLinkDomainsCreateInput, jD as TrackingLinkDomainsCreateOutput, jE as TrackingLinkDomainsDeleteInput, jF as TrackingLinkDomainsDeleteOutput, jG as TrackingLinkDomainsListInput, jH as TrackingLinkDomainsListOutput, jI as TrackingLiveEventsListInput, jJ as TrackingLiveEventsListOutput, jK as TrackingProfilesDeleteInput, jL as TrackingProfilesDeleteOutput, jM as TrackingProfilesExportInput, jN as TrackingProfilesExportOutput, jO as TrackingProfilesGetInput, jP as TrackingProfilesGetOutput, jQ as TrackingProfilesListInput, jR as TrackingProfilesListOutput, jS as TrackingReportsAttributedJourneyInput, jT as TrackingReportsAttributedJourneyOutput, jU as TrackingReportsRevenueBySourceInput, jV as TrackingReportsRevenueBySourceOutput, jW as TrackingReportsSourcePeopleInput, jX as TrackingReportsSourcePeopleOutput, jY as TrackingSnippetsGetInput, jZ as TrackingSnippetsGetOutput } from '../client.gen-XqieBmDz.js';
|
|
2
2
|
|
|
3
3
|
declare const trackingApiKeysCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
4
4
|
mutationKey: string[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, j_ as WaitlistConfigGetInput, j$ as WaitlistConfigGetOutput, k0 as WaitlistConfigUpsertInput, k1 as WaitlistConfigUpsertOutput, k2 as WaitlistEmbedGetInput, k3 as WaitlistEmbedGetOutput, k4 as WaitlistInvitesSendInput, k5 as WaitlistInvitesSendOutput, k6 as WaitlistSignupsEraseInput, k7 as WaitlistSignupsEraseOutput, k8 as WaitlistSignupsFunnelInput, k9 as WaitlistSignupsFunnelOutput, ka as WaitlistSignupsListInput, kb as WaitlistSignupsListOutput } from '../client.gen-XqieBmDz.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, j_ as WaitlistConfigGetInput, j$ as WaitlistConfigGetOutput, k0 as WaitlistConfigUpsertInput, k1 as WaitlistConfigUpsertOutput, k2 as WaitlistEmbedGetInput, k3 as WaitlistEmbedGetOutput, k4 as WaitlistInvitesSendInput, k5 as WaitlistInvitesSendOutput, k6 as WaitlistSignupsEraseInput, k7 as WaitlistSignupsEraseOutput, k8 as WaitlistSignupsFunnelInput, k9 as WaitlistSignupsFunnelOutput, ka as WaitlistSignupsListInput, kb as WaitlistSignupsListOutput } from '../client.gen-XqieBmDz.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": "
|
|
3
|
+
"version": "10.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"engines": {
|
|
@@ -69,6 +69,16 @@
|
|
|
69
69
|
"import": "./dist/organization/index.js",
|
|
70
70
|
"require": "./dist/organization/index.cjs"
|
|
71
71
|
},
|
|
72
|
+
"./playground": {
|
|
73
|
+
"types": "./dist/playground/index.d.ts",
|
|
74
|
+
"import": "./dist/playground/index.js",
|
|
75
|
+
"require": "./dist/playground/index.cjs"
|
|
76
|
+
},
|
|
77
|
+
"./realtime": {
|
|
78
|
+
"types": "./dist/realtime/index.d.ts",
|
|
79
|
+
"import": "./dist/realtime/index.js",
|
|
80
|
+
"require": "./dist/realtime/index.cjs"
|
|
81
|
+
},
|
|
72
82
|
"./tracking": {
|
|
73
83
|
"types": "./dist/tracking/index.d.ts",
|
|
74
84
|
"import": "./dist/tracking/index.js",
|
|
@@ -80,5 +90,5 @@
|
|
|
80
90
|
"require": "./dist/waitlist/index.cjs"
|
|
81
91
|
}
|
|
82
92
|
},
|
|
83
|
-
"sdkContentHash": "sha256:
|
|
93
|
+
"sdkContentHash": "sha256:261855c7f78b62bfdaba26935cf6571c6395dbc48df29bdb2d171c99004a646d"
|
|
84
94
|
}
|