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