@jetshop/core 5.16.3 → 5.16.4
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/package.json +1 -1
- package/polyfills.js +1 -1
- package/polyfills.js.map +1 -1
- package/types.d.ts +10 -1
package/package.json
CHANGED
package/polyfills.js
CHANGED
@@ -33,6 +33,6 @@ export const createPolyfill = (locale) => {
|
|
33
33
|
window.polyFillsLoaded = true;
|
34
34
|
};
|
35
35
|
</script>
|
36
|
-
<script async defer src="https://
|
36
|
+
<script async defer src="https://polyfill-fastly.io/v3/polyfill${process.env.NODE_ENV === 'production' ? '.min' : ''}.js?callback=bootShop&features=${features}&flags=gated"></script>`;
|
37
37
|
};
|
38
38
|
//# sourceMappingURL=polyfills.js.map
|
package/polyfills.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"polyfills.js","sourceRoot":"","sources":["polyfills.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAElC,SAAS,EAAE,CAAC;AAEZ,MAAM,SAAS,GAAG,CAAC,MAAc,EAAE,EAAE,CAAC;IACpC,KAAK;IACL,eAAe;IACf,gBAAgB;IAChB,aAAa;IACb,eAAe;IACf,sBAAsB;IACtB,2BAA2B;IAC3B,yBAAyB;IACzB,0BAA0B;IAC1B,sBAAsB;IACtB,YAAY;IACZ,sBAAsB;IACtB,2BAA2B;IAC3B,6BAA6B;IAC7B,KAAK;IACL,sBAAsB;IACtB,gBAAgB,MAAM,EAAE;IACxB,SAAS;IACT,OAAO;IACP,QAAQ;IACR,gBAAgB;CACjB,CAAC;AAEF,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,MAAc,EAAE,EAAE;IAC/C,MAAM,QAAQ,GAAG,SAAS,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;IAC7C,6YAA6Y;IAC7Y,OAAO;;;;;;;
|
1
|
+
{"version":3,"file":"polyfills.js","sourceRoot":"","sources":["polyfills.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAElC,SAAS,EAAE,CAAC;AAEZ,MAAM,SAAS,GAAG,CAAC,MAAc,EAAE,EAAE,CAAC;IACpC,KAAK;IACL,eAAe;IACf,gBAAgB;IAChB,aAAa;IACb,eAAe;IACf,sBAAsB;IACtB,2BAA2B;IAC3B,yBAAyB;IACzB,0BAA0B;IAC1B,sBAAsB;IACtB,YAAY;IACZ,sBAAsB;IACtB,2BAA2B;IAC3B,6BAA6B;IAC7B,KAAK;IACL,sBAAsB;IACtB,gBAAgB,MAAM,EAAE;IACxB,SAAS;IACT,OAAO;IACP,QAAQ;IACR,gBAAgB;CACjB,CAAC;AAEF,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,MAAc,EAAE,EAAE;IAC/C,MAAM,QAAQ,GAAG,SAAS,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;IAC7C,6YAA6Y;IAC7Y,OAAO;;;;;;;mEAQL,OAAO,CAAC,GAAG,CAAC,QAAQ,KAAK,YAAY,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EACnD,kCAAkC,QAAQ,yBAAyB,CAAC;AACtE,CAAC,CAAC"}
|
package/types.d.ts
CHANGED
@@ -674,6 +674,7 @@ export type CustomerUpdateExternalAttribute = {
|
|
674
674
|
|
675
675
|
export type CustomerUpdateInput = {
|
676
676
|
pid?: Maybe<Scalars['String']>;
|
677
|
+
emailAddress?: Maybe<Scalars['String']>;
|
677
678
|
organizationNumber?: Maybe<Scalars['String']>;
|
678
679
|
billingAddress: CustomerUpdateBillingAddressInput;
|
679
680
|
deliveryAddresses?: Maybe<Array<Maybe<CustomerUpdateDeliveryAddressInput>>>;
|
@@ -977,6 +978,7 @@ export type LoginExternalCustomerResult = {
|
|
977
978
|
export type LoginResponse = {
|
978
979
|
__typename?: 'LoginResponse';
|
979
980
|
token: Token;
|
981
|
+
customerId?: Maybe<Scalars['Int']>;
|
980
982
|
};
|
981
983
|
|
982
984
|
export type MaskedProperty = {
|
@@ -1157,7 +1159,7 @@ export type Mutation = {
|
|
1157
1159
|
*/
|
1158
1160
|
updateCustomerGroup?: Maybe<UpdateCustomerGroupResult>;
|
1159
1161
|
/**
|
1160
|
-
* This mutation's purpose is to update
|
1162
|
+
* This mutation's purpose is to update an existing customer's information. An
|
1161
1163
|
* authorization token is needed in the request, in order to be able to update the customer.
|
1162
1164
|
*/
|
1163
1165
|
updateCustomer?: Maybe<CustomerUpdateResponse>;
|
@@ -1279,6 +1281,7 @@ export type MutationLoginArgs = {
|
|
1279
1281
|
externalHashId?: Maybe<Scalars['String']>;
|
1280
1282
|
timeStamp?: Maybe<Scalars['String']>;
|
1281
1283
|
customerId?: Maybe<Scalars['Int']>;
|
1284
|
+
cartId?: Maybe<Scalars['String']>;
|
1282
1285
|
};
|
1283
1286
|
|
1284
1287
|
|
@@ -2605,6 +2608,12 @@ export type Tracking = {
|
|
2605
2608
|
ga4?: Maybe<GoogleAnalytics4>;
|
2606
2609
|
gtm?: Maybe<GoogleTagManager>;
|
2607
2610
|
fca?: Maybe<FacebookConversionsApi>;
|
2611
|
+
trackingConsents?: Maybe<TrackingConsents>;
|
2612
|
+
};
|
2613
|
+
|
2614
|
+
export type TrackingConsents = {
|
2615
|
+
__typename?: 'TrackingConsents';
|
2616
|
+
useTrackingConsentApi?: Maybe<Scalars['Boolean']>;
|
2608
2617
|
};
|
2609
2618
|
|
2610
2619
|
export type UpdateCartInput = {
|