@imtbl/sdk 1.41.3 → 1.42.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.
- package/dist/blockchain_data.js +2 -2
- package/dist/browser/checkout/sdk.js +4 -4
- package/dist/checkout.js +4 -4
- package/dist/config.js +1 -1
- package/dist/index.browser.js +11 -11
- package/dist/index.browser.js.map +1 -1
- package/dist/index.cjs +389 -56
- package/dist/index.js +389 -56
- package/dist/minting_backend.js +2 -2
- package/dist/orderbook.js +1 -1
- package/dist/passport.js +386 -53
- package/dist/webhook.js +1 -1
- package/dist/x.js +3 -3
- package/package.json +1 -1
package/dist/webhook.js
CHANGED
|
@@ -129,7 +129,7 @@ const flattenProperties = (properties) => {
|
|
|
129
129
|
};
|
|
130
130
|
|
|
131
131
|
// WARNING: DO NOT CHANGE THE STRING BELOW. IT GETS REPLACED AT BUILD TIME.
|
|
132
|
-
const SDK_VERSION = '1.
|
|
132
|
+
const SDK_VERSION = '1.42.0';
|
|
133
133
|
const getFrameParentDomain = () => {
|
|
134
134
|
if (isNode()) {
|
|
135
135
|
return '';
|
package/dist/x.js
CHANGED
|
@@ -9004,7 +9004,7 @@ const flattenProperties = (properties) => {
|
|
|
9004
9004
|
};
|
|
9005
9005
|
|
|
9006
9006
|
// WARNING: DO NOT CHANGE THE STRING BELOW. IT GETS REPLACED AT BUILD TIME.
|
|
9007
|
-
const SDK_VERSION = '1.
|
|
9007
|
+
const SDK_VERSION = '1.42.0';
|
|
9008
9008
|
const getFrameParentDomain = () => {
|
|
9009
9009
|
if (isNode()) {
|
|
9010
9010
|
return '';
|
|
@@ -9270,7 +9270,7 @@ const addKeysToHeadersOverride = (baseConfig, overrides) => {
|
|
|
9270
9270
|
/* eslint-disable @typescript-eslint/naming-convention */
|
|
9271
9271
|
class ApiConfiguration extends index$2.Configuration {
|
|
9272
9272
|
}
|
|
9273
|
-
const defaultHeaders = { 'x-sdk-version': 'ts-immutable-sdk-1.
|
|
9273
|
+
const defaultHeaders = { 'x-sdk-version': 'ts-immutable-sdk-1.42.0' };
|
|
9274
9274
|
/**
|
|
9275
9275
|
* @dev use createImmutableXConfiguration instead
|
|
9276
9276
|
*/
|
|
@@ -9311,7 +9311,7 @@ const createImmutableXConfiguration = ({ basePath, chainID, coreContractAddress,
|
|
|
9311
9311
|
coreContractAddress,
|
|
9312
9312
|
registrationContractAddress,
|
|
9313
9313
|
registrationV4ContractAddress,
|
|
9314
|
-
sdkVersion: 'ts-immutable-sdk-1.
|
|
9314
|
+
sdkVersion: 'ts-immutable-sdk-1.42.0',
|
|
9315
9315
|
baseConfig,
|
|
9316
9316
|
});
|
|
9317
9317
|
const production = ({ baseConfig }) => createImmutableXConfiguration({
|
package/package.json
CHANGED