@feelflow/ffid-sdk 5.13.0 → 5.16.1

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 (34) hide show
  1. package/README.md +4 -0
  2. package/dist/{FFIDCookieLink-D1WwE_ZO.d.cts → FFIDCookieLink-DrF5UXkd.d.cts} +37 -4
  3. package/dist/{FFIDCookieLink-D1WwE_ZO.d.ts → FFIDCookieLink-DrF5UXkd.d.ts} +37 -4
  4. package/dist/{chunk-R5WSZMUL.cjs → chunk-H2D52XCL.cjs} +43 -12
  5. package/dist/{chunk-M4N2PUX6.js → chunk-HAR75DTJ.js} +43 -12
  6. package/dist/{chunk-JFFRO2Q5.cjs → chunk-SNSIVY3Q.cjs} +175 -1
  7. package/dist/{chunk-RATTQIKM.js → chunk-XT4BAOKZ.js} +175 -1
  8. package/dist/components/index.cjs +8 -8
  9. package/dist/components/index.d.cts +1 -1
  10. package/dist/components/index.d.ts +1 -1
  11. package/dist/components/index.js +1 -1
  12. package/dist/consent/index.cjs +64 -64
  13. package/dist/consent/index.d.cts +2 -2
  14. package/dist/consent/index.d.ts +2 -2
  15. package/dist/consent/index.js +1 -1
  16. package/dist/{ffid-client-BG0Qr86U.d.ts → ffid-client-9-lh0G_h.d.ts} +331 -111
  17. package/dist/{ffid-client-C3K3sAqq.d.cts → ffid-client-CKFxY60u.d.cts} +331 -111
  18. package/dist/{index-C6dnexXf.d.cts → index-CsVJTuPv.d.cts} +1 -112
  19. package/dist/{index-C6dnexXf.d.ts → index-CsVJTuPv.d.ts} +1 -112
  20. package/dist/index.cjs +62 -62
  21. package/dist/index.d.cts +342 -4
  22. package/dist/index.d.ts +342 -4
  23. package/dist/index.js +3 -3
  24. package/dist/legal/index.cjs +14 -0
  25. package/dist/legal/index.d.cts +16 -1
  26. package/dist/legal/index.d.ts +16 -1
  27. package/dist/legal/index.js +14 -0
  28. package/dist/server/index.cjs +175 -1
  29. package/dist/server/index.d.cts +2 -2
  30. package/dist/server/index.d.ts +2 -2
  31. package/dist/server/index.js +175 -1
  32. package/dist/server/test/index.d.cts +1 -1
  33. package/dist/server/test/index.d.ts +1 -1
  34. package/package.json +1 -1
@@ -937,8 +937,163 @@ function createProfileMethods(deps) {
937
937
  return { getProfile, updateProfile };
938
938
  }
939
939
 
940
+ // src/client/login-history-methods.ts
941
+ var EXT_LOGIN_HISTORY_ENDPOINT = "/api/v1/users/ext/me/login-history";
942
+ function createLoginHistoryMethods(deps) {
943
+ const { fetchWithAuth, createError } = deps;
944
+ async function getLoginHistory(params) {
945
+ if (params?.limit !== void 0 && (!Number.isInteger(params.limit) || params.limit <= 0)) {
946
+ return {
947
+ error: createError(
948
+ "VALIDATION_ERROR",
949
+ "limit \u306F1\u4EE5\u4E0A\u306E\u6574\u6570\u3092\u6307\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044"
950
+ )
951
+ };
952
+ }
953
+ const query = new URLSearchParams();
954
+ if (params?.userId !== void 0) {
955
+ query.set("userId", params.userId);
956
+ }
957
+ if (params?.limit !== void 0) {
958
+ query.set("limit", String(params.limit));
959
+ }
960
+ const queryString = query.toString();
961
+ const endpoint = queryString ? `${EXT_LOGIN_HISTORY_ENDPOINT}?${queryString}` : EXT_LOGIN_HISTORY_ENDPOINT;
962
+ return fetchWithAuth(endpoint);
963
+ }
964
+ return { getLoginHistory };
965
+ }
966
+
967
+ // src/client/organization-domains-methods.ts
968
+ var EXT_DOMAINS_ENDPOINT = "/api/v1/organizations/ext/domains";
969
+ function createOrganizationDomainsMethods(deps) {
970
+ const { fetchWithAuth, createError, serviceCode } = deps;
971
+ function buildQuery(organizationId) {
972
+ return new URLSearchParams({ organizationId, serviceCode }).toString();
973
+ }
974
+ async function getOrganizationDomains(params) {
975
+ if (!params.organizationId) {
976
+ return {
977
+ error: createError("VALIDATION_ERROR", "organizationId \u306F\u5FC5\u9808\u3067\u3059")
978
+ };
979
+ }
980
+ return fetchWithAuth(
981
+ `${EXT_DOMAINS_ENDPOINT}?${buildQuery(params.organizationId)}`
982
+ );
983
+ }
984
+ return { getOrganizationDomains };
985
+ }
986
+
987
+ // src/client/notification-preferences-methods.ts
988
+ var EXT_NOTIFICATION_PREFERENCES_ENDPOINT = "/api/v1/organizations/ext/notification-preferences";
989
+ function createNotificationPreferencesMethods(deps) {
990
+ const { fetchWithAuth, createError, serviceCode } = deps;
991
+ function buildQuery(organizationId) {
992
+ return new URLSearchParams({ organizationId, serviceCode }).toString();
993
+ }
994
+ async function getNotificationPreferences(params) {
995
+ if (!params.organizationId) {
996
+ return {
997
+ error: createError("VALIDATION_ERROR", "organizationId \u306F\u5FC5\u9808\u3067\u3059")
998
+ };
999
+ }
1000
+ return fetchWithAuth(
1001
+ `${EXT_NOTIFICATION_PREFERENCES_ENDPOINT}?${buildQuery(params.organizationId)}`
1002
+ );
1003
+ }
1004
+ async function updateNotificationPreferences(params) {
1005
+ if (!params.organizationId) {
1006
+ return {
1007
+ error: createError("VALIDATION_ERROR", "organizationId \u306F\u5FC5\u9808\u3067\u3059")
1008
+ };
1009
+ }
1010
+ if (params.preferences === null || typeof params.preferences !== "object" || Array.isArray(params.preferences)) {
1011
+ return {
1012
+ error: createError("VALIDATION_ERROR", "preferences \u306F\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u3067\u3042\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059")
1013
+ };
1014
+ }
1015
+ if (Object.keys(params.preferences).length === 0) {
1016
+ return {
1017
+ error: createError("VALIDATION_ERROR", "\u66F4\u65B0\u3059\u308B\u30D5\u30A3\u30FC\u30EB\u30C9\u30921\u3064\u4EE5\u4E0A\u6307\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044")
1018
+ };
1019
+ }
1020
+ return fetchWithAuth(
1021
+ `${EXT_NOTIFICATION_PREFERENCES_ENDPOINT}?${buildQuery(params.organizationId)}`,
1022
+ {
1023
+ method: "PATCH",
1024
+ body: JSON.stringify({ preferences: params.preferences })
1025
+ }
1026
+ );
1027
+ }
1028
+ return { getNotificationPreferences, updateNotificationPreferences };
1029
+ }
1030
+
1031
+ // src/client/invite-methods.ts
1032
+ var EXT_INVITE_ENDPOINT = "/api/v1/organizations/ext/invite";
1033
+ function createInviteMethods(deps) {
1034
+ const { fetchWithAuth, createError, serviceCode } = deps;
1035
+ const assignableRoles = /* @__PURE__ */ new Set(["admin", "member", "viewer"]);
1036
+ async function inviteMember(params) {
1037
+ if (!params.organizationId || !params.email) {
1038
+ return {
1039
+ error: createError("VALIDATION_ERROR", "organizationId \u3068 email \u306F\u5FC5\u9808\u3067\u3059")
1040
+ };
1041
+ }
1042
+ if (params.role !== void 0 && !assignableRoles.has(params.role)) {
1043
+ return {
1044
+ error: createError(
1045
+ "VALIDATION_ERROR",
1046
+ "role \u306F admin\u3001member\u3001viewer \u306E\u3044\u305A\u308C\u304B\u3092\u6307\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044"
1047
+ )
1048
+ };
1049
+ }
1050
+ const query = new URLSearchParams({
1051
+ organizationId: params.organizationId,
1052
+ serviceCode
1053
+ }).toString();
1054
+ return fetchWithAuth(`${EXT_INVITE_ENDPOINT}?${query}`, {
1055
+ method: "POST",
1056
+ body: JSON.stringify({ email: params.email, role: params.role })
1057
+ });
1058
+ }
1059
+ return { inviteMember };
1060
+ }
1061
+
1062
+ // src/client/org-membership-methods.ts
1063
+ var EXT_USER_ORGANIZATIONS_ENDPOINT = "/api/v1/users/ext/me/organizations";
1064
+ function createOrgMembershipMethods(deps) {
1065
+ const { fetchWithAuth, createError } = deps;
1066
+ async function leaveOrganization(params) {
1067
+ if (!params || !params.organizationId) {
1068
+ return {
1069
+ error: createError("VALIDATION_ERROR", "organizationId \u306F\u5FC5\u9808\u3067\u3059")
1070
+ };
1071
+ }
1072
+ let endpoint = `${EXT_USER_ORGANIZATIONS_ENDPOINT}/${encodeURIComponent(params.organizationId)}`;
1073
+ if (params.userId) {
1074
+ endpoint += `?${new URLSearchParams({ userId: params.userId }).toString()}`;
1075
+ }
1076
+ return fetchWithAuth(endpoint, {
1077
+ method: "DELETE"
1078
+ });
1079
+ }
1080
+ return { leaveOrganization };
1081
+ }
1082
+
1083
+ // src/client/noncontract-methods.ts
1084
+ function createNonContractMethods(deps) {
1085
+ const { fetchWithAuth, createError, serviceCode } = deps;
1086
+ return {
1087
+ ...createLoginHistoryMethods({ fetchWithAuth, createError }),
1088
+ ...createOrganizationDomainsMethods({ fetchWithAuth, createError, serviceCode }),
1089
+ ...createNotificationPreferencesMethods({ fetchWithAuth, createError, serviceCode }),
1090
+ ...createInviteMethods({ fetchWithAuth, createError, serviceCode }),
1091
+ ...createOrgMembershipMethods({ fetchWithAuth, createError })
1092
+ };
1093
+ }
1094
+
940
1095
  // src/client/version-check.ts
941
- var SDK_VERSION = "5.13.0";
1096
+ var SDK_VERSION = "5.16.1";
942
1097
  var SDK_USER_AGENT = `FFID-SDK/${SDK_VERSION} (TypeScript)`;
943
1098
  var SDK_VERSION_HEADER = "X-FFID-SDK-Version";
944
1099
  function sdkHeaders() {
@@ -2941,6 +3096,18 @@ function createFFIDClient(config) {
2941
3096
  fetchWithAuth,
2942
3097
  createError
2943
3098
  });
3099
+ const {
3100
+ getLoginHistory,
3101
+ getOrganizationDomains,
3102
+ getNotificationPreferences,
3103
+ updateNotificationPreferences,
3104
+ inviteMember,
3105
+ leaveOrganization
3106
+ } = createNonContractMethods({
3107
+ fetchWithAuth,
3108
+ createError,
3109
+ serviceCode: config.serviceCode
3110
+ });
2944
3111
  const { getAnalyticsConfig } = createAnalyticsMethods({
2945
3112
  fetchWithAuth,
2946
3113
  createError
@@ -3021,6 +3188,13 @@ function createFFIDClient(config) {
3021
3188
  removeMember,
3022
3189
  getProfile,
3023
3190
  updateProfile,
3191
+ // Non-contract ext API coverage (#3783)
3192
+ getLoginHistory,
3193
+ getOrganizationDomains,
3194
+ getNotificationPreferences,
3195
+ updateNotificationPreferences,
3196
+ inviteMember,
3197
+ leaveOrganization,
3024
3198
  getAnalyticsConfig,
3025
3199
  createCheckoutSession,
3026
3200
  createPortalSession,
@@ -1,34 +1,34 @@
1
1
  'use strict';
2
2
 
3
- var chunkJFFRO2Q5_cjs = require('../chunk-JFFRO2Q5.cjs');
3
+ var chunkSNSIVY3Q_cjs = require('../chunk-SNSIVY3Q.cjs');
4
4
 
5
5
 
6
6
 
7
7
  Object.defineProperty(exports, "FFIDAnnouncementBadge", {
8
8
  enumerable: true,
9
- get: function () { return chunkJFFRO2Q5_cjs.FFIDAnnouncementBadge; }
9
+ get: function () { return chunkSNSIVY3Q_cjs.FFIDAnnouncementBadge; }
10
10
  });
11
11
  Object.defineProperty(exports, "FFIDAnnouncementList", {
12
12
  enumerable: true,
13
- get: function () { return chunkJFFRO2Q5_cjs.FFIDAnnouncementList; }
13
+ get: function () { return chunkSNSIVY3Q_cjs.FFIDAnnouncementList; }
14
14
  });
15
15
  Object.defineProperty(exports, "FFIDInquiryForm", {
16
16
  enumerable: true,
17
- get: function () { return chunkJFFRO2Q5_cjs.FFIDInquiryForm; }
17
+ get: function () { return chunkSNSIVY3Q_cjs.FFIDInquiryForm; }
18
18
  });
19
19
  Object.defineProperty(exports, "FFIDLoginButton", {
20
20
  enumerable: true,
21
- get: function () { return chunkJFFRO2Q5_cjs.FFIDLoginButton; }
21
+ get: function () { return chunkSNSIVY3Q_cjs.FFIDLoginButton; }
22
22
  });
23
23
  Object.defineProperty(exports, "FFIDOrganizationSwitcher", {
24
24
  enumerable: true,
25
- get: function () { return chunkJFFRO2Q5_cjs.FFIDOrganizationSwitcher; }
25
+ get: function () { return chunkSNSIVY3Q_cjs.FFIDOrganizationSwitcher; }
26
26
  });
27
27
  Object.defineProperty(exports, "FFIDSubscriptionBadge", {
28
28
  enumerable: true,
29
- get: function () { return chunkJFFRO2Q5_cjs.FFIDSubscriptionBadge; }
29
+ get: function () { return chunkSNSIVY3Q_cjs.FFIDSubscriptionBadge; }
30
30
  });
31
31
  Object.defineProperty(exports, "FFIDUserMenu", {
32
32
  enumerable: true,
33
- get: function () { return chunkJFFRO2Q5_cjs.FFIDUserMenu; }
33
+ get: function () { return chunkSNSIVY3Q_cjs.FFIDUserMenu; }
34
34
  });
@@ -1,3 +1,3 @@
1
- export { I as FFIDAnnouncementBadge, ai as FFIDAnnouncementBadgeClassNames, aj as FFIDAnnouncementBadgeProps, J as FFIDAnnouncementList, ak as FFIDAnnouncementListClassNames, al as FFIDAnnouncementListProps, S as FFIDInquiryForm, T as FFIDInquiryFormCategoryItem, U as FFIDInquiryFormClassNames, V as FFIDInquiryFormLegalLayout, W as FFIDInquiryFormOrganization, X as FFIDInquiryFormPlaceholderContext, Y as FFIDInquiryFormPrefill, Z as FFIDInquiryFormProps, _ as FFIDInquiryFormSubmitData, $ as FFIDInquiryFormSubmitResult, a1 as FFIDLoginButton, am as FFIDLoginButtonProps, a4 as FFIDOrganizationSwitcher, an as FFIDOrganizationSwitcherClassNames, ao as FFIDOrganizationSwitcherProps, a9 as FFIDSubscriptionBadge, ap as FFIDSubscriptionBadgeClassNames, aq as FFIDSubscriptionBadgeProps, ab as FFIDUserMenu, ar as FFIDUserMenuClassNames, as as FFIDUserMenuProps } from '../index-C6dnexXf.cjs';
1
+ export { D as FFIDAnnouncementBadge, af as FFIDAnnouncementBadgeClassNames, ag as FFIDAnnouncementBadgeProps, G as FFIDAnnouncementList, ah as FFIDAnnouncementListClassNames, ai as FFIDAnnouncementListProps, P as FFIDInquiryForm, Q as FFIDInquiryFormCategoryItem, R as FFIDInquiryFormClassNames, S as FFIDInquiryFormLegalLayout, T as FFIDInquiryFormOrganization, U as FFIDInquiryFormPlaceholderContext, V as FFIDInquiryFormPrefill, W as FFIDInquiryFormProps, X as FFIDInquiryFormSubmitData, Y as FFIDInquiryFormSubmitResult, _ as FFIDLoginButton, aj as FFIDLoginButtonProps, a1 as FFIDOrganizationSwitcher, ak as FFIDOrganizationSwitcherClassNames, al as FFIDOrganizationSwitcherProps, a6 as FFIDSubscriptionBadge, am as FFIDSubscriptionBadgeClassNames, an as FFIDSubscriptionBadgeProps, a8 as FFIDUserMenu, ao as FFIDUserMenuClassNames, ap as FFIDUserMenuProps } from '../index-CsVJTuPv.cjs';
2
2
  import 'react/jsx-runtime';
3
3
  import 'react';
@@ -1,3 +1,3 @@
1
- export { I as FFIDAnnouncementBadge, ai as FFIDAnnouncementBadgeClassNames, aj as FFIDAnnouncementBadgeProps, J as FFIDAnnouncementList, ak as FFIDAnnouncementListClassNames, al as FFIDAnnouncementListProps, S as FFIDInquiryForm, T as FFIDInquiryFormCategoryItem, U as FFIDInquiryFormClassNames, V as FFIDInquiryFormLegalLayout, W as FFIDInquiryFormOrganization, X as FFIDInquiryFormPlaceholderContext, Y as FFIDInquiryFormPrefill, Z as FFIDInquiryFormProps, _ as FFIDInquiryFormSubmitData, $ as FFIDInquiryFormSubmitResult, a1 as FFIDLoginButton, am as FFIDLoginButtonProps, a4 as FFIDOrganizationSwitcher, an as FFIDOrganizationSwitcherClassNames, ao as FFIDOrganizationSwitcherProps, a9 as FFIDSubscriptionBadge, ap as FFIDSubscriptionBadgeClassNames, aq as FFIDSubscriptionBadgeProps, ab as FFIDUserMenu, ar as FFIDUserMenuClassNames, as as FFIDUserMenuProps } from '../index-C6dnexXf.js';
1
+ export { D as FFIDAnnouncementBadge, af as FFIDAnnouncementBadgeClassNames, ag as FFIDAnnouncementBadgeProps, G as FFIDAnnouncementList, ah as FFIDAnnouncementListClassNames, ai as FFIDAnnouncementListProps, P as FFIDInquiryForm, Q as FFIDInquiryFormCategoryItem, R as FFIDInquiryFormClassNames, S as FFIDInquiryFormLegalLayout, T as FFIDInquiryFormOrganization, U as FFIDInquiryFormPlaceholderContext, V as FFIDInquiryFormPrefill, W as FFIDInquiryFormProps, X as FFIDInquiryFormSubmitData, Y as FFIDInquiryFormSubmitResult, _ as FFIDLoginButton, aj as FFIDLoginButtonProps, a1 as FFIDOrganizationSwitcher, ak as FFIDOrganizationSwitcherClassNames, al as FFIDOrganizationSwitcherProps, a6 as FFIDSubscriptionBadge, am as FFIDSubscriptionBadgeClassNames, an as FFIDSubscriptionBadgeProps, a8 as FFIDUserMenu, ao as FFIDUserMenuClassNames, ap as FFIDUserMenuProps } from '../index-CsVJTuPv.js';
2
2
  import 'react/jsx-runtime';
3
3
  import 'react';
@@ -1 +1 @@
1
- export { FFIDAnnouncementBadge, FFIDAnnouncementList, FFIDInquiryForm, FFIDLoginButton, FFIDOrganizationSwitcher, FFIDSubscriptionBadge, FFIDUserMenu } from '../chunk-RATTQIKM.js';
1
+ export { FFIDAnnouncementBadge, FFIDAnnouncementList, FFIDInquiryForm, FFIDLoginButton, FFIDOrganizationSwitcher, FFIDSubscriptionBadge, FFIDUserMenu } from '../chunk-XT4BAOKZ.js';
@@ -1,258 +1,258 @@
1
1
  'use strict';
2
2
 
3
- var chunkR5WSZMUL_cjs = require('../chunk-R5WSZMUL.cjs');
3
+ var chunkH2D52XCL_cjs = require('../chunk-H2D52XCL.cjs');
4
4
 
5
5
 
6
6
 
7
7
  Object.defineProperty(exports, "ALL_DENIED_EXCEPT_NECESSARY", {
8
8
  enumerable: true,
9
- get: function () { return chunkR5WSZMUL_cjs.ALL_DENIED_EXCEPT_NECESSARY; }
9
+ get: function () { return chunkH2D52XCL_cjs.ALL_DENIED_EXCEPT_NECESSARY; }
10
10
  });
11
11
  Object.defineProperty(exports, "CONSENT_COOKIE_MAX_AGE_SEC", {
12
12
  enumerable: true,
13
- get: function () { return chunkR5WSZMUL_cjs.CONSENT_COOKIE_MAX_AGE_SEC; }
13
+ get: function () { return chunkH2D52XCL_cjs.CONSENT_COOKIE_MAX_AGE_SEC; }
14
14
  });
15
15
  Object.defineProperty(exports, "CONSENT_COOKIE_NAME", {
16
16
  enumerable: true,
17
- get: function () { return chunkR5WSZMUL_cjs.CONSENT_COOKIE_NAME; }
17
+ get: function () { return chunkH2D52XCL_cjs.CONSENT_COOKIE_NAME; }
18
18
  });
19
19
  Object.defineProperty(exports, "CONSENT_DISMISSAL_TIMESTAMP_KEY", {
20
20
  enumerable: true,
21
- get: function () { return chunkR5WSZMUL_cjs.CONSENT_DISMISSAL_TIMESTAMP_KEY; }
21
+ get: function () { return chunkH2D52XCL_cjs.CONSENT_DISMISSAL_TIMESTAMP_KEY; }
22
22
  });
23
23
  Object.defineProperty(exports, "CONSENT_SESSION_STORAGE_KEY", {
24
24
  enumerable: true,
25
- get: function () { return chunkR5WSZMUL_cjs.CONSENT_SESSION_STORAGE_KEY; }
25
+ get: function () { return chunkH2D52XCL_cjs.CONSENT_SESSION_STORAGE_KEY; }
26
26
  });
27
27
  Object.defineProperty(exports, "COOKIE_VERSION", {
28
28
  enumerable: true,
29
- get: function () { return chunkR5WSZMUL_cjs.COOKIE_VERSION; }
29
+ get: function () { return chunkH2D52XCL_cjs.COOKIE_VERSION; }
30
30
  });
31
31
  Object.defineProperty(exports, "DEFAULT_CONSENT_ERROR_MESSAGES", {
32
32
  enumerable: true,
33
- get: function () { return chunkR5WSZMUL_cjs.DEFAULT_CONSENT_ERROR_MESSAGES; }
33
+ get: function () { return chunkH2D52XCL_cjs.DEFAULT_CONSENT_ERROR_MESSAGES; }
34
34
  });
35
35
  Object.defineProperty(exports, "DEFAULT_MERGE_WARNING_MESSAGES", {
36
36
  enumerable: true,
37
- get: function () { return chunkR5WSZMUL_cjs.DEFAULT_MERGE_WARNING_MESSAGES; }
37
+ get: function () { return chunkH2D52XCL_cjs.DEFAULT_MERGE_WARNING_MESSAGES; }
38
38
  });
39
39
  Object.defineProperty(exports, "DEVICE_ID_LOCAL_STORAGE_KEY", {
40
40
  enumerable: true,
41
- get: function () { return chunkR5WSZMUL_cjs.DEVICE_ID_LOCAL_STORAGE_KEY; }
41
+ get: function () { return chunkH2D52XCL_cjs.DEVICE_ID_LOCAL_STORAGE_KEY; }
42
42
  });
43
43
  Object.defineProperty(exports, "DEVICE_ID_SESSION_STORAGE_KEY", {
44
44
  enumerable: true,
45
- get: function () { return chunkR5WSZMUL_cjs.DEVICE_ID_SESSION_STORAGE_KEY; }
45
+ get: function () { return chunkH2D52XCL_cjs.DEVICE_ID_SESSION_STORAGE_KEY; }
46
46
  });
47
47
  Object.defineProperty(exports, "DeviceIdSchema", {
48
48
  enumerable: true,
49
- get: function () { return chunkR5WSZMUL_cjs.DeviceIdSchema; }
49
+ get: function () { return chunkH2D52XCL_cjs.DeviceIdSchema; }
50
50
  });
51
51
  Object.defineProperty(exports, "FFIDAnalyticsProvider", {
52
52
  enumerable: true,
53
- get: function () { return chunkR5WSZMUL_cjs.FFIDAnalyticsProvider; }
53
+ get: function () { return chunkH2D52XCL_cjs.FFIDAnalyticsProvider; }
54
54
  });
55
55
  Object.defineProperty(exports, "FFIDConsentCategoriesSchema", {
56
56
  enumerable: true,
57
- get: function () { return chunkR5WSZMUL_cjs.FFIDConsentCategoriesSchema; }
57
+ get: function () { return chunkH2D52XCL_cjs.FFIDConsentCategoriesSchema; }
58
58
  });
59
59
  Object.defineProperty(exports, "FFIDConsentCategoryCodeSchema", {
60
60
  enumerable: true,
61
- get: function () { return chunkR5WSZMUL_cjs.FFIDConsentCategoryCodeSchema; }
61
+ get: function () { return chunkH2D52XCL_cjs.FFIDConsentCategoryCodeSchema; }
62
62
  });
63
63
  Object.defineProperty(exports, "FFIDConsentCategoryMetadataSchema", {
64
64
  enumerable: true,
65
- get: function () { return chunkR5WSZMUL_cjs.FFIDConsentCategoryMetadataSchema; }
65
+ get: function () { return chunkH2D52XCL_cjs.FFIDConsentCategoryMetadataSchema; }
66
66
  });
67
67
  Object.defineProperty(exports, "FFIDConsentContext", {
68
68
  enumerable: true,
69
- get: function () { return chunkR5WSZMUL_cjs.FFIDConsentContext; }
69
+ get: function () { return chunkH2D52XCL_cjs.FFIDConsentContext; }
70
70
  });
71
71
  Object.defineProperty(exports, "FFIDConsentError", {
72
72
  enumerable: true,
73
- get: function () { return chunkR5WSZMUL_cjs.FFIDConsentError; }
73
+ get: function () { return chunkH2D52XCL_cjs.FFIDConsentError; }
74
74
  });
75
75
  Object.defineProperty(exports, "FFIDConsentMergeStrategySchema", {
76
76
  enumerable: true,
77
- get: function () { return chunkR5WSZMUL_cjs.FFIDConsentMergeStrategySchema; }
77
+ get: function () { return chunkH2D52XCL_cjs.FFIDConsentMergeStrategySchema; }
78
78
  });
79
79
  Object.defineProperty(exports, "FFIDConsentMergeWarningSchema", {
80
80
  enumerable: true,
81
- get: function () { return chunkR5WSZMUL_cjs.FFIDConsentMergeWarningSchema; }
81
+ get: function () { return chunkH2D52XCL_cjs.FFIDConsentMergeWarningSchema; }
82
82
  });
83
83
  Object.defineProperty(exports, "FFIDConsentSourceSchema", {
84
84
  enumerable: true,
85
- get: function () { return chunkR5WSZMUL_cjs.FFIDConsentSourceSchema; }
85
+ get: function () { return chunkH2D52XCL_cjs.FFIDConsentSourceSchema; }
86
86
  });
87
87
  Object.defineProperty(exports, "FFIDConsentStateSchema", {
88
88
  enumerable: true,
89
- get: function () { return chunkR5WSZMUL_cjs.FFIDConsentStateSchema; }
89
+ get: function () { return chunkH2D52XCL_cjs.FFIDConsentStateSchema; }
90
90
  });
91
91
  Object.defineProperty(exports, "FFIDConsentUpdateSchema", {
92
92
  enumerable: true,
93
- get: function () { return chunkR5WSZMUL_cjs.FFIDConsentUpdateSchema; }
93
+ get: function () { return chunkH2D52XCL_cjs.FFIDConsentUpdateSchema; }
94
94
  });
95
95
  Object.defineProperty(exports, "FFIDCookieBanner", {
96
96
  enumerable: true,
97
- get: function () { return chunkR5WSZMUL_cjs.FFIDCookieBanner; }
97
+ get: function () { return chunkH2D52XCL_cjs.FFIDCookieBanner; }
98
98
  });
99
99
  Object.defineProperty(exports, "FFIDCookieLink", {
100
100
  enumerable: true,
101
- get: function () { return chunkR5WSZMUL_cjs.FFIDCookieLink; }
101
+ get: function () { return chunkH2D52XCL_cjs.FFIDCookieLink; }
102
102
  });
103
103
  Object.defineProperty(exports, "FFIDCookiePolicySchema", {
104
104
  enumerable: true,
105
- get: function () { return chunkR5WSZMUL_cjs.FFIDCookiePolicySchema; }
105
+ get: function () { return chunkH2D52XCL_cjs.FFIDCookiePolicySchema; }
106
106
  });
107
107
  Object.defineProperty(exports, "FFIDCookieSettings", {
108
108
  enumerable: true,
109
- get: function () { return chunkR5WSZMUL_cjs.FFIDCookieSettings; }
109
+ get: function () { return chunkH2D52XCL_cjs.FFIDCookieSettings; }
110
110
  });
111
111
  Object.defineProperty(exports, "FFIDInternalConsentSourceSchema", {
112
112
  enumerable: true,
113
- get: function () { return chunkR5WSZMUL_cjs.FFIDInternalConsentSourceSchema; }
113
+ get: function () { return chunkH2D52XCL_cjs.FFIDInternalConsentSourceSchema; }
114
114
  });
115
115
  Object.defineProperty(exports, "FFIDPublicConsentSourceSchema", {
116
116
  enumerable: true,
117
- get: function () { return chunkR5WSZMUL_cjs.FFIDPublicConsentSourceSchema; }
117
+ get: function () { return chunkH2D52XCL_cjs.FFIDPublicConsentSourceSchema; }
118
118
  });
119
119
  Object.defineProperty(exports, "FFID_CONSENT_ERROR_CODES", {
120
120
  enumerable: true,
121
- get: function () { return chunkR5WSZMUL_cjs.FFID_CONSENT_ERROR_CODES; }
121
+ get: function () { return chunkH2D52XCL_cjs.FFID_CONSENT_ERROR_CODES; }
122
122
  });
123
123
  Object.defineProperty(exports, "FFID_CONSENT_NOT_DECIDED_STATE", {
124
124
  enumerable: true,
125
- get: function () { return chunkR5WSZMUL_cjs.FFID_CONSENT_NOT_DECIDED_STATE; }
125
+ get: function () { return chunkH2D52XCL_cjs.FFID_CONSENT_NOT_DECIDED_STATE; }
126
126
  });
127
127
  Object.defineProperty(exports, "GetCategoriesWireSchema", {
128
128
  enumerable: true,
129
- get: function () { return chunkR5WSZMUL_cjs.GetCategoriesWireSchema; }
129
+ get: function () { return chunkH2D52XCL_cjs.GetCategoriesWireSchema; }
130
130
  });
131
131
  Object.defineProperty(exports, "GetConsentMeWireSchema", {
132
132
  enumerable: true,
133
- get: function () { return chunkR5WSZMUL_cjs.GetConsentMeWireSchema; }
133
+ get: function () { return chunkH2D52XCL_cjs.GetConsentMeWireSchema; }
134
134
  });
135
135
  Object.defineProperty(exports, "GetDocumentWireSchema", {
136
136
  enumerable: true,
137
- get: function () { return chunkR5WSZMUL_cjs.GetDocumentWireSchema; }
137
+ get: function () { return chunkH2D52XCL_cjs.GetDocumentWireSchema; }
138
138
  });
139
139
  Object.defineProperty(exports, "PostConsentRequestSchema", {
140
140
  enumerable: true,
141
- get: function () { return chunkR5WSZMUL_cjs.PostConsentRequestSchema; }
141
+ get: function () { return chunkH2D52XCL_cjs.PostConsentRequestSchema; }
142
142
  });
143
143
  Object.defineProperty(exports, "PostConsentWireSchema", {
144
144
  enumerable: true,
145
- get: function () { return chunkR5WSZMUL_cjs.PostConsentWireSchema; }
145
+ get: function () { return chunkH2D52XCL_cjs.PostConsentWireSchema; }
146
146
  });
147
147
  Object.defineProperty(exports, "PostSyncRequestSchema", {
148
148
  enumerable: true,
149
- get: function () { return chunkR5WSZMUL_cjs.PostSyncRequestSchema; }
149
+ get: function () { return chunkH2D52XCL_cjs.PostSyncRequestSchema; }
150
150
  });
151
151
  Object.defineProperty(exports, "PostSyncWireSchema", {
152
152
  enumerable: true,
153
- get: function () { return chunkR5WSZMUL_cjs.PostSyncWireSchema; }
153
+ get: function () { return chunkH2D52XCL_cjs.PostSyncWireSchema; }
154
154
  });
155
155
  Object.defineProperty(exports, "PostWithdrawWireSchema", {
156
156
  enumerable: true,
157
- get: function () { return chunkR5WSZMUL_cjs.PostWithdrawWireSchema; }
157
+ get: function () { return chunkH2D52XCL_cjs.PostWithdrawWireSchema; }
158
158
  });
159
159
  Object.defineProperty(exports, "clearConsentDismissalTimestamp", {
160
160
  enumerable: true,
161
- get: function () { return chunkR5WSZMUL_cjs.clearConsentDismissalTimestamp; }
161
+ get: function () { return chunkH2D52XCL_cjs.clearConsentDismissalTimestamp; }
162
162
  });
163
163
  Object.defineProperty(exports, "clearConsentSessionMirror", {
164
164
  enumerable: true,
165
- get: function () { return chunkR5WSZMUL_cjs.clearConsentSessionMirror; }
165
+ get: function () { return chunkH2D52XCL_cjs.clearConsentSessionMirror; }
166
166
  });
167
167
  Object.defineProperty(exports, "clearDeviceId", {
168
168
  enumerable: true,
169
- get: function () { return chunkR5WSZMUL_cjs.clearDeviceId; }
169
+ get: function () { return chunkH2D52XCL_cjs.clearDeviceId; }
170
170
  });
171
171
  Object.defineProperty(exports, "createConsentClient", {
172
172
  enumerable: true,
173
- get: function () { return chunkR5WSZMUL_cjs.createConsentClient; }
173
+ get: function () { return chunkH2D52XCL_cjs.createConsentClient; }
174
174
  });
175
175
  Object.defineProperty(exports, "createGtagBridge", {
176
176
  enumerable: true,
177
- get: function () { return chunkR5WSZMUL_cjs.createGtagBridge; }
177
+ get: function () { return chunkH2D52XCL_cjs.createGtagBridge; }
178
178
  });
179
179
  Object.defineProperty(exports, "decodeConsentCookie", {
180
180
  enumerable: true,
181
- get: function () { return chunkR5WSZMUL_cjs.decodeConsentCookie; }
181
+ get: function () { return chunkH2D52XCL_cjs.decodeConsentCookie; }
182
182
  });
183
183
  Object.defineProperty(exports, "deleteConsentCookie", {
184
184
  enumerable: true,
185
- get: function () { return chunkR5WSZMUL_cjs.deleteConsentCookie; }
185
+ get: function () { return chunkH2D52XCL_cjs.deleteConsentCookie; }
186
186
  });
187
187
  Object.defineProperty(exports, "encodeConsentCookie", {
188
188
  enumerable: true,
189
- get: function () { return chunkR5WSZMUL_cjs.encodeConsentCookie; }
189
+ get: function () { return chunkH2D52XCL_cjs.encodeConsentCookie; }
190
190
  });
191
191
  Object.defineProperty(exports, "generateDeviceId", {
192
192
  enumerable: true,
193
- get: function () { return chunkR5WSZMUL_cjs.generateDeviceId; }
193
+ get: function () { return chunkH2D52XCL_cjs.generateDeviceId; }
194
194
  });
195
195
  Object.defineProperty(exports, "getOrCreateDeviceId", {
196
196
  enumerable: true,
197
- get: function () { return chunkR5WSZMUL_cjs.getOrCreateDeviceId; }
197
+ get: function () { return chunkH2D52XCL_cjs.getOrCreateDeviceId; }
198
198
  });
199
199
  Object.defineProperty(exports, "isUuidV7", {
200
200
  enumerable: true,
201
- get: function () { return chunkR5WSZMUL_cjs.isUuidV7; }
201
+ get: function () { return chunkH2D52XCL_cjs.isUuidV7; }
202
202
  });
203
203
  Object.defineProperty(exports, "isValidDeviceId", {
204
204
  enumerable: true,
205
- get: function () { return chunkR5WSZMUL_cjs.isValidDeviceId; }
205
+ get: function () { return chunkH2D52XCL_cjs.isValidDeviceId; }
206
206
  });
207
207
  Object.defineProperty(exports, "mapCategoriesToGtagParams", {
208
208
  enumerable: true,
209
- get: function () { return chunkR5WSZMUL_cjs.mapCategoriesToGtagParams; }
209
+ get: function () { return chunkH2D52XCL_cjs.mapCategoriesToGtagParams; }
210
210
  });
211
211
  Object.defineProperty(exports, "mapConsentWireToState", {
212
212
  enumerable: true,
213
- get: function () { return chunkR5WSZMUL_cjs.mapConsentWireToState; }
213
+ get: function () { return chunkH2D52XCL_cjs.mapConsentWireToState; }
214
214
  });
215
215
  Object.defineProperty(exports, "mapMeWireToState", {
216
216
  enumerable: true,
217
- get: function () { return chunkR5WSZMUL_cjs.mapMeWireToState; }
217
+ get: function () { return chunkH2D52XCL_cjs.mapMeWireToState; }
218
218
  });
219
219
  Object.defineProperty(exports, "mapSyncWireToResult", {
220
220
  enumerable: true,
221
- get: function () { return chunkR5WSZMUL_cjs.mapSyncWireToResult; }
221
+ get: function () { return chunkH2D52XCL_cjs.mapSyncWireToResult; }
222
222
  });
223
223
  Object.defineProperty(exports, "mapWithdrawWireToState", {
224
224
  enumerable: true,
225
- get: function () { return chunkR5WSZMUL_cjs.mapWithdrawWireToState; }
225
+ get: function () { return chunkH2D52XCL_cjs.mapWithdrawWireToState; }
226
226
  });
227
227
  Object.defineProperty(exports, "readConsentCookie", {
228
228
  enumerable: true,
229
- get: function () { return chunkR5WSZMUL_cjs.readConsentCookie; }
229
+ get: function () { return chunkH2D52XCL_cjs.readConsentCookie; }
230
230
  });
231
231
  Object.defineProperty(exports, "readConsentDismissalTimestamp", {
232
232
  enumerable: true,
233
- get: function () { return chunkR5WSZMUL_cjs.readConsentDismissalTimestamp; }
233
+ get: function () { return chunkH2D52XCL_cjs.readConsentDismissalTimestamp; }
234
234
  });
235
235
  Object.defineProperty(exports, "readConsentSessionMirror", {
236
236
  enumerable: true,
237
- get: function () { return chunkR5WSZMUL_cjs.readConsentSessionMirror; }
237
+ get: function () { return chunkH2D52XCL_cjs.readConsentSessionMirror; }
238
238
  });
239
239
  Object.defineProperty(exports, "useFFIDConsent", {
240
240
  enumerable: true,
241
- get: function () { return chunkR5WSZMUL_cjs.useFFIDConsent; }
241
+ get: function () { return chunkH2D52XCL_cjs.useFFIDConsent; }
242
242
  });
243
243
  Object.defineProperty(exports, "useFFIDConsentPreferences", {
244
244
  enumerable: true,
245
- get: function () { return chunkR5WSZMUL_cjs.useFFIDConsentPreferences; }
245
+ get: function () { return chunkH2D52XCL_cjs.useFFIDConsentPreferences; }
246
246
  });
247
247
  Object.defineProperty(exports, "writeConsentCookie", {
248
248
  enumerable: true,
249
- get: function () { return chunkR5WSZMUL_cjs.writeConsentCookie; }
249
+ get: function () { return chunkH2D52XCL_cjs.writeConsentCookie; }
250
250
  });
251
251
  Object.defineProperty(exports, "writeConsentDismissalTimestamp", {
252
252
  enumerable: true,
253
- get: function () { return chunkR5WSZMUL_cjs.writeConsentDismissalTimestamp; }
253
+ get: function () { return chunkH2D52XCL_cjs.writeConsentDismissalTimestamp; }
254
254
  });
255
255
  Object.defineProperty(exports, "writeConsentSessionMirror", {
256
256
  enumerable: true,
257
- get: function () { return chunkR5WSZMUL_cjs.writeConsentSessionMirror; }
257
+ get: function () { return chunkH2D52XCL_cjs.writeConsentSessionMirror; }
258
258
  });
@@ -1,5 +1,5 @@
1
- import { F as FFIDConsentResult, a as FFIDConsentState, b as FFIDConsentUpdate, c as FFIDConsentCategories, d as FFIDConsentSyncResult, e as FFIDConsentCategoryMetadata, f as FFIDCookiePolicy, P as PostConsentWire, G as GetConsentMeWire, g as PostSyncWire, h as PostWithdrawWire } from '../FFIDCookieLink-D1WwE_ZO.cjs';
2
- export { A as ALL_DENIED_EXCEPT_NECESSARY, C as CONSENT_COOKIE_MAX_AGE_SEC, i as CONSENT_COOKIE_NAME, j as CONSENT_DISMISSAL_TIMESTAMP_KEY, k as CONSENT_SESSION_STORAGE_KEY, l as COOKIE_VERSION, D as DEFAULT_CONSENT_ERROR_MESSAGES, m as DEFAULT_MERGE_WARNING_MESSAGES, n as DeviceIdSchema, o as FFIDAnalyticsProvider, p as FFIDAnalyticsProviderProps, q as FFIDConsentCategoriesSchema, r as FFIDConsentCategoryCode, s as FFIDConsentCategoryCodeSchema, t as FFIDConsentCategoryMetadataSchema, u as FFIDConsentContext, v as FFIDConsentContextValue, w as FFIDConsentError, x as FFIDConsentErrorCode, y as FFIDConsentMergeStrategy, z as FFIDConsentMergeStrategySchema, B as FFIDConsentMergeWarning, E as FFIDConsentMergeWarningEvent, H as FFIDConsentMergeWarningSchema, I as FFIDConsentSource, J as FFIDConsentSourceSchema, K as FFIDConsentStateSchema, L as FFIDConsentUpdateSchema, M as FFIDCookieBanner, N as FFIDCookieBannerClassNames, O as FFIDCookieBannerProps, Q as FFIDCookieLink, R as FFIDCookieLinkProps, S as FFIDCookiePolicySchema, T as FFIDCookieSettings, U as FFIDCookieSettingsClassNames, V as FFIDCookieSettingsProps, W as FFIDInternalConsentSource, X as FFIDInternalConsentSourceSchema, Y as FFIDPublicConsentSource, Z as FFIDPublicConsentSourceSchema, _ as FFID_CONSENT_ERROR_CODES, $ as FFID_CONSENT_NOT_DECIDED_STATE, a0 as GetCategoriesWire, a1 as GetCategoriesWireSchema, a2 as GetConsentMeWireSchema, a3 as GetDocumentWire, a4 as GetDocumentWireSchema, a5 as GtagBridge, a6 as GtagBridgeOptions, a7 as PostConsentRequest, a8 as PostConsentRequestSchema, a9 as PostConsentWireSchema, aa as PostSyncRequest, ab as PostSyncRequestSchema, ac as PostSyncWireSchema, ad as PostWithdrawWireSchema, ae as UseFFIDConsentPreferencesReturn, af as UseFFIDConsentReturn, ag as clearConsentDismissalTimestamp, ah as clearConsentSessionMirror, ai as createGtagBridge, aj as decodeConsentCookie, ak as deleteConsentCookie, al as encodeConsentCookie, am as mapCategoriesToGtagParams, an as readConsentCookie, ao as readConsentDismissalTimestamp, ap as readConsentSessionMirror, aq as useFFIDConsent, ar as useFFIDConsentPreferences, as as writeConsentCookie, at as writeConsentDismissalTimestamp, au as writeConsentSessionMirror } from '../FFIDCookieLink-D1WwE_ZO.cjs';
1
+ import { F as FFIDConsentResult, a as FFIDConsentState, b as FFIDConsentUpdate, c as FFIDConsentCategories, d as FFIDConsentSyncResult, e as FFIDConsentCategoryMetadata, f as FFIDCookiePolicy, P as PostConsentWire, G as GetConsentMeWire, g as PostSyncWire, h as PostWithdrawWire } from '../FFIDCookieLink-DrF5UXkd.cjs';
2
+ export { A as ALL_DENIED_EXCEPT_NECESSARY, C as CONSENT_COOKIE_MAX_AGE_SEC, i as CONSENT_COOKIE_NAME, j as CONSENT_DISMISSAL_TIMESTAMP_KEY, k as CONSENT_SESSION_STORAGE_KEY, l as COOKIE_VERSION, D as DEFAULT_CONSENT_ERROR_MESSAGES, m as DEFAULT_MERGE_WARNING_MESSAGES, n as DeviceIdSchema, o as FFIDAnalyticsProvider, p as FFIDAnalyticsProviderProps, q as FFIDConsentCategoriesSchema, r as FFIDConsentCategoryCode, s as FFIDConsentCategoryCodeSchema, t as FFIDConsentCategoryMetadataSchema, u as FFIDConsentContext, v as FFIDConsentContextValue, w as FFIDConsentError, x as FFIDConsentErrorCode, y as FFIDConsentMergeStrategy, z as FFIDConsentMergeStrategySchema, B as FFIDConsentMergeWarning, E as FFIDConsentMergeWarningEvent, H as FFIDConsentMergeWarningSchema, I as FFIDConsentSource, J as FFIDConsentSourceSchema, K as FFIDConsentStateSchema, L as FFIDConsentUpdateSchema, M as FFIDCookieBanner, N as FFIDCookieBannerClassNames, O as FFIDCookieBannerProps, Q as FFIDCookieLink, R as FFIDCookieLinkProps, S as FFIDCookiePolicySchema, T as FFIDCookieSettings, U as FFIDCookieSettingsClassNames, V as FFIDCookieSettingsProps, W as FFIDInternalConsentSource, X as FFIDInternalConsentSourceSchema, Y as FFIDPublicConsentSource, Z as FFIDPublicConsentSourceSchema, _ as FFID_CONSENT_ERROR_CODES, $ as FFID_CONSENT_NOT_DECIDED_STATE, a0 as GetCategoriesWire, a1 as GetCategoriesWireSchema, a2 as GetConsentMeWireSchema, a3 as GetDocumentWire, a4 as GetDocumentWireSchema, a5 as GtagBridge, a6 as GtagBridgeOptions, a7 as PostConsentRequest, a8 as PostConsentRequestSchema, a9 as PostConsentWireSchema, aa as PostSyncRequest, ab as PostSyncRequestSchema, ac as PostSyncWireSchema, ad as PostWithdrawWireSchema, ae as UseFFIDConsentPreferencesReturn, af as UseFFIDConsentReturn, ag as clearConsentDismissalTimestamp, ah as clearConsentSessionMirror, ai as createGtagBridge, aj as decodeConsentCookie, ak as deleteConsentCookie, al as encodeConsentCookie, am as mapCategoriesToGtagParams, an as readConsentCookie, ao as readConsentDismissalTimestamp, ap as readConsentSessionMirror, aq as useFFIDConsent, ar as useFFIDConsentPreferences, as as writeConsentCookie, at as writeConsentDismissalTimestamp, au as writeConsentSessionMirror } from '../FFIDCookieLink-DrF5UXkd.cjs';
3
3
  import 'react';
4
4
  import 'zod';
5
5
 
@@ -1,5 +1,5 @@
1
- import { F as FFIDConsentResult, a as FFIDConsentState, b as FFIDConsentUpdate, c as FFIDConsentCategories, d as FFIDConsentSyncResult, e as FFIDConsentCategoryMetadata, f as FFIDCookiePolicy, P as PostConsentWire, G as GetConsentMeWire, g as PostSyncWire, h as PostWithdrawWire } from '../FFIDCookieLink-D1WwE_ZO.js';
2
- export { A as ALL_DENIED_EXCEPT_NECESSARY, C as CONSENT_COOKIE_MAX_AGE_SEC, i as CONSENT_COOKIE_NAME, j as CONSENT_DISMISSAL_TIMESTAMP_KEY, k as CONSENT_SESSION_STORAGE_KEY, l as COOKIE_VERSION, D as DEFAULT_CONSENT_ERROR_MESSAGES, m as DEFAULT_MERGE_WARNING_MESSAGES, n as DeviceIdSchema, o as FFIDAnalyticsProvider, p as FFIDAnalyticsProviderProps, q as FFIDConsentCategoriesSchema, r as FFIDConsentCategoryCode, s as FFIDConsentCategoryCodeSchema, t as FFIDConsentCategoryMetadataSchema, u as FFIDConsentContext, v as FFIDConsentContextValue, w as FFIDConsentError, x as FFIDConsentErrorCode, y as FFIDConsentMergeStrategy, z as FFIDConsentMergeStrategySchema, B as FFIDConsentMergeWarning, E as FFIDConsentMergeWarningEvent, H as FFIDConsentMergeWarningSchema, I as FFIDConsentSource, J as FFIDConsentSourceSchema, K as FFIDConsentStateSchema, L as FFIDConsentUpdateSchema, M as FFIDCookieBanner, N as FFIDCookieBannerClassNames, O as FFIDCookieBannerProps, Q as FFIDCookieLink, R as FFIDCookieLinkProps, S as FFIDCookiePolicySchema, T as FFIDCookieSettings, U as FFIDCookieSettingsClassNames, V as FFIDCookieSettingsProps, W as FFIDInternalConsentSource, X as FFIDInternalConsentSourceSchema, Y as FFIDPublicConsentSource, Z as FFIDPublicConsentSourceSchema, _ as FFID_CONSENT_ERROR_CODES, $ as FFID_CONSENT_NOT_DECIDED_STATE, a0 as GetCategoriesWire, a1 as GetCategoriesWireSchema, a2 as GetConsentMeWireSchema, a3 as GetDocumentWire, a4 as GetDocumentWireSchema, a5 as GtagBridge, a6 as GtagBridgeOptions, a7 as PostConsentRequest, a8 as PostConsentRequestSchema, a9 as PostConsentWireSchema, aa as PostSyncRequest, ab as PostSyncRequestSchema, ac as PostSyncWireSchema, ad as PostWithdrawWireSchema, ae as UseFFIDConsentPreferencesReturn, af as UseFFIDConsentReturn, ag as clearConsentDismissalTimestamp, ah as clearConsentSessionMirror, ai as createGtagBridge, aj as decodeConsentCookie, ak as deleteConsentCookie, al as encodeConsentCookie, am as mapCategoriesToGtagParams, an as readConsentCookie, ao as readConsentDismissalTimestamp, ap as readConsentSessionMirror, aq as useFFIDConsent, ar as useFFIDConsentPreferences, as as writeConsentCookie, at as writeConsentDismissalTimestamp, au as writeConsentSessionMirror } from '../FFIDCookieLink-D1WwE_ZO.js';
1
+ import { F as FFIDConsentResult, a as FFIDConsentState, b as FFIDConsentUpdate, c as FFIDConsentCategories, d as FFIDConsentSyncResult, e as FFIDConsentCategoryMetadata, f as FFIDCookiePolicy, P as PostConsentWire, G as GetConsentMeWire, g as PostSyncWire, h as PostWithdrawWire } from '../FFIDCookieLink-DrF5UXkd.js';
2
+ export { A as ALL_DENIED_EXCEPT_NECESSARY, C as CONSENT_COOKIE_MAX_AGE_SEC, i as CONSENT_COOKIE_NAME, j as CONSENT_DISMISSAL_TIMESTAMP_KEY, k as CONSENT_SESSION_STORAGE_KEY, l as COOKIE_VERSION, D as DEFAULT_CONSENT_ERROR_MESSAGES, m as DEFAULT_MERGE_WARNING_MESSAGES, n as DeviceIdSchema, o as FFIDAnalyticsProvider, p as FFIDAnalyticsProviderProps, q as FFIDConsentCategoriesSchema, r as FFIDConsentCategoryCode, s as FFIDConsentCategoryCodeSchema, t as FFIDConsentCategoryMetadataSchema, u as FFIDConsentContext, v as FFIDConsentContextValue, w as FFIDConsentError, x as FFIDConsentErrorCode, y as FFIDConsentMergeStrategy, z as FFIDConsentMergeStrategySchema, B as FFIDConsentMergeWarning, E as FFIDConsentMergeWarningEvent, H as FFIDConsentMergeWarningSchema, I as FFIDConsentSource, J as FFIDConsentSourceSchema, K as FFIDConsentStateSchema, L as FFIDConsentUpdateSchema, M as FFIDCookieBanner, N as FFIDCookieBannerClassNames, O as FFIDCookieBannerProps, Q as FFIDCookieLink, R as FFIDCookieLinkProps, S as FFIDCookiePolicySchema, T as FFIDCookieSettings, U as FFIDCookieSettingsClassNames, V as FFIDCookieSettingsProps, W as FFIDInternalConsentSource, X as FFIDInternalConsentSourceSchema, Y as FFIDPublicConsentSource, Z as FFIDPublicConsentSourceSchema, _ as FFID_CONSENT_ERROR_CODES, $ as FFID_CONSENT_NOT_DECIDED_STATE, a0 as GetCategoriesWire, a1 as GetCategoriesWireSchema, a2 as GetConsentMeWireSchema, a3 as GetDocumentWire, a4 as GetDocumentWireSchema, a5 as GtagBridge, a6 as GtagBridgeOptions, a7 as PostConsentRequest, a8 as PostConsentRequestSchema, a9 as PostConsentWireSchema, aa as PostSyncRequest, ab as PostSyncRequestSchema, ac as PostSyncWireSchema, ad as PostWithdrawWireSchema, ae as UseFFIDConsentPreferencesReturn, af as UseFFIDConsentReturn, ag as clearConsentDismissalTimestamp, ah as clearConsentSessionMirror, ai as createGtagBridge, aj as decodeConsentCookie, ak as deleteConsentCookie, al as encodeConsentCookie, am as mapCategoriesToGtagParams, an as readConsentCookie, ao as readConsentDismissalTimestamp, ap as readConsentSessionMirror, aq as useFFIDConsent, ar as useFFIDConsentPreferences, as as writeConsentCookie, at as writeConsentDismissalTimestamp, au as writeConsentSessionMirror } from '../FFIDCookieLink-DrF5UXkd.js';
3
3
  import 'react';
4
4
  import 'zod';
5
5
 
@@ -1 +1 @@
1
- export { ALL_DENIED_EXCEPT_NECESSARY, CONSENT_COOKIE_MAX_AGE_SEC, CONSENT_COOKIE_NAME, CONSENT_DISMISSAL_TIMESTAMP_KEY, CONSENT_SESSION_STORAGE_KEY, COOKIE_VERSION, DEFAULT_CONSENT_ERROR_MESSAGES, DEFAULT_MERGE_WARNING_MESSAGES, DEVICE_ID_LOCAL_STORAGE_KEY, DEVICE_ID_SESSION_STORAGE_KEY, DeviceIdSchema, FFIDAnalyticsProvider, FFIDConsentCategoriesSchema, FFIDConsentCategoryCodeSchema, FFIDConsentCategoryMetadataSchema, FFIDConsentContext, FFIDConsentError, FFIDConsentMergeStrategySchema, FFIDConsentMergeWarningSchema, FFIDConsentSourceSchema, FFIDConsentStateSchema, FFIDConsentUpdateSchema, FFIDCookieBanner, FFIDCookieLink, FFIDCookiePolicySchema, FFIDCookieSettings, FFIDInternalConsentSourceSchema, FFIDPublicConsentSourceSchema, FFID_CONSENT_ERROR_CODES, FFID_CONSENT_NOT_DECIDED_STATE, GetCategoriesWireSchema, GetConsentMeWireSchema, GetDocumentWireSchema, PostConsentRequestSchema, PostConsentWireSchema, PostSyncRequestSchema, PostSyncWireSchema, PostWithdrawWireSchema, clearConsentDismissalTimestamp, clearConsentSessionMirror, clearDeviceId, createConsentClient, createGtagBridge, decodeConsentCookie, deleteConsentCookie, encodeConsentCookie, generateDeviceId, getOrCreateDeviceId, isUuidV7, isValidDeviceId, mapCategoriesToGtagParams, mapConsentWireToState, mapMeWireToState, mapSyncWireToResult, mapWithdrawWireToState, readConsentCookie, readConsentDismissalTimestamp, readConsentSessionMirror, useFFIDConsent, useFFIDConsentPreferences, writeConsentCookie, writeConsentDismissalTimestamp, writeConsentSessionMirror } from '../chunk-M4N2PUX6.js';
1
+ export { ALL_DENIED_EXCEPT_NECESSARY, CONSENT_COOKIE_MAX_AGE_SEC, CONSENT_COOKIE_NAME, CONSENT_DISMISSAL_TIMESTAMP_KEY, CONSENT_SESSION_STORAGE_KEY, COOKIE_VERSION, DEFAULT_CONSENT_ERROR_MESSAGES, DEFAULT_MERGE_WARNING_MESSAGES, DEVICE_ID_LOCAL_STORAGE_KEY, DEVICE_ID_SESSION_STORAGE_KEY, DeviceIdSchema, FFIDAnalyticsProvider, FFIDConsentCategoriesSchema, FFIDConsentCategoryCodeSchema, FFIDConsentCategoryMetadataSchema, FFIDConsentContext, FFIDConsentError, FFIDConsentMergeStrategySchema, FFIDConsentMergeWarningSchema, FFIDConsentSourceSchema, FFIDConsentStateSchema, FFIDConsentUpdateSchema, FFIDCookieBanner, FFIDCookieLink, FFIDCookiePolicySchema, FFIDCookieSettings, FFIDInternalConsentSourceSchema, FFIDPublicConsentSourceSchema, FFID_CONSENT_ERROR_CODES, FFID_CONSENT_NOT_DECIDED_STATE, GetCategoriesWireSchema, GetConsentMeWireSchema, GetDocumentWireSchema, PostConsentRequestSchema, PostConsentWireSchema, PostSyncRequestSchema, PostSyncWireSchema, PostWithdrawWireSchema, clearConsentDismissalTimestamp, clearConsentSessionMirror, clearDeviceId, createConsentClient, createGtagBridge, decodeConsentCookie, deleteConsentCookie, encodeConsentCookie, generateDeviceId, getOrCreateDeviceId, isUuidV7, isValidDeviceId, mapCategoriesToGtagParams, mapConsentWireToState, mapMeWireToState, mapSyncWireToResult, mapWithdrawWireToState, readConsentCookie, readConsentDismissalTimestamp, readConsentSessionMirror, useFFIDConsent, useFFIDConsentPreferences, writeConsentCookie, writeConsentDismissalTimestamp, writeConsentSessionMirror } from '../chunk-HAR75DTJ.js';