@readyfor/api-client-readyfor-api 0.255.0-pr1024.1a80374 → 0.255.0-pr1024.774d2f8

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;
8
9
  contributor: {
10
+ id: number;
9
11
  email: string | null;
10
12
  name: string;
11
- id: number;
12
13
  imageUrl?: string | undefined;
13
14
  };
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;
23
24
  contributor: {
25
+ id: number;
24
26
  email: string | null;
25
27
  name: string;
26
- id: number;
27
28
  imageUrl?: string | undefined;
28
29
  };
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;
8
9
  contributor: {
10
+ id: number;
9
11
  email: string | null;
10
12
  name: string;
11
- id: number;
12
13
  imageUrl?: string | undefined;
13
14
  };
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;
23
24
  contributor: {
25
+ id: number;
24
26
  email: string | null;
25
27
  name: string;
26
- id: number;
27
28
  imageUrl?: string | undefined;
28
29
  };
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;
7
9
  contributor: {
10
+ id: number;
8
11
  imageUrl: string;
9
12
  email: string | null;
10
13
  name: string;
11
- id: number;
12
14
  isActive: boolean;
13
15
  hasValidOrder: boolean;
14
16
  };
15
17
  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;
24
25
  imageUrl: string;
25
26
  name: string;
26
27
  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
- price: number;
35
34
  id: number;
35
+ price: 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;
63
65
  contributor: {
66
+ id: number;
64
67
  imageUrl: string;
65
68
  email: string | null;
66
69
  name: string;
67
- id: number;
68
70
  isActive: boolean;
69
71
  hasValidOrder: boolean;
70
72
  };
71
73
  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;
80
81
  imageUrl: string;
81
82
  name: string;
82
83
  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
- price: number;
91
90
  id: number;
91
+ price: 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;
7
9
  contributor: {
10
+ id: number;
8
11
  imageUrl: string;
9
12
  email: string | null;
10
13
  name: string;
11
- id: number;
12
14
  isActive: boolean;
13
15
  hasValidOrder: boolean;
14
16
  };
15
17
  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;
24
25
  imageUrl: string;
25
26
  name: string;
26
27
  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
- price: number;
35
34
  id: number;
35
+ price: 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;
63
65
  contributor: {
66
+ id: number;
64
67
  imageUrl: string;
65
68
  email: string | null;
66
69
  name: string;
67
- id: number;
68
70
  isActive: boolean;
69
71
  hasValidOrder: boolean;
70
72
  };
71
73
  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;
80
81
  imageUrl: string;
81
82
  name: string;
82
83
  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
- price: number;
91
90
  id: number;
91
+ price: 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;
23
24
  contributor: {
25
+ id: number;
24
26
  email: string | null;
25
27
  name: string;
26
- id: number;
27
28
  imageUrl?: string | undefined;
28
29
  };
29
30
  createdAt: string;
30
31
  totalAmount: number;
31
32
  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;
48
49
  contributor: {
50
+ id: number;
49
51
  email: string | null;
50
52
  name: string;
51
- id: number;
52
53
  imageUrl?: string | undefined;
53
54
  };
54
55
  createdAt: string;
55
56
  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;
94
95
  contributor: {
96
+ id: number;
95
97
  email: string | null;
96
98
  name: string;
97
- id: number;
98
99
  imageUrl?: string | undefined;
99
100
  };
100
101
  createdAt: string;
101
102
  totalAmount: number;
102
103
  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;
119
120
  contributor: {
121
+ id: number;
120
122
  email: string | null;
121
123
  name: string;
122
- id: number;
123
124
  imageUrl?: string | undefined;
124
125
  };
125
126
  createdAt: string;
126
127
  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;
23
24
  contributor: {
25
+ id: number;
24
26
  email: string | null;
25
27
  name: string;
26
- id: number;
27
28
  imageUrl?: string | undefined;
28
29
  };
29
30
  createdAt: string;
30
31
  totalAmount: number;
31
32
  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;
48
49
  contributor: {
50
+ id: number;
49
51
  email: string | null;
50
52
  name: string;
51
- id: number;
52
53
  imageUrl?: string | undefined;
53
54
  };
54
55
  createdAt: string;
55
56
  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;
94
95
  contributor: {
96
+ id: number;
95
97
  email: string | null;
96
98
  name: string;
97
- id: number;
98
99
  imageUrl?: string | undefined;
99
100
  };
100
101
  createdAt: string;
101
102
  totalAmount: number;
102
103
  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;
119
120
  contributor: {
121
+ id: number;
120
122
  email: string | null;
121
123
  name: string;
122
- id: number;
123
124
  imageUrl?: string | undefined;
124
125
  };
125
126
  createdAt: string;
126
127
  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;
8
9
  contributor: {
10
+ id: number;
9
11
  email: string | null;
10
12
  name: string;
11
- id: number;
12
13
  imageUrl?: string | undefined;
13
14
  };
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;
23
24
  contributor: {
25
+ id: number;
24
26
  email: string | null;
25
27
  name: string;
26
- id: number;
27
28
  imageUrl?: string | undefined;
28
29
  };
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;
8
9
  contributor: {
10
+ id: number;
9
11
  email: string | null;
10
12
  name: string;
11
- id: number;
12
13
  imageUrl?: string | undefined;
13
14
  };
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;
23
24
  contributor: {
25
+ id: number;
24
26
  email: string | null;
25
27
  name: string;
26
- id: number;
27
28
  imageUrl?: string | undefined;
28
29
  };
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;
7
8
  contributor: {
9
+ id: number;
8
10
  imageUrl: string;
9
11
  email: string | null;
10
12
  name: string;
11
- id: number;
12
13
  isActive: boolean;
13
14
  hasValidOrder: boolean;
14
15
  };
15
16
  createdAt: string;
16
17
  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;
27
28
  imageUrl: string;
28
29
  name: string;
29
30
  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;
48
49
  contributor: {
50
+ id: number;
49
51
  imageUrl: string;
50
52
  email: string | null;
51
53
  name: string;
52
- id: number;
53
54
  isActive: boolean;
54
55
  hasValidOrder: boolean;
55
56
  };
56
57
  createdAt: string;
57
58
  totalAmount: number;
58
59
  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;
70
71
  imageUrl: string;
71
72
  name: string;
72
73
  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;
99
100
  contributor: {
101
+ id: number;
100
102
  imageUrl: string;
101
103
  email: string | null;
102
104
  name: string;
103
- id: number;
104
105
  isActive: boolean;
105
106
  hasValidOrder: boolean;
106
107
  };
107
108
  createdAt: string;
108
109
  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;
119
120
  imageUrl: string;
120
121
  name: string;
121
122
  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;
140
141
  contributor: {
142
+ id: number;
141
143
  imageUrl: string;
142
144
  email: string | null;
143
145
  name: string;
144
- id: number;
145
146
  isActive: boolean;
146
147
  hasValidOrder: boolean;
147
148
  };
148
149
  createdAt: string;
149
150
  totalAmount: number;
150
151
  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;
162
163
  imageUrl: string;
163
164
  name: string;
164
165
  createdAt: string;
165
- content: string;
166
166
  }[];
167
167
  recurringMonths: number;
168
168
  __type?: "FundraisingSteadyCrowdfundingProjectMonthlyOrderId" | undefined;