-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from jamalsoueidan/payout-paginate
Payout paginate
- Loading branch information
Showing
35 changed files
with
1,586 additions
and
277 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/** | ||
* Generated by orval v6.25.0 🍺 | ||
* Do not edit manually. | ||
* Booking Shopify Api | ||
* OpenAPI spec version: 1.0.0 | ||
*/ | ||
import type {CustomerPayoutPayoutDetails} from './customerPayoutPayoutDetails'; | ||
import type {CustomerPayoutAccountType} from './customerPayoutAccountType'; | ||
import type {CustomerPayoutStatus} from './customerPayoutStatus'; | ||
|
||
export interface CustomerPayout { | ||
_id?: string; | ||
amount: number; | ||
currencyCode: string; | ||
date: string; | ||
payoutDetails?: CustomerPayoutPayoutDetails; | ||
payoutType?: CustomerPayoutAccountType; | ||
status: CustomerPayoutStatus; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* Generated by orval v6.25.0 🍺 | ||
* Do not edit manually. | ||
* Booking Shopify Api | ||
* OpenAPI spec version: 1.0.0 | ||
*/ | ||
import type {CustomerPayoutAccountDestroy} from './customerPayoutAccountDestroy'; | ||
|
||
export interface CustomerPayoutAccountDestroyResponse { | ||
payload: CustomerPayoutAccountDestroy; | ||
success: boolean; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* Generated by orval v6.25.0 🍺 | ||
* Do not edit manually. | ||
* Booking Shopify Api | ||
* OpenAPI spec version: 1.0.0 | ||
*/ | ||
|
||
export interface CustomerPayoutBalancePayload { | ||
totalAmount: number; | ||
totalLineItems: number; | ||
totalShippingAmount: number; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* Generated by orval v6.25.0 🍺 | ||
* Do not edit manually. | ||
* Booking Shopify Api | ||
* OpenAPI spec version: 1.0.0 | ||
*/ | ||
import type {CustomerPayoutBalancePayload} from './customerPayoutBalancePayload'; | ||
|
||
export interface CustomerPayoutBalanceResponse { | ||
payload: CustomerPayoutBalancePayload; | ||
success: boolean; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* Generated by orval v6.25.0 🍺 | ||
* Do not edit manually. | ||
* Booking Shopify Api | ||
* OpenAPI spec version: 1.0.0 | ||
*/ | ||
import type {CustomerPayout} from './customerPayout'; | ||
|
||
export interface CustomerPayoutCreateResponse { | ||
payload: CustomerPayout; | ||
success: boolean; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* Generated by orval v6.25.0 🍺 | ||
* Do not edit manually. | ||
* Booking Shopify Api | ||
* OpenAPI spec version: 1.0.0 | ||
*/ | ||
import type {CustomerPayout} from './customerPayout'; | ||
|
||
export interface CustomerPayoutGetResponse { | ||
payload: CustomerPayout; | ||
success: boolean; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/** | ||
* Generated by orval v6.25.0 🍺 | ||
* Do not edit manually. | ||
* Booking Shopify Api | ||
* OpenAPI spec version: 1.0.0 | ||
*/ | ||
import type {CustomerPayoutLogReferenceDocument} from './customerPayoutLogReferenceDocument'; | ||
import type {CustomerPayoutLogType} from './customerPayoutLogType'; | ||
|
||
export interface CustomerPayoutLog { | ||
_id: string; | ||
createdAt: string; | ||
customerId: number; | ||
orderCreatedAt: string; | ||
orderId: number; | ||
payout: string; | ||
referenceDocument: CustomerPayoutLogReferenceDocument; | ||
referenceId: string; | ||
referenceType: CustomerPayoutLogType; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/** | ||
* Generated by orval v6.25.0 🍺 | ||
* Do not edit manually. | ||
* Booking Shopify Api | ||
* OpenAPI spec version: 1.0.0 | ||
*/ | ||
|
||
export type CustomerPayoutLogPaginateParams = { | ||
/** | ||
* The page number | ||
*/ | ||
page: string; | ||
/** | ||
* The sort order either asc eller desc = default desc | ||
*/ | ||
sortOrder?: string; | ||
/** | ||
* The limit = default to 10 | ||
*/ | ||
limit?: string; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/** | ||
* Generated by orval v6.25.0 🍺 | ||
* Do not edit manually. | ||
* Booking Shopify Api | ||
* OpenAPI spec version: 1.0.0 | ||
*/ | ||
import type {CustomerPayoutLog} from './customerPayoutLog'; | ||
|
||
export interface CustomerPayoutLogPayload { | ||
currentPage: number; | ||
hasNextPage: boolean; | ||
results: CustomerPayoutLog[]; | ||
totalCount: number; | ||
totalPages: number; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* Generated by orval v6.25.0 🍺 | ||
* Do not edit manually. | ||
* Booking Shopify Api | ||
* OpenAPI spec version: 1.0.0 | ||
*/ | ||
import type {CustomeBaserOrderLineItem} from './customeBaserOrderLineItem'; | ||
import type {Shipping} from './shipping'; | ||
|
||
export type CustomerPayoutLogReferenceDocument = | ||
| CustomeBaserOrderLineItem | ||
| Shipping; |
Oops, something went wrong.