entity-client 1.0.17 → 1.0.18
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/README.md +362 -362
- package/dist/EntityAppServerApi.d.ts +96 -96
- package/dist/EntityAppServerApi.js.map +1 -1
- package/dist/EntityServerApi.d.ts +48 -48
- package/dist/EntityServerApi.js.map +1 -1
- package/dist/client/base.d.ts +7 -7
- package/dist/client/base.js +1 -1
- package/dist/client/base.js.map +3 -3
- package/dist/client/hmac.js.map +1 -1
- package/dist/client/packet.js.map +1 -1
- package/dist/client/request.d.ts +1 -0
- package/dist/client/request.js +1 -1
- package/dist/client/request.js.map +3 -3
- package/dist/client/utils.js.map +1 -1
- package/dist/hooks/useEntityAppServer.js.map +1 -1
- package/dist/hooks/useEntityClient.js.map +1 -1
- package/dist/hooks/useEntityServer.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +3 -3
- package/dist/mixins/app/index.js.map +1 -1
- package/dist/mixins/app/plugins/alimtalk.d.ts +6 -6
- package/dist/mixins/app/plugins/alimtalk.js.map +1 -1
- package/dist/mixins/app/plugins/friendtalk.d.ts +6 -6
- package/dist/mixins/app/plugins/friendtalk.js.map +1 -1
- package/dist/mixins/app/plugins/holidays.d.ts +6 -6
- package/dist/mixins/app/plugins/holidays.js.map +1 -1
- package/dist/mixins/app/plugins/identity.d.ts +6 -6
- package/dist/mixins/app/plugins/identity.js.map +1 -1
- package/dist/mixins/app/plugins/index.js.map +1 -1
- package/dist/mixins/app/plugins/llm.d.ts +6 -6
- package/dist/mixins/app/plugins/llm.js.map +1 -1
- package/dist/mixins/app/plugins/ocr.d.ts +6 -6
- package/dist/mixins/app/plugins/ocr.js.map +1 -1
- package/dist/mixins/app/plugins/pg.d.ts +6 -6
- package/dist/mixins/app/plugins/pg.js.map +1 -1
- package/dist/mixins/app/plugins/push.d.ts +6 -6
- package/dist/mixins/app/plugins/push.js.map +1 -1
- package/dist/mixins/app/plugins/sms.d.ts +6 -6
- package/dist/mixins/app/plugins/sms.js.map +1 -1
- package/dist/mixins/app/plugins/taxinvoice.d.ts +6 -6
- package/dist/mixins/app/plugins/taxinvoice.js.map +1 -1
- package/dist/mixins/app/routes/account.d.ts +6 -6
- package/dist/mixins/app/routes/account.js.map +1 -1
- package/dist/mixins/app/routes/board.d.ts +6 -6
- package/dist/mixins/app/routes/board.js.map +1 -1
- package/dist/mixins/app/routes/email-verify.d.ts +6 -6
- package/dist/mixins/app/routes/email-verify.js.map +1 -1
- package/dist/mixins/app/routes/oauth.d.ts +6 -6
- package/dist/mixins/app/routes/oauth.js.map +1 -1
- package/dist/mixins/app/routes/password-reset.d.ts +6 -6
- package/dist/mixins/app/routes/password-reset.js.map +1 -1
- package/dist/mixins/app/routes/two-factor.d.ts +6 -6
- package/dist/mixins/app/routes/two-factor.js.map +1 -1
- package/dist/mixins/server/admin.d.ts +6 -6
- package/dist/mixins/server/admin.js.map +1 -1
- package/dist/mixins/server/auth.d.ts +6 -6
- package/dist/mixins/server/auth.js.map +1 -1
- package/dist/mixins/server/entity.d.ts +6 -6
- package/dist/mixins/server/entity.js.map +1 -1
- package/dist/mixins/server/file.d.ts +6 -6
- package/dist/mixins/server/file.js.map +1 -1
- package/dist/mixins/server/index.js.map +1 -1
- package/dist/mixins/server/push.d.ts +6 -6
- package/dist/mixins/server/push.js.map +1 -1
- package/dist/mixins/server/smtp.d.ts +6 -6
- package/dist/mixins/server/smtp.js.map +1 -1
- package/dist/mixins/server/transaction.d.ts +6 -6
- package/dist/mixins/server/transaction.js.map +1 -1
- package/dist/mixins/server/utils.d.ts +6 -6
- package/dist/mixins/server/utils.js.map +1 -1
- package/dist/packet.js.map +1 -1
- package/dist/react.js +1 -1
- package/dist/react.js.map +3 -3
- package/package.json +57 -57
|
@@ -75,13 +75,13 @@ declare const EntityAppServerApi_base: {
|
|
|
75
75
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
76
76
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
77
77
|
get http(): {
|
|
78
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
79
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
80
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
81
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
82
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
78
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
79
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
80
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
81
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
82
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
83
83
|
};
|
|
84
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
84
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
85
85
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
86
86
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
87
87
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -159,13 +159,13 @@ declare const EntityAppServerApi_base: {
|
|
|
159
159
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
160
160
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
161
161
|
get http(): {
|
|
162
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
163
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
164
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
165
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
166
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
162
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
163
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
164
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
165
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
166
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
167
167
|
};
|
|
168
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
168
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
169
169
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
170
170
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
171
171
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -246,13 +246,13 @@ declare const EntityAppServerApi_base: {
|
|
|
246
246
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
247
247
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
248
248
|
get http(): {
|
|
249
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
250
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
251
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
252
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
253
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
249
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
250
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
251
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
252
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
253
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
254
254
|
};
|
|
255
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
255
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
256
256
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
257
257
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
258
258
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -334,13 +334,13 @@ declare const EntityAppServerApi_base: {
|
|
|
334
334
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
335
335
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
336
336
|
get http(): {
|
|
337
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
338
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
339
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
340
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
341
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
337
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
338
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
339
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
340
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
341
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
342
342
|
};
|
|
343
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
343
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
344
344
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
345
345
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
346
346
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -424,13 +424,13 @@ declare const EntityAppServerApi_base: {
|
|
|
424
424
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
425
425
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
426
426
|
get http(): {
|
|
427
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
428
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
429
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
430
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
431
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
427
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
428
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
429
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
430
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
431
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
432
432
|
};
|
|
433
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
433
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
434
434
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
435
435
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
436
436
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -513,13 +513,13 @@ declare const EntityAppServerApi_base: {
|
|
|
513
513
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
514
514
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
515
515
|
get http(): {
|
|
516
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
517
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
518
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
519
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
520
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
516
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
517
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
518
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
519
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
520
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
521
521
|
};
|
|
522
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
522
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
523
523
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
524
524
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
525
525
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -604,13 +604,13 @@ declare const EntityAppServerApi_base: {
|
|
|
604
604
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
605
605
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
606
606
|
get http(): {
|
|
607
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
608
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
609
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
610
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
611
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
607
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
608
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
609
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
610
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
611
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
612
612
|
};
|
|
613
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
613
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
614
614
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
615
615
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
616
616
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -722,13 +722,13 @@ declare const EntityAppServerApi_base: {
|
|
|
722
722
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
723
723
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
724
724
|
get http(): {
|
|
725
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
726
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
727
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
728
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
729
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
725
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
726
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
727
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
728
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
729
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
730
730
|
};
|
|
731
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
731
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
732
732
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
733
733
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
734
734
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -809,13 +809,13 @@ declare const EntityAppServerApi_base: {
|
|
|
809
809
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
810
810
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
811
811
|
get http(): {
|
|
812
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
813
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
814
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
815
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
816
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
812
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
813
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
814
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
815
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
816
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
817
817
|
};
|
|
818
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
818
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
819
819
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
820
820
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
821
821
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -899,13 +899,13 @@ declare const EntityAppServerApi_base: {
|
|
|
899
899
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
900
900
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
901
901
|
get http(): {
|
|
902
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
903
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
904
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
905
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
906
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
902
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
903
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
904
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
905
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
906
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
907
907
|
};
|
|
908
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
908
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
909
909
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
910
910
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
911
911
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -988,13 +988,13 @@ declare const EntityAppServerApi_base: {
|
|
|
988
988
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
989
989
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
990
990
|
get http(): {
|
|
991
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
992
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
993
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
994
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
995
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
991
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
992
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
993
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
994
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
995
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
996
996
|
};
|
|
997
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
997
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
998
998
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
999
999
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
1000
1000
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -1078,13 +1078,13 @@ declare const EntityAppServerApi_base: {
|
|
|
1078
1078
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
1079
1079
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
1080
1080
|
get http(): {
|
|
1081
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1082
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1083
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1084
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1085
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1081
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1082
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1083
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1084
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1085
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1086
1086
|
};
|
|
1087
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1087
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1088
1088
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
1089
1089
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
1090
1090
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -1166,13 +1166,13 @@ declare const EntityAppServerApi_base: {
|
|
|
1166
1166
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
1167
1167
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
1168
1168
|
get http(): {
|
|
1169
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1170
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1171
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1172
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1173
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1169
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1170
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1171
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1172
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1173
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1174
1174
|
};
|
|
1175
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1175
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1176
1176
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
1177
1177
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
1178
1178
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -1254,13 +1254,13 @@ declare const EntityAppServerApi_base: {
|
|
|
1254
1254
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
1255
1255
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
1256
1256
|
get http(): {
|
|
1257
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1258
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1259
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1260
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1261
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1257
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1258
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1259
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1260
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1261
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1262
1262
|
};
|
|
1263
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1263
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1264
1264
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
1265
1265
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
1266
1266
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -1370,13 +1370,13 @@ declare const EntityAppServerApi_base: {
|
|
|
1370
1370
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
1371
1371
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
1372
1372
|
get http(): {
|
|
1373
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1374
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1375
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1376
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1377
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1373
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1374
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1375
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1376
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1377
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1378
1378
|
};
|
|
1379
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1379
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1380
1380
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
1381
1381
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
1382
1382
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -1463,13 +1463,13 @@ declare const EntityAppServerApi_base: {
|
|
|
1463
1463
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
1464
1464
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
1465
1465
|
get http(): {
|
|
1466
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1467
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1468
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1469
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1470
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1466
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1467
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1468
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1469
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1470
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1471
1471
|
};
|
|
1472
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
1472
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
1473
1473
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
1474
1474
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
1475
1475
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/EntityAppServerApi.ts"],
|
|
4
|
-
"sourcesContent": ["import { EntityServerApi } from \"./EntityServerApi.js\";\
|
|
4
|
+
"sourcesContent": ["import { EntityServerApi } from \"./EntityServerApi.js\";\nimport {\n AccountAppMixin,\n BoardMixin,\n EmailVerifyMixin,\n OAuthMixin,\n PasswordResetMixin,\n TwoFactorMixin,\n} from \"./mixins/app/index.js\";\nimport {\n AlimtalkMixin,\n AppPushMixin,\n FriendtalkMixin,\n HolidaysMixin,\n IdentityMixin,\n LlmMixin,\n OcrMixin,\n PgMixin,\n SmsMixin,\n TaxinvoiceMixin,\n} from \"./mixins/app/plugins/index.js\";\n\nexport class EntityAppServerApi extends AlimtalkMixin(\n FriendtalkMixin(\n SmsMixin(\n AppPushMixin(\n PgMixin(\n TaxinvoiceMixin(\n OcrMixin(\n LlmMixin(\n IdentityMixin(\n HolidaysMixin(\n OAuthMixin(\n TwoFactorMixin(\n PasswordResetMixin(\n EmailVerifyMixin(\n BoardMixin(\n AccountAppMixin(\n EntityServerApi,\n ),\n ),\n ),\n ),\n ),\n ),\n ),\n ),\n ),\n ),\n ),\n ),\n ),\n ),\n ),\n) {}\n"],
|
|
5
5
|
"mappings": "AAAA,OAAS,mBAAAA,MAAuB,uBAChC,OACI,mBAAAC,EACA,cAAAC,EACA,oBAAAC,EACA,cAAAC,EACA,sBAAAC,EACA,kBAAAC,MACG,wBACP,OACI,iBAAAC,EACA,gBAAAC,EACA,mBAAAC,EACA,iBAAAC,EACA,iBAAAC,EACA,YAAAC,EACA,YAAAC,EACA,WAAAC,EACA,YAAAC,EACA,mBAAAC,MACG,gCAEA,MAAMC,UAA2BV,EACpCE,EACIM,EACIP,EACIM,EACIE,EACIH,EACID,EACID,EACID,EACIN,EACIE,EACID,EACIF,EACID,EACID,EACID,CACJ,CACJ,CACJ,CACJ,CACJ,CACJ,CACJ,CACJ,CACJ,CACJ,CACJ,CACJ,CACJ,CACJ,CACJ,CACJ,CAAE,CAAC",
|
|
6
6
|
"names": ["EntityServerApi", "AccountAppMixin", "BoardMixin", "EmailVerifyMixin", "OAuthMixin", "PasswordResetMixin", "TwoFactorMixin", "AlimtalkMixin", "AppPushMixin", "FriendtalkMixin", "HolidaysMixin", "IdentityMixin", "LlmMixin", "OcrMixin", "PgMixin", "SmsMixin", "TaxinvoiceMixin", "EntityAppServerApi"]
|
|
7
7
|
}
|
|
@@ -106,13 +106,13 @@ declare const EntityServerApi_base: {
|
|
|
106
106
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
107
107
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
108
108
|
get http(): {
|
|
109
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
110
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
111
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
112
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
113
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
109
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
110
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
111
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
112
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
113
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
114
114
|
};
|
|
115
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
115
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
116
116
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
117
117
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
118
118
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -192,13 +192,13 @@ declare const EntityServerApi_base: {
|
|
|
192
192
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
193
193
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
194
194
|
get http(): {
|
|
195
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
196
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
197
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
198
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
199
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
195
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
196
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
197
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
198
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
199
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
200
200
|
};
|
|
201
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
201
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
202
202
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
203
203
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
204
204
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -307,13 +307,13 @@ declare const EntityServerApi_base: {
|
|
|
307
307
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
308
308
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
309
309
|
get http(): {
|
|
310
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
311
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
312
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
313
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
314
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
310
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
311
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
312
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
313
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
314
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
315
315
|
};
|
|
316
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
316
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
317
317
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
318
318
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
319
319
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -399,13 +399,13 @@ declare const EntityServerApi_base: {
|
|
|
399
399
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
400
400
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
401
401
|
get http(): {
|
|
402
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
403
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
404
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
405
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
406
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
402
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
403
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
404
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
405
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
406
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
407
407
|
};
|
|
408
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
408
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
409
409
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
410
410
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
411
411
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -509,13 +509,13 @@ declare const EntityServerApi_base: {
|
|
|
509
509
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
510
510
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
511
511
|
get http(): {
|
|
512
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
513
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
514
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
515
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
516
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
512
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
513
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
514
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
515
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
516
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
517
517
|
};
|
|
518
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
518
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
519
519
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
520
520
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
521
521
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -654,13 +654,13 @@ declare const EntityServerApi_base: {
|
|
|
654
654
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
655
655
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
656
656
|
get http(): {
|
|
657
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
658
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
659
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
660
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
661
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
657
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
658
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
659
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
660
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
661
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
662
662
|
};
|
|
663
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
663
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
664
664
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
665
665
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
666
666
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -803,13 +803,13 @@ declare const EntityServerApi_base: {
|
|
|
803
803
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
804
804
|
prepareRequest(_withAuth: boolean): Promise<void>;
|
|
805
805
|
get http(): {
|
|
806
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
807
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
808
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
809
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
810
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
806
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
807
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
808
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
809
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
810
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
811
811
|
};
|
|
812
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
812
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
813
813
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
814
814
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
815
815
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -918,13 +918,13 @@ declare const EntityServerApi_base: {
|
|
|
918
918
|
readRequestBody<T = Record<string, unknown>>(body: ArrayBuffer | Uint8Array | string | T | null | undefined, contentType?: string, requireEncrypted?: boolean): T;
|
|
919
919
|
get reqOpts(): import("./client/request.js").RequestOptions;
|
|
920
920
|
get http(): {
|
|
921
|
-
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
922
|
-
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
923
|
-
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
924
|
-
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
925
|
-
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
921
|
+
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
922
|
+
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
923
|
+
put<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
924
|
+
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
925
|
+
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
926
926
|
};
|
|
927
|
-
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string
|
|
927
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>, requestConfig?: import("./client/request.js").EntityRequestConfig): Promise<T>;
|
|
928
928
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
929
929
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
930
930
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/EntityServerApi.ts"],
|
|
4
|
-
"sourcesContent": ["/**\
|
|
4
|
+
"sourcesContent": ["/**\n * @file EntityServerApi.ts\n * entity-server core route\uC6A9 Mixin \uC870\uD569 \uD074\uB77C\uC774\uC5B8\uD2B8.\n *\n * \uC808(section)\uBCC4 \uAD6C\uD604:\n * src/client/base.ts \u2014 \uC0C1\uD0DC\u00B7\uC0DD\uC131\uC790\u00B7\uACF5\uD1B5 \uD5EC\uD37C\n * src/mixins/server/* \u2014 entity-server core route mixin\n * src/mixins/app/* \u2014 entity-app-server plugin mixin\n */\nimport { EntityServerClientBase } from \"./client/base.js\";\nimport {\n AdminMixin,\n AuthMixin,\n EntityMixin,\n FileMixin,\n PushMixin,\n SmtpMixin,\n TransactionMixin,\n UtilsMixin,\n} from \"./mixins/server/index.js\";\n\n// \u2500\u2500\u2500 Composed class \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n\nexport class EntityServerApi extends UtilsMixin(\n TransactionMixin(\n FileMixin(\n SmtpMixin(\n PushMixin(\n AdminMixin(EntityMixin(AuthMixin(EntityServerClientBase))),\n ),\n ),\n ),\n ),\n) {}\n"],
|
|
5
5
|
"mappings": "AASA,OAAS,0BAAAA,MAA8B,mBACvC,OACI,cAAAC,EACA,aAAAC,EACA,eAAAC,EACA,aAAAC,EACA,aAAAC,EACA,aAAAC,EACA,oBAAAC,EACA,cAAAC,MACG,2BAIA,MAAMC,UAAwBD,EACjCD,EACIH,EACIE,EACID,EACIJ,EAAWE,EAAYD,EAAUF,CAAsB,CAAC,CAAC,CAC7D,CACJ,CACJ,CACJ,CACJ,CAAE,CAAC",
|
|
6
6
|
"names": ["EntityServerClientBase", "AdminMixin", "AuthMixin", "EntityMixin", "FileMixin", "PushMixin", "SmtpMixin", "TransactionMixin", "UtilsMixin", "EntityServerApi"]
|
|
7
7
|
}
|