@lessly/sdk-app 30.7.0 → 31.1.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 -5
- package/dist/brain/index.cjs.map +1 -1
- package/dist/brain/index.d.cts +2 -6
- package/dist/brain/index.d.ts +2 -6
- package/dist/brain/index.js +1 -5
- package/dist/brain/index.js.map +1 -1
- package/dist/{client.gen-p_iZK5OO.d.cts → client.gen-3v2tDsvG.d.cts} +1197 -204
- package/dist/{client.gen-p_iZK5OO.d.ts → client.gen-3v2tDsvG.d.ts} +1197 -204
- 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 +390 -13
- 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 +390 -13
- 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/observe/index.cjs +71 -0
- package/dist/observe/index.cjs.map +1 -0
- package/dist/observe/index.d.cts +56 -0
- package/dist/observe/index.d.ts +56 -0
- package/dist/observe/index.js +57 -0
- package/dist/observe/index.js.map +1 -0
- package/dist/organization/index.cjs +25 -0
- package/dist/organization/index.cjs.map +1 -1
- package/dist/organization/index.d.cts +22 -2
- package/dist/organization/index.d.ts +22 -2
- package/dist/organization/index.js +21 -1
- package/dist/organization/index.js.map +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.d.cts +1 -1
- package/dist/realtime/index.d.ts +1 -1
- package/dist/support/index.d.cts +1 -1
- package/dist/support/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.d.cts +1 -1
- package/dist/users/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 +390 -13
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +0 -7
- package/src/gen/client.gen.ts +120 -5
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/observe/index.ts +3 -0
- package/src/gen/observe/queryOptions.gen.ts +89 -0
- package/src/gen/organization/index.ts +1 -1
- package/src/gen/organization/queryOptions.gen.ts +32 -0
- package/src/gen/playground/index.ts +3 -0
- package/src/gen/playground/queryOptions.gen.ts +86 -0
- package/src/gen/types.gen.ts +1198 -195
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { G as GeneratedClient, iC as PlaygroundAnalyticsOverviewInput, iD as PlaygroundAnalyticsOverviewOutput, iE as PlaygroundBillingEntitlementsInput, iF as PlaygroundBillingEntitlementsOutput, iG as PlaygroundBillingRecordUsageInput, iH as PlaygroundBillingRecordUsageOutput, iI as PlaygroundClickupCreateTaskInput, iJ as PlaygroundClickupCreateTaskOutput, iK as PlaygroundClickupGetLastWebhookInput, iL as PlaygroundClickupGetLastWebhookOutput, iM as PlaygroundClickupGetOverviewInput, iN as PlaygroundClickupGetOverviewOutput, iO as PlaygroundGdriveGetLastChangeInput, iP as PlaygroundGdriveGetLastChangeOutput, iQ as PlaygroundGdriveReadFileInput, iR as PlaygroundGdriveReadFileOutput, iS as PlaygroundGoogleadsReadCustomerInput, iT as PlaygroundGoogleadsReadCustomerOutput, iU as PlaygroundLifecycleGetStateInput, iV as PlaygroundLifecycleGetStateOutput, iW as PlaygroundLifecycleListEventsInput, iX as PlaygroundLifecycleListEventsOutput, iY as PlaygroundWebhookGetLastInput, iZ as PlaygroundWebhookGetLastOutput } from '../client.gen-3v2tDsvG.js';
|
|
2
|
+
|
|
3
|
+
declare const playgroundAnalyticsOverviewQueryOptions: (sdk: GeneratedClient, input: PlaygroundAnalyticsOverviewInput) => {
|
|
4
|
+
queryKey: readonly ["playground", "analytics", "overview", PlaygroundAnalyticsOverviewInput];
|
|
5
|
+
queryFn: () => Promise<PlaygroundAnalyticsOverviewOutput>;
|
|
6
|
+
};
|
|
7
|
+
declare const playgroundBillingEntitlementsQueryOptions: (sdk: GeneratedClient, input: PlaygroundBillingEntitlementsInput) => {
|
|
8
|
+
queryKey: readonly ["playground", "billing", "entitlements", PlaygroundBillingEntitlementsInput];
|
|
9
|
+
queryFn: () => Promise<PlaygroundBillingEntitlementsOutput>;
|
|
10
|
+
};
|
|
11
|
+
declare const playgroundBillingRecordUsageMutationOptions: (sdk: GeneratedClient) => {
|
|
12
|
+
mutationKey: string[];
|
|
13
|
+
mutationFn: (input: PlaygroundBillingRecordUsageInput) => Promise<PlaygroundBillingRecordUsageOutput>;
|
|
14
|
+
};
|
|
15
|
+
declare const playgroundClickupCreateTaskMutationOptions: (sdk: GeneratedClient) => {
|
|
16
|
+
mutationKey: string[];
|
|
17
|
+
mutationFn: (input: PlaygroundClickupCreateTaskInput) => Promise<PlaygroundClickupCreateTaskOutput>;
|
|
18
|
+
};
|
|
19
|
+
declare const playgroundClickupGetLastWebhookQueryOptions: (sdk: GeneratedClient, input: PlaygroundClickupGetLastWebhookInput) => {
|
|
20
|
+
queryKey: readonly ["playground", "clickup", "get-last-webhook", PlaygroundClickupGetLastWebhookInput];
|
|
21
|
+
queryFn: () => Promise<PlaygroundClickupGetLastWebhookOutput>;
|
|
22
|
+
};
|
|
23
|
+
declare const playgroundClickupGetOverviewQueryOptions: (sdk: GeneratedClient, input: PlaygroundClickupGetOverviewInput) => {
|
|
24
|
+
queryKey: readonly ["playground", "clickup", "get-overview", PlaygroundClickupGetOverviewInput];
|
|
25
|
+
queryFn: () => Promise<PlaygroundClickupGetOverviewOutput>;
|
|
26
|
+
};
|
|
27
|
+
declare const playgroundGdriveGetLastChangeQueryOptions: (sdk: GeneratedClient, input: PlaygroundGdriveGetLastChangeInput) => {
|
|
28
|
+
queryKey: readonly ["playground", "gdrive", "get-last-change", PlaygroundGdriveGetLastChangeInput];
|
|
29
|
+
queryFn: () => Promise<PlaygroundGdriveGetLastChangeOutput>;
|
|
30
|
+
};
|
|
31
|
+
declare const playgroundGdriveReadFileQueryOptions: (sdk: GeneratedClient, input: PlaygroundGdriveReadFileInput) => {
|
|
32
|
+
queryKey: readonly ["playground", "gdrive", "read-file", PlaygroundGdriveReadFileInput];
|
|
33
|
+
queryFn: () => Promise<PlaygroundGdriveReadFileOutput>;
|
|
34
|
+
};
|
|
35
|
+
declare const playgroundGoogleadsReadCustomerQueryOptions: (sdk: GeneratedClient, input: PlaygroundGoogleadsReadCustomerInput) => {
|
|
36
|
+
queryKey: readonly ["playground", "googleads", "read-customer", PlaygroundGoogleadsReadCustomerInput];
|
|
37
|
+
queryFn: () => Promise<PlaygroundGoogleadsReadCustomerOutput>;
|
|
38
|
+
};
|
|
39
|
+
declare const playgroundLifecycleGetStateQueryOptions: (sdk: GeneratedClient, input: PlaygroundLifecycleGetStateInput) => {
|
|
40
|
+
queryKey: readonly ["playground", "lifecycle", "get-state", PlaygroundLifecycleGetStateInput];
|
|
41
|
+
queryFn: () => Promise<PlaygroundLifecycleGetStateOutput>;
|
|
42
|
+
};
|
|
43
|
+
declare const playgroundLifecycleListEventsQueryOptions: (sdk: GeneratedClient, input: PlaygroundLifecycleListEventsInput) => {
|
|
44
|
+
queryKey: readonly ["playground", "lifecycle", "list-events", PlaygroundLifecycleListEventsInput];
|
|
45
|
+
queryFn: () => Promise<PlaygroundLifecycleListEventsOutput>;
|
|
46
|
+
};
|
|
47
|
+
declare const playgroundWebhookGetLastQueryOptions: (sdk: GeneratedClient, input: PlaygroundWebhookGetLastInput) => {
|
|
48
|
+
queryKey: readonly ["playground", "webhook", "get-last", PlaygroundWebhookGetLastInput];
|
|
49
|
+
queryFn: () => Promise<PlaygroundWebhookGetLastOutput>;
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export { PlaygroundAnalyticsOverviewInput, PlaygroundAnalyticsOverviewOutput, PlaygroundBillingEntitlementsInput, PlaygroundBillingEntitlementsOutput, PlaygroundBillingRecordUsageInput, PlaygroundBillingRecordUsageOutput, PlaygroundClickupCreateTaskInput, PlaygroundClickupCreateTaskOutput, PlaygroundClickupGetLastWebhookInput, PlaygroundClickupGetLastWebhookOutput, PlaygroundClickupGetOverviewInput, PlaygroundClickupGetOverviewOutput, PlaygroundGdriveGetLastChangeInput, PlaygroundGdriveGetLastChangeOutput, PlaygroundGdriveReadFileInput, PlaygroundGdriveReadFileOutput, PlaygroundGoogleadsReadCustomerInput, PlaygroundGoogleadsReadCustomerOutput, PlaygroundLifecycleGetStateInput, PlaygroundLifecycleGetStateOutput, PlaygroundLifecycleListEventsInput, PlaygroundLifecycleListEventsOutput, PlaygroundWebhookGetLastInput, PlaygroundWebhookGetLastOutput, playgroundAnalyticsOverviewQueryOptions, playgroundBillingEntitlementsQueryOptions, playgroundBillingRecordUsageMutationOptions, playgroundClickupCreateTaskMutationOptions, playgroundClickupGetLastWebhookQueryOptions, playgroundClickupGetOverviewQueryOptions, playgroundGdriveGetLastChangeQueryOptions, playgroundGdriveReadFileQueryOptions, playgroundGoogleadsReadCustomerQueryOptions, playgroundLifecycleGetStateQueryOptions, playgroundLifecycleListEventsQueryOptions, playgroundWebhookGetLastQueryOptions };
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
// src/gen/playground/queryOptions.gen.ts
|
|
2
|
+
var playgroundAnalyticsOverviewQueryOptions = (sdk, input) => ({
|
|
3
|
+
queryKey: ["playground", "analytics", "overview", input],
|
|
4
|
+
queryFn: () => sdk["playground"]["analytics"]["overview"](input)
|
|
5
|
+
});
|
|
6
|
+
var playgroundBillingEntitlementsQueryOptions = (sdk, input) => ({
|
|
7
|
+
queryKey: ["playground", "billing", "entitlements", input],
|
|
8
|
+
queryFn: () => sdk["playground"]["billing"]["entitlements"](input)
|
|
9
|
+
});
|
|
10
|
+
var playgroundBillingRecordUsageMutationOptions = (sdk) => ({
|
|
11
|
+
mutationKey: ["playground", "billing", "record-usage"],
|
|
12
|
+
mutationFn: (input) => sdk["playground"]["billing"]["record-usage"](input)
|
|
13
|
+
});
|
|
14
|
+
var playgroundClickupCreateTaskMutationOptions = (sdk) => ({
|
|
15
|
+
mutationKey: ["playground", "clickup", "create-task"],
|
|
16
|
+
mutationFn: (input) => sdk["playground"]["clickup"]["create-task"](input)
|
|
17
|
+
});
|
|
18
|
+
var playgroundClickupGetLastWebhookQueryOptions = (sdk, input) => ({
|
|
19
|
+
queryKey: ["playground", "clickup", "get-last-webhook", input],
|
|
20
|
+
queryFn: () => sdk["playground"]["clickup"]["get-last-webhook"](input)
|
|
21
|
+
});
|
|
22
|
+
var playgroundClickupGetOverviewQueryOptions = (sdk, input) => ({
|
|
23
|
+
queryKey: ["playground", "clickup", "get-overview", input],
|
|
24
|
+
queryFn: () => sdk["playground"]["clickup"]["get-overview"](input)
|
|
25
|
+
});
|
|
26
|
+
var playgroundGdriveGetLastChangeQueryOptions = (sdk, input) => ({
|
|
27
|
+
queryKey: ["playground", "gdrive", "get-last-change", input],
|
|
28
|
+
queryFn: () => sdk["playground"]["gdrive"]["get-last-change"](input)
|
|
29
|
+
});
|
|
30
|
+
var playgroundGdriveReadFileQueryOptions = (sdk, input) => ({
|
|
31
|
+
queryKey: ["playground", "gdrive", "read-file", input],
|
|
32
|
+
queryFn: () => sdk["playground"]["gdrive"]["read-file"](input)
|
|
33
|
+
});
|
|
34
|
+
var playgroundGoogleadsReadCustomerQueryOptions = (sdk, input) => ({
|
|
35
|
+
queryKey: ["playground", "googleads", "read-customer", input],
|
|
36
|
+
queryFn: () => sdk["playground"]["googleads"]["read-customer"](input)
|
|
37
|
+
});
|
|
38
|
+
var playgroundLifecycleGetStateQueryOptions = (sdk, input) => ({
|
|
39
|
+
queryKey: ["playground", "lifecycle", "get-state", input],
|
|
40
|
+
queryFn: () => sdk["playground"]["lifecycle"]["get-state"](input)
|
|
41
|
+
});
|
|
42
|
+
var playgroundLifecycleListEventsQueryOptions = (sdk, input) => ({
|
|
43
|
+
queryKey: ["playground", "lifecycle", "list-events", input],
|
|
44
|
+
queryFn: () => sdk["playground"]["lifecycle"]["list-events"](input)
|
|
45
|
+
});
|
|
46
|
+
var playgroundWebhookGetLastQueryOptions = (sdk, input) => ({
|
|
47
|
+
queryKey: ["playground", "webhook", "get-last", input],
|
|
48
|
+
queryFn: () => sdk["playground"]["webhook"]["get-last"](input)
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
export { playgroundAnalyticsOverviewQueryOptions, playgroundBillingEntitlementsQueryOptions, playgroundBillingRecordUsageMutationOptions, playgroundClickupCreateTaskMutationOptions, playgroundClickupGetLastWebhookQueryOptions, playgroundClickupGetOverviewQueryOptions, playgroundGdriveGetLastChangeQueryOptions, playgroundGdriveReadFileQueryOptions, playgroundGoogleadsReadCustomerQueryOptions, playgroundLifecycleGetStateQueryOptions, playgroundLifecycleListEventsQueryOptions, playgroundWebhookGetLastQueryOptions };
|
|
52
|
+
//# sourceMappingURL=index.js.map
|
|
53
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/gen/playground/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 PlaygroundAnalyticsOverviewInput,\n PlaygroundAnalyticsOverviewOutput,\n PlaygroundBillingEntitlementsInput,\n PlaygroundBillingEntitlementsOutput,\n PlaygroundBillingRecordUsageInput,\n PlaygroundClickupCreateTaskInput,\n PlaygroundClickupGetLastWebhookInput,\n PlaygroundClickupGetLastWebhookOutput,\n PlaygroundClickupGetOverviewInput,\n PlaygroundClickupGetOverviewOutput,\n PlaygroundGdriveGetLastChangeInput,\n PlaygroundGdriveGetLastChangeOutput,\n PlaygroundGdriveReadFileInput,\n PlaygroundGdriveReadFileOutput,\n PlaygroundGoogleadsReadCustomerInput,\n PlaygroundGoogleadsReadCustomerOutput,\n PlaygroundLifecycleGetStateInput,\n PlaygroundLifecycleGetStateOutput,\n PlaygroundLifecycleListEventsInput,\n PlaygroundLifecycleListEventsOutput,\n PlaygroundWebhookGetLastInput,\n PlaygroundWebhookGetLastOutput,\n} from '../types.gen';\n\nexport const playgroundAnalyticsOverviewQueryOptions = (sdk: GeneratedClient, input: PlaygroundAnalyticsOverviewInput) => ({\n queryKey: ['playground', 'analytics', 'overview', input] as const,\n queryFn: () => sdk['playground']['analytics']['overview'](input),\n});\n\nexport const playgroundBillingEntitlementsQueryOptions = (sdk: GeneratedClient, input: PlaygroundBillingEntitlementsInput) => ({\n queryKey: ['playground', 'billing', 'entitlements', input] as const,\n queryFn: () => sdk['playground']['billing']['entitlements'](input),\n});\n\nexport const playgroundBillingRecordUsageMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['playground', 'billing', 'record-usage'],\n mutationFn: (input: PlaygroundBillingRecordUsageInput) => sdk['playground']['billing']['record-usage'](input),\n});\n\nexport const playgroundClickupCreateTaskMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['playground', 'clickup', 'create-task'],\n mutationFn: (input: PlaygroundClickupCreateTaskInput) => sdk['playground']['clickup']['create-task'](input),\n});\n\nexport const playgroundClickupGetLastWebhookQueryOptions = (sdk: GeneratedClient, input: PlaygroundClickupGetLastWebhookInput) => ({\n queryKey: ['playground', 'clickup', 'get-last-webhook', input] as const,\n queryFn: () => sdk['playground']['clickup']['get-last-webhook'](input),\n});\n\nexport const playgroundClickupGetOverviewQueryOptions = (sdk: GeneratedClient, input: PlaygroundClickupGetOverviewInput) => ({\n queryKey: ['playground', 'clickup', 'get-overview', input] as const,\n queryFn: () => sdk['playground']['clickup']['get-overview'](input),\n});\n\nexport const playgroundGdriveGetLastChangeQueryOptions = (sdk: GeneratedClient, input: PlaygroundGdriveGetLastChangeInput) => ({\n queryKey: ['playground', 'gdrive', 'get-last-change', input] as const,\n queryFn: () => sdk['playground']['gdrive']['get-last-change'](input),\n});\n\nexport const playgroundGdriveReadFileQueryOptions = (sdk: GeneratedClient, input: PlaygroundGdriveReadFileInput) => ({\n queryKey: ['playground', 'gdrive', 'read-file', input] as const,\n queryFn: () => sdk['playground']['gdrive']['read-file'](input),\n});\n\nexport const playgroundGoogleadsReadCustomerQueryOptions = (sdk: GeneratedClient, input: PlaygroundGoogleadsReadCustomerInput) => ({\n queryKey: ['playground', 'googleads', 'read-customer', input] as const,\n queryFn: () => sdk['playground']['googleads']['read-customer'](input),\n});\n\nexport const playgroundLifecycleGetStateQueryOptions = (sdk: GeneratedClient, input: PlaygroundLifecycleGetStateInput) => ({\n queryKey: ['playground', 'lifecycle', 'get-state', input] as const,\n queryFn: () => sdk['playground']['lifecycle']['get-state'](input),\n});\n\nexport const playgroundLifecycleListEventsQueryOptions = (sdk: GeneratedClient, input: PlaygroundLifecycleListEventsInput) => ({\n queryKey: ['playground', 'lifecycle', 'list-events', input] as const,\n queryFn: () => sdk['playground']['lifecycle']['list-events'](input),\n});\n\nexport const playgroundWebhookGetLastQueryOptions = (sdk: GeneratedClient, input: PlaygroundWebhookGetLastInput) => ({\n queryKey: ['playground', 'webhook', 'get-last', input] as const,\n queryFn: () => sdk['playground']['webhook']['get-last'](input),\n});\n"]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, i_ as RealtimeArchiveExportInput, i$ as RealtimeArchiveExportOutput, j0 as RealtimeArchiveExportStatusInput, j1 as RealtimeArchiveExportStatusOutput, j2 as RealtimeArchiveGetInput, j3 as RealtimeArchiveGetOutput, j4 as RealtimeGrantCreateInput, j5 as RealtimeGrantCreateOutput, j6 as RealtimeGrantListInput, j7 as RealtimeGrantListOutput, j8 as RealtimeGrantRevokeInput, j9 as RealtimeGrantRevokeOutput, ja as RealtimeHistoryGetInput, jb as RealtimeHistoryGetOutput, jc as RealtimeMessagesPublishInput, jd as RealtimeMessagesPublishOutput, je as RealtimeNamespaceCreateInput, jf as RealtimeNamespaceCreateOutput, jg as RealtimeNamespaceDeleteInput, jh as RealtimeNamespaceDeleteOutput, ji as RealtimeNamespaceGetInput, jj as RealtimeNamespaceGetOutput, jk as RealtimeNamespaceListInput, jl as RealtimeNamespaceListOutput, jm as RealtimeNamespaceUpdateInput, jn as RealtimeNamespaceUpdateOutput, jo as RealtimePresenceEnterInput, jp as RealtimePresenceEnterOutput, jq as RealtimePresenceGetInput, jr as RealtimePresenceGetOutput, js as RealtimePresenceLeaveInput, jt as RealtimePresenceLeaveOutput, ju as RealtimePresenceStatsInput, jv as RealtimePresenceStatsOutput, jw as RealtimePresenceUpdateInput, jx as RealtimePresenceUpdateOutput, jy as RealtimePublicAccessStatusInput, jz as RealtimePublicAccessStatusOutput, jA as RealtimeStatusGetInput, jB as RealtimeStatusGetOutput, jC as RealtimeTokensCreateInput, jD as RealtimeTokensCreateOutput, jE as RealtimeWebhookCreateInput, jF as RealtimeWebhookCreateOutput, jG as RealtimeWebhookDeleteInput, jH as RealtimeWebhookDeleteOutput, jI as RealtimeWebhookDeliveriesListInput, jJ as RealtimeWebhookDeliveriesListOutput, jK as RealtimeWebhookGetInput, jL as RealtimeWebhookGetOutput, jM as RealtimeWebhookListInput, jN as RealtimeWebhookListOutput, jO as RealtimeWebhookSecretRotateInput, jP as RealtimeWebhookSecretRotateOutput, jQ as RealtimeWebhookUpdateInput, jR as RealtimeWebhookUpdateOutput } from '../client.gen-3v2tDsvG.cjs';
|
|
2
2
|
|
|
3
3
|
declare const realtimeArchiveExportMutationOptions: (sdk: GeneratedClient) => {
|
|
4
4
|
mutationKey: string[];
|
package/dist/realtime/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, i_ as RealtimeArchiveExportInput, i$ as RealtimeArchiveExportOutput, j0 as RealtimeArchiveExportStatusInput, j1 as RealtimeArchiveExportStatusOutput, j2 as RealtimeArchiveGetInput, j3 as RealtimeArchiveGetOutput, j4 as RealtimeGrantCreateInput, j5 as RealtimeGrantCreateOutput, j6 as RealtimeGrantListInput, j7 as RealtimeGrantListOutput, j8 as RealtimeGrantRevokeInput, j9 as RealtimeGrantRevokeOutput, ja as RealtimeHistoryGetInput, jb as RealtimeHistoryGetOutput, jc as RealtimeMessagesPublishInput, jd as RealtimeMessagesPublishOutput, je as RealtimeNamespaceCreateInput, jf as RealtimeNamespaceCreateOutput, jg as RealtimeNamespaceDeleteInput, jh as RealtimeNamespaceDeleteOutput, ji as RealtimeNamespaceGetInput, jj as RealtimeNamespaceGetOutput, jk as RealtimeNamespaceListInput, jl as RealtimeNamespaceListOutput, jm as RealtimeNamespaceUpdateInput, jn as RealtimeNamespaceUpdateOutput, jo as RealtimePresenceEnterInput, jp as RealtimePresenceEnterOutput, jq as RealtimePresenceGetInput, jr as RealtimePresenceGetOutput, js as RealtimePresenceLeaveInput, jt as RealtimePresenceLeaveOutput, ju as RealtimePresenceStatsInput, jv as RealtimePresenceStatsOutput, jw as RealtimePresenceUpdateInput, jx as RealtimePresenceUpdateOutput, jy as RealtimePublicAccessStatusInput, jz as RealtimePublicAccessStatusOutput, jA as RealtimeStatusGetInput, jB as RealtimeStatusGetOutput, jC as RealtimeTokensCreateInput, jD as RealtimeTokensCreateOutput, jE as RealtimeWebhookCreateInput, jF as RealtimeWebhookCreateOutput, jG as RealtimeWebhookDeleteInput, jH as RealtimeWebhookDeleteOutput, jI as RealtimeWebhookDeliveriesListInput, jJ as RealtimeWebhookDeliveriesListOutput, jK as RealtimeWebhookGetInput, jL as RealtimeWebhookGetOutput, jM as RealtimeWebhookListInput, jN as RealtimeWebhookListOutput, jO as RealtimeWebhookSecretRotateInput, jP as RealtimeWebhookSecretRotateOutput, jQ as RealtimeWebhookUpdateInput, jR as RealtimeWebhookUpdateOutput } from '../client.gen-3v2tDsvG.js';
|
|
2
2
|
|
|
3
3
|
declare const realtimeArchiveExportMutationOptions: (sdk: GeneratedClient) => {
|
|
4
4
|
mutationKey: string[];
|
package/dist/support/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, jS as SupportAgentCreateInput, jT as SupportAgentCreateOutput, jU as SupportAgentGetInput, jV as SupportAgentGetOutput, jW as SupportAgentListInput, jX as SupportAgentListOutput, jY as SupportAgentUpdateInput, jZ as SupportAgentUpdateOutput, j_ as SupportAttachmentCreateInput, j$ as SupportAttachmentCreateOutput, k0 as SupportAttachmentFinalizeInput, k1 as SupportAttachmentFinalizeOutput, k2 as SupportLabelCreateInput, k3 as SupportLabelCreateOutput, k4 as SupportLabelListInput, k5 as SupportLabelListOutput, k6 as SupportMessageCreateInput, k7 as SupportMessageCreateOutput, k8 as SupportMessageListInput, k9 as SupportMessageListOutput, ka as SupportStatusArchiveInput, kb as SupportStatusArchiveOutput, kc as SupportStatusCreateInput, kd as SupportStatusCreateOutput, ke as SupportStatusListInput, kf as SupportStatusListOutput, kg as SupportStatusUpdateInput, kh as SupportStatusUpdateOutput, ki as SupportThreadAssignInput, kj as SupportThreadAssignOutput, kk as SupportThreadCreateInput, kl as SupportThreadCreateOutput, km as SupportThreadGetInput, kn as SupportThreadGetOutput, ko as SupportThreadListInput, kp as SupportThreadListOutput, kq as SupportThreadStatusSetInput, kr as SupportThreadStatusSetOutput, ks as SupportThreadUpdateInput, kt as SupportThreadUpdateOutput, ku as SupportWebhookCreateInput, kv as SupportWebhookCreateOutput, kw as SupportWebhookDeleteInput, kx as SupportWebhookDeleteOutput, ky as SupportWebhookDeliveriesListInput, kz as SupportWebhookDeliveriesListOutput, kA as SupportWebhookGetInput, kB as SupportWebhookGetOutput, kC as SupportWebhookListInput, kD as SupportWebhookListOutput, kE as SupportWebhookRedeliverInput, kF as SupportWebhookRedeliverOutput, kG as SupportWebhookRotateSecretInput, kH as SupportWebhookRotateSecretOutput, kI as SupportWebhookUpdateInput, kJ as SupportWebhookUpdateOutput } from '../client.gen-3v2tDsvG.cjs';
|
|
2
2
|
|
|
3
3
|
declare const supportAgentCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
4
4
|
mutationKey: string[];
|
package/dist/support/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, jS as SupportAgentCreateInput, jT as SupportAgentCreateOutput, jU as SupportAgentGetInput, jV as SupportAgentGetOutput, jW as SupportAgentListInput, jX as SupportAgentListOutput, jY as SupportAgentUpdateInput, jZ as SupportAgentUpdateOutput, j_ as SupportAttachmentCreateInput, j$ as SupportAttachmentCreateOutput, k0 as SupportAttachmentFinalizeInput, k1 as SupportAttachmentFinalizeOutput, k2 as SupportLabelCreateInput, k3 as SupportLabelCreateOutput, k4 as SupportLabelListInput, k5 as SupportLabelListOutput, k6 as SupportMessageCreateInput, k7 as SupportMessageCreateOutput, k8 as SupportMessageListInput, k9 as SupportMessageListOutput, ka as SupportStatusArchiveInput, kb as SupportStatusArchiveOutput, kc as SupportStatusCreateInput, kd as SupportStatusCreateOutput, ke as SupportStatusListInput, kf as SupportStatusListOutput, kg as SupportStatusUpdateInput, kh as SupportStatusUpdateOutput, ki as SupportThreadAssignInput, kj as SupportThreadAssignOutput, kk as SupportThreadCreateInput, kl as SupportThreadCreateOutput, km as SupportThreadGetInput, kn as SupportThreadGetOutput, ko as SupportThreadListInput, kp as SupportThreadListOutput, kq as SupportThreadStatusSetInput, kr as SupportThreadStatusSetOutput, ks as SupportThreadUpdateInput, kt as SupportThreadUpdateOutput, ku as SupportWebhookCreateInput, kv as SupportWebhookCreateOutput, kw as SupportWebhookDeleteInput, kx as SupportWebhookDeleteOutput, ky as SupportWebhookDeliveriesListInput, kz as SupportWebhookDeliveriesListOutput, kA as SupportWebhookGetInput, kB as SupportWebhookGetOutput, kC as SupportWebhookListInput, kD as SupportWebhookListOutput, kE as SupportWebhookRedeliverInput, kF as SupportWebhookRedeliverOutput, kG as SupportWebhookRotateSecretInput, kH as SupportWebhookRotateSecretOutput, kI as SupportWebhookUpdateInput, kJ as SupportWebhookUpdateOutput } from '../client.gen-3v2tDsvG.js';
|
|
2
2
|
|
|
3
3
|
declare const supportAgentCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
4
4
|
mutationKey: string[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, kK as TrackingDomainsCreateInput, kL as TrackingDomainsCreateOutput, kM as TrackingDomainsDeleteInput, kN as TrackingDomainsDeleteOutput, kO as TrackingDomainsGetInput, kP as TrackingDomainsGetOutput, kQ as TrackingDomainsListInput, kR as TrackingDomainsListOutput, kS as TrackingDomainsVerifyInput, kT as TrackingDomainsVerifyOutput, kU as TrackingEventNamesArchiveInput, kV as TrackingEventNamesArchiveOutput, kW as TrackingEventNamesListInput, kX as TrackingEventNamesListOutput, kY as TrackingEventNamesUnarchiveInput, kZ as TrackingEventNamesUnarchiveOutput, k_ as TrackingGoogleadsConnectionStatusInput, k$ as TrackingGoogleadsConnectionStatusOutput, l0 as TrackingGoogleadsConversionActionsInput, l1 as TrackingGoogleadsConversionActionsOutput, l2 as TrackingGoogleadsFeedbackConfigGetInput, l3 as TrackingGoogleadsFeedbackConfigGetOutput, l4 as TrackingGoogleadsFeedbackConfigSetInput, l5 as TrackingGoogleadsFeedbackConfigSetOutput, l6 as TrackingGoogleadsFeedbackRunInput, l7 as TrackingGoogleadsFeedbackRunOutput, l8 as TrackingGoogleadsFeedbackStatusInput, l9 as TrackingGoogleadsFeedbackStatusOutput, la as TrackingGoogleadsFeedbackUploadsInput, lb as TrackingGoogleadsFeedbackUploadsOutput, lc as TrackingGoogleadsRoasReportInput, ld as TrackingGoogleadsRoasReportOutput, le as TrackingGoogleadsSyncNowInput, lf as TrackingGoogleadsSyncNowOutput, lg as TrackingGoogleadsTrackingHealthInput, lh as TrackingGoogleadsTrackingHealthOutput, li as TrackingGoogleadsUsVsPlatformInput, lj as TrackingGoogleadsUsVsPlatformOutput, lk as TrackingIdentityHealthInput, ll as TrackingIdentityHealthOutput, lm as TrackingInstallDomainsCreateInput, ln as TrackingInstallDomainsCreateOutput, lo as TrackingInstallDomainsDeleteInput, lp as TrackingInstallDomainsDeleteOutput, lq as TrackingInstallDomainsListInput, lr as TrackingInstallDomainsListOutput, ls as TrackingLinkDomainsCreateInput, lt as TrackingLinkDomainsCreateOutput, lu as TrackingLinkDomainsDeleteInput, lv as TrackingLinkDomainsDeleteOutput, lw as TrackingLinkDomainsListInput, lx as TrackingLinkDomainsListOutput, ly as TrackingLiveEventsListInput, lz as TrackingLiveEventsListOutput, lA as TrackingProfilesDeleteInput, lB as TrackingProfilesDeleteOutput, lC as TrackingProfilesExportInput, lD as TrackingProfilesExportOutput, lE as TrackingProfilesGetInput, lF as TrackingProfilesGetOutput, lG as TrackingProfilesListInput, lH as TrackingProfilesListOutput, lI as TrackingReportsAttributedJourneyInput, lJ as TrackingReportsAttributedJourneyOutput, lK as TrackingReportsEventVolumeInput, lL as TrackingReportsEventVolumeOutput, lM as TrackingReportsRevenueBySourceInput, lN as TrackingReportsRevenueBySourceOutput, lO as TrackingReportsSourcePeopleInput, lP as TrackingReportsSourcePeopleOutput, lQ as TrackingSnippetsGetInput, lR as TrackingSnippetsGetOutput } from '../client.gen-3v2tDsvG.cjs';
|
|
2
2
|
|
|
3
3
|
declare const trackingDomainsCreateMutationOptions: (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, kK as TrackingDomainsCreateInput, kL as TrackingDomainsCreateOutput, kM as TrackingDomainsDeleteInput, kN as TrackingDomainsDeleteOutput, kO as TrackingDomainsGetInput, kP as TrackingDomainsGetOutput, kQ as TrackingDomainsListInput, kR as TrackingDomainsListOutput, kS as TrackingDomainsVerifyInput, kT as TrackingDomainsVerifyOutput, kU as TrackingEventNamesArchiveInput, kV as TrackingEventNamesArchiveOutput, kW as TrackingEventNamesListInput, kX as TrackingEventNamesListOutput, kY as TrackingEventNamesUnarchiveInput, kZ as TrackingEventNamesUnarchiveOutput, k_ as TrackingGoogleadsConnectionStatusInput, k$ as TrackingGoogleadsConnectionStatusOutput, l0 as TrackingGoogleadsConversionActionsInput, l1 as TrackingGoogleadsConversionActionsOutput, l2 as TrackingGoogleadsFeedbackConfigGetInput, l3 as TrackingGoogleadsFeedbackConfigGetOutput, l4 as TrackingGoogleadsFeedbackConfigSetInput, l5 as TrackingGoogleadsFeedbackConfigSetOutput, l6 as TrackingGoogleadsFeedbackRunInput, l7 as TrackingGoogleadsFeedbackRunOutput, l8 as TrackingGoogleadsFeedbackStatusInput, l9 as TrackingGoogleadsFeedbackStatusOutput, la as TrackingGoogleadsFeedbackUploadsInput, lb as TrackingGoogleadsFeedbackUploadsOutput, lc as TrackingGoogleadsRoasReportInput, ld as TrackingGoogleadsRoasReportOutput, le as TrackingGoogleadsSyncNowInput, lf as TrackingGoogleadsSyncNowOutput, lg as TrackingGoogleadsTrackingHealthInput, lh as TrackingGoogleadsTrackingHealthOutput, li as TrackingGoogleadsUsVsPlatformInput, lj as TrackingGoogleadsUsVsPlatformOutput, lk as TrackingIdentityHealthInput, ll as TrackingIdentityHealthOutput, lm as TrackingInstallDomainsCreateInput, ln as TrackingInstallDomainsCreateOutput, lo as TrackingInstallDomainsDeleteInput, lp as TrackingInstallDomainsDeleteOutput, lq as TrackingInstallDomainsListInput, lr as TrackingInstallDomainsListOutput, ls as TrackingLinkDomainsCreateInput, lt as TrackingLinkDomainsCreateOutput, lu as TrackingLinkDomainsDeleteInput, lv as TrackingLinkDomainsDeleteOutput, lw as TrackingLinkDomainsListInput, lx as TrackingLinkDomainsListOutput, ly as TrackingLiveEventsListInput, lz as TrackingLiveEventsListOutput, lA as TrackingProfilesDeleteInput, lB as TrackingProfilesDeleteOutput, lC as TrackingProfilesExportInput, lD as TrackingProfilesExportOutput, lE as TrackingProfilesGetInput, lF as TrackingProfilesGetOutput, lG as TrackingProfilesListInput, lH as TrackingProfilesListOutput, lI as TrackingReportsAttributedJourneyInput, lJ as TrackingReportsAttributedJourneyOutput, lK as TrackingReportsEventVolumeInput, lL as TrackingReportsEventVolumeOutput, lM as TrackingReportsRevenueBySourceInput, lN as TrackingReportsRevenueBySourceOutput, lO as TrackingReportsSourcePeopleInput, lP as TrackingReportsSourcePeopleOutput, lQ as TrackingSnippetsGetInput, lR as TrackingSnippetsGetOutput } from '../client.gen-3v2tDsvG.js';
|
|
2
2
|
|
|
3
3
|
declare const trackingDomainsCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
4
4
|
mutationKey: string[];
|
package/dist/users/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, lS as UsersApikeysCreateInput, lT as UsersApikeysCreateOutput, lU as UsersApikeysListInput, lV as UsersApikeysListOutput, lW as UsersApikeysRevokeInput, lX as UsersApikeysRevokeOutput, lY as UsersAuditListInput, lZ as UsersAuditListOutput, l_ as UsersConfigGetInput, l$ as UsersConfigGetOutput, m0 as UsersConfigUpsertInput, m1 as UsersConfigUpsertOutput, m2 as UsersFactorsListInput, m3 as UsersFactorsListOutput, m4 as UsersFactorsResetInput, m5 as UsersFactorsResetOutput, m6 as UsersKeysListInput, m7 as UsersKeysListOutput, m8 as UsersKeysRevokeInput, m9 as UsersKeysRevokeOutput, ma as UsersKeysRotateInput, mb as UsersKeysRotateOutput, mc as UsersOpsRetentionGetInput, md as UsersOpsRetentionGetOutput, me as UsersOpsSloGetInput, mf as UsersOpsSloGetOutput, mg as UsersSessionsGetInput, mh as UsersSessionsGetOutput, mi as UsersSessionsImpersonateInput, mj as UsersSessionsImpersonateOutput, mk as UsersSessionsListInput, ml as UsersSessionsListOutput, mm as UsersSessionsRevokeInput, mn as UsersSessionsRevokeOutput, mo as UsersStatsGetInput, mp as UsersStatsGetOutput, mq as UsersUsersBanInput, mr as UsersUsersBanOutput, ms as UsersUsersCreateInput, mt as UsersUsersCreateOutput, mu as UsersUsersDeleteInput, mv as UsersUsersDeleteOutput, mw as UsersUsersEraseInput, mx as UsersUsersEraseOutput, my as UsersUsersExportInput, mz as UsersUsersExportOutput, mA as UsersUsersGetInput, mB as UsersUsersGetOutput, mC as UsersUsersImportInput, mD as UsersUsersImportOutput, mE as UsersUsersInviteInput, mF as UsersUsersInviteOutput, mG as UsersUsersListInput, mH as UsersUsersListOutput, mI as UsersUsersSetPrimaryIdentifierInput, mJ as UsersUsersSetPrimaryIdentifierOutput, mK as UsersUsersUnbanInput, mL as UsersUsersUnbanOutput, mM as UsersUsersUpdateInput, mN as UsersUsersUpdateOutput, mO as UsersWaitlistEraseInput, mP as UsersWaitlistEraseOutput, mQ as UsersWaitlistFunnelInput, mR as UsersWaitlistFunnelOutput, mS as UsersWaitlistImportInput, mT as UsersWaitlistImportOutput, mU as UsersWaitlistInviteInput, mV as UsersWaitlistInviteOutput, mW as UsersWaitlistListInput, mX as UsersWaitlistListOutput, mY as UsersWebhooksCreateInput, mZ as UsersWebhooksCreateOutput, m_ as UsersWebhooksDeleteInput, m$ as UsersWebhooksDeleteOutput, n0 as UsersWebhooksDeliveriesListInput, n1 as UsersWebhooksDeliveriesListOutput, n2 as UsersWebhooksGetInput, n3 as UsersWebhooksGetOutput, n4 as UsersWebhooksListInput, n5 as UsersWebhooksListOutput, n6 as UsersWebhooksRotateSecretInput, n7 as UsersWebhooksRotateSecretOutput, n8 as UsersWebhooksUpdateInput, n9 as UsersWebhooksUpdateOutput } from '../client.gen-3v2tDsvG.cjs';
|
|
2
2
|
|
|
3
3
|
declare const usersApikeysCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
4
4
|
mutationKey: string[];
|
package/dist/users/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, lS as UsersApikeysCreateInput, lT as UsersApikeysCreateOutput, lU as UsersApikeysListInput, lV as UsersApikeysListOutput, lW as UsersApikeysRevokeInput, lX as UsersApikeysRevokeOutput, lY as UsersAuditListInput, lZ as UsersAuditListOutput, l_ as UsersConfigGetInput, l$ as UsersConfigGetOutput, m0 as UsersConfigUpsertInput, m1 as UsersConfigUpsertOutput, m2 as UsersFactorsListInput, m3 as UsersFactorsListOutput, m4 as UsersFactorsResetInput, m5 as UsersFactorsResetOutput, m6 as UsersKeysListInput, m7 as UsersKeysListOutput, m8 as UsersKeysRevokeInput, m9 as UsersKeysRevokeOutput, ma as UsersKeysRotateInput, mb as UsersKeysRotateOutput, mc as UsersOpsRetentionGetInput, md as UsersOpsRetentionGetOutput, me as UsersOpsSloGetInput, mf as UsersOpsSloGetOutput, mg as UsersSessionsGetInput, mh as UsersSessionsGetOutput, mi as UsersSessionsImpersonateInput, mj as UsersSessionsImpersonateOutput, mk as UsersSessionsListInput, ml as UsersSessionsListOutput, mm as UsersSessionsRevokeInput, mn as UsersSessionsRevokeOutput, mo as UsersStatsGetInput, mp as UsersStatsGetOutput, mq as UsersUsersBanInput, mr as UsersUsersBanOutput, ms as UsersUsersCreateInput, mt as UsersUsersCreateOutput, mu as UsersUsersDeleteInput, mv as UsersUsersDeleteOutput, mw as UsersUsersEraseInput, mx as UsersUsersEraseOutput, my as UsersUsersExportInput, mz as UsersUsersExportOutput, mA as UsersUsersGetInput, mB as UsersUsersGetOutput, mC as UsersUsersImportInput, mD as UsersUsersImportOutput, mE as UsersUsersInviteInput, mF as UsersUsersInviteOutput, mG as UsersUsersListInput, mH as UsersUsersListOutput, mI as UsersUsersSetPrimaryIdentifierInput, mJ as UsersUsersSetPrimaryIdentifierOutput, mK as UsersUsersUnbanInput, mL as UsersUsersUnbanOutput, mM as UsersUsersUpdateInput, mN as UsersUsersUpdateOutput, mO as UsersWaitlistEraseInput, mP as UsersWaitlistEraseOutput, mQ as UsersWaitlistFunnelInput, mR as UsersWaitlistFunnelOutput, mS as UsersWaitlistImportInput, mT as UsersWaitlistImportOutput, mU as UsersWaitlistInviteInput, mV as UsersWaitlistInviteOutput, mW as UsersWaitlistListInput, mX as UsersWaitlistListOutput, mY as UsersWebhooksCreateInput, mZ as UsersWebhooksCreateOutput, m_ as UsersWebhooksDeleteInput, m$ as UsersWebhooksDeleteOutput, n0 as UsersWebhooksDeliveriesListInput, n1 as UsersWebhooksDeliveriesListOutput, n2 as UsersWebhooksGetInput, n3 as UsersWebhooksGetOutput, n4 as UsersWebhooksListInput, n5 as UsersWebhooksListOutput, n6 as UsersWebhooksRotateSecretInput, n7 as UsersWebhooksRotateSecretOutput, n8 as UsersWebhooksUpdateInput, n9 as UsersWebhooksUpdateOutput } from '../client.gen-3v2tDsvG.js';
|
|
2
2
|
|
|
3
3
|
declare const usersApikeysCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
4
4
|
mutationKey: string[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, na as WaitlistConfigGetInput, nb as WaitlistConfigGetOutput, nc as WaitlistConfigUpsertInput, nd as WaitlistConfigUpsertOutput, ne as WaitlistEmbedGetInput, nf as WaitlistEmbedGetOutput, ng as WaitlistInvitesSendInput, nh as WaitlistInvitesSendOutput, ni as WaitlistSignupsEraseInput, nj as WaitlistSignupsEraseOutput, nk as WaitlistSignupsFunnelInput, nl as WaitlistSignupsFunnelOutput, nm as WaitlistSignupsListInput, nn as WaitlistSignupsListOutput } from '../client.gen-3v2tDsvG.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, na as WaitlistConfigGetInput, nb as WaitlistConfigGetOutput, nc as WaitlistConfigUpsertInput, nd as WaitlistConfigUpsertOutput, ne as WaitlistEmbedGetInput, nf as WaitlistEmbedGetOutput, ng as WaitlistInvitesSendInput, nh as WaitlistInvitesSendOutput, ni as WaitlistSignupsEraseInput, nj as WaitlistSignupsEraseOutput, nk as WaitlistSignupsFunnelInput, nl as WaitlistSignupsFunnelOutput, nm as WaitlistSignupsListInput, nn as WaitlistSignupsListOutput } from '../client.gen-3v2tDsvG.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": "31.1.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"engines": {
|
|
@@ -65,11 +65,21 @@
|
|
|
65
65
|
"import": "./dist/mail/index.js",
|
|
66
66
|
"require": "./dist/mail/index.cjs"
|
|
67
67
|
},
|
|
68
|
+
"./observe": {
|
|
69
|
+
"types": "./dist/observe/index.d.ts",
|
|
70
|
+
"import": "./dist/observe/index.js",
|
|
71
|
+
"require": "./dist/observe/index.cjs"
|
|
72
|
+
},
|
|
68
73
|
"./organization": {
|
|
69
74
|
"types": "./dist/organization/index.d.ts",
|
|
70
75
|
"import": "./dist/organization/index.js",
|
|
71
76
|
"require": "./dist/organization/index.cjs"
|
|
72
77
|
},
|
|
78
|
+
"./playground": {
|
|
79
|
+
"types": "./dist/playground/index.d.ts",
|
|
80
|
+
"import": "./dist/playground/index.js",
|
|
81
|
+
"require": "./dist/playground/index.cjs"
|
|
82
|
+
},
|
|
73
83
|
"./realtime": {
|
|
74
84
|
"types": "./dist/realtime/index.d.ts",
|
|
75
85
|
"import": "./dist/realtime/index.js",
|
|
@@ -96,5 +106,5 @@
|
|
|
96
106
|
"require": "./dist/waitlist/index.cjs"
|
|
97
107
|
}
|
|
98
108
|
},
|
|
99
|
-
"sdkContentHash": "sha256:
|
|
109
|
+
"sdkContentHash": "sha256:c4ef68a4c891ba0db169d6e0d381c5f9d071288f63af7d4487424caf74fcf7cc"
|
|
100
110
|
}
|