@adobe/alloy 2.30.1-beta.16 → 2.30.1-beta.17

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.
Files changed (45) hide show
  1. package/libEs5/components/Advertising/handlers/onBeforeSendEventHandler.js +8 -2
  2. package/libEs5/components/Advertising/handlers/viewThroughHandler.js +8 -2
  3. package/libEs5/components/Advertising/identities/collectSurferId.js +8 -1
  4. package/libEs5/components/Consent/types.js +12 -0
  5. package/libEs5/components/EventMerge/createEventMergeId.js +1 -1
  6. package/libEs5/components/Personalization/index.js +1 -1
  7. package/libEs5/components/PushNotifications/types.js +12 -0
  8. package/libEs5/components/RulesEngine/types.js +12 -0
  9. package/libEs5/constants/libraryVersion.js +1 -1
  10. package/libEs5/core/consent/types.js +12 -0
  11. package/libEs5/core/edgeNetwork/types.js +12 -0
  12. package/libEs5/core/identity/types.js +12 -0
  13. package/libEs5/core/types.js +12 -0
  14. package/libEs5/utils/request/types.js +12 -0
  15. package/libEs5/utils/types.js +12 -0
  16. package/libEs6/components/Advertising/handlers/onBeforeSendEventHandler.js +8 -2
  17. package/libEs6/components/Advertising/handlers/viewThroughHandler.js +8 -2
  18. package/libEs6/components/Advertising/identities/collectSurferId.js +8 -1
  19. package/libEs6/components/Consent/types.js +12 -0
  20. package/libEs6/components/EventMerge/createEventMergeId.js +1 -1
  21. package/libEs6/components/Personalization/index.js +1 -1
  22. package/libEs6/components/PushNotifications/types.js +12 -0
  23. package/libEs6/components/RulesEngine/types.js +12 -0
  24. package/libEs6/constants/libraryVersion.js +1 -1
  25. package/libEs6/core/consent/types.js +12 -0
  26. package/libEs6/core/edgeNetwork/types.js +12 -0
  27. package/libEs6/core/identity/types.js +12 -0
  28. package/libEs6/core/types.js +12 -0
  29. package/libEs6/utils/request/types.js +12 -0
  30. package/libEs6/utils/types.js +12 -0
  31. package/package.json +2 -5
  32. package/scripts/helpers/path.js +12 -0
  33. package/scripts/helpers/versionBabelPlugin.js +12 -0
  34. package/types/components/Advertising/handlers/onBeforeSendEventHandler.d.ts.map +1 -1
  35. package/types/components/Advertising/handlers/viewThroughHandler.d.ts.map +1 -1
  36. package/types/components/Advertising/identities/collectSurferId.d.ts.map +1 -1
  37. package/types/components/Consent/types.d.ts.map +1 -1
  38. package/types/components/PushNotifications/types.d.ts.map +1 -1
  39. package/types/components/RulesEngine/types.d.ts.map +1 -1
  40. package/types/core/consent/types.d.ts.map +1 -1
  41. package/types/core/edgeNetwork/types.d.ts.map +1 -1
  42. package/types/core/identity/types.d.ts.map +1 -1
  43. package/types/core/types.d.ts.map +1 -1
  44. package/types/utils/request/types.d.ts.map +1 -1
  45. package/types/utils/types.d.ts.map +1 -1
@@ -10,8 +10,14 @@ var _consentStatus = require("../../../constants/consentStatus.js");
10
10
  var _browser = require("../../../constants/browser.js");
11
11
  /*
12
12
  Copyright 2023 Adobe. All rights reserved.
13
- Licensed under the Apache License, Version 2.0.
14
- http://www.apache.org/licenses/LICENSE-2.0
13
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
14
+ you may not use this file except in compliance with the License. You may obtain a copy
15
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
16
+
17
+ Unless required by applicable law or agreed to in writing, software distributed under
18
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
19
+ OF ANY KIND, either express or implied. See the License for the specific language
20
+ governing permissions and limitations under the License.
15
21
  */
16
22
 
17
23
  const isAdvertisingDisabled = advertising => {
@@ -6,8 +6,14 @@ var _index = require("../constants/index.js");
6
6
  var _helpers = require("../utils/helpers.js");
7
7
  /*
8
8
  Copyright 2025 Adobe. All rights reserved.
9
- Licensed under the Apache License, Version 2.0.
10
- http://www.apache.org/licenses/LICENSE-2.0
9
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
10
+ you may not use this file except in compliance with the License. You may obtain a copy
11
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
12
+
13
+ Unless required by applicable law or agreed to in writing, software distributed under
14
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
15
+ OF ANY KIND, either express or implied. See the License for the specific language
16
+ governing permissions and limitations under the License.
11
17
  */
12
18
 
13
19
  async function handleViewThrough({
@@ -6,7 +6,14 @@ var _createNode = require("../../../utils/dom/createNode.js");
6
6
  var _index2 = require("../../../utils/index.js");
7
7
  /*
8
8
  Copyright 2025 Adobe. All rights reserved.
9
- This file is licensed under the Apache License, Version 2.0.
9
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
10
+ you may not use this file except in compliance with the License. You may obtain a copy
11
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
12
+
13
+ Unless required by applicable law or agreed to in writing, software distributed under
14
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
15
+ OF ANY KIND, either express or implied. See the License for the specific language
16
+ governing permissions and limitations under the License.
10
17
  */
11
18
 
12
19
  let surferId = "";
@@ -1,6 +1,18 @@
1
1
  "use strict";
2
2
 
3
3
  exports.Types = void 0;
4
+ /*
5
+ Copyright 2025 Adobe. All rights reserved.
6
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
7
+ you may not use this file except in compliance with the License. You may obtain a copy
8
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software distributed under
11
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
12
+ OF ANY KIND, either express or implied. See the License for the specific language
13
+ governing permissions and limitations under the License.
14
+ */
15
+
4
16
  /**
5
17
  * Request payload object with methods for merging different types of data.
6
18
  *
@@ -3,7 +3,7 @@
3
3
  exports.default = void 0;
4
4
  var _index = require("../../utils/index.js");
5
5
  /*
6
- Copyright 20219 Adobe. All rights reserved.
6
+ Copyright 2025 Adobe. All rights reserved.
7
7
  This file is licensed to you under the Apache License, Version 2.0 (the "License");
8
8
  you may not use this file except in compliance with the License. You may obtain a copy
9
9
  of the License at http://www.apache.org/licenses/LICENSE-2.0
@@ -40,7 +40,7 @@ var _collectInteractions = require("./dom-actions/clicks/collectInteractions.js"
40
40
  var _propositionInteractionType = require("../../constants/propositionInteractionType.js");
41
41
  var _decisionProvider = require("../../constants/decisionProvider.js");
42
42
  /*
43
- Copyright 2019 Adobe. Ackll rights reserved.
43
+ Copyright 2025 Adobe. All rights reserved.
44
44
  This file is licensed to you under the Apache License, Version 2.0 (the "License");
45
45
  you may not use this file except in compliance with the License. You may obtain a copy
46
46
  of the License at http://www.apache.org/licenses/LICENSE-2.0
@@ -1,6 +1,18 @@
1
1
  "use strict";
2
2
 
3
3
  exports.Types = void 0;
4
+ /*
5
+ Copyright 2025 Adobe. All rights reserved.
6
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
7
+ you may not use this file except in compliance with the License. You may obtain a copy
8
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software distributed under
11
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
12
+ OF ANY KIND, either express or implied. See the License for the specific language
13
+ governing permissions and limitations under the License.
14
+ */
15
+
4
16
  /** @import { Identity } from '../../utils/request/types.js' */
5
17
 
6
18
  /**
@@ -1,6 +1,18 @@
1
1
  "use strict";
2
2
 
3
3
  exports.Types = void 0;
4
+ /*
5
+ Copyright 2025 Adobe. All rights reserved.
6
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
7
+ you may not use this file except in compliance with the License. You may obtain a copy
8
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software distributed under
11
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
12
+ OF ANY KIND, either express or implied. See the License for the specific language
13
+ governing permissions and limitations under the License.
14
+ */
15
+
4
16
  /**
5
17
  * @typedef {Record<string, EventRecord>} EventRegistry
6
18
  */
@@ -14,4 +14,4 @@ governing permissions and limitations under the License.
14
14
  */
15
15
  // The __VERSION__ keyword will be replace at alloy build time with the package.json version.
16
16
  // see babel-plugin-version
17
- var _default = exports.default = "2.30.1-beta.16";
17
+ var _default = exports.default = "2.30.1-beta.17";
@@ -1,6 +1,18 @@
1
1
  "use strict";
2
2
 
3
3
  exports.Types = void 0;
4
+ /*
5
+ Copyright 2025 Adobe. All rights reserved.
6
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
7
+ you may not use this file except in compliance with the License. You may obtain a copy
8
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software distributed under
11
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
12
+ OF ANY KIND, either express or implied. See the License for the specific language
13
+ governing permissions and limitations under the License.
14
+ */
15
+
4
16
  /**
5
17
  * @typedef {Object} ConsentStateMachine
6
18
  * @property {function(string): void} in
@@ -1,6 +1,18 @@
1
1
  "use strict";
2
2
 
3
3
  exports.Types = void 0;
4
+ /*
5
+ Copyright 2025 Adobe. All rights reserved.
6
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
7
+ you may not use this file except in compliance with the License. You may obtain a copy
8
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software distributed under
11
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
12
+ OF ANY KIND, either express or implied. See the License for the specific language
13
+ governing permissions and limitations under the License.
14
+ */
15
+
4
16
  /** @import { Request } from '../../utils/request/types.js' */
5
17
 
6
18
  /**
@@ -1,6 +1,18 @@
1
1
  "use strict";
2
2
 
3
3
  exports.Types = void 0;
4
+ /*
5
+ Copyright 2025 Adobe. All rights reserved.
6
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
7
+ you may not use this file except in compliance with the License. You may obtain a copy
8
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software distributed under
11
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
12
+ OF ANY KIND, either express or implied. See the License for the specific language
13
+ governing permissions and limitations under the License.
14
+ */
15
+
4
16
  /** @import { Logger } from '../../core/types.js' */
5
17
  /** @import { CookieJar } from '../../utils/types.js' */
6
18
 
@@ -1,6 +1,18 @@
1
1
  "use strict";
2
2
 
3
3
  exports.Types = void 0;
4
+ /*
5
+ Copyright 2025 Adobe. All rights reserved.
6
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
7
+ you may not use this file except in compliance with the License. You may obtain a copy
8
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software distributed under
11
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
12
+ OF ANY KIND, either express or implied. See the License for the specific language
13
+ governing permissions and limitations under the License.
14
+ */
15
+
4
16
  /**
5
17
  * @typedef {object} AlloyMonitor
6
18
  * @property {function(any): void} [onBeforeLog]
@@ -1,6 +1,18 @@
1
1
  "use strict";
2
2
 
3
3
  exports.Types = void 0;
4
+ /*
5
+ Copyright 2025 Adobe. All rights reserved.
6
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
7
+ you may not use this file except in compliance with the License. You may obtain a copy
8
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software distributed under
11
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
12
+ OF ANY KIND, either express or implied. See the License for the specific language
13
+ governing permissions and limitations under the License.
14
+ */
15
+
4
16
  /**
5
17
  * Request object with methods to access and modify request properties.
6
18
  *
@@ -1,6 +1,18 @@
1
1
  "use strict";
2
2
 
3
3
  exports.Types = void 0;
4
+ /*
5
+ Copyright 2025 Adobe. All rights reserved.
6
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
7
+ you may not use this file except in compliance with the License. You may obtain a copy
8
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software distributed under
11
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
12
+ OF ANY KIND, either express or implied. See the License for the specific language
13
+ governing permissions and limitations under the License.
14
+ */
15
+
4
16
  /**
5
17
  * @typedef {Object} Storage
6
18
  * @property {function(string): string|null} getItem
@@ -1,7 +1,13 @@
1
1
  /*
2
2
  Copyright 2023 Adobe. All rights reserved.
3
- Licensed under the Apache License, Version 2.0.
4
- http://www.apache.org/licenses/LICENSE-2.0
3
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License. You may obtain a copy
5
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software distributed under
8
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
+ OF ANY KIND, either express or implied. See the License for the specific language
10
+ governing permissions and limitations under the License.
5
11
  */
6
12
 
7
13
  import collectSurferId from "../identities/collectSurferId.js";
@@ -1,7 +1,13 @@
1
1
  /*
2
2
  Copyright 2025 Adobe. All rights reserved.
3
- Licensed under the Apache License, Version 2.0.
4
- http://www.apache.org/licenses/LICENSE-2.0
3
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License. You may obtain a copy
5
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software distributed under
8
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
+ OF ANY KIND, either express or implied. See the License for the specific language
10
+ governing permissions and limitations under the License.
5
11
  */
6
12
 
7
13
  import collectAllIdentities from "../identities/collectAllIdentities.js";
@@ -1,6 +1,13 @@
1
1
  /*
2
2
  Copyright 2025 Adobe. All rights reserved.
3
- This file is licensed under the Apache License, Version 2.0.
3
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License. You may obtain a copy
5
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software distributed under
8
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
+ OF ANY KIND, either express or implied. See the License for the specific language
10
+ governing permissions and limitations under the License.
4
11
  */
5
12
 
6
13
  import { DISPLAY_CLICK_COOKIE_KEY, SURFER_ID, SURFER_PIXEL_HOST, SURFER_USER_ID, SURFER_TIMEOUT_MS, SURFER_TRUSTED_ORIGIN, SURFER_PARAM_KEY, DISPLAY_CLICK_COOKIE_KEY_EXPIRES } from "../constants/index.js";
@@ -1,3 +1,15 @@
1
+ /*
2
+ Copyright 2025 Adobe. All rights reserved.
3
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License. You may obtain a copy
5
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software distributed under
8
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
+ OF ANY KIND, either express or implied. See the License for the specific language
10
+ governing permissions and limitations under the License.
11
+ */
12
+
1
13
  /**
2
14
  * Request payload object with methods for merging different types of data.
3
15
  *
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright 20219 Adobe. All rights reserved.
2
+ Copyright 2025 Adobe. All rights reserved.
3
3
  This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
4
  you may not use this file except in compliance with the License. You may obtain a copy
5
5
  of the License at http://www.apache.org/licenses/LICENSE-2.0
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright 2019 Adobe. Ackll rights reserved.
2
+ Copyright 2025 Adobe. All rights reserved.
3
3
  This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
4
  you may not use this file except in compliance with the License. You may obtain a copy
5
5
  of the License at http://www.apache.org/licenses/LICENSE-2.0
@@ -1,3 +1,15 @@
1
+ /*
2
+ Copyright 2025 Adobe. All rights reserved.
3
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License. You may obtain a copy
5
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software distributed under
8
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
+ OF ANY KIND, either express or implied. See the License for the specific language
10
+ governing permissions and limitations under the License.
11
+ */
12
+
1
13
  /** @import { Identity } from '../../utils/request/types.js' */
2
14
 
3
15
  /**
@@ -1,3 +1,15 @@
1
+ /*
2
+ Copyright 2025 Adobe. All rights reserved.
3
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License. You may obtain a copy
5
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software distributed under
8
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
+ OF ANY KIND, either express or implied. See the License for the specific language
10
+ governing permissions and limitations under the License.
11
+ */
12
+
1
13
  /**
2
14
  * @typedef {Record<string, EventRecord>} EventRegistry
3
15
  */
@@ -13,4 +13,4 @@ governing permissions and limitations under the License.
13
13
  // The __VERSION__ keyword will be replace at alloy build time with the package.json version.
14
14
  // see babel-plugin-version
15
15
 
16
- export default "2.30.1-beta.16";
16
+ export default "2.30.1-beta.17";
@@ -1,3 +1,15 @@
1
+ /*
2
+ Copyright 2025 Adobe. All rights reserved.
3
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License. You may obtain a copy
5
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software distributed under
8
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
+ OF ANY KIND, either express or implied. See the License for the specific language
10
+ governing permissions and limitations under the License.
11
+ */
12
+
1
13
  /**
2
14
  * @typedef {Object} ConsentStateMachine
3
15
  * @property {function(string): void} in
@@ -1,3 +1,15 @@
1
+ /*
2
+ Copyright 2025 Adobe. All rights reserved.
3
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License. You may obtain a copy
5
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software distributed under
8
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
+ OF ANY KIND, either express or implied. See the License for the specific language
10
+ governing permissions and limitations under the License.
11
+ */
12
+
1
13
  /** @import { Request } from '../../utils/request/types.js' */
2
14
 
3
15
  /**
@@ -1,3 +1,15 @@
1
+ /*
2
+ Copyright 2025 Adobe. All rights reserved.
3
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License. You may obtain a copy
5
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software distributed under
8
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
+ OF ANY KIND, either express or implied. See the License for the specific language
10
+ governing permissions and limitations under the License.
11
+ */
12
+
1
13
  /** @import { Logger } from '../../core/types.js' */
2
14
  /** @import { CookieJar } from '../../utils/types.js' */
3
15
 
@@ -1,3 +1,15 @@
1
+ /*
2
+ Copyright 2025 Adobe. All rights reserved.
3
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License. You may obtain a copy
5
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software distributed under
8
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
+ OF ANY KIND, either express or implied. See the License for the specific language
10
+ governing permissions and limitations under the License.
11
+ */
12
+
1
13
  /**
2
14
  * @typedef {object} AlloyMonitor
3
15
  * @property {function(any): void} [onBeforeLog]
@@ -1,3 +1,15 @@
1
+ /*
2
+ Copyright 2025 Adobe. All rights reserved.
3
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License. You may obtain a copy
5
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software distributed under
8
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
+ OF ANY KIND, either express or implied. See the License for the specific language
10
+ governing permissions and limitations under the License.
11
+ */
12
+
1
13
  /**
2
14
  * Request object with methods to access and modify request properties.
3
15
  *
@@ -1,3 +1,15 @@
1
+ /*
2
+ Copyright 2025 Adobe. All rights reserved.
3
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License. You may obtain a copy
5
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software distributed under
8
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
+ OF ANY KIND, either express or implied. See the License for the specific language
10
+ governing permissions and limitations under the License.
11
+ */
12
+
1
13
  /**
2
14
  * @typedef {Object} Storage
3
15
  * @property {function(string): string|null} getItem
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/alloy",
3
- "version": "2.30.1-beta.16",
3
+ "version": "2.30.1-beta.17",
4
4
  "description": "Adobe Experience Platform Web SDK",
5
5
  "type": "module",
6
6
  "main": "libEs5/index.js",
@@ -49,8 +49,7 @@
49
49
  "build:custom": "node scripts/alloyBuilder.js",
50
50
  "prepare": "husky",
51
51
  "prepack": "pnpm run clean && babel packages/core/src -d libEs5 --env-name npmEs5 && babel packages/core/src -d libEs6 --env-name npmEs6 && echo '{\"type\":\"commonjs\"}' > libEs5/package.json && echo '{\"type\":\"module\"}' > libEs6/package.json && pnpm run types",
52
- "checkthattestfilesexist": "./scripts/checkThatTestFilesExist.js",
53
- "add-license": "./scripts/add-license.js"
52
+ "checkthattestfilesexist": "./scripts/checkThatTestFilesExist.js"
54
53
  },
55
54
  "lint-staged": {
56
55
  "./*.{cjs,mjs,js,jsx}": [
@@ -110,7 +109,6 @@
110
109
  "eslint-plugin-react": "^7.37.5",
111
110
  "glob": "^11.0.3",
112
111
  "globals": "^16.5.0",
113
- "handlebars": "^4.7.8",
114
112
  "husky": "^9.1.7",
115
113
  "lint-staged": "^16.2.6",
116
114
  "minimatch": "^10.1.1",
@@ -121,7 +119,6 @@
121
119
  "recursive-readdir": "^2.2.3",
122
120
  "rimraf": "^6.1.0",
123
121
  "semver": "^7.7.3",
124
- "staged-git-files": "^1.3.0",
125
122
  "testcafe": "^3.7.2",
126
123
  "testcafe-browser-provider-playwright": "^1.1.0",
127
124
  "typescript": "^5.9.3",
@@ -1,3 +1,15 @@
1
+ /*
2
+ Copyright 2025 Adobe. All rights reserved.
3
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License. You may obtain a copy
5
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software distributed under
8
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
+ OF ANY KIND, either express or implied. See the License for the specific language
10
+ governing permissions and limitations under the License.
11
+ */
12
+
1
13
  import path from "path";
2
14
  import process from "process";
3
15
  import { fileURLToPath } from "url";
@@ -1,3 +1,15 @@
1
+ /*
2
+ Copyright 2025 Adobe. All rights reserved.
3
+ This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License. You may obtain a copy
5
+ of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software distributed under
8
+ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
+ OF ANY KIND, either express or implied. See the License for the specific language
10
+ governing permissions and limitations under the License.
11
+ */
12
+
1
13
  import { createRequire } from "module";
2
14
 
3
15
  const require = createRequire(import.meta.url);
@@ -1 +1 @@
1
- {"version":3,"file":"onBeforeSendEventHandler.d.ts","sourceRoot":"","sources":["../../../../packages/core/src/components/Advertising/handlers/onBeforeSendEventHandler.js"],"names":[],"mappings":"AA4BA;;;;;;;;;;GAUG;AACH,6HARG;IAAuB,aAAa;IACb,MAAM;IACN,KAAK;IACL,KAAK;IACL,eAAe;IACf,WAAW;IACT,UAAU;CACrC,iBAsFA"}
1
+ {"version":3,"file":"onBeforeSendEventHandler.d.ts","sourceRoot":"","sources":["../../../../packages/core/src/components/Advertising/handlers/onBeforeSendEventHandler.js"],"names":[],"mappings":"AAkCA;;;;;;;;;;GAUG;AACH,6HARG;IAAuB,aAAa;IACb,MAAM;IACN,KAAK;IACL,KAAK;IACL,eAAe;IACf,WAAW;IACT,UAAU;CACrC,iBAsFA"}
@@ -1 +1 @@
1
- {"version":3,"file":"viewThroughHandler.d.ts","sourceRoot":"","sources":["../../../../packages/core/src/components/Advertising/handlers/viewThroughHandler.js"],"names":[],"mappings":"AAkBA;;;;;;;yCAiEC"}
1
+ {"version":3,"file":"viewThroughHandler.d.ts","sourceRoot":"","sources":["../../../../packages/core/src/components/Advertising/handlers/viewThroughHandler.js"],"names":[],"mappings":"AAwBA;;;;;;;yCAiEC"}
@@ -1 +1 @@
1
- {"version":3,"file":"collectSurferId.d.ts","sourceRoot":"","sources":["../../../../packages/core/src/components/Advertising/identities/collectSurferId.js"],"names":[],"mappings":";AAwIA,oHA+CC"}
1
+ {"version":3,"file":"collectSurferId.d.ts","sourceRoot":"","sources":["../../../../packages/core/src/components/Advertising/identities/collectSurferId.js"],"names":[],"mappings":";AA+IA,oHA+CC"}
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../packages/core/src/components/Consent/types.js"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH,uBAAwB"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../packages/core/src/components/Consent/types.js"],"names":[],"mappings":"AAYA;;;;;;;;;;;;GAYG;AAEH,uBAAwB"}
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../packages/core/src/components/PushNotifications/types.js"],"names":[],"mappings":"AAAA,+DAA+D;AAE/D;;;;;;GAMG;AAEH;;;;;;;;;;;;;;GAcG;AAEH;;;;;GAKG;AAEH;;;;;GAKG;AAEH;;;;;;;;;;;;;;;;;GAiBG;AAEH;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AAEH;;;;;GAKG;AAEH,uBAAwB;;;;;cAvFV,MAAM;;;;UAEjB;QAA6B,MAAM,EAAxB,MAAM,GAAC,IAAI;QACO,IAAI,EAAtB,MAAM,GAAC,IAAI;KACxB;;;sBAKE;QAAoC,kBAAkB,EAA3C,MAAM;QACmB,SAAS,EAAlC,MAAM;QACmB,WAAW,EAApC,MAAM;QACmB,UAAU,EAAnC,MAAM;QACmB,iBAAiB,EAA1C,MAAM;QACmB,eAAe,EAAxC,MAAM;KACjB;yBACA;QAAsC,QAAQ,GAAnC,KAAK;KAChB;qBACA;QAAmC,OAAO,GAC1C;YAA2C,GAAG,GAAnC,MAAM;SAA8B;KAAA;;;kBAM/C;QAAkC,YAAY,EAC9C;YAA+C,aAAa,EAAjD,MAAM;SACnB;KAAA;;;iBAKE;QAAkD,yBAAyB,EAAhE,yBAAyB;QACA,WAAW,EAApC,WAAW;KACxB;;;SAKE;QAAuB,KAAK,EAAjB,MAAM;QACM,IAAI,EAAhB,MAAM;QACW,KAAK,EAAtB,MAAM,GAAC,IAAI;QACC,WAAW,EAClC;YAAmC,IAAI,EAA5B,MAAM;YACuB,GAAG,EAAhC,MAAM,GAAC,IAAI;SACtB;QAAuB,OAAO,EAC9B;YAAiC,OAAO,EACxC;gBAAyC,KAAK,EAAnC,MAAM;gBACwB,IAAI,EAAlC,MAAM;gBACwB,GAAG,EAAjC,MAAM;aACjB;SAAA;QAAuB,QAAQ,EAApB,MAAM;QACM,IAAI,EAC3B;YAAwC,MAAM,EAAnC,kBAAkB;SAC/B;KAAA;;;YAKE;QAA4B,GAAG,EAC/B;YAAgC,WAAW,EAC3C;gBAA8C,IAAI,EAClD;oBAAmD,EAAE,EAA1C,MAAM;iBACjB;aAAA;YAAgC,SAAS,EAA9B,MAAM;YACe,wBAAwB,EACxD;gBAAyD,qBAAqB,EAAnE,MAAM;gBACwC,YAAY,EAA1D,MAAM;gBACyC,YAAY,GACtE;oBAAuE,QAAQ,GAApE,MAAM;iBACjB;aAAA;YAAgC,WAAW,EAC3C;gBAA4C,QAAQ,EACpD;oBAAqD,KAAK,EAA/C,MAAM;iBACjB;aAAA;YAAgC,SAAS,EAA9B,MAAM;YACe,WAAW,EAC3C;gBAA+D,yBAAyB,EAA7E,yBAAyB;gBACa,WAAW,EAAjD,WAAW;aACtB;SAAA;QAA4B,IAAI,EAChC;YAAiC,OAAO,EACxC;gBAAyC,SAAS,EAAvC,MAAM;aACnB;SAAA;KAAA;;;eAIa,MAAM;UACN,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI;WACxB,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../packages/core/src/components/PushNotifications/types.js"],"names":[],"mappings":"AAYA,+DAA+D;AAE/D;;;;;;GAMG;AAEH;;;;;;;;;;;;;;GAcG;AAEH;;;;;GAKG;AAEH;;;;;GAKG;AAEH;;;;;;;;;;;;;;;;;GAiBG;AAEH;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AAEH;;;;;GAKG;AAEH,uBAAwB;;;;;cAvFV,MAAM;;;;UAEjB;QAA6B,MAAM,EAAxB,MAAM,GAAC,IAAI;QACO,IAAI,EAAtB,MAAM,GAAC,IAAI;KACxB;;;sBAKE;QAAoC,kBAAkB,EAA3C,MAAM;QACmB,SAAS,EAAlC,MAAM;QACmB,WAAW,EAApC,MAAM;QACmB,UAAU,EAAnC,MAAM;QACmB,iBAAiB,EAA1C,MAAM;QACmB,eAAe,EAAxC,MAAM;KACjB;yBACA;QAAsC,QAAQ,GAAnC,KAAK;KAChB;qBACA;QAAmC,OAAO,GAC1C;YAA2C,GAAG,GAAnC,MAAM;SAA8B;KAAA;;;kBAM/C;QAAkC,YAAY,EAC9C;YAA+C,aAAa,EAAjD,MAAM;SACnB;KAAA;;;iBAKE;QAAkD,yBAAyB,EAAhE,yBAAyB;QACA,WAAW,EAApC,WAAW;KACxB;;;SAKE;QAAuB,KAAK,EAAjB,MAAM;QACM,IAAI,EAAhB,MAAM;QACW,KAAK,EAAtB,MAAM,GAAC,IAAI;QACC,WAAW,EAClC;YAAmC,IAAI,EAA5B,MAAM;YACuB,GAAG,EAAhC,MAAM,GAAC,IAAI;SACtB;QAAuB,OAAO,EAC9B;YAAiC,OAAO,EACxC;gBAAyC,KAAK,EAAnC,MAAM;gBACwB,IAAI,EAAlC,MAAM;gBACwB,GAAG,EAAjC,MAAM;aACjB;SAAA;QAAuB,QAAQ,EAApB,MAAM;QACM,IAAI,EAC3B;YAAwC,MAAM,EAAnC,kBAAkB;SAC/B;KAAA;;;YAKE;QAA4B,GAAG,EAC/B;YAAgC,WAAW,EAC3C;gBAA8C,IAAI,EAClD;oBAAmD,EAAE,EAA1C,MAAM;iBACjB;aAAA;YAAgC,SAAS,EAA9B,MAAM;YACe,wBAAwB,EACxD;gBAAyD,qBAAqB,EAAnE,MAAM;gBACwC,YAAY,EAA1D,MAAM;gBACyC,YAAY,GACtE;oBAAuE,QAAQ,GAApE,MAAM;iBACjB;aAAA;YAAgC,WAAW,EAC3C;gBAA4C,QAAQ,EACpD;oBAAqD,KAAK,EAA/C,MAAM;iBACjB;aAAA;YAAgC,SAAS,EAA9B,MAAM;YACe,WAAW,EAC3C;gBAA+D,yBAAyB,EAA7E,yBAAyB;gBACa,WAAW,EAAjD,WAAW;aACtB;SAAA;QAA4B,IAAI,EAChC;YAAiC,OAAO,EACxC;gBAAyC,SAAS,EAAvC,MAAM;aACnB;SAAA;KAAA;;;eAIa,MAAM;UACN,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI;WACxB,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI"}
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../packages/core/src/components/RulesEngine/types.js"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;;GAIG;AAEH;;;;;GAKG;AAEH;;;GAGG;AAEH;;GAEG;AAEH;;;;;;GAMG;AAEH;;;;;;;GAOG;AAEH;;;GAGG;AAEH;;;;;GAKG;AAEH;;;;;GAKG;AAEH;;;;;GAKG;AAEH;;;;GAIG;AAEH,uBAAwB;4BA1EX,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC;;eAK1B,MAAM;WACN,SAAS;;wBAIV,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;;gBAQrB,KAAK,CAAC,MAAM,CAAC;;8BAId,KAAK,CAAC,WAAW,CAAC;;QAKjB,MAAM;WACN,MAAM;kBACN,YAAY;WACZ,KAAK,CAAC,eAAe,CAAC;;;sBAKtB,MAAM;mBACN,MAAM;qBACN,eAAe;UACf,MAAM;cACN,QAAQ;;;gBAKR,MAAM;;;QAKN,MAAM;cACN,MAAM;qBACN,KAAK,CAAC,MAAM,CAAC;;;YAKb,MAAM;UACN,yBAAyB,MAAO;QAChC,MAAM;;;eAKN,MAAM;aACN,iBAAiB;mBACjB,MAAM;;gCAIP,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../packages/core/src/components/RulesEngine/types.js"],"names":[],"mappings":"AAYA;;GAEG;AAEH;;;;GAIG;AAEH;;;;;GAKG;AAEH;;;GAGG;AAEH;;GAEG;AAEH;;;;;;GAMG;AAEH;;;;;;;GAOG;AAEH;;;GAGG;AAEH;;;;;GAKG;AAEH;;;;;GAKG;AAEH;;;;;GAKG;AAEH;;;;GAIG;AAEH,uBAAwB;4BA1EX,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC;;eAK1B,MAAM;WACN,SAAS;;wBAIV,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;;gBAQrB,KAAK,CAAC,MAAM,CAAC;;8BAId,KAAK,CAAC,WAAW,CAAC;;QAKjB,MAAM;WACN,MAAM;kBACN,YAAY;WACZ,KAAK,CAAC,eAAe,CAAC;;;sBAKtB,MAAM;mBACN,MAAM;qBACN,eAAe;UACf,MAAM;cACN,QAAQ;;;gBAKR,MAAM;;;QAKN,MAAM;cACN,MAAM;qBACN,KAAK,CAAC,MAAM,CAAC;;;YAKb,MAAM;UACN,yBAAyB,MAAO;QAChC,MAAM;;;eAKN,MAAM;aACN,iBAAiB;mBACjB,MAAM;;gCAIP,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../packages/core/src/core/consent/types.js"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH;;;;;;;;GAQG;AAEH,uBAAwB;;QAlBV,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;SACtB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;aACtB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;kBACtB,CAAS,IAAQ,EAAR,OAAO,YAAC,KAAG,OAAO,CAAC,IAAI,CAAC;iBACjC,MAAY,OAAO,CAAC,IAAI,CAAC;aACzB,MAAY;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,OAAO,CAAA;KAAC;;;uBAK5C,CAAS,IAAM,OAAE,IAAM,UAAG,IAAI;gBAC9B,CAAS,IAAM,UAAG,IAAI;aACtB,MAAY,IAAI;kBAChB,MAAY,OAAO,CAAC,IAAI,CAAC;iBACzB,MAAY,OAAO,CAAC,IAAI,CAAC;aACzB,MAAY;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,OAAO,CAAA;KAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../packages/core/src/core/consent/types.js"],"names":[],"mappings":"AAYA;;;;;;;;GAQG;AAEH;;;;;;;;GAQG;AAEH,uBAAwB;;QAlBV,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;SACtB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;aACtB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;kBACtB,CAAS,IAAQ,EAAR,OAAO,YAAC,KAAG,OAAO,CAAC,IAAI,CAAC;iBACjC,MAAY,OAAO,CAAC,IAAI,CAAC;aACzB,MAAY;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,OAAO,CAAA;KAAC;;;uBAK5C,CAAS,IAAM,OAAE,IAAM,UAAG,IAAI;gBAC9B,CAAS,IAAM,UAAG,IAAI;aACtB,MAAY,IAAI;kBAChB,MAAY,OAAO,CAAC,IAAI,CAAC;iBACzB,MAAY,OAAO,CAAC,IAAI,CAAC;aACzB,MAAY;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,OAAO,CAAA;KAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../packages/core/src/core/edgeNetwork/types.js"],"names":[],"mappings":"AAAA,8DAA8D;AAE9D;;GAEG;AAEH,uBAAwB;kCAHX,CAAS,IAA8G,EAA9G;IAAC,OAAO,EAAE,OAAO,CAAC;IAAC,sBAAsB,CAAC,EAAE,MAAY,IAAI,CAAC;IAAC,4BAA4B,CAAC,EAAE,MAAY,IAAI,CAAA;CAAC,KAAG,OAAO,KAAQ;6BAHzH,8BAA8B"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../packages/core/src/core/edgeNetwork/types.js"],"names":[],"mappings":"AAYA,8DAA8D;AAE9D;;GAEG;AAEH,uBAAwB;kCAHX,CAAS,IAA8G,EAA9G;IAAC,OAAO,EAAE,OAAO,CAAC;IAAC,sBAAsB,CAAC,EAAE,MAAY,IAAI,CAAC;IAAC,4BAA4B,CAAC,EAAE,MAAY,IAAI,CAAA;CAAC,KAAG,OAAO,KAAQ;6BAHzH,8BAA8B"}
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../packages/core/src/core/identity/types.js"],"names":[],"mappings":"AAAA,oDAAoD;AACpD,wDAAwD;AAExD;;;;;;GAMG;AAEH,uBAAwB"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../packages/core/src/core/identity/types.js"],"names":[],"mappings":"AAYA,oDAAoD;AACpD,wDAAwD;AAExD;;;;;;GAMG;AAEH,uBAAwB"}
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../packages/core/src/core/types.js"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../packages/core/src/core/types.js"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../packages/core/src/utils/request/types.js"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAEH;;;;;;;;;;;GAWG;AAEH;;;;;;;;;;;;;GAaG;AAEH;;;GAGG;AAEH,uBAAwB;;;;;WA5CV,MAAY,MAAM;gBAClB,MAAY,cAAc;eAC1B,CAAS,IAAgC,EAAhC;QAAC,qBAAqB,EAAE,OAAO,CAAA;KAAC,KAAG,MAAM;6BAClD,MAAY,MAAM,GAAC,SAAS;;oBAE5B,MAAY,MAAM,GAAC,SAAS;;;;;;;;;eAU5B,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;gBACtB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;gBACtB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;yBACtB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;iBACtB,CAAS,IAAM,EAAN,MAAM,EAAE,IAAQ,EAAR,QAAQ,KAAG,IAAI;iBAChC,CAAS,IAAM,EAAN,MAAM,KAAG,OAAO;YACzB,MAAY,MAAM;;;;;;eAOlB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;gBACtB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;gBACtB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;yBACtB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;iBACtB,CAAS,IAAM,EAAN,MAAM,EAAE,IAAQ,EAAR,QAAQ,KAAG,IAAI;iBAChC,CAAS,IAAM,EAAN,MAAM,KAAG,OAAO;cACzB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;0BACtB,MAAY,OAAO;YACnB,MAAY,MAAM;;;QAKlB,MAAM"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../packages/core/src/utils/request/types.js"],"names":[],"mappings":"AAYA;;;;;;;;;;;;;GAaG;AAEH;;;;;;;;;;;GAWG;AAEH;;;;;;;;;;;;;GAaG;AAEH;;;GAGG;AAEH,uBAAwB;;;;;WA5CV,MAAY,MAAM;gBAClB,MAAY,cAAc;eAC1B,CAAS,IAAgC,EAAhC;QAAC,qBAAqB,EAAE,OAAO,CAAA;KAAC,KAAG,MAAM;6BAClD,MAAY,MAAM,GAAC,SAAS;;oBAE5B,MAAY,MAAM,GAAC,SAAS;;;;;;;;;eAU5B,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;gBACtB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;gBACtB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;yBACtB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;iBACtB,CAAS,IAAM,EAAN,MAAM,EAAE,IAAQ,EAAR,QAAQ,KAAG,IAAI;iBAChC,CAAS,IAAM,EAAN,MAAM,KAAG,OAAO;YACzB,MAAY,MAAM;;;;;;eAOlB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;gBACtB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;gBACtB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;yBACtB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;iBACtB,CAAS,IAAM,EAAN,MAAM,EAAE,IAAQ,EAAR,QAAQ,KAAG,IAAI;iBAChC,CAAS,IAAM,EAAN,MAAM,KAAG,OAAO;cACzB,CAAS,IAAM,EAAN,MAAM,KAAG,IAAI;0BACtB,MAAY,OAAO;YACnB,MAAY,MAAM;;;QAKlB,MAAM"}
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../packages/core/src/utils/types.js"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH;;;;;;;GAOG;AAEH;;;;GAIG;AAEH;;;;;;;GAOG;AAEH;;GAEG;AAEH,uBAAwB;;aAjCV,CAAS,IAAM,EAAN,MAAM,KAAG,MAAM,GAAC,IAAI;aAC7B,CAAS,IAAM,EAAN,MAAM,EAAE,IAAM,EAAN,MAAM,KAAG,IAAI;WAC9B,MAAY,IAAI;;;;;;cAKhB,MAAM,GAAC,IAAI;;;;WACX,MAAM;;;;aACN,MAAM;;;;aACN,OAAO;;;;eACP,QAAQ,GAAC,KAAK,GAAC,MAAM;;;;;;WAKrB,CAAS,IAAM,EAAN,MAAM,EAAE,IAAM,EAAN,MAAM,KAAG,MAAM;;;;YAChC,CAAS,IAAM,EAAN,MAAM,EAAE,IAAM,EAAN,MAAM,KAAG,MAAM;;;;;;SAKhC,CAAS,IAAM,EAAN,MAAM,KAAG,MAAM,GAAC,SAAS;;;;SAElC,CAAS,IAAM,EAAN,MAAM,EAAE,IAAM,EAAN,MAAM,EAAE,IAAiB,EAAjB,gBAAgB,YAAC,KAAG,MAAM,GAAC,SAAS;;;;YAC7D,CAAS,IAAM,EAAN,MAAM,EAAE,IAAiB,EAAjB,gBAAgB,YAAC,KAAG,IAAI;;;;mBACzC,CAAS,IAAe,EAAf,eAAe,KAAG,SAAS;;6BAIrC,CAAS,IAAM,EAAN,MAAM,KAAG;IAAE,OAAO,EAAE,OAAO,CAAC;IAAC,UAAU,EAAE,OAAO,CAAA;CAAE"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../packages/core/src/utils/types.js"],"names":[],"mappings":"AAYA;;;;;GAKG;AAEH;;;;;;;GAOG;AAEH;;;;GAIG;AAEH;;;;;;;GAOG;AAEH;;GAEG;AAEH,uBAAwB;;aAjCV,CAAS,IAAM,EAAN,MAAM,KAAG,MAAM,GAAC,IAAI;aAC7B,CAAS,IAAM,EAAN,MAAM,EAAE,IAAM,EAAN,MAAM,KAAG,IAAI;WAC9B,MAAY,IAAI;;;;;;cAKhB,MAAM,GAAC,IAAI;;;;WACX,MAAM;;;;aACN,MAAM;;;;aACN,OAAO;;;;eACP,QAAQ,GAAC,KAAK,GAAC,MAAM;;;;;;WAKrB,CAAS,IAAM,EAAN,MAAM,EAAE,IAAM,EAAN,MAAM,KAAG,MAAM;;;;YAChC,CAAS,IAAM,EAAN,MAAM,EAAE,IAAM,EAAN,MAAM,KAAG,MAAM;;;;;;SAKhC,CAAS,IAAM,EAAN,MAAM,KAAG,MAAM,GAAC,SAAS;;;;SAElC,CAAS,IAAM,EAAN,MAAM,EAAE,IAAM,EAAN,MAAM,EAAE,IAAiB,EAAjB,gBAAgB,YAAC,KAAG,MAAM,GAAC,SAAS;;;;YAC7D,CAAS,IAAM,EAAN,MAAM,EAAE,IAAiB,EAAjB,gBAAgB,YAAC,KAAG,IAAI;;;;mBACzC,CAAS,IAAe,EAAf,eAAe,KAAG,SAAS;;6BAIrC,CAAS,IAAM,EAAN,MAAM,KAAG;IAAE,OAAO,EAAE,OAAO,CAAC;IAAC,UAAU,EAAE,OAAO,CAAA;CAAE"}