@readyfor/api-client-readyfor-api 0.255.0-pr1024.774d2f8 → 0.255.0-pr1025.6f4800a

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 (43) hide show
  1. package/dist/fetch/v2ContributionsCard3dSecureExecContribution.d.mts +4 -4
  2. package/dist/fetch/v2ContributionsCard3dSecureExecContribution.d.ts +4 -4
  3. package/dist/fetch/v2ContributionsCard3dSecureRetryContribution.d.mts +4 -4
  4. package/dist/fetch/v2ContributionsCard3dSecureRetryContribution.d.ts +4 -4
  5. package/dist/fetch/v2ContributionsCheckOrderStatus.d.mts +2 -2
  6. package/dist/fetch/v2ContributionsCheckOrderStatus.d.ts +2 -2
  7. package/dist/fetch/v2ContributionsOrderInfo.d.mts +2 -2
  8. package/dist/fetch/v2ContributionsOrderInfo.d.ts +2 -2
  9. package/dist/fetch/v2ContributionsProjectInfo.d.mts +8 -8
  10. package/dist/fetch/v2ContributionsProjectInfo.d.ts +8 -8
  11. package/dist/fetch/v2FundraisingBulkMessagesTargetUsers.d.mts +2 -2
  12. package/dist/fetch/v2FundraisingBulkMessagesTargetUsers.d.ts +2 -2
  13. package/dist/fetch/v2FundraisingContributors.d.mts +2 -2
  14. package/dist/fetch/v2FundraisingContributors.d.ts +2 -2
  15. package/dist/fetch/v2FundraisingContributorsUsers.d.mts +2 -2
  16. package/dist/fetch/v2FundraisingContributorsUsers.d.ts +2 -2
  17. package/dist/fetch/v2FundraisingRewards.d.mts +2 -2
  18. package/dist/fetch/v2FundraisingRewards.d.ts +2 -2
  19. package/dist/fetch/v2FundraisingRewardsRewardId.d.mts +2 -2
  20. package/dist/fetch/v2FundraisingRewardsRewardId.d.ts +2 -2
  21. package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrders.d.mts +6 -6
  22. package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrders.d.ts +6 -6
  23. package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrdersAll.d.mts +4 -4
  24. package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrdersAll.d.ts +4 -4
  25. package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrdersOrderId.d.mts +10 -10
  26. package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrdersOrderId.d.ts +10 -10
  27. package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrders.d.mts +8 -8
  28. package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrders.d.ts +8 -8
  29. package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrdersAll.d.mts +4 -4
  30. package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrdersAll.d.ts +4 -4
  31. package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrdersOrderId.d.mts +12 -12
  32. package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrdersOrderId.d.ts +12 -12
  33. package/dist/fetch/v2OwnerCrmContributorsOrders.d.mts +4 -4
  34. package/dist/fetch/v2OwnerCrmContributorsOrders.d.ts +4 -4
  35. package/dist/fetch/v2OwnerCrmContributorsProjects.d.mts +2 -2
  36. package/dist/fetch/v2OwnerCrmContributorsProjects.d.ts +2 -2
  37. package/dist/fetch/v2OwnerCrmContributorsUser.d.mts +2 -2
  38. package/dist/fetch/v2OwnerCrmContributorsUser.d.ts +2 -2
  39. package/dist/fetch/v2ResourcesBankBranches.d.mts +2 -2
  40. package/dist/fetch/v2ResourcesBankBranches.d.ts +2 -2
  41. package/dist/fetch/v2ResourcesBanks.d.mts +2 -2
  42. package/dist/fetch/v2ResourcesBanks.d.ts +2 -2
  43. package/package.json +3 -3
@@ -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;
@@ -60,35 +60,35 @@ type V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetPath = ForceDig<V2Fundr
60
60
  "path"
61
61
  ]>;
62
62
  declare const getV2FundraisingSpotCrowdfundingProjectOrdersOrderId: (path: V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetPath, customRequestInit?: RequestInit) => Promise<{
63
- payAmount: number;
64
- id: number;
65
63
  contributor: {
66
- id: number;
67
64
  imageUrl: string;
68
65
  email: string | null;
69
66
  name: string;
67
+ id: number;
70
68
  isActive: boolean;
71
69
  hasValidOrder: boolean;
72
70
  };
73
71
  createdAt: string;
72
+ payAmount: number;
73
+ id: number;
74
74
  project: {
75
75
  id: number;
76
76
  title: string;
77
77
  };
78
78
  state: "waitPayment" | "pendingProjectAchievement" | "unsuccessful" | "canceled" | "confirmed";
79
79
  comments: {
80
- content: string;
81
80
  imageUrl: string;
82
81
  name: string;
83
82
  createdAt: string;
83
+ content: string;
84
84
  }[];
85
85
  payment: {
86
86
  type: "creditCard" | "bankTransfer" | "convenienceStore";
87
87
  state: "waitPayment" | "canceled" | "completed" | "expired" | "reserved" | "underpayment" | "transactionFailed";
88
88
  };
89
89
  rewardDeliveries: {
90
- id: number;
91
90
  price: number;
91
+ id: number;
92
92
  rewardThumbnailUrl: string;
93
93
  deliveryState: "notStarted" | "failed" | "completed" | "unnecessary";
94
94
  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;
@@ -60,35 +60,35 @@ type V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetPath = ForceDig<V2Fundr
60
60
  "path"
61
61
  ]>;
62
62
  declare const getV2FundraisingSpotCrowdfundingProjectOrdersOrderId: (path: V2FundraisingSpotCrowdfundingProjectOrdersOrderIdGetPath, customRequestInit?: RequestInit) => Promise<{
63
- payAmount: number;
64
- id: number;
65
63
  contributor: {
66
- id: number;
67
64
  imageUrl: string;
68
65
  email: string | null;
69
66
  name: string;
67
+ id: number;
70
68
  isActive: boolean;
71
69
  hasValidOrder: boolean;
72
70
  };
73
71
  createdAt: string;
72
+ payAmount: number;
73
+ id: number;
74
74
  project: {
75
75
  id: number;
76
76
  title: string;
77
77
  };
78
78
  state: "waitPayment" | "pendingProjectAchievement" | "unsuccessful" | "canceled" | "confirmed";
79
79
  comments: {
80
- content: string;
81
80
  imageUrl: string;
82
81
  name: string;
83
82
  createdAt: string;
83
+ content: string;
84
84
  }[];
85
85
  payment: {
86
86
  type: "creditCard" | "bankTransfer" | "convenienceStore";
87
87
  state: "waitPayment" | "canceled" | "completed" | "expired" | "reserved" | "underpayment" | "transactionFailed";
88
88
  };
89
89
  rewardDeliveries: {
90
- id: number;
91
90
  price: number;
91
+ id: number;
92
92
  rewardThumbnailUrl: string;
93
93
  deliveryState: "notStarted" | "failed" | "completed" | "unnecessary";
94
94
  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;
@@ -45,15 +45,15 @@ declare const buildV2FundraisingSteadyCrowdfundingProjectOrdersGetFetcher: (requ
45
45
  } | undefined;
46
46
  comment?: string | undefined;
47
47
  } | {
48
- id: number;
49
48
  contributor: {
50
- id: number;
51
49
  email: string | null;
52
50
  name: string;
51
+ id: number;
53
52
  imageUrl?: string | undefined;
54
53
  };
55
54
  createdAt: string;
56
55
  amount: number;
56
+ id: number;
57
57
  project: {
58
58
  id: number;
59
59
  title: string;
@@ -91,16 +91,16 @@ declare const getV2FundraisingSteadyCrowdfundingProjectOrders: (query: V2Fundrai
91
91
  nextPage?: number | undefined;
92
92
  };
93
93
  orders: ({
94
- id: number;
95
94
  contributor: {
96
- id: number;
97
95
  email: string | null;
98
96
  name: string;
97
+ id: number;
99
98
  imageUrl?: string | undefined;
100
99
  };
101
100
  createdAt: string;
102
101
  totalAmount: number;
103
102
  monthlyAmount: number;
103
+ id: number;
104
104
  billingState: "billingContinuing" | "billingDiscontinued" | "waitRetryPayment";
105
105
  project: {
106
106
  id: number;
@@ -116,15 +116,15 @@ declare const getV2FundraisingSteadyCrowdfundingProjectOrders: (query: V2Fundrai
116
116
  } | undefined;
117
117
  comment?: string | undefined;
118
118
  } | {
119
- id: number;
120
119
  contributor: {
121
- id: number;
122
120
  email: string | null;
123
121
  name: string;
122
+ id: number;
124
123
  imageUrl?: string | undefined;
125
124
  };
126
125
  createdAt: string;
127
126
  amount: number;
127
+ id: number;
128
128
  project: {
129
129
  id: number;
130
130
  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;
@@ -45,15 +45,15 @@ declare const buildV2FundraisingSteadyCrowdfundingProjectOrdersGetFetcher: (requ
45
45
  } | undefined;
46
46
  comment?: string | undefined;
47
47
  } | {
48
- id: number;
49
48
  contributor: {
50
- id: number;
51
49
  email: string | null;
52
50
  name: string;
51
+ id: number;
53
52
  imageUrl?: string | undefined;
54
53
  };
55
54
  createdAt: string;
56
55
  amount: number;
56
+ id: number;
57
57
  project: {
58
58
  id: number;
59
59
  title: string;
@@ -91,16 +91,16 @@ declare const getV2FundraisingSteadyCrowdfundingProjectOrders: (query: V2Fundrai
91
91
  nextPage?: number | undefined;
92
92
  };
93
93
  orders: ({
94
- id: number;
95
94
  contributor: {
96
- id: number;
97
95
  email: string | null;
98
96
  name: string;
97
+ id: number;
99
98
  imageUrl?: string | undefined;
100
99
  };
101
100
  createdAt: string;
102
101
  totalAmount: number;
103
102
  monthlyAmount: number;
103
+ id: number;
104
104
  billingState: "billingContinuing" | "billingDiscontinued" | "waitRetryPayment";
105
105
  project: {
106
106
  id: number;
@@ -116,15 +116,15 @@ declare const getV2FundraisingSteadyCrowdfundingProjectOrders: (query: V2Fundrai
116
116
  } | undefined;
117
117
  comment?: string | undefined;
118
118
  } | {
119
- id: number;
120
119
  contributor: {
121
- id: number;
122
120
  email: string | null;
123
121
  name: string;
122
+ id: number;
124
123
  imageUrl?: string | undefined;
125
124
  };
126
125
  createdAt: string;
127
126
  amount: number;
127
+ id: number;
128
128
  project: {
129
129
  id: number;
130
130
  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
 
@@ -4,17 +4,17 @@ import { ForceDig } from '@readyfor/api-client-base';
4
4
  type V2FundraisingSteadyCrowdfundingProjectOrdersOrderIdGetOperation = paths["/api/v2/fundraising/steady_crowdfunding_project_orders/{order_id}"]["get"];
5
5
  type V2FundraisingSteadyCrowdfundingProjectOrdersOrderIdGetResponse = V2FundraisingSteadyCrowdfundingProjectOrdersOrderIdGetOperation["responses"]["200"]["content"]["application/json"];
6
6
  declare const buildV2FundraisingSteadyCrowdfundingProjectOrdersOrderIdGetFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
7
- id: number;
8
7
  contributor: {
9
- id: number;
10
8
  imageUrl: string;
11
9
  email: string | null;
12
10
  name: string;
11
+ id: number;
13
12
  isActive: boolean;
14
13
  hasValidOrder: boolean;
15
14
  };
16
15
  createdAt: string;
17
16
  amount: number;
17
+ id: number;
18
18
  project: {
19
19
  id: number;
20
20
  title: string;
@@ -24,10 +24,10 @@ declare const buildV2FundraisingSteadyCrowdfundingProjectOrdersOrderIdGetFetcher
24
24
  title: string;
25
25
  };
26
26
  comments: {
27
- content: string;
28
27
  imageUrl: string;
29
28
  name: string;
30
29
  createdAt: string;
30
+ content: string;
31
31
  }[];
32
32
  __type?: "FundraisingSteadyCrowdfundingProjectOnetimeOrderId" | undefined;
33
33
  delivery?: {
@@ -45,18 +45,18 @@ declare const buildV2FundraisingSteadyCrowdfundingProjectOrdersOrderIdGetFetcher
45
45
  rewardThumbnailUrl?: string | undefined;
46
46
  } | undefined;
47
47
  } | {
48
- id: number;
49
48
  contributor: {
50
- id: number;
51
49
  imageUrl: string;
52
50
  email: string | null;
53
51
  name: string;
52
+ id: number;
54
53
  isActive: boolean;
55
54
  hasValidOrder: boolean;
56
55
  };
57
56
  createdAt: string;
58
57
  totalAmount: number;
59
58
  monthlyAmount: number;
59
+ id: number;
60
60
  billingState: "billingContinuing" | "billingDiscontinued" | "waitRetryPayment";
61
61
  project: {
62
62
  id: number;
@@ -67,10 +67,10 @@ declare const buildV2FundraisingSteadyCrowdfundingProjectOrdersOrderIdGetFetcher
67
67
  thumbnailUrl: string;
68
68
  };
69
69
  comments: {
70
- content: string;
71
70
  imageUrl: string;
72
71
  name: string;
73
72
  createdAt: string;
73
+ content: string;
74
74
  }[];
75
75
  recurringMonths: number;
76
76
  __type?: "FundraisingSteadyCrowdfundingProjectMonthlyOrderId" | undefined;
@@ -96,17 +96,17 @@ type V2FundraisingSteadyCrowdfundingProjectOrdersOrderIdGetPath = ForceDig<V2Fun
96
96
  "path"
97
97
  ]>;
98
98
  declare const getV2FundraisingSteadyCrowdfundingProjectOrdersOrderId: (path: V2FundraisingSteadyCrowdfundingProjectOrdersOrderIdGetPath, customRequestInit?: RequestInit) => Promise<{
99
- id: number;
100
99
  contributor: {
101
- id: number;
102
100
  imageUrl: string;
103
101
  email: string | null;
104
102
  name: string;
103
+ id: number;
105
104
  isActive: boolean;
106
105
  hasValidOrder: boolean;
107
106
  };
108
107
  createdAt: string;
109
108
  amount: number;
109
+ id: number;
110
110
  project: {
111
111
  id: number;
112
112
  title: string;
@@ -116,10 +116,10 @@ declare const getV2FundraisingSteadyCrowdfundingProjectOrdersOrderId: (path: V2F
116
116
  title: string;
117
117
  };
118
118
  comments: {
119
- content: string;
120
119
  imageUrl: string;
121
120
  name: string;
122
121
  createdAt: string;
122
+ content: string;
123
123
  }[];
124
124
  __type?: "FundraisingSteadyCrowdfundingProjectOnetimeOrderId" | undefined;
125
125
  delivery?: {
@@ -137,18 +137,18 @@ declare const getV2FundraisingSteadyCrowdfundingProjectOrdersOrderId: (path: V2F
137
137
  rewardThumbnailUrl?: string | undefined;
138
138
  } | undefined;
139
139
  } | {
140
- id: number;
141
140
  contributor: {
142
- id: number;
143
141
  imageUrl: string;
144
142
  email: string | null;
145
143
  name: string;
144
+ id: number;
146
145
  isActive: boolean;
147
146
  hasValidOrder: boolean;
148
147
  };
149
148
  createdAt: string;
150
149
  totalAmount: number;
151
150
  monthlyAmount: number;
151
+ id: number;
152
152
  billingState: "billingContinuing" | "billingDiscontinued" | "waitRetryPayment";
153
153
  project: {
154
154
  id: number;
@@ -159,10 +159,10 @@ declare const getV2FundraisingSteadyCrowdfundingProjectOrdersOrderId: (path: V2F
159
159
  thumbnailUrl: string;
160
160
  };
161
161
  comments: {
162
- content: string;
163
162
  imageUrl: string;
164
163
  name: string;
165
164
  createdAt: string;
165
+ content: string;
166
166
  }[];
167
167
  recurringMonths: number;
168
168
  __type?: "FundraisingSteadyCrowdfundingProjectMonthlyOrderId" | undefined;