@feelflow/ffid-sdk 5.13.0 → 5.14.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/{chunk-RATTQIKM.js → chunk-4II4R7NR.js} +175 -1
- package/dist/{chunk-JFFRO2Q5.cjs → chunk-BVDUQQHP.cjs} +175 -1
- package/dist/components/index.cjs +8 -8
- package/dist/components/index.d.cts +1 -1
- package/dist/components/index.d.ts +1 -1
- package/dist/components/index.js +1 -1
- package/dist/{ffid-client-BG0Qr86U.d.ts → ffid-client-9-lh0G_h.d.ts} +331 -111
- package/dist/{ffid-client-C3K3sAqq.d.cts → ffid-client-CKFxY60u.d.cts} +331 -111
- package/dist/{index-C6dnexXf.d.cts → index-CsVJTuPv.d.cts} +1 -112
- package/dist/{index-C6dnexXf.d.ts → index-CsVJTuPv.d.ts} +1 -112
- package/dist/index.cjs +41 -41
- package/dist/index.d.cts +341 -3
- package/dist/index.d.ts +341 -3
- package/dist/index.js +2 -2
- package/dist/legal/index.cjs +14 -0
- package/dist/legal/index.d.cts +16 -1
- package/dist/legal/index.d.ts +16 -1
- package/dist/legal/index.js +14 -0
- package/dist/server/index.cjs +175 -1
- package/dist/server/index.d.cts +2 -2
- package/dist/server/index.d.ts +2 -2
- package/dist/server/index.js +175 -1
- package/dist/server/test/index.d.cts +1 -1
- package/dist/server/test/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -644,75 +644,6 @@ type FFIDApiResponse<T> = {
|
|
|
644
644
|
error: FFIDError;
|
|
645
645
|
};
|
|
646
646
|
|
|
647
|
-
/**
|
|
648
|
-
* User profile for the authenticated user (returned by `getProfile` / `updateProfile`).
|
|
649
|
-
*
|
|
650
|
-
* Mirrors the FFID backend `UserProfile` shape exposed via
|
|
651
|
-
* `GET /api/v1/users/ext/me` and `PUT /api/v1/users/ext/me`.
|
|
652
|
-
*/
|
|
653
|
-
interface FFIDUserProfile {
|
|
654
|
-
/** User ID (UUID) */
|
|
655
|
-
id: string;
|
|
656
|
-
/** Email address */
|
|
657
|
-
email: string;
|
|
658
|
-
/** Display name (nullable when not set) */
|
|
659
|
-
displayName: string | null;
|
|
660
|
-
/** Avatar URL (nullable when not set) */
|
|
661
|
-
avatarUrl: string | null;
|
|
662
|
-
/** Phone number (nullable when not set) */
|
|
663
|
-
phone: string | null;
|
|
664
|
-
/** Company name (nullable when not set) */
|
|
665
|
-
companyName: string | null;
|
|
666
|
-
/** Department (nullable when not set) */
|
|
667
|
-
department: string | null;
|
|
668
|
-
/** Job title (nullable when not set) */
|
|
669
|
-
jobTitle: string | null;
|
|
670
|
-
/** IANA timezone (e.g. 'Asia/Tokyo') */
|
|
671
|
-
timezone: string;
|
|
672
|
-
/** Locale (e.g. 'ja', 'en') */
|
|
673
|
-
locale: string;
|
|
674
|
-
/** Arbitrary user preferences bag */
|
|
675
|
-
preferences: Record<string, unknown>;
|
|
676
|
-
/** Account creation timestamp (ISO 8601) */
|
|
677
|
-
createdAt: string;
|
|
678
|
-
/** Profile last-updated timestamp (ISO 8601) */
|
|
679
|
-
updatedAt: string;
|
|
680
|
-
}
|
|
681
|
-
/**
|
|
682
|
-
* Per-call options for profile methods (`getProfile` / `updateProfile`).
|
|
683
|
-
*
|
|
684
|
-
* Supply `accessToken` to forward an end-user Bearer token for the single call
|
|
685
|
-
* without mutating client-level auth state. Designed for server runtimes (Cloudflare
|
|
686
|
-
* Workers, Edge, Node) that receive a user-scoped Bearer per request and want to
|
|
687
|
-
* act as that user against `/api/v1/users/ext/me`.
|
|
688
|
-
*
|
|
689
|
-
* When `accessToken` is supplied with a non-empty value, it overrides the client's
|
|
690
|
-
* configured auth mode: authentication for that request uses only
|
|
691
|
-
* `Authorization: Bearer <accessToken>` (no service key, no cookie, no token-store
|
|
692
|
-
* lookup, no auto-refresh on 401). Non-auth headers such as `Content-Type` are
|
|
693
|
-
* still attached. SDK metadata headers (`User-Agent` / `X-FFID-SDK-Version`) are
|
|
694
|
-
* attached on non-browser runtimes only (Node.js / Cloudflare Workers / Edge /
|
|
695
|
-
* Deno); browsers receive an empty object to avoid iOS WebKit `fetch()` breakage
|
|
696
|
-
* (see #2417).
|
|
697
|
-
*
|
|
698
|
-
* Runtime semantics:
|
|
699
|
-
* - `accessToken` omitted (or `undefined`) → no override, configured `authMode` is used
|
|
700
|
-
* - `accessToken` is empty string / whitespace-only → rejected as `VALIDATION_ERROR`
|
|
701
|
-
* before any network call (prevents silent impersonation fallback when a caller
|
|
702
|
-
* extracts a missing/blank `Authorization` header into this field)
|
|
703
|
-
* - `accessToken` is a non-empty string → override activated
|
|
704
|
-
*/
|
|
705
|
-
interface FFIDProfileCallOptions {
|
|
706
|
-
/**
|
|
707
|
-
* End-user Bearer token forwarded for this single request.
|
|
708
|
-
*
|
|
709
|
-
* Must be a non-empty string when supplied. Passing `''` or a whitespace-only
|
|
710
|
-
* string is treated as a caller error and surfaces as `VALIDATION_ERROR` —
|
|
711
|
-
* this guards against the common footgun where a server runtime extracts the
|
|
712
|
-
* Bearer from an incoming request without checking the header is present.
|
|
713
|
-
*/
|
|
714
|
-
accessToken?: string;
|
|
715
|
-
}
|
|
716
647
|
/**
|
|
717
648
|
* Response shape from `GET /api/v1/ext/analytics/config?service=<code>`.
|
|
718
649
|
*
|
|
@@ -736,48 +667,6 @@ interface FFIDAnalyticsConfig {
|
|
|
736
667
|
*/
|
|
737
668
|
isActive: boolean;
|
|
738
669
|
}
|
|
739
|
-
/**
|
|
740
|
-
* Request payload for `updateProfile`.
|
|
741
|
-
*
|
|
742
|
-
* Mirrors the FFID backend `UpdateUserProfileRequest` shape. All fields are
|
|
743
|
-
* optional — only the supplied keys will be updated (partial update semantics).
|
|
744
|
-
*
|
|
745
|
-
* Per-field value semantics:
|
|
746
|
-
* - `undefined` / key omitted → field is untouched (partial update)
|
|
747
|
-
* - `null` → clears the field (stores SQL NULL in the DB)
|
|
748
|
-
* - `""` (empty string) → stored as a literal empty string, **not** treated as
|
|
749
|
-
* a clear. Use `null` when you want the DB value to become NULL
|
|
750
|
-
*
|
|
751
|
-
* `timezone` and `locale` are intentionally modeled as non-null in this
|
|
752
|
-
* request type (application-level invariant — the DB columns have DEFAULT
|
|
753
|
-
* values but no NOT NULL constraint, yet the server-side normalization
|
|
754
|
-
* pipeline assumes a string is always present). Pass a string to update the
|
|
755
|
-
* value, or omit the key to leave the current value in place. Do not pass
|
|
756
|
-
* `null` to clear — there is no meaningful "no timezone" state for a user.
|
|
757
|
-
*
|
|
758
|
-
* `preferences: null` is accepted and clears the column. Subsequent reads
|
|
759
|
-
* return `{}` because the FFID backend normalizes a null `preferences` column
|
|
760
|
-
* to an empty object (`toUserProfile` helper) before serializing the response —
|
|
761
|
-
* the SDK itself does not transform the payload.
|
|
762
|
-
*/
|
|
763
|
-
interface FFIDUpdateUserProfileRequest {
|
|
764
|
-
/** Display name (null clears the field) */
|
|
765
|
-
displayName?: string | null;
|
|
766
|
-
/** Phone number (null clears the field) */
|
|
767
|
-
phone?: string | null;
|
|
768
|
-
/** Company name (null clears the field) */
|
|
769
|
-
companyName?: string | null;
|
|
770
|
-
/** Department (null clears the field) */
|
|
771
|
-
department?: string | null;
|
|
772
|
-
/** Job title (null clears the field) */
|
|
773
|
-
jobTitle?: string | null;
|
|
774
|
-
/** IANA timezone (non-null; omit the key to leave unchanged) */
|
|
775
|
-
timezone?: string;
|
|
776
|
-
/** Locale (non-null; omit the key to leave unchanged) */
|
|
777
|
-
locale?: string;
|
|
778
|
-
/** Arbitrary user preferences bag (null clears the column; reads return {}) */
|
|
779
|
-
preferences?: Record<string, unknown> | null;
|
|
780
|
-
}
|
|
781
670
|
/**
|
|
782
671
|
* Discriminant for redirect failures that callers need to handle
|
|
783
672
|
* programmatically (vs. logging the human-readable `error` string).
|
|
@@ -1559,4 +1448,4 @@ interface FFIDInquiryFormPlaceholderContext {
|
|
|
1559
1448
|
}
|
|
1560
1449
|
declare function FFIDInquiryForm({ mode, prefill, organizations, preselectedOrganizationId, categories, termsVersion, privacyVersion, termsHref, privacyHref, turnstileToken, turnstileSlot, onSubmit, onChange, legalLayout, messagePlaceholder, requireCategorySelection, unstyled, classNames, locale, className, }: FFIDInquiryFormProps): react_jsx_runtime.JSX.Element;
|
|
1561
1450
|
|
|
1562
|
-
export { type
|
|
1451
|
+
export { type FFIDOAuthTokenResponse as $, type AnnouncementListResponse as A, type AnnouncementType as B, EFFECTIVE_SUBSCRIPTION_STATUSES as C, FFIDAnnouncementBadge as D, type EffectiveSubscriptionStatus as E, type FFIDSubscriptionStatus as F, FFIDAnnouncementList as G, type FFIDAnnouncementsError as H, type FFIDAnnouncementsErrorCode as I, type FFIDAnnouncementsServerResponse as J, type FFIDCacheConfig as K, type ListAnnouncementsOptions as L, type FFIDContextValue as M, type FFIDInquiryCategory as N, type FFIDInquiryCategorySite2026 as O, FFIDInquiryForm as P, type FFIDInquiryFormCategoryItem as Q, type FFIDInquiryFormClassNames as R, type FFIDInquiryFormLegalLayout as S, type FFIDInquiryFormOrganization as T, type FFIDInquiryFormPlaceholderContext as U, type FFIDInquiryFormPrefill as V, type FFIDInquiryFormProps as W, type FFIDInquiryFormSubmitData as X, type FFIDInquiryFormSubmitResult as Y, type FFIDJwtClaims as Z, FFIDLoginButton as _, type FFIDConfig as a, type FFIDOAuthUserInfoMemberRole as a0, FFIDOrganizationSwitcher as a1, type FFIDRedirectErrorCode as a2, type FFIDSeatModel as a3, type FFIDServiceAccessDenialReason as a4, type FFIDServiceAccessFailPolicy as a5, FFIDSubscriptionBadge as a6, type FFIDTokenIntrospectionResponse as a7, FFIDUserMenu as a8, FFID_INQUIRY_CATEGORIES as a9, FFID_INQUIRY_CATEGORIES_SITE_2026 as aa, type UseFFIDAnnouncementsOptions as ab, type UseFFIDAnnouncementsReturn as ac, isFFIDInquiryCategorySite2026 as ad, useFFIDAnnouncements as ae, type FFIDAnnouncementBadgeClassNames as af, type FFIDAnnouncementBadgeProps as ag, type FFIDAnnouncementListClassNames as ah, type FFIDAnnouncementListProps as ai, type FFIDLoginButtonProps as aj, type FFIDOrganizationSwitcherClassNames as ak, type FFIDOrganizationSwitcherProps as al, type FFIDSubscriptionBadgeClassNames as am, type FFIDSubscriptionBadgeProps as an, type FFIDUserMenuClassNames as ao, type FFIDUserMenuProps as ap, type FFIDApiResponse as b, type FFIDSessionResponse as c, type FFIDRedirectResult as d, type FFIDError as e, type FFIDSubscriptionCheckResponse as f, type FFIDCheckServiceAccessParams as g, type FFIDServiceAccessDecision as h, type FFIDAnalyticsConfig as i, type FFIDVerifyAccessTokenOptions as j, type FFIDOAuthUserInfo as k, type FFIDInquiryCreateParams as l, type FFIDInquiryCreateResponse as m, type FFIDAuthMode as n, type FFIDLogger as o, type FFIDCacheAdapter as p, type FFIDUser as q, type FFIDOrganization as r, type FFIDSubscription as s, type FFIDSubscriptionContextValue as t, type FFIDOAuthUserInfoSubscription as u, type FFIDAnnouncementsClientConfig as v, type FFIDAnnouncementsApiResponse as w, type FFIDAnnouncementsLogger as x, type Announcement as y, type AnnouncementStatus as z };
|
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkBVDUQQHP_cjs = require('./chunk-BVDUQQHP.cjs');
|
|
4
4
|
var chunkR5WSZMUL_cjs = require('./chunk-R5WSZMUL.cjs');
|
|
5
5
|
var react = require('react');
|
|
6
6
|
var jsxRuntime = require('react/jsx-runtime');
|
|
@@ -54,8 +54,8 @@ function defaultRedirect(url) {
|
|
|
54
54
|
}
|
|
55
55
|
function useRequireActiveSubscription(options) {
|
|
56
56
|
const { redirectTo, allowGrace = true, onRedirect } = options;
|
|
57
|
-
const { isLoading, error } =
|
|
58
|
-
const { effectiveStatus, isBlocked, isGrace } =
|
|
57
|
+
const { isLoading, error } = chunkBVDUQQHP_cjs.useFFIDContext();
|
|
58
|
+
const { effectiveStatus, isBlocked, isGrace } = chunkBVDUQQHP_cjs.useSubscription();
|
|
59
59
|
const hasFetchError = error !== null && effectiveStatus === null;
|
|
60
60
|
const shouldRedirect = !isLoading && !hasFetchError && (isBlocked || !allowGrace && isGrace || effectiveStatus === null);
|
|
61
61
|
react.useEffect(() => {
|
|
@@ -76,7 +76,7 @@ function useRequireActiveSubscription(options) {
|
|
|
76
76
|
}
|
|
77
77
|
function withFFIDAuth(Component, options = {}) {
|
|
78
78
|
const WrappedComponent = (props) => {
|
|
79
|
-
const { isLoading, isAuthenticated, login } =
|
|
79
|
+
const { isLoading, isAuthenticated, login } = chunkBVDUQQHP_cjs.useFFIDContext();
|
|
80
80
|
const hasRedirected = react.useRef(false);
|
|
81
81
|
react.useEffect(() => {
|
|
82
82
|
if (!isLoading && !isAuthenticated && options.redirectToLogin && !hasRedirected.current) {
|
|
@@ -105,151 +105,151 @@ var FFID_NEWSLETTER_DISPATCH_MAX_RECIPIENTS = 1e3;
|
|
|
105
105
|
|
|
106
106
|
Object.defineProperty(exports, "ACCESS_GRANTING_EFFECTIVE_STATUSES", {
|
|
107
107
|
enumerable: true,
|
|
108
|
-
get: function () { return
|
|
108
|
+
get: function () { return chunkBVDUQQHP_cjs.ACCESS_GRANTING_EFFECTIVE_STATUSES; }
|
|
109
109
|
});
|
|
110
110
|
Object.defineProperty(exports, "BLOCKING_EFFECTIVE_STATUSES", {
|
|
111
111
|
enumerable: true,
|
|
112
|
-
get: function () { return
|
|
112
|
+
get: function () { return chunkBVDUQQHP_cjs.BLOCKING_EFFECTIVE_STATUSES; }
|
|
113
113
|
});
|
|
114
114
|
Object.defineProperty(exports, "DEFAULT_API_BASE_URL", {
|
|
115
115
|
enumerable: true,
|
|
116
|
-
get: function () { return
|
|
116
|
+
get: function () { return chunkBVDUQQHP_cjs.DEFAULT_API_BASE_URL; }
|
|
117
117
|
});
|
|
118
118
|
Object.defineProperty(exports, "DEFAULT_OAUTH_SCOPES", {
|
|
119
119
|
enumerable: true,
|
|
120
|
-
get: function () { return
|
|
120
|
+
get: function () { return chunkBVDUQQHP_cjs.DEFAULT_OAUTH_SCOPES; }
|
|
121
121
|
});
|
|
122
122
|
Object.defineProperty(exports, "EFFECTIVE_SUBSCRIPTION_STATUSES", {
|
|
123
123
|
enumerable: true,
|
|
124
|
-
get: function () { return
|
|
124
|
+
get: function () { return chunkBVDUQQHP_cjs.EFFECTIVE_SUBSCRIPTION_STATUSES; }
|
|
125
125
|
});
|
|
126
126
|
Object.defineProperty(exports, "FFIDAnnouncementBadge", {
|
|
127
127
|
enumerable: true,
|
|
128
|
-
get: function () { return
|
|
128
|
+
get: function () { return chunkBVDUQQHP_cjs.FFIDAnnouncementBadge; }
|
|
129
129
|
});
|
|
130
130
|
Object.defineProperty(exports, "FFIDAnnouncementList", {
|
|
131
131
|
enumerable: true,
|
|
132
|
-
get: function () { return
|
|
132
|
+
get: function () { return chunkBVDUQQHP_cjs.FFIDAnnouncementList; }
|
|
133
133
|
});
|
|
134
134
|
Object.defineProperty(exports, "FFIDInquiryForm", {
|
|
135
135
|
enumerable: true,
|
|
136
|
-
get: function () { return
|
|
136
|
+
get: function () { return chunkBVDUQQHP_cjs.FFIDInquiryForm; }
|
|
137
137
|
});
|
|
138
138
|
Object.defineProperty(exports, "FFIDLoginButton", {
|
|
139
139
|
enumerable: true,
|
|
140
|
-
get: function () { return
|
|
140
|
+
get: function () { return chunkBVDUQQHP_cjs.FFIDLoginButton; }
|
|
141
141
|
});
|
|
142
142
|
Object.defineProperty(exports, "FFIDOrganizationSwitcher", {
|
|
143
143
|
enumerable: true,
|
|
144
|
-
get: function () { return
|
|
144
|
+
get: function () { return chunkBVDUQQHP_cjs.FFIDOrganizationSwitcher; }
|
|
145
145
|
});
|
|
146
146
|
Object.defineProperty(exports, "FFIDProvider", {
|
|
147
147
|
enumerable: true,
|
|
148
|
-
get: function () { return
|
|
148
|
+
get: function () { return chunkBVDUQQHP_cjs.FFIDProvider; }
|
|
149
149
|
});
|
|
150
150
|
Object.defineProperty(exports, "FFIDSDKError", {
|
|
151
151
|
enumerable: true,
|
|
152
|
-
get: function () { return
|
|
152
|
+
get: function () { return chunkBVDUQQHP_cjs.FFIDSDKError; }
|
|
153
153
|
});
|
|
154
154
|
Object.defineProperty(exports, "FFIDSubscriptionBadge", {
|
|
155
155
|
enumerable: true,
|
|
156
|
-
get: function () { return
|
|
156
|
+
get: function () { return chunkBVDUQQHP_cjs.FFIDSubscriptionBadge; }
|
|
157
157
|
});
|
|
158
158
|
Object.defineProperty(exports, "FFIDUserMenu", {
|
|
159
159
|
enumerable: true,
|
|
160
|
-
get: function () { return
|
|
160
|
+
get: function () { return chunkBVDUQQHP_cjs.FFIDUserMenu; }
|
|
161
161
|
});
|
|
162
162
|
Object.defineProperty(exports, "FFID_ANNOUNCEMENTS_ERROR_CODES", {
|
|
163
163
|
enumerable: true,
|
|
164
|
-
get: function () { return
|
|
164
|
+
get: function () { return chunkBVDUQQHP_cjs.FFID_ANNOUNCEMENTS_ERROR_CODES; }
|
|
165
165
|
});
|
|
166
166
|
Object.defineProperty(exports, "FFID_INQUIRY_CATEGORIES", {
|
|
167
167
|
enumerable: true,
|
|
168
|
-
get: function () { return
|
|
168
|
+
get: function () { return chunkBVDUQQHP_cjs.FFID_INQUIRY_CATEGORIES; }
|
|
169
169
|
});
|
|
170
170
|
Object.defineProperty(exports, "FFID_INQUIRY_CATEGORIES_SITE_2026", {
|
|
171
171
|
enumerable: true,
|
|
172
|
-
get: function () { return
|
|
172
|
+
get: function () { return chunkBVDUQQHP_cjs.FFID_INQUIRY_CATEGORIES_SITE_2026; }
|
|
173
173
|
});
|
|
174
174
|
Object.defineProperty(exports, "clearState", {
|
|
175
175
|
enumerable: true,
|
|
176
|
-
get: function () { return
|
|
176
|
+
get: function () { return chunkBVDUQQHP_cjs.cleanupStateStorage; }
|
|
177
177
|
});
|
|
178
178
|
Object.defineProperty(exports, "computeEffectiveStatusFromSession", {
|
|
179
179
|
enumerable: true,
|
|
180
|
-
get: function () { return
|
|
180
|
+
get: function () { return chunkBVDUQQHP_cjs.computeEffectiveStatusFromSession; }
|
|
181
181
|
});
|
|
182
182
|
Object.defineProperty(exports, "createFFIDAnnouncementsClient", {
|
|
183
183
|
enumerable: true,
|
|
184
|
-
get: function () { return
|
|
184
|
+
get: function () { return chunkBVDUQQHP_cjs.createFFIDAnnouncementsClient; }
|
|
185
185
|
});
|
|
186
186
|
Object.defineProperty(exports, "createFFIDClient", {
|
|
187
187
|
enumerable: true,
|
|
188
|
-
get: function () { return
|
|
188
|
+
get: function () { return chunkBVDUQQHP_cjs.createFFIDClient; }
|
|
189
189
|
});
|
|
190
190
|
Object.defineProperty(exports, "createTokenStore", {
|
|
191
191
|
enumerable: true,
|
|
192
|
-
get: function () { return
|
|
192
|
+
get: function () { return chunkBVDUQQHP_cjs.createTokenStore; }
|
|
193
193
|
});
|
|
194
194
|
Object.defineProperty(exports, "generateCodeChallenge", {
|
|
195
195
|
enumerable: true,
|
|
196
|
-
get: function () { return
|
|
196
|
+
get: function () { return chunkBVDUQQHP_cjs.generateCodeChallenge; }
|
|
197
197
|
});
|
|
198
198
|
Object.defineProperty(exports, "generateCodeVerifier", {
|
|
199
199
|
enumerable: true,
|
|
200
|
-
get: function () { return
|
|
200
|
+
get: function () { return chunkBVDUQQHP_cjs.generateCodeVerifier; }
|
|
201
201
|
});
|
|
202
202
|
Object.defineProperty(exports, "handleRedirectCallback", {
|
|
203
203
|
enumerable: true,
|
|
204
|
-
get: function () { return
|
|
204
|
+
get: function () { return chunkBVDUQQHP_cjs.handleRedirectCallback; }
|
|
205
205
|
});
|
|
206
206
|
Object.defineProperty(exports, "hasAccessFromUserinfo", {
|
|
207
207
|
enumerable: true,
|
|
208
|
-
get: function () { return
|
|
208
|
+
get: function () { return chunkBVDUQQHP_cjs.hasAccessFromUserinfo; }
|
|
209
209
|
});
|
|
210
210
|
Object.defineProperty(exports, "isBlockedFromUserinfo", {
|
|
211
211
|
enumerable: true,
|
|
212
|
-
get: function () { return
|
|
212
|
+
get: function () { return chunkBVDUQQHP_cjs.isBlockedFromUserinfo; }
|
|
213
213
|
});
|
|
214
214
|
Object.defineProperty(exports, "isFFIDInquiryCategorySite2026", {
|
|
215
215
|
enumerable: true,
|
|
216
|
-
get: function () { return
|
|
216
|
+
get: function () { return chunkBVDUQQHP_cjs.isFFIDInquiryCategorySite2026; }
|
|
217
217
|
});
|
|
218
218
|
Object.defineProperty(exports, "normalizeRedirectUri", {
|
|
219
219
|
enumerable: true,
|
|
220
|
-
get: function () { return
|
|
220
|
+
get: function () { return chunkBVDUQQHP_cjs.normalizeRedirectUri; }
|
|
221
221
|
});
|
|
222
222
|
Object.defineProperty(exports, "retrieveCodeVerifier", {
|
|
223
223
|
enumerable: true,
|
|
224
|
-
get: function () { return
|
|
224
|
+
get: function () { return chunkBVDUQQHP_cjs.retrieveCodeVerifier; }
|
|
225
225
|
});
|
|
226
226
|
Object.defineProperty(exports, "retrieveState", {
|
|
227
227
|
enumerable: true,
|
|
228
|
-
get: function () { return
|
|
228
|
+
get: function () { return chunkBVDUQQHP_cjs.retrieveState; }
|
|
229
229
|
});
|
|
230
230
|
Object.defineProperty(exports, "storeCodeVerifier", {
|
|
231
231
|
enumerable: true,
|
|
232
|
-
get: function () { return
|
|
232
|
+
get: function () { return chunkBVDUQQHP_cjs.storeCodeVerifier; }
|
|
233
233
|
});
|
|
234
234
|
Object.defineProperty(exports, "storeState", {
|
|
235
235
|
enumerable: true,
|
|
236
|
-
get: function () { return
|
|
236
|
+
get: function () { return chunkBVDUQQHP_cjs.storeState; }
|
|
237
237
|
});
|
|
238
238
|
Object.defineProperty(exports, "useFFID", {
|
|
239
239
|
enumerable: true,
|
|
240
|
-
get: function () { return
|
|
240
|
+
get: function () { return chunkBVDUQQHP_cjs.useFFID; }
|
|
241
241
|
});
|
|
242
242
|
Object.defineProperty(exports, "useFFIDAnnouncements", {
|
|
243
243
|
enumerable: true,
|
|
244
|
-
get: function () { return
|
|
244
|
+
get: function () { return chunkBVDUQQHP_cjs.useFFIDAnnouncements; }
|
|
245
245
|
});
|
|
246
246
|
Object.defineProperty(exports, "useSubscription", {
|
|
247
247
|
enumerable: true,
|
|
248
|
-
get: function () { return
|
|
248
|
+
get: function () { return chunkBVDUQQHP_cjs.useSubscription; }
|
|
249
249
|
});
|
|
250
250
|
Object.defineProperty(exports, "withSubscription", {
|
|
251
251
|
enumerable: true,
|
|
252
|
-
get: function () { return
|
|
252
|
+
get: function () { return chunkBVDUQQHP_cjs.withSubscription; }
|
|
253
253
|
});
|
|
254
254
|
Object.defineProperty(exports, "ALL_DENIED_EXCEPT_NECESSARY", {
|
|
255
255
|
enumerable: true,
|