@purpleschool/gptbot 0.15.56 → 0.15.58

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 (37) hide show
  1. package/build/commands/product/create-product.command.d.ts +100 -0
  2. package/build/commands/product/find-product.command.d.ts +100 -0
  3. package/build/commands/product/get-my-products.command.d.ts +50 -0
  4. package/build/commands/product/update-product.command.d.ts +100 -0
  5. package/build/commands/subscription/create-subscription.command.d.ts +100 -0
  6. package/build/commands/subscription/find-subscription.command.d.ts +150 -0
  7. package/build/commands/subscription/get-available-upgrades.command.d.ts +100 -0
  8. package/build/commands/subscription/get-free-subscription.command.d.ts +50 -0
  9. package/build/commands/subscription/get-subscriptions-summary.command.d.ts +250 -0
  10. package/build/commands/subscription/update-subscription.command.d.ts +100 -0
  11. package/build/commands/team-account/find-current-team-account-products-by-team-account-id.command.d.ts +50 -0
  12. package/build/commands/team-account/find-current-team-account-products.command.d.ts +50 -0
  13. package/build/commands/team-account/find-current-team-account-subscriptions-by-team-account-id.command.d.ts +50 -0
  14. package/build/commands/team-account/find-current-team-account-subscriptions.command.d.ts +50 -0
  15. package/build/commands/team-account/find-team-account-products.command.d.ts +50 -0
  16. package/build/commands/team-account/find-team-account-subscriptions.command.d.ts +100 -0
  17. package/build/commands/team-account/get-team-account-available-upgrades.command.d.ts +50 -0
  18. package/build/commands/team-to-product/get-team-to-products.command.d.ts +50 -0
  19. package/build/commands/team-to-subscription/get-team-to-subscriptions.command.d.ts +50 -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 +50 -0
  22. package/build/commands/user/get-user-subscriptions.command.d.ts +50 -0
  23. package/build/commands/user-to-subscription/get-user-to-subscriptions.command.d.ts +50 -0
  24. package/build/constants/subscription/enums/subscription-feature-type.enum.d.ts +2 -0
  25. package/build/constants/subscription/enums/subscription-feature-type.enum.js +2 -0
  26. package/build/models/product.schema.d.ts +50 -0
  27. package/build/models/subscription-feature.schema.d.ts +103 -0
  28. package/build/models/subscription-feature.schema.js +14 -1
  29. package/build/models/subscription-upgrade-schema.d.ts +50 -0
  30. package/build/models/subscription.schema.d.ts +250 -0
  31. package/build/models/team-account/team-to-product.schema.d.ts +50 -0
  32. package/build/models/team-account/team-to-subscription.schema.d.ts +50 -0
  33. package/build/models/tool-group.schema.d.ts +1 -0
  34. package/build/models/tool-group.schema.js +1 -0
  35. package/build/models/user-to-product.schema.d.ts +50 -0
  36. package/build/models/user-to-subscription.schema.d.ts +150 -0
  37. package/package.json +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@purpleschool/gptbot",
3
- "version": "0.15.56",
3
+ "version": "0.15.58",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",