@readyfor/api-client-readyfor-api 0.328.0 → 1.0.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.
Files changed (53) hide show
  1. package/dist/components.d.mts +713 -7037
  2. package/dist/components.d.ts +713 -7037
  3. package/dist/fetch/v2ContributionsCard3dSecureExecContribution.d.mts +6 -6
  4. package/dist/fetch/v2ContributionsCard3dSecureExecContribution.d.ts +6 -6
  5. package/dist/fetch/v2ContributionsCard3dSecureRetryContribution.d.mts +6 -6
  6. package/dist/fetch/v2ContributionsCard3dSecureRetryContribution.d.ts +6 -6
  7. package/dist/fetch/v2ContributionsOrderInfo.d.mts +24 -24
  8. package/dist/fetch/v2ContributionsOrderInfo.d.ts +24 -24
  9. package/dist/fetch/v2ContributionsProjectInfo.d.mts +38 -38
  10. package/dist/fetch/v2ContributionsProjectInfo.d.ts +38 -38
  11. package/dist/fetch/v2ContributionsRecommendedProjects.d.mts +6 -6
  12. package/dist/fetch/v2ContributionsRecommendedProjects.d.ts +6 -6
  13. package/dist/fetch/v2ContributionsRecommendedTags.d.mts +2 -2
  14. package/dist/fetch/v2ContributionsRecommendedTags.d.ts +2 -2
  15. package/dist/fetch/v2ContributionsUserInfo.d.mts +24 -24
  16. package/dist/fetch/v2ContributionsUserInfo.d.ts +24 -24
  17. package/dist/fetch/v2FundraisingBulkMessagesTargetUsers.d.mts +4 -4
  18. package/dist/fetch/v2FundraisingBulkMessagesTargetUsers.d.ts +4 -4
  19. package/dist/fetch/v2FundraisingContributors.d.mts +18 -18
  20. package/dist/fetch/v2FundraisingContributors.d.ts +18 -18
  21. package/dist/fetch/v2FundraisingContributorsId.d.mts +12 -12
  22. package/dist/fetch/v2FundraisingContributorsId.d.ts +12 -12
  23. package/dist/fetch/v2FundraisingContributorsIdOrders.d.mts +36 -36
  24. package/dist/fetch/v2FundraisingContributorsIdOrders.d.ts +36 -36
  25. package/dist/fetch/v2FundraisingContributorsOwnedPublicProjects.d.mts +2 -2
  26. package/dist/fetch/v2FundraisingContributorsOwnedPublicProjects.d.ts +2 -2
  27. package/dist/fetch/v2FundraisingContributorsUsers.d.mts +2 -2
  28. package/dist/fetch/v2FundraisingContributorsUsers.d.ts +2 -2
  29. package/dist/fetch/v2FundraisingProjectsProjectIdPaymentSummary.d.mts +12 -12
  30. package/dist/fetch/v2FundraisingProjectsProjectIdPaymentSummary.d.ts +12 -12
  31. package/dist/fetch/v2FundraisingRewards.d.mts +28 -28
  32. package/dist/fetch/v2FundraisingRewards.d.ts +28 -28
  33. package/dist/fetch/v2FundraisingRewardsRewardId.d.mts +20 -20
  34. package/dist/fetch/v2FundraisingRewardsRewardId.d.ts +20 -20
  35. package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrders.d.mts +48 -48
  36. package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrders.d.ts +48 -48
  37. package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrdersAll.d.mts +6 -6
  38. package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrdersAll.d.ts +6 -6
  39. package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrdersOrderId.d.mts +60 -60
  40. package/dist/fetch/v2FundraisingSpotCrowdfundingProjectOrdersOrderId.d.ts +60 -60
  41. package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrders.d.mts +48 -48
  42. package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrders.d.ts +48 -48
  43. package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrdersAll.d.mts +6 -6
  44. package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrdersAll.d.ts +6 -6
  45. package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrdersOrderId.d.mts +98 -98
  46. package/dist/fetch/v2FundraisingSteadyCrowdfundingProjectOrdersOrderId.d.ts +98 -98
  47. package/dist/fetch/v2ResourcesBankBranches.d.mts +4 -4
  48. package/dist/fetch/v2ResourcesBankBranches.d.ts +4 -4
  49. package/dist/fetch/v2ResourcesBanks.d.mts +4 -4
  50. package/dist/fetch/v2ResourcesBanks.d.ts +4 -4
  51. package/dist/fetch/v2ResourcesUsers.d.mts +2 -2
  52. package/dist/fetch/v2ResourcesUsers.d.ts +2 -2
  53. package/package.json +4 -4
@@ -4,53 +4,33 @@ import { ForceDig } from '@readyfor/api-client-base';
4
4
  type V2FundraisingContributorsIdOrdersGetOperation = paths["/api/v2/fundraising/contributors/{id}/orders"]["get"];
5
5
  type V2FundraisingContributorsIdOrdersGetResponse = V2FundraisingContributorsIdOrdersGetOperation["responses"]["200"]["content"]["application/json"];
6
6
  declare const buildV2FundraisingContributorsIdOrdersGetFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
7
- pagination: {
8
- totalPages: number;
9
- totalCount: number;
10
- currentPerPage: number;
11
- currentPage: number;
12
- isFirstPage: boolean;
13
- isLastPage: boolean;
14
- prevPage?: number | undefined;
15
- nextPage?: number | undefined;
16
- };
17
7
  orders: {
18
- amount: number;
19
8
  id: number;
9
+ orderedAt: string;
20
10
  project: {
21
- imageUrl: string;
22
11
  id: number;
23
12
  title: string;
13
+ imageUrl: string;
24
14
  fundingModel: 0 | 1 | 3 | 4;
25
15
  };
26
- orderedAt: string;
16
+ amount: number;
27
17
  settlementStatus: string;
28
18
  orderRewards: {
29
- options: {
30
- name: string;
31
- value?: string | undefined;
32
- }[];
33
19
  id: number;
34
20
  title: string;
35
21
  deliveryState: "unnecessary" | "complete" | "fail" | "unprocess";
36
22
  quantity: number;
23
+ options: {
24
+ name: string;
25
+ value?: string | undefined;
26
+ }[];
37
27
  }[];
38
28
  delivery?: {
39
- phoneNumber: string;
40
29
  receiverName: string;
41
30
  address: string;
31
+ phoneNumber: string;
42
32
  } | undefined;
43
33
  }[];
44
- }>;
45
- type V2FundraisingContributorsIdOrdersGetPath = ForceDig<V2FundraisingContributorsIdOrdersGetOperation, [
46
- "parameters",
47
- "path"
48
- ]>;
49
- type V2FundraisingContributorsIdOrdersGetQuery = ForceDig<V2FundraisingContributorsIdOrdersGetOperation, [
50
- "parameters",
51
- "query"
52
- ]>;
53
- declare const getV2FundraisingContributorsIdOrders: (path: V2FundraisingContributorsIdOrdersGetPath, query: V2FundraisingContributorsIdOrdersGetQuery, customRequestInit?: RequestInit) => Promise<{
54
34
  pagination: {
55
35
  totalPages: number;
56
36
  totalCount: number;
@@ -61,33 +41,53 @@ declare const getV2FundraisingContributorsIdOrders: (path: V2FundraisingContribu
61
41
  prevPage?: number | undefined;
62
42
  nextPage?: number | undefined;
63
43
  };
44
+ }>;
45
+ type V2FundraisingContributorsIdOrdersGetPath = ForceDig<V2FundraisingContributorsIdOrdersGetOperation, [
46
+ "parameters",
47
+ "path"
48
+ ]>;
49
+ type V2FundraisingContributorsIdOrdersGetQuery = ForceDig<V2FundraisingContributorsIdOrdersGetOperation, [
50
+ "parameters",
51
+ "query"
52
+ ]>;
53
+ declare const getV2FundraisingContributorsIdOrders: (path: V2FundraisingContributorsIdOrdersGetPath, query: V2FundraisingContributorsIdOrdersGetQuery, customRequestInit?: RequestInit) => Promise<{
64
54
  orders: {
65
- amount: number;
66
55
  id: number;
56
+ orderedAt: string;
67
57
  project: {
68
- imageUrl: string;
69
58
  id: number;
70
59
  title: string;
60
+ imageUrl: string;
71
61
  fundingModel: 0 | 1 | 3 | 4;
72
62
  };
73
- orderedAt: string;
63
+ amount: number;
74
64
  settlementStatus: string;
75
65
  orderRewards: {
76
- options: {
77
- name: string;
78
- value?: string | undefined;
79
- }[];
80
66
  id: number;
81
67
  title: string;
82
68
  deliveryState: "unnecessary" | "complete" | "fail" | "unprocess";
83
69
  quantity: number;
70
+ options: {
71
+ name: string;
72
+ value?: string | undefined;
73
+ }[];
84
74
  }[];
85
75
  delivery?: {
86
- phoneNumber: string;
87
76
  receiverName: string;
88
77
  address: string;
78
+ phoneNumber: string;
89
79
  } | undefined;
90
80
  }[];
81
+ pagination: {
82
+ totalPages: number;
83
+ totalCount: number;
84
+ currentPerPage: number;
85
+ currentPage: number;
86
+ isFirstPage: boolean;
87
+ isLastPage: boolean;
88
+ prevPage?: number | undefined;
89
+ nextPage?: number | undefined;
90
+ };
91
91
  }>;
92
92
 
93
93
  export { type V2FundraisingContributorsIdOrdersGetPath, type V2FundraisingContributorsIdOrdersGetQuery, type V2FundraisingContributorsIdOrdersGetResponse, buildV2FundraisingContributorsIdOrdersGetFetcher, getV2FundraisingContributorsIdOrders };
@@ -4,53 +4,33 @@ import { ForceDig } from '@readyfor/api-client-base';
4
4
  type V2FundraisingContributorsIdOrdersGetOperation = paths["/api/v2/fundraising/contributors/{id}/orders"]["get"];
5
5
  type V2FundraisingContributorsIdOrdersGetResponse = V2FundraisingContributorsIdOrdersGetOperation["responses"]["200"]["content"]["application/json"];
6
6
  declare const buildV2FundraisingContributorsIdOrdersGetFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
7
- pagination: {
8
- totalPages: number;
9
- totalCount: number;
10
- currentPerPage: number;
11
- currentPage: number;
12
- isFirstPage: boolean;
13
- isLastPage: boolean;
14
- prevPage?: number | undefined;
15
- nextPage?: number | undefined;
16
- };
17
7
  orders: {
18
- amount: number;
19
8
  id: number;
9
+ orderedAt: string;
20
10
  project: {
21
- imageUrl: string;
22
11
  id: number;
23
12
  title: string;
13
+ imageUrl: string;
24
14
  fundingModel: 0 | 1 | 3 | 4;
25
15
  };
26
- orderedAt: string;
16
+ amount: number;
27
17
  settlementStatus: string;
28
18
  orderRewards: {
29
- options: {
30
- name: string;
31
- value?: string | undefined;
32
- }[];
33
19
  id: number;
34
20
  title: string;
35
21
  deliveryState: "unnecessary" | "complete" | "fail" | "unprocess";
36
22
  quantity: number;
23
+ options: {
24
+ name: string;
25
+ value?: string | undefined;
26
+ }[];
37
27
  }[];
38
28
  delivery?: {
39
- phoneNumber: string;
40
29
  receiverName: string;
41
30
  address: string;
31
+ phoneNumber: string;
42
32
  } | undefined;
43
33
  }[];
44
- }>;
45
- type V2FundraisingContributorsIdOrdersGetPath = ForceDig<V2FundraisingContributorsIdOrdersGetOperation, [
46
- "parameters",
47
- "path"
48
- ]>;
49
- type V2FundraisingContributorsIdOrdersGetQuery = ForceDig<V2FundraisingContributorsIdOrdersGetOperation, [
50
- "parameters",
51
- "query"
52
- ]>;
53
- declare const getV2FundraisingContributorsIdOrders: (path: V2FundraisingContributorsIdOrdersGetPath, query: V2FundraisingContributorsIdOrdersGetQuery, customRequestInit?: RequestInit) => Promise<{
54
34
  pagination: {
55
35
  totalPages: number;
56
36
  totalCount: number;
@@ -61,33 +41,53 @@ declare const getV2FundraisingContributorsIdOrders: (path: V2FundraisingContribu
61
41
  prevPage?: number | undefined;
62
42
  nextPage?: number | undefined;
63
43
  };
44
+ }>;
45
+ type V2FundraisingContributorsIdOrdersGetPath = ForceDig<V2FundraisingContributorsIdOrdersGetOperation, [
46
+ "parameters",
47
+ "path"
48
+ ]>;
49
+ type V2FundraisingContributorsIdOrdersGetQuery = ForceDig<V2FundraisingContributorsIdOrdersGetOperation, [
50
+ "parameters",
51
+ "query"
52
+ ]>;
53
+ declare const getV2FundraisingContributorsIdOrders: (path: V2FundraisingContributorsIdOrdersGetPath, query: V2FundraisingContributorsIdOrdersGetQuery, customRequestInit?: RequestInit) => Promise<{
64
54
  orders: {
65
- amount: number;
66
55
  id: number;
56
+ orderedAt: string;
67
57
  project: {
68
- imageUrl: string;
69
58
  id: number;
70
59
  title: string;
60
+ imageUrl: string;
71
61
  fundingModel: 0 | 1 | 3 | 4;
72
62
  };
73
- orderedAt: string;
63
+ amount: number;
74
64
  settlementStatus: string;
75
65
  orderRewards: {
76
- options: {
77
- name: string;
78
- value?: string | undefined;
79
- }[];
80
66
  id: number;
81
67
  title: string;
82
68
  deliveryState: "unnecessary" | "complete" | "fail" | "unprocess";
83
69
  quantity: number;
70
+ options: {
71
+ name: string;
72
+ value?: string | undefined;
73
+ }[];
84
74
  }[];
85
75
  delivery?: {
86
- phoneNumber: string;
87
76
  receiverName: string;
88
77
  address: string;
78
+ phoneNumber: string;
89
79
  } | undefined;
90
80
  }[];
81
+ pagination: {
82
+ totalPages: number;
83
+ totalCount: number;
84
+ currentPerPage: number;
85
+ currentPage: number;
86
+ isFirstPage: boolean;
87
+ isLastPage: boolean;
88
+ prevPage?: number | undefined;
89
+ nextPage?: number | undefined;
90
+ };
91
91
  }>;
92
92
 
93
93
  export { type V2FundraisingContributorsIdOrdersGetPath, type V2FundraisingContributorsIdOrdersGetQuery, type V2FundraisingContributorsIdOrdersGetResponse, buildV2FundraisingContributorsIdOrdersGetFetcher, getV2FundraisingContributorsIdOrders };
@@ -4,17 +4,17 @@ type V2FundraisingContributorsOwnedPublicProjectsGetOperation = paths["/api/v2/f
4
4
  type V2FundraisingContributorsOwnedPublicProjectsGetResponse = V2FundraisingContributorsOwnedPublicProjectsGetOperation["responses"]["200"]["content"]["application/json"];
5
5
  declare const buildV2FundraisingContributorsOwnedPublicProjectsGetFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
6
6
  projects: {
7
- imageUrl: string;
8
7
  id: number;
9
8
  title: string;
9
+ imageUrl: string;
10
10
  fundingModel: 0 | 1 | 3 | 4;
11
11
  }[];
12
12
  }>;
13
13
  declare const getV2FundraisingContributorsOwnedPublicProjects: (customRequestInit?: RequestInit) => Promise<{
14
14
  projects: {
15
- imageUrl: string;
16
15
  id: number;
17
16
  title: string;
17
+ imageUrl: string;
18
18
  fundingModel: 0 | 1 | 3 | 4;
19
19
  }[];
20
20
  }>;
@@ -4,17 +4,17 @@ type V2FundraisingContributorsOwnedPublicProjectsGetOperation = paths["/api/v2/f
4
4
  type V2FundraisingContributorsOwnedPublicProjectsGetResponse = V2FundraisingContributorsOwnedPublicProjectsGetOperation["responses"]["200"]["content"]["application/json"];
5
5
  declare const buildV2FundraisingContributorsOwnedPublicProjectsGetFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
6
6
  projects: {
7
- imageUrl: string;
8
7
  id: number;
9
8
  title: string;
9
+ imageUrl: string;
10
10
  fundingModel: 0 | 1 | 3 | 4;
11
11
  }[];
12
12
  }>;
13
13
  declare const getV2FundraisingContributorsOwnedPublicProjects: (customRequestInit?: RequestInit) => Promise<{
14
14
  projects: {
15
- imageUrl: string;
16
15
  id: number;
17
16
  title: string;
17
+ imageUrl: string;
18
18
  fundingModel: 0 | 1 | 3 | 4;
19
19
  }[];
20
20
  }>;
@@ -5,16 +5,16 @@ type V2FundraisingContributorsUsersGetOperation = paths["/api/v2/fundraising/con
5
5
  type V2FundraisingContributorsUsersGetResponse = V2FundraisingContributorsUsersGetOperation["responses"]["200"]["content"]["application/json"];
6
6
  declare const buildV2FundraisingContributorsUsersGetFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
7
7
  users: {
8
- name: string;
9
8
  id: number;
9
+ name: string;
10
10
  imageUrl?: string | undefined;
11
11
  }[];
12
12
  }>;
13
13
  type V2FundraisingContributorsUsersGetQuery = QueryPropsFor<ForceDig<V2FundraisingContributorsUsersGetOperation, ["parameters", "query"]>>;
14
14
  declare const getV2FundraisingContributorsUsers: (query: V2FundraisingContributorsUsersGetQuery, customRequestInit?: RequestInit) => Promise<{
15
15
  users: {
16
- name: string;
17
16
  id: number;
17
+ name: string;
18
18
  imageUrl?: string | undefined;
19
19
  }[];
20
20
  }>;
@@ -5,16 +5,16 @@ type V2FundraisingContributorsUsersGetOperation = paths["/api/v2/fundraising/con
5
5
  type V2FundraisingContributorsUsersGetResponse = V2FundraisingContributorsUsersGetOperation["responses"]["200"]["content"]["application/json"];
6
6
  declare const buildV2FundraisingContributorsUsersGetFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
7
7
  users: {
8
- name: string;
9
8
  id: number;
9
+ name: string;
10
10
  imageUrl?: string | undefined;
11
11
  }[];
12
12
  }>;
13
13
  type V2FundraisingContributorsUsersGetQuery = QueryPropsFor<ForceDig<V2FundraisingContributorsUsersGetOperation, ["parameters", "query"]>>;
14
14
  declare const getV2FundraisingContributorsUsers: (query: V2FundraisingContributorsUsersGetQuery, customRequestInit?: RequestInit) => Promise<{
15
15
  users: {
16
- name: string;
17
16
  id: number;
17
+ name: string;
18
18
  imageUrl?: string | undefined;
19
19
  }[];
20
20
  }>;
@@ -4,21 +4,21 @@ import { ForceDig } from '@readyfor/api-client-base';
4
4
  type V2FundraisingProjectsProjectIdPaymentSummaryGetOperation = paths["/api/v2/fundraising/projects/{project_id}/payment_summary"]["get"];
5
5
  type V2FundraisingProjectsProjectIdPaymentSummaryGetResponse = V2FundraisingProjectsProjectIdPaymentSummaryGetOperation["responses"]["200"]["content"]["application/json"];
6
6
  declare const buildV2FundraisingProjectsProjectIdPaymentSummaryGetFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
7
- waitPayment?: {
7
+ confirmed?: {
8
8
  amount: number;
9
- ordersCount: number;
10
- hasNearPaymentDeadlineOrder: boolean;
11
9
  } | undefined;
12
10
  pendingProjectAchievement?: {
13
11
  amount: number;
14
12
  } | undefined;
15
- unsuccessful?: {
13
+ waitPayment?: {
16
14
  amount: number;
15
+ ordersCount: number;
16
+ hasNearPaymentDeadlineOrder: boolean;
17
17
  } | undefined;
18
- canceled?: {
18
+ unsuccessful?: {
19
19
  amount: number;
20
20
  } | undefined;
21
- confirmed?: {
21
+ canceled?: {
22
22
  amount: number;
23
23
  } | undefined;
24
24
  }>;
@@ -27,21 +27,21 @@ type V2FundraisingProjectsProjectIdPaymentSummaryGetPath = ForceDig<V2Fundraisin
27
27
  "path"
28
28
  ]>;
29
29
  declare const getV2FundraisingProjectsProjectIdPaymentSummary: (path: V2FundraisingProjectsProjectIdPaymentSummaryGetPath, customRequestInit?: RequestInit) => Promise<{
30
- waitPayment?: {
30
+ confirmed?: {
31
31
  amount: number;
32
- ordersCount: number;
33
- hasNearPaymentDeadlineOrder: boolean;
34
32
  } | undefined;
35
33
  pendingProjectAchievement?: {
36
34
  amount: number;
37
35
  } | undefined;
38
- unsuccessful?: {
36
+ waitPayment?: {
39
37
  amount: number;
38
+ ordersCount: number;
39
+ hasNearPaymentDeadlineOrder: boolean;
40
40
  } | undefined;
41
- canceled?: {
41
+ unsuccessful?: {
42
42
  amount: number;
43
43
  } | undefined;
44
- confirmed?: {
44
+ canceled?: {
45
45
  amount: number;
46
46
  } | undefined;
47
47
  }>;
@@ -4,21 +4,21 @@ import { ForceDig } from '@readyfor/api-client-base';
4
4
  type V2FundraisingProjectsProjectIdPaymentSummaryGetOperation = paths["/api/v2/fundraising/projects/{project_id}/payment_summary"]["get"];
5
5
  type V2FundraisingProjectsProjectIdPaymentSummaryGetResponse = V2FundraisingProjectsProjectIdPaymentSummaryGetOperation["responses"]["200"]["content"]["application/json"];
6
6
  declare const buildV2FundraisingProjectsProjectIdPaymentSummaryGetFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
7
- waitPayment?: {
7
+ confirmed?: {
8
8
  amount: number;
9
- ordersCount: number;
10
- hasNearPaymentDeadlineOrder: boolean;
11
9
  } | undefined;
12
10
  pendingProjectAchievement?: {
13
11
  amount: number;
14
12
  } | undefined;
15
- unsuccessful?: {
13
+ waitPayment?: {
16
14
  amount: number;
15
+ ordersCount: number;
16
+ hasNearPaymentDeadlineOrder: boolean;
17
17
  } | undefined;
18
- canceled?: {
18
+ unsuccessful?: {
19
19
  amount: number;
20
20
  } | undefined;
21
- confirmed?: {
21
+ canceled?: {
22
22
  amount: number;
23
23
  } | undefined;
24
24
  }>;
@@ -27,21 +27,21 @@ type V2FundraisingProjectsProjectIdPaymentSummaryGetPath = ForceDig<V2Fundraisin
27
27
  "path"
28
28
  ]>;
29
29
  declare const getV2FundraisingProjectsProjectIdPaymentSummary: (path: V2FundraisingProjectsProjectIdPaymentSummaryGetPath, customRequestInit?: RequestInit) => Promise<{
30
- waitPayment?: {
30
+ confirmed?: {
31
31
  amount: number;
32
- ordersCount: number;
33
- hasNearPaymentDeadlineOrder: boolean;
34
32
  } | undefined;
35
33
  pendingProjectAchievement?: {
36
34
  amount: number;
37
35
  } | undefined;
38
- unsuccessful?: {
36
+ waitPayment?: {
39
37
  amount: number;
38
+ ordersCount: number;
39
+ hasNearPaymentDeadlineOrder: boolean;
40
40
  } | undefined;
41
- canceled?: {
41
+ unsuccessful?: {
42
42
  amount: number;
43
43
  } | undefined;
44
- confirmed?: {
44
+ canceled?: {
45
45
  amount: number;
46
46
  } | undefined;
47
47
  }>;
@@ -4,17 +4,15 @@ import { ForceDig } from '@readyfor/api-client-base';
4
4
  type V2FundraisingRewardsGetOperation = paths["/api/v2/fundraising/rewards"]["get"];
5
5
  type V2FundraisingRewardsGetResponse = V2FundraisingRewardsGetOperation["responses"]["200"]["content"]["application/json"];
6
6
  declare const buildV2FundraisingRewardsGetFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
7
- needsDeliveryDeadlineAlert: boolean;
7
+ rewardsCount: {
8
+ notStarted: number;
9
+ completed: number;
10
+ actionNotNeeded: number;
11
+ };
8
12
  rewards: {
9
- price: number;
10
13
  id: number;
11
14
  thumbnailUrl: string;
12
- project: {
13
- id: number;
14
- title: string;
15
- expiredAt: string;
16
- };
17
- deliveryRate: number;
15
+ price: number;
18
16
  orderReward: {
19
17
  rewardCount: number;
20
18
  waitPaymentRewardCount?: number | undefined;
@@ -25,18 +23,19 @@ declare const buildV2FundraisingRewardsGetFetcher: (requestInit?: RequestInit) =
25
23
  } | {
26
24
  __type: "unlimitedRewardStock";
27
25
  };
26
+ deliveryRate: number;
28
27
  notDeliveryStartedCount: number;
28
+ project: {
29
+ id: number;
30
+ title: string;
31
+ expiredAt: string;
32
+ };
29
33
  needsDeliveryDeadlineAlert: boolean;
34
+ title?: string | undefined;
30
35
  estimatedArrivalMonth?: string | undefined;
31
36
  shipCompletedAt?: string | undefined;
32
- title?: string | undefined;
33
37
  leftDaysToDeliveryDeadline?: number | undefined;
34
38
  }[];
35
- rewardsCount: {
36
- notStarted: number;
37
- completed: number;
38
- actionNotNeeded: number;
39
- };
40
39
  pagination: {
41
40
  totalPages: number;
42
41
  totalCount: number;
@@ -47,6 +46,7 @@ declare const buildV2FundraisingRewardsGetFetcher: (requestInit?: RequestInit) =
47
46
  prevPage?: number | undefined;
48
47
  nextPage?: number | undefined;
49
48
  };
49
+ needsDeliveryDeadlineAlert: boolean;
50
50
  scopedProjectIds: number[];
51
51
  }>;
52
52
  type V2FundraisingRewardsGetQuery = ForceDig<V2FundraisingRewardsGetOperation, [
@@ -54,17 +54,15 @@ type V2FundraisingRewardsGetQuery = ForceDig<V2FundraisingRewardsGetOperation, [
54
54
  "query"
55
55
  ]>;
56
56
  declare const getV2FundraisingRewards: (query: V2FundraisingRewardsGetQuery, customRequestInit?: RequestInit) => Promise<{
57
- needsDeliveryDeadlineAlert: boolean;
57
+ rewardsCount: {
58
+ notStarted: number;
59
+ completed: number;
60
+ actionNotNeeded: number;
61
+ };
58
62
  rewards: {
59
- price: number;
60
63
  id: number;
61
64
  thumbnailUrl: string;
62
- project: {
63
- id: number;
64
- title: string;
65
- expiredAt: string;
66
- };
67
- deliveryRate: number;
65
+ price: number;
68
66
  orderReward: {
69
67
  rewardCount: number;
70
68
  waitPaymentRewardCount?: number | undefined;
@@ -75,18 +73,19 @@ declare const getV2FundraisingRewards: (query: V2FundraisingRewardsGetQuery, cus
75
73
  } | {
76
74
  __type: "unlimitedRewardStock";
77
75
  };
76
+ deliveryRate: number;
78
77
  notDeliveryStartedCount: number;
78
+ project: {
79
+ id: number;
80
+ title: string;
81
+ expiredAt: string;
82
+ };
79
83
  needsDeliveryDeadlineAlert: boolean;
84
+ title?: string | undefined;
80
85
  estimatedArrivalMonth?: string | undefined;
81
86
  shipCompletedAt?: string | undefined;
82
- title?: string | undefined;
83
87
  leftDaysToDeliveryDeadline?: number | undefined;
84
88
  }[];
85
- rewardsCount: {
86
- notStarted: number;
87
- completed: number;
88
- actionNotNeeded: number;
89
- };
90
89
  pagination: {
91
90
  totalPages: number;
92
91
  totalCount: number;
@@ -97,6 +96,7 @@ declare const getV2FundraisingRewards: (query: V2FundraisingRewardsGetQuery, cus
97
96
  prevPage?: number | undefined;
98
97
  nextPage?: number | undefined;
99
98
  };
99
+ needsDeliveryDeadlineAlert: boolean;
100
100
  scopedProjectIds: number[];
101
101
  }>;
102
102
 
@@ -4,17 +4,15 @@ import { ForceDig } from '@readyfor/api-client-base';
4
4
  type V2FundraisingRewardsGetOperation = paths["/api/v2/fundraising/rewards"]["get"];
5
5
  type V2FundraisingRewardsGetResponse = V2FundraisingRewardsGetOperation["responses"]["200"]["content"]["application/json"];
6
6
  declare const buildV2FundraisingRewardsGetFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
7
- needsDeliveryDeadlineAlert: boolean;
7
+ rewardsCount: {
8
+ notStarted: number;
9
+ completed: number;
10
+ actionNotNeeded: number;
11
+ };
8
12
  rewards: {
9
- price: number;
10
13
  id: number;
11
14
  thumbnailUrl: string;
12
- project: {
13
- id: number;
14
- title: string;
15
- expiredAt: string;
16
- };
17
- deliveryRate: number;
15
+ price: number;
18
16
  orderReward: {
19
17
  rewardCount: number;
20
18
  waitPaymentRewardCount?: number | undefined;
@@ -25,18 +23,19 @@ declare const buildV2FundraisingRewardsGetFetcher: (requestInit?: RequestInit) =
25
23
  } | {
26
24
  __type: "unlimitedRewardStock";
27
25
  };
26
+ deliveryRate: number;
28
27
  notDeliveryStartedCount: number;
28
+ project: {
29
+ id: number;
30
+ title: string;
31
+ expiredAt: string;
32
+ };
29
33
  needsDeliveryDeadlineAlert: boolean;
34
+ title?: string | undefined;
30
35
  estimatedArrivalMonth?: string | undefined;
31
36
  shipCompletedAt?: string | undefined;
32
- title?: string | undefined;
33
37
  leftDaysToDeliveryDeadline?: number | undefined;
34
38
  }[];
35
- rewardsCount: {
36
- notStarted: number;
37
- completed: number;
38
- actionNotNeeded: number;
39
- };
40
39
  pagination: {
41
40
  totalPages: number;
42
41
  totalCount: number;
@@ -47,6 +46,7 @@ declare const buildV2FundraisingRewardsGetFetcher: (requestInit?: RequestInit) =
47
46
  prevPage?: number | undefined;
48
47
  nextPage?: number | undefined;
49
48
  };
49
+ needsDeliveryDeadlineAlert: boolean;
50
50
  scopedProjectIds: number[];
51
51
  }>;
52
52
  type V2FundraisingRewardsGetQuery = ForceDig<V2FundraisingRewardsGetOperation, [
@@ -54,17 +54,15 @@ type V2FundraisingRewardsGetQuery = ForceDig<V2FundraisingRewardsGetOperation, [
54
54
  "query"
55
55
  ]>;
56
56
  declare const getV2FundraisingRewards: (query: V2FundraisingRewardsGetQuery, customRequestInit?: RequestInit) => Promise<{
57
- needsDeliveryDeadlineAlert: boolean;
57
+ rewardsCount: {
58
+ notStarted: number;
59
+ completed: number;
60
+ actionNotNeeded: number;
61
+ };
58
62
  rewards: {
59
- price: number;
60
63
  id: number;
61
64
  thumbnailUrl: string;
62
- project: {
63
- id: number;
64
- title: string;
65
- expiredAt: string;
66
- };
67
- deliveryRate: number;
65
+ price: number;
68
66
  orderReward: {
69
67
  rewardCount: number;
70
68
  waitPaymentRewardCount?: number | undefined;
@@ -75,18 +73,19 @@ declare const getV2FundraisingRewards: (query: V2FundraisingRewardsGetQuery, cus
75
73
  } | {
76
74
  __type: "unlimitedRewardStock";
77
75
  };
76
+ deliveryRate: number;
78
77
  notDeliveryStartedCount: number;
78
+ project: {
79
+ id: number;
80
+ title: string;
81
+ expiredAt: string;
82
+ };
79
83
  needsDeliveryDeadlineAlert: boolean;
84
+ title?: string | undefined;
80
85
  estimatedArrivalMonth?: string | undefined;
81
86
  shipCompletedAt?: string | undefined;
82
- title?: string | undefined;
83
87
  leftDaysToDeliveryDeadline?: number | undefined;
84
88
  }[];
85
- rewardsCount: {
86
- notStarted: number;
87
- completed: number;
88
- actionNotNeeded: number;
89
- };
90
89
  pagination: {
91
90
  totalPages: number;
92
91
  totalCount: number;
@@ -97,6 +96,7 @@ declare const getV2FundraisingRewards: (query: V2FundraisingRewardsGetQuery, cus
97
96
  prevPage?: number | undefined;
98
97
  nextPage?: number | undefined;
99
98
  };
99
+ needsDeliveryDeadlineAlert: boolean;
100
100
  scopedProjectIds: number[];
101
101
  }>;
102
102