@zennify/sdk-js 1.47.0 → 2.0.0
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.
- package/.github/workflows/npm-publish-package-ofc.yml +4 -7
- package/dist/lib/api/client/client.gen.js +221 -0
- package/dist/lib/api/client/index.js +17 -0
- package/dist/{interfaces/Products.js → lib/api/client/types.gen.js} +1 -0
- package/dist/lib/api/client/utils.gen.js +242 -0
- package/dist/lib/api/client.gen.js +6 -0
- package/dist/lib/api/core/auth.gen.js +18 -0
- package/dist/lib/api/core/bodySerializer.gen.js +60 -0
- package/dist/lib/api/core/params.gen.js +107 -0
- package/dist/lib/api/core/pathSerializer.gen.js +123 -0
- package/dist/lib/api/core/queryKeySerializer.gen.js +105 -0
- package/dist/lib/api/core/serverSentEvents.gen.js +139 -0
- package/dist/{errors.js → lib/api/core/types.gen.js} +1 -0
- package/dist/lib/api/core/utils.gen.js +93 -0
- package/dist/lib/api/index.js +61 -0
- package/dist/lib/api/sdk.gen.js +610 -0
- package/dist/{interfaces/Media.js → lib/api/types.gen.js} +1 -0
- package/dist/main.js +1 -10
- package/package.json +1 -1
- package/src/lib/api/client/client.gen.ts +303 -0
- package/src/lib/api/client/index.ts +25 -0
- package/src/lib/api/client/types.gen.ts +247 -0
- package/src/lib/api/client/utils.gen.ts +337 -0
- package/src/lib/api/client.gen.ts +25 -0
- package/src/lib/api/core/auth.gen.ts +42 -0
- package/src/lib/api/core/bodySerializer.gen.ts +96 -0
- package/src/lib/api/core/params.gen.ts +181 -0
- package/src/lib/api/core/pathSerializer.gen.ts +180 -0
- package/src/lib/api/core/queryKeySerializer.gen.ts +136 -0
- package/src/lib/api/core/serverSentEvents.gen.ts +265 -0
- package/src/lib/api/core/types.gen.ts +118 -0
- package/src/lib/api/core/utils.gen.ts +143 -0
- package/src/lib/api/index.ts +325 -0
- package/src/lib/api/sdk.gen.ts +1188 -0
- package/src/lib/api/types.gen.ts +3328 -0
- package/src/main.ts +42 -13
- package/types/lib/api/client/client.gen.d.ts +2 -0
- package/types/lib/api/client/index.d.ts +8 -0
- package/types/lib/api/client/types.gen.d.ts +120 -0
- package/types/lib/api/client/utils.gen.d.ts +37 -0
- package/types/lib/api/client.gen.d.ts +12 -0
- package/types/lib/api/core/auth.gen.d.ts +18 -0
- package/types/lib/api/core/bodySerializer.gen.d.ts +25 -0
- package/types/lib/api/core/params.gen.d.ts +43 -0
- package/types/lib/api/core/pathSerializer.gen.d.ts +33 -0
- package/types/lib/api/core/queryKeySerializer.gen.d.ts +18 -0
- package/types/lib/api/core/serverSentEvents.gen.d.ts +71 -0
- package/types/lib/api/core/types.gen.d.ts +78 -0
- package/types/lib/api/core/utils.gen.d.ts +19 -0
- package/types/lib/api/index.d.ts +2 -0
- package/types/lib/api/sdk.gen.d.ts +235 -0
- package/types/lib/api/types.gen.d.ts +2910 -0
- package/types/main.d.ts +19 -12
- package/dist/RequestError.js +0 -55
- package/dist/interfaces/Panels.js +0 -2
- package/dist/interfaces/Statistics.js +0 -2
- package/dist/interfaces/Stores.js +0 -2
- package/dist/interfaces/Transactions.js +0 -2
- package/dist/utils.js +0 -13
- package/dist/var.js +0 -8
- package/src/RequestError.ts +0 -66
- package/src/errors.ts +0 -224
- package/src/interfaces/Media.ts +0 -5
- package/src/interfaces/Panels.ts +0 -18
- package/src/interfaces/Products.ts +0 -29
- package/src/interfaces/Statistics.ts +0 -21
- package/src/interfaces/Stores.ts +0 -58
- package/src/interfaces/Transactions.ts +0 -80
- package/src/utils.ts +0 -19
- package/src/var.ts +0 -5
- package/types/RequestError.d.ts +0 -11
- package/types/errors.d.ts +0 -214
- package/types/interfaces/Media.d.ts +0 -5
- package/types/interfaces/Panels.d.ts +0 -17
- package/types/interfaces/Products.d.ts +0 -28
- package/types/interfaces/Statistics.d.ts +0 -19
- package/types/interfaces/Stores.d.ts +0 -47
- package/types/interfaces/Transactions.d.ts +0 -78
- package/types/utils.d.ts +0 -5
- package/types/var.d.ts +0 -3
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
|
|
3
|
+
import type { BodySerializer, QuerySerializer } from "./bodySerializer.gen";
|
|
4
|
+
import {
|
|
5
|
+
type ArraySeparatorStyle,
|
|
6
|
+
serializeArrayParam,
|
|
7
|
+
serializeObjectParam,
|
|
8
|
+
serializePrimitiveParam,
|
|
9
|
+
} from "./pathSerializer.gen";
|
|
10
|
+
|
|
11
|
+
export interface PathSerializer {
|
|
12
|
+
path: Record<string, unknown>;
|
|
13
|
+
url: string;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export const PATH_PARAM_RE = /\{[^{}]+\}/g;
|
|
17
|
+
|
|
18
|
+
export const defaultPathSerializer = ({ path, url: _url }: PathSerializer) => {
|
|
19
|
+
let url = _url;
|
|
20
|
+
const matches = _url.match(PATH_PARAM_RE);
|
|
21
|
+
if (matches) {
|
|
22
|
+
for (const match of matches) {
|
|
23
|
+
let explode = false;
|
|
24
|
+
let name = match.substring(1, match.length - 1);
|
|
25
|
+
let style: ArraySeparatorStyle = "simple";
|
|
26
|
+
|
|
27
|
+
if (name.endsWith("*")) {
|
|
28
|
+
explode = true;
|
|
29
|
+
name = name.substring(0, name.length - 1);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
if (name.startsWith(".")) {
|
|
33
|
+
name = name.substring(1);
|
|
34
|
+
style = "label";
|
|
35
|
+
} else if (name.startsWith(";")) {
|
|
36
|
+
name = name.substring(1);
|
|
37
|
+
style = "matrix";
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
const value = path[name];
|
|
41
|
+
|
|
42
|
+
if (value === undefined || value === null) {
|
|
43
|
+
continue;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
if (Array.isArray(value)) {
|
|
47
|
+
url = url.replace(
|
|
48
|
+
match,
|
|
49
|
+
serializeArrayParam({ explode, name, style, value }),
|
|
50
|
+
);
|
|
51
|
+
continue;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
if (typeof value === "object") {
|
|
55
|
+
url = url.replace(
|
|
56
|
+
match,
|
|
57
|
+
serializeObjectParam({
|
|
58
|
+
explode,
|
|
59
|
+
name,
|
|
60
|
+
style,
|
|
61
|
+
value: value as Record<string, unknown>,
|
|
62
|
+
valueOnly: true,
|
|
63
|
+
}),
|
|
64
|
+
);
|
|
65
|
+
continue;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
if (style === "matrix") {
|
|
69
|
+
url = url.replace(
|
|
70
|
+
match,
|
|
71
|
+
`;${serializePrimitiveParam({
|
|
72
|
+
name,
|
|
73
|
+
value: value as string,
|
|
74
|
+
})}`,
|
|
75
|
+
);
|
|
76
|
+
continue;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
const replaceValue = encodeURIComponent(
|
|
80
|
+
style === "label" ? `.${value as string}` : (value as string),
|
|
81
|
+
);
|
|
82
|
+
url = url.replace(match, replaceValue);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
return url;
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
export const getUrl = ({
|
|
89
|
+
baseUrl,
|
|
90
|
+
path,
|
|
91
|
+
query,
|
|
92
|
+
querySerializer,
|
|
93
|
+
url: _url,
|
|
94
|
+
}: {
|
|
95
|
+
baseUrl?: string;
|
|
96
|
+
path?: Record<string, unknown>;
|
|
97
|
+
query?: Record<string, unknown>;
|
|
98
|
+
querySerializer: QuerySerializer;
|
|
99
|
+
url: string;
|
|
100
|
+
}) => {
|
|
101
|
+
const pathUrl = _url.startsWith("/") ? _url : `/${_url}`;
|
|
102
|
+
let url = (baseUrl ?? "") + pathUrl;
|
|
103
|
+
if (path) {
|
|
104
|
+
url = defaultPathSerializer({ path, url });
|
|
105
|
+
}
|
|
106
|
+
let search = query ? querySerializer(query) : "";
|
|
107
|
+
if (search.startsWith("?")) {
|
|
108
|
+
search = search.substring(1);
|
|
109
|
+
}
|
|
110
|
+
if (search) {
|
|
111
|
+
url += `?${search}`;
|
|
112
|
+
}
|
|
113
|
+
return url;
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
export function getValidRequestBody(options: {
|
|
117
|
+
body?: unknown;
|
|
118
|
+
bodySerializer?: BodySerializer | null;
|
|
119
|
+
serializedBody?: unknown;
|
|
120
|
+
}) {
|
|
121
|
+
const hasBody = options.body !== undefined;
|
|
122
|
+
const isSerializedBody = hasBody && options.bodySerializer;
|
|
123
|
+
|
|
124
|
+
if (isSerializedBody) {
|
|
125
|
+
if ("serializedBody" in options) {
|
|
126
|
+
const hasSerializedBody =
|
|
127
|
+
options.serializedBody !== undefined && options.serializedBody !== "";
|
|
128
|
+
|
|
129
|
+
return hasSerializedBody ? options.serializedBody : null;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
// not all clients implement a serializedBody property (i.e., client-axios)
|
|
133
|
+
return options.body !== "" ? options.body : null;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
// plain/text body
|
|
137
|
+
if (hasBody) {
|
|
138
|
+
return options.body;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
// no body was provided
|
|
142
|
+
return undefined;
|
|
143
|
+
}
|
|
@@ -0,0 +1,325 @@
|
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
|
|
3
|
+
export {
|
|
4
|
+
addModeratorToStore,
|
|
5
|
+
createStore,
|
|
6
|
+
createStoreCoupon,
|
|
7
|
+
createStoreDiscordEmojis,
|
|
8
|
+
createStoreDiscordPanel,
|
|
9
|
+
createStoreEditOrder,
|
|
10
|
+
createStoreProduct,
|
|
11
|
+
createStoreRenewOrder,
|
|
12
|
+
deleteStoreCoupon,
|
|
13
|
+
deleteStoreDiscordPanel,
|
|
14
|
+
deleteStoreDiscordServer,
|
|
15
|
+
deleteStoreMedia,
|
|
16
|
+
deleteStoreProduct,
|
|
17
|
+
editStoreModerator,
|
|
18
|
+
editUser,
|
|
19
|
+
getApiReference,
|
|
20
|
+
getServiceApiSchema,
|
|
21
|
+
getServiceData,
|
|
22
|
+
getServiceHealth,
|
|
23
|
+
getStore,
|
|
24
|
+
getStoreCoupon,
|
|
25
|
+
getStoreCoupons,
|
|
26
|
+
getStoreDiscordBot,
|
|
27
|
+
getStoreDiscordPanels,
|
|
28
|
+
getStoreDiscordServers,
|
|
29
|
+
getStoreProduct,
|
|
30
|
+
getStoreProductStock,
|
|
31
|
+
getStoreRankingCustomers,
|
|
32
|
+
getStores,
|
|
33
|
+
getStoreStatsProducts,
|
|
34
|
+
getTransaction,
|
|
35
|
+
getUser,
|
|
36
|
+
getUserById,
|
|
37
|
+
listStoreProducts,
|
|
38
|
+
listTransactions,
|
|
39
|
+
type Options,
|
|
40
|
+
postStoreDiscordPanelMessage,
|
|
41
|
+
postStoreProductDiscordMessage,
|
|
42
|
+
removeStoreModerator,
|
|
43
|
+
setupEfi,
|
|
44
|
+
setupWebhook,
|
|
45
|
+
updatePaymentMethod,
|
|
46
|
+
updatePixKey,
|
|
47
|
+
updateStore,
|
|
48
|
+
updateStoreCoupon,
|
|
49
|
+
updateStoreDiscordBotToken,
|
|
50
|
+
updateStoreDiscordChannels,
|
|
51
|
+
updateStoreDiscordPanel,
|
|
52
|
+
updateStoreProduct,
|
|
53
|
+
updateStoreProductStock,
|
|
54
|
+
updateStoreProductStockItem,
|
|
55
|
+
updateTransaction,
|
|
56
|
+
updateUserAvatar,
|
|
57
|
+
uploadStoreMedia,
|
|
58
|
+
walletBalance,
|
|
59
|
+
walletWithdraw,
|
|
60
|
+
} from "./sdk.gen";
|
|
61
|
+
export type {
|
|
62
|
+
AddModeratorToStoreData,
|
|
63
|
+
AddModeratorToStoreError,
|
|
64
|
+
AddModeratorToStoreErrors,
|
|
65
|
+
AddModeratorToStoreResponse,
|
|
66
|
+
AddModeratorToStoreResponses,
|
|
67
|
+
ClientOptions,
|
|
68
|
+
CreateStoreCouponData,
|
|
69
|
+
CreateStoreCouponError,
|
|
70
|
+
CreateStoreCouponErrors,
|
|
71
|
+
CreateStoreCouponResponse,
|
|
72
|
+
CreateStoreCouponResponses,
|
|
73
|
+
CreateStoreData,
|
|
74
|
+
CreateStoreDiscordEmojisData,
|
|
75
|
+
CreateStoreDiscordEmojisError,
|
|
76
|
+
CreateStoreDiscordEmojisErrors,
|
|
77
|
+
CreateStoreDiscordEmojisResponse,
|
|
78
|
+
CreateStoreDiscordEmojisResponses,
|
|
79
|
+
CreateStoreDiscordPanelData,
|
|
80
|
+
CreateStoreDiscordPanelError,
|
|
81
|
+
CreateStoreDiscordPanelErrors,
|
|
82
|
+
CreateStoreDiscordPanelResponse,
|
|
83
|
+
CreateStoreDiscordPanelResponses,
|
|
84
|
+
CreateStoreEditOrderData,
|
|
85
|
+
CreateStoreEditOrderError,
|
|
86
|
+
CreateStoreEditOrderErrors,
|
|
87
|
+
CreateStoreEditOrderResponse,
|
|
88
|
+
CreateStoreEditOrderResponses,
|
|
89
|
+
CreateStoreError,
|
|
90
|
+
CreateStoreErrors,
|
|
91
|
+
CreateStoreProductData,
|
|
92
|
+
CreateStoreProductError,
|
|
93
|
+
CreateStoreProductErrors,
|
|
94
|
+
CreateStoreProductResponse,
|
|
95
|
+
CreateStoreProductResponses,
|
|
96
|
+
CreateStoreRenewOrderData,
|
|
97
|
+
CreateStoreRenewOrderError,
|
|
98
|
+
CreateStoreRenewOrderErrors,
|
|
99
|
+
CreateStoreRenewOrderResponse,
|
|
100
|
+
CreateStoreRenewOrderResponses,
|
|
101
|
+
CreateStoreResponse,
|
|
102
|
+
CreateStoreResponses,
|
|
103
|
+
DefaultError,
|
|
104
|
+
DeleteStoreCouponData,
|
|
105
|
+
DeleteStoreCouponError,
|
|
106
|
+
DeleteStoreCouponErrors,
|
|
107
|
+
DeleteStoreCouponResponse,
|
|
108
|
+
DeleteStoreCouponResponses,
|
|
109
|
+
DeleteStoreDiscordPanelData,
|
|
110
|
+
DeleteStoreDiscordPanelError,
|
|
111
|
+
DeleteStoreDiscordPanelErrors,
|
|
112
|
+
DeleteStoreDiscordPanelResponse,
|
|
113
|
+
DeleteStoreDiscordPanelResponses,
|
|
114
|
+
DeleteStoreDiscordServerData,
|
|
115
|
+
DeleteStoreDiscordServerError,
|
|
116
|
+
DeleteStoreDiscordServerErrors,
|
|
117
|
+
DeleteStoreDiscordServerResponse,
|
|
118
|
+
DeleteStoreDiscordServerResponses,
|
|
119
|
+
DeleteStoreMediaData,
|
|
120
|
+
DeleteStoreMediaError,
|
|
121
|
+
DeleteStoreMediaErrors,
|
|
122
|
+
DeleteStoreMediaResponse,
|
|
123
|
+
DeleteStoreMediaResponses,
|
|
124
|
+
DeleteStoreProductData,
|
|
125
|
+
DeleteStoreProductError,
|
|
126
|
+
DeleteStoreProductErrors,
|
|
127
|
+
DeleteStoreProductResponse,
|
|
128
|
+
DeleteStoreProductResponses,
|
|
129
|
+
EditStoreModeratorData,
|
|
130
|
+
EditStoreModeratorError,
|
|
131
|
+
EditStoreModeratorErrors,
|
|
132
|
+
EditStoreModeratorResponse,
|
|
133
|
+
EditStoreModeratorResponses,
|
|
134
|
+
EditUserData,
|
|
135
|
+
EditUserError,
|
|
136
|
+
EditUserErrors,
|
|
137
|
+
EditUserResponse,
|
|
138
|
+
EditUserResponses,
|
|
139
|
+
GetApiReferenceData,
|
|
140
|
+
GetApiReferenceResponse,
|
|
141
|
+
GetApiReferenceResponses,
|
|
142
|
+
GetServiceApiSchemaData,
|
|
143
|
+
GetServiceApiSchemaResponses,
|
|
144
|
+
GetServiceDataData,
|
|
145
|
+
GetServiceDataResponse,
|
|
146
|
+
GetServiceDataResponses,
|
|
147
|
+
GetServiceHealthData,
|
|
148
|
+
GetServiceHealthResponse,
|
|
149
|
+
GetServiceHealthResponses,
|
|
150
|
+
GetStoreCouponData,
|
|
151
|
+
GetStoreCouponError,
|
|
152
|
+
GetStoreCouponErrors,
|
|
153
|
+
GetStoreCouponResponses,
|
|
154
|
+
GetStoreCouponsData,
|
|
155
|
+
GetStoreCouponsError,
|
|
156
|
+
GetStoreCouponsErrors,
|
|
157
|
+
GetStoreCouponsResponses,
|
|
158
|
+
GetStoreData,
|
|
159
|
+
GetStoreDiscordBotData,
|
|
160
|
+
GetStoreDiscordBotError,
|
|
161
|
+
GetStoreDiscordBotErrors,
|
|
162
|
+
GetStoreDiscordBotResponse,
|
|
163
|
+
GetStoreDiscordBotResponses,
|
|
164
|
+
GetStoreDiscordPanelsData,
|
|
165
|
+
GetStoreDiscordPanelsError,
|
|
166
|
+
GetStoreDiscordPanelsErrors,
|
|
167
|
+
GetStoreDiscordPanelsResponse,
|
|
168
|
+
GetStoreDiscordPanelsResponses,
|
|
169
|
+
GetStoreDiscordServersData,
|
|
170
|
+
GetStoreDiscordServersError,
|
|
171
|
+
GetStoreDiscordServersErrors,
|
|
172
|
+
GetStoreDiscordServersResponses,
|
|
173
|
+
GetStoreError,
|
|
174
|
+
GetStoreErrors,
|
|
175
|
+
GetStoreProductData,
|
|
176
|
+
GetStoreProductError,
|
|
177
|
+
GetStoreProductErrors,
|
|
178
|
+
GetStoreProductResponse,
|
|
179
|
+
GetStoreProductResponses,
|
|
180
|
+
GetStoreProductStockData,
|
|
181
|
+
GetStoreProductStockError,
|
|
182
|
+
GetStoreProductStockErrors,
|
|
183
|
+
GetStoreProductStockResponse,
|
|
184
|
+
GetStoreProductStockResponses,
|
|
185
|
+
GetStoreRankingCustomersData,
|
|
186
|
+
GetStoreRankingCustomersError,
|
|
187
|
+
GetStoreRankingCustomersErrors,
|
|
188
|
+
GetStoreRankingCustomersResponse,
|
|
189
|
+
GetStoreRankingCustomersResponses,
|
|
190
|
+
GetStoreResponse,
|
|
191
|
+
GetStoreResponses,
|
|
192
|
+
GetStoresData,
|
|
193
|
+
GetStoresError,
|
|
194
|
+
GetStoresErrors,
|
|
195
|
+
GetStoresResponse,
|
|
196
|
+
GetStoresResponses,
|
|
197
|
+
GetStoreStatsProductsData,
|
|
198
|
+
GetStoreStatsProductsError,
|
|
199
|
+
GetStoreStatsProductsErrors,
|
|
200
|
+
GetStoreStatsProductsResponse,
|
|
201
|
+
GetStoreStatsProductsResponses,
|
|
202
|
+
GetTransactionData,
|
|
203
|
+
GetTransactionError,
|
|
204
|
+
GetTransactionErrors,
|
|
205
|
+
GetTransactionResponse,
|
|
206
|
+
GetTransactionResponses,
|
|
207
|
+
GetUserByIdData,
|
|
208
|
+
GetUserByIdError,
|
|
209
|
+
GetUserByIdErrors,
|
|
210
|
+
GetUserByIdResponse,
|
|
211
|
+
GetUserByIdResponses,
|
|
212
|
+
GetUserData,
|
|
213
|
+
GetUserError,
|
|
214
|
+
GetUserErrors,
|
|
215
|
+
GetUserResponse,
|
|
216
|
+
GetUserResponses,
|
|
217
|
+
ListStoreProductsData,
|
|
218
|
+
ListStoreProductsError,
|
|
219
|
+
ListStoreProductsErrors,
|
|
220
|
+
ListStoreProductsResponse,
|
|
221
|
+
ListStoreProductsResponses,
|
|
222
|
+
ListTransactionsData,
|
|
223
|
+
ListTransactionsError,
|
|
224
|
+
ListTransactionsErrors,
|
|
225
|
+
ListTransactionsResponse,
|
|
226
|
+
ListTransactionsResponses,
|
|
227
|
+
PostStoreDiscordPanelMessageData,
|
|
228
|
+
PostStoreDiscordPanelMessageError,
|
|
229
|
+
PostStoreDiscordPanelMessageErrors,
|
|
230
|
+
PostStoreDiscordPanelMessageResponses,
|
|
231
|
+
PostStoreProductDiscordMessageData,
|
|
232
|
+
PostStoreProductDiscordMessageError,
|
|
233
|
+
PostStoreProductDiscordMessageErrors,
|
|
234
|
+
PostStoreProductDiscordMessageResponses,
|
|
235
|
+
RemoveStoreModeratorData,
|
|
236
|
+
RemoveStoreModeratorError,
|
|
237
|
+
RemoveStoreModeratorErrors,
|
|
238
|
+
RemoveStoreModeratorResponse,
|
|
239
|
+
RemoveStoreModeratorResponses,
|
|
240
|
+
SetupEfiData,
|
|
241
|
+
SetupEfiError,
|
|
242
|
+
SetupEfiErrors,
|
|
243
|
+
SetupEfiResponse,
|
|
244
|
+
SetupEfiResponses,
|
|
245
|
+
SetupWebhookData,
|
|
246
|
+
SetupWebhookError,
|
|
247
|
+
SetupWebhookErrors,
|
|
248
|
+
SetupWebhookResponse,
|
|
249
|
+
SetupWebhookResponses,
|
|
250
|
+
UpdatePaymentMethodData,
|
|
251
|
+
UpdatePaymentMethodError,
|
|
252
|
+
UpdatePaymentMethodErrors,
|
|
253
|
+
UpdatePaymentMethodResponse,
|
|
254
|
+
UpdatePaymentMethodResponses,
|
|
255
|
+
UpdatePixKeyData,
|
|
256
|
+
UpdatePixKeyError,
|
|
257
|
+
UpdatePixKeyErrors,
|
|
258
|
+
UpdatePixKeyResponse,
|
|
259
|
+
UpdatePixKeyResponses,
|
|
260
|
+
UpdateStoreCouponData,
|
|
261
|
+
UpdateStoreCouponError,
|
|
262
|
+
UpdateStoreCouponErrors,
|
|
263
|
+
UpdateStoreCouponResponse,
|
|
264
|
+
UpdateStoreCouponResponses,
|
|
265
|
+
UpdateStoreData,
|
|
266
|
+
UpdateStoreDiscordBotTokenData,
|
|
267
|
+
UpdateStoreDiscordBotTokenError,
|
|
268
|
+
UpdateStoreDiscordBotTokenErrors,
|
|
269
|
+
UpdateStoreDiscordBotTokenResponse,
|
|
270
|
+
UpdateStoreDiscordBotTokenResponses,
|
|
271
|
+
UpdateStoreDiscordChannelsData,
|
|
272
|
+
UpdateStoreDiscordChannelsError,
|
|
273
|
+
UpdateStoreDiscordChannelsErrors,
|
|
274
|
+
UpdateStoreDiscordChannelsResponse,
|
|
275
|
+
UpdateStoreDiscordChannelsResponses,
|
|
276
|
+
UpdateStoreDiscordPanelData,
|
|
277
|
+
UpdateStoreDiscordPanelError,
|
|
278
|
+
UpdateStoreDiscordPanelErrors,
|
|
279
|
+
UpdateStoreDiscordPanelResponse,
|
|
280
|
+
UpdateStoreDiscordPanelResponses,
|
|
281
|
+
UpdateStoreError,
|
|
282
|
+
UpdateStoreErrors,
|
|
283
|
+
UpdateStoreProductData,
|
|
284
|
+
UpdateStoreProductError,
|
|
285
|
+
UpdateStoreProductErrors,
|
|
286
|
+
UpdateStoreProductResponse,
|
|
287
|
+
UpdateStoreProductResponses,
|
|
288
|
+
UpdateStoreProductStockData,
|
|
289
|
+
UpdateStoreProductStockError,
|
|
290
|
+
UpdateStoreProductStockErrors,
|
|
291
|
+
UpdateStoreProductStockItemData,
|
|
292
|
+
UpdateStoreProductStockItemError,
|
|
293
|
+
UpdateStoreProductStockItemErrors,
|
|
294
|
+
UpdateStoreProductStockItemResponse,
|
|
295
|
+
UpdateStoreProductStockItemResponses,
|
|
296
|
+
UpdateStoreProductStockResponse,
|
|
297
|
+
UpdateStoreProductStockResponses,
|
|
298
|
+
UpdateStoreResponse,
|
|
299
|
+
UpdateStoreResponses,
|
|
300
|
+
UpdateTransactionData,
|
|
301
|
+
UpdateTransactionError,
|
|
302
|
+
UpdateTransactionErrors,
|
|
303
|
+
UpdateTransactionResponse,
|
|
304
|
+
UpdateTransactionResponses,
|
|
305
|
+
UpdateUserAvatarData,
|
|
306
|
+
UpdateUserAvatarError,
|
|
307
|
+
UpdateUserAvatarErrors,
|
|
308
|
+
UpdateUserAvatarResponse,
|
|
309
|
+
UpdateUserAvatarResponses,
|
|
310
|
+
UploadStoreMediaData,
|
|
311
|
+
UploadStoreMediaError,
|
|
312
|
+
UploadStoreMediaErrors,
|
|
313
|
+
UploadStoreMediaResponse,
|
|
314
|
+
UploadStoreMediaResponses,
|
|
315
|
+
WalletBalanceData,
|
|
316
|
+
WalletBalanceError,
|
|
317
|
+
WalletBalanceErrors,
|
|
318
|
+
WalletBalanceResponse,
|
|
319
|
+
WalletBalanceResponses,
|
|
320
|
+
WalletWithdrawData,
|
|
321
|
+
WalletWithdrawError,
|
|
322
|
+
WalletWithdrawErrors,
|
|
323
|
+
WalletWithdrawResponse,
|
|
324
|
+
WalletWithdrawResponses,
|
|
325
|
+
} from "./types.gen";
|