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