@drttix/drt-sdk 1.1.2 → 1.1.3

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.
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OpenAPI = void 0;
4
4
  exports.OpenAPI = {
5
5
  BASE: '',
6
- VERSION: '20260430.2',
6
+ VERSION: '20260505.1',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -44,7 +44,7 @@ export type { ChangePasswordRequestDto } from './models/ChangePasswordRequestDto
44
44
  export type { ChartReviewRequestDto } from './models/ChartReviewRequestDto';
45
45
  export type { ChartReviewValidationResponseDto } from './models/ChartReviewValidationResponseDto';
46
46
  export type { CheckBookmarkResponseDto } from './models/CheckBookmarkResponseDto';
47
- export type { CheckoutAnswerOrderRequestDto } from './models/CheckoutAnswerOrderRequestDto';
47
+ export { CheckoutAnswerOrderRequestDto } from './models/CheckoutAnswerOrderRequestDto';
48
48
  export type { CheckoutAnswerOrderResponseDto } from './models/CheckoutAnswerOrderResponseDto';
49
49
  export type { CheckoutAnswerQuestionResponseDto } from './models/CheckoutAnswerQuestionResponseDto';
50
50
  export type { CheckoutQuestionResponseDto } from './models/CheckoutQuestionResponseDto';
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SuperUserTimedTriggersService = exports.SuperUserSupportTicketsService = exports.SuperUserShoppersService = exports.SuperUserReleasedTicketsService = exports.SuperUserBuyerBlacklistService = exports.SuperUserAlertsAndNotificationsService = exports.SuperUserAbandonedCartsService = exports.ShowsService = exports.SettingsService = exports.ReportsService = exports.OrderLookupService = exports.HelpService = exports.FeaturesProductsService = exports.FeaturesPriorityService = exports.FeaturesLandingPageService = exports.FeaturesGoldenTicketsService = exports.FeaturesGiftCardsService = exports.FeaturesDonationsService = exports.FeaturesDiscountsService = exports.FeaturesCheckoutQuestionsService = exports.FeaturesBlockedSeatsService = exports.DashboardService = exports.ClientToolsWaitlistService = exports.ClientToolsUnapprovedOrdersService = exports.ClientToolsTicketScanningService = exports.ClientToolsTicketingLinkService = exports.ClientToolsThemesLibraryService = exports.ClientToolsThemeBuilderService = exports.ClientToolsStripeOnboardingService = exports.ClientToolsSeatAssignmentToolService = exports.ClientToolsPatronDatabaseService = exports.ClientToolsParentLetterService = exports.ClientToolsInterviewUpdateService = exports.ClientToolsGeneratedEmailsService = exports.BookmarkService = exports.AuthService = exports.AppService = exports.AccountingService = exports.AccountService = exports.UpdateTaxRegistrationRequestDto = exports.UpdateStripeUsageRequestDto = exports.OpenAPI = exports.CancelError = exports.CancelablePromise = exports.ApiError = void 0;
3
+ exports.SuperUserTimedTriggersService = exports.SuperUserSupportTicketsService = exports.SuperUserShoppersService = exports.SuperUserReleasedTicketsService = exports.SuperUserBuyerBlacklistService = exports.SuperUserAlertsAndNotificationsService = exports.SuperUserAbandonedCartsService = exports.ShowsService = exports.SettingsService = exports.ReportsService = exports.OrderLookupService = exports.HelpService = exports.FeaturesProductsService = exports.FeaturesPriorityService = exports.FeaturesLandingPageService = exports.FeaturesGoldenTicketsService = exports.FeaturesGiftCardsService = exports.FeaturesDonationsService = exports.FeaturesDiscountsService = exports.FeaturesCheckoutQuestionsService = exports.FeaturesBlockedSeatsService = exports.DashboardService = exports.ClientToolsWaitlistService = exports.ClientToolsUnapprovedOrdersService = exports.ClientToolsTicketScanningService = exports.ClientToolsTicketingLinkService = exports.ClientToolsThemesLibraryService = exports.ClientToolsThemeBuilderService = exports.ClientToolsStripeOnboardingService = exports.ClientToolsSeatAssignmentToolService = exports.ClientToolsPatronDatabaseService = exports.ClientToolsParentLetterService = exports.ClientToolsInterviewUpdateService = exports.ClientToolsGeneratedEmailsService = exports.BookmarkService = exports.AuthService = exports.AppService = exports.AccountingService = exports.AccountService = exports.UpdateTaxRegistrationRequestDto = exports.UpdateStripeUsageRequestDto = exports.CheckoutAnswerOrderRequestDto = exports.OpenAPI = exports.CancelError = exports.CancelablePromise = exports.ApiError = void 0;
4
4
  /* generated using openapi-typescript-codegen -- do not edit */
5
5
  /* istanbul ignore file */
6
6
  /* tslint:disable */
@@ -12,6 +12,8 @@ Object.defineProperty(exports, "CancelablePromise", { enumerable: true, get: fun
12
12
  Object.defineProperty(exports, "CancelError", { enumerable: true, get: function () { return CancelablePromise_1.CancelError; } });
13
13
  var OpenAPI_1 = require("./core/OpenAPI");
14
14
  Object.defineProperty(exports, "OpenAPI", { enumerable: true, get: function () { return OpenAPI_1.OpenAPI; } });
15
+ var CheckoutAnswerOrderRequestDto_1 = require("./models/CheckoutAnswerOrderRequestDto");
16
+ Object.defineProperty(exports, "CheckoutAnswerOrderRequestDto", { enumerable: true, get: function () { return CheckoutAnswerOrderRequestDto_1.CheckoutAnswerOrderRequestDto; } });
15
17
  var UpdateStripeUsageRequestDto_1 = require("./models/UpdateStripeUsageRequestDto");
16
18
  Object.defineProperty(exports, "UpdateStripeUsageRequestDto", { enumerable: true, get: function () { return UpdateStripeUsageRequestDto_1.UpdateStripeUsageRequestDto; } });
17
19
  var UpdateTaxRegistrationRequestDto_1 = require("./models/UpdateTaxRegistrationRequestDto");
@@ -1,4 +1,13 @@
1
1
  export type CheckoutAnswerOrderRequestDto = {
2
2
  questionId: number;
3
+ showId?: number;
4
+ type?: CheckoutAnswerOrderRequestDto.type;
3
5
  searchQuery: string;
4
6
  };
7
+ export declare namespace CheckoutAnswerOrderRequestDto {
8
+ enum type {
9
+ STANDARD = "standard",
10
+ TICKET = "ticket",
11
+ SHOW = "show"
12
+ }
13
+ }
@@ -1,2 +1,12 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CheckoutAnswerOrderRequestDto = void 0;
4
+ var CheckoutAnswerOrderRequestDto;
5
+ (function (CheckoutAnswerOrderRequestDto) {
6
+ let type;
7
+ (function (type) {
8
+ type["STANDARD"] = "standard";
9
+ type["TICKET"] = "ticket";
10
+ type["SHOW"] = "show";
11
+ })(type = CheckoutAnswerOrderRequestDto.type || (CheckoutAnswerOrderRequestDto.type = {}));
12
+ })(CheckoutAnswerOrderRequestDto || (exports.CheckoutAnswerOrderRequestDto = CheckoutAnswerOrderRequestDto = {}));
@@ -40,7 +40,6 @@ export type { ChangePasswordRequestDto } from './models/ChangePasswordRequestDto
40
40
  export type { ChartReviewRequestDto } from './models/ChartReviewRequestDto';
41
41
  export type { ChartReviewValidationResponseDto } from './models/ChartReviewValidationResponseDto';
42
42
  export type { CheckBookmarkResponseDto } from './models/CheckBookmarkResponseDto';
43
- export type { CheckoutAnswerOrderRequestDto } from './models/CheckoutAnswerOrderRequestDto';
44
43
  export type { CheckoutAnswerOrderResponseDto } from './models/CheckoutAnswerOrderResponseDto';
45
44
  export type { CheckoutAnswerQuestionResponseDto } from './models/CheckoutAnswerQuestionResponseDto';
46
45
  export type { CheckoutQuestionResponseDto } from './models/CheckoutQuestionResponseDto';
@@ -1,6 +1,6 @@
1
1
  export const OpenAPI = {
2
2
  BASE: '',
3
- VERSION: '20260430.2',
3
+ VERSION: '20260505.1',
4
4
  WITH_CREDENTIALS: false,
5
5
  CREDENTIALS: 'include',
6
6
  TOKEN: undefined,
@@ -44,7 +44,7 @@ export type { ChangePasswordRequestDto } from './models/ChangePasswordRequestDto
44
44
  export type { ChartReviewRequestDto } from './models/ChartReviewRequestDto';
45
45
  export type { ChartReviewValidationResponseDto } from './models/ChartReviewValidationResponseDto';
46
46
  export type { CheckBookmarkResponseDto } from './models/CheckBookmarkResponseDto';
47
- export type { CheckoutAnswerOrderRequestDto } from './models/CheckoutAnswerOrderRequestDto';
47
+ export { CheckoutAnswerOrderRequestDto } from './models/CheckoutAnswerOrderRequestDto';
48
48
  export type { CheckoutAnswerOrderResponseDto } from './models/CheckoutAnswerOrderResponseDto';
49
49
  export type { CheckoutAnswerQuestionResponseDto } from './models/CheckoutAnswerQuestionResponseDto';
50
50
  export type { CheckoutQuestionResponseDto } from './models/CheckoutQuestionResponseDto';
@@ -5,6 +5,7 @@
5
5
  export { ApiError } from './core/ApiError.js';
6
6
  export { CancelablePromise, CancelError } from './core/CancelablePromise.js';
7
7
  export { OpenAPI } from './core/OpenAPI.js';
8
+ export { CheckoutAnswerOrderRequestDto } from './models/CheckoutAnswerOrderRequestDto.js';
8
9
  export { UpdateStripeUsageRequestDto } from './models/UpdateStripeUsageRequestDto.js';
9
10
  export { UpdateTaxRegistrationRequestDto } from './models/UpdateTaxRegistrationRequestDto.js';
10
11
  export { AccountService } from './services/AccountService.js';
@@ -1,4 +1,13 @@
1
1
  export type CheckoutAnswerOrderRequestDto = {
2
2
  questionId: number;
3
+ showId?: number;
4
+ type?: CheckoutAnswerOrderRequestDto.type;
3
5
  searchQuery: string;
4
6
  };
7
+ export declare namespace CheckoutAnswerOrderRequestDto {
8
+ enum type {
9
+ STANDARD = "standard",
10
+ TICKET = "ticket",
11
+ SHOW = "show"
12
+ }
13
+ }
@@ -1 +1,9 @@
1
- export {};
1
+ export var CheckoutAnswerOrderRequestDto;
2
+ (function (CheckoutAnswerOrderRequestDto) {
3
+ let type;
4
+ (function (type) {
5
+ type["STANDARD"] = "standard";
6
+ type["TICKET"] = "ticket";
7
+ type["SHOW"] = "show";
8
+ })(type = CheckoutAnswerOrderRequestDto.type || (CheckoutAnswerOrderRequestDto.type = {}));
9
+ })(CheckoutAnswerOrderRequestDto || (CheckoutAnswerOrderRequestDto = {}));
@@ -40,7 +40,6 @@ export type { ChangePasswordRequestDto } from './models/ChangePasswordRequestDto
40
40
  export type { ChartReviewRequestDto } from './models/ChartReviewRequestDto';
41
41
  export type { ChartReviewValidationResponseDto } from './models/ChartReviewValidationResponseDto';
42
42
  export type { CheckBookmarkResponseDto } from './models/CheckBookmarkResponseDto';
43
- export type { CheckoutAnswerOrderRequestDto } from './models/CheckoutAnswerOrderRequestDto';
44
43
  export type { CheckoutAnswerOrderResponseDto } from './models/CheckoutAnswerOrderResponseDto';
45
44
  export type { CheckoutAnswerQuestionResponseDto } from './models/CheckoutAnswerQuestionResponseDto';
46
45
  export type { CheckoutQuestionResponseDto } from './models/CheckoutQuestionResponseDto';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@drttix/drt-sdk",
3
3
  "description": "DRT SDK",
4
- "version": "1.1.2",
4
+ "version": "1.1.3",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
7
7
  "types": "dist/esm/index.d.ts",
@@ -21,7 +21,7 @@ export type OpenAPIConfig = {
21
21
 
22
22
  export const OpenAPI: OpenAPIConfig = {
23
23
  BASE: '',
24
- VERSION: '20260430.2',
24
+ VERSION: '20260505.1',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -49,7 +49,7 @@ export type { ChangePasswordRequestDto } from './models/ChangePasswordRequestDto
49
49
  export type { ChartReviewRequestDto } from './models/ChartReviewRequestDto';
50
50
  export type { ChartReviewValidationResponseDto } from './models/ChartReviewValidationResponseDto';
51
51
  export type { CheckBookmarkResponseDto } from './models/CheckBookmarkResponseDto';
52
- export type { CheckoutAnswerOrderRequestDto } from './models/CheckoutAnswerOrderRequestDto';
52
+ export { CheckoutAnswerOrderRequestDto } from './models/CheckoutAnswerOrderRequestDto';
53
53
  export type { CheckoutAnswerOrderResponseDto } from './models/CheckoutAnswerOrderResponseDto';
54
54
  export type { CheckoutAnswerQuestionResponseDto } from './models/CheckoutAnswerQuestionResponseDto';
55
55
  export type { CheckoutQuestionResponseDto } from './models/CheckoutQuestionResponseDto';
@@ -4,6 +4,15 @@
4
4
  /* eslint-disable */
5
5
  export type CheckoutAnswerOrderRequestDto = {
6
6
  questionId: number;
7
+ showId?: number;
8
+ type?: CheckoutAnswerOrderRequestDto.type;
7
9
  searchQuery: string;
8
10
  };
11
+ export namespace CheckoutAnswerOrderRequestDto {
12
+ export enum type {
13
+ STANDARD = 'standard',
14
+ TICKET = 'ticket',
15
+ SHOW = 'show',
16
+ }
17
+ }
9
18
 
@@ -43,7 +43,6 @@ export type { ChangePasswordRequestDto } from './models/ChangePasswordRequestDto
43
43
  export type { ChartReviewRequestDto } from './models/ChartReviewRequestDto';
44
44
  export type { ChartReviewValidationResponseDto } from './models/ChartReviewValidationResponseDto';
45
45
  export type { CheckBookmarkResponseDto } from './models/CheckBookmarkResponseDto';
46
- export type { CheckoutAnswerOrderRequestDto } from './models/CheckoutAnswerOrderRequestDto';
47
46
  export type { CheckoutAnswerOrderResponseDto } from './models/CheckoutAnswerOrderResponseDto';
48
47
  export type { CheckoutAnswerQuestionResponseDto } from './models/CheckoutAnswerQuestionResponseDto';
49
48
  export type { CheckoutQuestionResponseDto } from './models/CheckoutQuestionResponseDto';