@purpleschool/gptbot 0.15.56 → 0.15.57
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/build/commands/product/create-product.command.d.ts +76 -0
- package/build/commands/product/find-product.command.d.ts +76 -0
- package/build/commands/product/get-my-products.command.d.ts +38 -0
- package/build/commands/product/update-product.command.d.ts +76 -0
- package/build/commands/subscription/create-subscription.command.d.ts +76 -0
- package/build/commands/subscription/find-subscription.command.d.ts +114 -0
- package/build/commands/subscription/get-available-upgrades.command.d.ts +76 -0
- package/build/commands/subscription/get-free-subscription.command.d.ts +38 -0
- package/build/commands/subscription/get-subscriptions-summary.command.d.ts +190 -0
- package/build/commands/subscription/update-subscription.command.d.ts +76 -0
- package/build/commands/team-account/find-current-team-account-products-by-team-account-id.command.d.ts +38 -0
- package/build/commands/team-account/find-current-team-account-products.command.d.ts +38 -0
- package/build/commands/team-account/find-current-team-account-subscriptions-by-team-account-id.command.d.ts +38 -0
- package/build/commands/team-account/find-current-team-account-subscriptions.command.d.ts +38 -0
- package/build/commands/team-account/find-team-account-products.command.d.ts +38 -0
- package/build/commands/team-account/find-team-account-subscriptions.command.d.ts +76 -0
- package/build/commands/team-account/get-team-account-available-upgrades.command.d.ts +38 -0
- package/build/commands/team-to-product/get-team-to-products.command.d.ts +38 -0
- package/build/commands/team-to-subscription/get-team-to-subscriptions.command.d.ts +38 -0
- package/build/commands/tools/tool/find-grouped-tools.command.d.ts +1 -0
- package/build/commands/user/get-user-products.command.d.ts +38 -0
- package/build/commands/user/get-user-subscriptions.command.d.ts +38 -0
- package/build/commands/user-to-subscription/get-user-to-subscriptions.command.d.ts +38 -0
- package/build/models/product.schema.d.ts +38 -0
- package/build/models/subscription-feature.schema.d.ts +77 -0
- package/build/models/subscription-feature.schema.js +1 -0
- package/build/models/subscription-upgrade-schema.d.ts +38 -0
- package/build/models/subscription.schema.d.ts +190 -0
- package/build/models/team-account/team-to-product.schema.d.ts +38 -0
- package/build/models/team-account/team-to-subscription.schema.d.ts +38 -0
- package/build/models/tool-group.schema.d.ts +1 -0
- package/build/models/tool-group.schema.js +1 -0
- package/build/models/user-to-product.schema.d.ts +38 -0
- package/build/models/user-to-subscription.schema.d.ts +114 -0
- package/package.json +1 -1
|
@@ -20,6 +20,7 @@ export declare namespace UpdateProductCommand {
|
|
|
20
20
|
}, z.core.$strip>>;
|
|
21
21
|
features: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
22
22
|
title: z.ZodString;
|
|
23
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
23
24
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
24
25
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
25
26
|
order: z.ZodNumber;
|
|
@@ -28,76 +29,90 @@ export declare namespace UpdateProductCommand {
|
|
|
28
29
|
maxInputLength: z.ZodNumber;
|
|
29
30
|
}, z.core.$strip>, z.ZodObject<{
|
|
30
31
|
title: z.ZodString;
|
|
32
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
31
33
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
32
34
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
33
35
|
value: z.ZodNumber;
|
|
34
36
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
35
37
|
}, z.core.$strip>, z.ZodObject<{
|
|
36
38
|
title: z.ZodString;
|
|
39
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
37
40
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
38
41
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
39
42
|
tooltip: z.ZodString;
|
|
40
43
|
value: z.ZodNumber;
|
|
41
44
|
}, z.core.$strip>, z.ZodObject<{
|
|
42
45
|
title: z.ZodString;
|
|
46
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
43
47
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
44
48
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
45
49
|
isAvailable: z.ZodBoolean;
|
|
46
50
|
}, z.core.$strip>, z.ZodObject<{
|
|
47
51
|
title: z.ZodString;
|
|
52
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
48
53
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
49
54
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
50
55
|
isAvailable: z.ZodBoolean;
|
|
51
56
|
}, z.core.$strip>, z.ZodObject<{
|
|
52
57
|
title: z.ZodString;
|
|
58
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
53
59
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
54
60
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
55
61
|
isAvailable: z.ZodBoolean;
|
|
56
62
|
modelId: z.ZodString;
|
|
57
63
|
}, z.core.$strip>, z.ZodObject<{
|
|
58
64
|
title: z.ZodString;
|
|
65
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
59
66
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
60
67
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
61
68
|
value: z.ZodNumber;
|
|
62
69
|
}, z.core.$strip>, z.ZodObject<{
|
|
63
70
|
title: z.ZodString;
|
|
71
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
64
72
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
65
73
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
66
74
|
value: z.ZodNumber;
|
|
67
75
|
}, z.core.$strip>, z.ZodObject<{
|
|
68
76
|
title: z.ZodString;
|
|
77
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
69
78
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
70
79
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
71
80
|
isAvailable: z.ZodBoolean;
|
|
72
81
|
modelId: z.ZodString;
|
|
73
82
|
}, z.core.$strip>, z.ZodObject<{
|
|
74
83
|
title: z.ZodString;
|
|
84
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
75
85
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
76
86
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
77
87
|
value: z.ZodNumber;
|
|
78
88
|
}, z.core.$strip>, z.ZodObject<{
|
|
79
89
|
title: z.ZodString;
|
|
90
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
80
91
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
81
92
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
82
93
|
value: z.ZodNumber;
|
|
83
94
|
}, z.core.$strip>, z.ZodObject<{
|
|
84
95
|
title: z.ZodString;
|
|
96
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
85
97
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
86
98
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
87
99
|
isAvailable: z.ZodBoolean;
|
|
88
100
|
modelId: z.ZodString;
|
|
89
101
|
}, z.core.$strip>, z.ZodObject<{
|
|
90
102
|
title: z.ZodString;
|
|
103
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
91
104
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
92
105
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
93
106
|
isAvailable: z.ZodBoolean;
|
|
94
107
|
}, z.core.$strip>, z.ZodObject<{
|
|
95
108
|
title: z.ZodString;
|
|
109
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
96
110
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
97
111
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
98
112
|
value: z.ZodNumber;
|
|
99
113
|
}, z.core.$strip>, z.ZodObject<{
|
|
100
114
|
title: z.ZodString;
|
|
115
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
101
116
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
102
117
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
103
118
|
tokens: z.ZodNumber;
|
|
@@ -113,6 +128,7 @@ export declare namespace UpdateProductCommand {
|
|
|
113
128
|
}, z.core.$strip>;
|
|
114
129
|
}, z.core.$strip>, z.ZodObject<{
|
|
115
130
|
title: z.ZodString;
|
|
131
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
116
132
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
117
133
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
118
134
|
isAvailable: z.ZodBoolean;
|
|
@@ -129,50 +145,59 @@ export declare namespace UpdateProductCommand {
|
|
|
129
145
|
}, z.core.$strip>;
|
|
130
146
|
}, z.core.$strip>, z.ZodObject<{
|
|
131
147
|
title: z.ZodString;
|
|
148
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
132
149
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
133
150
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
134
151
|
value: z.ZodNumber;
|
|
135
152
|
}, z.core.$strip>, z.ZodObject<{
|
|
136
153
|
title: z.ZodString;
|
|
154
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
137
155
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
138
156
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
139
157
|
isAvailable: z.ZodBoolean;
|
|
140
158
|
modelId: z.ZodString;
|
|
141
159
|
}, z.core.$strip>, z.ZodObject<{
|
|
142
160
|
title: z.ZodString;
|
|
161
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
143
162
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
144
163
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
145
164
|
value: z.ZodNumber;
|
|
146
165
|
}, z.core.$strip>, z.ZodObject<{
|
|
147
166
|
title: z.ZodString;
|
|
167
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
148
168
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
149
169
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
150
170
|
isAvailable: z.ZodBoolean;
|
|
151
171
|
modelId: z.ZodString;
|
|
152
172
|
}, z.core.$strip>, z.ZodObject<{
|
|
153
173
|
title: z.ZodString;
|
|
174
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
154
175
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
155
176
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
156
177
|
value: z.ZodNumber;
|
|
157
178
|
}, z.core.$strip>, z.ZodObject<{
|
|
158
179
|
title: z.ZodString;
|
|
180
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
159
181
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
160
182
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
161
183
|
isAvailable: z.ZodBoolean;
|
|
162
184
|
modelId: z.ZodString;
|
|
163
185
|
}, z.core.$strip>, z.ZodObject<{
|
|
164
186
|
title: z.ZodString;
|
|
187
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
165
188
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
166
189
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
167
190
|
value: z.ZodNumber;
|
|
168
191
|
}, z.core.$strip>, z.ZodObject<{
|
|
169
192
|
title: z.ZodString;
|
|
193
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
170
194
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
171
195
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
172
196
|
isAvailable: z.ZodBoolean;
|
|
173
197
|
modelId: z.ZodString;
|
|
174
198
|
}, z.core.$strip>, z.ZodObject<{
|
|
175
199
|
title: z.ZodString;
|
|
200
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
176
201
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
177
202
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
178
203
|
order: z.ZodNumber;
|
|
@@ -180,74 +205,87 @@ export declare namespace UpdateProductCommand {
|
|
|
180
205
|
isAvailable: z.ZodBoolean;
|
|
181
206
|
}, z.core.$strip>, z.ZodObject<{
|
|
182
207
|
title: z.ZodString;
|
|
208
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
183
209
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
184
210
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
185
211
|
value: z.ZodNumber;
|
|
186
212
|
}, z.core.$strip>, z.ZodObject<{
|
|
187
213
|
title: z.ZodString;
|
|
214
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
188
215
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
189
216
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
190
217
|
isAvailable: z.ZodBoolean;
|
|
191
218
|
modelId: z.ZodString;
|
|
192
219
|
}, z.core.$strip>, z.ZodObject<{
|
|
193
220
|
title: z.ZodString;
|
|
221
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
194
222
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
195
223
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
196
224
|
isAvailable: z.ZodBoolean;
|
|
197
225
|
modelId: z.ZodString;
|
|
198
226
|
}, z.core.$strip>, z.ZodObject<{
|
|
199
227
|
title: z.ZodString;
|
|
228
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
200
229
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
201
230
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
202
231
|
value: z.ZodNumber;
|
|
203
232
|
}, z.core.$strip>, z.ZodObject<{
|
|
204
233
|
title: z.ZodString;
|
|
234
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
205
235
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
206
236
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
207
237
|
isAvailable: z.ZodBoolean;
|
|
208
238
|
modelId: z.ZodString;
|
|
209
239
|
}, z.core.$strip>, z.ZodObject<{
|
|
210
240
|
title: z.ZodString;
|
|
241
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
211
242
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
212
243
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
213
244
|
value: z.ZodNumber;
|
|
214
245
|
}, z.core.$strip>, z.ZodObject<{
|
|
215
246
|
title: z.ZodString;
|
|
247
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
216
248
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
217
249
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
218
250
|
isAvailable: z.ZodBoolean;
|
|
219
251
|
modelId: z.ZodString;
|
|
220
252
|
}, z.core.$strip>, z.ZodObject<{
|
|
221
253
|
title: z.ZodString;
|
|
254
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
222
255
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
223
256
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
224
257
|
value: z.ZodNumber;
|
|
225
258
|
}, z.core.$strip>, z.ZodObject<{
|
|
226
259
|
title: z.ZodString;
|
|
260
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
227
261
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
228
262
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
229
263
|
isAvailable: z.ZodBoolean;
|
|
230
264
|
modelId: z.ZodString;
|
|
231
265
|
}, z.core.$strip>, z.ZodObject<{
|
|
232
266
|
title: z.ZodString;
|
|
267
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
233
268
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
234
269
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
235
270
|
isAvailable: z.ZodBoolean;
|
|
236
271
|
modelId: z.ZodString;
|
|
237
272
|
}, z.core.$strip>, z.ZodObject<{
|
|
238
273
|
title: z.ZodString;
|
|
274
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
239
275
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
240
276
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
241
277
|
isAvailable: z.ZodBoolean;
|
|
242
278
|
modelId: z.ZodString;
|
|
243
279
|
}, z.core.$strip>, z.ZodObject<{
|
|
244
280
|
title: z.ZodString;
|
|
281
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
245
282
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
246
283
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
247
284
|
isAvailable: z.ZodBoolean;
|
|
248
285
|
modelId: z.ZodString;
|
|
249
286
|
}, z.core.$strip>, z.ZodObject<{
|
|
250
287
|
title: z.ZodString;
|
|
288
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
251
289
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
252
290
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
253
291
|
value: z.ZodNumber;
|
|
@@ -282,6 +320,7 @@ export declare namespace UpdateProductCommand {
|
|
|
282
320
|
}, z.core.$strip>;
|
|
283
321
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
284
322
|
title: z.ZodString;
|
|
323
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
285
324
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
286
325
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
287
326
|
order: z.ZodNumber;
|
|
@@ -290,76 +329,90 @@ export declare namespace UpdateProductCommand {
|
|
|
290
329
|
maxInputLength: z.ZodNumber;
|
|
291
330
|
}, z.core.$strip>, z.ZodObject<{
|
|
292
331
|
title: z.ZodString;
|
|
332
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
293
333
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
294
334
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
295
335
|
value: z.ZodNumber;
|
|
296
336
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
297
337
|
}, z.core.$strip>, z.ZodObject<{
|
|
298
338
|
title: z.ZodString;
|
|
339
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
299
340
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
300
341
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
301
342
|
tooltip: z.ZodString;
|
|
302
343
|
value: z.ZodNumber;
|
|
303
344
|
}, z.core.$strip>, z.ZodObject<{
|
|
304
345
|
title: z.ZodString;
|
|
346
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
305
347
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
306
348
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
307
349
|
isAvailable: z.ZodBoolean;
|
|
308
350
|
}, z.core.$strip>, z.ZodObject<{
|
|
309
351
|
title: z.ZodString;
|
|
352
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
310
353
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
311
354
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
312
355
|
isAvailable: z.ZodBoolean;
|
|
313
356
|
}, z.core.$strip>, z.ZodObject<{
|
|
314
357
|
title: z.ZodString;
|
|
358
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
315
359
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
316
360
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
317
361
|
isAvailable: z.ZodBoolean;
|
|
318
362
|
modelId: z.ZodString;
|
|
319
363
|
}, z.core.$strip>, z.ZodObject<{
|
|
320
364
|
title: z.ZodString;
|
|
365
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
321
366
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
322
367
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
323
368
|
value: z.ZodNumber;
|
|
324
369
|
}, z.core.$strip>, z.ZodObject<{
|
|
325
370
|
title: z.ZodString;
|
|
371
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
326
372
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
327
373
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
328
374
|
value: z.ZodNumber;
|
|
329
375
|
}, z.core.$strip>, z.ZodObject<{
|
|
330
376
|
title: z.ZodString;
|
|
377
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
331
378
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
332
379
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
333
380
|
isAvailable: z.ZodBoolean;
|
|
334
381
|
modelId: z.ZodString;
|
|
335
382
|
}, z.core.$strip>, z.ZodObject<{
|
|
336
383
|
title: z.ZodString;
|
|
384
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
337
385
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
338
386
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
339
387
|
value: z.ZodNumber;
|
|
340
388
|
}, z.core.$strip>, z.ZodObject<{
|
|
341
389
|
title: z.ZodString;
|
|
390
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
342
391
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
343
392
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
344
393
|
value: z.ZodNumber;
|
|
345
394
|
}, z.core.$strip>, z.ZodObject<{
|
|
346
395
|
title: z.ZodString;
|
|
396
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
347
397
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
348
398
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
349
399
|
isAvailable: z.ZodBoolean;
|
|
350
400
|
modelId: z.ZodString;
|
|
351
401
|
}, z.core.$strip>, z.ZodObject<{
|
|
352
402
|
title: z.ZodString;
|
|
403
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
353
404
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
354
405
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
355
406
|
isAvailable: z.ZodBoolean;
|
|
356
407
|
}, z.core.$strip>, z.ZodObject<{
|
|
357
408
|
title: z.ZodString;
|
|
409
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
358
410
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
359
411
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
360
412
|
value: z.ZodNumber;
|
|
361
413
|
}, z.core.$strip>, z.ZodObject<{
|
|
362
414
|
title: z.ZodString;
|
|
415
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
363
416
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
364
417
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
365
418
|
tokens: z.ZodNumber;
|
|
@@ -375,6 +428,7 @@ export declare namespace UpdateProductCommand {
|
|
|
375
428
|
}, z.core.$strip>;
|
|
376
429
|
}, z.core.$strip>, z.ZodObject<{
|
|
377
430
|
title: z.ZodString;
|
|
431
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
378
432
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
379
433
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
380
434
|
isAvailable: z.ZodBoolean;
|
|
@@ -391,50 +445,59 @@ export declare namespace UpdateProductCommand {
|
|
|
391
445
|
}, z.core.$strip>;
|
|
392
446
|
}, z.core.$strip>, z.ZodObject<{
|
|
393
447
|
title: z.ZodString;
|
|
448
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
394
449
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
395
450
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
396
451
|
value: z.ZodNumber;
|
|
397
452
|
}, z.core.$strip>, z.ZodObject<{
|
|
398
453
|
title: z.ZodString;
|
|
454
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
399
455
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
400
456
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
401
457
|
isAvailable: z.ZodBoolean;
|
|
402
458
|
modelId: z.ZodString;
|
|
403
459
|
}, z.core.$strip>, z.ZodObject<{
|
|
404
460
|
title: z.ZodString;
|
|
461
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
405
462
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
406
463
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
407
464
|
value: z.ZodNumber;
|
|
408
465
|
}, z.core.$strip>, z.ZodObject<{
|
|
409
466
|
title: z.ZodString;
|
|
467
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
410
468
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
411
469
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
412
470
|
isAvailable: z.ZodBoolean;
|
|
413
471
|
modelId: z.ZodString;
|
|
414
472
|
}, z.core.$strip>, z.ZodObject<{
|
|
415
473
|
title: z.ZodString;
|
|
474
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
416
475
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
417
476
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
418
477
|
value: z.ZodNumber;
|
|
419
478
|
}, z.core.$strip>, z.ZodObject<{
|
|
420
479
|
title: z.ZodString;
|
|
480
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
421
481
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
422
482
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
423
483
|
isAvailable: z.ZodBoolean;
|
|
424
484
|
modelId: z.ZodString;
|
|
425
485
|
}, z.core.$strip>, z.ZodObject<{
|
|
426
486
|
title: z.ZodString;
|
|
487
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
427
488
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
428
489
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
429
490
|
value: z.ZodNumber;
|
|
430
491
|
}, z.core.$strip>, z.ZodObject<{
|
|
431
492
|
title: z.ZodString;
|
|
493
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
432
494
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
433
495
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
434
496
|
isAvailable: z.ZodBoolean;
|
|
435
497
|
modelId: z.ZodString;
|
|
436
498
|
}, z.core.$strip>, z.ZodObject<{
|
|
437
499
|
title: z.ZodString;
|
|
500
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
438
501
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
439
502
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
440
503
|
order: z.ZodNumber;
|
|
@@ -442,74 +505,87 @@ export declare namespace UpdateProductCommand {
|
|
|
442
505
|
isAvailable: z.ZodBoolean;
|
|
443
506
|
}, z.core.$strip>, z.ZodObject<{
|
|
444
507
|
title: z.ZodString;
|
|
508
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
445
509
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
446
510
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
447
511
|
value: z.ZodNumber;
|
|
448
512
|
}, z.core.$strip>, z.ZodObject<{
|
|
449
513
|
title: z.ZodString;
|
|
514
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
450
515
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
451
516
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
452
517
|
isAvailable: z.ZodBoolean;
|
|
453
518
|
modelId: z.ZodString;
|
|
454
519
|
}, z.core.$strip>, z.ZodObject<{
|
|
455
520
|
title: z.ZodString;
|
|
521
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
456
522
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
457
523
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
458
524
|
isAvailable: z.ZodBoolean;
|
|
459
525
|
modelId: z.ZodString;
|
|
460
526
|
}, z.core.$strip>, z.ZodObject<{
|
|
461
527
|
title: z.ZodString;
|
|
528
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
462
529
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
463
530
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
464
531
|
value: z.ZodNumber;
|
|
465
532
|
}, z.core.$strip>, z.ZodObject<{
|
|
466
533
|
title: z.ZodString;
|
|
534
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
467
535
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
468
536
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
469
537
|
isAvailable: z.ZodBoolean;
|
|
470
538
|
modelId: z.ZodString;
|
|
471
539
|
}, z.core.$strip>, z.ZodObject<{
|
|
472
540
|
title: z.ZodString;
|
|
541
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
473
542
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
474
543
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
475
544
|
value: z.ZodNumber;
|
|
476
545
|
}, z.core.$strip>, z.ZodObject<{
|
|
477
546
|
title: z.ZodString;
|
|
547
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
478
548
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
479
549
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
480
550
|
isAvailable: z.ZodBoolean;
|
|
481
551
|
modelId: z.ZodString;
|
|
482
552
|
}, z.core.$strip>, z.ZodObject<{
|
|
483
553
|
title: z.ZodString;
|
|
554
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
484
555
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
485
556
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
486
557
|
value: z.ZodNumber;
|
|
487
558
|
}, z.core.$strip>, z.ZodObject<{
|
|
488
559
|
title: z.ZodString;
|
|
560
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
489
561
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
490
562
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
491
563
|
isAvailable: z.ZodBoolean;
|
|
492
564
|
modelId: z.ZodString;
|
|
493
565
|
}, z.core.$strip>, z.ZodObject<{
|
|
494
566
|
title: z.ZodString;
|
|
567
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
495
568
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
496
569
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
497
570
|
isAvailable: z.ZodBoolean;
|
|
498
571
|
modelId: z.ZodString;
|
|
499
572
|
}, z.core.$strip>, z.ZodObject<{
|
|
500
573
|
title: z.ZodString;
|
|
574
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
501
575
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
502
576
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
503
577
|
isAvailable: z.ZodBoolean;
|
|
504
578
|
modelId: z.ZodString;
|
|
505
579
|
}, z.core.$strip>, z.ZodObject<{
|
|
506
580
|
title: z.ZodString;
|
|
581
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
507
582
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
508
583
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
509
584
|
isAvailable: z.ZodBoolean;
|
|
510
585
|
modelId: z.ZodString;
|
|
511
586
|
}, z.core.$strip>, z.ZodObject<{
|
|
512
587
|
title: z.ZodString;
|
|
588
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
513
589
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
514
590
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
515
591
|
value: z.ZodNumber;
|