@drttix/drt-sdk 0.9.7 → 0.9.9

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 (104) hide show
  1. package/demo/test.html +1554 -674
  2. package/dist/bundle/drt-sdk.js +1 -1
  3. package/dist/cjs/index.d.ts +1 -0
  4. package/dist/cjs/src/definitions/portal.d.ts +2 -0
  5. package/dist/cjs/src/definitions/portal.js +2 -0
  6. package/dist/cjs/src/generated/portal/core/OpenAPI.js +1 -1
  7. package/dist/cjs/src/generated/portal/index.d.ts +3 -0
  8. package/dist/cjs/src/generated/portal/index.js +3 -1
  9. package/dist/cjs/src/generated/portal/models/SupportTicketResponseDto.d.ts +26 -0
  10. package/dist/cjs/src/generated/portal/models/SupportTicketResponseDto.js +2 -0
  11. package/dist/cjs/src/generated/portal/models/SupportTicketStatusResponseDto.d.ts +4 -0
  12. package/dist/cjs/src/generated/portal/models/SupportTicketStatusResponseDto.js +2 -0
  13. package/dist/cjs/src/generated/portal/services/SuperUserSupportTicketsService.d.ts +21 -0
  14. package/dist/cjs/src/generated/portal/services/SuperUserSupportTicketsService.js +40 -0
  15. package/dist/cjs/src/generated/portal/types.d.ts +2 -0
  16. package/dist/cjs/src/generated/shopper/services/AccountService.d.ts +4 -16
  17. package/dist/cjs/src/generated/shopper/services/AccountService.js +4 -36
  18. package/dist/cjs/src/generated/shopper/services/CartService.d.ts +2 -8
  19. package/dist/cjs/src/generated/shopper/services/CartService.js +2 -18
  20. package/dist/cjs/src/generated/shopper/services/CheckoutService.d.ts +5 -20
  21. package/dist/cjs/src/generated/shopper/services/CheckoutService.js +5 -45
  22. package/dist/cjs/src/generated/shopper/services/CodeService.d.ts +5 -20
  23. package/dist/cjs/src/generated/shopper/services/CodeService.js +5 -45
  24. package/dist/cjs/src/generated/shopper/services/DonationService.d.ts +2 -8
  25. package/dist/cjs/src/generated/shopper/services/DonationService.js +2 -16
  26. package/dist/cjs/src/generated/shopper/services/EventService.d.ts +4 -16
  27. package/dist/cjs/src/generated/shopper/services/EventService.js +4 -36
  28. package/dist/cjs/src/generated/shopper/services/GiftCardService.d.ts +5 -20
  29. package/dist/cjs/src/generated/shopper/services/GiftCardService.js +5 -45
  30. package/dist/cjs/src/generated/shopper/services/OrderService.d.ts +14 -56
  31. package/dist/cjs/src/generated/shopper/services/OrderService.js +14 -126
  32. package/dist/cjs/src/generated/shopper/services/PaymentService.d.ts +3 -12
  33. package/dist/cjs/src/generated/shopper/services/PaymentService.js +3 -27
  34. package/dist/cjs/src/generated/shopper/services/ProductService.d.ts +3 -12
  35. package/dist/cjs/src/generated/shopper/services/ProductService.js +3 -27
  36. package/dist/cjs/src/generated/shopper/services/SeatService.d.ts +6 -24
  37. package/dist/cjs/src/generated/shopper/services/SeatService.js +6 -54
  38. package/dist/cjs/src/generated/shopper/services/SessionService.d.ts +2 -8
  39. package/dist/cjs/src/generated/shopper/services/SessionService.js +2 -18
  40. package/dist/cjs/src/scripts/build-all.js +46 -2
  41. package/dist/cjs/src/staging/wrapService.js +1 -1
  42. package/dist/esm/index.d.ts +1 -0
  43. package/dist/esm/src/definitions/portal.d.ts +2 -0
  44. package/dist/esm/src/definitions/portal.js +2 -0
  45. package/dist/esm/src/generated/portal/core/OpenAPI.js +1 -1
  46. package/dist/esm/src/generated/portal/index.d.ts +3 -0
  47. package/dist/esm/src/generated/portal/index.js +1 -0
  48. package/dist/esm/src/generated/portal/models/SupportTicketResponseDto.d.ts +26 -0
  49. package/dist/esm/src/generated/portal/models/SupportTicketResponseDto.js +1 -0
  50. package/dist/esm/src/generated/portal/models/SupportTicketStatusResponseDto.d.ts +4 -0
  51. package/dist/esm/src/generated/portal/models/SupportTicketStatusResponseDto.js +1 -0
  52. package/dist/esm/src/generated/portal/services/SuperUserSupportTicketsService.d.ts +21 -0
  53. package/dist/esm/src/generated/portal/services/SuperUserSupportTicketsService.js +36 -0
  54. package/dist/esm/src/generated/portal/types.d.ts +2 -0
  55. package/dist/esm/src/generated/shopper/services/AccountService.d.ts +4 -16
  56. package/dist/esm/src/generated/shopper/services/AccountService.js +4 -36
  57. package/dist/esm/src/generated/shopper/services/CartService.d.ts +2 -8
  58. package/dist/esm/src/generated/shopper/services/CartService.js +2 -18
  59. package/dist/esm/src/generated/shopper/services/CheckoutService.d.ts +5 -20
  60. package/dist/esm/src/generated/shopper/services/CheckoutService.js +5 -45
  61. package/dist/esm/src/generated/shopper/services/CodeService.d.ts +5 -20
  62. package/dist/esm/src/generated/shopper/services/CodeService.js +5 -45
  63. package/dist/esm/src/generated/shopper/services/DonationService.d.ts +2 -8
  64. package/dist/esm/src/generated/shopper/services/DonationService.js +2 -16
  65. package/dist/esm/src/generated/shopper/services/EventService.d.ts +4 -16
  66. package/dist/esm/src/generated/shopper/services/EventService.js +4 -36
  67. package/dist/esm/src/generated/shopper/services/GiftCardService.d.ts +5 -20
  68. package/dist/esm/src/generated/shopper/services/GiftCardService.js +5 -45
  69. package/dist/esm/src/generated/shopper/services/OrderService.d.ts +14 -56
  70. package/dist/esm/src/generated/shopper/services/OrderService.js +14 -126
  71. package/dist/esm/src/generated/shopper/services/PaymentService.d.ts +3 -12
  72. package/dist/esm/src/generated/shopper/services/PaymentService.js +3 -27
  73. package/dist/esm/src/generated/shopper/services/ProductService.d.ts +3 -12
  74. package/dist/esm/src/generated/shopper/services/ProductService.js +3 -27
  75. package/dist/esm/src/generated/shopper/services/SeatService.d.ts +6 -24
  76. package/dist/esm/src/generated/shopper/services/SeatService.js +6 -54
  77. package/dist/esm/src/generated/shopper/services/SessionService.d.ts +2 -8
  78. package/dist/esm/src/generated/shopper/services/SessionService.js +2 -18
  79. package/dist/esm/src/scripts/build-all.js +46 -2
  80. package/dist/esm/src/staging/wrapService.js +1 -1
  81. package/drt-api-specs-staging.json +14 -0
  82. package/package.json +38 -38
  83. package/public/sdk/latest/drt-sdk.js +1 -1
  84. package/src/definitions/portal.ts +2 -0
  85. package/src/generated/portal/core/OpenAPI.ts +1 -1
  86. package/src/generated/portal/index.ts +3 -0
  87. package/src/generated/portal/models/SupportTicketResponseDto.ts +31 -0
  88. package/src/generated/portal/models/SupportTicketStatusResponseDto.ts +9 -0
  89. package/src/generated/portal/services/SuperUserSupportTicketsService.ts +46 -0
  90. package/src/generated/portal/types.ts +2 -0
  91. package/src/generated/shopper/services/AccountService.ts +0 -44
  92. package/src/generated/shopper/services/CartService.ts +0 -22
  93. package/src/generated/shopper/services/CheckoutService.ts +0 -55
  94. package/src/generated/shopper/services/CodeService.ts +0 -55
  95. package/src/generated/shopper/services/DonationService.ts +0 -20
  96. package/src/generated/shopper/services/EventService.ts +0 -44
  97. package/src/generated/shopper/services/GiftCardService.ts +0 -55
  98. package/src/generated/shopper/services/OrderService.ts +0 -154
  99. package/src/generated/shopper/services/PaymentService.ts +0 -33
  100. package/src/generated/shopper/services/ProductService.ts +0 -33
  101. package/src/generated/shopper/services/SeatService.ts +0 -66
  102. package/src/generated/shopper/services/SessionService.ts +0 -22
  103. package/src/scripts/build-all.ts +59 -2
  104. package/src/staging/wrapService.ts +1 -1
@@ -8,44 +8,32 @@ export declare class EventService {
8
8
  /**
9
9
  * Get all events for a shopper
10
10
  * Retrieves all events associated with the shopper.
11
- * @param shopperguid Unique identifier for the shopper.
12
- * @param accountid Unique identifier for the account.
13
- * @param apikey API key for authentication.
14
11
  * @returns GetEventsResponse Returns a list of events and their groups.
15
12
  * @throws ApiError
16
13
  */
17
- static getEvents(shopperguid: string, accountid: string, apikey: string): CancelablePromise<GetEventsResponse>;
14
+ static getEvents(): CancelablePromise<GetEventsResponse>;
18
15
  /**
19
16
  * Get events for a specific performer
20
17
  * Retrieves events associated with a specific performer.
21
18
  * @param performer The name of the performer to filter events by.
22
- * @param shopperguid Unique identifier for the shopper.
23
- * @param accountid Unique identifier for the account.
24
- * @param apikey API key for authentication.
25
19
  * @returns PerformerEventList Returns a list of event IDs and their primary status.
26
20
  * @throws ApiError
27
21
  */
28
- static getPerformers(performer: string, shopperguid: string, accountid: string, apikey: string): CancelablePromise<Array<PerformerEventList>>;
22
+ static getPerformers(performer: string): CancelablePromise<Array<PerformerEventList>>;
29
23
  /**
30
24
  * Get event details by ID
31
25
  * Retrieves detailed information for a specific event.
32
26
  * @param id
33
- * @param shopperguid Unique identifier for the shopper.
34
- * @param accountid Unique identifier for the account.
35
- * @param apikey API key for authentication.
36
27
  * @returns FullEventDetails Returns the event details.
37
28
  * @throws ApiError
38
29
  */
39
- static getEventById(id: number, shopperguid: string, accountid: string, apikey: string): CancelablePromise<FullEventDetails>;
30
+ static getEventById(id: number): CancelablePromise<FullEventDetails>;
40
31
  /**
41
32
  * Assign names to the waitlist
42
33
  * Updates the waitlist with shopper details.
43
- * @param shopperguid Unique identifier for the shopper.
44
- * @param accountid Unique identifier for the account.
45
- * @param apikey API key for authentication.
46
34
  * @param requestBody Details of the waitlist update
47
35
  * @returns WaitlistResponse Returns the result of the waitlist update.
48
36
  * @throws ApiError
49
37
  */
50
- static postWishlist(shopperguid: string, accountid: string, apikey: string, requestBody: WaitlistUpdate): CancelablePromise<WaitlistResponse>;
38
+ static postWishlist(requestBody: WaitlistUpdate): CancelablePromise<WaitlistResponse>;
51
39
  }
@@ -4,21 +4,13 @@ export class EventService {
4
4
  /**
5
5
  * Get all events for a shopper
6
6
  * Retrieves all events associated with the shopper.
7
- * @param shopperguid Unique identifier for the shopper.
8
- * @param accountid Unique identifier for the account.
9
- * @param apikey API key for authentication.
10
7
  * @returns GetEventsResponse Returns a list of events and their groups.
11
8
  * @throws ApiError
12
9
  */
13
- static getEvents(shopperguid, accountid, apikey) {
10
+ static getEvents() {
14
11
  return __request(OpenAPI, {
15
12
  method: 'GET',
16
13
  url: '/event',
17
- headers: {
18
- 'shopperguid': shopperguid,
19
- 'accountid': accountid,
20
- 'apikey': apikey,
21
- },
22
14
  errors: {
23
15
  400: `Bad Request error with error details.`,
24
16
  404: `Not found error with error details.`,
@@ -30,21 +22,13 @@ export class EventService {
30
22
  * Get events for a specific performer
31
23
  * Retrieves events associated with a specific performer.
32
24
  * @param performer The name of the performer to filter events by.
33
- * @param shopperguid Unique identifier for the shopper.
34
- * @param accountid Unique identifier for the account.
35
- * @param apikey API key for authentication.
36
25
  * @returns PerformerEventList Returns a list of event IDs and their primary status.
37
26
  * @throws ApiError
38
27
  */
39
- static getPerformers(performer, shopperguid, accountid, apikey) {
28
+ static getPerformers(performer) {
40
29
  return __request(OpenAPI, {
41
30
  method: 'GET',
42
31
  url: '/event/performer',
43
- headers: {
44
- 'shopperguid': shopperguid,
45
- 'accountid': accountid,
46
- 'apikey': apikey,
47
- },
48
32
  query: {
49
33
  'performer': performer,
50
34
  },
@@ -59,24 +43,16 @@ export class EventService {
59
43
  * Get event details by ID
60
44
  * Retrieves detailed information for a specific event.
61
45
  * @param id
62
- * @param shopperguid Unique identifier for the shopper.
63
- * @param accountid Unique identifier for the account.
64
- * @param apikey API key for authentication.
65
46
  * @returns FullEventDetails Returns the event details.
66
47
  * @throws ApiError
67
48
  */
68
- static getEventById(id, shopperguid, accountid, apikey) {
49
+ static getEventById(id) {
69
50
  return __request(OpenAPI, {
70
51
  method: 'GET',
71
52
  url: '/event/{id}',
72
53
  path: {
73
54
  'id': id,
74
55
  },
75
- headers: {
76
- 'shopperguid': shopperguid,
77
- 'accountid': accountid,
78
- 'apikey': apikey,
79
- },
80
56
  errors: {
81
57
  400: `Bad Request error with error details.`,
82
58
  404: `Not found error with error details.`,
@@ -87,22 +63,14 @@ export class EventService {
87
63
  /**
88
64
  * Assign names to the waitlist
89
65
  * Updates the waitlist with shopper details.
90
- * @param shopperguid Unique identifier for the shopper.
91
- * @param accountid Unique identifier for the account.
92
- * @param apikey API key for authentication.
93
66
  * @param requestBody Details of the waitlist update
94
67
  * @returns WaitlistResponse Returns the result of the waitlist update.
95
68
  * @throws ApiError
96
69
  */
97
- static postWishlist(shopperguid, accountid, apikey, requestBody) {
70
+ static postWishlist(requestBody) {
98
71
  return __request(OpenAPI, {
99
72
  method: 'POST',
100
73
  url: '/event/waitlist',
101
- headers: {
102
- 'shopperguid': shopperguid,
103
- 'accountid': accountid,
104
- 'apikey': apikey,
105
- },
106
74
  body: requestBody,
107
75
  mediaType: 'application/json',
108
76
  errors: {
@@ -11,52 +11,37 @@ export declare class GiftCardService {
11
11
  * Retrieves gift card balance and availability information for the specified code and PIN.
12
12
  * @param code Gift card code
13
13
  * @param pin Gift card PIN
14
- * @param shopperguid Unique identifier for the shopper.
15
- * @param accountid Unique identifier for the account.
16
- * @param apikey API key for authentication.
17
14
  * @returns GiftCardLookupResponse Returns gift card balance and availability information.
18
15
  * @throws ApiError
19
16
  */
20
- static lookupGiftCard(code: string, pin: string, shopperguid: string, accountid: string, apikey: string): CancelablePromise<GiftCardLookupResponse>;
17
+ static lookupGiftCard(code: string, pin: string): CancelablePromise<GiftCardLookupResponse>;
21
18
  /**
22
19
  * Apply a gift card to the current session
23
20
  * Applies a gift card to the current shopper session. Removes any previously applied gift card.
24
- * @param shopperguid Unique identifier for the shopper.
25
- * @param accountid Unique identifier for the account.
26
- * @param apikey API key for authentication.
27
21
  * @param requestBody Gift card details to apply
28
22
  * @returns GiftCardApplyResponse Gift card applied successfully.
29
23
  * @throws ApiError
30
24
  */
31
- static applyGiftCard(shopperguid: string, accountid: string, apikey: string, requestBody: GiftCardApplyDto): CancelablePromise<GiftCardApplyResponse>;
25
+ static applyGiftCard(requestBody: GiftCardApplyDto): CancelablePromise<GiftCardApplyResponse>;
32
26
  /**
33
27
  * Remove the gift card from the current session
34
28
  * Removes all gift cards from the current shopper session and recalculates payment totals.
35
- * @param shopperguid Unique identifier for the shopper.
36
- * @param accountid Unique identifier for the account.
37
- * @param apikey API key for authentication.
38
29
  * @returns GiftCardRemoveResponse Gift card removed successfully.
39
30
  * @throws ApiError
40
31
  */
41
- static removeGiftCard(shopperguid: string, accountid: string, apikey: string): CancelablePromise<GiftCardRemoveResponse>;
32
+ static removeGiftCard(): CancelablePromise<GiftCardRemoveResponse>;
42
33
  /**
43
34
  * Get gift card checkout information
44
35
  * Retrieves gift card information for the checkout page, including applied gift card details and remaining balance.
45
- * @param shopperguid Unique identifier for the shopper.
46
- * @param accountid Unique identifier for the account.
47
- * @param apikey API key for authentication.
48
36
  * @returns GiftCardCheckoutInfo Returns gift card checkout information.
49
37
  * @throws ApiError
50
38
  */
51
- static getGiftCardCheckoutInfo(shopperguid: string, accountid: string, apikey: string): CancelablePromise<GiftCardCheckoutInfo>;
39
+ static getGiftCardCheckoutInfo(): CancelablePromise<GiftCardCheckoutInfo>;
52
40
  /**
53
41
  * Get gift card edit form data
54
42
  * Retrieves the currently applied gift card information for editing purposes.
55
- * @param shopperguid Unique identifier for the shopper.
56
- * @param accountid Unique identifier for the account.
57
- * @param apikey API key for authentication.
58
43
  * @returns GiftCardEditFormResponse Returns the applied gift card code and amount.
59
44
  * @throws ApiError
60
45
  */
61
- static getGiftCardEditForm(shopperguid: string, accountid: string, apikey: string): CancelablePromise<GiftCardEditFormResponse>;
46
+ static getGiftCardEditForm(): CancelablePromise<GiftCardEditFormResponse>;
62
47
  }
@@ -6,21 +6,13 @@ export class GiftCardService {
6
6
  * Retrieves gift card balance and availability information for the specified code and PIN.
7
7
  * @param code Gift card code
8
8
  * @param pin Gift card PIN
9
- * @param shopperguid Unique identifier for the shopper.
10
- * @param accountid Unique identifier for the account.
11
- * @param apikey API key for authentication.
12
9
  * @returns GiftCardLookupResponse Returns gift card balance and availability information.
13
10
  * @throws ApiError
14
11
  */
15
- static lookupGiftCard(code, pin, shopperguid, accountid, apikey) {
12
+ static lookupGiftCard(code, pin) {
16
13
  return __request(OpenAPI, {
17
14
  method: 'GET',
18
15
  url: '/gift-card',
19
- headers: {
20
- 'shopperguid': shopperguid,
21
- 'accountid': accountid,
22
- 'apikey': apikey,
23
- },
24
16
  query: {
25
17
  'code': code,
26
18
  'pin': pin,
@@ -35,22 +27,14 @@ export class GiftCardService {
35
27
  /**
36
28
  * Apply a gift card to the current session
37
29
  * Applies a gift card to the current shopper session. Removes any previously applied gift card.
38
- * @param shopperguid Unique identifier for the shopper.
39
- * @param accountid Unique identifier for the account.
40
- * @param apikey API key for authentication.
41
30
  * @param requestBody Gift card details to apply
42
31
  * @returns GiftCardApplyResponse Gift card applied successfully.
43
32
  * @throws ApiError
44
33
  */
45
- static applyGiftCard(shopperguid, accountid, apikey, requestBody) {
34
+ static applyGiftCard(requestBody) {
46
35
  return __request(OpenAPI, {
47
36
  method: 'POST',
48
37
  url: '/gift-card',
49
- headers: {
50
- 'shopperguid': shopperguid,
51
- 'accountid': accountid,
52
- 'apikey': apikey,
53
- },
54
38
  body: requestBody,
55
39
  mediaType: 'application/json',
56
40
  errors: {
@@ -63,21 +47,13 @@ export class GiftCardService {
63
47
  /**
64
48
  * Remove the gift card from the current session
65
49
  * Removes all gift cards from the current shopper session and recalculates payment totals.
66
- * @param shopperguid Unique identifier for the shopper.
67
- * @param accountid Unique identifier for the account.
68
- * @param apikey API key for authentication.
69
50
  * @returns GiftCardRemoveResponse Gift card removed successfully.
70
51
  * @throws ApiError
71
52
  */
72
- static removeGiftCard(shopperguid, accountid, apikey) {
53
+ static removeGiftCard() {
73
54
  return __request(OpenAPI, {
74
55
  method: 'DELETE',
75
56
  url: '/gift-card',
76
- headers: {
77
- 'shopperguid': shopperguid,
78
- 'accountid': accountid,
79
- 'apikey': apikey,
80
- },
81
57
  errors: {
82
58
  400: `Bad Request error with error details.`,
83
59
  404: `Not found error with error details.`,
@@ -88,21 +64,13 @@ export class GiftCardService {
88
64
  /**
89
65
  * Get gift card checkout information
90
66
  * Retrieves gift card information for the checkout page, including applied gift card details and remaining balance.
91
- * @param shopperguid Unique identifier for the shopper.
92
- * @param accountid Unique identifier for the account.
93
- * @param apikey API key for authentication.
94
67
  * @returns GiftCardCheckoutInfo Returns gift card checkout information.
95
68
  * @throws ApiError
96
69
  */
97
- static getGiftCardCheckoutInfo(shopperguid, accountid, apikey) {
70
+ static getGiftCardCheckoutInfo() {
98
71
  return __request(OpenAPI, {
99
72
  method: 'GET',
100
73
  url: '/gift-card/checkout',
101
- headers: {
102
- 'shopperguid': shopperguid,
103
- 'accountid': accountid,
104
- 'apikey': apikey,
105
- },
106
74
  errors: {
107
75
  400: `Bad Request error with error details.`,
108
76
  404: `Not found error with error details.`,
@@ -113,21 +81,13 @@ export class GiftCardService {
113
81
  /**
114
82
  * Get gift card edit form data
115
83
  * Retrieves the currently applied gift card information for editing purposes.
116
- * @param shopperguid Unique identifier for the shopper.
117
- * @param accountid Unique identifier for the account.
118
- * @param apikey API key for authentication.
119
84
  * @returns GiftCardEditFormResponse Returns the applied gift card code and amount.
120
85
  * @throws ApiError
121
86
  */
122
- static getGiftCardEditForm(shopperguid, accountid, apikey) {
87
+ static getGiftCardEditForm() {
123
88
  return __request(OpenAPI, {
124
89
  method: 'GET',
125
90
  url: '/gift-card/edit',
126
- headers: {
127
- 'shopperguid': shopperguid,
128
- 'accountid': accountid,
129
- 'apikey': apikey,
130
- },
131
91
  errors: {
132
92
  400: `Bad Request error with error details.`,
133
93
  404: `Not found error with error details.`,
@@ -18,158 +18,116 @@ export declare class OrderService {
18
18
  * Get order receipt by guid
19
19
  * Fetches the receipt for an order using its unique guid.
20
20
  * @param guid Unique identifier for an order.
21
- * @param shopperguid Unique identifier for the shopper.
22
- * @param accountid Unique identifier for the account.
23
- * @param apikey API key for authentication.
24
21
  * @returns Receipt Returns the order receipt.
25
22
  * @throws ApiError
26
23
  */
27
- static getReceipt(guid: string, shopperguid: string, accountid: string, apikey: string): CancelablePromise<Receipt>;
24
+ static getReceipt(guid: string): CancelablePromise<Receipt>;
28
25
  /**
29
26
  * Get Gwallet link by guid
30
27
  * Fetches the Gwallet link for an order using its unique guid.
31
28
  * @param guid Unique identifier for an order.
32
- * @param shopperguid Unique identifier for the shopper.
33
- * @param accountid Unique identifier for the account.
34
- * @param apikey API key for authentication.
35
29
  * @returns LinkWithSuccess Returns the Gwallet link.
36
30
  * @throws ApiError
37
31
  */
38
- static getGwalletLink(guid: string, shopperguid: string, accountid: string, apikey: string): CancelablePromise<LinkWithSuccess>;
32
+ static getGwalletLink(guid: string): CancelablePromise<LinkWithSuccess>;
39
33
  /**
40
34
  * Get testing guid
41
35
  * Fetches a testing guid for development purposes.
42
36
  * @param guid Unique identifier for an order.
43
- * @param shopperguid Unique identifier for the shopper.
44
- * @param accountid Unique identifier for the account.
45
- * @param apikey API key for authentication.
46
37
  * @returns GuidReturn Returns a testing guid.
47
38
  * @throws ApiError
48
39
  */
49
- static getTestingGuid(guid: string, shopperguid: string, accountid: string, apikey: string): CancelablePromise<GuidReturn>;
40
+ static getTestingGuid(guid: string): CancelablePromise<GuidReturn>;
50
41
  /**
51
42
  * Get assign names by guid
52
43
  * Fetches the assign names information for an order using its unique guid.
53
44
  * @param guid Unique identifier for an order.
54
- * @param shopperguid Unique identifier for the shopper.
55
- * @param accountid Unique identifier for the account.
56
- * @param apikey API key for authentication.
57
45
  * @returns AssignNamesReturn Returns the assign names information.
58
46
  * @throws ApiError
59
47
  */
60
- static getAssignNames(guid: string, shopperguid: string, accountid: string, apikey: string): CancelablePromise<AssignNamesReturn>;
48
+ static getAssignNames(guid: string): CancelablePromise<AssignNamesReturn>;
61
49
  /**
62
50
  * Post assign names
63
51
  * Assigns names to an order using its unique guid and the provided names.
64
52
  * @param guid Unique identifier for an order.
65
- * @param shopperguid Unique identifier for the shopper.
66
- * @param accountid Unique identifier for the account.
67
- * @param apikey API key for authentication.
68
53
  * @param requestBody Names to be assigned to the order.
69
54
  * @returns SuccessResponse Returns success status after assigning names.
70
55
  * @throws ApiError
71
56
  */
72
- static postAssignNames(guid: string, shopperguid: string, accountid: string, apikey: string, requestBody: NameUpdate): CancelablePromise<SuccessResponse>;
57
+ static postAssignNames(guid: string, requestBody: NameUpdate): CancelablePromise<SuccessResponse>;
73
58
  /**
74
59
  * Post email tickets
75
60
  * Sends email tickets for an order using its unique guid and the provided email update.
76
61
  * @param guid Unique identifier for an order.
77
- * @param shopperguid Unique identifier for the shopper.
78
- * @param accountid Unique identifier for the account.
79
- * @param apikey API key for authentication.
80
62
  * @param requestBody Email update containing the email address to send tickets.
81
63
  * @returns SuccessResponse Returns success status after sending email tickets.
82
64
  * @throws ApiError
83
65
  */
84
- static postEmailTickets(guid: string, shopperguid: string, accountid: string, apikey: string, requestBody: EmailUpdate): CancelablePromise<SuccessResponse>;
66
+ static postEmailTickets(guid: string, requestBody: EmailUpdate): CancelablePromise<SuccessResponse>;
85
67
  /**
86
68
  * Get ticket block by guid
87
69
  * Fetches the ticket block for an order using its unique guid.
88
70
  * @param guid Unique identifier for an order.
89
- * @param shopperguid Unique identifier for the shopper.
90
- * @param accountid Unique identifier for the account.
91
- * @param apikey API key for authentication.
92
71
  * @returns PickupReturn Returns the ticket block for the order.
93
72
  * @throws ApiError
94
73
  */
95
- static getTicketBlock(guid: string, shopperguid: string, accountid: string, apikey: string): CancelablePromise<PickupReturn>;
74
+ static getTicketBlock(guid: string): CancelablePromise<PickupReturn>;
96
75
  /**
97
76
  * Post ticket block by guid
98
77
  * Sends the ticket block for an order using its unique guid.
99
78
  * @param guid Unique identifier for an order.
100
- * @param shopperguid Unique identifier for the shopper.
101
- * @param accountid Unique identifier for the account.
102
- * @param apikey API key for authentication.
103
79
  * @returns SuccessResponse Returns the ticket block for the order.
104
80
  * @throws ApiError
105
81
  */
106
- static postPickup(guid: string, shopperguid: string, accountid: string, apikey: string): CancelablePromise<SuccessResponse>;
82
+ static postPickup(guid: string): CancelablePromise<SuccessResponse>;
107
83
  /**
108
84
  * Send order receipt via email
109
85
  * Sends the order receipt to the shopper's email address for the specified order guid.
110
86
  * @param guid Unique identifier for an order.
111
- * @param shopperguid Unique identifier for the shopper.
112
- * @param accountid Unique identifier for the account.
113
- * @param apikey API key for authentication.
114
87
  * @returns SuccessResponse Returns success status after emailing the receipt.
115
88
  * @throws ApiError
116
89
  */
117
- static postEmailReceipt(guid: string, shopperguid: string, accountid: string, apikey: string): CancelablePromise<SuccessResponse>;
90
+ static postEmailReceipt(guid: string): CancelablePromise<SuccessResponse>;
118
91
  /**
119
92
  * Get refund request information
120
93
  * Fetches the refund request information for an order using its unique guid.
121
94
  * @param guid Unique identifier for an order.
122
- * @param shopperguid Unique identifier for the shopper.
123
- * @param accountid Unique identifier for the account.
124
- * @param apikey API key for authentication.
125
95
  * @returns RefundRequestInfo Returns the refund request information for the order.
126
96
  * @throws ApiError
127
97
  */
128
- static getRefundRequest(guid: string, shopperguid: string, accountid: string, apikey: string): CancelablePromise<RefundRequestInfo>;
98
+ static getRefundRequest(guid: string): CancelablePromise<RefundRequestInfo>;
129
99
  /**
130
100
  * Submit a refund request
131
101
  * Submits a refund request for an order using its unique guid and the provided refund details.
132
102
  * @param guid Unique identifier for an order.
133
- * @param shopperguid Unique identifier for the shopper.
134
- * @param accountid Unique identifier for the account.
135
- * @param apikey API key for authentication.
136
103
  * @param requestBody Refund request details.
137
104
  * @returns SuccessResponse Returns success status after submitting the refund request.
138
105
  * @throws ApiError
139
106
  */
140
- static postRefundRequest(guid: string, shopperguid: string, accountid: string, apikey: string, requestBody: RefundRequest): CancelablePromise<SuccessResponse>;
107
+ static postRefundRequest(guid: string, requestBody: RefundRequest): CancelablePromise<SuccessResponse>;
141
108
  /**
142
109
  * Recalculate order totals
143
110
  * Recalculates the totals for an order using the provided recalculation data.
144
111
  * @param guid Unique identifier for an order.
145
- * @param shopperguid Unique identifier for the shopper.
146
- * @param accountid Unique identifier for the account.
147
- * @param apikey API key for authentication.
148
112
  * @param requestBody Order recalculation data.
149
113
  * @returns RecalcResponse Returns the recalculated order totals and success status.
150
114
  * @throws ApiError
151
115
  */
152
- static postRecalcOrder(guid: string, shopperguid: string, accountid: string, apikey: string, requestBody: OrderRecalc): CancelablePromise<RecalcResponse>;
116
+ static postRecalcOrder(guid: string, requestBody: OrderRecalc): CancelablePromise<RecalcResponse>;
153
117
  /**
154
118
  * Register a stream for a shopper
155
119
  * Registers a stream for the specified shopper and account using the provided stream registration details.
156
- * @param shopperguid Unique identifier for the shopper.
157
- * @param accountid Unique identifier for the account.
158
- * @param apikey API key for authentication.
159
120
  * @param requestBody Stream registration details.
160
121
  * @returns RegisterStreamResponse Returns the stream registration response.
161
122
  * @throws ApiError
162
123
  */
163
- static postRegisterStream(shopperguid: string, accountid: string, apikey: string, requestBody: RegisterStreamRequest): CancelablePromise<RegisterStreamResponse>;
124
+ static postRegisterStream(requestBody: RegisterStreamRequest): CancelablePromise<RegisterStreamResponse>;
164
125
  /**
165
126
  * Deregister a stream for a shopper
166
127
  * Removes the stream registration for the specified shopper and account using the provided stream registration details.
167
- * @param shopperguid Unique identifier for the shopper.
168
- * @param accountid Unique identifier for the account.
169
- * @param apikey API key for authentication.
170
128
  * @param requestBody Stream registration details to be deregistered.
171
129
  * @returns SuccessResponse Returns success status after deregistering the stream.
172
130
  * @throws ApiError
173
131
  */
174
- static deleteRegisteredStream(shopperguid: string, accountid: string, apikey: string, requestBody: RegisterStreamRequest): CancelablePromise<SuccessResponse>;
132
+ static deleteRegisteredStream(requestBody: RegisterStreamRequest): CancelablePromise<SuccessResponse>;
175
133
  }