@proveanything/smartlinks 1.14.0 → 1.14.3
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/docs/API_SUMMARY.md +1 -1
- package/dist/index.d.ts +1 -4
- package/dist/index.js +1 -1
- package/dist/types/index.d.ts +2 -0
- package/dist/types/index.js +2 -0
- package/docs/API_SUMMARY.md +1 -1
- package/package.json +1 -1
package/dist/docs/API_SUMMARY.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { initializeApi, isInitialized, hasAuthCredentials, configureSdkCache, invalidateCache, request, post, put, patch, del, sendCustomProxyMessage, getApiHeaders, isProxyEnabled } from "./http";
|
|
1
|
+
export { initializeApi, isInitialized, hasAuthCredentials, configureSdkCache, invalidateCache, request, post, put, patch, del, sendCustomProxyMessage, getApiHeaders, isProxyEnabled, setBearerToken } from "./http";
|
|
2
2
|
export * from "./api";
|
|
3
3
|
export * from "./types";
|
|
4
4
|
export { iframe } from "./iframe";
|
|
@@ -9,9 +9,6 @@ export type { PortalPathParams, ConditionParams, ConditionDebugOptions, Conditio
|
|
|
9
9
|
export type { LoginResponse, VerifyTokenResponse, AccountInfoResponse, AuthLocation, } from "./api/auth";
|
|
10
10
|
export type { UserAccountRegistrationRequest, } from "./types/auth";
|
|
11
11
|
export type { CommunicationEvent, CommsQueryByUser, CommsRecipientIdsQuery, CommsRecipientsWithoutActionQuery, CommsRecipientsWithActionQuery, RecipientId, RecipientWithOutcome, LogCommunicationEventBody, LogBulkCommunicationEventsBody, AppendResult, AppendBulkResult, CommsSettings, TopicConfig, CommsSettingsGetResponse, CommsSettingsPatchBody, CommsPublicTopicsResponse, UnsubscribeQuery, UnsubscribeResponse, CommsConsentUpsertRequest, CommsPreferencesUpsertRequest, CommsSubscribeRequest, CommsSubscribeResponse, CommsSubscriptionCheckQuery, CommsSubscriptionCheckResponse, CommsListMethodsQuery, CommsListMethodsResponse, RegisterEmailMethodRequest, RegisterSmsMethodRequest, RegisterMethodResponse, SubscriptionsResolveRequest, SubscriptionsResolveResponse, } from "./types/comms";
|
|
12
|
-
export type { AttestationResponse, AttestationCreateRequest, AttestationUpdateRequest, } from "./types/attestation";
|
|
13
|
-
export type { Attestation, LatestAttestation, AttestationSummaryBucket, ChainVerifyResult, CreateAttestationInput, AttestationSubjectType, AttestationVisibility, AttestationAudience, AttestationGroupBy, ListAttestationsParams, AttestationSummaryParams, AttestationLatestParams, AttestationVerifyParams, AttestationTreeSummaryParams, AttestationTreeLatestParams, ListAttestationsResponse, PublicListAttestationsResponse, AttestationSummaryResponse, PublicAttestationSummaryResponse, AttestationLatestResponse, PublicAttestationLatestResponse, AttestationTreeSummaryResponse, PublicAttestationTreeSummaryResponse, AttestationTreeLatestResponse, PublicAttestationTreeLatestResponse, } from "./types/attestations";
|
|
14
|
-
export type { Container, ContainerItem, ContainerStatus, ContainerItemType, CreateContainerInput, UpdateContainerInput, AddContainerItemsInput, RemoveContainerItemsInput, ListContainersParams, GetContainerParams, ListContainerItemsParams, FindContainersForItemParams, ListContainersResponse, PublicListContainersResponse, FindContainersForItemResponse, ContainerItemsResponse, AddContainerItemsResponse, RemoveContainerItemsResponse, } from "./types/containers";
|
|
15
12
|
export type { BatchResponse, BatchCreateRequest, BatchUpdateRequest, } from "./types/batch";
|
|
16
13
|
export type { VariantResponse, VariantCreateRequest, VariantUpdateRequest, } from "./types/variant";
|
|
17
14
|
export type { BroadcastSendRequest } from "./types/broadcasts";
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// src/index.ts
|
|
2
2
|
// Top-level entrypoint of the npm package. Re-export initializeApi + all namespaces.
|
|
3
|
-
export { initializeApi, isInitialized, hasAuthCredentials, configureSdkCache, invalidateCache, request, post, put, patch, del, sendCustomProxyMessage, getApiHeaders, isProxyEnabled } from "./http";
|
|
3
|
+
export { initializeApi, isInitialized, hasAuthCredentials, configureSdkCache, invalidateCache, request, post, put, patch, del, sendCustomProxyMessage, getApiHeaders, isProxyEnabled, setBearerToken } from "./http";
|
|
4
4
|
export * from "./api";
|
|
5
5
|
export * from "./types";
|
|
6
6
|
// Iframe namespace
|
package/dist/types/index.d.ts
CHANGED
|
@@ -28,6 +28,8 @@ export * from "./tags";
|
|
|
28
28
|
export * from "./navigation";
|
|
29
29
|
export * from "./order";
|
|
30
30
|
export * from "./crate";
|
|
31
|
+
export * from "./attestations";
|
|
32
|
+
export * from "./containers";
|
|
31
33
|
export * from "./authKit";
|
|
32
34
|
export * from "./iframeResponder";
|
|
33
35
|
export * from "./ai";
|
package/dist/types/index.js
CHANGED
|
@@ -30,6 +30,8 @@ export * from "./tags";
|
|
|
30
30
|
export * from "./navigation";
|
|
31
31
|
export * from "./order";
|
|
32
32
|
export * from "./crate";
|
|
33
|
+
export * from "./attestations";
|
|
34
|
+
export * from "./containers";
|
|
33
35
|
export * from "./authKit";
|
|
34
36
|
export * from "./iframeResponder";
|
|
35
37
|
export * from "./ai";
|
package/docs/API_SUMMARY.md
CHANGED