@ikas/storefront-api 6.1.0-beta.222 → 6.1.0-beta.225
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/CreatePayWithIkasSessionUrlResponse.d.ts +10 -0
- package/build/__api/mutations/createPayWithIkasSessionUrl.d.ts +11 -0
- package/build/__api/mutations/createPayWithIkasSessionUrl.js +1 -0
- package/build/__api/types/index.d.ts +4 -0
- package/build/api/cart/index.d.ts +3 -1
- package/build/api/cart/index.js +1 -1
- package/build/index.js +1 -1
- package/package.json +5 -5
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DeepReadonly } from "ts-essentials";
|
|
2
|
+
export declare class CreatePayWithIkasSessionUrlResponseData {
|
|
3
|
+
expiresAt: number;
|
|
4
|
+
payUrl: string;
|
|
5
|
+
constructor(data?: Partial<CreatePayWithIkasSessionUrlResponseData>);
|
|
6
|
+
}
|
|
7
|
+
export declare class CreatePayWithIkasSessionUrlResponse extends CreatePayWithIkasSessionUrlResponseData {
|
|
8
|
+
}
|
|
9
|
+
export declare type PartialCreatePayWithIkasSessionUrlResponse = Partial<CreatePayWithIkasSessionUrlResponse>;
|
|
10
|
+
export declare type ReadOnlyCreatePayWithIkasSessionUrlResponse = DeepReadonly<CreatePayWithIkasSessionUrlResponse>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ConfigType, APIResponse } from "@ikas/fe-api-client";
|
|
2
|
+
import { CreatePayWithIkasSessionUrlResponse } from "../types";
|
|
3
|
+
declare const createPayWithIkasSessionUrl: (variables: QueryParams, fields?: string[], config?: ConfigType) => Promise<APIResponse<CreatePayWithIkasSessionUrlResponse> | APIResponse<undefined>>;
|
|
4
|
+
export default createPayWithIkasSessionUrl;
|
|
5
|
+
export declare type QueryParams = {
|
|
6
|
+
cartId: string;
|
|
7
|
+
};
|
|
8
|
+
export declare enum ResponseField {
|
|
9
|
+
EXPIRES_AT = "expiresAt",
|
|
10
|
+
PAY_URL = "payUrl"
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{__awaiter as t,__generator as e}from'./../../ext/tslib/tslib.es6.js';import{handleAPIError as r,APIResponse as n,fetchQuery as a}from"@ikas/fe-api-client";var i,s=function(i,s,c){return t(void 0,void 0,void 0,(function(){var t,l,u,d;return e(this,(function(e){switch(e.label){case 0:return e.trys.push([0,2,,3]),[4,a({operationName:"createPayWithIkasSessionUrl",config:c,variables:i,allReturnFields:o,fields:s,query:function(t){return"\n\t\t\t\tmutation createPayWithIkasSessionUrl (\n\t\t\t\t\t$cartId: String!,\n\t\t\t\t) {\n\t\t\t\t\tcreatePayWithIkasSessionUrl (\n\t\t\t\t\t\tcartId: $cartId,\n\t\t\t\t\t) ".concat(t,"\n\t\t\t\t}\n\t\t\t")}})];case 1:return t=e.sent(),l=t.data,u=t.errors,[2,new n(null==l?void 0:l.createPayWithIkasSessionUrl,u)];case 2:return d=e.sent(),[2,r(d)];case 3:return[2]}}))}))},o="{expiresAt payUrl }";!function(t){t.EXPIRES_AT="expiresAt",t.PAY_URL="payUrl"}(i||(i={}));export{i as ResponseField,s as default};
|
|
@@ -1207,6 +1207,10 @@ export interface CreatePaypalOrderResponse {
|
|
|
1207
1207
|
sessionToken: string;
|
|
1208
1208
|
transactionId: string;
|
|
1209
1209
|
}
|
|
1210
|
+
export interface CreatePayWithIkasSessionUrlResponse {
|
|
1211
|
+
expiresAt: number;
|
|
1212
|
+
payUrl: string;
|
|
1213
|
+
}
|
|
1210
1214
|
export interface CreateStripePaymentIntentResponse {
|
|
1211
1215
|
accountId: string;
|
|
1212
1216
|
apiKey: string;
|
|
@@ -8,8 +8,9 @@ import { QueryParams as UpdateCartCampaignOfferQueryParams } from "../../__api/m
|
|
|
8
8
|
import { QueryParams as CreateCartQueryParams } from "../../__api/mutations/createCart";
|
|
9
9
|
import { QueryParams as UseLoyaltyPointsQueryParams } from "../../__api/mutations/useLoyaltyPoints";
|
|
10
10
|
import { QueryParams as RemoveLoyaltyPointsFromCartQueryParams } from "../../__api/mutations/removeLoyaltyPointsFromCart";
|
|
11
|
+
import { QueryParams as CreatePayWithIkasSessionUrlQueryParams } from "../../__api/mutations/createPayWithIkasSessionUrl";
|
|
11
12
|
import { IkasCart } from "@ikas/storefront-models";
|
|
12
|
-
export type { GetCartByIdQueryParams, SaveCartQueryParams, RemoveGiftCardFromCartQueryParams, SaveCartCouponCodeQueryParams, AddItemToCartQueryParams, UpdateCartCampaignOfferQueryParams, CreateCartQueryParams, UseLoyaltyPointsQueryParams, RemoveLoyaltyPointsFromCartQueryParams, };
|
|
13
|
+
export type { GetCartByIdQueryParams, SaveCartQueryParams, RemoveGiftCardFromCartQueryParams, SaveCartCouponCodeQueryParams, AddItemToCartQueryParams, UpdateCartCampaignOfferQueryParams, CreateCartQueryParams, UseLoyaltyPointsQueryParams, RemoveLoyaltyPointsFromCartQueryParams, CreatePayWithIkasSessionUrlQueryParams, };
|
|
13
14
|
export declare function getCartById(params: GetCartByIdQueryParams): Promise<APIResponse<IkasCart | null>>;
|
|
14
15
|
export declare function saveCart(params: SaveCartQueryParams): Promise<APIResponse<IkasCart | null>>;
|
|
15
16
|
export declare function removeGiftCardFromCart(params: RemoveGiftCardFromCartQueryParams): Promise<APIResponse<IkasCart | null>>;
|
|
@@ -19,3 +20,4 @@ export declare function removeLoyaltyPointsFromCart(params: RemoveLoyaltyPointsF
|
|
|
19
20
|
export declare function addItemToCart(params: AddItemToCartQueryParams): Promise<APIResponse<IkasCart | null>>;
|
|
20
21
|
export declare function updateCartCampaignOffer(params: UpdateCartCampaignOfferQueryParams): Promise<APIResponse<IkasCart | null>>;
|
|
21
22
|
export declare function createCart(params: CreateCartQueryParams): Promise<APIResponse<IkasCart | null>>;
|
|
23
|
+
export declare function createPayWithIkasSessionUrl(params: CreatePayWithIkasSessionUrlQueryParams): Promise<APIResponse<import("../../__api/types").CreatePayWithIkasSessionUrlResponse | null>>;
|
package/build/api/cart/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{__awaiter as t,__generator as n,__spreadArray as r,__assign as e}from'./../../ext/tslib/tslib.es6.js';import{APIResponse as a}from"@ikas/fe-api-client";import{initIkasCampaignOffer as i}from"@ikas/storefront-models";import{IkasStorefrontConfig as s}from"@ikas/storefront-config";function u(t){return e(e({},t),{cancelReason:null})}function o(r){var e;return t(this,void 0,void 0,(function(){var t,o,c,l,d;return n(this,(function(n){switch(n.label){case 0:return[4,import("../../__api/queries/getCartById.js")];case 1:return t=n.sent().default,c=t,l=[r],[4,
|
|
1
|
+
import{__awaiter as t,__generator as n,__spreadArray as r,__assign as e}from'./../../ext/tslib/tslib.es6.js';import{APIResponse as a}from"@ikas/fe-api-client";import{initIkasCampaignOffer as i}from"@ikas/storefront-models";import{IkasStorefrontConfig as s}from"@ikas/storefront-config";function u(t){return e(e({},t),{cancelReason:null})}function o(r){var e;return t(this,void 0,void 0,(function(){var t,o,c,l,d;return n(this,(function(n){switch(n.label){case 0:return[4,import("../../__api/queries/getCartById.js")];case 1:return t=n.sent().default,c=t,l=[r],[4,m()];case 2:return[4,c.apply(void 0,l.concat([n.sent()]))];case 3:return o=n.sent(),d=o.data?u(o.data):null,null===(e=null==d?void 0:d.campaignOffers)||void 0===e||e.forEach((function(t){t.campaignOffer&&i(t.campaignOffer,s.getCurrentLocale())})),[2,new a(d||null,o.graphQLErrors)]}}))}))}function c(r){return t(this,void 0,void 0,(function(){var t,e,i,s,o;return n(this,(function(n){switch(n.label){case 0:return[4,import("../../__api/mutations/saveCart.js")];case 1:return t=n.sent().default,i=t,s=[r],[4,m()];case 2:return[4,i.apply(void 0,s.concat([n.sent()]))];case 3:return e=n.sent(),o=e.data?u(e.data):null,[2,new a(o||null,e.graphQLErrors)]}}))}))}function l(r){return t(this,void 0,void 0,(function(){var t,e,i,s,o;return n(this,(function(n){switch(n.label){case 0:return[4,import("../../__api/mutations/removeGiftCardFromCart.js")];case 1:return t=n.sent().default,i=t,s=[r],[4,m()];case 2:return[4,i.apply(void 0,s.concat([n.sent()]))];case 3:return e=n.sent(),o=e.data?u(e.data):null,[2,new a(o||null,e.graphQLErrors)]}}))}))}function d(r){return t(this,void 0,void 0,(function(){var t,e,i,s,o;return n(this,(function(n){switch(n.label){case 0:return[4,import("../../__api/mutations/saveCartCouponCode.js")];case 1:return t=n.sent().default,i=t,s=[r],[4,m()];case 2:return[4,i.apply(void 0,s.concat([n.sent()]))];case 3:return e=n.sent(),o=e.data?u(e.data):null,[2,new a(o||null,e.graphQLErrors)]}}))}))}function f(r){return t(this,void 0,void 0,(function(){var t,e,i,s,o;return n(this,(function(n){switch(n.label){case 0:return[4,import("../../__api/mutations/useLoyaltyPoints.js")];case 1:return t=n.sent().default,i=t,s=[r],[4,m()];case 2:return[4,i.apply(void 0,s.concat([n.sent()]))];case 3:return e=n.sent(),o=e.data?u(e.data):null,[2,new a(o||null,e.graphQLErrors)]}}))}))}function _(r){return t(this,void 0,void 0,(function(){var t,e,i,s,o;return n(this,(function(n){switch(n.label){case 0:return[4,import("../../__api/mutations/removeLoyaltyPointsFromCart.js")];case 1:return t=n.sent().default,i=t,s=[r],[4,m()];case 2:return[4,i.apply(void 0,s.concat([n.sent()]))];case 3:return e=n.sent(),o=e.data?u(e.data):null,[2,new a(o||null,e.graphQLErrors)]}}))}))}function p(r){return t(this,void 0,void 0,(function(){var t,e,i,s,o;return n(this,(function(n){switch(n.label){case 0:return[4,import("../../__api/mutations/addItemToCart.js")];case 1:return t=n.sent().default,i=t,s=[r],[4,m()];case 2:return[4,i.apply(void 0,s.concat([n.sent()]))];case 3:return e=n.sent(),o=e.data?u(e.data):null,[2,new a(o||null,e.graphQLErrors)]}}))}))}function v(r){return t(this,void 0,void 0,(function(){var t,e,i,s,o;return n(this,(function(n){switch(n.label){case 0:return[4,import("../../__api/mutations/updateCartCampaignOffer.js")];case 1:return t=n.sent().default,i=t,s=[r],[4,m()];case 2:return[4,i.apply(void 0,s.concat([n.sent()]))];case 3:return e=n.sent(),o=e.data?u(e.data):null,[2,new a(o||null,e.graphQLErrors)]}}))}))}function h(r){return t(this,void 0,void 0,(function(){var t,e,i,s,o;return n(this,(function(n){switch(n.label){case 0:return[4,import("../../__api/mutations/createCart.js")];case 1:return t=n.sent().default,i=t,s=[r],[4,m()];case 2:return[4,i.apply(void 0,s.concat([n.sent()]))];case 3:return e=n.sent(),o=e.data?u(e.data):null,[2,new a(o||null,e.graphQLErrors)]}}))}))}function E(r){return t(this,void 0,void 0,(function(){var t;return n(this,(function(n){switch(n.label){case 0:return[4,import("../../__api/mutations/createPayWithIkasSessionUrl.js")];case 1:return[4,(0,n.sent().default)(r)];case 2:return t=n.sent(),[2,new a(t.data?t.data:null,t.graphQLErrors)]}}))}))}function m(){return t(this,void 0,void 0,(function(){var t,e;return n(this,(function(n){switch(n.label){case 0:return[4,import("../../__api/queries/getCartById.js")];case 1:return t=n.sent().ResponseField,e=r(r(["MERCHANT_ID","ORDER_LINE_ITEMS__VARIANT__TAG_IDS","BILLING_ADDRESS__REGION__CREATED_AT","BILLING_ADDRESS__REGION__DELETED","BILLING_ADDRESS__REGION__UPDATED_AT","SHIPPING_ADDRESS__REGION__CREATED_AT","SHIPPING_ADDRESS__REGION__DELETED","SHIPPING_ADDRESS__REGION__UPDATED_AT"],Object.keys(t).filter((function(t){return t.startsWith("CURRENCY_RATES")})),!0),Object.keys(t).filter((function(t){return t.startsWith("ABANDONED_CART_FLOWS")})),!0),[2,Object.entries(t).filter((function(t){var n=t[0];return!e.includes(n)})).map((function(t){return t[1]}))]}}))}))}export{p as addItemToCart,h as createCart,E as createPayWithIkasSessionUrl,o as getCartById,l as removeGiftCardFromCart,_ as removeLoyaltyPointsFromCart,c as saveCart,d as saveCartCouponCode,v as updateCartCampaignOffer,f as useLoyaltyPoints};
|
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,getCartById,removeGiftCardFromCart,removeLoyaltyPointsFromCart,saveCart,saveCartCouponCode,updateCartCampaignOffer,useLoyaltyPoints}from"./api/cart/index.js";export{listCategory}from"./api/category/index.js";export{checkCartStocks,checkStocks,createAdyenBalancePlatformPaymentSession,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,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";
|
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.225",
|
|
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.225",
|
|
21
|
+
"@ikas/storefront-models": "^6.1.0-beta.225",
|
|
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.225",
|
|
38
|
+
"@ikas/storefront-models": "^6.1.0-beta.225",
|
|
39
39
|
"@ikas/fe-api-client": "1.0.30",
|
|
40
40
|
"axios": "^0.26.0",
|
|
41
41
|
"ts-essentials": "^7.0.1"
|