@smartbills/react-hooks-sdk 0.0.2-alpha.22 → 0.0.2-alpha.25
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/@types/index.d.ts +42 -42
- package/dist/cjs/apis/banks/BanksAPI.cjs +6 -6
- package/dist/cjs/apis/banks/BanksAPI.cjs.map +1 -1
- package/dist/cjs/apis/cards/CardSetupIntentsAPI.cjs +6 -6
- package/dist/cjs/apis/cards/CardSetupIntentsAPI.cjs.map +1 -1
- package/dist/cjs/apis/cards/CardsAPI.cjs +6 -6
- package/dist/cjs/apis/cards/CardsAPI.cjs.map +1 -1
- package/dist/cjs/apis/customers/CustomerAPI.cjs +4 -4
- package/dist/cjs/apis/customers/CustomerAPI.cjs.map +1 -1
- package/dist/cjs/apis/documents/DocumentsAPI.cjs +6 -6
- package/dist/cjs/apis/documents/DocumentsAPI.cjs.map +1 -1
- package/dist/cjs/apis/domains/DomainAPI.cjs +6 -6
- package/dist/cjs/apis/domains/DomainAPI.cjs.map +1 -1
- package/dist/cjs/apis/friends/FriendsAPI.cjs +4 -4
- package/dist/cjs/apis/friends/FriendsAPI.cjs.map +1 -1
- package/dist/cjs/apis/locations/LocationsAPI.cjs +8 -8
- package/dist/cjs/apis/locations/LocationsAPI.cjs.map +1 -1
- package/dist/cjs/apis/merchants/MerchantAPI.cjs +6 -6
- package/dist/cjs/apis/merchants/MerchantAPI.cjs.map +1 -1
- package/dist/cjs/apis/organizations/OrganizationsAPI.cjs +6 -6
- package/dist/cjs/apis/organizations/OrganizationsAPI.cjs.map +1 -1
- package/dist/cjs/apis/promo-codes/PromoCodesAPI.cjs +8 -8
- package/dist/cjs/apis/promo-codes/PromoCodesAPI.cjs.map +1 -1
- package/dist/cjs/apis/receipts/ReceiptAPI.cjs +2 -2
- package/dist/cjs/apis/receipts/ReceiptAPI.cjs.map +1 -1
- package/dist/cjs/apis/reviews/ReviewsAPI.cjs +8 -8
- package/dist/cjs/apis/reviews/ReviewsAPI.cjs.map +1 -1
- package/dist/cjs/apis/taxes/TaxesAPI.cjs +6 -6
- package/dist/cjs/apis/taxes/TaxesAPI.cjs.map +1 -1
- package/dist/cjs/index.cjs +41 -41
- package/dist/esm/apis/banks/BanksAPI.mjs +4 -4
- package/dist/esm/apis/banks/BanksAPI.mjs.map +1 -1
- package/dist/esm/apis/cards/CardSetupIntentsAPI.mjs +4 -4
- package/dist/esm/apis/cards/CardSetupIntentsAPI.mjs.map +1 -1
- package/dist/esm/apis/cards/CardsAPI.mjs +4 -4
- package/dist/esm/apis/cards/CardsAPI.mjs.map +1 -1
- package/dist/esm/apis/customers/CustomerAPI.mjs +3 -3
- package/dist/esm/apis/customers/CustomerAPI.mjs.map +1 -1
- package/dist/esm/apis/documents/DocumentsAPI.mjs +4 -4
- package/dist/esm/apis/documents/DocumentsAPI.mjs.map +1 -1
- package/dist/esm/apis/domains/DomainAPI.mjs +4 -4
- package/dist/esm/apis/domains/DomainAPI.mjs.map +1 -1
- package/dist/esm/apis/friends/FriendsAPI.mjs +3 -3
- package/dist/esm/apis/friends/FriendsAPI.mjs.map +1 -1
- package/dist/esm/apis/locations/LocationsAPI.mjs +5 -5
- package/dist/esm/apis/locations/LocationsAPI.mjs.map +1 -1
- package/dist/esm/apis/merchants/MerchantAPI.mjs +4 -4
- package/dist/esm/apis/merchants/MerchantAPI.mjs.map +1 -1
- package/dist/esm/apis/organizations/OrganizationsAPI.mjs +4 -4
- package/dist/esm/apis/organizations/OrganizationsAPI.mjs.map +1 -1
- package/dist/esm/apis/promo-codes/PromoCodesAPI.mjs +5 -5
- package/dist/esm/apis/promo-codes/PromoCodesAPI.mjs.map +1 -1
- package/dist/esm/apis/receipts/ReceiptAPI.mjs +2 -2
- package/dist/esm/apis/receipts/ReceiptAPI.mjs.map +1 -1
- package/dist/esm/apis/reviews/ReviewsAPI.mjs +5 -5
- package/dist/esm/apis/reviews/ReviewsAPI.mjs.map +1 -1
- package/dist/esm/apis/taxes/TaxesAPI.mjs +4 -4
- package/dist/esm/apis/taxes/TaxesAPI.mjs.map +1 -1
- package/dist/esm/index.mjs +14 -14
- package/dist/umd/index.js +82 -82
- package/dist/umd/index.js.map +1 -1
- package/package.json +4 -4
package/dist/umd/index.js
CHANGED
|
@@ -283,7 +283,7 @@
|
|
|
283
283
|
queryFn: async () => await client.banks.getBankAccount(id, accountId)
|
|
284
284
|
});
|
|
285
285
|
};
|
|
286
|
-
const
|
|
286
|
+
const useListBankAccountTransactions = (id, accountId, request) => {
|
|
287
287
|
const client = useApiClient();
|
|
288
288
|
return reactQuery.useInfiniteQuery({
|
|
289
289
|
initialPageParam: request.page,
|
|
@@ -325,7 +325,7 @@
|
|
|
325
325
|
queryFn: async () => await client.banks.get(request)
|
|
326
326
|
});
|
|
327
327
|
};
|
|
328
|
-
const
|
|
328
|
+
const useCreateBankMutation = () => {
|
|
329
329
|
const client = useApiClient();
|
|
330
330
|
return reactQuery.useMutation({
|
|
331
331
|
mutationFn: async request => await client.banks.create(request),
|
|
@@ -336,7 +336,7 @@
|
|
|
336
336
|
}
|
|
337
337
|
});
|
|
338
338
|
};
|
|
339
|
-
const
|
|
339
|
+
const useDeleteBankMutation = id => {
|
|
340
340
|
const client = useApiClient();
|
|
341
341
|
return reactQuery.useMutation({
|
|
342
342
|
mutationFn: async () => await client.banks.delete(id),
|
|
@@ -364,7 +364,7 @@
|
|
|
364
364
|
});
|
|
365
365
|
};
|
|
366
366
|
|
|
367
|
-
const
|
|
367
|
+
const useCreateCardMutation = () => {
|
|
368
368
|
const client = useApiClient();
|
|
369
369
|
return reactQuery.useMutation({
|
|
370
370
|
mutationFn: async (request, options, config) => {
|
|
@@ -377,7 +377,7 @@
|
|
|
377
377
|
}
|
|
378
378
|
});
|
|
379
379
|
};
|
|
380
|
-
const
|
|
380
|
+
const useAttachCardMutation = () => {
|
|
381
381
|
const client = useApiClient();
|
|
382
382
|
return reactQuery.useMutation({
|
|
383
383
|
mutationFn: async (request, options, config) => {
|
|
@@ -390,7 +390,7 @@
|
|
|
390
390
|
}
|
|
391
391
|
});
|
|
392
392
|
};
|
|
393
|
-
const
|
|
393
|
+
const useDetachCardMutation = () => {
|
|
394
394
|
const client = useApiClient();
|
|
395
395
|
return reactQuery.useMutation({
|
|
396
396
|
mutationFn: async (id, options, config) => {
|
|
@@ -422,7 +422,7 @@
|
|
|
422
422
|
});
|
|
423
423
|
};
|
|
424
424
|
|
|
425
|
-
const
|
|
425
|
+
const useCreateCardSetupIntentMutation = () => {
|
|
426
426
|
const client = useApiClient();
|
|
427
427
|
return reactQuery.useMutation({
|
|
428
428
|
mutationKey: [SBApiKeys.CardSetupIntents],
|
|
@@ -439,7 +439,7 @@
|
|
|
439
439
|
}
|
|
440
440
|
});
|
|
441
441
|
};
|
|
442
|
-
const
|
|
442
|
+
const useConfirmCardSetupIntentMutation = () => {
|
|
443
443
|
const client = useApiClient();
|
|
444
444
|
return reactQuery.useMutation({
|
|
445
445
|
mutationKey: [SBApiKeys.CardSetupIntents],
|
|
@@ -453,7 +453,7 @@
|
|
|
453
453
|
}
|
|
454
454
|
});
|
|
455
455
|
};
|
|
456
|
-
const
|
|
456
|
+
const useCancelCardSetupIntentMutation = () => {
|
|
457
457
|
const client = useApiClient();
|
|
458
458
|
return reactQuery.useMutation({
|
|
459
459
|
mutationKey: [SBApiKeys.CardSetupIntents],
|
|
@@ -477,7 +477,7 @@
|
|
|
477
477
|
});
|
|
478
478
|
};
|
|
479
479
|
|
|
480
|
-
const
|
|
480
|
+
const useListDocuments = (request, options, config) => {
|
|
481
481
|
const client = useApiClient();
|
|
482
482
|
return reactQuery.useQuery({
|
|
483
483
|
queryKey: [SBApiKeys.Documents, request],
|
|
@@ -495,7 +495,7 @@
|
|
|
495
495
|
}
|
|
496
496
|
});
|
|
497
497
|
};
|
|
498
|
-
const
|
|
498
|
+
const useUploadDocumentMutatioon = () => {
|
|
499
499
|
const client = useApiClient();
|
|
500
500
|
return reactQuery.useMutation({
|
|
501
501
|
mutationFn: async ({
|
|
@@ -512,7 +512,7 @@
|
|
|
512
512
|
}
|
|
513
513
|
});
|
|
514
514
|
};
|
|
515
|
-
const
|
|
515
|
+
const useDeleteDocumentMutation = () => {
|
|
516
516
|
const client = useApiClient();
|
|
517
517
|
return reactQuery.useMutation({
|
|
518
518
|
mutationFn: async id => {
|
|
@@ -526,7 +526,7 @@
|
|
|
526
526
|
});
|
|
527
527
|
};
|
|
528
528
|
|
|
529
|
-
const
|
|
529
|
+
const useListFriends = (request, options) => {
|
|
530
530
|
const client = useApiClient();
|
|
531
531
|
return reactQuery.useQuery({
|
|
532
532
|
queryKey: [SBApiKeys.Friends, request],
|
|
@@ -544,7 +544,7 @@
|
|
|
544
544
|
}
|
|
545
545
|
});
|
|
546
546
|
};
|
|
547
|
-
const
|
|
547
|
+
const useDeleteFriendMutation = () => {
|
|
548
548
|
const client = useApiClient();
|
|
549
549
|
return reactQuery.useMutation({
|
|
550
550
|
mutationFn: async ({
|
|
@@ -590,7 +590,7 @@
|
|
|
590
590
|
queryFn: async () => await client.merchants.getById(id, options, config)
|
|
591
591
|
});
|
|
592
592
|
};
|
|
593
|
-
const
|
|
593
|
+
const useCreateMerchantMutation = () => {
|
|
594
594
|
const client = useApiClient();
|
|
595
595
|
return reactQuery.useMutation({
|
|
596
596
|
mutationFn: async (request, options, config) => {
|
|
@@ -603,7 +603,7 @@
|
|
|
603
603
|
}
|
|
604
604
|
});
|
|
605
605
|
};
|
|
606
|
-
const
|
|
606
|
+
const useDeleteMerchantMutation = () => {
|
|
607
607
|
const client = useApiClient();
|
|
608
608
|
return reactQuery.useMutation({
|
|
609
609
|
mutationKey: [SBApiKeys.Merchants],
|
|
@@ -620,7 +620,7 @@
|
|
|
620
620
|
}
|
|
621
621
|
});
|
|
622
622
|
};
|
|
623
|
-
const
|
|
623
|
+
const useUpdateMerchantMutation = () => {
|
|
624
624
|
const client = useApiClient();
|
|
625
625
|
return reactQuery.useMutation({
|
|
626
626
|
mutationKey: [SBApiKeys.Merchants],
|
|
@@ -683,7 +683,7 @@
|
|
|
683
683
|
}
|
|
684
684
|
});
|
|
685
685
|
};
|
|
686
|
-
const
|
|
686
|
+
const useCreateCustomerMutation = (request, options) => {
|
|
687
687
|
const client = useApiClient();
|
|
688
688
|
return reactQuery.useMutation({
|
|
689
689
|
mutationKey: [CUSTOMER_KEY],
|
|
@@ -715,7 +715,7 @@
|
|
|
715
715
|
}
|
|
716
716
|
});
|
|
717
717
|
};
|
|
718
|
-
const
|
|
718
|
+
const useDeleteCustomerMutation = (id, options) => {
|
|
719
719
|
const client = useApiClient();
|
|
720
720
|
return reactQuery.useMutation({
|
|
721
721
|
mutationKey: [CUSTOMER_KEY, id],
|
|
@@ -748,7 +748,7 @@
|
|
|
748
748
|
});
|
|
749
749
|
};
|
|
750
750
|
|
|
751
|
-
const
|
|
751
|
+
const useListDomains = (request, options, config) => {
|
|
752
752
|
const client = useApiClient();
|
|
753
753
|
return reactQuery.useInfiniteQuery({
|
|
754
754
|
initialPageParam: 1,
|
|
@@ -776,7 +776,7 @@
|
|
|
776
776
|
queryFn: async () => await client.domains.getById(id, options, config)
|
|
777
777
|
});
|
|
778
778
|
};
|
|
779
|
-
const
|
|
779
|
+
const useCreateDomainMutation = () => {
|
|
780
780
|
const client = useApiClient();
|
|
781
781
|
return reactQuery.useMutation({
|
|
782
782
|
mutationFn: async (request, options, config) => {
|
|
@@ -789,7 +789,7 @@
|
|
|
789
789
|
}
|
|
790
790
|
});
|
|
791
791
|
};
|
|
792
|
-
const
|
|
792
|
+
const useDeleteDomainMutation = () => {
|
|
793
793
|
const client = useApiClient();
|
|
794
794
|
return reactQuery.useMutation({
|
|
795
795
|
mutationKey: [SBApiKeys.Domains],
|
|
@@ -807,7 +807,7 @@
|
|
|
807
807
|
});
|
|
808
808
|
};
|
|
809
809
|
|
|
810
|
-
const
|
|
810
|
+
const useListLocations = (request, options, config) => {
|
|
811
811
|
const client = useApiClient();
|
|
812
812
|
return reactQuery.useInfiniteQuery({
|
|
813
813
|
initialPageParam: 1,
|
|
@@ -835,7 +835,7 @@
|
|
|
835
835
|
queryFn: async () => await client.locations.getById(id, options, config)
|
|
836
836
|
});
|
|
837
837
|
};
|
|
838
|
-
const
|
|
838
|
+
const useCreateLocationMutation = () => {
|
|
839
839
|
const client = useApiClient();
|
|
840
840
|
return reactQuery.useMutation({
|
|
841
841
|
mutationFn: async (request, options, config) => {
|
|
@@ -848,7 +848,7 @@
|
|
|
848
848
|
}
|
|
849
849
|
});
|
|
850
850
|
};
|
|
851
|
-
const
|
|
851
|
+
const useDeleteLocationMutation = () => {
|
|
852
852
|
const client = useApiClient();
|
|
853
853
|
return reactQuery.useMutation({
|
|
854
854
|
mutationKey: [SBApiKeys.Locations],
|
|
@@ -865,7 +865,7 @@
|
|
|
865
865
|
}
|
|
866
866
|
});
|
|
867
867
|
};
|
|
868
|
-
const
|
|
868
|
+
const useUpdateLocationMutation = () => {
|
|
869
869
|
const client = useApiClient();
|
|
870
870
|
return reactQuery.useMutation({
|
|
871
871
|
mutationKey: [SBApiKeys.Locations],
|
|
@@ -959,7 +959,7 @@
|
|
|
959
959
|
queryFn: async () => await client.organizations.getById(id)
|
|
960
960
|
});
|
|
961
961
|
};
|
|
962
|
-
const
|
|
962
|
+
const useCreateOrganizationMutation = () => {
|
|
963
963
|
const client = useApiClient();
|
|
964
964
|
return reactQuery.useMutation({
|
|
965
965
|
mutationFn: async request => {
|
|
@@ -972,7 +972,7 @@
|
|
|
972
972
|
}
|
|
973
973
|
});
|
|
974
974
|
};
|
|
975
|
-
const
|
|
975
|
+
const useUpdateOrganizationMutation = () => {
|
|
976
976
|
const client = useApiClient();
|
|
977
977
|
return reactQuery.useMutation({
|
|
978
978
|
mutationFn: async ({
|
|
@@ -993,7 +993,7 @@
|
|
|
993
993
|
}
|
|
994
994
|
});
|
|
995
995
|
};
|
|
996
|
-
const
|
|
996
|
+
const useDeleteOrganizationMutation = () => {
|
|
997
997
|
const client = useApiClient();
|
|
998
998
|
return reactQuery.useMutation({
|
|
999
999
|
mutationFn: async id => {
|
|
@@ -1101,7 +1101,7 @@
|
|
|
1101
1101
|
});
|
|
1102
1102
|
};
|
|
1103
1103
|
|
|
1104
|
-
const
|
|
1104
|
+
const useListPromoCodes = (request, options, config) => {
|
|
1105
1105
|
const client = useApiClient();
|
|
1106
1106
|
return reactQuery.useInfiniteQuery({
|
|
1107
1107
|
initialPageParam: 1,
|
|
@@ -1129,7 +1129,7 @@
|
|
|
1129
1129
|
queryFn: async () => await client.promoCodes.getById(id, options, config)
|
|
1130
1130
|
});
|
|
1131
1131
|
};
|
|
1132
|
-
const
|
|
1132
|
+
const useCreatePromoCodeMutation = () => {
|
|
1133
1133
|
const client = useApiClient();
|
|
1134
1134
|
return reactQuery.useMutation({
|
|
1135
1135
|
mutationFn: async (request, options, config) => {
|
|
@@ -1142,7 +1142,7 @@
|
|
|
1142
1142
|
}
|
|
1143
1143
|
});
|
|
1144
1144
|
};
|
|
1145
|
-
const
|
|
1145
|
+
const useDeletePromoCodeMutation = () => {
|
|
1146
1146
|
const client = useApiClient();
|
|
1147
1147
|
return reactQuery.useMutation({
|
|
1148
1148
|
mutationKey: [SBApiKeys.PromoCodes],
|
|
@@ -1159,7 +1159,7 @@
|
|
|
1159
1159
|
}
|
|
1160
1160
|
});
|
|
1161
1161
|
};
|
|
1162
|
-
const
|
|
1162
|
+
const useUpdatePromoCodeMutation = () => {
|
|
1163
1163
|
const client = useApiClient();
|
|
1164
1164
|
return reactQuery.useMutation({
|
|
1165
1165
|
mutationKey: [SBApiKeys.PromoCodes],
|
|
@@ -1222,7 +1222,7 @@
|
|
|
1222
1222
|
}
|
|
1223
1223
|
});
|
|
1224
1224
|
};
|
|
1225
|
-
const
|
|
1225
|
+
const useDeleteReceiptMutation = (id, options) => {
|
|
1226
1226
|
const client = useApiClient();
|
|
1227
1227
|
return reactQuery.useMutation({
|
|
1228
1228
|
mutationKey: [RECEIPTS_KEY, id],
|
|
@@ -1256,7 +1256,7 @@
|
|
|
1256
1256
|
};
|
|
1257
1257
|
|
|
1258
1258
|
const REVIEWS_KEY = "REVIEWS";
|
|
1259
|
-
const
|
|
1259
|
+
const useListReviews = request => {
|
|
1260
1260
|
const client = useApiClient();
|
|
1261
1261
|
return reactQuery.useInfiniteQuery({
|
|
1262
1262
|
initialPageParam: 1,
|
|
@@ -1294,7 +1294,7 @@
|
|
|
1294
1294
|
}
|
|
1295
1295
|
});
|
|
1296
1296
|
};
|
|
1297
|
-
const
|
|
1297
|
+
const useCreateReviewMutation = () => {
|
|
1298
1298
|
const client = useApiClient();
|
|
1299
1299
|
return reactQuery.useMutation({
|
|
1300
1300
|
mutationKey: [REVIEWS_KEY],
|
|
@@ -1312,7 +1312,7 @@
|
|
|
1312
1312
|
}
|
|
1313
1313
|
});
|
|
1314
1314
|
};
|
|
1315
|
-
const
|
|
1315
|
+
const useDeleteReviewMutation = id => {
|
|
1316
1316
|
const client = useApiClient();
|
|
1317
1317
|
return reactQuery.useMutation({
|
|
1318
1318
|
mutationKey: [REVIEWS_KEY, id],
|
|
@@ -1342,7 +1342,7 @@
|
|
|
1342
1342
|
}
|
|
1343
1343
|
});
|
|
1344
1344
|
};
|
|
1345
|
-
const
|
|
1345
|
+
const useUpdateReviewMutation = () => {
|
|
1346
1346
|
const client = useApiClient();
|
|
1347
1347
|
return reactQuery.useMutation({
|
|
1348
1348
|
mutationKey: [REVIEWS_KEY],
|
|
@@ -1379,7 +1379,7 @@
|
|
|
1379
1379
|
}
|
|
1380
1380
|
});
|
|
1381
1381
|
};
|
|
1382
|
-
const
|
|
1382
|
+
const useCreateTaxMutation = () => {
|
|
1383
1383
|
const client = useApiClient();
|
|
1384
1384
|
return reactQuery.useMutation({
|
|
1385
1385
|
mutationFn: async ({
|
|
@@ -1396,7 +1396,7 @@
|
|
|
1396
1396
|
}
|
|
1397
1397
|
});
|
|
1398
1398
|
};
|
|
1399
|
-
const
|
|
1399
|
+
const useDeleteTaxMutation = () => {
|
|
1400
1400
|
const client = useApiClient();
|
|
1401
1401
|
return reactQuery.useMutation({
|
|
1402
1402
|
mutationFn: async ({
|
|
@@ -1413,7 +1413,7 @@
|
|
|
1413
1413
|
}
|
|
1414
1414
|
});
|
|
1415
1415
|
};
|
|
1416
|
-
const
|
|
1416
|
+
const useUpdateTaxMutation = () => {
|
|
1417
1417
|
const client = useApiClient();
|
|
1418
1418
|
return reactQuery.useMutation({
|
|
1419
1419
|
mutationFn: async ({
|
|
@@ -1474,40 +1474,39 @@
|
|
|
1474
1474
|
exports.SmartbillsSDKProvider = SmartbillsSDKProvider;
|
|
1475
1475
|
exports.queryClient = queryClient;
|
|
1476
1476
|
exports.useApiClient = useApiClient;
|
|
1477
|
-
exports.
|
|
1478
|
-
exports.
|
|
1479
|
-
exports.
|
|
1480
|
-
exports.
|
|
1481
|
-
exports.
|
|
1482
|
-
exports.
|
|
1483
|
-
exports.
|
|
1484
|
-
exports.
|
|
1485
|
-
exports.
|
|
1486
|
-
exports.
|
|
1487
|
-
exports.
|
|
1477
|
+
exports.useAttachCardMutation = useAttachCardMutation;
|
|
1478
|
+
exports.useCancelCardSetupIntentMutation = useCancelCardSetupIntentMutation;
|
|
1479
|
+
exports.useConfirmCardSetupIntentMutation = useConfirmCardSetupIntentMutation;
|
|
1480
|
+
exports.useCreateBankMutation = useCreateBankMutation;
|
|
1481
|
+
exports.useCreateCardMutation = useCreateCardMutation;
|
|
1482
|
+
exports.useCreateCardSetupIntentMutation = useCreateCardSetupIntentMutation;
|
|
1483
|
+
exports.useCreateCustomerMutation = useCreateCustomerMutation;
|
|
1484
|
+
exports.useCreateDomainMutation = useCreateDomainMutation;
|
|
1485
|
+
exports.useCreateLocationMutation = useCreateLocationMutation;
|
|
1486
|
+
exports.useCreateMerchantMutation = useCreateMerchantMutation;
|
|
1487
|
+
exports.useCreateOrganizationMutation = useCreateOrganizationMutation;
|
|
1488
1488
|
exports.useCreatePaymentMethod = useCreatePaymentMethod;
|
|
1489
|
-
exports.
|
|
1490
|
-
exports.
|
|
1491
|
-
exports.
|
|
1492
|
-
exports.
|
|
1493
|
-
exports.
|
|
1494
|
-
exports.
|
|
1495
|
-
exports.
|
|
1496
|
-
exports.
|
|
1497
|
-
exports.
|
|
1498
|
-
exports.
|
|
1499
|
-
exports.useDeleteOrganization = useDeleteOrganization;
|
|
1489
|
+
exports.useCreatePromoCodeMutation = useCreatePromoCodeMutation;
|
|
1490
|
+
exports.useCreateReviewMutation = useCreateReviewMutation;
|
|
1491
|
+
exports.useCreateTaxMutation = useCreateTaxMutation;
|
|
1492
|
+
exports.useDeleteBankMutation = useDeleteBankMutation;
|
|
1493
|
+
exports.useDeleteCustomerMutation = useDeleteCustomerMutation;
|
|
1494
|
+
exports.useDeleteDocumentMutation = useDeleteDocumentMutation;
|
|
1495
|
+
exports.useDeleteDomainMutation = useDeleteDomainMutation;
|
|
1496
|
+
exports.useDeleteFriendMutation = useDeleteFriendMutation;
|
|
1497
|
+
exports.useDeleteLocationMutation = useDeleteLocationMutation;
|
|
1498
|
+
exports.useDeleteMerchantMutation = useDeleteMerchantMutation;
|
|
1500
1499
|
exports.useDeleteOrganizationMember = useDeleteOrganizationMember;
|
|
1500
|
+
exports.useDeleteOrganizationMutation = useDeleteOrganizationMutation;
|
|
1501
1501
|
exports.useDeletePaymentMethod = useDeletePaymentMethod;
|
|
1502
|
-
exports.
|
|
1503
|
-
exports.
|
|
1504
|
-
exports.
|
|
1505
|
-
exports.
|
|
1506
|
-
exports.
|
|
1502
|
+
exports.useDeletePromoCodeMutation = useDeletePromoCodeMutation;
|
|
1503
|
+
exports.useDeleteReceiptMutation = useDeleteReceiptMutation;
|
|
1504
|
+
exports.useDeleteReviewMutation = useDeleteReviewMutation;
|
|
1505
|
+
exports.useDeleteTaxMutation = useDeleteTaxMutation;
|
|
1506
|
+
exports.useDetachCardMutation = useDetachCardMutation;
|
|
1507
1507
|
exports.useGetAuthorizationCodeMutation = useGetAuthorizationCodeMutation;
|
|
1508
1508
|
exports.useGetBankAccountById = useGetBankAccountById;
|
|
1509
1509
|
exports.useGetBankAccountForBank = useGetBankAccountForBank;
|
|
1510
|
-
exports.useGetBankAccountTransactions = useGetBankAccountTransactions;
|
|
1511
1510
|
exports.useGetBankAccounts = useGetBankAccounts;
|
|
1512
1511
|
exports.useGetBankById = useGetBankById;
|
|
1513
1512
|
exports.useGetBankLink = useGetBankLink;
|
|
@@ -1520,12 +1519,8 @@
|
|
|
1520
1519
|
exports.useGetCurrentUser = useGetCurrentUser;
|
|
1521
1520
|
exports.useGetCustomerById = useGetCustomerById;
|
|
1522
1521
|
exports.useGetDocument = useGetDocument;
|
|
1523
|
-
exports.useGetDocuments = useGetDocuments;
|
|
1524
1522
|
exports.useGetDomainById = useGetDomainById;
|
|
1525
|
-
exports.useGetDomains = useGetDomains;
|
|
1526
|
-
exports.useGetFriends = useGetFriends;
|
|
1527
1523
|
exports.useGetLocationById = useGetLocationById;
|
|
1528
|
-
exports.useGetLocations = useGetLocations;
|
|
1529
1524
|
exports.useGetLogById = useGetLogById;
|
|
1530
1525
|
exports.useGetMerchantById = useGetMerchantById;
|
|
1531
1526
|
exports.useGetOrganizationById = useGetOrganizationById;
|
|
@@ -1533,32 +1528,37 @@
|
|
|
1533
1528
|
exports.useGetPaymentMethodById = useGetPaymentMethodById;
|
|
1534
1529
|
exports.useGetPaymentMethods = useGetPaymentMethods;
|
|
1535
1530
|
exports.useGetPromoCodeById = useGetPromoCodeById;
|
|
1536
|
-
exports.useGetPromoCodes = useGetPromoCodes;
|
|
1537
1531
|
exports.useGetReceiptById = useGetReceiptById;
|
|
1538
1532
|
exports.useGetReviewById = useGetReviewById;
|
|
1539
|
-
exports.useGetReviews = useGetReviews;
|
|
1540
1533
|
exports.useGetTaxById = useGetTaxById;
|
|
1541
1534
|
exports.useGetTokenMutation = useGetTokenMutation;
|
|
1535
|
+
exports.useListBankAccountTransactions = useListBankAccountTransactions;
|
|
1542
1536
|
exports.useListBankAccountTransanctions = useListBankAccountTransanctions;
|
|
1543
1537
|
exports.useListBankTransactions = useListBankTransactions;
|
|
1544
1538
|
exports.useListCustomers = useListCustomers;
|
|
1539
|
+
exports.useListDocuments = useListDocuments;
|
|
1540
|
+
exports.useListDomains = useListDomains;
|
|
1541
|
+
exports.useListFriends = useListFriends;
|
|
1542
|
+
exports.useListLocations = useListLocations;
|
|
1545
1543
|
exports.useListLogs = useListLogs;
|
|
1546
1544
|
exports.useListMerchants = useListMerchants;
|
|
1547
1545
|
exports.useListOrganizationMembers = useListOrganizationMembers;
|
|
1548
1546
|
exports.useListOrganizations = useListOrganizations;
|
|
1547
|
+
exports.useListPromoCodes = useListPromoCodes;
|
|
1549
1548
|
exports.useListReceipts = useListReceipts;
|
|
1550
1549
|
exports.useListRecommandedFriends = useListRecommandedFriends;
|
|
1550
|
+
exports.useListReviews = useListReviews;
|
|
1551
1551
|
exports.useListTaxes = useListTaxes;
|
|
1552
1552
|
exports.useRefreshTokenMutation = useRefreshTokenMutation;
|
|
1553
1553
|
exports.useSearchUsers = useSearchUsers;
|
|
1554
1554
|
exports.useSetupPaymentMethod = useSetupPaymentMethod;
|
|
1555
|
-
exports.
|
|
1556
|
-
exports.
|
|
1557
|
-
exports.
|
|
1558
|
-
exports.
|
|
1559
|
-
exports.
|
|
1560
|
-
exports.
|
|
1561
|
-
exports.
|
|
1555
|
+
exports.useUpdateLocationMutation = useUpdateLocationMutation;
|
|
1556
|
+
exports.useUpdateMerchantMutation = useUpdateMerchantMutation;
|
|
1557
|
+
exports.useUpdateOrganizationMutation = useUpdateOrganizationMutation;
|
|
1558
|
+
exports.useUpdatePromoCodeMutation = useUpdatePromoCodeMutation;
|
|
1559
|
+
exports.useUpdateReviewMutation = useUpdateReviewMutation;
|
|
1560
|
+
exports.useUpdateTaxMutation = useUpdateTaxMutation;
|
|
1561
|
+
exports.useUploadDocumentMutatioon = useUploadDocumentMutatioon;
|
|
1562
1562
|
|
|
1563
1563
|
}));
|
|
1564
1564
|
//# sourceMappingURL=index.js.map
|