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