@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
|
@@ -31,6 +31,7 @@ export declare namespace GetMyProductsCommand {
|
|
|
31
31
|
}, z.core.$strip>;
|
|
32
32
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
33
33
|
title: z.ZodString;
|
|
34
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
34
35
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
35
36
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
36
37
|
order: z.ZodNumber;
|
|
@@ -39,76 +40,90 @@ export declare namespace GetMyProductsCommand {
|
|
|
39
40
|
maxInputLength: z.ZodNumber;
|
|
40
41
|
}, z.core.$strip>, z.ZodObject<{
|
|
41
42
|
title: z.ZodString;
|
|
43
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
42
44
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
43
45
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
44
46
|
value: z.ZodNumber;
|
|
45
47
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
46
48
|
}, z.core.$strip>, z.ZodObject<{
|
|
47
49
|
title: z.ZodString;
|
|
50
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
48
51
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
49
52
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
50
53
|
tooltip: z.ZodString;
|
|
51
54
|
value: z.ZodNumber;
|
|
52
55
|
}, z.core.$strip>, z.ZodObject<{
|
|
53
56
|
title: z.ZodString;
|
|
57
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
54
58
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
55
59
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
56
60
|
isAvailable: z.ZodBoolean;
|
|
57
61
|
}, z.core.$strip>, z.ZodObject<{
|
|
58
62
|
title: z.ZodString;
|
|
63
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
59
64
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
60
65
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
61
66
|
isAvailable: z.ZodBoolean;
|
|
62
67
|
}, z.core.$strip>, z.ZodObject<{
|
|
63
68
|
title: z.ZodString;
|
|
69
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
64
70
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
65
71
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
66
72
|
isAvailable: z.ZodBoolean;
|
|
67
73
|
modelId: z.ZodString;
|
|
68
74
|
}, z.core.$strip>, z.ZodObject<{
|
|
69
75
|
title: z.ZodString;
|
|
76
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
70
77
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
71
78
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
72
79
|
value: z.ZodNumber;
|
|
73
80
|
}, z.core.$strip>, z.ZodObject<{
|
|
74
81
|
title: z.ZodString;
|
|
82
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
75
83
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
76
84
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
77
85
|
value: z.ZodNumber;
|
|
78
86
|
}, z.core.$strip>, z.ZodObject<{
|
|
79
87
|
title: z.ZodString;
|
|
88
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
80
89
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
81
90
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
82
91
|
isAvailable: z.ZodBoolean;
|
|
83
92
|
modelId: z.ZodString;
|
|
84
93
|
}, z.core.$strip>, z.ZodObject<{
|
|
85
94
|
title: z.ZodString;
|
|
95
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
86
96
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
87
97
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
88
98
|
value: z.ZodNumber;
|
|
89
99
|
}, z.core.$strip>, z.ZodObject<{
|
|
90
100
|
title: z.ZodString;
|
|
101
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
91
102
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
92
103
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
93
104
|
value: z.ZodNumber;
|
|
94
105
|
}, z.core.$strip>, z.ZodObject<{
|
|
95
106
|
title: z.ZodString;
|
|
107
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
96
108
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
97
109
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
98
110
|
isAvailable: z.ZodBoolean;
|
|
99
111
|
modelId: z.ZodString;
|
|
100
112
|
}, z.core.$strip>, z.ZodObject<{
|
|
101
113
|
title: z.ZodString;
|
|
114
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
102
115
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
103
116
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
104
117
|
isAvailable: z.ZodBoolean;
|
|
105
118
|
}, z.core.$strip>, z.ZodObject<{
|
|
106
119
|
title: z.ZodString;
|
|
120
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
107
121
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
108
122
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
109
123
|
value: z.ZodNumber;
|
|
110
124
|
}, z.core.$strip>, z.ZodObject<{
|
|
111
125
|
title: z.ZodString;
|
|
126
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
112
127
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
113
128
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
114
129
|
tokens: z.ZodNumber;
|
|
@@ -124,6 +139,7 @@ export declare namespace GetMyProductsCommand {
|
|
|
124
139
|
}, z.core.$strip>;
|
|
125
140
|
}, z.core.$strip>, z.ZodObject<{
|
|
126
141
|
title: z.ZodString;
|
|
142
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
127
143
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
128
144
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
129
145
|
isAvailable: z.ZodBoolean;
|
|
@@ -140,50 +156,59 @@ export declare namespace GetMyProductsCommand {
|
|
|
140
156
|
}, z.core.$strip>;
|
|
141
157
|
}, z.core.$strip>, z.ZodObject<{
|
|
142
158
|
title: z.ZodString;
|
|
159
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
143
160
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
144
161
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
145
162
|
value: z.ZodNumber;
|
|
146
163
|
}, z.core.$strip>, z.ZodObject<{
|
|
147
164
|
title: z.ZodString;
|
|
165
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
148
166
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
149
167
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
150
168
|
isAvailable: z.ZodBoolean;
|
|
151
169
|
modelId: z.ZodString;
|
|
152
170
|
}, z.core.$strip>, z.ZodObject<{
|
|
153
171
|
title: z.ZodString;
|
|
172
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
154
173
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
155
174
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
156
175
|
value: z.ZodNumber;
|
|
157
176
|
}, z.core.$strip>, z.ZodObject<{
|
|
158
177
|
title: z.ZodString;
|
|
178
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
159
179
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
160
180
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
161
181
|
isAvailable: z.ZodBoolean;
|
|
162
182
|
modelId: z.ZodString;
|
|
163
183
|
}, z.core.$strip>, z.ZodObject<{
|
|
164
184
|
title: z.ZodString;
|
|
185
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
165
186
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
166
187
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
167
188
|
value: z.ZodNumber;
|
|
168
189
|
}, z.core.$strip>, z.ZodObject<{
|
|
169
190
|
title: z.ZodString;
|
|
191
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
170
192
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
171
193
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
172
194
|
isAvailable: z.ZodBoolean;
|
|
173
195
|
modelId: z.ZodString;
|
|
174
196
|
}, z.core.$strip>, z.ZodObject<{
|
|
175
197
|
title: z.ZodString;
|
|
198
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
176
199
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
177
200
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
178
201
|
value: z.ZodNumber;
|
|
179
202
|
}, z.core.$strip>, z.ZodObject<{
|
|
180
203
|
title: z.ZodString;
|
|
204
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
181
205
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
182
206
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
183
207
|
isAvailable: z.ZodBoolean;
|
|
184
208
|
modelId: z.ZodString;
|
|
185
209
|
}, z.core.$strip>, z.ZodObject<{
|
|
186
210
|
title: z.ZodString;
|
|
211
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
187
212
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
188
213
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
189
214
|
order: z.ZodNumber;
|
|
@@ -191,74 +216,87 @@ export declare namespace GetMyProductsCommand {
|
|
|
191
216
|
isAvailable: z.ZodBoolean;
|
|
192
217
|
}, z.core.$strip>, z.ZodObject<{
|
|
193
218
|
title: z.ZodString;
|
|
219
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
194
220
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
195
221
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
196
222
|
value: z.ZodNumber;
|
|
197
223
|
}, z.core.$strip>, z.ZodObject<{
|
|
198
224
|
title: z.ZodString;
|
|
225
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
199
226
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
200
227
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
201
228
|
isAvailable: z.ZodBoolean;
|
|
202
229
|
modelId: z.ZodString;
|
|
203
230
|
}, z.core.$strip>, z.ZodObject<{
|
|
204
231
|
title: z.ZodString;
|
|
232
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
205
233
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
206
234
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
207
235
|
isAvailable: z.ZodBoolean;
|
|
208
236
|
modelId: z.ZodString;
|
|
209
237
|
}, z.core.$strip>, z.ZodObject<{
|
|
210
238
|
title: z.ZodString;
|
|
239
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
211
240
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
212
241
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
213
242
|
value: z.ZodNumber;
|
|
214
243
|
}, z.core.$strip>, z.ZodObject<{
|
|
215
244
|
title: z.ZodString;
|
|
245
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
216
246
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
217
247
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
218
248
|
isAvailable: z.ZodBoolean;
|
|
219
249
|
modelId: z.ZodString;
|
|
220
250
|
}, z.core.$strip>, z.ZodObject<{
|
|
221
251
|
title: z.ZodString;
|
|
252
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
222
253
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
223
254
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
224
255
|
value: z.ZodNumber;
|
|
225
256
|
}, z.core.$strip>, z.ZodObject<{
|
|
226
257
|
title: z.ZodString;
|
|
258
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
227
259
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
228
260
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
229
261
|
isAvailable: z.ZodBoolean;
|
|
230
262
|
modelId: z.ZodString;
|
|
231
263
|
}, z.core.$strip>, z.ZodObject<{
|
|
232
264
|
title: z.ZodString;
|
|
265
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
233
266
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
234
267
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
235
268
|
value: z.ZodNumber;
|
|
236
269
|
}, z.core.$strip>, z.ZodObject<{
|
|
237
270
|
title: z.ZodString;
|
|
271
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
238
272
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
239
273
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
240
274
|
isAvailable: z.ZodBoolean;
|
|
241
275
|
modelId: z.ZodString;
|
|
242
276
|
}, z.core.$strip>, z.ZodObject<{
|
|
243
277
|
title: z.ZodString;
|
|
278
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
244
279
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
245
280
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
246
281
|
isAvailable: z.ZodBoolean;
|
|
247
282
|
modelId: z.ZodString;
|
|
248
283
|
}, z.core.$strip>, z.ZodObject<{
|
|
249
284
|
title: z.ZodString;
|
|
285
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
250
286
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
251
287
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
252
288
|
isAvailable: z.ZodBoolean;
|
|
253
289
|
modelId: z.ZodString;
|
|
254
290
|
}, z.core.$strip>, z.ZodObject<{
|
|
255
291
|
title: z.ZodString;
|
|
292
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
256
293
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
257
294
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
258
295
|
isAvailable: z.ZodBoolean;
|
|
259
296
|
modelId: z.ZodString;
|
|
260
297
|
}, z.core.$strip>, z.ZodObject<{
|
|
261
298
|
title: z.ZodString;
|
|
299
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
262
300
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
263
301
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
264
302
|
value: z.ZodNumber;
|