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