gubo-data-types 0.1.18 → 0.1.19

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.
@@ -5,6 +5,7 @@ export interface TicketCategoryOption {
5
5
  }
6
6
  export interface TicketsPluginConfig {
7
7
  enabled: boolean;
8
+ useAutoSetup?: boolean;
8
9
  maxOpenTicketsPerUser?: number;
9
10
  messageOnOpen?: string | null;
10
11
  namingScheme?: 'ticket-username' | 'ticket-id';
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.DEFAULT_TICKETS = void 0;
4
4
  exports.DEFAULT_TICKETS = {
5
5
  enabled: false,
6
+ useAutoSetup: false,
6
7
  maxOpenTicketsPerUser: 1,
7
8
  messageOnOpen: 'Thanks for opening a ticket. A staff member will assist you shortly. Please describe your issue below.',
8
9
  namingScheme: 'ticket-username',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gubo-data-types",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "description": "Shared type definitions and defaults for GUBO Discord Bot (no firebase-admin dependency)",
5
5
  "license": "MIT",
6
6
  "private": false,