@ikas/storefront-api 6.1.0-beta.292 → 6.1.0-beta.294
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/build/__api/models/CreateStripeExpressCheckoutSessionResponse.d.ts +15 -0
- package/build/__api/models/StripeExpressCheckoutAddressInput.d.ts +12 -0
- package/build/__api/models/StripeExpressCheckoutCustomerInput.d.ts +12 -0
- package/build/__api/models/StripeExpressCheckoutSessionContextResponse.d.ts +15 -0
- package/build/__api/models/UpdateStripeExpressCheckoutSessionInput.d.ts +17 -0
- package/build/__api/mutations/createStripeExpressCheckoutSession.d.ts +16 -0
- package/build/__api/mutations/createStripeExpressCheckoutSession.js +1 -0
- package/build/__api/mutations/updateStripeExpressCheckoutSession.d.ts +16 -0
- package/build/__api/mutations/updateStripeExpressCheckoutSession.js +1 -0
- package/build/__api/types/index.d.ts +39 -0
- package/build/api/checkout/index.d.ts +5 -1
- package/build/api/checkout/index.js +1 -1
- package/build/index.js +1 -1
- package/package.json +5 -5
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
export declare class CreateStripeExpressCheckoutSessionResponseData {
|
|
3
|
+
accountId: string;
|
|
4
|
+
apiKey: string;
|
|
5
|
+
callbackUrl: string;
|
|
6
|
+
clientSecret: string;
|
|
7
|
+
failUrl: string;
|
|
8
|
+
sessionId: string;
|
|
9
|
+
transactionId: string;
|
|
10
|
+
constructor(data?: Partial<CreateStripeExpressCheckoutSessionResponseData>);
|
|
11
|
+
}
|
|
12
|
+
export declare class CreateStripeExpressCheckoutSessionResponse extends CreateStripeExpressCheckoutSessionResponseData {
|
|
13
|
+
}
|
|
14
|
+
export declare type PartialCreateStripeExpressCheckoutSessionResponse = Partial<CreateStripeExpressCheckoutSessionResponse>;
|
|
15
|
+
export declare type ReadOnlyCreateStripeExpressCheckoutSessionResponse = DeepReadonly<CreateStripeExpressCheckoutSessionResponse>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
export declare class StripeExpressCheckoutAddressInputData {
|
|
3
|
+
city: string | null;
|
|
4
|
+
country: string | null;
|
|
5
|
+
postalCode: string | null;
|
|
6
|
+
state: string | null;
|
|
7
|
+
constructor(data?: Partial<StripeExpressCheckoutAddressInputData>);
|
|
8
|
+
}
|
|
9
|
+
export declare class StripeExpressCheckoutAddressInput extends StripeExpressCheckoutAddressInputData {
|
|
10
|
+
}
|
|
11
|
+
export declare type PartialStripeExpressCheckoutAddressInput = Partial<StripeExpressCheckoutAddressInput>;
|
|
12
|
+
export declare type ReadOnlyStripeExpressCheckoutAddressInput = DeepReadonly<StripeExpressCheckoutAddressInput>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
export declare class StripeExpressCheckoutCustomerInputData {
|
|
3
|
+
email: string | null;
|
|
4
|
+
firstName: string | null;
|
|
5
|
+
id: string | null;
|
|
6
|
+
lastName: string | null;
|
|
7
|
+
constructor(data?: Partial<StripeExpressCheckoutCustomerInputData>);
|
|
8
|
+
}
|
|
9
|
+
export declare class StripeExpressCheckoutCustomerInput extends StripeExpressCheckoutCustomerInputData {
|
|
10
|
+
}
|
|
11
|
+
export declare type PartialStripeExpressCheckoutCustomerInput = Partial<StripeExpressCheckoutCustomerInput>;
|
|
12
|
+
export declare type ReadOnlyStripeExpressCheckoutCustomerInput = DeepReadonly<StripeExpressCheckoutCustomerInput>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
export declare class StripeExpressCheckoutSessionContextResponseData {
|
|
3
|
+
amountTotal: number | null;
|
|
4
|
+
currency: string | null;
|
|
5
|
+
lineItemsJson: string | null;
|
|
6
|
+
paymentStatus: string | null;
|
|
7
|
+
sessionId: string;
|
|
8
|
+
shippingOptionsJson: string | null;
|
|
9
|
+
transactionId: string;
|
|
10
|
+
constructor(data?: Partial<StripeExpressCheckoutSessionContextResponseData>);
|
|
11
|
+
}
|
|
12
|
+
export declare class StripeExpressCheckoutSessionContextResponse extends StripeExpressCheckoutSessionContextResponseData {
|
|
13
|
+
}
|
|
14
|
+
export declare type PartialStripeExpressCheckoutSessionContextResponse = Partial<StripeExpressCheckoutSessionContextResponse>;
|
|
15
|
+
export declare type ReadOnlyStripeExpressCheckoutSessionContextResponse = DeepReadonly<StripeExpressCheckoutSessionContextResponse>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
import { StripeExpressCheckoutAddressInputData } from "./StripeExpressCheckoutAddressInput";
|
|
3
|
+
import { StripeExpressCheckoutCustomerInputData } from "./StripeExpressCheckoutCustomerInput";
|
|
4
|
+
export declare class UpdateStripeExpressCheckoutSessionInputData {
|
|
5
|
+
address: StripeExpressCheckoutAddressInputData | null;
|
|
6
|
+
cartId: string;
|
|
7
|
+
customer: StripeExpressCheckoutCustomerInputData | null;
|
|
8
|
+
sessionId: string;
|
|
9
|
+
shippingSettingsId: string | null;
|
|
10
|
+
shippingZoneRateId: string | null;
|
|
11
|
+
transactionId: string;
|
|
12
|
+
constructor(data?: Partial<UpdateStripeExpressCheckoutSessionInputData>);
|
|
13
|
+
}
|
|
14
|
+
export declare class UpdateStripeExpressCheckoutSessionInput extends UpdateStripeExpressCheckoutSessionInputData {
|
|
15
|
+
}
|
|
16
|
+
export declare type PartialUpdateStripeExpressCheckoutSessionInput = Partial<UpdateStripeExpressCheckoutSessionInput>;
|
|
17
|
+
export declare type ReadOnlyUpdateStripeExpressCheckoutSessionInput = DeepReadonly<UpdateStripeExpressCheckoutSessionInput>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ConfigType, APIResponse } from "@ikas/fe-api-client";
|
|
2
|
+
import { CreateSaleTransactionWithCartInput, CreateStripeExpressCheckoutSessionResponse } from "../types";
|
|
3
|
+
declare const createStripeExpressCheckoutSession: (variables: QueryParams, fields?: string[], config?: ConfigType) => Promise<APIResponse<CreateStripeExpressCheckoutSessionResponse> | APIResponse<undefined>>;
|
|
4
|
+
export default createStripeExpressCheckoutSession;
|
|
5
|
+
export declare type QueryParams = {
|
|
6
|
+
input: CreateSaleTransactionWithCartInput;
|
|
7
|
+
};
|
|
8
|
+
export declare enum ResponseField {
|
|
9
|
+
ACCOUNT_ID = "accountId",
|
|
10
|
+
API_KEY = "apiKey",
|
|
11
|
+
CALLBACK_URL = "callbackUrl",
|
|
12
|
+
CLIENT_SECRET = "clientSecret",
|
|
13
|
+
FAIL_URL = "failUrl",
|
|
14
|
+
SESSION_ID = "sessionId",
|
|
15
|
+
TRANSACTION_ID = "transactionId"
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{__awaiter as t,__generator as e}from'./../../ext/tslib/tslib.es6.js';import{handleAPIError as n,APIResponse as r,fetchQuery as i}from"@ikas/fe-api-client";var s,a=function(s,a,o){return t(void 0,void 0,void 0,(function(){var t,u,l,p;return e(this,(function(e){switch(e.label){case 0:return e.trys.push([0,2,,3]),[4,i({operationName:"createStripeExpressCheckoutSession",config:o,variables:s,allReturnFields:c,fields:a,query:function(t){return"\n\t\t\t\tmutation createStripeExpressCheckoutSession (\n\t\t\t\t\t$input: CreateSaleTransactionWithCartInput!,\n\t\t\t\t) {\n\t\t\t\t\tcreateStripeExpressCheckoutSession (\n\t\t\t\t\t\tinput: $input,\n\t\t\t\t\t) ".concat(t,"\n\t\t\t\t}\n\t\t\t")}})];case 1:return t=e.sent(),u=t.data,l=t.errors,[2,new r(null==u?void 0:u.createStripeExpressCheckoutSession,l)];case 2:return p=e.sent(),[2,n(p)];case 3:return[2]}}))}))},c="{accountId apiKey callbackUrl clientSecret failUrl sessionId transactionId }";!function(t){t.ACCOUNT_ID="accountId",t.API_KEY="apiKey",t.CALLBACK_URL="callbackUrl",t.CLIENT_SECRET="clientSecret",t.FAIL_URL="failUrl",t.SESSION_ID="sessionId",t.TRANSACTION_ID="transactionId"}(s||(s={}));export{s as ResponseField,a as default};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ConfigType, APIResponse } from "@ikas/fe-api-client";
|
|
2
|
+
import { UpdateStripeExpressCheckoutSessionInput, StripeExpressCheckoutSessionContextResponse } from "../types";
|
|
3
|
+
declare const updateStripeExpressCheckoutSession: (variables: QueryParams, fields?: string[], config?: ConfigType) => Promise<APIResponse<StripeExpressCheckoutSessionContextResponse> | APIResponse<undefined>>;
|
|
4
|
+
export default updateStripeExpressCheckoutSession;
|
|
5
|
+
export declare type QueryParams = {
|
|
6
|
+
input: UpdateStripeExpressCheckoutSessionInput;
|
|
7
|
+
};
|
|
8
|
+
export declare enum ResponseField {
|
|
9
|
+
AMOUNT_TOTAL = "amountTotal",
|
|
10
|
+
CURRENCY = "currency",
|
|
11
|
+
LINE_ITEMS_JSON = "lineItemsJson",
|
|
12
|
+
PAYMENT_STATUS = "paymentStatus",
|
|
13
|
+
SESSION_ID = "sessionId",
|
|
14
|
+
SHIPPING_OPTIONS_JSON = "shippingOptionsJson",
|
|
15
|
+
TRANSACTION_ID = "transactionId"
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{__awaiter as t,__generator as n}from'./../../ext/tslib/tslib.es6.js';import{handleAPIError as e,APIResponse as s,fetchQuery as i}from"@ikas/fe-api-client";var o,r=function(o,r,a){return t(void 0,void 0,void 0,(function(){var t,p,c,S;return n(this,(function(n){switch(n.label){case 0:return n.trys.push([0,2,,3]),[4,i({operationName:"updateStripeExpressCheckoutSession",config:a,variables:o,allReturnFields:u,fields:r,query:function(t){return"\n\t\t\t\tmutation updateStripeExpressCheckoutSession (\n\t\t\t\t\t$input: UpdateStripeExpressCheckoutSessionInput!,\n\t\t\t\t) {\n\t\t\t\t\tupdateStripeExpressCheckoutSession (\n\t\t\t\t\t\tinput: $input,\n\t\t\t\t\t) ".concat(t,"\n\t\t\t\t}\n\t\t\t")}})];case 1:return t=n.sent(),p=t.data,c=t.errors,[2,new s(null==p?void 0:p.updateStripeExpressCheckoutSession,c)];case 2:return S=n.sent(),[2,e(S)];case 3:return[2]}}))}))},u="{amountTotal currency lineItemsJson paymentStatus sessionId shippingOptionsJson transactionId }";!function(t){t.AMOUNT_TOTAL="amountTotal",t.CURRENCY="currency",t.LINE_ITEMS_JSON="lineItemsJson",t.PAYMENT_STATUS="paymentStatus",t.SESSION_ID="sessionId",t.SHIPPING_OPTIONS_JSON="shippingOptionsJson",t.TRANSACTION_ID="transactionId"}(o||(o={}));export{o as ResponseField,r as default};
|
|
@@ -1215,6 +1215,15 @@ export interface CreatePayWithIkasSessionUrlResponse {
|
|
|
1215
1215
|
expiresAt: number;
|
|
1216
1216
|
payUrl: string;
|
|
1217
1217
|
}
|
|
1218
|
+
export interface CreateStripeExpressCheckoutSessionResponse {
|
|
1219
|
+
accountId: string;
|
|
1220
|
+
apiKey: string;
|
|
1221
|
+
callbackUrl: string;
|
|
1222
|
+
clientSecret: string;
|
|
1223
|
+
failUrl: string;
|
|
1224
|
+
sessionId: string;
|
|
1225
|
+
transactionId: string;
|
|
1226
|
+
}
|
|
1218
1227
|
export interface CreateStripePaymentIntentResponse {
|
|
1219
1228
|
accountId: string;
|
|
1220
1229
|
apiKey: string;
|
|
@@ -3680,6 +3689,18 @@ export interface StringFilterInput {
|
|
|
3680
3689
|
ne?: string | null;
|
|
3681
3690
|
nin?: string[] | null;
|
|
3682
3691
|
}
|
|
3692
|
+
export interface StripeExpressCheckoutAddressInput {
|
|
3693
|
+
city?: string | null;
|
|
3694
|
+
country?: string | null;
|
|
3695
|
+
postalCode?: string | null;
|
|
3696
|
+
state?: string | null;
|
|
3697
|
+
}
|
|
3698
|
+
export interface StripeExpressCheckoutCustomerInput {
|
|
3699
|
+
email?: string | null;
|
|
3700
|
+
firstName?: string | null;
|
|
3701
|
+
id?: string | null;
|
|
3702
|
+
lastName?: string | null;
|
|
3703
|
+
}
|
|
3683
3704
|
export interface SubscribeToMarketingNotificationsInput {
|
|
3684
3705
|
captchaToken?: string | null;
|
|
3685
3706
|
email: string;
|
|
@@ -3716,6 +3737,15 @@ export interface UpdatePaypalOrderInput {
|
|
|
3716
3737
|
shippingZoneRateId?: string | null;
|
|
3717
3738
|
transactionId: string;
|
|
3718
3739
|
}
|
|
3740
|
+
export interface UpdateStripeExpressCheckoutSessionInput {
|
|
3741
|
+
address?: StripeExpressCheckoutAddressInput | null;
|
|
3742
|
+
cartId: string;
|
|
3743
|
+
customer?: StripeExpressCheckoutCustomerInput | null;
|
|
3744
|
+
sessionId: string;
|
|
3745
|
+
shippingSettingsId?: string | null;
|
|
3746
|
+
shippingZoneRateId?: string | null;
|
|
3747
|
+
transactionId: string;
|
|
3748
|
+
}
|
|
3719
3749
|
export declare enum StorefrontPopupDeviceTypeEnum {
|
|
3720
3750
|
ALL = "ALL",
|
|
3721
3751
|
DESKTOP = "DESKTOP",
|
|
@@ -4049,3 +4079,12 @@ export interface StorefrontWidgetSettingsRouting {
|
|
|
4049
4079
|
storefrontId: string;
|
|
4050
4080
|
storefrontRoutingId: string;
|
|
4051
4081
|
}
|
|
4082
|
+
export interface StripeExpressCheckoutSessionContextResponse {
|
|
4083
|
+
amountTotal: number | null;
|
|
4084
|
+
currency: string | null;
|
|
4085
|
+
lineItemsJson: string | null;
|
|
4086
|
+
paymentStatus: string | null;
|
|
4087
|
+
sessionId: string;
|
|
4088
|
+
shippingOptionsJson: string | null;
|
|
4089
|
+
transactionId: string;
|
|
4090
|
+
}
|
|
@@ -14,11 +14,13 @@ import { QueryParams as CreatePayPalOrderParams } from "../../__api/mutations/cr
|
|
|
14
14
|
import { QueryParams as UpdatePayPalOrderParams } from "../../__api/mutations/updatePaypalOrder";
|
|
15
15
|
import { QueryParams as HepsipayFrameInitParams } from "../../__api/mutations/hepsipayFrameInit";
|
|
16
16
|
import { QueryParams as CreateIyzicoCheckoutFormParams } from "../../__api/mutations/createIyzicoCheckoutForm";
|
|
17
|
+
import { QueryParams as CreateStripeExpressCheckoutSessionParams } from "../../__api/mutations/createStripeExpressCheckoutSession";
|
|
18
|
+
import { QueryParams as UpdateStripeExpressCheckoutSessionParams } from "../../__api/mutations/updateStripeExpressCheckoutSession";
|
|
17
19
|
import { QueryParams as ListProductFileQueryParams } from "../../__api/queries/listProductFile";
|
|
18
20
|
import { QueryParams as CheckCartStocksQueryParams } from "../../__api/queries/checkCartStocks";
|
|
19
21
|
import { QueryParams as CreateAdyenBalancePlatformPaymentParams } from "../../__api/mutations/createAdyenBalancePlatformPaymentSession";
|
|
20
22
|
import { IkasAvailableStockLocation, IkasCheckoutSettings, IkasPaymentGateway, IkasStockLocation, IkasStoreCreditBalance } from "@ikas/storefront-models";
|
|
21
|
-
export type { CreateSaleTransactionQueryParams, ListPaymentGatewayQueryParams, RetrieveInstallmentInfoQueryParams, CheckStocksQueryParams, ListCheckoutSettingsQueryParams, GetAvailableShippingCountriesQueryParams, ListStockLocationQueryParams, GetAvailableStockLocationQueryParams, CreateStripePaymentIntentParams, CreateKlarnaClientTokenParams, GetPayPalClientIdTokenParams, CreatePayPalOrderParams, UpdatePayPalOrderParams, HepsipayFrameInitParams, ListProductFileQueryParams, CheckCartStocksQueryParams, CreateAdyenBalancePlatformPaymentParams, CreateIyzicoCheckoutFormParams, };
|
|
23
|
+
export type { CreateSaleTransactionQueryParams, ListPaymentGatewayQueryParams, RetrieveInstallmentInfoQueryParams, CheckStocksQueryParams, ListCheckoutSettingsQueryParams, GetAvailableShippingCountriesQueryParams, ListStockLocationQueryParams, GetAvailableStockLocationQueryParams, CreateStripePaymentIntentParams, CreateKlarnaClientTokenParams, GetPayPalClientIdTokenParams, CreatePayPalOrderParams, UpdatePayPalOrderParams, HepsipayFrameInitParams, ListProductFileQueryParams, CheckCartStocksQueryParams, CreateAdyenBalancePlatformPaymentParams, CreateIyzicoCheckoutFormParams, CreateStripeExpressCheckoutSessionParams, UpdateStripeExpressCheckoutSessionParams, };
|
|
22
24
|
export declare function createSaleTransactionWithCart(params: CreateSaleTransactionQueryParams): Promise<APIResponse<import("../..").TransactionResponse> | APIResponse<undefined>>;
|
|
23
25
|
export declare function listPaymentGateway(params: ListPaymentGatewayQueryParams): Promise<APIResponse<IkasPaymentGateway[]>>;
|
|
24
26
|
export declare function getStoreCreditBalance(): Promise<APIResponse<IkasStoreCreditBalance | null>>;
|
|
@@ -38,3 +40,5 @@ export declare function createPayPalOrder(params: CreatePayPalOrderParams): Prom
|
|
|
38
40
|
export declare function updatePaypalOrder(params: UpdatePayPalOrderParams): Promise<APIResponse<boolean>>;
|
|
39
41
|
export declare function hepsipayFrameInit(params: HepsipayFrameInitParams): Promise<APIResponse<import("../..").HepsipayFrameInitResponse>>;
|
|
40
42
|
export declare function createIyzicoCheckoutForm(params: CreateIyzicoCheckoutFormParams): Promise<APIResponse<import("../..").CreateIyzicoCheckoutFormResponse>>;
|
|
43
|
+
export declare function createStripeExpressCheckoutSession(params: CreateStripeExpressCheckoutSessionParams): Promise<APIResponse<import("../../__api/types").CreateStripeExpressCheckoutSessionResponse>>;
|
|
44
|
+
export declare function updateStripeExpressCheckoutSession(params: UpdateStripeExpressCheckoutSessionParams): Promise<APIResponse<import("../../__api/types").StripeExpressCheckoutSessionContextResponse>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{__awaiter as t,__generator as e}from'./../../ext/tslib/tslib.es6.js';import{APIResponse as r}from"@ikas/fe-api-client";function n(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,import("../../__api/mutations/createSaleTransactionWithCart.js")];case 1:return[4,(0,t.sent().default)(r)];case 2:return[2,t.sent()]}}))}))}function i(n){return t(this,void 0,void 0,(function(){var t,i;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/queries/listPaymentGateway.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),i=t.data||[],[2,new r(i,t.graphQLErrors)]}}))}))}function s(){return t(this,void 0,void 0,(function(){var t,n;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/queries/getStoreCreditBalance.js")];case 1:return[4,(0,e.sent().default)()];case 2:return t=e.sent(),n=t.data,[2,new r(n,t.graphQLErrors)]}}))}))}function a(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,import("../../__api/queries/listProductFile.js")];case 1:return[4,(0,t.sent().default)(r)];case 2:return[2,t.sent()]}}))}))}function u(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,import("../../__api/mutations/retrieveInstallmentInfo.js")];case 1:return[4,(0,t.sent().default)(r)];case 2:return[2,t.sent()]}}))}))}function o(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,import("../../__api/queries/checkStocks.js")];case 1:return[4,(0,t.sent().default)(r)];case 2:return[2,t.sent()]}}))}))}function c(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,import("../../__api/queries/checkCartStocks.js")];case 1:return[4,(0,t.sent().default)(r)];case 2:return[2,t.sent()]}}))}))}function l(n){return t(this,void 0,void 0,(function(){var t,i,s,a,u;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/queries/listCheckoutSettings.js")];case 1:return t=e.sent().default,s=t,a=[n],[4,
|
|
1
|
+
import{__awaiter as t,__generator as e}from'./../../ext/tslib/tslib.es6.js';import{APIResponse as r}from"@ikas/fe-api-client";function n(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,import("../../__api/mutations/createSaleTransactionWithCart.js")];case 1:return[4,(0,t.sent().default)(r)];case 2:return[2,t.sent()]}}))}))}function i(n){return t(this,void 0,void 0,(function(){var t,i;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/queries/listPaymentGateway.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),i=t.data||[],[2,new r(i,t.graphQLErrors)]}}))}))}function s(){return t(this,void 0,void 0,(function(){var t,n;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/queries/getStoreCreditBalance.js")];case 1:return[4,(0,e.sent().default)()];case 2:return t=e.sent(),n=t.data,[2,new r(n,t.graphQLErrors)]}}))}))}function a(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,import("../../__api/queries/listProductFile.js")];case 1:return[4,(0,t.sent().default)(r)];case 2:return[2,t.sent()]}}))}))}function u(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,import("../../__api/mutations/retrieveInstallmentInfo.js")];case 1:return[4,(0,t.sent().default)(r)];case 2:return[2,t.sent()]}}))}))}function o(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,import("../../__api/queries/checkStocks.js")];case 1:return[4,(0,t.sent().default)(r)];case 2:return[2,t.sent()]}}))}))}function c(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,import("../../__api/queries/checkCartStocks.js")];case 1:return[4,(0,t.sent().default)(r)];case 2:return[2,t.sent()]}}))}))}function l(n){return t(this,void 0,void 0,(function(){var t,i,s,a,u;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/queries/listCheckoutSettings.js")];case 1:return t=e.sent().default,s=t,a=[n],[4,S()];case 2:return[4,s.apply(void 0,a.concat([e.sent()]))];case 3:return i=e.sent(),u=i.data||[],[2,new r(u,i.graphQLErrors)]}}))}))}function d(r){return t(this,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,import("../../__api/queries/getAvailableShippingCountries.js")];case 1:return[4,(0,t.sent().default)(r)];case 2:return[2,t.sent()]}}))}))}function f(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/queries/listStockLocation.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))}function h(n){var i;return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/queries/getAvailableStockLocations.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),[2,new r(null===(i=t.data)||void 0===i?void 0:i.stockLocations,t.graphQLErrors)]}}))}))}function p(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/mutations/createStripePaymentIntent.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))}function v(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/mutations/createKlarnaClientToken.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))}function _(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/mutations/createAdyenBalancePlatformPaymentSession.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))}function m(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/mutations/getPaypalClientId.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))}function w(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/mutations/createPaypalOrder.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))}function b(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/mutations/updatePaypalOrder.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))}function j(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/mutations/hepsipayFrameInit.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))}function g(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/mutations/createIyzicoCheckoutForm.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))}function L(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/mutations/createStripeExpressCheckoutSession.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))}function E(n){return t(this,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/mutations/updateStripeExpressCheckoutSession.js")];case 1:return[4,(0,e.sent().default)(n)];case 2:return t=e.sent(),[2,new r(t.data,t.graphQLErrors)]}}))}))}function S(){return t(this,void 0,void 0,(function(){var t,r;return e(this,(function(e){switch(e.label){case 0:return[4,import("../../__api/queries/listCheckoutSettings.js")];case 1:return t=e.sent().ResponseField,r=["IS_SHOW_POSTAL_CODE"],[2,Object.entries(t).filter((function(t){var e=t[0];return!r.includes(e)})).map((function(t){return t[1]}))]}}))}))}export{c as checkCartStocks,o as checkStocks,_ as createAdyenBalancePlatformPaymentSession,g as createIyzicoCheckoutForm,v as createKlarnaClientToken,w as createPayPalOrder,n as createSaleTransactionWithCart,L as createStripeExpressCheckoutSession,p as createStripePaymentIntent,d as getAvailableShippingCountries,h as getAvailableStockLocations,m as getPayPalClientId,s as getStoreCreditBalance,j as hepsipayFrameInit,l as listCheckoutSettings,i as listPaymentGateway,a as listProductFile,f as listStockLocations,u as retrieveInstallmentInfo,b as updatePaypalOrder,E as updateStripeExpressCheckoutSession};
|
package/build/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{getAutoAppyCouponCodeFromCookie,setAPIClientConfig}from"./index2.js";export{SaveMyCustomerInput}from"./__api/models/SaveMyCustomerInput.js";export{SaveCartInput}from"./__api/models/SaveCartInput.js";export{CheckStocksLineInput}from"./__api/models/CheckStocksLineInput.js";export{CampaignOfferTargetPageTypeEnum,GetSuggestedProductsMethodEnum,LoyaltyProgramFilterTypeEnum,LoyaltyProgramMethodSpendingTypeEnum,LoyaltyProgramOrderStatusToWinPointsEnum,LoyaltyProgramPointEarningTypeEnum,LoyaltyProgramPointHistoryTypeEnum,MasterPassOperationTypeEnum,SortByDirectionEnum,SortByTypeEnum,StorefrontWidgetSettingsStatusEnum,TransactionCardAssociationEnum}from"./__api/types/index.js";export{APIResponse,Config as IkasAPIClientConfig}from"@ikas/fe-api-client";export{listBlog,listBlogCategory,listBlogMetaData}from"./api/blog/index.js";export{listProductBrand}from"./api/brand/index.js";export{addItemToCart,createCart,createPayWithIkasSessionUrl,getCartById,removeGiftCardFromCart,removeLoyaltyPointsFromCart,saveCart,saveCartCouponCode,updateCartCampaignOffer,useLoyaltyPoints}from"./api/cart/index.js";export{listCategory}from"./api/category/index.js";export{checkCartStocks,checkStocks,createAdyenBalancePlatformPaymentSession,createIyzicoCheckoutForm,createKlarnaClientToken,createPayPalOrder,createSaleTransactionWithCart,createStripePaymentIntent,getAvailableShippingCountries,getAvailableStockLocations,getPayPalClientId,getStoreCreditBalance,hepsipayFrameInit,listCheckoutSettings,listPaymentGateway,listProductFile,listStockLocations,retrieveInstallmentInfo,updatePaypalOrder}from"./api/checkout/index.js";export{IkasLoginError,IkasRegisterError,activateCustomer,checkEmail,createCustomerReview,createOrderRefundRequest,deactivateCustomer,exportCustomerPersonelData,forgotPassword,getCustomer,getLastViewedProducts,getOrderByEmail,getOrders,isFavoriteProduct,listCustomerAttribute,listCustomerReviewSummary,listCustomerReviews,listCustomerSettings,listFavoriteProducts,listOrderRefundSettings,listOrderTransactions,listOrderTransactionsWithPrices,login,recoverPassword,refreshToken,register,resendCustomerActivationMail,resendCustomerPhoneVerificationCode,saveCustomer,saveCustomerFormData,saveFavoriteProduct,saveLastViewedProducts,sendContactFormToMerchant,socialLogin,subscribeToMarketingNotifications,validateCustomerPhoneVerificationCode,validateOTPCode}from"./api/customer/index.js";export{getDigitalProductFileDownloadUrl,getProductOptionFileUrl,uploadFile}from"./api/file-upload/index.js";export{listHTMLMetaData}from"./api/html-meta-data/index.js";export{getAvailableShippingZones,getMyCountry,listCity,listCountry,listDistrict,listState}from"./api/location/index.js";export{getLoyaltyCustomerInfo,getLoyaltyProgram,getStorefrontWidgetSettings,listEarningMethods,listLoyaltyProgramPointHistory,listLoyaltyProgramTiers,listSpendingMethodsByCartId}from"./api/loyalty/index.js";export{getMasterPassRequestToken}from"./api/masterpass/index.js";export{listMerchantSettings}from"./api/merchant/index.js";export{getOrderLineFile,getProductCampaigns,getProductFilterData,getRelatedProducts,getSuggestedProducts,getVariantStockLocations,listCampaignOffer,listProductAttribute,listProductBackInStockRemind,listProductOptionSet,saveProductBackInStockRemind,searchProducts}from"./api/product/index.js";export{listRaffleMetaData,listRaffleParticipants,listStorefrontRaffle,saveRaffleParticipant}from"./api/raffle/index.js";export{getStorefrontSettings}from"./api/storefront/index.js";export{listStorefrontPopup}from"./api/storefront-popup/index.js";
|
|
1
|
+
export{getAutoAppyCouponCodeFromCookie,setAPIClientConfig}from"./index2.js";export{SaveMyCustomerInput}from"./__api/models/SaveMyCustomerInput.js";export{SaveCartInput}from"./__api/models/SaveCartInput.js";export{CheckStocksLineInput}from"./__api/models/CheckStocksLineInput.js";export{CampaignOfferTargetPageTypeEnum,GetSuggestedProductsMethodEnum,LoyaltyProgramFilterTypeEnum,LoyaltyProgramMethodSpendingTypeEnum,LoyaltyProgramOrderStatusToWinPointsEnum,LoyaltyProgramPointEarningTypeEnum,LoyaltyProgramPointHistoryTypeEnum,MasterPassOperationTypeEnum,SortByDirectionEnum,SortByTypeEnum,StorefrontWidgetSettingsStatusEnum,TransactionCardAssociationEnum}from"./__api/types/index.js";export{APIResponse,Config as IkasAPIClientConfig}from"@ikas/fe-api-client";export{listBlog,listBlogCategory,listBlogMetaData}from"./api/blog/index.js";export{listProductBrand}from"./api/brand/index.js";export{addItemToCart,createCart,createPayWithIkasSessionUrl,getCartById,removeGiftCardFromCart,removeLoyaltyPointsFromCart,saveCart,saveCartCouponCode,updateCartCampaignOffer,useLoyaltyPoints}from"./api/cart/index.js";export{listCategory}from"./api/category/index.js";export{checkCartStocks,checkStocks,createAdyenBalancePlatformPaymentSession,createIyzicoCheckoutForm,createKlarnaClientToken,createPayPalOrder,createSaleTransactionWithCart,createStripeExpressCheckoutSession,createStripePaymentIntent,getAvailableShippingCountries,getAvailableStockLocations,getPayPalClientId,getStoreCreditBalance,hepsipayFrameInit,listCheckoutSettings,listPaymentGateway,listProductFile,listStockLocations,retrieveInstallmentInfo,updatePaypalOrder,updateStripeExpressCheckoutSession}from"./api/checkout/index.js";export{IkasLoginError,IkasRegisterError,activateCustomer,checkEmail,createCustomerReview,createOrderRefundRequest,deactivateCustomer,exportCustomerPersonelData,forgotPassword,getCustomer,getLastViewedProducts,getOrderByEmail,getOrders,isFavoriteProduct,listCustomerAttribute,listCustomerReviewSummary,listCustomerReviews,listCustomerSettings,listFavoriteProducts,listOrderRefundSettings,listOrderTransactions,listOrderTransactionsWithPrices,login,recoverPassword,refreshToken,register,resendCustomerActivationMail,resendCustomerPhoneVerificationCode,saveCustomer,saveCustomerFormData,saveFavoriteProduct,saveLastViewedProducts,sendContactFormToMerchant,socialLogin,subscribeToMarketingNotifications,validateCustomerPhoneVerificationCode,validateOTPCode}from"./api/customer/index.js";export{getDigitalProductFileDownloadUrl,getProductOptionFileUrl,uploadFile}from"./api/file-upload/index.js";export{listHTMLMetaData}from"./api/html-meta-data/index.js";export{getAvailableShippingZones,getMyCountry,listCity,listCountry,listDistrict,listState}from"./api/location/index.js";export{getLoyaltyCustomerInfo,getLoyaltyProgram,getStorefrontWidgetSettings,listEarningMethods,listLoyaltyProgramPointHistory,listLoyaltyProgramTiers,listSpendingMethodsByCartId}from"./api/loyalty/index.js";export{getMasterPassRequestToken}from"./api/masterpass/index.js";export{listMerchantSettings}from"./api/merchant/index.js";export{getOrderLineFile,getProductCampaigns,getProductFilterData,getRelatedProducts,getSuggestedProducts,getVariantStockLocations,listCampaignOffer,listProductAttribute,listProductBackInStockRemind,listProductOptionSet,saveProductBackInStockRemind,searchProducts}from"./api/product/index.js";export{listRaffleMetaData,listRaffleParticipants,listStorefrontRaffle,saveRaffleParticipant}from"./api/raffle/index.js";export{getStorefrontSettings}from"./api/storefront/index.js";export{listStorefrontPopup}from"./api/storefront-popup/index.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ikas/storefront-api",
|
|
3
|
-
"version": "6.1.0-beta.
|
|
3
|
+
"version": "6.1.0-beta.294",
|
|
4
4
|
"author": "ikas",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"description": "API functions that returns models from the ikas-storefront-models package.",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@rollup/plugin-commonjs": "^22.0.0",
|
|
20
|
-
"@ikas/storefront-config": "^6.1.0-beta.
|
|
21
|
-
"@ikas/storefront-models": "^6.1.0-beta.
|
|
20
|
+
"@ikas/storefront-config": "^6.1.0-beta.294",
|
|
21
|
+
"@ikas/storefront-models": "^6.1.0-beta.294",
|
|
22
22
|
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
23
23
|
"rollup-plugin-rename-node-modules": "^1.2.0",
|
|
24
24
|
"prettier": "^2.2.1",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"@ikas/fe-api-client": "1.0.30"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
|
-
"@ikas/storefront-config": "^6.1.0-beta.
|
|
38
|
-
"@ikas/storefront-models": "^6.1.0-beta.
|
|
37
|
+
"@ikas/storefront-config": "^6.1.0-beta.294",
|
|
38
|
+
"@ikas/storefront-models": "^6.1.0-beta.294",
|
|
39
39
|
"@ikas/fe-api-client": "1.0.30",
|
|
40
40
|
"axios": "^0.26.0",
|
|
41
41
|
"ts-essentials": "^7.0.1"
|