@readyfor/api-client-readyfor-api 1.58.0 → 1.59.0-pr1436.a513df1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/dist/hooks/useV2ContributionsCheckOrderStatus.d.ts +2 -2
  2. package/dist/hooks/useV2ContributionsCheckOwnerFriend.d.ts +2 -2
  3. package/dist/hooks/useV2ContributionsOrderInfo.d.ts +2 -2
  4. package/dist/hooks/useV2ContributionsPaymentInfo.d.ts +2 -2
  5. package/dist/hooks/useV2ContributionsPaymentMethods.d.ts +2 -2
  6. package/dist/hooks/useV2ContributionsProjectInfo.d.ts +2 -2
  7. package/dist/hooks/useV2ContributionsRecommendedProjects.d.ts +2 -2
  8. package/dist/hooks/useV2ContributionsRecommendedTags.d.ts +2 -2
  9. package/dist/hooks/useV2ContributionsSurvey.d.ts +2 -2
  10. package/dist/hooks/useV2ContributionsUserInfo.d.ts +2 -2
  11. package/dist/hooks/useV2FundraisingBulkMessagesOwnedPublicProjects.d.ts +2 -2
  12. package/dist/hooks/useV2FundraisingBulkMessagesOwnedPublicProjectsProjectIdRewards.d.ts +2 -2
  13. package/dist/hooks/useV2FundraisingBulkMessagesTargetUsers.d.ts +2 -2
  14. package/dist/hooks/useV2FundraisingBulkMessagesTargetUsersCount.d.ts +2 -2
  15. package/dist/hooks/useV2FundraisingContributors.d.ts +2 -2
  16. package/dist/hooks/useV2FundraisingContributorsCount.d.ts +2 -2
  17. package/dist/hooks/useV2FundraisingContributorsCsvGenerations.d.ts +2 -2
  18. package/dist/hooks/useV2FundraisingContributorsId.d.ts +2 -2
  19. package/dist/hooks/useV2FundraisingContributorsIdOrders.d.ts +2 -2
  20. package/dist/hooks/useV2FundraisingContributorsOwnedPublicProjects.d.ts +2 -2
  21. package/dist/hooks/useV2FundraisingContributorsUsers.d.ts +2 -2
  22. package/dist/hooks/useV2FundraisingOrdersCsvGenerations.d.ts +2 -2
  23. package/dist/hooks/useV2FundraisingProjectsProjectIdOfflineDonation.d.ts +2 -2
  24. package/dist/hooks/useV2FundraisingProjectsProjectIdPaymentSummary.d.ts +2 -2
  25. package/dist/hooks/useV2FundraisingRewards.d.ts +2 -2
  26. package/dist/hooks/useV2FundraisingRewardsAll.d.ts +2 -2
  27. package/dist/hooks/useV2FundraisingRewardsCsvGenerations.d.ts +2 -2
  28. package/dist/hooks/useV2FundraisingRewardsDeliveryStateProgress.d.ts +2 -2
  29. package/dist/hooks/useV2FundraisingRewardsRewardId.d.ts +2 -2
  30. package/dist/hooks/useV2FundraisingSpotCrowdfundingProjectOrders.d.ts +2 -2
  31. package/dist/hooks/useV2FundraisingSpotCrowdfundingProjectOrdersAll.d.ts +2 -2
  32. package/dist/hooks/useV2FundraisingSpotCrowdfundingProjectOrdersOrderId.d.ts +2 -2
  33. package/dist/hooks/useV2FundraisingSpotCrowdfundingProjectOrdersOwnedProjectRewards.d.ts +2 -2
  34. package/dist/hooks/useV2FundraisingSpotCrowdfundingProjectsOwnedPublicProjects.d.ts +2 -2
  35. package/dist/hooks/useV2FundraisingSteadyCrowdfundingOrderTransactionsCsvGenerations.d.ts +2 -2
  36. package/dist/hooks/useV2FundraisingSteadyCrowdfundingOrdersCsvGenerations.d.ts +2 -2
  37. package/dist/hooks/useV2FundraisingSteadyCrowdfundingProjectOrders.d.ts +2 -2
  38. package/dist/hooks/useV2FundraisingSteadyCrowdfundingProjectOrdersAll.d.ts +2 -2
  39. package/dist/hooks/useV2FundraisingSteadyCrowdfundingProjectOrdersOrderId.d.ts +2 -2
  40. package/dist/hooks/useV2FundraisingSteadyCrowdfundingProjectOrdersOwnedProjectRewards.d.ts +2 -2
  41. package/dist/hooks/useV2FundraisingSteadyCrowdfundingProjectsOwnedPublicProjects.d.ts +2 -2
  42. package/dist/hooks/useV2ResourcesBankBranches.d.ts +2 -2
  43. package/dist/hooks/useV2ResourcesBanks.d.ts +2 -2
  44. package/dist/hooks/useV2ResourcesUsers.d.ts +2 -2
  45. package/dist/hooks/useV2Token.d.ts +2 -2
  46. package/package.json +4 -4
@@ -21,7 +21,7 @@ declare const useV2ContributionsCheckOrderStatus: (query: V2ContributionsCheckOr
21
21
  waitingPaymentBatch: boolean | null;
22
22
  }>;
23
23
  isValidating: boolean;
24
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
24
+ isLoading: boolean;
25
25
  key: string;
26
26
  };
27
27
  declare const useV2ContributionsCheckOrderStatusImmutable: (query: V2ContributionsCheckOrderStatusGetQuery, swrConfig?: Configuration<V2ContributionsCheckOrderStatusGetResponse>) => {
@@ -41,7 +41,7 @@ declare const useV2ContributionsCheckOrderStatusImmutable: (query: V2Contributio
41
41
  waitingPaymentBatch: boolean | null;
42
42
  }>;
43
43
  isValidating: boolean;
44
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
44
+ isLoading: boolean;
45
45
  key: string;
46
46
  };
47
47
  declare const useV2ContributionsCheckOrderStatusInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2ContributionsCheckOrderStatusGetQuery) => string) => SWRInfiniteKeyLoader<V2ContributionsCheckOrderStatusGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2ContributionsCheckOrderStatusGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -13,7 +13,7 @@ declare const useV2ContributionsCheckOwnerFriend: (query: V2ContributionsCheckOw
13
13
  result: boolean | null;
14
14
  }>;
15
15
  isValidating: boolean;
16
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
16
+ isLoading: boolean;
17
17
  key: string;
18
18
  };
19
19
  declare const useV2ContributionsCheckOwnerFriendImmutable: (query: V2ContributionsCheckOwnerFriendGetQuery, swrConfig?: Configuration<V2ContributionsCheckOwnerFriendGetResponse>) => {
@@ -25,7 +25,7 @@ declare const useV2ContributionsCheckOwnerFriendImmutable: (query: V2Contributio
25
25
  result: boolean | null;
26
26
  }>;
27
27
  isValidating: boolean;
28
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
28
+ isLoading: boolean;
29
29
  key: string;
30
30
  };
31
31
  declare const useV2ContributionsCheckOwnerFriendInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2ContributionsCheckOwnerFriendGetQuery) => string) => SWRInfiniteKeyLoader<V2ContributionsCheckOwnerFriendGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2ContributionsCheckOwnerFriendGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -32,7 +32,7 @@ declare const useV2ContributionsOrderInfo: (query: V2ContributionsOrderInfoGetQu
32
32
  contributorSystemUsageFee: components["schemas"]["Contributions_OrderInfo_contributorSystemUsageFee"];
33
33
  }>;
34
34
  isValidating: boolean;
35
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
35
+ isLoading: boolean;
36
36
  key: string;
37
37
  };
38
38
  declare const useV2ContributionsOrderInfoImmutable: (query: V2ContributionsOrderInfoGetQuery, swrConfig?: Configuration<V2ContributionsOrderInfoGetResponse>) => {
@@ -62,7 +62,7 @@ declare const useV2ContributionsOrderInfoImmutable: (query: V2ContributionsOrder
62
62
  contributorSystemUsageFee: components["schemas"]["Contributions_OrderInfo_contributorSystemUsageFee"];
63
63
  }>;
64
64
  isValidating: boolean;
65
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
65
+ isLoading: boolean;
66
66
  key: string;
67
67
  };
68
68
  declare const useV2ContributionsOrderInfoInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2ContributionsOrderInfoGetQuery) => string) => SWRInfiniteKeyLoader<V2ContributionsOrderInfoGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2ContributionsOrderInfoGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -16,7 +16,7 @@ declare const useV2ContributionsPaymentInfo: (query: V2ContributionsPaymentInfoG
16
16
  paymentDetail: components["schemas"]["Contributions_Common_PaymentDetail"];
17
17
  }>;
18
18
  isValidating: boolean;
19
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
19
+ isLoading: boolean;
20
20
  key: string;
21
21
  };
22
22
  declare const useV2ContributionsPaymentInfoImmutable: (query: V2ContributionsPaymentInfoGetQuery, swrConfig?: Configuration<V2ContributionsPaymentInfoGetResponse>) => {
@@ -30,7 +30,7 @@ declare const useV2ContributionsPaymentInfoImmutable: (query: V2ContributionsPay
30
30
  paymentDetail: components["schemas"]["Contributions_Common_PaymentDetail"];
31
31
  }>;
32
32
  isValidating: boolean;
33
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
33
+ isLoading: boolean;
34
34
  key: string;
35
35
  };
36
36
  declare const useV2ContributionsPaymentInfoInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2ContributionsPaymentInfoGetQuery) => string) => SWRInfiniteKeyLoader<V2ContributionsPaymentInfoGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2ContributionsPaymentInfoGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -24,7 +24,7 @@ declare const useV2ContributionsPaymentMethods: (swrConfig?: Configuration<V2Con
24
24
  statuses: components["schemas"]["Contributions_ConvenienceStatus"][];
25
25
  })[]>;
26
26
  isValidating: boolean;
27
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
27
+ isLoading: boolean;
28
28
  key: string;
29
29
  };
30
30
  declare const useV2ContributionsPaymentMethodsImmutable: (swrConfig?: Configuration<V2ContributionsPaymentMethodsGetResponse>) => {
@@ -46,7 +46,7 @@ declare const useV2ContributionsPaymentMethodsImmutable: (swrConfig?: Configurat
46
46
  statuses: components["schemas"]["Contributions_ConvenienceStatus"][];
47
47
  })[]>;
48
48
  isValidating: boolean;
49
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
49
+ isLoading: boolean;
50
50
  key: string;
51
51
  };
52
52
  declare const useV2ContributionsPaymentMethodsInfinite: <Args extends Arguments>(getKey: (keyBuilder: () => string) => SWRInfiniteKeyLoader<V2ContributionsPaymentMethodsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2ContributionsPaymentMethodsGetResponse>) => import("swr/infinite").SWRInfiniteResponse<({
@@ -52,7 +52,7 @@ declare const useV2ContributionsProjectInfo: (query: V2ContributionsProjectInfoG
52
52
  fundedPercent: number | null;
53
53
  }>;
54
54
  isValidating: boolean;
55
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
55
+ isLoading: boolean;
56
56
  key: string;
57
57
  };
58
58
  declare const useV2ContributionsProjectInfoImmutable: (query: V2ContributionsProjectInfoGetQuery, swrConfig?: Configuration<V2ContributionsProjectInfoGetResponse>) => {
@@ -102,7 +102,7 @@ declare const useV2ContributionsProjectInfoImmutable: (query: V2ContributionsPro
102
102
  fundedPercent: number | null;
103
103
  }>;
104
104
  isValidating: boolean;
105
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
105
+ isLoading: boolean;
106
106
  key: string;
107
107
  };
108
108
  declare const useV2ContributionsProjectInfoInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2ContributionsProjectInfoGetQuery) => string) => SWRInfiniteKeyLoader<V2ContributionsProjectInfoGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2ContributionsProjectInfoGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -14,7 +14,7 @@ declare const useV2ContributionsRecommendedProjects: (query: V2ContributionsReco
14
14
  projects: components["schemas"]["Contributions_RecommendedProject"][];
15
15
  }>;
16
16
  isValidating: boolean;
17
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
17
+ isLoading: boolean;
18
18
  key: string;
19
19
  };
20
20
  declare const useV2ContributionsRecommendedProjectsImmutable: (query: V2ContributionsRecommendedProjectsGetQuery, swrConfig?: Configuration<V2ContributionsRecommendedProjectsGetResponse>) => {
@@ -26,7 +26,7 @@ declare const useV2ContributionsRecommendedProjectsImmutable: (query: V2Contribu
26
26
  projects: components["schemas"]["Contributions_RecommendedProject"][];
27
27
  }>;
28
28
  isValidating: boolean;
29
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
29
+ isLoading: boolean;
30
30
  key: string;
31
31
  };
32
32
  declare const useV2ContributionsRecommendedProjectsInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2ContributionsRecommendedProjectsGetQuery) => string) => SWRInfiniteKeyLoader<V2ContributionsRecommendedProjectsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2ContributionsRecommendedProjectsGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -14,7 +14,7 @@ declare const useV2ContributionsRecommendedTags: (query: V2ContributionsRecommen
14
14
  tags: components["schemas"]["Contributions_RecommendedTag"][];
15
15
  }>;
16
16
  isValidating: boolean;
17
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
17
+ isLoading: boolean;
18
18
  key: string;
19
19
  };
20
20
  declare const useV2ContributionsRecommendedTagsImmutable: (query: V2ContributionsRecommendedTagsGetQuery, swrConfig?: Configuration<V2ContributionsRecommendedTagsGetResponse>) => {
@@ -26,7 +26,7 @@ declare const useV2ContributionsRecommendedTagsImmutable: (query: V2Contribution
26
26
  tags: components["schemas"]["Contributions_RecommendedTag"][];
27
27
  }>;
28
28
  isValidating: boolean;
29
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
29
+ isLoading: boolean;
30
30
  key: string;
31
31
  };
32
32
  declare const useV2ContributionsRecommendedTagsInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2ContributionsRecommendedTagsGetQuery) => string) => SWRInfiniteKeyLoader<V2ContributionsRecommendedTagsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2ContributionsRecommendedTagsGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -16,7 +16,7 @@ declare const useV2ContributionsSurvey: (query: V2ContributionsSurveyGetQuery, s
16
16
  userProfile: components["schemas"]["Contributions_Survey_UserProfile"];
17
17
  }>;
18
18
  isValidating: boolean;
19
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
19
+ isLoading: boolean;
20
20
  key: string;
21
21
  };
22
22
  declare const useV2ContributionsSurveyImmutable: (query: V2ContributionsSurveyGetQuery, swrConfig?: Configuration<V2ContributionsSurveyGetResponse>) => {
@@ -30,7 +30,7 @@ declare const useV2ContributionsSurveyImmutable: (query: V2ContributionsSurveyGe
30
30
  userProfile: components["schemas"]["Contributions_Survey_UserProfile"];
31
31
  }>;
32
32
  isValidating: boolean;
33
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
33
+ isLoading: boolean;
34
34
  key: string;
35
35
  };
36
36
  declare const useV2ContributionsSurveyInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2ContributionsSurveyGetQuery) => string) => SWRInfiniteKeyLoader<V2ContributionsSurveyGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2ContributionsSurveyGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -28,7 +28,7 @@ declare const useV2ContributionsUserInfo: (query: V2ContributionsUserInfoGetQuer
28
28
  recurringPaymentCourses: components["schemas"]["Contributions_UserInfo_RecurringPaymentCourses"][];
29
29
  }>;
30
30
  isValidating: boolean;
31
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
31
+ isLoading: boolean;
32
32
  key: string;
33
33
  };
34
34
  declare const useV2ContributionsUserInfoImmutable: (query: V2ContributionsUserInfoGetQuery, swrConfig?: Configuration<V2ContributionsUserInfoGetResponse>) => {
@@ -54,7 +54,7 @@ declare const useV2ContributionsUserInfoImmutable: (query: V2ContributionsUserIn
54
54
  recurringPaymentCourses: components["schemas"]["Contributions_UserInfo_RecurringPaymentCourses"][];
55
55
  }>;
56
56
  isValidating: boolean;
57
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
57
+ isLoading: boolean;
58
58
  key: string;
59
59
  };
60
60
  declare const useV2ContributionsUserInfoInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2ContributionsUserInfoGetQuery) => string) => SWRInfiniteKeyLoader<V2ContributionsUserInfoGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2ContributionsUserInfoGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -14,7 +14,7 @@ declare const useV2FundraisingBulkMessagesOwnedPublicProjects: (swrConfig?: Conf
14
14
  projects: components["schemas"]["Fundraising_Message_BulkMessage_OwnedPublicProject"][];
15
15
  }>;
16
16
  isValidating: boolean;
17
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
17
+ isLoading: boolean;
18
18
  key: string;
19
19
  };
20
20
  declare const useV2FundraisingBulkMessagesOwnedPublicProjectsImmutable: (swrConfig?: Configuration<V2FundraisingBulkMessagesOwnedPublicProjectsGetResponse>) => {
@@ -26,7 +26,7 @@ declare const useV2FundraisingBulkMessagesOwnedPublicProjectsImmutable: (swrConf
26
26
  projects: components["schemas"]["Fundraising_Message_BulkMessage_OwnedPublicProject"][];
27
27
  }>;
28
28
  isValidating: boolean;
29
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
29
+ isLoading: boolean;
30
30
  key: string;
31
31
  };
32
32
  declare const useV2FundraisingBulkMessagesOwnedPublicProjectsInfinite: <Args extends Arguments>(getKey: (keyBuilder: () => string) => SWRInfiniteKeyLoader<V2FundraisingBulkMessagesOwnedPublicProjectsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingBulkMessagesOwnedPublicProjectsGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -14,7 +14,7 @@ declare const useV2FundraisingBulkMessagesOwnedPublicProjectsProjectIdRewards: (
14
14
  rewards: components["schemas"]["Fundraising_Message_BulkMessage_OwnedPublicProjectReward"][];
15
15
  }>;
16
16
  isValidating: boolean;
17
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
17
+ isLoading: boolean;
18
18
  key: string;
19
19
  };
20
20
  declare const useV2FundraisingBulkMessagesOwnedPublicProjectsProjectIdRewardsImmutable: (path: V2FundraisingBulkMessagesOwnedPublicProjectsProjectIdRewardsGetPath, swrConfig?: Configuration<V2FundraisingBulkMessagesOwnedPublicProjectsProjectIdRewardsGetResponse>) => {
@@ -26,7 +26,7 @@ declare const useV2FundraisingBulkMessagesOwnedPublicProjectsProjectIdRewardsImm
26
26
  rewards: components["schemas"]["Fundraising_Message_BulkMessage_OwnedPublicProjectReward"][];
27
27
  }>;
28
28
  isValidating: boolean;
29
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
29
+ isLoading: boolean;
30
30
  key: string;
31
31
  };
32
32
  declare const useV2FundraisingBulkMessagesOwnedPublicProjectsProjectIdRewardsInfinite: <Args extends Arguments>(getKey: (keyBuilder: (path: V2FundraisingBulkMessagesOwnedPublicProjectsProjectIdRewardsGetPath) => string) => SWRInfiniteKeyLoader<V2FundraisingBulkMessagesOwnedPublicProjectsProjectIdRewardsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingBulkMessagesOwnedPublicProjectsProjectIdRewardsGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -14,7 +14,7 @@ declare const useV2FundraisingBulkMessagesTargetUsers: (query: V2FundraisingBulk
14
14
  targetUsers: components["schemas"]["Fundraising_Message_BulkMessage_TargetUser"][];
15
15
  }>;
16
16
  isValidating: boolean;
17
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
17
+ isLoading: boolean;
18
18
  key: string;
19
19
  };
20
20
  declare const useV2FundraisingBulkMessagesTargetUsersImmutable: (query: V2FundraisingBulkMessagesTargetUsersGetQuery, swrConfig?: Configuration<V2FundraisingBulkMessagesTargetUsersGetResponse>) => {
@@ -26,7 +26,7 @@ declare const useV2FundraisingBulkMessagesTargetUsersImmutable: (query: V2Fundra
26
26
  targetUsers: components["schemas"]["Fundraising_Message_BulkMessage_TargetUser"][];
27
27
  }>;
28
28
  isValidating: boolean;
29
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
29
+ isLoading: boolean;
30
30
  key: string;
31
31
  };
32
32
  declare const useV2FundraisingBulkMessagesTargetUsersInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2FundraisingBulkMessagesTargetUsersGetQuery) => string) => SWRInfiniteKeyLoader<V2FundraisingBulkMessagesTargetUsersGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingBulkMessagesTargetUsersGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -13,7 +13,7 @@ declare const useV2FundraisingBulkMessagesTargetUsersCount: (swrConfig?: Configu
13
13
  targetUsersCount: number;
14
14
  }>;
15
15
  isValidating: boolean;
16
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
16
+ isLoading: boolean;
17
17
  key: string;
18
18
  };
19
19
  declare const useV2FundraisingBulkMessagesTargetUsersCountImmutable: (swrConfig?: Configuration<V2FundraisingBulkMessagesTargetUsersCountGetResponse>) => {
@@ -25,7 +25,7 @@ declare const useV2FundraisingBulkMessagesTargetUsersCountImmutable: (swrConfig?
25
25
  targetUsersCount: number;
26
26
  }>;
27
27
  isValidating: boolean;
28
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
28
+ isLoading: boolean;
29
29
  key: string;
30
30
  };
31
31
  declare const useV2FundraisingBulkMessagesTargetUsersCountInfinite: <Args extends Arguments>(getKey: (keyBuilder: () => string) => SWRInfiniteKeyLoader<V2FundraisingBulkMessagesTargetUsersCountGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingBulkMessagesTargetUsersCountGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -16,7 +16,7 @@ declare const useV2FundraisingContributors: (query: V2FundraisingContributorsGet
16
16
  pagination: components["schemas"]["Fundraising_Pagination"];
17
17
  }>;
18
18
  isValidating: boolean;
19
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
19
+ isLoading: boolean;
20
20
  key: string;
21
21
  };
22
22
  declare const useV2FundraisingContributorsImmutable: (query: V2FundraisingContributorsGetQuery, swrConfig?: Configuration<V2FundraisingContributorsGetResponse>) => {
@@ -30,7 +30,7 @@ declare const useV2FundraisingContributorsImmutable: (query: V2FundraisingContri
30
30
  pagination: components["schemas"]["Fundraising_Pagination"];
31
31
  }>;
32
32
  isValidating: boolean;
33
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
33
+ isLoading: boolean;
34
34
  key: string;
35
35
  };
36
36
  declare const useV2FundraisingContributorsInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2FundraisingContributorsGetQuery) => string) => SWRInfiniteKeyLoader<V2FundraisingContributorsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingContributorsGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -14,7 +14,7 @@ declare const useV2FundraisingContributorsCount: (query: V2FundraisingContributo
14
14
  contributorsCount: components["schemas"]["FundraisingContributor_ContributorsCount"];
15
15
  }>;
16
16
  isValidating: boolean;
17
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
17
+ isLoading: boolean;
18
18
  key: string;
19
19
  };
20
20
  declare const useV2FundraisingContributorsCountImmutable: (query: V2FundraisingContributorsCountGetQuery, swrConfig?: Configuration<V2FundraisingContributorsCountGetResponse>) => {
@@ -26,7 +26,7 @@ declare const useV2FundraisingContributorsCountImmutable: (query: V2FundraisingC
26
26
  contributorsCount: components["schemas"]["FundraisingContributor_ContributorsCount"];
27
27
  }>;
28
28
  isValidating: boolean;
29
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
29
+ isLoading: boolean;
30
30
  key: string;
31
31
  };
32
32
  declare const useV2FundraisingContributorsCountInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2FundraisingContributorsCountGetQuery) => string) => SWRInfiniteKeyLoader<V2FundraisingContributorsCountGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingContributorsCountGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -29,7 +29,7 @@ declare const useV2FundraisingContributorsCsvGenerations: (swrConfig?: Configura
29
29
  status: "failed";
30
30
  }>;
31
31
  isValidating: boolean;
32
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
32
+ isLoading: boolean;
33
33
  key: string;
34
34
  };
35
35
  declare const useV2FundraisingContributorsCsvGenerationsImmutable: (swrConfig?: Configuration<V2FundraisingContributorsCsvGenerationsGetResponse>) => {
@@ -57,7 +57,7 @@ declare const useV2FundraisingContributorsCsvGenerationsImmutable: (swrConfig?:
57
57
  status: "failed";
58
58
  }>;
59
59
  isValidating: boolean;
60
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
60
+ isLoading: boolean;
61
61
  key: string;
62
62
  };
63
63
  declare const useV2FundraisingContributorsCsvGenerationsInfinite: <Args extends Arguments>(getKey: (keyBuilder: () => string) => SWRInfiniteKeyLoader<V2FundraisingContributorsCsvGenerationsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingContributorsCsvGenerationsGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -41,7 +41,7 @@ declare const useV2FundraisingContributorsId: (path: V2FundraisingContributorsId
41
41
  messageRoomId: number | null;
42
42
  }>;
43
43
  isValidating: boolean;
44
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
44
+ isLoading: boolean;
45
45
  key: string;
46
46
  };
47
47
  declare const useV2FundraisingContributorsIdImmutable: (path: V2FundraisingContributorsIdGetPath, swrConfig?: Configuration<V2FundraisingContributorsIdGetResponse>) => {
@@ -81,7 +81,7 @@ declare const useV2FundraisingContributorsIdImmutable: (path: V2FundraisingContr
81
81
  messageRoomId: number | null;
82
82
  }>;
83
83
  isValidating: boolean;
84
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
84
+ isLoading: boolean;
85
85
  key: string;
86
86
  };
87
87
  declare const useV2FundraisingContributorsIdInfinite: <Args extends Arguments>(getKey: (keyBuilder: (path: V2FundraisingContributorsIdGetPath) => string) => SWRInfiniteKeyLoader<V2FundraisingContributorsIdGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingContributorsIdGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -16,7 +16,7 @@ declare const useV2FundraisingContributorsIdOrders: (path: V2FundraisingContribu
16
16
  pagination: components["schemas"]["FundraisingContributor_Pagination"];
17
17
  }>;
18
18
  isValidating: boolean;
19
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
19
+ isLoading: boolean;
20
20
  key: string;
21
21
  };
22
22
  declare const useV2FundraisingContributorsIdOrdersImmutable: (path: V2FundraisingContributorsIdOrdersGetPath, query: V2FundraisingContributorsIdOrdersGetQuery, swrConfig?: Configuration<V2FundraisingContributorsIdOrdersGetResponse>) => {
@@ -30,7 +30,7 @@ declare const useV2FundraisingContributorsIdOrdersImmutable: (path: V2Fundraisin
30
30
  pagination: components["schemas"]["FundraisingContributor_Pagination"];
31
31
  }>;
32
32
  isValidating: boolean;
33
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
33
+ isLoading: boolean;
34
34
  key: string;
35
35
  };
36
36
  declare const useV2FundraisingContributorsIdOrdersInfinite: <Args extends Arguments>(getKey: (keyBuilder: (path: V2FundraisingContributorsIdOrdersGetPath, query: V2FundraisingContributorsIdOrdersGetQuery) => string) => SWRInfiniteKeyLoader<V2FundraisingContributorsIdOrdersGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingContributorsIdOrdersGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -14,7 +14,7 @@ declare const useV2FundraisingContributorsOwnedPublicProjects: (swrConfig?: Conf
14
14
  projects: components["schemas"]["FundraisingContributor_Project"][];
15
15
  }>;
16
16
  isValidating: boolean;
17
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
17
+ isLoading: boolean;
18
18
  key: string;
19
19
  };
20
20
  declare const useV2FundraisingContributorsOwnedPublicProjectsImmutable: (swrConfig?: Configuration<V2FundraisingContributorsOwnedPublicProjectsGetResponse>) => {
@@ -26,7 +26,7 @@ declare const useV2FundraisingContributorsOwnedPublicProjectsImmutable: (swrConf
26
26
  projects: components["schemas"]["FundraisingContributor_Project"][];
27
27
  }>;
28
28
  isValidating: boolean;
29
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
29
+ isLoading: boolean;
30
30
  key: string;
31
31
  };
32
32
  declare const useV2FundraisingContributorsOwnedPublicProjectsInfinite: <Args extends Arguments>(getKey: (keyBuilder: () => string) => SWRInfiniteKeyLoader<V2FundraisingContributorsOwnedPublicProjectsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingContributorsOwnedPublicProjectsGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -14,7 +14,7 @@ declare const useV2FundraisingContributorsUsers: (query: V2FundraisingContributo
14
14
  users: components["schemas"]["FundraisingContributor_User"][];
15
15
  }>;
16
16
  isValidating: boolean;
17
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
17
+ isLoading: boolean;
18
18
  key: string;
19
19
  };
20
20
  declare const useV2FundraisingContributorsUsersImmutable: (query: V2FundraisingContributorsUsersGetQuery, swrConfig?: Configuration<V2FundraisingContributorsUsersGetResponse>) => {
@@ -26,7 +26,7 @@ declare const useV2FundraisingContributorsUsersImmutable: (query: V2FundraisingC
26
26
  users: components["schemas"]["FundraisingContributor_User"][];
27
27
  }>;
28
28
  isValidating: boolean;
29
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
29
+ isLoading: boolean;
30
30
  key: string;
31
31
  };
32
32
  declare const useV2FundraisingContributorsUsersInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2FundraisingContributorsUsersGetQuery) => string) => SWRInfiniteKeyLoader<V2FundraisingContributorsUsersGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingContributorsUsersGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -29,7 +29,7 @@ declare const useV2FundraisingOrdersCsvGenerations: (swrConfig?: Configuration<V
29
29
  status: "failed";
30
30
  }>;
31
31
  isValidating: boolean;
32
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
32
+ isLoading: boolean;
33
33
  key: string;
34
34
  };
35
35
  declare const useV2FundraisingOrdersCsvGenerationsImmutable: (swrConfig?: Configuration<V2FundraisingOrdersCsvGenerationsGetResponse>) => {
@@ -57,7 +57,7 @@ declare const useV2FundraisingOrdersCsvGenerationsImmutable: (swrConfig?: Config
57
57
  status: "failed";
58
58
  }>;
59
59
  isValidating: boolean;
60
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
60
+ isLoading: boolean;
61
61
  key: string;
62
62
  };
63
63
  declare const useV2FundraisingOrdersCsvGenerationsInfinite: <Args extends Arguments>(getKey: (keyBuilder: () => string) => SWRInfiniteKeyLoader<V2FundraisingOrdersCsvGenerationsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingOrdersCsvGenerationsGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -15,7 +15,7 @@ declare const useV2FundraisingProjectsProjectIdOfflineDonation: (path: V2Fundrai
15
15
  offlineDonationPaymentRecordCount: number | null;
16
16
  }>;
17
17
  isValidating: boolean;
18
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
18
+ isLoading: boolean;
19
19
  key: string;
20
20
  };
21
21
  declare const useV2FundraisingProjectsProjectIdOfflineDonationImmutable: (path: V2FundraisingProjectsProjectIdOfflineDonationGetPath, swrConfig?: Configuration<V2FundraisingProjectsProjectIdOfflineDonationGetResponse>) => {
@@ -29,7 +29,7 @@ declare const useV2FundraisingProjectsProjectIdOfflineDonationImmutable: (path:
29
29
  offlineDonationPaymentRecordCount: number | null;
30
30
  }>;
31
31
  isValidating: boolean;
32
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
32
+ isLoading: boolean;
33
33
  key: string;
34
34
  };
35
35
  declare const useV2FundraisingProjectsProjectIdOfflineDonationInfinite: <Args extends Arguments>(getKey: (keyBuilder: (path: V2FundraisingProjectsProjectIdOfflineDonationGetPath) => string) => SWRInfiniteKeyLoader<V2FundraisingProjectsProjectIdOfflineDonationGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingProjectsProjectIdOfflineDonationGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -22,7 +22,7 @@ declare const useV2FundraisingProjectsProjectIdPaymentSummary: (path: V2Fundrais
22
22
  canceled?: components["schemas"]["Fundraising_Project_PaymentSum"];
23
23
  }>;
24
24
  isValidating: boolean;
25
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
25
+ isLoading: boolean;
26
26
  key: string;
27
27
  };
28
28
  declare const useV2FundraisingProjectsProjectIdPaymentSummaryImmutable: (path: V2FundraisingProjectsProjectIdPaymentSummaryGetPath, swrConfig?: Configuration<V2FundraisingProjectsProjectIdPaymentSummaryGetResponse>) => {
@@ -42,7 +42,7 @@ declare const useV2FundraisingProjectsProjectIdPaymentSummaryImmutable: (path: V
42
42
  canceled?: components["schemas"]["Fundraising_Project_PaymentSum"];
43
43
  }>;
44
44
  isValidating: boolean;
45
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
45
+ isLoading: boolean;
46
46
  key: string;
47
47
  };
48
48
  declare const useV2FundraisingProjectsProjectIdPaymentSummaryInfinite: <Args extends Arguments>(getKey: (keyBuilder: (path: V2FundraisingProjectsProjectIdPaymentSummaryGetPath) => string) => SWRInfiniteKeyLoader<V2FundraisingProjectsProjectIdPaymentSummaryGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingProjectsProjectIdPaymentSummaryGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -22,7 +22,7 @@ declare const useV2FundraisingRewards: (query: V2FundraisingRewardsGetQuery, swr
22
22
  scopedProjectIds: number[];
23
23
  }>;
24
24
  isValidating: boolean;
25
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
25
+ isLoading: boolean;
26
26
  key: string;
27
27
  };
28
28
  declare const useV2FundraisingRewardsImmutable: (query: V2FundraisingRewardsGetQuery, swrConfig?: Configuration<V2FundraisingRewardsGetResponse>) => {
@@ -42,7 +42,7 @@ declare const useV2FundraisingRewardsImmutable: (query: V2FundraisingRewardsGetQ
42
42
  scopedProjectIds: number[];
43
43
  }>;
44
44
  isValidating: boolean;
45
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
45
+ isLoading: boolean;
46
46
  key: string;
47
47
  };
48
48
  declare const useV2FundraisingRewardsInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2FundraisingRewardsGetQuery) => string) => SWRInfiniteKeyLoader<V2FundraisingRewardsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingRewardsGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -14,7 +14,7 @@ declare const useV2FundraisingRewardsAll: (query: V2FundraisingRewardsAllGetQuer
14
14
  rewards: components["schemas"]["FundraisingRewards_RewardSummary"][];
15
15
  }>;
16
16
  isValidating: boolean;
17
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
17
+ isLoading: boolean;
18
18
  key: string;
19
19
  };
20
20
  declare const useV2FundraisingRewardsAllImmutable: (query: V2FundraisingRewardsAllGetQuery, swrConfig?: Configuration<V2FundraisingRewardsAllGetResponse>) => {
@@ -26,7 +26,7 @@ declare const useV2FundraisingRewardsAllImmutable: (query: V2FundraisingRewardsA
26
26
  rewards: components["schemas"]["FundraisingRewards_RewardSummary"][];
27
27
  }>;
28
28
  isValidating: boolean;
29
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
29
+ isLoading: boolean;
30
30
  key: string;
31
31
  };
32
32
  declare const useV2FundraisingRewardsAllInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2FundraisingRewardsAllGetQuery) => string) => SWRInfiniteKeyLoader<V2FundraisingRewardsAllGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingRewardsAllGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -29,7 +29,7 @@ declare const useV2FundraisingRewardsCsvGenerations: (swrConfig?: Configuration<
29
29
  status: "failed";
30
30
  }>;
31
31
  isValidating: boolean;
32
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
32
+ isLoading: boolean;
33
33
  key: string;
34
34
  };
35
35
  declare const useV2FundraisingRewardsCsvGenerationsImmutable: (swrConfig?: Configuration<V2FundraisingRewardsCsvGenerationsGetResponse>) => {
@@ -57,7 +57,7 @@ declare const useV2FundraisingRewardsCsvGenerationsImmutable: (swrConfig?: Confi
57
57
  status: "failed";
58
58
  }>;
59
59
  isValidating: boolean;
60
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
60
+ isLoading: boolean;
61
61
  key: string;
62
62
  };
63
63
  declare const useV2FundraisingRewardsCsvGenerationsInfinite: <Args extends Arguments>(getKey: (keyBuilder: () => string) => SWRInfiniteKeyLoader<V2FundraisingRewardsCsvGenerationsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingRewardsCsvGenerationsGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -29,7 +29,7 @@ declare const useV2FundraisingRewardsDeliveryStateProgress: (swrConfig?: Configu
29
29
  status: "failed";
30
30
  }>;
31
31
  isValidating: boolean;
32
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
32
+ isLoading: boolean;
33
33
  key: string;
34
34
  };
35
35
  declare const useV2FundraisingRewardsDeliveryStateProgressImmutable: (swrConfig?: Configuration<V2FundraisingRewardsDeliveryStateProgressGetResponse>) => {
@@ -57,7 +57,7 @@ declare const useV2FundraisingRewardsDeliveryStateProgressImmutable: (swrConfig?
57
57
  status: "failed";
58
58
  }>;
59
59
  isValidating: boolean;
60
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
60
+ isLoading: boolean;
61
61
  key: string;
62
62
  };
63
63
  declare const useV2FundraisingRewardsDeliveryStateProgressInfinite: <Args extends Arguments>(getKey: (keyBuilder: () => string) => SWRInfiniteKeyLoader<V2FundraisingRewardsDeliveryStateProgressGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingRewardsDeliveryStateProgressGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -42,7 +42,7 @@ declare const useV2FundraisingRewardsRewardId: (path: V2FundraisingRewardsReward
42
42
  project: components["schemas"]["FundraisingRewards_Project"];
43
43
  }>;
44
44
  isValidating: boolean;
45
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
45
+ isLoading: boolean;
46
46
  key: string;
47
47
  };
48
48
  declare const useV2FundraisingRewardsRewardIdImmutable: (path: V2FundraisingRewardsRewardIdGetPath, swrConfig?: Configuration<V2FundraisingRewardsRewardIdGetResponse>) => {
@@ -82,7 +82,7 @@ declare const useV2FundraisingRewardsRewardIdImmutable: (path: V2FundraisingRewa
82
82
  project: components["schemas"]["FundraisingRewards_Project"];
83
83
  }>;
84
84
  isValidating: boolean;
85
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
85
+ isLoading: boolean;
86
86
  key: string;
87
87
  };
88
88
  declare const useV2FundraisingRewardsRewardIdInfinite: <Args extends Arguments>(getKey: (keyBuilder: (path: V2FundraisingRewardsRewardIdGetPath) => string) => SWRInfiniteKeyLoader<V2FundraisingRewardsRewardIdGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingRewardsRewardIdGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -20,7 +20,7 @@ declare const useV2FundraisingSpotCrowdfundingProjectOrders: (query: V2Fundraisi
20
20
  needsPaymentDeadlineAlert: boolean;
21
21
  }>;
22
22
  isValidating: boolean;
23
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
23
+ isLoading: boolean;
24
24
  key: string;
25
25
  };
26
26
  declare const useV2FundraisingSpotCrowdfundingProjectOrdersImmutable: (query: V2FundraisingSpotCrowdfundingProjectOrdersGetQuery, swrConfig?: Configuration<V2FundraisingSpotCrowdfundingProjectOrdersGetResponse>) => {
@@ -38,7 +38,7 @@ declare const useV2FundraisingSpotCrowdfundingProjectOrdersImmutable: (query: V2
38
38
  needsPaymentDeadlineAlert: boolean;
39
39
  }>;
40
40
  isValidating: boolean;
41
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
41
+ isLoading: boolean;
42
42
  key: string;
43
43
  };
44
44
  declare const useV2FundraisingSpotCrowdfundingProjectOrdersInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2FundraisingSpotCrowdfundingProjectOrdersGetQuery) => string) => SWRInfiniteKeyLoader<V2FundraisingSpotCrowdfundingProjectOrdersGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingSpotCrowdfundingProjectOrdersGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -14,7 +14,7 @@ declare const useV2FundraisingSpotCrowdfundingProjectOrdersAll: (query: V2Fundra
14
14
  orders: components["schemas"]["FundraisingOrders_SpotCrowdfundingProjectOrderSummary"][];
15
15
  }>;
16
16
  isValidating: boolean;
17
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
17
+ isLoading: boolean;
18
18
  key: string;
19
19
  };
20
20
  declare const useV2FundraisingSpotCrowdfundingProjectOrdersAllImmutable: (query: V2FundraisingSpotCrowdfundingProjectOrdersAllGetQuery, swrConfig?: Configuration<V2FundraisingSpotCrowdfundingProjectOrdersAllGetResponse>) => {
@@ -26,7 +26,7 @@ declare const useV2FundraisingSpotCrowdfundingProjectOrdersAllImmutable: (query:
26
26
  orders: components["schemas"]["FundraisingOrders_SpotCrowdfundingProjectOrderSummary"][];
27
27
  }>;
28
28
  isValidating: boolean;
29
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
29
+ isLoading: boolean;
30
30
  key: string;
31
31
  };
32
32
  declare const useV2FundraisingSpotCrowdfundingProjectOrdersAllInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2FundraisingSpotCrowdfundingProjectOrdersAllGetQuery) => string) => SWRInfiniteKeyLoader<V2FundraisingSpotCrowdfundingProjectOrdersAllGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingSpotCrowdfundingProjectOrdersAllGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -38,7 +38,7 @@ declare const useV2FundraisingSpotCrowdfundingProjectOrdersOrderId: (path: V2Fun
38
38
  paymentDeadline?: string;
39
39
  }>;
40
40
  isValidating: boolean;
41
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
41
+ isLoading: boolean;
42
42
  key: string;
43
43
  };
44
44
  declare const useV2FundraisingSpotCrowdfundingProjectOrdersOrderIdImmutable: (path: V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetPath, swrConfig?: Configuration<V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetResponse>) => {
@@ -74,7 +74,7 @@ declare const useV2FundraisingSpotCrowdfundingProjectOrdersOrderIdImmutable: (pa
74
74
  paymentDeadline?: string;
75
75
  }>;
76
76
  isValidating: boolean;
77
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
77
+ isLoading: boolean;
78
78
  key: string;
79
79
  };
80
80
  declare const useV2FundraisingSpotCrowdfundingProjectOrdersOrderIdInfinite: <Args extends Arguments>(getKey: (keyBuilder: (path: V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetPath) => string) => SWRInfiniteKeyLoader<V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -14,7 +14,7 @@ declare const useV2FundraisingSpotCrowdfundingProjectOrdersOwnedProjectRewards:
14
14
  rewards: components["schemas"]["FundraisingOrders_SpotCrowdfundingOwnedProjectReward"][];
15
15
  }>;
16
16
  isValidating: boolean;
17
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
17
+ isLoading: boolean;
18
18
  key: string;
19
19
  };
20
20
  declare const useV2FundraisingSpotCrowdfundingProjectOrdersOwnedProjectRewardsImmutable: (query: V2FundraisingSpotCrowdfundingProjectOrdersOwnedProjectRewardsGetQuery, swrConfig?: Configuration<V2FundraisingSpotCrowdfundingProjectOrdersOwnedProjectRewardsGetResponse>) => {
@@ -26,7 +26,7 @@ declare const useV2FundraisingSpotCrowdfundingProjectOrdersOwnedProjectRewardsIm
26
26
  rewards: components["schemas"]["FundraisingOrders_SpotCrowdfundingOwnedProjectReward"][];
27
27
  }>;
28
28
  isValidating: boolean;
29
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
29
+ isLoading: boolean;
30
30
  key: string;
31
31
  };
32
32
  declare const useV2FundraisingSpotCrowdfundingProjectOrdersOwnedProjectRewardsInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2FundraisingSpotCrowdfundingProjectOrdersOwnedProjectRewardsGetQuery) => string) => SWRInfiniteKeyLoader<V2FundraisingSpotCrowdfundingProjectOrdersOwnedProjectRewardsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingSpotCrowdfundingProjectOrdersOwnedProjectRewardsGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -14,7 +14,7 @@ declare const useV2FundraisingSpotCrowdfundingProjectsOwnedPublicProjects: (swrC
14
14
  projects: components["schemas"]["Fundraising_OwnedProject"][];
15
15
  }>;
16
16
  isValidating: boolean;
17
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
17
+ isLoading: boolean;
18
18
  key: string;
19
19
  };
20
20
  declare const useV2FundraisingSpotCrowdfundingProjectsOwnedPublicProjectsImmutable: (swrConfig?: Configuration<V2FundraisingSpotCrowdfundingProjectsOwnedPublicProjectsGetResponse>) => {
@@ -26,7 +26,7 @@ declare const useV2FundraisingSpotCrowdfundingProjectsOwnedPublicProjectsImmutab
26
26
  projects: components["schemas"]["Fundraising_OwnedProject"][];
27
27
  }>;
28
28
  isValidating: boolean;
29
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
29
+ isLoading: boolean;
30
30
  key: string;
31
31
  };
32
32
  declare const useV2FundraisingSpotCrowdfundingProjectsOwnedPublicProjectsInfinite: <Args extends Arguments>(getKey: (keyBuilder: () => string) => SWRInfiniteKeyLoader<V2FundraisingSpotCrowdfundingProjectsOwnedPublicProjectsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingSpotCrowdfundingProjectsOwnedPublicProjectsGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -29,7 +29,7 @@ declare const useV2FundraisingSteadyCrowdfundingOrderTransactionsCsvGenerations:
29
29
  status: "failed";
30
30
  }>;
31
31
  isValidating: boolean;
32
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
32
+ isLoading: boolean;
33
33
  key: string;
34
34
  };
35
35
  declare const useV2FundraisingSteadyCrowdfundingOrderTransactionsCsvGenerationsImmutable: (swrConfig?: Configuration<V2FundraisingSteadyCrowdfundingOrderTransactionsCsvGenerationsGetResponse>) => {
@@ -57,7 +57,7 @@ declare const useV2FundraisingSteadyCrowdfundingOrderTransactionsCsvGenerationsI
57
57
  status: "failed";
58
58
  }>;
59
59
  isValidating: boolean;
60
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
60
+ isLoading: boolean;
61
61
  key: string;
62
62
  };
63
63
  declare const useV2FundraisingSteadyCrowdfundingOrderTransactionsCsvGenerationsInfinite: <Args extends Arguments>(getKey: (keyBuilder: () => string) => SWRInfiniteKeyLoader<V2FundraisingSteadyCrowdfundingOrderTransactionsCsvGenerationsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingSteadyCrowdfundingOrderTransactionsCsvGenerationsGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -29,7 +29,7 @@ declare const useV2FundraisingSteadyCrowdfundingOrdersCsvGenerations: (swrConfig
29
29
  status: "failed";
30
30
  }>;
31
31
  isValidating: boolean;
32
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
32
+ isLoading: boolean;
33
33
  key: string;
34
34
  };
35
35
  declare const useV2FundraisingSteadyCrowdfundingOrdersCsvGenerationsImmutable: (swrConfig?: Configuration<V2FundraisingSteadyCrowdfundingOrdersCsvGenerationsGetResponse>) => {
@@ -57,7 +57,7 @@ declare const useV2FundraisingSteadyCrowdfundingOrdersCsvGenerationsImmutable: (
57
57
  status: "failed";
58
58
  }>;
59
59
  isValidating: boolean;
60
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
60
+ isLoading: boolean;
61
61
  key: string;
62
62
  };
63
63
  declare const useV2FundraisingSteadyCrowdfundingOrdersCsvGenerationsInfinite: <Args extends Arguments>(getKey: (keyBuilder: () => string) => SWRInfiniteKeyLoader<V2FundraisingSteadyCrowdfundingOrdersCsvGenerationsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingSteadyCrowdfundingOrdersCsvGenerationsGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -18,7 +18,7 @@ declare const useV2FundraisingSteadyCrowdfundingProjectOrders: (query: V2Fundrai
18
18
  pagination: components["schemas"]["Fundraising_Pagination"];
19
19
  }>;
20
20
  isValidating: boolean;
21
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
21
+ isLoading: boolean;
22
22
  key: string;
23
23
  };
24
24
  declare const useV2FundraisingSteadyCrowdfundingProjectOrdersImmutable: (query: V2FundraisingSteadyCrowdfundingProjectOrdersGetQuery, swrConfig?: Configuration<V2FundraisingSteadyCrowdfundingProjectOrdersGetResponse>) => {
@@ -34,7 +34,7 @@ declare const useV2FundraisingSteadyCrowdfundingProjectOrdersImmutable: (query:
34
34
  pagination: components["schemas"]["Fundraising_Pagination"];
35
35
  }>;
36
36
  isValidating: boolean;
37
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
37
+ isLoading: boolean;
38
38
  key: string;
39
39
  };
40
40
  declare const useV2FundraisingSteadyCrowdfundingProjectOrdersInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2FundraisingSteadyCrowdfundingProjectOrdersGetQuery) => string) => SWRInfiniteKeyLoader<V2FundraisingSteadyCrowdfundingProjectOrdersGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingSteadyCrowdfundingProjectOrdersGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -14,7 +14,7 @@ declare const useV2FundraisingSteadyCrowdfundingProjectOrdersAll: (query: V2Fund
14
14
  orders: components["schemas"]["FundraisingOrders_SteadyCrowdfundingProjectOrderSummary"][];
15
15
  }>;
16
16
  isValidating: boolean;
17
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
17
+ isLoading: boolean;
18
18
  key: string;
19
19
  };
20
20
  declare const useV2FundraisingSteadyCrowdfundingProjectOrdersAllImmutable: (query: V2FundraisingSteadyCrowdfundingProjectOrdersAllGetQuery, swrConfig?: Configuration<V2FundraisingSteadyCrowdfundingProjectOrdersAllGetResponse>) => {
@@ -26,7 +26,7 @@ declare const useV2FundraisingSteadyCrowdfundingProjectOrdersAllImmutable: (quer
26
26
  orders: components["schemas"]["FundraisingOrders_SteadyCrowdfundingProjectOrderSummary"][];
27
27
  }>;
28
28
  isValidating: boolean;
29
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
29
+ isLoading: boolean;
30
30
  key: string;
31
31
  };
32
32
  declare const useV2FundraisingSteadyCrowdfundingProjectOrdersAllInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2FundraisingSteadyCrowdfundingProjectOrdersAllGetQuery) => string) => SWRInfiniteKeyLoader<V2FundraisingSteadyCrowdfundingProjectOrdersAllGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingSteadyCrowdfundingProjectOrdersAllGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -98,7 +98,7 @@ declare const useV2FundraisingSteadyCrowdfundingProjectOrdersOrderId: (path: V2F
98
98
  project: components["schemas"]["Fundraising_OwnedProject"];
99
99
  }>;
100
100
  isValidating: boolean;
101
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
101
+ isLoading: boolean;
102
102
  key: string;
103
103
  };
104
104
  declare const useV2FundraisingSteadyCrowdfundingProjectOrdersOrderIdImmutable: (path: V2FundraisingSteadyCrowdfundingProjectOrdersOrderIdGetPath, swrConfig?: Configuration<V2FundraisingSteadyCrowdfundingProjectOrdersOrderIdGetResponse>) => {
@@ -194,7 +194,7 @@ declare const useV2FundraisingSteadyCrowdfundingProjectOrdersOrderIdImmutable: (
194
194
  project: components["schemas"]["Fundraising_OwnedProject"];
195
195
  }>;
196
196
  isValidating: boolean;
197
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
197
+ isLoading: boolean;
198
198
  key: string;
199
199
  };
200
200
  declare const useV2FundraisingSteadyCrowdfundingProjectOrdersOrderIdInfinite: <Args extends Arguments>(getKey: (keyBuilder: (path: V2FundraisingSteadyCrowdfundingProjectOrdersOrderIdGetPath) => string) => SWRInfiniteKeyLoader<V2FundraisingSteadyCrowdfundingProjectOrdersOrderIdGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingSteadyCrowdfundingProjectOrdersOrderIdGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -14,7 +14,7 @@ declare const useV2FundraisingSteadyCrowdfundingProjectOrdersOwnedProjectRewards
14
14
  rewards: components["schemas"]["FundraisingOrders_SteadyCrowdfundingOwnedProjectReward"][];
15
15
  }>;
16
16
  isValidating: boolean;
17
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
17
+ isLoading: boolean;
18
18
  key: string;
19
19
  };
20
20
  declare const useV2FundraisingSteadyCrowdfundingProjectOrdersOwnedProjectRewardsImmutable: (query: V2FundraisingSteadyCrowdfundingProjectOrdersOwnedProjectRewardsGetQuery, swrConfig?: Configuration<V2FundraisingSteadyCrowdfundingProjectOrdersOwnedProjectRewardsGetResponse>) => {
@@ -26,7 +26,7 @@ declare const useV2FundraisingSteadyCrowdfundingProjectOrdersOwnedProjectRewards
26
26
  rewards: components["schemas"]["FundraisingOrders_SteadyCrowdfundingOwnedProjectReward"][];
27
27
  }>;
28
28
  isValidating: boolean;
29
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
29
+ isLoading: boolean;
30
30
  key: string;
31
31
  };
32
32
  declare const useV2FundraisingSteadyCrowdfundingProjectOrdersOwnedProjectRewardsInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2FundraisingSteadyCrowdfundingProjectOrdersOwnedProjectRewardsGetQuery) => string) => SWRInfiniteKeyLoader<V2FundraisingSteadyCrowdfundingProjectOrdersOwnedProjectRewardsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingSteadyCrowdfundingProjectOrdersOwnedProjectRewardsGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -14,7 +14,7 @@ declare const useV2FundraisingSteadyCrowdfundingProjectsOwnedPublicProjects: (sw
14
14
  projects: components["schemas"]["Fundraising_OwnedProject"][];
15
15
  }>;
16
16
  isValidating: boolean;
17
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
17
+ isLoading: boolean;
18
18
  key: string;
19
19
  };
20
20
  declare const useV2FundraisingSteadyCrowdfundingProjectsOwnedPublicProjectsImmutable: (swrConfig?: Configuration<V2FundraisingSteadyCrowdfundingProjectsOwnedPublicProjectsGetResponse>) => {
@@ -26,7 +26,7 @@ declare const useV2FundraisingSteadyCrowdfundingProjectsOwnedPublicProjectsImmut
26
26
  projects: components["schemas"]["Fundraising_OwnedProject"][];
27
27
  }>;
28
28
  isValidating: boolean;
29
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
29
+ isLoading: boolean;
30
30
  key: string;
31
31
  };
32
32
  declare const useV2FundraisingSteadyCrowdfundingProjectsOwnedPublicProjectsInfinite: <Args extends Arguments>(getKey: (keyBuilder: () => string) => SWRInfiniteKeyLoader<V2FundraisingSteadyCrowdfundingProjectsOwnedPublicProjectsGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2FundraisingSteadyCrowdfundingProjectsOwnedPublicProjectsGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -14,7 +14,7 @@ declare const useV2ResourcesBankBranches: (query: V2ResourcesBankBranchesGetQuer
14
14
  bankBranches?: components["schemas"]["Resources_BankBranches_BankBranch"][];
15
15
  }>;
16
16
  isValidating: boolean;
17
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
17
+ isLoading: boolean;
18
18
  key: string;
19
19
  };
20
20
  declare const useV2ResourcesBankBranchesImmutable: (query: V2ResourcesBankBranchesGetQuery, swrConfig?: Configuration<V2ResourcesBankBranchesGetResponse>) => {
@@ -26,7 +26,7 @@ declare const useV2ResourcesBankBranchesImmutable: (query: V2ResourcesBankBranch
26
26
  bankBranches?: components["schemas"]["Resources_BankBranches_BankBranch"][];
27
27
  }>;
28
28
  isValidating: boolean;
29
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
29
+ isLoading: boolean;
30
30
  key: string;
31
31
  };
32
32
  declare const useV2ResourcesBankBranchesInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2ResourcesBankBranchesGetQuery) => string) => SWRInfiniteKeyLoader<V2ResourcesBankBranchesGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2ResourcesBankBranchesGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -14,7 +14,7 @@ declare const useV2ResourcesBanks: (query: V2ResourcesBanksGetQuery, swrConfig?:
14
14
  banks?: components["schemas"]["Resources_Banks_Bank"][];
15
15
  }>;
16
16
  isValidating: boolean;
17
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
17
+ isLoading: boolean;
18
18
  key: string;
19
19
  };
20
20
  declare const useV2ResourcesBanksImmutable: (query: V2ResourcesBanksGetQuery, swrConfig?: Configuration<V2ResourcesBanksGetResponse>) => {
@@ -26,7 +26,7 @@ declare const useV2ResourcesBanksImmutable: (query: V2ResourcesBanksGetQuery, sw
26
26
  banks?: components["schemas"]["Resources_Banks_Bank"][];
27
27
  }>;
28
28
  isValidating: boolean;
29
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
29
+ isLoading: boolean;
30
30
  key: string;
31
31
  };
32
32
  declare const useV2ResourcesBanksInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2ResourcesBanksGetQuery) => string) => SWRInfiniteKeyLoader<V2ResourcesBanksGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2ResourcesBanksGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -14,7 +14,7 @@ declare const useV2ResourcesUsers: (query: V2ResourcesUsersGetQuery, swrConfig?:
14
14
  userResources: components["schemas"]["Resources_Users_UserResource"][];
15
15
  }>;
16
16
  isValidating: boolean;
17
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
17
+ isLoading: boolean;
18
18
  key: string;
19
19
  };
20
20
  declare const useV2ResourcesUsersImmutable: (query: V2ResourcesUsersGetQuery, swrConfig?: Configuration<V2ResourcesUsersGetResponse>) => {
@@ -26,7 +26,7 @@ declare const useV2ResourcesUsersImmutable: (query: V2ResourcesUsersGetQuery, sw
26
26
  userResources: components["schemas"]["Resources_Users_UserResource"][];
27
27
  }>;
28
28
  isValidating: boolean;
29
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
29
+ isLoading: boolean;
30
30
  key: string;
31
31
  };
32
32
  declare const useV2ResourcesUsersInfinite: <Args extends Arguments>(getKey: (keyBuilder: (query: V2ResourcesUsersGetQuery) => string) => SWRInfiniteKeyLoader<V2ResourcesUsersGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2ResourcesUsersGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
@@ -13,7 +13,7 @@ declare const useV2Token: (swrConfig?: Configuration<V2TokenGetResponse>) => {
13
13
  authenticityToken: string;
14
14
  }>;
15
15
  isValidating: boolean;
16
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
16
+ isLoading: boolean;
17
17
  key: string;
18
18
  };
19
19
  declare const useV2TokenImmutable: (swrConfig?: Configuration<V2TokenGetResponse>) => {
@@ -25,7 +25,7 @@ declare const useV2TokenImmutable: (swrConfig?: Configuration<V2TokenGetResponse
25
25
  authenticityToken: string;
26
26
  }>;
27
27
  isValidating: boolean;
28
- isLoading: import("swr/_internal").IsLoadingResponse<Data, Config>;
28
+ isLoading: boolean;
29
29
  key: string;
30
30
  };
31
31
  declare const useV2TokenInfinite: <Args extends Arguments>(getKey: (keyBuilder: () => string) => SWRInfiniteKeyLoader<V2TokenGetResponse, Args>, swrConfig?: SWRInfiniteConfiguration<V2TokenGetResponse>) => import("swr/infinite").SWRInfiniteResponse<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@readyfor/api-client-readyfor-api",
3
- "version": "1.58.0",
3
+ "version": "1.59.0-pr1436.a513df1",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -36,15 +36,15 @@
36
36
  "@types/react": "19.2.18",
37
37
  "@types/use-sync-external-store": "1.5.0",
38
38
  "react": "19.2.8",
39
- "swr": "2.4.2",
39
+ "swr": "2.5.0",
40
40
  "use-sync-external-store": "1.6.0",
41
- "@readyfor/api-client-base": "1.58.0"
41
+ "@readyfor/api-client-base": "1.59.0-pr1436.a513df1"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "react": ">=18.x <=19.x",
45
45
  "swr": "^2.2.5",
46
46
  "use-sync-external-store": "^1.2.2",
47
- "@readyfor/api-client-base": "1.58.0"
47
+ "@readyfor/api-client-base": "1.59.0-pr1436.a513df1"
48
48
  },
49
49
  "peerDependenciesMeta": {
50
50
  "react": {