@stacksjs/types 0.67.0 → 0.68.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.
Files changed (76) hide show
  1. package/dist/ai.d.ts +17 -14
  2. package/dist/analytics.d.ts +12 -14
  3. package/dist/api.d.ts +25 -66
  4. package/dist/app.d.ts +29 -134
  5. package/dist/auto-imports.d.ts +1 -1
  6. package/dist/binary.d.ts +7 -10
  7. package/dist/build.d.ts +2 -2
  8. package/dist/cache.d.ts +48 -77
  9. package/dist/cdn.d.ts +3 -15
  10. package/dist/chat.d.ts +2 -2
  11. package/dist/cli.d.ts +252 -239
  12. package/dist/cloud.d.ts +305 -68
  13. package/dist/components.d.ts +11 -59
  14. package/dist/configure.d.ts +11 -11
  15. package/dist/cron-jobs.d.ts +34 -41
  16. package/dist/database.d.ts +50 -45
  17. package/dist/dependencies.d.ts +15 -61
  18. package/dist/deploy.d.ts +10 -16
  19. package/dist/dns.d.ts +349 -167
  20. package/dist/docs.d.ts +20 -19
  21. package/dist/email.d.ts +15 -10
  22. package/dist/errors.d.ts +87 -69
  23. package/dist/events.d.ts +3 -30
  24. package/dist/exit-code.d.ts +4 -9
  25. package/dist/file-systems.d.ts +52 -56
  26. package/dist/git.d.ts +54 -126
  27. package/dist/hashing.d.ts +30 -97
  28. package/dist/helpers.d.ts +1 -1
  29. package/dist/i18n.d.ts +10 -18
  30. package/dist/index.d.ts +62 -61
  31. package/dist/index.js +1 -1
  32. package/dist/inspect.d.ts +3 -9
  33. package/dist/library.d.ts +798 -139
  34. package/dist/logging.d.ts +5 -27
  35. package/dist/manifest.d.ts +6 -9
  36. package/dist/model-names.d.ts +1 -1
  37. package/dist/model.d.ts +150 -130
  38. package/dist/notifications.d.ts +150 -105
  39. package/dist/pages.d.ts +10 -10
  40. package/dist/payments.d.ts +84 -55
  41. package/dist/ports.d.ts +13 -20
  42. package/dist/promise.d.ts +1 -1
  43. package/dist/push.d.ts +34 -30
  44. package/dist/pwa.d.ts +3 -7
  45. package/dist/queue.d.ts +36 -33
  46. package/dist/reactivity.d.ts +1 -1
  47. package/dist/request.d.ts +39 -26
  48. package/dist/router.d.ts +51 -51
  49. package/dist/saas.d.ts +32 -0
  50. package/dist/scheduler.d.ts +1 -1
  51. package/dist/search-engine.d.ts +85 -111
  52. package/dist/security.d.ts +18 -16
  53. package/dist/server.d.ts +16 -6
  54. package/dist/services.d.ts +34 -28
  55. package/dist/settings-config.d.ts +8 -8
  56. package/dist/ssg.d.ts +3 -2
  57. package/dist/stacks.d.ts +53 -203
  58. package/dist/storage.d.ts +29 -36
  59. package/dist/tables.d.ts +34 -52
  60. package/dist/team.d.ts +7 -8
  61. package/dist/ui.d.ts +39 -162
  62. package/dist/utils.d.ts +20 -30
  63. package/package.json +8 -8
  64. package/src/cli.ts +2 -0
  65. package/src/cloud.ts +16 -4
  66. package/src/errors.ts +8 -0
  67. package/src/index.ts +1 -0
  68. package/src/model-names.ts +1 -1
  69. package/src/model.ts +6 -0
  70. package/src/payments.ts +32 -0
  71. package/src/saas.ts +33 -0
  72. package/src/stacks.ts +10 -0
  73. package/dist/env.d.ts +0 -0
  74. package/dist/layout.d.ts +0 -0
  75. package/dist/native.d.ts +0 -0
  76. package/dist/sms.d.ts +0 -0
@@ -1,114 +1,88 @@
1
- import type { EnqueuedTask, Hits, Index, IndexesResults, IndexOptions, MeiliSearch, Settings as MeilisearchOptions, DocumentOptions as RecordOptions, SearchParams, SearchResponse } from "meilisearch";
2
- import type { MaybePromise } from ".";
3
- type Search = any;
4
- type Page = any;
5
- type Pages = Page[];
6
- type Filter = any;
7
- type Filters = Filter[];
8
- type Result = any;
9
- type Results = Result[];
10
- type SearchFilter = any;
11
- type SearchFilters = SearchFilter[];
12
- type Sorts = any;
13
- type Sort = any;
14
- export interface SearchEngineOptions {
15
- /**
16
- * **Search Engine Driver**
17
- *
18
- * The search engine to utilize.
19
- *
20
- * @default string 'opensearch'
21
- * @see https://stacksjs.org/docs/search-engine
22
- */
23
- driver: "opensearch";
24
- opensearch?: {
25
- host: string;
26
- protocol: number;
27
- port: number;
28
- auth: string;
29
- };
30
- filters?: { [key: string]: string };
31
- /**
32
- * The number of hits to be returned per page.
33
- *
34
- * @default number 20
35
- */
36
- perPage?: number;
1
+ import type { MaybePromise } from '.';
2
+
3
+ export type {;
4
+ declare type Search = any
5
+ type Page = any
6
+ type Pages = Page[]
7
+ type Filter = any
8
+ type Filters = Filter[]
9
+ type Result = any
10
+ type Results = Result[]
11
+ type SearchFilter = any
12
+ type SearchFilters = SearchFilter[]
13
+ type Sorts = any
14
+ type Sort = any
15
+ export declare interface SearchEngineOptions {
16
+ driver: 'opensearch'
17
+
18
+
19
+ opensearch?: {
20
+ host: string
21
+ protocol: number
22
+ port: number
23
+ auth: string
24
+ }
25
+
26
+ filters?: {
27
+ [key: string]: string
28
+ }
29
+
30
+ perPage?: number
37
31
  }
38
- export type SearchEngineConfig = Partial<SearchEngineOptions>;
39
- export interface SearchEngineDriver {
40
- client: MeiliSearch;
41
- createIndex: (name: string, options?: IndexOptions) => MaybePromise<EnqueuedTask>;
42
- getIndex: (name: string) => MaybePromise<Index>;
43
- updateIndex: (name: string, options: IndexOptions) => MaybePromise<EnqueuedTask>;
44
- deleteIndex: (name: string) => MaybePromise<EnqueuedTask>;
45
- updateIndexSettings: (name: string, settings: SearchEngineOptions) => MaybePromise<EnqueuedTask>;
46
- listAllIndexes: () => MaybePromise<IndexesResults<Index[]>>;
47
- listAllIndices: () => MaybePromise<IndexesResults<Index[]>>;
48
- getRecord: (key: string) => MaybePromise<any>;
49
- getRecords: (key: string) => MaybePromise<RecordOptions>;
50
- createRecord: (record: any, indexName: string, options: RecordOptions) => MaybePromise<EnqueuedTask>;
51
- createRecords: (records: any, indexName: string, options: RecordOptions) => MaybePromise<EnqueuedTask>;
52
- createOrReplaceRecord: (record: any, indexName: string, options: RecordOptions) => MaybePromise<EnqueuedTask>;
53
- createOrUpdateRecord: (record: any, indexName: string, options: RecordOptions) => MaybePromise<EnqueuedTask>;
54
- deleteRecord: (recordId: string | number, indexName: string) => MaybePromise<EnqueuedTask>;
55
- deleteAllRecords: (indexName: string) => MaybePromise<EnqueuedTask>;
56
- batchDeleteRecords: (recordIds: string[] | number[], indexName: string) => MaybePromise<EnqueuedTask>;
57
- search: (query: string, indexName: string, options: SearchParams) => MaybePromise<Search>;
58
- calculatePagination: Pages;
59
- currentPage: Page;
60
- filterName: string;
61
- filters: Filters;
62
- goToNextPage: () => Page;
63
- goToPage: (pageNumber: number) => Page;
64
- goToPrevPage: () => Page;
65
- hits: Hits;
66
- index: Index;
67
- lastPage: Page;
68
- perPage: number;
69
- query: string;
70
- results: Results;
71
- searchFilters: SearchFilters;
72
- searchParams: SearchParams;
73
- setTotalHits: number;
74
- sort: Sort;
75
- sorts: Sorts;
76
- totalPages: number;
32
+ export declare type SearchEngineConfig = Partial<SearchEngineOptions>
33
+ export declare interface SearchEngineDriver {
34
+ client: MeiliSearch
35
+
36
+ createIndex: (name: string, options?: IndexOptions) => MaybePromise<EnqueuedTask>
37
+ getIndex: (name: string) => MaybePromise<Index>
38
+ updateIndex: (name: string, options: IndexOptions) => MaybePromise<EnqueuedTask>
39
+ deleteIndex: (name: string) => MaybePromise<EnqueuedTask>
40
+ updateIndexSettings: (name: string, settings: SearchEngineOptions) => MaybePromise<EnqueuedTask>
41
+ listAllIndexes: () => MaybePromise<IndexesResults<Index[]>>
42
+ listAllIndices: () => MaybePromise<IndexesResults<Index[]>>
43
+
44
+ getRecord: (key: string) => MaybePromise<any>
45
+ getRecords: (key: string) => MaybePromise<RecordOptions>
46
+ createRecord: (record: any, indexName: string, options: RecordOptions) => MaybePromise<EnqueuedTask>
47
+ createRecords: (records: any, indexName: string, options: RecordOptions) => MaybePromise<EnqueuedTask>
48
+ createOrReplaceRecord: (record: any, indexName: string, options: RecordOptions) => MaybePromise<EnqueuedTask>
49
+ createOrUpdateRecord: (record: any, indexName: string, options: RecordOptions) => MaybePromise<EnqueuedTask>
50
+ deleteRecord: (recordId: string | number, indexName: string) => MaybePromise<EnqueuedTask>
51
+ deleteAllRecords: (indexName: string) => MaybePromise<EnqueuedTask>
52
+ batchDeleteRecords: (recordIds: string[] | number[], indexName: string) => MaybePromise<EnqueuedTask>
53
+
54
+ search: (query: string, indexName: string, options: SearchParams) => MaybePromise<Search>
55
+
56
+ calculatePagination: Pages
57
+ currentPage: Page
58
+ filterName: string
59
+ filters: Filters
60
+ goToNextPage: () => Page
61
+ goToPage: (pageNumber: number) => Page
62
+ goToPrevPage: () => Page
63
+ hits: Hits
64
+ index: Index
65
+ lastPage: Page
66
+ perPage: number
67
+ query: string
68
+ results: Results
69
+ searchFilters: SearchFilters
70
+ searchParams: SearchParams
71
+ setTotalHits: number
72
+ sort: Sort
73
+ sorts: Sorts
74
+ totalPages: number
77
75
  }
78
- /**
79
- * This interface is used to unify the persisting of data to localStorage
80
- */
81
- export interface SearchEngineStorage {
82
- /**
83
- * The search engine index name.
84
- * i.e. the type of table, like `users`, `posts`, `products`, etc.
85
- */
86
- index?: string;
87
- /**
88
- * The search engine results object.
89
- */
90
- results?: SearchResponse;
91
- /**
92
- * The search engine hits object.
93
- */
94
- hits?: Hits;
95
- /**
96
- * The number of hits to be returned per page.
97
- *
98
- * @default number 20
99
- */
100
- perPage: number;
101
- /**
102
- * The current page number.
103
- *
104
- * @default number 1
105
- */
106
- currentPage: number;
76
+ export declare interface SearchEngineStorage {
77
+ index?: string
78
+ results?: SearchResponse
79
+ hits?: Hits
80
+ perPage: number
81
+ currentPage: number
107
82
  }
108
- export interface SearchOptions {
109
- searchable: string[];
110
- sortable: string[];
111
- filterable: string[];
112
- options?: SearchEngineOptions;
113
- }
114
- export type { EnqueuedTask, Hits, Index, IndexesResults, IndexOptions, MeiliSearch, MeilisearchOptions, RecordOptions, SearchParams, SearchResponse };
83
+ export declare interface SearchOptions {
84
+ searchable: string[]
85
+ sortable: string[]
86
+ filterable: string[]
87
+ options?: SearchEngineOptions
88
+ }
@@ -1,18 +1,20 @@
1
- import type { CountryCode } from "./cloud";
2
- import type { DeepPartial } from "./utils";
3
- export interface FirewallOptions {
4
- enabled: boolean;
5
- countryCodes: CountryCode[];
6
- ipAddresses: string[];
7
- queryString: string[];
8
- httpHeaders: string[];
9
- rateLimitPerMinute: number;
10
- useIpReputationLists: boolean;
11
- useKnownBadInputsRuleSet: boolean;
1
+ import type { CountryCode } from './cloud';
2
+ import type { DeepPartial } from './utils';
3
+
4
+ export declare interface FirewallOptions {
5
+ enabled: boolean
6
+ countryCodes: CountryCode[]
7
+ ipAddresses: string[]
8
+ queryString: string[]
9
+ httpHeaders: string[]
10
+ rateLimitPerMinute: number
11
+ useIpReputationLists: boolean
12
+ useKnownBadInputsRuleSet: boolean
12
13
  }
13
- export type FirewallConfig = Partial<FirewallOptions>;
14
- export interface SecurityOptions {
15
- driver: "aws";
16
- firewall: FirewallOptions;
14
+ export declare type FirewallConfig = Partial<FirewallOptions>
15
+ export declare interface SecurityOptions {
16
+ driver: 'aws'
17
+
18
+ firewall: FirewallOptions
17
19
  }
18
- export type SecurityConfig = DeepPartial<SecurityOptions>;
20
+ export declare type SecurityConfig = DeepPartial<SecurityOptions>
package/dist/server.d.ts CHANGED
@@ -1,6 +1,16 @@
1
- export interface ServerOptions {
2
- type?: "frontend" | "backend" | "api" | "library" | "desktop" | "docs" | "email" | "admin" | "system-tray" | "database";
3
- host?: string;
4
- port?: number;
5
- open?: boolean;
6
- }
1
+ export declare interface ServerOptions {
2
+ type?:
3
+ | 'frontend'
4
+ | 'backend'
5
+ | 'api'
6
+ | 'library'
7
+ | 'desktop'
8
+ | 'docs'
9
+ | 'email'
10
+ | 'admin'
11
+ | 'system-tray'
12
+ | 'database'
13
+ host?: string
14
+ port?: number
15
+ open?: boolean
16
+ }
@@ -1,29 +1,35 @@
1
- export interface ServicesOptions {
2
- algolia?: {
3
- appId: string;
4
- apiKey: string;
5
- };
6
- godaddy?: {
7
- apiKey: string;
8
- apiSecret: string;
9
- };
10
- meilisearch?: {
11
- appId: string;
12
- apiKey: string;
13
- };
14
- lemonSqueezy?: {
15
- appId: string;
16
- apiKey: string;
17
- };
18
- stripe?: {
19
- appId: string;
20
- apiKey: string;
21
- };
22
- aws?: {
23
- accountId: string;
24
- appId: string;
25
- apiKey: string;
26
- region: string;
27
- };
1
+ export declare interface ServicesOptions {
2
+ algolia?: {
3
+ appId: string
4
+ apiKey: string
5
+ }
6
+
7
+ godaddy?: {
8
+ apiKey: string
9
+ apiSecret: string
10
+ }
11
+
12
+ meilisearch?: {
13
+ appId: string
14
+ apiKey: string
15
+ }
16
+
17
+ lemonSqueezy?: {
18
+ appId: string
19
+ apiKey: string
20
+ }
21
+
22
+ stripe?: {
23
+ appId: string
24
+ apiKey: string
25
+ }
26
+
27
+
28
+ aws?: {
29
+ accountId: string
30
+ appId: string
31
+ apiKey: string
32
+ region: string
33
+ }
28
34
  }
29
- export type ServicesConfig = Partial<ServicesOptions>;
35
+ export declare type ServicesConfig = Partial<ServicesOptions>
@@ -1,9 +1,9 @@
1
- export interface SettingsMenuOption {
2
- label: string;
3
- path: string;
4
- icon?: MenuIcon;
5
- }
6
- export interface MenuIcon {
7
- name?: string;
8
- source?: string;
1
+ export declare interface SettingsMenuOption {
2
+ label: string
3
+ path: string
4
+ icon?: MenuIcon
9
5
  }
6
+ export declare interface MenuIcon {
7
+ name?: string
8
+ source?: string
9
+ }
package/dist/ssg.d.ts CHANGED
@@ -1,2 +1,3 @@
1
- import type { ViteSSGContext } from ".";
2
- export type UserModule = (ctx: ViteSSGContext) => void;
1
+ import type { ViteSSGContext } from '.';
2
+
3
+ export declare type UserModule = (ctx: ViteSSGContext) => void
package/dist/stacks.d.ts CHANGED
@@ -1,204 +1,54 @@
1
- import type { AiConfig, AnalyticsConfig, AppConfig, BinaryConfig, CacheConfig, CloudConfig, DatabaseConfig, DnsConfig, DocsConfig, EmailConfig, ErrorConfig, GitConfig, HashingConfig, LibraryConfig, LoggingConfig, NotificationConfig, PaymentConfig, Ports, QueueConfig, SearchEngineConfig, SecurityConfig, ServicesConfig, StorageConfig, Team, UiConfig } from ".";
2
- /**
3
- * **Stacks Options**
4
- *
5
- * This configuration defines all of your Stacks options. Because Stacks is fully-typed,
6
- * you may hover any of the options below and the definitions will be provided. In case
7
- * you have any questions, feel free to reach out via Discord or GitHub Discussions.
8
- */
9
- export interface StacksOptions {
10
- ai: AiConfig;
11
- /**
12
- * **Analytics Options**
13
- *
14
- * This configuration defines all of your Analytics options. Because Stacks is fully-typed, you
15
- * may hover any of the options below and the definitions will be provided. In case you
16
- * have any questions, feel free to reach out via Discord or GitHub Discussions.
17
- */
18
- analytics: AnalyticsConfig;
19
- /**
20
- * **Application Options**
21
- *
22
- * This configuration defines all of your Application options. Because Stacks is fully-typed,
23
- * you may hover any of the options below and the definitions will be provided. In case
24
- * you have any questions, feel free to reach out via Discord or GitHub Discussions.
25
- */
26
- app: AppConfig;
27
- /**
28
- * **Cache Options**
29
- *
30
- * This configuration defines all of your Cache options. Because Stacks is fully-typed, you
31
- * may hover any of the options below and the definitions will be provided. In case you
32
- * have any questions, feel free to reach out via Discord or GitHub Discussions.
33
- */
34
- cache: CacheConfig;
35
- /**
36
- * **CLI / Binary Options**
37
- *
38
- * This configuration defines all of your Binary options. Because Stacks is fully-typed, you
39
- * may hover any of the options below and the definitions will be provided. In case you
40
- * have any questions, feel free to reach out via Discord or GitHub Discussions.
41
- */
42
- cli: BinaryConfig;
43
- /**
44
- * **Cloud Options**
45
- *
46
- * This configuration defines all of your Cloud options. Because Stacks is fully-typed, you
47
- * may hover any of the options below and the definitions will be provided. In case you
48
- * have any questions, feel free to reach out via Discord or GitHub Discussions.
49
- */
50
- cloud: CloudConfig;
51
- /**
52
- * **Database Options**
53
- *
54
- * This configuration defines all of your Database options. Because Stacks is fully-typed, you
55
- * may hover any of the options below and the definitions will be provided. In case you
56
- * have any questions, feel free to reach out via Discord or GitHub Discussions.
57
- */
58
- database: DatabaseConfig;
59
- /**
60
- * **DNS Options**
61
- *
62
- * This configuration defines all of your DNS options. Because Stacks is fully-typed, you
63
- * may hover any of the options below and the definitions will be provided. In case you
64
- * have any questions, feel free to reach out via Discord or GitHub Discussions.
65
- */
66
- dns: DnsConfig;
67
- /**
68
- * **Docs Options**
69
- *
70
- * This configuration defines all of your Docs options. Because Stacks is fully-typed, you
71
- * may hover any of the options below and the definitions will be provided. In case you
72
- * have any questions, feel free to reach out via Discord or GitHub Discussions.
73
- */
74
- docs: DocsConfig;
75
- /**
76
- * **Email Options**
77
- *
78
- * This configuration defines all of your Email options. Because Stacks is fully-typed, you
79
- * may hover any of the options below and the definitions will be provided. In case you
80
- * have any questions, feel free to reach out via Discord or GitHub Discussions.
81
- */
82
- email: EmailConfig;
83
- /**
84
- * **Errors Options**
85
- *
86
- * This configuration defines all of your Errors options. Because Stacks is fully-typed, you
87
- * may hover any of the options below and the definitions will be provided. In case you
88
- * have any questions, feel free to reach out via Discord or GitHub Discussions.
89
- */
90
- errors: ErrorConfig;
91
- /**
92
- * **Git Options**
93
- *
94
- * This configuration defines all of your Git options. Because Stacks is fully-typed, you
95
- * may hover any of the options below and the definitions will be provided. In case you
96
- * have any questions, feel free to reach out via Discord or GitHub Discussions.
97
- */
98
- git: GitConfig;
99
- /**
100
- * **Hashing Options**
101
- *
102
- * This configuration defines all of your Hashing options. Because Stacks is fully-typed, you
103
- * may hover any of the options below and the definitions will be provided. In case you
104
- * have any questions, feel free to reach out via Discord or GitHub Discussions.
105
- */
106
- hashing: HashingConfig;
107
- /**
108
- * **Library Options**
109
- *
110
- * This configuration defines all of your Library options. Because Stacks is fully-typed, you
111
- * may hover any of the options below and the definitions will be provided. In case you
112
- * have any questions, feel free to reach out via Discord or GitHub Discussions.
113
- */
114
- library: LibraryConfig;
115
- /**
116
- * **Logging Options**
117
- *
118
- * This configuration defines all of your logging options. Because Stacks is fully-typed, you
119
- * may hover any of the options below and the definitions will be provided. In case you
120
- * have any questions, feel free to reach out via Discord or GitHub Discussions.
121
- */
122
- logging: LoggingConfig;
123
- /**
124
- * **Notification Options**
125
- *
126
- * This configuration defines all of your Notification options. Because Stacks is fully-typed,
127
- * you may hover any of the options below and the definitions will be provided. In case
128
- * you have any questions, feel free to reach out via Discord or GitHub Discussions.
129
- */
130
- notification: NotificationConfig;
131
- /**
132
- * **Payment Options**
133
- *
134
- * This configuration defines all of your Payment options. Because Stacks is fully-typed,
135
- * you may hover any of the options below and the definitions will be provided. In case
136
- * you have any questions, feel free to reach out via Discord or GitHub Discussions.
137
- */
138
- payment: PaymentConfig;
139
- /**
140
- * **Ports**
141
- *
142
- * This configuration defines all of your Ports options. Because Stacks is fully-typed, you
143
- * may hover any of the options below and the definitions will be provided. In case you
144
- * have any questions, feel free to reach out via Discord or GitHub Discussions.
145
- */
146
- ports: Ports;
147
- /**
148
- * **Queue Options**
149
- *
150
- * This configuration defines all of your Queue options. Because Stacks is fully-typed,
151
- * you may hover any of the options below and the definitions will be provided. In case
152
- * you have any questions, feel free to reach out via Discord or GitHub Discussions.
153
- */
154
- queue: QueueConfig;
155
- /**
156
- * **Search Engine Options**
157
- *
158
- * This configuration defines all of your Search Engine options. Because Stacks is fully-typed,
159
- * you may hover any of the options below and the definitions will be provided. In case
160
- * you have any questions, feel free to reach out via Discord or GitHub Discussions.
161
- */
162
- security: SecurityConfig;
163
- /**
164
- * **Search Engine Options**
165
- *
166
- * This configuration defines all of your Search Engine options. Because Stacks is fully-typed,
167
- * you may hover any of the options below and the definitions will be provided. In case
168
- * you have any questions, feel free to reach out via Discord or GitHub Discussions.
169
- */
170
- searchEngine: SearchEngineConfig;
171
- /**
172
- * **Services Options**
173
- *
174
- * This configuration defines all of your Services options. Because Stacks is fully-typed,
175
- * you may hover any of the options below and the definitions will be provided. In case
176
- * you have any questions, feel free to reach out via Discord or GitHub Discussions.
177
- */
178
- services: ServicesConfig;
179
- /**
180
- * **Storage Options**
181
- *
182
- * This configuration defines all of your Storage options. Because Stacks is fully-typed,
183
- * you may hover any of the options below and the definitions will be provided. In case
184
- * you have any questions, feel free to reach out via Discord or GitHub Discussions.
185
- */
186
- storage: StorageConfig;
187
- /**
188
- * **Team Members**
189
- *
190
- * This configuration defines all of your Team members. Because Stacks is fully-typed, you
191
- * may hover any of the options below and the definitions will be provided. In case you
192
- * have any questions, feel free to reach out via Discord or GitHub Discussions.
193
- */
194
- team: Team;
195
- /**
196
- * **UI Options**
197
- *
198
- * This configuration defines all of your UI options. Because Stacks is fully-typed, you
199
- * may hover any of the options below and the definitions will be provided. In case you
200
- * have any questions, feel free to reach out via Discord or GitHub Discussions.
201
- */
202
- ui: UiConfig;
1
+ export declare interface StacksOptions {
2
+ ai: AiConfig
3
+
4
+ analytics: AnalyticsConfig
5
+
6
+ app: AppConfig
7
+
8
+ cache: CacheConfig
9
+
10
+ cli: BinaryConfig
11
+
12
+ cloud: CloudConfig
13
+
14
+ database: DatabaseConfig
15
+
16
+ dns: DnsConfig
17
+
18
+ docs: DocsConfig
19
+
20
+ email: EmailConfig
21
+
22
+ errors: ErrorConfig
23
+
24
+ git: GitConfig
25
+
26
+ hashing: HashingConfig
27
+
28
+ library: LibraryConfig
29
+
30
+ logging: LoggingConfig
31
+
32
+ notification: NotificationConfig
33
+
34
+ payment: PaymentConfig
35
+
36
+ ports: Ports
37
+
38
+ queue: QueueConfig
39
+
40
+ saas: SaasConfig
41
+
42
+ security: SecurityConfig
43
+
44
+ searchEngine: SearchEngineConfig
45
+
46
+ services: ServicesConfig
47
+
48
+ storage: StorageConfig
49
+
50
+ team: Team
51
+
52
+ ui: UiConfig
203
53
  }
204
- export type StacksConfig = Partial<StacksOptions>;
54
+ export declare type StacksConfig = Partial<StacksOptions>