@readyfor/api-client-readyfor-api 0.328.0-pr1239.f1cffa5 → 0.328.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components.d.mts +7037 -713
- package/dist/components.d.ts +7037 -713
- package/dist/fetch/v2ContributionsCard3dSecureExecContribution.d.mts +6 -6
- package/dist/fetch/v2ContributionsCard3dSecureExecContribution.d.ts +6 -6
- package/dist/fetch/v2ContributionsCard3dSecureRetryContribution.d.mts +6 -6
- package/dist/fetch/v2ContributionsCard3dSecureRetryContribution.d.ts +6 -6
- package/dist/fetch/v2ContributionsOrderInfo.d.mts +24 -24
- package/dist/fetch/v2ContributionsOrderInfo.d.ts +24 -24
- package/dist/fetch/v2ContributionsProjectInfo.d.mts +38 -38
- package/dist/fetch/v2ContributionsProjectInfo.d.ts +38 -38
- package/dist/fetch/v2ContributionsRecommendedProjects.d.mts +6 -6
- package/dist/fetch/v2ContributionsRecommendedProjects.d.ts +6 -6
- package/dist/fetch/v2ContributionsRecommendedTags.d.mts +2 -2
- package/dist/fetch/v2ContributionsRecommendedTags.d.ts +2 -2
- package/dist/fetch/v2ContributionsUserInfo.d.mts +24 -24
- package/dist/fetch/v2ContributionsUserInfo.d.ts +24 -24
- package/dist/fetch/v2FundraisingBulkMessagesTargetUsers.d.mts +4 -4
- package/dist/fetch/v2FundraisingBulkMessagesTargetUsers.d.ts +4 -4
- package/dist/fetch/v2FundraisingContributors.d.mts +18 -18
- package/dist/fetch/v2FundraisingContributors.d.ts +18 -18
- package/dist/fetch/v2FundraisingContributorsId.d.mts +12 -12
- package/dist/fetch/v2FundraisingContributorsId.d.ts +12 -12
- package/dist/fetch/v2FundraisingContributorsIdOrders.d.mts +36 -36
- package/dist/fetch/v2FundraisingContributorsIdOrders.d.ts +36 -36
- package/dist/fetch/v2FundraisingContributorsOwnedPublicProjects.d.mts +2 -2
- package/dist/fetch/v2FundraisingContributorsOwnedPublicProjects.d.ts +2 -2
- package/dist/fetch/v2FundraisingContributorsUsers.d.mts +2 -2
- package/dist/fetch/v2FundraisingContributorsUsers.d.ts +2 -2
- package/dist/fetch/v2FundraisingProjectsProjectIdPaymentSummary.d.mts +12 -12
- package/dist/fetch/v2FundraisingProjectsProjectIdPaymentSummary.d.ts +12 -12
- package/dist/fetch/v2FundraisingRewards.d.mts +28 -28
- package/dist/fetch/v2FundraisingRewards.d.ts +28 -28
- package/dist/fetch/v2FundraisingRewardsRewardId.d.mts +20 -20
- package/dist/fetch/v2FundraisingRewardsRewardId.d.ts +20 -20
- package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrders.d.mts +48 -48
- package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrders.d.ts +48 -48
- package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrdersAll.d.mts +6 -6
- package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrdersAll.d.ts +6 -6
- package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrdersOrderId.d.mts +60 -60
- package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrdersOrderId.d.ts +60 -60
- package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrders.d.mts +48 -48
- package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrders.d.ts +48 -48
- package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrdersAll.d.mts +6 -6
- package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrdersAll.d.ts +6 -6
- package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrdersOrderId.d.mts +98 -98
- package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrdersOrderId.d.ts +98 -98
- package/dist/fetch/v2ResourcesBankBranches.d.mts +4 -4
- package/dist/fetch/v2ResourcesBankBranches.d.ts +4 -4
- package/dist/fetch/v2ResourcesBanks.d.mts +4 -4
- package/dist/fetch/v2ResourcesBanks.d.ts +4 -4
- package/dist/fetch/v2ResourcesUsers.d.mts +2 -2
- package/dist/fetch/v2ResourcesUsers.d.ts +2 -2
- package/package.json +4 -4
|
@@ -4,10 +4,16 @@ import { ForceDig } from '@readyfor/api-client-base';
|
|
|
4
4
|
type V2FundraisingRewardsRewardIdGetOperation = paths["/api/v2/fundraising/rewards/{reward_id}"]["get"];
|
|
5
5
|
type V2FundraisingRewardsRewardIdGetResponse = V2FundraisingRewardsRewardIdGetOperation["responses"]["200"]["content"]["application/json"];
|
|
6
6
|
declare const buildV2FundraisingRewardsRewardIdGetFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
|
|
7
|
+
price: number;
|
|
7
8
|
id: number;
|
|
8
|
-
description: string;
|
|
9
9
|
thumbnailUrl: string;
|
|
10
|
-
|
|
10
|
+
project: {
|
|
11
|
+
id: number;
|
|
12
|
+
title: string;
|
|
13
|
+
expiredAt: string;
|
|
14
|
+
};
|
|
15
|
+
deliveryState: "notStarted" | "completed" | "actionNotNeeded";
|
|
16
|
+
deliveryRate: number;
|
|
11
17
|
orderReward: {
|
|
12
18
|
rewardCount: number;
|
|
13
19
|
waitPaymentRewardCount?: number | undefined;
|
|
@@ -18,18 +24,12 @@ declare const buildV2FundraisingRewardsRewardIdGetFetcher: (requestInit?: Reques
|
|
|
18
24
|
} | {
|
|
19
25
|
__type: "unlimitedRewardStock";
|
|
20
26
|
};
|
|
21
|
-
deliveryRate: number;
|
|
22
|
-
deliveryState: "notStarted" | "completed" | "actionNotNeeded";
|
|
23
27
|
notDeliveryStartedCount: number;
|
|
28
|
+
description: string;
|
|
24
29
|
shippingRequired: boolean;
|
|
25
|
-
project: {
|
|
26
|
-
id: number;
|
|
27
|
-
title: string;
|
|
28
|
-
expiredAt: string;
|
|
29
|
-
};
|
|
30
|
-
title?: string | undefined;
|
|
31
30
|
estimatedArrivalMonth?: string | undefined;
|
|
32
31
|
shipCompletedAt?: string | undefined;
|
|
32
|
+
title?: string | undefined;
|
|
33
33
|
rewardExOptions?: {
|
|
34
34
|
question: string;
|
|
35
35
|
answerSelections?: string[] | undefined;
|
|
@@ -40,10 +40,16 @@ type V2FundraisingRewardsRewardIdGetPath = ForceDig<V2FundraisingRewardsRewardId
|
|
|
40
40
|
"path"
|
|
41
41
|
]>;
|
|
42
42
|
declare const getV2FundraisingRewardsRewardId: (path: V2FundraisingRewardsRewardIdGetPath, customRequestInit?: RequestInit) => Promise<{
|
|
43
|
+
price: number;
|
|
43
44
|
id: number;
|
|
44
|
-
description: string;
|
|
45
45
|
thumbnailUrl: string;
|
|
46
|
-
|
|
46
|
+
project: {
|
|
47
|
+
id: number;
|
|
48
|
+
title: string;
|
|
49
|
+
expiredAt: string;
|
|
50
|
+
};
|
|
51
|
+
deliveryState: "notStarted" | "completed" | "actionNotNeeded";
|
|
52
|
+
deliveryRate: number;
|
|
47
53
|
orderReward: {
|
|
48
54
|
rewardCount: number;
|
|
49
55
|
waitPaymentRewardCount?: number | undefined;
|
|
@@ -54,18 +60,12 @@ declare const getV2FundraisingRewardsRewardId: (path: V2FundraisingRewardsReward
|
|
|
54
60
|
} | {
|
|
55
61
|
__type: "unlimitedRewardStock";
|
|
56
62
|
};
|
|
57
|
-
deliveryRate: number;
|
|
58
|
-
deliveryState: "notStarted" | "completed" | "actionNotNeeded";
|
|
59
63
|
notDeliveryStartedCount: number;
|
|
64
|
+
description: string;
|
|
60
65
|
shippingRequired: boolean;
|
|
61
|
-
project: {
|
|
62
|
-
id: number;
|
|
63
|
-
title: string;
|
|
64
|
-
expiredAt: string;
|
|
65
|
-
};
|
|
66
|
-
title?: string | undefined;
|
|
67
66
|
estimatedArrivalMonth?: string | undefined;
|
|
68
67
|
shipCompletedAt?: string | undefined;
|
|
68
|
+
title?: string | undefined;
|
|
69
69
|
rewardExOptions?: {
|
|
70
70
|
question: string;
|
|
71
71
|
answerSelections?: string[] | undefined;
|
|
@@ -4,10 +4,16 @@ import { ForceDig } from '@readyfor/api-client-base';
|
|
|
4
4
|
type V2FundraisingRewardsRewardIdGetOperation = paths["/api/v2/fundraising/rewards/{reward_id}"]["get"];
|
|
5
5
|
type V2FundraisingRewardsRewardIdGetResponse = V2FundraisingRewardsRewardIdGetOperation["responses"]["200"]["content"]["application/json"];
|
|
6
6
|
declare const buildV2FundraisingRewardsRewardIdGetFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
|
|
7
|
+
price: number;
|
|
7
8
|
id: number;
|
|
8
|
-
description: string;
|
|
9
9
|
thumbnailUrl: string;
|
|
10
|
-
|
|
10
|
+
project: {
|
|
11
|
+
id: number;
|
|
12
|
+
title: string;
|
|
13
|
+
expiredAt: string;
|
|
14
|
+
};
|
|
15
|
+
deliveryState: "notStarted" | "completed" | "actionNotNeeded";
|
|
16
|
+
deliveryRate: number;
|
|
11
17
|
orderReward: {
|
|
12
18
|
rewardCount: number;
|
|
13
19
|
waitPaymentRewardCount?: number | undefined;
|
|
@@ -18,18 +24,12 @@ declare const buildV2FundraisingRewardsRewardIdGetFetcher: (requestInit?: Reques
|
|
|
18
24
|
} | {
|
|
19
25
|
__type: "unlimitedRewardStock";
|
|
20
26
|
};
|
|
21
|
-
deliveryRate: number;
|
|
22
|
-
deliveryState: "notStarted" | "completed" | "actionNotNeeded";
|
|
23
27
|
notDeliveryStartedCount: number;
|
|
28
|
+
description: string;
|
|
24
29
|
shippingRequired: boolean;
|
|
25
|
-
project: {
|
|
26
|
-
id: number;
|
|
27
|
-
title: string;
|
|
28
|
-
expiredAt: string;
|
|
29
|
-
};
|
|
30
|
-
title?: string | undefined;
|
|
31
30
|
estimatedArrivalMonth?: string | undefined;
|
|
32
31
|
shipCompletedAt?: string | undefined;
|
|
32
|
+
title?: string | undefined;
|
|
33
33
|
rewardExOptions?: {
|
|
34
34
|
question: string;
|
|
35
35
|
answerSelections?: string[] | undefined;
|
|
@@ -40,10 +40,16 @@ type V2FundraisingRewardsRewardIdGetPath = ForceDig<V2FundraisingRewardsRewardId
|
|
|
40
40
|
"path"
|
|
41
41
|
]>;
|
|
42
42
|
declare const getV2FundraisingRewardsRewardId: (path: V2FundraisingRewardsRewardIdGetPath, customRequestInit?: RequestInit) => Promise<{
|
|
43
|
+
price: number;
|
|
43
44
|
id: number;
|
|
44
|
-
description: string;
|
|
45
45
|
thumbnailUrl: string;
|
|
46
|
-
|
|
46
|
+
project: {
|
|
47
|
+
id: number;
|
|
48
|
+
title: string;
|
|
49
|
+
expiredAt: string;
|
|
50
|
+
};
|
|
51
|
+
deliveryState: "notStarted" | "completed" | "actionNotNeeded";
|
|
52
|
+
deliveryRate: number;
|
|
47
53
|
orderReward: {
|
|
48
54
|
rewardCount: number;
|
|
49
55
|
waitPaymentRewardCount?: number | undefined;
|
|
@@ -54,18 +60,12 @@ declare const getV2FundraisingRewardsRewardId: (path: V2FundraisingRewardsReward
|
|
|
54
60
|
} | {
|
|
55
61
|
__type: "unlimitedRewardStock";
|
|
56
62
|
};
|
|
57
|
-
deliveryRate: number;
|
|
58
|
-
deliveryState: "notStarted" | "completed" | "actionNotNeeded";
|
|
59
63
|
notDeliveryStartedCount: number;
|
|
64
|
+
description: string;
|
|
60
65
|
shippingRequired: boolean;
|
|
61
|
-
project: {
|
|
62
|
-
id: number;
|
|
63
|
-
title: string;
|
|
64
|
-
expiredAt: string;
|
|
65
|
-
};
|
|
66
|
-
title?: string | undefined;
|
|
67
66
|
estimatedArrivalMonth?: string | undefined;
|
|
68
67
|
shipCompletedAt?: string | undefined;
|
|
68
|
+
title?: string | undefined;
|
|
69
69
|
rewardExOptions?: {
|
|
70
70
|
question: string;
|
|
71
71
|
answerSelections?: string[] | undefined;
|
|
@@ -8,10 +8,32 @@ declare const buildV2FundraisingSpotCrowdfundingProjectOrdersGetFetcher: (reques
|
|
|
8
8
|
ongoing: number;
|
|
9
9
|
closed: number;
|
|
10
10
|
};
|
|
11
|
+
needsPaymentDeadlineAlert: boolean;
|
|
12
|
+
pagination: {
|
|
13
|
+
totalPages: number;
|
|
14
|
+
totalCount: number;
|
|
15
|
+
currentPerPage: number;
|
|
16
|
+
currentPage: number;
|
|
17
|
+
isFirstPage: boolean;
|
|
18
|
+
isLastPage: boolean;
|
|
19
|
+
prevPage?: number | undefined;
|
|
20
|
+
nextPage?: number | undefined;
|
|
21
|
+
};
|
|
11
22
|
orders: {
|
|
12
|
-
|
|
13
|
-
|
|
23
|
+
contributor: {
|
|
24
|
+
email: string | null;
|
|
25
|
+
name: string;
|
|
26
|
+
id: number;
|
|
27
|
+
imageUrl?: string | undefined;
|
|
28
|
+
};
|
|
14
29
|
createdAt: string;
|
|
30
|
+
payAmount: number;
|
|
31
|
+
id: number;
|
|
32
|
+
project: {
|
|
33
|
+
id: number;
|
|
34
|
+
title: string;
|
|
35
|
+
keyword?: string | undefined;
|
|
36
|
+
};
|
|
15
37
|
state: "waitPayment" | "pendingProjectAchievement" | "unsuccessful" | "canceled" | "confirmed";
|
|
16
38
|
payment: {
|
|
17
39
|
type: "creditCard" | "bankTransfer" | "convenienceStore";
|
|
@@ -22,18 +44,7 @@ declare const buildV2FundraisingSpotCrowdfundingProjectOrdersGetFetcher: (reques
|
|
|
22
44
|
deliveryState: "notStarted" | "failed" | "completed" | "unnecessary";
|
|
23
45
|
rewardTitle?: string | undefined;
|
|
24
46
|
}[];
|
|
25
|
-
contributor: {
|
|
26
|
-
id: number;
|
|
27
|
-
name: string;
|
|
28
|
-
email: string | null;
|
|
29
|
-
imageUrl?: string | undefined;
|
|
30
|
-
};
|
|
31
47
|
deliveryProtected: boolean;
|
|
32
|
-
project: {
|
|
33
|
-
id: number;
|
|
34
|
-
title: string;
|
|
35
|
-
keyword?: string | undefined;
|
|
36
|
-
};
|
|
37
48
|
needsPaymentDeadlineAlert: boolean;
|
|
38
49
|
hasRewardExOptionAnswer: boolean;
|
|
39
50
|
delivery?: {
|
|
@@ -46,17 +57,6 @@ declare const buildV2FundraisingSpotCrowdfundingProjectOrdersGetFetcher: (reques
|
|
|
46
57
|
} | undefined;
|
|
47
58
|
comment?: string | undefined;
|
|
48
59
|
}[];
|
|
49
|
-
pagination: {
|
|
50
|
-
totalPages: number;
|
|
51
|
-
totalCount: number;
|
|
52
|
-
currentPerPage: number;
|
|
53
|
-
currentPage: number;
|
|
54
|
-
isFirstPage: boolean;
|
|
55
|
-
isLastPage: boolean;
|
|
56
|
-
prevPage?: number | undefined;
|
|
57
|
-
nextPage?: number | undefined;
|
|
58
|
-
};
|
|
59
|
-
needsPaymentDeadlineAlert: boolean;
|
|
60
60
|
}>;
|
|
61
61
|
type V2FundraisingSpotCrowdfundingProjectOrdersGetQuery = QueryPropsFor<ForceDig<V2FundraisingSpotCrowdfundingProjectOrdersGetOperation, [
|
|
62
62
|
"parameters",
|
|
@@ -67,10 +67,32 @@ declare const getV2FundraisingSpotCrowdfundingProjectOrders: (query: V2Fundraisi
|
|
|
67
67
|
ongoing: number;
|
|
68
68
|
closed: number;
|
|
69
69
|
};
|
|
70
|
+
needsPaymentDeadlineAlert: boolean;
|
|
71
|
+
pagination: {
|
|
72
|
+
totalPages: number;
|
|
73
|
+
totalCount: number;
|
|
74
|
+
currentPerPage: number;
|
|
75
|
+
currentPage: number;
|
|
76
|
+
isFirstPage: boolean;
|
|
77
|
+
isLastPage: boolean;
|
|
78
|
+
prevPage?: number | undefined;
|
|
79
|
+
nextPage?: number | undefined;
|
|
80
|
+
};
|
|
70
81
|
orders: {
|
|
71
|
-
|
|
72
|
-
|
|
82
|
+
contributor: {
|
|
83
|
+
email: string | null;
|
|
84
|
+
name: string;
|
|
85
|
+
id: number;
|
|
86
|
+
imageUrl?: string | undefined;
|
|
87
|
+
};
|
|
73
88
|
createdAt: string;
|
|
89
|
+
payAmount: number;
|
|
90
|
+
id: number;
|
|
91
|
+
project: {
|
|
92
|
+
id: number;
|
|
93
|
+
title: string;
|
|
94
|
+
keyword?: string | undefined;
|
|
95
|
+
};
|
|
74
96
|
state: "waitPayment" | "pendingProjectAchievement" | "unsuccessful" | "canceled" | "confirmed";
|
|
75
97
|
payment: {
|
|
76
98
|
type: "creditCard" | "bankTransfer" | "convenienceStore";
|
|
@@ -81,18 +103,7 @@ declare const getV2FundraisingSpotCrowdfundingProjectOrders: (query: V2Fundraisi
|
|
|
81
103
|
deliveryState: "notStarted" | "failed" | "completed" | "unnecessary";
|
|
82
104
|
rewardTitle?: string | undefined;
|
|
83
105
|
}[];
|
|
84
|
-
contributor: {
|
|
85
|
-
id: number;
|
|
86
|
-
name: string;
|
|
87
|
-
email: string | null;
|
|
88
|
-
imageUrl?: string | undefined;
|
|
89
|
-
};
|
|
90
106
|
deliveryProtected: boolean;
|
|
91
|
-
project: {
|
|
92
|
-
id: number;
|
|
93
|
-
title: string;
|
|
94
|
-
keyword?: string | undefined;
|
|
95
|
-
};
|
|
96
107
|
needsPaymentDeadlineAlert: boolean;
|
|
97
108
|
hasRewardExOptionAnswer: boolean;
|
|
98
109
|
delivery?: {
|
|
@@ -105,17 +116,6 @@ declare const getV2FundraisingSpotCrowdfundingProjectOrders: (query: V2Fundraisi
|
|
|
105
116
|
} | undefined;
|
|
106
117
|
comment?: string | undefined;
|
|
107
118
|
}[];
|
|
108
|
-
pagination: {
|
|
109
|
-
totalPages: number;
|
|
110
|
-
totalCount: number;
|
|
111
|
-
currentPerPage: number;
|
|
112
|
-
currentPage: number;
|
|
113
|
-
isFirstPage: boolean;
|
|
114
|
-
isLastPage: boolean;
|
|
115
|
-
prevPage?: number | undefined;
|
|
116
|
-
nextPage?: number | undefined;
|
|
117
|
-
};
|
|
118
|
-
needsPaymentDeadlineAlert: boolean;
|
|
119
119
|
}>;
|
|
120
120
|
|
|
121
121
|
export { type V2FundraisingSpotCrowdfundingProjectOrdersGetQuery, type V2FundraisingSpotCrowdfundingProjectOrdersGetResponse, buildV2FundraisingSpotCrowdfundingProjectOrdersGetFetcher, getV2FundraisingSpotCrowdfundingProjectOrders };
|
|
@@ -8,10 +8,32 @@ declare const buildV2FundraisingSpotCrowdfundingProjectOrdersGetFetcher: (reques
|
|
|
8
8
|
ongoing: number;
|
|
9
9
|
closed: number;
|
|
10
10
|
};
|
|
11
|
+
needsPaymentDeadlineAlert: boolean;
|
|
12
|
+
pagination: {
|
|
13
|
+
totalPages: number;
|
|
14
|
+
totalCount: number;
|
|
15
|
+
currentPerPage: number;
|
|
16
|
+
currentPage: number;
|
|
17
|
+
isFirstPage: boolean;
|
|
18
|
+
isLastPage: boolean;
|
|
19
|
+
prevPage?: number | undefined;
|
|
20
|
+
nextPage?: number | undefined;
|
|
21
|
+
};
|
|
11
22
|
orders: {
|
|
12
|
-
|
|
13
|
-
|
|
23
|
+
contributor: {
|
|
24
|
+
email: string | null;
|
|
25
|
+
name: string;
|
|
26
|
+
id: number;
|
|
27
|
+
imageUrl?: string | undefined;
|
|
28
|
+
};
|
|
14
29
|
createdAt: string;
|
|
30
|
+
payAmount: number;
|
|
31
|
+
id: number;
|
|
32
|
+
project: {
|
|
33
|
+
id: number;
|
|
34
|
+
title: string;
|
|
35
|
+
keyword?: string | undefined;
|
|
36
|
+
};
|
|
15
37
|
state: "waitPayment" | "pendingProjectAchievement" | "unsuccessful" | "canceled" | "confirmed";
|
|
16
38
|
payment: {
|
|
17
39
|
type: "creditCard" | "bankTransfer" | "convenienceStore";
|
|
@@ -22,18 +44,7 @@ declare const buildV2FundraisingSpotCrowdfundingProjectOrdersGetFetcher: (reques
|
|
|
22
44
|
deliveryState: "notStarted" | "failed" | "completed" | "unnecessary";
|
|
23
45
|
rewardTitle?: string | undefined;
|
|
24
46
|
}[];
|
|
25
|
-
contributor: {
|
|
26
|
-
id: number;
|
|
27
|
-
name: string;
|
|
28
|
-
email: string | null;
|
|
29
|
-
imageUrl?: string | undefined;
|
|
30
|
-
};
|
|
31
47
|
deliveryProtected: boolean;
|
|
32
|
-
project: {
|
|
33
|
-
id: number;
|
|
34
|
-
title: string;
|
|
35
|
-
keyword?: string | undefined;
|
|
36
|
-
};
|
|
37
48
|
needsPaymentDeadlineAlert: boolean;
|
|
38
49
|
hasRewardExOptionAnswer: boolean;
|
|
39
50
|
delivery?: {
|
|
@@ -46,17 +57,6 @@ declare const buildV2FundraisingSpotCrowdfundingProjectOrdersGetFetcher: (reques
|
|
|
46
57
|
} | undefined;
|
|
47
58
|
comment?: string | undefined;
|
|
48
59
|
}[];
|
|
49
|
-
pagination: {
|
|
50
|
-
totalPages: number;
|
|
51
|
-
totalCount: number;
|
|
52
|
-
currentPerPage: number;
|
|
53
|
-
currentPage: number;
|
|
54
|
-
isFirstPage: boolean;
|
|
55
|
-
isLastPage: boolean;
|
|
56
|
-
prevPage?: number | undefined;
|
|
57
|
-
nextPage?: number | undefined;
|
|
58
|
-
};
|
|
59
|
-
needsPaymentDeadlineAlert: boolean;
|
|
60
60
|
}>;
|
|
61
61
|
type V2FundraisingSpotCrowdfundingProjectOrdersGetQuery = QueryPropsFor<ForceDig<V2FundraisingSpotCrowdfundingProjectOrdersGetOperation, [
|
|
62
62
|
"parameters",
|
|
@@ -67,10 +67,32 @@ declare const getV2FundraisingSpotCrowdfundingProjectOrders: (query: V2Fundraisi
|
|
|
67
67
|
ongoing: number;
|
|
68
68
|
closed: number;
|
|
69
69
|
};
|
|
70
|
+
needsPaymentDeadlineAlert: boolean;
|
|
71
|
+
pagination: {
|
|
72
|
+
totalPages: number;
|
|
73
|
+
totalCount: number;
|
|
74
|
+
currentPerPage: number;
|
|
75
|
+
currentPage: number;
|
|
76
|
+
isFirstPage: boolean;
|
|
77
|
+
isLastPage: boolean;
|
|
78
|
+
prevPage?: number | undefined;
|
|
79
|
+
nextPage?: number | undefined;
|
|
80
|
+
};
|
|
70
81
|
orders: {
|
|
71
|
-
|
|
72
|
-
|
|
82
|
+
contributor: {
|
|
83
|
+
email: string | null;
|
|
84
|
+
name: string;
|
|
85
|
+
id: number;
|
|
86
|
+
imageUrl?: string | undefined;
|
|
87
|
+
};
|
|
73
88
|
createdAt: string;
|
|
89
|
+
payAmount: number;
|
|
90
|
+
id: number;
|
|
91
|
+
project: {
|
|
92
|
+
id: number;
|
|
93
|
+
title: string;
|
|
94
|
+
keyword?: string | undefined;
|
|
95
|
+
};
|
|
74
96
|
state: "waitPayment" | "pendingProjectAchievement" | "unsuccessful" | "canceled" | "confirmed";
|
|
75
97
|
payment: {
|
|
76
98
|
type: "creditCard" | "bankTransfer" | "convenienceStore";
|
|
@@ -81,18 +103,7 @@ declare const getV2FundraisingSpotCrowdfundingProjectOrders: (query: V2Fundraisi
|
|
|
81
103
|
deliveryState: "notStarted" | "failed" | "completed" | "unnecessary";
|
|
82
104
|
rewardTitle?: string | undefined;
|
|
83
105
|
}[];
|
|
84
|
-
contributor: {
|
|
85
|
-
id: number;
|
|
86
|
-
name: string;
|
|
87
|
-
email: string | null;
|
|
88
|
-
imageUrl?: string | undefined;
|
|
89
|
-
};
|
|
90
106
|
deliveryProtected: boolean;
|
|
91
|
-
project: {
|
|
92
|
-
id: number;
|
|
93
|
-
title: string;
|
|
94
|
-
keyword?: string | undefined;
|
|
95
|
-
};
|
|
96
107
|
needsPaymentDeadlineAlert: boolean;
|
|
97
108
|
hasRewardExOptionAnswer: boolean;
|
|
98
109
|
delivery?: {
|
|
@@ -105,17 +116,6 @@ declare const getV2FundraisingSpotCrowdfundingProjectOrders: (query: V2Fundraisi
|
|
|
105
116
|
} | undefined;
|
|
106
117
|
comment?: string | undefined;
|
|
107
118
|
}[];
|
|
108
|
-
pagination: {
|
|
109
|
-
totalPages: number;
|
|
110
|
-
totalCount: number;
|
|
111
|
-
currentPerPage: number;
|
|
112
|
-
currentPage: number;
|
|
113
|
-
isFirstPage: boolean;
|
|
114
|
-
isLastPage: boolean;
|
|
115
|
-
prevPage?: number | undefined;
|
|
116
|
-
nextPage?: number | undefined;
|
|
117
|
-
};
|
|
118
|
-
needsPaymentDeadlineAlert: boolean;
|
|
119
119
|
}>;
|
|
120
120
|
|
|
121
121
|
export { type V2FundraisingSpotCrowdfundingProjectOrdersGetQuery, type V2FundraisingSpotCrowdfundingProjectOrdersGetResponse, buildV2FundraisingSpotCrowdfundingProjectOrdersGetFetcher, getV2FundraisingSpotCrowdfundingProjectOrders };
|
|
@@ -5,13 +5,13 @@ type V2FundraisingSpotCrowdfundingProjectOrdersAllGetOperation = paths["/api/v2/
|
|
|
5
5
|
type V2FundraisingSpotCrowdfundingProjectOrdersAllGetResponse = V2FundraisingSpotCrowdfundingProjectOrdersAllGetOperation["responses"]["200"]["content"]["application/json"];
|
|
6
6
|
declare const buildV2FundraisingSpotCrowdfundingProjectOrdersAllGetFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
|
|
7
7
|
orders: {
|
|
8
|
-
id: number;
|
|
9
8
|
contributor: {
|
|
10
|
-
id: number;
|
|
11
|
-
name: string;
|
|
12
9
|
email: string | null;
|
|
10
|
+
name: string;
|
|
11
|
+
id: number;
|
|
13
12
|
imageUrl?: string | undefined;
|
|
14
13
|
};
|
|
14
|
+
id: number;
|
|
15
15
|
}[];
|
|
16
16
|
}>;
|
|
17
17
|
type V2FundraisingSpotCrowdfundingProjectOrdersAllGetQuery = QueryPropsFor<ForceDig<V2FundraisingSpotCrowdfundingProjectOrdersAllGetOperation, [
|
|
@@ -20,13 +20,13 @@ type V2FundraisingSpotCrowdfundingProjectOrdersAllGetQuery = QueryPropsFor<Force
|
|
|
20
20
|
]>>;
|
|
21
21
|
declare const getV2FundraisingSpotCrowdfundingProjectOrdersAll: (query: V2FundraisingSpotCrowdfundingProjectOrdersAllGetQuery, customRequestInit?: RequestInit) => Promise<{
|
|
22
22
|
orders: {
|
|
23
|
-
id: number;
|
|
24
23
|
contributor: {
|
|
25
|
-
id: number;
|
|
26
|
-
name: string;
|
|
27
24
|
email: string | null;
|
|
25
|
+
name: string;
|
|
26
|
+
id: number;
|
|
28
27
|
imageUrl?: string | undefined;
|
|
29
28
|
};
|
|
29
|
+
id: number;
|
|
30
30
|
}[];
|
|
31
31
|
}>;
|
|
32
32
|
|
|
@@ -5,13 +5,13 @@ type V2FundraisingSpotCrowdfundingProjectOrdersAllGetOperation = paths["/api/v2/
|
|
|
5
5
|
type V2FundraisingSpotCrowdfundingProjectOrdersAllGetResponse = V2FundraisingSpotCrowdfundingProjectOrdersAllGetOperation["responses"]["200"]["content"]["application/json"];
|
|
6
6
|
declare const buildV2FundraisingSpotCrowdfundingProjectOrdersAllGetFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
|
|
7
7
|
orders: {
|
|
8
|
-
id: number;
|
|
9
8
|
contributor: {
|
|
10
|
-
id: number;
|
|
11
|
-
name: string;
|
|
12
9
|
email: string | null;
|
|
10
|
+
name: string;
|
|
11
|
+
id: number;
|
|
13
12
|
imageUrl?: string | undefined;
|
|
14
13
|
};
|
|
14
|
+
id: number;
|
|
15
15
|
}[];
|
|
16
16
|
}>;
|
|
17
17
|
type V2FundraisingSpotCrowdfundingProjectOrdersAllGetQuery = QueryPropsFor<ForceDig<V2FundraisingSpotCrowdfundingProjectOrdersAllGetOperation, [
|
|
@@ -20,13 +20,13 @@ type V2FundraisingSpotCrowdfundingProjectOrdersAllGetQuery = QueryPropsFor<Force
|
|
|
20
20
|
]>>;
|
|
21
21
|
declare const getV2FundraisingSpotCrowdfundingProjectOrdersAll: (query: V2FundraisingSpotCrowdfundingProjectOrdersAllGetQuery, customRequestInit?: RequestInit) => Promise<{
|
|
22
22
|
orders: {
|
|
23
|
-
id: number;
|
|
24
23
|
contributor: {
|
|
25
|
-
id: number;
|
|
26
|
-
name: string;
|
|
27
24
|
email: string | null;
|
|
25
|
+
name: string;
|
|
26
|
+
id: number;
|
|
28
27
|
imageUrl?: string | undefined;
|
|
29
28
|
};
|
|
29
|
+
id: number;
|
|
30
30
|
}[];
|
|
31
31
|
}>;
|
|
32
32
|
|
|
@@ -4,49 +4,41 @@ import { ForceDig } from '@readyfor/api-client-base';
|
|
|
4
4
|
type V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetOperation = paths["/api/v2/fundraising/spot_crowdfunding_project_orders/{order_id}"]["get"];
|
|
5
5
|
type V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetResponse = V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetOperation["responses"]["200"]["content"]["application/json"];
|
|
6
6
|
declare const buildV2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
|
|
7
|
-
id: number;
|
|
8
|
-
payAmount: number;
|
|
9
|
-
state: "waitPayment" | "pendingProjectAchievement" | "unsuccessful" | "canceled" | "confirmed";
|
|
10
|
-
payment: {
|
|
11
|
-
type: "creditCard" | "bankTransfer" | "convenienceStore";
|
|
12
|
-
state: "waitPayment" | "canceled" | "completed" | "expired" | "reserved" | "underpayment" | "transactionFailed";
|
|
13
|
-
};
|
|
14
|
-
createdAt: string;
|
|
15
7
|
contributor: {
|
|
16
|
-
|
|
17
|
-
name: string;
|
|
8
|
+
imageUrl: string;
|
|
18
9
|
email: string | null;
|
|
10
|
+
name: string;
|
|
11
|
+
id: number;
|
|
19
12
|
isActive: boolean;
|
|
20
13
|
hasValidOrder: boolean;
|
|
21
|
-
imageUrl: string;
|
|
22
14
|
};
|
|
23
|
-
|
|
15
|
+
createdAt: string;
|
|
16
|
+
payAmount: number;
|
|
17
|
+
id: number;
|
|
18
|
+
project: {
|
|
24
19
|
id: number;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
deliveryState: "notStarted" | "failed" | "completed" | "unnecessary";
|
|
29
|
-
rewardTitle?: string | undefined;
|
|
30
|
-
}[];
|
|
20
|
+
title: string;
|
|
21
|
+
};
|
|
22
|
+
state: "waitPayment" | "pendingProjectAchievement" | "unsuccessful" | "canceled" | "confirmed";
|
|
31
23
|
comments: {
|
|
32
|
-
name: string;
|
|
33
24
|
imageUrl: string;
|
|
34
|
-
|
|
25
|
+
name: string;
|
|
35
26
|
createdAt: string;
|
|
27
|
+
content: string;
|
|
36
28
|
}[];
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
title: string;
|
|
29
|
+
payment: {
|
|
30
|
+
type: "creditCard" | "bankTransfer" | "convenienceStore";
|
|
31
|
+
state: "waitPayment" | "canceled" | "completed" | "expired" | "reserved" | "underpayment" | "transactionFailed";
|
|
41
32
|
};
|
|
42
|
-
|
|
33
|
+
rewardDeliveries: {
|
|
34
|
+
price: number;
|
|
35
|
+
id: number;
|
|
43
36
|
rewardThumbnailUrl: string;
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
answer?: string | undefined;
|
|
47
|
-
}[];
|
|
37
|
+
deliveryState: "notStarted" | "failed" | "completed" | "unnecessary";
|
|
38
|
+
selectedCount: number;
|
|
48
39
|
rewardTitle?: string | undefined;
|
|
49
|
-
}[]
|
|
40
|
+
}[];
|
|
41
|
+
privacyProtected: boolean;
|
|
50
42
|
delivery?: {
|
|
51
43
|
zipCode: string;
|
|
52
44
|
deliveryAddress: string;
|
|
@@ -55,6 +47,14 @@ declare const buildV2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetFetcher:
|
|
|
55
47
|
deliveryNameKana: string | null;
|
|
56
48
|
editedAt: string | null;
|
|
57
49
|
} | undefined;
|
|
50
|
+
orderRewardExOptions?: {
|
|
51
|
+
options: {
|
|
52
|
+
question: string;
|
|
53
|
+
answer?: string | undefined;
|
|
54
|
+
}[];
|
|
55
|
+
rewardThumbnailUrl: string;
|
|
56
|
+
rewardTitle?: string | undefined;
|
|
57
|
+
}[] | undefined;
|
|
58
58
|
paymentDeadline?: string | undefined;
|
|
59
59
|
}>;
|
|
60
60
|
type V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetPath = ForceDig<V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetOperation, [
|
|
@@ -62,49 +62,41 @@ type V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetPath = ForceDig<V2Fundr
|
|
|
62
62
|
"path"
|
|
63
63
|
]>;
|
|
64
64
|
declare const getV2FundraisingSpotCrowdfundingProjectOrdersOrderId: (path: V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetPath, customRequestInit?: RequestInit) => Promise<{
|
|
65
|
-
id: number;
|
|
66
|
-
payAmount: number;
|
|
67
|
-
state: "waitPayment" | "pendingProjectAchievement" | "unsuccessful" | "canceled" | "confirmed";
|
|
68
|
-
payment: {
|
|
69
|
-
type: "creditCard" | "bankTransfer" | "convenienceStore";
|
|
70
|
-
state: "waitPayment" | "canceled" | "completed" | "expired" | "reserved" | "underpayment" | "transactionFailed";
|
|
71
|
-
};
|
|
72
|
-
createdAt: string;
|
|
73
65
|
contributor: {
|
|
74
|
-
|
|
75
|
-
name: string;
|
|
66
|
+
imageUrl: string;
|
|
76
67
|
email: string | null;
|
|
68
|
+
name: string;
|
|
69
|
+
id: number;
|
|
77
70
|
isActive: boolean;
|
|
78
71
|
hasValidOrder: boolean;
|
|
79
|
-
imageUrl: string;
|
|
80
72
|
};
|
|
81
|
-
|
|
73
|
+
createdAt: string;
|
|
74
|
+
payAmount: number;
|
|
75
|
+
id: number;
|
|
76
|
+
project: {
|
|
82
77
|
id: number;
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
deliveryState: "notStarted" | "failed" | "completed" | "unnecessary";
|
|
87
|
-
rewardTitle?: string | undefined;
|
|
88
|
-
}[];
|
|
78
|
+
title: string;
|
|
79
|
+
};
|
|
80
|
+
state: "waitPayment" | "pendingProjectAchievement" | "unsuccessful" | "canceled" | "confirmed";
|
|
89
81
|
comments: {
|
|
90
|
-
name: string;
|
|
91
82
|
imageUrl: string;
|
|
92
|
-
|
|
83
|
+
name: string;
|
|
93
84
|
createdAt: string;
|
|
85
|
+
content: string;
|
|
94
86
|
}[];
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
title: string;
|
|
87
|
+
payment: {
|
|
88
|
+
type: "creditCard" | "bankTransfer" | "convenienceStore";
|
|
89
|
+
state: "waitPayment" | "canceled" | "completed" | "expired" | "reserved" | "underpayment" | "transactionFailed";
|
|
99
90
|
};
|
|
100
|
-
|
|
91
|
+
rewardDeliveries: {
|
|
92
|
+
price: number;
|
|
93
|
+
id: number;
|
|
101
94
|
rewardThumbnailUrl: string;
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
answer?: string | undefined;
|
|
105
|
-
}[];
|
|
95
|
+
deliveryState: "notStarted" | "failed" | "completed" | "unnecessary";
|
|
96
|
+
selectedCount: number;
|
|
106
97
|
rewardTitle?: string | undefined;
|
|
107
|
-
}[]
|
|
98
|
+
}[];
|
|
99
|
+
privacyProtected: boolean;
|
|
108
100
|
delivery?: {
|
|
109
101
|
zipCode: string;
|
|
110
102
|
deliveryAddress: string;
|
|
@@ -113,6 +105,14 @@ declare const getV2FundraisingSpotCrowdfundingProjectOrdersOrderId: (path: V2Fun
|
|
|
113
105
|
deliveryNameKana: string | null;
|
|
114
106
|
editedAt: string | null;
|
|
115
107
|
} | undefined;
|
|
108
|
+
orderRewardExOptions?: {
|
|
109
|
+
options: {
|
|
110
|
+
question: string;
|
|
111
|
+
answer?: string | undefined;
|
|
112
|
+
}[];
|
|
113
|
+
rewardThumbnailUrl: string;
|
|
114
|
+
rewardTitle?: string | undefined;
|
|
115
|
+
}[] | undefined;
|
|
116
116
|
paymentDeadline?: string | undefined;
|
|
117
117
|
}>;
|
|
118
118
|
|