@readyfor/api-client-readyfor-api 0.300.0-pr1183.0e01313 → 0.300.0-pr1184.1256ef3
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/fetch/v2ContributionsCard3dSecureExecContribution.d.mts +4 -4
- package/dist/fetch/v2ContributionsCard3dSecureExecContribution.d.ts +4 -4
- package/dist/fetch/v2ContributionsCard3dSecureRetryContribution.d.mts +4 -4
- package/dist/fetch/v2ContributionsCard3dSecureRetryContribution.d.ts +4 -4
- package/dist/fetch/v2ContributionsCheckOrderStatus.d.mts +2 -2
- package/dist/fetch/v2ContributionsCheckOrderStatus.d.ts +2 -2
- package/dist/fetch/v2ContributionsOrderInfo.d.mts +2 -2
- package/dist/fetch/v2ContributionsOrderInfo.d.ts +2 -2
- package/dist/fetch/v2ContributionsProjectInfo.d.mts +8 -8
- package/dist/fetch/v2ContributionsProjectInfo.d.ts +8 -8
- package/dist/fetch/v2FundraisingBulkMessagesTargetUsers.d.mts +2 -2
- package/dist/fetch/v2FundraisingBulkMessagesTargetUsers.d.ts +2 -2
- package/dist/fetch/v2FundraisingContributors.d.mts +2 -2
- package/dist/fetch/v2FundraisingContributors.d.ts +2 -2
- package/dist/fetch/v2FundraisingContributorsId.d.mts +2 -2
- package/dist/fetch/v2FundraisingContributorsId.d.ts +2 -2
- package/dist/fetch/v2FundraisingContributorsIdOrders.d.mts +4 -4
- package/dist/fetch/v2FundraisingContributorsIdOrders.d.ts +4 -4
- 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/v2FundraisingRewards.d.mts +2 -2
- package/dist/fetch/v2FundraisingRewards.d.ts +2 -2
- package/dist/fetch/v2FundraisingRewardsRewardId.d.mts +2 -2
- package/dist/fetch/v2FundraisingRewardsRewardId.d.ts +2 -2
- package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrders.d.mts +6 -6
- package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrders.d.ts +6 -6
- package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrdersAll.d.mts +4 -4
- package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrdersAll.d.ts +4 -4
- package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrdersOrderId.d.mts +10 -10
- package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrdersOrderId.d.ts +10 -10
- package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrders.d.mts +8 -8
- package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrders.d.ts +8 -8
- package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrdersAll.d.mts +4 -4
- package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrdersAll.d.ts +4 -4
- package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrdersOrderId.d.mts +12 -12
- package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrdersOrderId.d.ts +12 -12
- package/dist/fetch/v2ResourcesBankBranches.d.mts +2 -2
- package/dist/fetch/v2ResourcesBankBranches.d.ts +2 -2
- package/dist/fetch/v2ResourcesBanks.d.mts +2 -2
- package/dist/fetch/v2ResourcesBanks.d.ts +2 -2
- package/package.json +3 -3
|
@@ -6,8 +6,8 @@ type V2FundraisingRewardsGetResponse = V2FundraisingRewardsGetOperation["respons
|
|
|
6
6
|
declare const buildV2FundraisingRewardsGetFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
|
|
7
7
|
needsDeliveryDeadlineAlert: boolean;
|
|
8
8
|
rewards: {
|
|
9
|
-
id: number;
|
|
10
9
|
price: number;
|
|
10
|
+
id: number;
|
|
11
11
|
thumbnailUrl: string;
|
|
12
12
|
project: {
|
|
13
13
|
id: number;
|
|
@@ -56,8 +56,8 @@ type V2FundraisingRewardsGetQuery = ForceDig<V2FundraisingRewardsGetOperation, [
|
|
|
56
56
|
declare const getV2FundraisingRewards: (query: V2FundraisingRewardsGetQuery, customRequestInit?: RequestInit) => Promise<{
|
|
57
57
|
needsDeliveryDeadlineAlert: boolean;
|
|
58
58
|
rewards: {
|
|
59
|
-
id: number;
|
|
60
59
|
price: number;
|
|
60
|
+
id: number;
|
|
61
61
|
thumbnailUrl: string;
|
|
62
62
|
project: {
|
|
63
63
|
id: number;
|
|
@@ -4,8 +4,8 @@ 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
|
-
id: number;
|
|
8
7
|
price: number;
|
|
8
|
+
id: number;
|
|
9
9
|
thumbnailUrl: string;
|
|
10
10
|
project: {
|
|
11
11
|
id: number;
|
|
@@ -40,8 +40,8 @@ type V2FundraisingRewardsRewardIdGetPath = ForceDig<V2FundraisingRewardsRewardId
|
|
|
40
40
|
"path"
|
|
41
41
|
]>;
|
|
42
42
|
declare const getV2FundraisingRewardsRewardId: (path: V2FundraisingRewardsRewardIdGetPath, customRequestInit?: RequestInit) => Promise<{
|
|
43
|
-
id: number;
|
|
44
43
|
price: number;
|
|
44
|
+
id: number;
|
|
45
45
|
thumbnailUrl: string;
|
|
46
46
|
project: {
|
|
47
47
|
id: number;
|
|
@@ -4,8 +4,8 @@ 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
|
-
id: number;
|
|
8
7
|
price: number;
|
|
8
|
+
id: number;
|
|
9
9
|
thumbnailUrl: string;
|
|
10
10
|
project: {
|
|
11
11
|
id: number;
|
|
@@ -40,8 +40,8 @@ type V2FundraisingRewardsRewardIdGetPath = ForceDig<V2FundraisingRewardsRewardId
|
|
|
40
40
|
"path"
|
|
41
41
|
]>;
|
|
42
42
|
declare const getV2FundraisingRewardsRewardId: (path: V2FundraisingRewardsRewardIdGetPath, customRequestInit?: RequestInit) => Promise<{
|
|
43
|
-
id: number;
|
|
44
43
|
price: number;
|
|
44
|
+
id: number;
|
|
45
45
|
thumbnailUrl: string;
|
|
46
46
|
project: {
|
|
47
47
|
id: number;
|
|
@@ -20,15 +20,15 @@ declare const buildV2FundraisingSpotCrowdfundingProjectOrdersGetFetcher: (reques
|
|
|
20
20
|
nextPage?: number | undefined;
|
|
21
21
|
};
|
|
22
22
|
orders: {
|
|
23
|
-
payAmount: number;
|
|
24
|
-
id: number;
|
|
25
23
|
contributor: {
|
|
26
|
-
id: number;
|
|
27
24
|
email: string | null;
|
|
28
25
|
name: string;
|
|
26
|
+
id: number;
|
|
29
27
|
imageUrl?: string | undefined;
|
|
30
28
|
};
|
|
31
29
|
createdAt: string;
|
|
30
|
+
payAmount: number;
|
|
31
|
+
id: number;
|
|
32
32
|
project: {
|
|
33
33
|
id: number;
|
|
34
34
|
title: string;
|
|
@@ -79,15 +79,15 @@ declare const getV2FundraisingSpotCrowdfundingProjectOrders: (query: V2Fundraisi
|
|
|
79
79
|
nextPage?: number | undefined;
|
|
80
80
|
};
|
|
81
81
|
orders: {
|
|
82
|
-
payAmount: number;
|
|
83
|
-
id: number;
|
|
84
82
|
contributor: {
|
|
85
|
-
id: number;
|
|
86
83
|
email: string | null;
|
|
87
84
|
name: string;
|
|
85
|
+
id: number;
|
|
88
86
|
imageUrl?: string | undefined;
|
|
89
87
|
};
|
|
90
88
|
createdAt: string;
|
|
89
|
+
payAmount: number;
|
|
90
|
+
id: number;
|
|
91
91
|
project: {
|
|
92
92
|
id: number;
|
|
93
93
|
title: string;
|
|
@@ -20,15 +20,15 @@ declare const buildV2FundraisingSpotCrowdfundingProjectOrdersGetFetcher: (reques
|
|
|
20
20
|
nextPage?: number | undefined;
|
|
21
21
|
};
|
|
22
22
|
orders: {
|
|
23
|
-
payAmount: number;
|
|
24
|
-
id: number;
|
|
25
23
|
contributor: {
|
|
26
|
-
id: number;
|
|
27
24
|
email: string | null;
|
|
28
25
|
name: string;
|
|
26
|
+
id: number;
|
|
29
27
|
imageUrl?: string | undefined;
|
|
30
28
|
};
|
|
31
29
|
createdAt: string;
|
|
30
|
+
payAmount: number;
|
|
31
|
+
id: number;
|
|
32
32
|
project: {
|
|
33
33
|
id: number;
|
|
34
34
|
title: string;
|
|
@@ -79,15 +79,15 @@ declare const getV2FundraisingSpotCrowdfundingProjectOrders: (query: V2Fundraisi
|
|
|
79
79
|
nextPage?: number | undefined;
|
|
80
80
|
};
|
|
81
81
|
orders: {
|
|
82
|
-
payAmount: number;
|
|
83
|
-
id: number;
|
|
84
82
|
contributor: {
|
|
85
|
-
id: number;
|
|
86
83
|
email: string | null;
|
|
87
84
|
name: string;
|
|
85
|
+
id: number;
|
|
88
86
|
imageUrl?: string | undefined;
|
|
89
87
|
};
|
|
90
88
|
createdAt: string;
|
|
89
|
+
payAmount: number;
|
|
90
|
+
id: number;
|
|
91
91
|
project: {
|
|
92
92
|
id: number;
|
|
93
93
|
title: string;
|
|
@@ -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
9
|
email: string | null;
|
|
12
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
24
|
email: string | null;
|
|
27
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
9
|
email: string | null;
|
|
12
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
24
|
email: string | null;
|
|
27
25
|
name: string;
|
|
26
|
+
id: number;
|
|
28
27
|
imageUrl?: string | undefined;
|
|
29
28
|
};
|
|
29
|
+
id: number;
|
|
30
30
|
}[];
|
|
31
31
|
}>;
|
|
32
32
|
|
|
@@ -4,35 +4,35 @@ 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
|
-
payAmount: number;
|
|
8
|
-
id: number;
|
|
9
7
|
contributor: {
|
|
10
|
-
id: number;
|
|
11
8
|
imageUrl: string;
|
|
12
9
|
email: string | null;
|
|
13
10
|
name: string;
|
|
11
|
+
id: number;
|
|
14
12
|
isActive: boolean;
|
|
15
13
|
hasValidOrder: boolean;
|
|
16
14
|
};
|
|
17
15
|
createdAt: string;
|
|
16
|
+
payAmount: number;
|
|
17
|
+
id: number;
|
|
18
18
|
project: {
|
|
19
19
|
id: number;
|
|
20
20
|
title: string;
|
|
21
21
|
};
|
|
22
22
|
state: "waitPayment" | "pendingProjectAchievement" | "unsuccessful" | "canceled" | "confirmed";
|
|
23
23
|
comments: {
|
|
24
|
-
content: string;
|
|
25
24
|
imageUrl: string;
|
|
26
25
|
name: string;
|
|
27
26
|
createdAt: string;
|
|
27
|
+
content: string;
|
|
28
28
|
}[];
|
|
29
29
|
payment: {
|
|
30
30
|
type: "creditCard" | "bankTransfer" | "convenienceStore";
|
|
31
31
|
state: "waitPayment" | "canceled" | "completed" | "expired" | "reserved" | "underpayment" | "transactionFailed";
|
|
32
32
|
};
|
|
33
33
|
rewardDeliveries: {
|
|
34
|
-
id: number;
|
|
35
34
|
price: number;
|
|
35
|
+
id: number;
|
|
36
36
|
rewardThumbnailUrl: string;
|
|
37
37
|
deliveryState: "notStarted" | "failed" | "completed" | "unnecessary";
|
|
38
38
|
selectedCount: number;
|
|
@@ -62,35 +62,35 @@ type V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetPath = ForceDig<V2Fundr
|
|
|
62
62
|
"path"
|
|
63
63
|
]>;
|
|
64
64
|
declare const getV2FundraisingSpotCrowdfundingProjectOrdersOrderId: (path: V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetPath, customRequestInit?: RequestInit) => Promise<{
|
|
65
|
-
payAmount: number;
|
|
66
|
-
id: number;
|
|
67
65
|
contributor: {
|
|
68
|
-
id: number;
|
|
69
66
|
imageUrl: string;
|
|
70
67
|
email: string | null;
|
|
71
68
|
name: string;
|
|
69
|
+
id: number;
|
|
72
70
|
isActive: boolean;
|
|
73
71
|
hasValidOrder: boolean;
|
|
74
72
|
};
|
|
75
73
|
createdAt: string;
|
|
74
|
+
payAmount: number;
|
|
75
|
+
id: number;
|
|
76
76
|
project: {
|
|
77
77
|
id: number;
|
|
78
78
|
title: string;
|
|
79
79
|
};
|
|
80
80
|
state: "waitPayment" | "pendingProjectAchievement" | "unsuccessful" | "canceled" | "confirmed";
|
|
81
81
|
comments: {
|
|
82
|
-
content: string;
|
|
83
82
|
imageUrl: string;
|
|
84
83
|
name: string;
|
|
85
84
|
createdAt: string;
|
|
85
|
+
content: string;
|
|
86
86
|
}[];
|
|
87
87
|
payment: {
|
|
88
88
|
type: "creditCard" | "bankTransfer" | "convenienceStore";
|
|
89
89
|
state: "waitPayment" | "canceled" | "completed" | "expired" | "reserved" | "underpayment" | "transactionFailed";
|
|
90
90
|
};
|
|
91
91
|
rewardDeliveries: {
|
|
92
|
-
id: number;
|
|
93
92
|
price: number;
|
|
93
|
+
id: number;
|
|
94
94
|
rewardThumbnailUrl: string;
|
|
95
95
|
deliveryState: "notStarted" | "failed" | "completed" | "unnecessary";
|
|
96
96
|
selectedCount: number;
|
|
@@ -4,35 +4,35 @@ 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
|
-
payAmount: number;
|
|
8
|
-
id: number;
|
|
9
7
|
contributor: {
|
|
10
|
-
id: number;
|
|
11
8
|
imageUrl: string;
|
|
12
9
|
email: string | null;
|
|
13
10
|
name: string;
|
|
11
|
+
id: number;
|
|
14
12
|
isActive: boolean;
|
|
15
13
|
hasValidOrder: boolean;
|
|
16
14
|
};
|
|
17
15
|
createdAt: string;
|
|
16
|
+
payAmount: number;
|
|
17
|
+
id: number;
|
|
18
18
|
project: {
|
|
19
19
|
id: number;
|
|
20
20
|
title: string;
|
|
21
21
|
};
|
|
22
22
|
state: "waitPayment" | "pendingProjectAchievement" | "unsuccessful" | "canceled" | "confirmed";
|
|
23
23
|
comments: {
|
|
24
|
-
content: string;
|
|
25
24
|
imageUrl: string;
|
|
26
25
|
name: string;
|
|
27
26
|
createdAt: string;
|
|
27
|
+
content: string;
|
|
28
28
|
}[];
|
|
29
29
|
payment: {
|
|
30
30
|
type: "creditCard" | "bankTransfer" | "convenienceStore";
|
|
31
31
|
state: "waitPayment" | "canceled" | "completed" | "expired" | "reserved" | "underpayment" | "transactionFailed";
|
|
32
32
|
};
|
|
33
33
|
rewardDeliveries: {
|
|
34
|
-
id: number;
|
|
35
34
|
price: number;
|
|
35
|
+
id: number;
|
|
36
36
|
rewardThumbnailUrl: string;
|
|
37
37
|
deliveryState: "notStarted" | "failed" | "completed" | "unnecessary";
|
|
38
38
|
selectedCount: number;
|
|
@@ -62,35 +62,35 @@ type V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetPath = ForceDig<V2Fundr
|
|
|
62
62
|
"path"
|
|
63
63
|
]>;
|
|
64
64
|
declare const getV2FundraisingSpotCrowdfundingProjectOrdersOrderId: (path: V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetPath, customRequestInit?: RequestInit) => Promise<{
|
|
65
|
-
payAmount: number;
|
|
66
|
-
id: number;
|
|
67
65
|
contributor: {
|
|
68
|
-
id: number;
|
|
69
66
|
imageUrl: string;
|
|
70
67
|
email: string | null;
|
|
71
68
|
name: string;
|
|
69
|
+
id: number;
|
|
72
70
|
isActive: boolean;
|
|
73
71
|
hasValidOrder: boolean;
|
|
74
72
|
};
|
|
75
73
|
createdAt: string;
|
|
74
|
+
payAmount: number;
|
|
75
|
+
id: number;
|
|
76
76
|
project: {
|
|
77
77
|
id: number;
|
|
78
78
|
title: string;
|
|
79
79
|
};
|
|
80
80
|
state: "waitPayment" | "pendingProjectAchievement" | "unsuccessful" | "canceled" | "confirmed";
|
|
81
81
|
comments: {
|
|
82
|
-
content: string;
|
|
83
82
|
imageUrl: string;
|
|
84
83
|
name: string;
|
|
85
84
|
createdAt: string;
|
|
85
|
+
content: string;
|
|
86
86
|
}[];
|
|
87
87
|
payment: {
|
|
88
88
|
type: "creditCard" | "bankTransfer" | "convenienceStore";
|
|
89
89
|
state: "waitPayment" | "canceled" | "completed" | "expired" | "reserved" | "underpayment" | "transactionFailed";
|
|
90
90
|
};
|
|
91
91
|
rewardDeliveries: {
|
|
92
|
-
id: number;
|
|
93
92
|
price: number;
|
|
93
|
+
id: number;
|
|
94
94
|
rewardThumbnailUrl: string;
|
|
95
95
|
deliveryState: "notStarted" | "failed" | "completed" | "unnecessary";
|
|
96
96
|
selectedCount: number;
|
|
@@ -20,16 +20,16 @@ declare const buildV2FundraisingSteadyCrowdfundingProjectOrdersGetFetcher: (requ
|
|
|
20
20
|
nextPage?: number | undefined;
|
|
21
21
|
};
|
|
22
22
|
orders: ({
|
|
23
|
-
id: number;
|
|
24
23
|
contributor: {
|
|
25
|
-
id: number;
|
|
26
24
|
email: string | null;
|
|
27
25
|
name: string;
|
|
26
|
+
id: number;
|
|
28
27
|
imageUrl?: string | undefined;
|
|
29
28
|
};
|
|
30
29
|
createdAt: string;
|
|
31
30
|
totalAmount: number;
|
|
32
31
|
monthlyAmount: number;
|
|
32
|
+
id: number;
|
|
33
33
|
billingState: "billingContinuing" | "billingDiscontinued" | "waitRetryPayment";
|
|
34
34
|
project: {
|
|
35
35
|
id: number;
|
|
@@ -47,15 +47,15 @@ declare const buildV2FundraisingSteadyCrowdfundingProjectOrdersGetFetcher: (requ
|
|
|
47
47
|
} | undefined;
|
|
48
48
|
comment?: string | undefined;
|
|
49
49
|
} | {
|
|
50
|
-
id: number;
|
|
51
50
|
contributor: {
|
|
52
|
-
id: number;
|
|
53
51
|
email: string | null;
|
|
54
52
|
name: string;
|
|
53
|
+
id: number;
|
|
55
54
|
imageUrl?: string | undefined;
|
|
56
55
|
};
|
|
57
56
|
createdAt: string;
|
|
58
57
|
amount: number;
|
|
58
|
+
id: number;
|
|
59
59
|
project: {
|
|
60
60
|
id: number;
|
|
61
61
|
title: string;
|
|
@@ -95,16 +95,16 @@ declare const getV2FundraisingSteadyCrowdfundingProjectOrders: (query: V2Fundrai
|
|
|
95
95
|
nextPage?: number | undefined;
|
|
96
96
|
};
|
|
97
97
|
orders: ({
|
|
98
|
-
id: number;
|
|
99
98
|
contributor: {
|
|
100
|
-
id: number;
|
|
101
99
|
email: string | null;
|
|
102
100
|
name: string;
|
|
101
|
+
id: number;
|
|
103
102
|
imageUrl?: string | undefined;
|
|
104
103
|
};
|
|
105
104
|
createdAt: string;
|
|
106
105
|
totalAmount: number;
|
|
107
106
|
monthlyAmount: number;
|
|
107
|
+
id: number;
|
|
108
108
|
billingState: "billingContinuing" | "billingDiscontinued" | "waitRetryPayment";
|
|
109
109
|
project: {
|
|
110
110
|
id: number;
|
|
@@ -122,15 +122,15 @@ declare const getV2FundraisingSteadyCrowdfundingProjectOrders: (query: V2Fundrai
|
|
|
122
122
|
} | undefined;
|
|
123
123
|
comment?: string | undefined;
|
|
124
124
|
} | {
|
|
125
|
-
id: number;
|
|
126
125
|
contributor: {
|
|
127
|
-
id: number;
|
|
128
126
|
email: string | null;
|
|
129
127
|
name: string;
|
|
128
|
+
id: number;
|
|
130
129
|
imageUrl?: string | undefined;
|
|
131
130
|
};
|
|
132
131
|
createdAt: string;
|
|
133
132
|
amount: number;
|
|
133
|
+
id: number;
|
|
134
134
|
project: {
|
|
135
135
|
id: number;
|
|
136
136
|
title: string;
|
|
@@ -20,16 +20,16 @@ declare const buildV2FundraisingSteadyCrowdfundingProjectOrdersGetFetcher: (requ
|
|
|
20
20
|
nextPage?: number | undefined;
|
|
21
21
|
};
|
|
22
22
|
orders: ({
|
|
23
|
-
id: number;
|
|
24
23
|
contributor: {
|
|
25
|
-
id: number;
|
|
26
24
|
email: string | null;
|
|
27
25
|
name: string;
|
|
26
|
+
id: number;
|
|
28
27
|
imageUrl?: string | undefined;
|
|
29
28
|
};
|
|
30
29
|
createdAt: string;
|
|
31
30
|
totalAmount: number;
|
|
32
31
|
monthlyAmount: number;
|
|
32
|
+
id: number;
|
|
33
33
|
billingState: "billingContinuing" | "billingDiscontinued" | "waitRetryPayment";
|
|
34
34
|
project: {
|
|
35
35
|
id: number;
|
|
@@ -47,15 +47,15 @@ declare const buildV2FundraisingSteadyCrowdfundingProjectOrdersGetFetcher: (requ
|
|
|
47
47
|
} | undefined;
|
|
48
48
|
comment?: string | undefined;
|
|
49
49
|
} | {
|
|
50
|
-
id: number;
|
|
51
50
|
contributor: {
|
|
52
|
-
id: number;
|
|
53
51
|
email: string | null;
|
|
54
52
|
name: string;
|
|
53
|
+
id: number;
|
|
55
54
|
imageUrl?: string | undefined;
|
|
56
55
|
};
|
|
57
56
|
createdAt: string;
|
|
58
57
|
amount: number;
|
|
58
|
+
id: number;
|
|
59
59
|
project: {
|
|
60
60
|
id: number;
|
|
61
61
|
title: string;
|
|
@@ -95,16 +95,16 @@ declare const getV2FundraisingSteadyCrowdfundingProjectOrders: (query: V2Fundrai
|
|
|
95
95
|
nextPage?: number | undefined;
|
|
96
96
|
};
|
|
97
97
|
orders: ({
|
|
98
|
-
id: number;
|
|
99
98
|
contributor: {
|
|
100
|
-
id: number;
|
|
101
99
|
email: string | null;
|
|
102
100
|
name: string;
|
|
101
|
+
id: number;
|
|
103
102
|
imageUrl?: string | undefined;
|
|
104
103
|
};
|
|
105
104
|
createdAt: string;
|
|
106
105
|
totalAmount: number;
|
|
107
106
|
monthlyAmount: number;
|
|
107
|
+
id: number;
|
|
108
108
|
billingState: "billingContinuing" | "billingDiscontinued" | "waitRetryPayment";
|
|
109
109
|
project: {
|
|
110
110
|
id: number;
|
|
@@ -122,15 +122,15 @@ declare const getV2FundraisingSteadyCrowdfundingProjectOrders: (query: V2Fundrai
|
|
|
122
122
|
} | undefined;
|
|
123
123
|
comment?: string | undefined;
|
|
124
124
|
} | {
|
|
125
|
-
id: number;
|
|
126
125
|
contributor: {
|
|
127
|
-
id: number;
|
|
128
126
|
email: string | null;
|
|
129
127
|
name: string;
|
|
128
|
+
id: number;
|
|
130
129
|
imageUrl?: string | undefined;
|
|
131
130
|
};
|
|
132
131
|
createdAt: string;
|
|
133
132
|
amount: number;
|
|
133
|
+
id: number;
|
|
134
134
|
project: {
|
|
135
135
|
id: number;
|
|
136
136
|
title: string;
|
|
@@ -5,13 +5,13 @@ type V2FundraisingSteadyCrowdfundingProjectOrdersAllGetOperation = paths["/api/v
|
|
|
5
5
|
type V2FundraisingSteadyCrowdfundingProjectOrdersAllGetResponse = V2FundraisingSteadyCrowdfundingProjectOrdersAllGetOperation["responses"]["200"]["content"]["application/json"];
|
|
6
6
|
declare const buildV2FundraisingSteadyCrowdfundingProjectOrdersAllGetFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
|
|
7
7
|
orders: {
|
|
8
|
-
id: number;
|
|
9
8
|
contributor: {
|
|
10
|
-
id: number;
|
|
11
9
|
email: string | null;
|
|
12
10
|
name: string;
|
|
11
|
+
id: number;
|
|
13
12
|
imageUrl?: string | undefined;
|
|
14
13
|
};
|
|
14
|
+
id: number;
|
|
15
15
|
}[];
|
|
16
16
|
}>;
|
|
17
17
|
type V2FundraisingSteadyCrowdfundingProjectOrdersAllGetQuery = QueryPropsFor<ForceDig<V2FundraisingSteadyCrowdfundingProjectOrdersAllGetOperation, [
|
|
@@ -20,13 +20,13 @@ type V2FundraisingSteadyCrowdfundingProjectOrdersAllGetQuery = QueryPropsFor<For
|
|
|
20
20
|
]>>;
|
|
21
21
|
declare const getV2FundraisingSteadyCrowdfundingProjectOrdersAll: (query: V2FundraisingSteadyCrowdfundingProjectOrdersAllGetQuery, customRequestInit?: RequestInit) => Promise<{
|
|
22
22
|
orders: {
|
|
23
|
-
id: number;
|
|
24
23
|
contributor: {
|
|
25
|
-
id: number;
|
|
26
24
|
email: string | null;
|
|
27
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 V2FundraisingSteadyCrowdfundingProjectOrdersAllGetOperation = paths["/api/v
|
|
|
5
5
|
type V2FundraisingSteadyCrowdfundingProjectOrdersAllGetResponse = V2FundraisingSteadyCrowdfundingProjectOrdersAllGetOperation["responses"]["200"]["content"]["application/json"];
|
|
6
6
|
declare const buildV2FundraisingSteadyCrowdfundingProjectOrdersAllGetFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
|
|
7
7
|
orders: {
|
|
8
|
-
id: number;
|
|
9
8
|
contributor: {
|
|
10
|
-
id: number;
|
|
11
9
|
email: string | null;
|
|
12
10
|
name: string;
|
|
11
|
+
id: number;
|
|
13
12
|
imageUrl?: string | undefined;
|
|
14
13
|
};
|
|
14
|
+
id: number;
|
|
15
15
|
}[];
|
|
16
16
|
}>;
|
|
17
17
|
type V2FundraisingSteadyCrowdfundingProjectOrdersAllGetQuery = QueryPropsFor<ForceDig<V2FundraisingSteadyCrowdfundingProjectOrdersAllGetOperation, [
|
|
@@ -20,13 +20,13 @@ type V2FundraisingSteadyCrowdfundingProjectOrdersAllGetQuery = QueryPropsFor<For
|
|
|
20
20
|
]>>;
|
|
21
21
|
declare const getV2FundraisingSteadyCrowdfundingProjectOrdersAll: (query: V2FundraisingSteadyCrowdfundingProjectOrdersAllGetQuery, customRequestInit?: RequestInit) => Promise<{
|
|
22
22
|
orders: {
|
|
23
|
-
id: number;
|
|
24
23
|
contributor: {
|
|
25
|
-
id: number;
|
|
26
24
|
email: string | null;
|
|
27
25
|
name: string;
|
|
26
|
+
id: number;
|
|
28
27
|
imageUrl?: string | undefined;
|
|
29
28
|
};
|
|
29
|
+
id: number;
|
|
30
30
|
}[];
|
|
31
31
|
}>;
|
|
32
32
|
|