@djangocfg/ext-payments 1.0.6 → 1.0.8
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/dist/config.cjs +3 -2
- package/dist/config.js +3 -2
- package/dist/hooks.cjs +559 -543
- package/dist/hooks.js +558 -543
- package/dist/index.cjs +559 -543
- package/dist/index.d.cts +0 -97
- package/dist/index.d.ts +0 -97
- package/dist/index.js +558 -543
- package/package.json +9 -8
- package/src/api/generated/ext_payments/CLAUDE.md +76 -0
- package/src/api/generated/ext_payments/_utils/fetchers/ext_payments__payments.ts +1 -8
- package/src/api/generated/ext_payments/_utils/fetchers/index.ts +1 -8
- package/src/api/generated/ext_payments/_utils/hooks/ext_payments__payments.ts +1 -8
- package/src/api/generated/ext_payments/_utils/hooks/index.ts +1 -8
- package/src/api/generated/ext_payments/_utils/schemas/index.ts +1 -8
- package/src/api/generated/ext_payments/api-instance.ts +1 -8
- package/src/api/generated/ext_payments/enums.ts +1 -8
- package/src/api/generated/ext_payments/errors.ts +1 -8
- package/src/api/generated/ext_payments/ext_payments__payments/index.ts +1 -8
- package/src/api/generated/ext_payments/ext_payments__payments/models.ts +1 -8
- package/src/api/generated/ext_payments/http.ts +1 -8
- package/src/api/generated/ext_payments/index.ts +1 -8
- package/src/api/generated/ext_payments/logger.ts +1 -8
- package/src/api/generated/ext_payments/retry.ts +1 -8
- package/src/api/generated/ext_payments/storage.ts +1 -8
- package/src/api/generated/ext_payments/validation-events.ts +1 -8
- package/src/api/index.ts +2 -1
- package/src/config.ts +1 -0
- package/src/contexts/BalancesContext.tsx +2 -1
- package/src/contexts/CurrenciesContext.tsx +2 -1
- package/src/contexts/OverviewContext.tsx +5 -5
- package/src/contexts/PaymentsContext.tsx +6 -5
- package/src/contexts/PaymentsExtensionProvider.tsx +3 -2
- package/src/contexts/RootPaymentsContext.tsx +2 -1
- package/src/layouts/PaymentsLayout/PaymentsLayout.tsx +5 -7
- package/src/layouts/PaymentsLayout/components/CreatePaymentDialog.tsx +10 -27
- package/src/layouts/PaymentsLayout/components/PaymentDetailsDialog.tsx +15 -18
- package/src/layouts/PaymentsLayout/views/overview/components/BalanceCard.tsx +6 -13
- package/src/layouts/PaymentsLayout/views/overview/components/RecentPayments.tsx +8 -11
- package/src/layouts/PaymentsLayout/views/overview/index.tsx +1 -0
- package/src/layouts/PaymentsLayout/views/payments/components/PaymentsList.tsx +43 -42
- package/src/layouts/PaymentsLayout/views/payments/index.tsx +1 -0
- package/src/layouts/PaymentsLayout/views/transactions/components/TransactionsList.tsx +71 -84
- package/src/layouts/PaymentsLayout/views/transactions/index.tsx +1 -0
package/dist/index.d.cts
CHANGED
|
@@ -3,14 +3,6 @@ import React from 'react';
|
|
|
3
3
|
import { z, ZodError } from 'zod';
|
|
4
4
|
import * as _djangocfg_ext_base from '@djangocfg/ext-base';
|
|
5
5
|
|
|
6
|
-
/**
|
|
7
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
8
|
-
*
|
|
9
|
-
* This file is automatically generated by DjangoCFG.
|
|
10
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
11
|
-
*
|
|
12
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
13
|
-
*/
|
|
14
6
|
/**
|
|
15
7
|
* Current payment status
|
|
16
8
|
* * `pending` - Pending
|
|
@@ -83,15 +75,6 @@ declare namespace enums {
|
|
|
83
75
|
export { enums_PaymentDetailStatus as PaymentDetailStatus, enums_PaymentListStatus as PaymentListStatus, enums_TransactionTransactionType as TransactionTransactionType };
|
|
84
76
|
}
|
|
85
77
|
|
|
86
|
-
/**
|
|
87
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
88
|
-
*
|
|
89
|
-
* This file is automatically generated by DjangoCFG.
|
|
90
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
91
|
-
*
|
|
92
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
93
|
-
*/
|
|
94
|
-
|
|
95
78
|
/**
|
|
96
79
|
* User balance serializer.
|
|
97
80
|
*
|
|
@@ -282,14 +265,6 @@ declare class ExtPaymentsPayments {
|
|
|
282
265
|
}): Promise<any>;
|
|
283
266
|
}
|
|
284
267
|
|
|
285
|
-
/**
|
|
286
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
287
|
-
*
|
|
288
|
-
* This file is automatically generated by DjangoCFG.
|
|
289
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
290
|
-
*
|
|
291
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
292
|
-
*/
|
|
293
268
|
/**
|
|
294
269
|
* HTTP Client Adapter Pattern
|
|
295
270
|
*
|
|
@@ -326,14 +301,6 @@ declare class FetchAdapter implements HttpClientAdapter {
|
|
|
326
301
|
request<T = any>(request: HttpRequest): Promise<HttpResponse<T>>;
|
|
327
302
|
}
|
|
328
303
|
|
|
329
|
-
/**
|
|
330
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
331
|
-
*
|
|
332
|
-
* This file is automatically generated by DjangoCFG.
|
|
333
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
334
|
-
*
|
|
335
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
336
|
-
*/
|
|
337
304
|
/**
|
|
338
305
|
* API Logger with Consola
|
|
339
306
|
* Beautiful console logging for API requests and responses
|
|
@@ -452,14 +419,6 @@ declare class APILogger {
|
|
|
452
419
|
withTag(tag: string): ConsolaInstance;
|
|
453
420
|
}
|
|
454
421
|
|
|
455
|
-
/**
|
|
456
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
457
|
-
*
|
|
458
|
-
* This file is automatically generated by DjangoCFG.
|
|
459
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
460
|
-
*
|
|
461
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
462
|
-
*/
|
|
463
422
|
/**
|
|
464
423
|
* Retry Configuration and Utilities
|
|
465
424
|
*
|
|
@@ -601,14 +560,6 @@ declare class APIClient {
|
|
|
601
560
|
private _makeRequest;
|
|
602
561
|
}
|
|
603
562
|
|
|
604
|
-
/**
|
|
605
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
606
|
-
*
|
|
607
|
-
* This file is automatically generated by DjangoCFG.
|
|
608
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
609
|
-
*
|
|
610
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
611
|
-
*/
|
|
612
563
|
/**
|
|
613
564
|
* Storage adapters for cross-platform token storage.
|
|
614
565
|
*
|
|
@@ -833,14 +784,6 @@ declare const TransactionSchema: z.ZodObject<{
|
|
|
833
784
|
*/
|
|
834
785
|
type Transaction = z.infer<typeof TransactionSchema>;
|
|
835
786
|
|
|
836
|
-
/**
|
|
837
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
838
|
-
*
|
|
839
|
-
* This file is automatically generated by DjangoCFG.
|
|
840
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
841
|
-
*
|
|
842
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
843
|
-
*/
|
|
844
787
|
/**
|
|
845
788
|
* Zod Schemas - Runtime validation and type inference
|
|
846
789
|
*
|
|
@@ -875,14 +818,6 @@ declare namespace index$1 {
|
|
|
875
818
|
export { type index$1_Balance as Balance, index$1_BalanceSchema as BalanceSchema, type index$1_Currency as Currency, index$1_CurrencySchema as CurrencySchema, type index$1_PaginatedPaymentListList as PaginatedPaymentListList, index$1_PaginatedPaymentListListSchema as PaginatedPaymentListListSchema, type index$1_PaymentDetail as PaymentDetail, index$1_PaymentDetailSchema as PaymentDetailSchema, type index$1_PaymentList as PaymentList, index$1_PaymentListSchema as PaymentListSchema, type index$1_Transaction as Transaction, index$1_TransactionSchema as TransactionSchema };
|
|
876
819
|
}
|
|
877
820
|
|
|
878
|
-
/**
|
|
879
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
880
|
-
*
|
|
881
|
-
* This file is automatically generated by DjangoCFG.
|
|
882
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
883
|
-
*
|
|
884
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
885
|
-
*/
|
|
886
821
|
/**
|
|
887
822
|
* Zod Validation Events - Browser CustomEvent integration
|
|
888
823
|
*
|
|
@@ -1020,14 +955,6 @@ declare function getPaymentsTransactionsList(params?: {
|
|
|
1020
955
|
type?: string;
|
|
1021
956
|
}, client?: any): Promise<any>;
|
|
1022
957
|
|
|
1023
|
-
/**
|
|
1024
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
1025
|
-
*
|
|
1026
|
-
* This file is automatically generated by DjangoCFG.
|
|
1027
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
1028
|
-
*
|
|
1029
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
1030
|
-
*/
|
|
1031
958
|
/**
|
|
1032
959
|
* Typed Fetchers - Universal API functions
|
|
1033
960
|
*
|
|
@@ -1067,14 +994,6 @@ declare namespace index {
|
|
|
1067
994
|
export { index_createPaymentsPaymentsConfirmCreate as createPaymentsPaymentsConfirmCreate, index_createPaymentsPaymentsCreateCreate as createPaymentsPaymentsCreateCreate, index_getPaymentsBalanceRetrieve as getPaymentsBalanceRetrieve, index_getPaymentsCurrenciesList as getPaymentsCurrenciesList, index_getPaymentsPaymentsList as getPaymentsPaymentsList, index_getPaymentsPaymentsRetrieve as getPaymentsPaymentsRetrieve, index_getPaymentsPaymentsStatusRetrieve as getPaymentsPaymentsStatusRetrieve, index_getPaymentsTransactionsList as getPaymentsTransactionsList };
|
|
1068
995
|
}
|
|
1069
996
|
|
|
1070
|
-
/**
|
|
1071
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
1072
|
-
*
|
|
1073
|
-
* This file is automatically generated by DjangoCFG.
|
|
1074
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
1075
|
-
*
|
|
1076
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
1077
|
-
*/
|
|
1078
997
|
/**
|
|
1079
998
|
* Global API Instance - Singleton configuration
|
|
1080
999
|
*
|
|
@@ -1158,14 +1077,6 @@ declare function clearAPITokens(): void;
|
|
|
1158
1077
|
*/
|
|
1159
1078
|
declare function resetAPI(): void;
|
|
1160
1079
|
|
|
1161
|
-
/**
|
|
1162
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
1163
|
-
*
|
|
1164
|
-
* This file is automatically generated by DjangoCFG.
|
|
1165
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
1166
|
-
*
|
|
1167
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
1168
|
-
*/
|
|
1169
1080
|
/**
|
|
1170
1081
|
* API Error Classes
|
|
1171
1082
|
*
|
|
@@ -1224,14 +1135,6 @@ declare class NetworkError extends Error {
|
|
|
1224
1135
|
constructor(message: string, url: string, originalError?: Error);
|
|
1225
1136
|
}
|
|
1226
1137
|
|
|
1227
|
-
/**
|
|
1228
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
1229
|
-
*
|
|
1230
|
-
* This file is automatically generated by DjangoCFG.
|
|
1231
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
1232
|
-
*
|
|
1233
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
1234
|
-
*/
|
|
1235
1138
|
/**
|
|
1236
1139
|
* Django CFG API - API Client with JWT Management
|
|
1237
1140
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -3,14 +3,6 @@ import React from 'react';
|
|
|
3
3
|
import { z, ZodError } from 'zod';
|
|
4
4
|
import * as _djangocfg_ext_base from '@djangocfg/ext-base';
|
|
5
5
|
|
|
6
|
-
/**
|
|
7
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
8
|
-
*
|
|
9
|
-
* This file is automatically generated by DjangoCFG.
|
|
10
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
11
|
-
*
|
|
12
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
13
|
-
*/
|
|
14
6
|
/**
|
|
15
7
|
* Current payment status
|
|
16
8
|
* * `pending` - Pending
|
|
@@ -83,15 +75,6 @@ declare namespace enums {
|
|
|
83
75
|
export { enums_PaymentDetailStatus as PaymentDetailStatus, enums_PaymentListStatus as PaymentListStatus, enums_TransactionTransactionType as TransactionTransactionType };
|
|
84
76
|
}
|
|
85
77
|
|
|
86
|
-
/**
|
|
87
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
88
|
-
*
|
|
89
|
-
* This file is automatically generated by DjangoCFG.
|
|
90
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
91
|
-
*
|
|
92
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
93
|
-
*/
|
|
94
|
-
|
|
95
78
|
/**
|
|
96
79
|
* User balance serializer.
|
|
97
80
|
*
|
|
@@ -282,14 +265,6 @@ declare class ExtPaymentsPayments {
|
|
|
282
265
|
}): Promise<any>;
|
|
283
266
|
}
|
|
284
267
|
|
|
285
|
-
/**
|
|
286
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
287
|
-
*
|
|
288
|
-
* This file is automatically generated by DjangoCFG.
|
|
289
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
290
|
-
*
|
|
291
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
292
|
-
*/
|
|
293
268
|
/**
|
|
294
269
|
* HTTP Client Adapter Pattern
|
|
295
270
|
*
|
|
@@ -326,14 +301,6 @@ declare class FetchAdapter implements HttpClientAdapter {
|
|
|
326
301
|
request<T = any>(request: HttpRequest): Promise<HttpResponse<T>>;
|
|
327
302
|
}
|
|
328
303
|
|
|
329
|
-
/**
|
|
330
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
331
|
-
*
|
|
332
|
-
* This file is automatically generated by DjangoCFG.
|
|
333
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
334
|
-
*
|
|
335
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
336
|
-
*/
|
|
337
304
|
/**
|
|
338
305
|
* API Logger with Consola
|
|
339
306
|
* Beautiful console logging for API requests and responses
|
|
@@ -452,14 +419,6 @@ declare class APILogger {
|
|
|
452
419
|
withTag(tag: string): ConsolaInstance;
|
|
453
420
|
}
|
|
454
421
|
|
|
455
|
-
/**
|
|
456
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
457
|
-
*
|
|
458
|
-
* This file is automatically generated by DjangoCFG.
|
|
459
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
460
|
-
*
|
|
461
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
462
|
-
*/
|
|
463
422
|
/**
|
|
464
423
|
* Retry Configuration and Utilities
|
|
465
424
|
*
|
|
@@ -601,14 +560,6 @@ declare class APIClient {
|
|
|
601
560
|
private _makeRequest;
|
|
602
561
|
}
|
|
603
562
|
|
|
604
|
-
/**
|
|
605
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
606
|
-
*
|
|
607
|
-
* This file is automatically generated by DjangoCFG.
|
|
608
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
609
|
-
*
|
|
610
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
611
|
-
*/
|
|
612
563
|
/**
|
|
613
564
|
* Storage adapters for cross-platform token storage.
|
|
614
565
|
*
|
|
@@ -833,14 +784,6 @@ declare const TransactionSchema: z.ZodObject<{
|
|
|
833
784
|
*/
|
|
834
785
|
type Transaction = z.infer<typeof TransactionSchema>;
|
|
835
786
|
|
|
836
|
-
/**
|
|
837
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
838
|
-
*
|
|
839
|
-
* This file is automatically generated by DjangoCFG.
|
|
840
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
841
|
-
*
|
|
842
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
843
|
-
*/
|
|
844
787
|
/**
|
|
845
788
|
* Zod Schemas - Runtime validation and type inference
|
|
846
789
|
*
|
|
@@ -875,14 +818,6 @@ declare namespace index$1 {
|
|
|
875
818
|
export { type index$1_Balance as Balance, index$1_BalanceSchema as BalanceSchema, type index$1_Currency as Currency, index$1_CurrencySchema as CurrencySchema, type index$1_PaginatedPaymentListList as PaginatedPaymentListList, index$1_PaginatedPaymentListListSchema as PaginatedPaymentListListSchema, type index$1_PaymentDetail as PaymentDetail, index$1_PaymentDetailSchema as PaymentDetailSchema, type index$1_PaymentList as PaymentList, index$1_PaymentListSchema as PaymentListSchema, type index$1_Transaction as Transaction, index$1_TransactionSchema as TransactionSchema };
|
|
876
819
|
}
|
|
877
820
|
|
|
878
|
-
/**
|
|
879
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
880
|
-
*
|
|
881
|
-
* This file is automatically generated by DjangoCFG.
|
|
882
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
883
|
-
*
|
|
884
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
885
|
-
*/
|
|
886
821
|
/**
|
|
887
822
|
* Zod Validation Events - Browser CustomEvent integration
|
|
888
823
|
*
|
|
@@ -1020,14 +955,6 @@ declare function getPaymentsTransactionsList(params?: {
|
|
|
1020
955
|
type?: string;
|
|
1021
956
|
}, client?: any): Promise<any>;
|
|
1022
957
|
|
|
1023
|
-
/**
|
|
1024
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
1025
|
-
*
|
|
1026
|
-
* This file is automatically generated by DjangoCFG.
|
|
1027
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
1028
|
-
*
|
|
1029
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
1030
|
-
*/
|
|
1031
958
|
/**
|
|
1032
959
|
* Typed Fetchers - Universal API functions
|
|
1033
960
|
*
|
|
@@ -1067,14 +994,6 @@ declare namespace index {
|
|
|
1067
994
|
export { index_createPaymentsPaymentsConfirmCreate as createPaymentsPaymentsConfirmCreate, index_createPaymentsPaymentsCreateCreate as createPaymentsPaymentsCreateCreate, index_getPaymentsBalanceRetrieve as getPaymentsBalanceRetrieve, index_getPaymentsCurrenciesList as getPaymentsCurrenciesList, index_getPaymentsPaymentsList as getPaymentsPaymentsList, index_getPaymentsPaymentsRetrieve as getPaymentsPaymentsRetrieve, index_getPaymentsPaymentsStatusRetrieve as getPaymentsPaymentsStatusRetrieve, index_getPaymentsTransactionsList as getPaymentsTransactionsList };
|
|
1068
995
|
}
|
|
1069
996
|
|
|
1070
|
-
/**
|
|
1071
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
1072
|
-
*
|
|
1073
|
-
* This file is automatically generated by DjangoCFG.
|
|
1074
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
1075
|
-
*
|
|
1076
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
1077
|
-
*/
|
|
1078
997
|
/**
|
|
1079
998
|
* Global API Instance - Singleton configuration
|
|
1080
999
|
*
|
|
@@ -1158,14 +1077,6 @@ declare function clearAPITokens(): void;
|
|
|
1158
1077
|
*/
|
|
1159
1078
|
declare function resetAPI(): void;
|
|
1160
1079
|
|
|
1161
|
-
/**
|
|
1162
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
1163
|
-
*
|
|
1164
|
-
* This file is automatically generated by DjangoCFG.
|
|
1165
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
1166
|
-
*
|
|
1167
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
1168
|
-
*/
|
|
1169
1080
|
/**
|
|
1170
1081
|
* API Error Classes
|
|
1171
1082
|
*
|
|
@@ -1224,14 +1135,6 @@ declare class NetworkError extends Error {
|
|
|
1224
1135
|
constructor(message: string, url: string, originalError?: Error);
|
|
1225
1136
|
}
|
|
1226
1137
|
|
|
1227
|
-
/**
|
|
1228
|
-
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
1229
|
-
*
|
|
1230
|
-
* This file is automatically generated by DjangoCFG.
|
|
1231
|
-
* Any manual changes will be lost when the code is regenerated.
|
|
1232
|
-
*
|
|
1233
|
-
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
1234
|
-
*/
|
|
1235
1138
|
/**
|
|
1236
1139
|
* Django CFG API - API Client with JWT Management
|
|
1237
1140
|
*
|