@oxide/turnstile.ts 0.6.4 → 0.6.5
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/{Api-BKV5LC1y.d.cts → Api-ifXKB4NH.d.cts} +12 -6
- package/dist/{Api-BKV5LC1y.d.ts → Api-ifXKB4NH.d.ts} +12 -6
- package/dist/Api.d.cts +1 -1
- package/dist/Api.d.ts +1 -1
- package/dist/retry.d.cts +1 -1
- package/dist/retry.d.ts +1 -1
- package/dist/validate.cjs +13 -1
- package/dist/validate.d.cts +846 -548
- package/dist/validate.d.ts +846 -548
- package/dist/validate.js +11 -1
- package/package.json +1 -1
- package/src/Api.ts +36 -17
- package/src/validate.ts +11 -1
|
@@ -451,8 +451,11 @@ type EmailConfig = {
|
|
|
451
451
|
'subject': string;
|
|
452
452
|
'textTemplate': string;
|
|
453
453
|
};
|
|
454
|
+
type TransitionMessage = 'Default' | 'Omit' | {
|
|
455
|
+
'Custom': EmailConfig;
|
|
456
|
+
};
|
|
454
457
|
type TransitionBody = {
|
|
455
|
-
'message'
|
|
458
|
+
'message': TransitionMessage;
|
|
456
459
|
};
|
|
457
460
|
type BatchParameter_for_TransitionBody = {
|
|
458
461
|
'all': TransitionBody;
|
|
@@ -799,6 +802,9 @@ type Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchE
|
|
|
799
802
|
'state': OperationState;
|
|
800
803
|
'updatedAt': Date;
|
|
801
804
|
};
|
|
805
|
+
type OptionalTransitionBody = {
|
|
806
|
+
'message'?: EmailConfig;
|
|
807
|
+
};
|
|
802
808
|
type RegisterApplicant = {
|
|
803
809
|
'email': string;
|
|
804
810
|
};
|
|
@@ -1260,19 +1266,19 @@ declare class Api extends HttpClient {
|
|
|
1260
1266
|
}, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
|
|
1261
1267
|
transitionApplicationToInterviewing: ({ path, body, }: {
|
|
1262
1268
|
path: TransitionApplicationToInterviewingPathParams;
|
|
1263
|
-
body:
|
|
1269
|
+
body: OptionalTransitionBody;
|
|
1264
1270
|
}, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
|
|
1265
1271
|
transitionApplicationToNextSteps: ({ path, body, }: {
|
|
1266
1272
|
path: TransitionApplicationToNextStepsPathParams;
|
|
1267
|
-
body:
|
|
1273
|
+
body: OptionalTransitionBody;
|
|
1268
1274
|
}, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
|
|
1269
1275
|
transitionApplicationToOffer: ({ path, body, }: {
|
|
1270
1276
|
path: TransitionApplicationToOfferPathParams;
|
|
1271
|
-
body:
|
|
1277
|
+
body: OptionalTransitionBody;
|
|
1272
1278
|
}, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
|
|
1273
1279
|
transitionApplicationToWithdrawn: ({ path, body, }: {
|
|
1274
1280
|
path: TransitionApplicationToWithdrawnPathParams;
|
|
1275
|
-
body:
|
|
1281
|
+
body: OptionalTransitionBody;
|
|
1276
1282
|
}, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
|
|
1277
1283
|
listApplicationSummaries: ({ query, }: {
|
|
1278
1284
|
query?: ListApplicationSummariesQueryParams;
|
|
@@ -1569,4 +1575,4 @@ declare class Api extends HttpClient {
|
|
|
1569
1575
|
ws: {};
|
|
1570
1576
|
}
|
|
1571
1577
|
|
|
1572
|
-
export { type ApplicationState as $, type ApiConfig as A, type AddMagicLinkRedirectBody as B, type AddOAuthClientRedirectBody as C, type DocumentParent as D, type ApiKeyCreateParams_for_TurnstilePermission as E, type FullParams as F, type ApiKeyResponse_for_TurnstilePermission as G, type TypedUuidForUserProviderId as H, type ApiUserContactEmail as I, type ApiUserEmailUpdateParams as J, type ApiUserProvider as K, type ApiUser_for_TurnstilePermission as L, type ApiUserInfo_for_TurnstilePermission as M, type ApiUserLinkRequestPayload as N, type ApiUserLinkRequestResponse as O, type Permissions_for_TurnstilePermission as P, type ApiUserProviderLinkPayload as Q, type ApiUserUpdateParams_for_TurnstilePermission as R, type SecretString as S, type TypedUuidForApplicantId as T, type Applicant as U, type TypedUuidForApplicantContactId as V, type ApplicantContactField as W, type ApplicantContact as X, type ApplicantInfo as Y, type InterviewingState as Z, type OfferState as _, Api as a, type
|
|
1578
|
+
export { type ApplicationState as $, type ApiConfig as A, type AddMagicLinkRedirectBody as B, type AddOAuthClientRedirectBody as C, type DocumentParent as D, type ApiKeyCreateParams_for_TurnstilePermission as E, type FullParams as F, type ApiKeyResponse_for_TurnstilePermission as G, type TypedUuidForUserProviderId as H, type ApiUserContactEmail as I, type ApiUserEmailUpdateParams as J, type ApiUserProvider as K, type ApiUser_for_TurnstilePermission as L, type ApiUserInfo_for_TurnstilePermission as M, type ApiUserLinkRequestPayload as N, type ApiUserLinkRequestResponse as O, type Permissions_for_TurnstilePermission as P, type ApiUserProviderLinkPayload as Q, type ApiUserUpdateParams_for_TurnstilePermission as R, type SecretString as S, type TypedUuidForApplicantId as T, type Applicant as U, type TypedUuidForApplicantContactId as V, type ApplicantContactField as W, type ApplicantContact as X, type ApplicantInfo as Y, type InterviewingState as Z, type OfferState as _, Api as a, type MagicLink as a$, type Application as a0, type DocumentKind as a1, type DocumentSource as a2, type Document as a3, type ApplicationBundle as a4, type TypedUuidForApplicationInterviewCodeId as a5, type ApplicationInterviewCode as a6, type TypedUuidForApplicationStateRecordId as a7, type ApplicationStateRecord as a8, type ReviewScore as a9, type RenderedEmail as aA, type RecipientId as aB, type NotificationStatus as aC, type Notification_for_RenderedEmail as aD, type CreatedAssignment as aE, type CreateReviewAssignmentsResponse as aF, type CreateRole as aG, type CreatedApplication as aH, type Department as aI, type DocumentUploadUrlResponse as aJ, type EmailApplicantBody as aK, type GetUserResponse_for_TurnstilePermission as aL, type InitialApiKeyResponse_for_TurnstilePermission as aM, type TypedUuidForMagicLinkSecretId as aN, type InitialMagicLinkSecretResponse as aO, type TypedUuidForOAuthSecretId as aP, type InitialOAuthClientSecretResponse as aQ, type TypedUuidForInterviewAttendeeId as aR, type InterviewAttendee as aS, type Interview as aT, type Interviewer as aU, type Jwk as aV, type Jwks as aW, type Listing as aX, type TypedUuidForMagicLinkRedirectUriId as aY, type MagicLinkRedirectUri as aZ, type MagicLinkSecret as a_, type Reviews as aa, type ExpandedApplicationSummary as ab, type Evaluator as ac, type ApplicationSummariesResponse as ad, type ApplicationSummaryResponse as ae, type AttachDocument as af, type EmailConfig as ag, type TransitionMessage as ah, type TransitionBody as ai, type BatchParameter_for_TransitionBody as aj, type ViewApplication as ak, type BatchParameter_for_ViewApplication as al, type CreateApplication as am, type CreateDepartment as an, type CreateDocument as ao, type RoleListingStatus as ap, type CreateListing as aq, type CreateMapper as ar, type CreateReview as as, type CreateReviewAssignments as at, type ReviewAssignmentCreationError as au, type TypedUuidForReviewAssignmentId as av, type ReviewAssignmentState as aw, type ReviewAssignment as ax, type TypedUuidForNotificationId as ay, type NotificationMedium as az, type ApiResult as b, type TransitionApplicationToDeferredPathParams as b$, type TypedUuidForMagicLinkAttemptId as b0, type MagicLinkExchangeRequest as b1, type MagicLinkExchangeResponse as b2, type MagicLinkMedium as b3, type MagicLinkSendRequest as b4, type MagicLinkSendResponse as b5, type Mapper as b6, type OAuthAuthzCodeExchangeBody as b7, type OAuthAuthzCodeExchangeResponse as b8, type TypedUuidForOAuthRedirectUriId as b9, type UpdateDocumentStatus as bA, type UpdateListing as bB, type UpdateReview as bC, type ScalarApplicationState as bD, type GetApiUserPathParams as bE, type UpdateApiUserPathParams as bF, type SetApiUserContactEmailPathParams as bG, type AddApiUserToGroupPathParams as bH, type RemoveApiUserFromGroupPathParams as bI, type LinkProviderPathParams as bJ, type ListApiUserTokensPathParams as bK, type CreateApiUserTokenPathParams as bL, type GetApiUserTokenPathParams as bM, type DeleteApiUserTokenPathParams as bN, type CreateLinkTokenPathParams as bO, type ListApplicantsQueryParams as bP, type ViewApplicantPathParams as bQ, type UpdateApplicantContactPathParams as bR, type ViewApplicationPathParams as bS, type ListApplicationReviewAssignmentsPathParams as bT, type CreateApplicationReviewAssignmentsPathParams as bU, type ViewApplicationBundlePathParams as bV, type AttachDocumentPathParams as bW, type CreateDocumentUploadUrlPathParams as bX, type GetApplicationInterviewCodePathParams as bY, type SubmitApplicationPathParams as bZ, type TransitionApplicationToDeclinedPathParams as b_, type OAuthClientRedirectUri as ba, type OAuthClientSecret as bb, type OAuthClient as bc, type OAuthProviderName as bd, type OAuthProviderInfo as be, type OpenIdConfiguration as bf, type OperationState as bg, type OperationTaskState as bh, type TypedUuidForOperationTaskId as bi, type OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue as bj, type Operation_for_TurnstilePermission_and_String as bk, type TransitionApplicationToDeclinedBatchEndpoint as bl, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint as bm, type TransitionApplicationToDeferredBatchEndpoint as bn, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint as bo, type OptionalTransitionBody as bp, type RegisterApplicant as bq, type Review as br, type Reviewer as bs, type ReviewerInfo as bt, type ReviewInfo as bu, type Role as bv, type TransitionApplicationToDeclinedBatch as bw, type TransitionApplicationToDeferredBatch as bx, type UpdateApplicantContact as by, type UpdateDocument as bz, type TypedUuidForUserId as c, type TransitionApplicationToInterviewingPathParams as c0, type TransitionApplicationToNextStepsPathParams as c1, type TransitionApplicationToOfferPathParams as c2, type TransitionApplicationToWithdrawnPathParams as c3, type ListApplicationSummariesQueryParams as c4, type ViewApplicationSummaryPathParams as c5, type ListOperationsQueryParams as c6, type GetOperationPathParams as c7, type ListOperationTasksQueryParams as c8, type ViewDepartmentPathParams as c9, type DeleteMagicLinkSecretPathParams as cA, type GetMappersQueryParams as cB, type DeleteMapperPathParams as cC, type ListNotificationsQueryParams as cD, type EmailApplicantPathParams as cE, type GetOauthClientPathParams as cF, type CreateOauthClientRedirectUriPathParams as cG, type DeleteOauthClientRedirectUriPathParams as cH, type CreateOauthClientSecretPathParams as cI, type DeleteOauthClientSecretPathParams as cJ, type ListReviewsQueryParams as cK, type ViewReviewPathParams as cL, type UpdateReviewPathParams as cM, type DeleteReviewPathParams as cN, type ListReviewersQueryParams as cO, type ViewRolePathParams as cP, type ErrorBody as cQ, type ErrorResult as cR, type ListDocumentsQueryParams as ca, type ViewDocumentPathParams as cb, type UpdateDocumentPathParams as cc, type DeleteDocumentPathParams as cd, type ViewDocumentDataPathParams as ce, type UpdateDocumentStatusPathParams as cf, type UpdateGroupPathParams as cg, type DeleteGroupPathParams as ch, type ListInterviewsQueryParams as ci, type ListInterviewersQueryParams as cj, type ViewListingPathParams as ck, type UpdateListingPathParams as cl, type UpdateListingStatePathParams as cm, type MagicLinkExchangePathParams as cn, type MagicLinkSendPathParams as co, type AuthzCodeRedirectPathParams as cp, type AuthzCodeRedirectQueryParams as cq, type AuthzCodeCallbackPathParams as cr, type AuthzCodeCallbackQueryParams as cs, type AuthzCodeExchangePathParams as ct, type GetDeviceProviderPathParams as cu, type ExchangeDeviceTokenPathParams as cv, type GetMagicLinkPathParams as cw, type CreateMagicLinkRedirectUriPathParams as cx, type DeleteMagicLinkRedirectUriPathParams as cy, type CreateMagicLinkSecretPathParams as cz, type TypedUuidForApplicationId as d, type TypedUuidForDocumentId as e, type TypedUuidForEmployeeId as f, type TypedUuidForOnboardingId as g, type TypedUuidForDepartmentId as h, type TypedUuidForRoleId as i, type TypedUuidForListingId as j, type TypedUuidForReviewerId as k, type TypedUuidForReviewId as l, type TypedUuidForInterviewerId as m, type TypedUuidForInterviewId as n, type TypedUuidForBackgroundCheckId as o, type TypedUuidForOperationId as p, type TypedUuidForApiKeyId as q, type TypedUuidForAccessGroupId as r, type TypedUuidForMapperId as s, type TypedUuidForOAuthClientId as t, type TypedUuidForMagicLinkId as u, type TurnstilePermission as v, type AccessGroupUpdateParams_for_TurnstilePermission as w, type AccessGroup_for_TurnstilePermission as x, type AccessTokenExchangeRequest as y, type AddGroupBody as z };
|
|
@@ -451,8 +451,11 @@ type EmailConfig = {
|
|
|
451
451
|
'subject': string;
|
|
452
452
|
'textTemplate': string;
|
|
453
453
|
};
|
|
454
|
+
type TransitionMessage = 'Default' | 'Omit' | {
|
|
455
|
+
'Custom': EmailConfig;
|
|
456
|
+
};
|
|
454
457
|
type TransitionBody = {
|
|
455
|
-
'message'
|
|
458
|
+
'message': TransitionMessage;
|
|
456
459
|
};
|
|
457
460
|
type BatchParameter_for_TransitionBody = {
|
|
458
461
|
'all': TransitionBody;
|
|
@@ -799,6 +802,9 @@ type Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchE
|
|
|
799
802
|
'state': OperationState;
|
|
800
803
|
'updatedAt': Date;
|
|
801
804
|
};
|
|
805
|
+
type OptionalTransitionBody = {
|
|
806
|
+
'message'?: EmailConfig;
|
|
807
|
+
};
|
|
802
808
|
type RegisterApplicant = {
|
|
803
809
|
'email': string;
|
|
804
810
|
};
|
|
@@ -1260,19 +1266,19 @@ declare class Api extends HttpClient {
|
|
|
1260
1266
|
}, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
|
|
1261
1267
|
transitionApplicationToInterviewing: ({ path, body, }: {
|
|
1262
1268
|
path: TransitionApplicationToInterviewingPathParams;
|
|
1263
|
-
body:
|
|
1269
|
+
body: OptionalTransitionBody;
|
|
1264
1270
|
}, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
|
|
1265
1271
|
transitionApplicationToNextSteps: ({ path, body, }: {
|
|
1266
1272
|
path: TransitionApplicationToNextStepsPathParams;
|
|
1267
|
-
body:
|
|
1273
|
+
body: OptionalTransitionBody;
|
|
1268
1274
|
}, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
|
|
1269
1275
|
transitionApplicationToOffer: ({ path, body, }: {
|
|
1270
1276
|
path: TransitionApplicationToOfferPathParams;
|
|
1271
|
-
body:
|
|
1277
|
+
body: OptionalTransitionBody;
|
|
1272
1278
|
}, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
|
|
1273
1279
|
transitionApplicationToWithdrawn: ({ path, body, }: {
|
|
1274
1280
|
path: TransitionApplicationToWithdrawnPathParams;
|
|
1275
|
-
body:
|
|
1281
|
+
body: OptionalTransitionBody;
|
|
1276
1282
|
}, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
|
|
1277
1283
|
listApplicationSummaries: ({ query, }: {
|
|
1278
1284
|
query?: ListApplicationSummariesQueryParams;
|
|
@@ -1569,4 +1575,4 @@ declare class Api extends HttpClient {
|
|
|
1569
1575
|
ws: {};
|
|
1570
1576
|
}
|
|
1571
1577
|
|
|
1572
|
-
export { type ApplicationState as $, type ApiConfig as A, type AddMagicLinkRedirectBody as B, type AddOAuthClientRedirectBody as C, type DocumentParent as D, type ApiKeyCreateParams_for_TurnstilePermission as E, type FullParams as F, type ApiKeyResponse_for_TurnstilePermission as G, type TypedUuidForUserProviderId as H, type ApiUserContactEmail as I, type ApiUserEmailUpdateParams as J, type ApiUserProvider as K, type ApiUser_for_TurnstilePermission as L, type ApiUserInfo_for_TurnstilePermission as M, type ApiUserLinkRequestPayload as N, type ApiUserLinkRequestResponse as O, type Permissions_for_TurnstilePermission as P, type ApiUserProviderLinkPayload as Q, type ApiUserUpdateParams_for_TurnstilePermission as R, type SecretString as S, type TypedUuidForApplicantId as T, type Applicant as U, type TypedUuidForApplicantContactId as V, type ApplicantContactField as W, type ApplicantContact as X, type ApplicantInfo as Y, type InterviewingState as Z, type OfferState as _, Api as a, type
|
|
1578
|
+
export { type ApplicationState as $, type ApiConfig as A, type AddMagicLinkRedirectBody as B, type AddOAuthClientRedirectBody as C, type DocumentParent as D, type ApiKeyCreateParams_for_TurnstilePermission as E, type FullParams as F, type ApiKeyResponse_for_TurnstilePermission as G, type TypedUuidForUserProviderId as H, type ApiUserContactEmail as I, type ApiUserEmailUpdateParams as J, type ApiUserProvider as K, type ApiUser_for_TurnstilePermission as L, type ApiUserInfo_for_TurnstilePermission as M, type ApiUserLinkRequestPayload as N, type ApiUserLinkRequestResponse as O, type Permissions_for_TurnstilePermission as P, type ApiUserProviderLinkPayload as Q, type ApiUserUpdateParams_for_TurnstilePermission as R, type SecretString as S, type TypedUuidForApplicantId as T, type Applicant as U, type TypedUuidForApplicantContactId as V, type ApplicantContactField as W, type ApplicantContact as X, type ApplicantInfo as Y, type InterviewingState as Z, type OfferState as _, Api as a, type MagicLink as a$, type Application as a0, type DocumentKind as a1, type DocumentSource as a2, type Document as a3, type ApplicationBundle as a4, type TypedUuidForApplicationInterviewCodeId as a5, type ApplicationInterviewCode as a6, type TypedUuidForApplicationStateRecordId as a7, type ApplicationStateRecord as a8, type ReviewScore as a9, type RenderedEmail as aA, type RecipientId as aB, type NotificationStatus as aC, type Notification_for_RenderedEmail as aD, type CreatedAssignment as aE, type CreateReviewAssignmentsResponse as aF, type CreateRole as aG, type CreatedApplication as aH, type Department as aI, type DocumentUploadUrlResponse as aJ, type EmailApplicantBody as aK, type GetUserResponse_for_TurnstilePermission as aL, type InitialApiKeyResponse_for_TurnstilePermission as aM, type TypedUuidForMagicLinkSecretId as aN, type InitialMagicLinkSecretResponse as aO, type TypedUuidForOAuthSecretId as aP, type InitialOAuthClientSecretResponse as aQ, type TypedUuidForInterviewAttendeeId as aR, type InterviewAttendee as aS, type Interview as aT, type Interviewer as aU, type Jwk as aV, type Jwks as aW, type Listing as aX, type TypedUuidForMagicLinkRedirectUriId as aY, type MagicLinkRedirectUri as aZ, type MagicLinkSecret as a_, type Reviews as aa, type ExpandedApplicationSummary as ab, type Evaluator as ac, type ApplicationSummariesResponse as ad, type ApplicationSummaryResponse as ae, type AttachDocument as af, type EmailConfig as ag, type TransitionMessage as ah, type TransitionBody as ai, type BatchParameter_for_TransitionBody as aj, type ViewApplication as ak, type BatchParameter_for_ViewApplication as al, type CreateApplication as am, type CreateDepartment as an, type CreateDocument as ao, type RoleListingStatus as ap, type CreateListing as aq, type CreateMapper as ar, type CreateReview as as, type CreateReviewAssignments as at, type ReviewAssignmentCreationError as au, type TypedUuidForReviewAssignmentId as av, type ReviewAssignmentState as aw, type ReviewAssignment as ax, type TypedUuidForNotificationId as ay, type NotificationMedium as az, type ApiResult as b, type TransitionApplicationToDeferredPathParams as b$, type TypedUuidForMagicLinkAttemptId as b0, type MagicLinkExchangeRequest as b1, type MagicLinkExchangeResponse as b2, type MagicLinkMedium as b3, type MagicLinkSendRequest as b4, type MagicLinkSendResponse as b5, type Mapper as b6, type OAuthAuthzCodeExchangeBody as b7, type OAuthAuthzCodeExchangeResponse as b8, type TypedUuidForOAuthRedirectUriId as b9, type UpdateDocumentStatus as bA, type UpdateListing as bB, type UpdateReview as bC, type ScalarApplicationState as bD, type GetApiUserPathParams as bE, type UpdateApiUserPathParams as bF, type SetApiUserContactEmailPathParams as bG, type AddApiUserToGroupPathParams as bH, type RemoveApiUserFromGroupPathParams as bI, type LinkProviderPathParams as bJ, type ListApiUserTokensPathParams as bK, type CreateApiUserTokenPathParams as bL, type GetApiUserTokenPathParams as bM, type DeleteApiUserTokenPathParams as bN, type CreateLinkTokenPathParams as bO, type ListApplicantsQueryParams as bP, type ViewApplicantPathParams as bQ, type UpdateApplicantContactPathParams as bR, type ViewApplicationPathParams as bS, type ListApplicationReviewAssignmentsPathParams as bT, type CreateApplicationReviewAssignmentsPathParams as bU, type ViewApplicationBundlePathParams as bV, type AttachDocumentPathParams as bW, type CreateDocumentUploadUrlPathParams as bX, type GetApplicationInterviewCodePathParams as bY, type SubmitApplicationPathParams as bZ, type TransitionApplicationToDeclinedPathParams as b_, type OAuthClientRedirectUri as ba, type OAuthClientSecret as bb, type OAuthClient as bc, type OAuthProviderName as bd, type OAuthProviderInfo as be, type OpenIdConfiguration as bf, type OperationState as bg, type OperationTaskState as bh, type TypedUuidForOperationTaskId as bi, type OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue as bj, type Operation_for_TurnstilePermission_and_String as bk, type TransitionApplicationToDeclinedBatchEndpoint as bl, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint as bm, type TransitionApplicationToDeferredBatchEndpoint as bn, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint as bo, type OptionalTransitionBody as bp, type RegisterApplicant as bq, type Review as br, type Reviewer as bs, type ReviewerInfo as bt, type ReviewInfo as bu, type Role as bv, type TransitionApplicationToDeclinedBatch as bw, type TransitionApplicationToDeferredBatch as bx, type UpdateApplicantContact as by, type UpdateDocument as bz, type TypedUuidForUserId as c, type TransitionApplicationToInterviewingPathParams as c0, type TransitionApplicationToNextStepsPathParams as c1, type TransitionApplicationToOfferPathParams as c2, type TransitionApplicationToWithdrawnPathParams as c3, type ListApplicationSummariesQueryParams as c4, type ViewApplicationSummaryPathParams as c5, type ListOperationsQueryParams as c6, type GetOperationPathParams as c7, type ListOperationTasksQueryParams as c8, type ViewDepartmentPathParams as c9, type DeleteMagicLinkSecretPathParams as cA, type GetMappersQueryParams as cB, type DeleteMapperPathParams as cC, type ListNotificationsQueryParams as cD, type EmailApplicantPathParams as cE, type GetOauthClientPathParams as cF, type CreateOauthClientRedirectUriPathParams as cG, type DeleteOauthClientRedirectUriPathParams as cH, type CreateOauthClientSecretPathParams as cI, type DeleteOauthClientSecretPathParams as cJ, type ListReviewsQueryParams as cK, type ViewReviewPathParams as cL, type UpdateReviewPathParams as cM, type DeleteReviewPathParams as cN, type ListReviewersQueryParams as cO, type ViewRolePathParams as cP, type ErrorBody as cQ, type ErrorResult as cR, type ListDocumentsQueryParams as ca, type ViewDocumentPathParams as cb, type UpdateDocumentPathParams as cc, type DeleteDocumentPathParams as cd, type ViewDocumentDataPathParams as ce, type UpdateDocumentStatusPathParams as cf, type UpdateGroupPathParams as cg, type DeleteGroupPathParams as ch, type ListInterviewsQueryParams as ci, type ListInterviewersQueryParams as cj, type ViewListingPathParams as ck, type UpdateListingPathParams as cl, type UpdateListingStatePathParams as cm, type MagicLinkExchangePathParams as cn, type MagicLinkSendPathParams as co, type AuthzCodeRedirectPathParams as cp, type AuthzCodeRedirectQueryParams as cq, type AuthzCodeCallbackPathParams as cr, type AuthzCodeCallbackQueryParams as cs, type AuthzCodeExchangePathParams as ct, type GetDeviceProviderPathParams as cu, type ExchangeDeviceTokenPathParams as cv, type GetMagicLinkPathParams as cw, type CreateMagicLinkRedirectUriPathParams as cx, type DeleteMagicLinkRedirectUriPathParams as cy, type CreateMagicLinkSecretPathParams as cz, type TypedUuidForApplicationId as d, type TypedUuidForDocumentId as e, type TypedUuidForEmployeeId as f, type TypedUuidForOnboardingId as g, type TypedUuidForDepartmentId as h, type TypedUuidForRoleId as i, type TypedUuidForListingId as j, type TypedUuidForReviewerId as k, type TypedUuidForReviewId as l, type TypedUuidForInterviewerId as m, type TypedUuidForInterviewId as n, type TypedUuidForBackgroundCheckId as o, type TypedUuidForOperationId as p, type TypedUuidForApiKeyId as q, type TypedUuidForAccessGroupId as r, type TypedUuidForMapperId as s, type TypedUuidForOAuthClientId as t, type TypedUuidForMagicLinkId as u, type TurnstilePermission as v, type AccessGroupUpdateParams_for_TurnstilePermission as w, type AccessGroup_for_TurnstilePermission as x, type AccessTokenExchangeRequest as y, type AddGroupBody as z };
|
package/dist/Api.d.cts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { w as AccessGroupUpdateParams_for_TurnstilePermission, x as AccessGroup_for_TurnstilePermission, y as AccessTokenExchangeRequest,
|
|
1
|
+
export { w as AccessGroupUpdateParams_for_TurnstilePermission, x as AccessGroup_for_TurnstilePermission, y as AccessTokenExchangeRequest, bH as AddApiUserToGroupPathParams, z as AddGroupBody, B as AddMagicLinkRedirectBody, C as AddOAuthClientRedirectBody, a as Api, A as ApiConfig, E as ApiKeyCreateParams_for_TurnstilePermission, G as ApiKeyResponse_for_TurnstilePermission, b as ApiResult, I as ApiUserContactEmail, J as ApiUserEmailUpdateParams, M as ApiUserInfo_for_TurnstilePermission, N as ApiUserLinkRequestPayload, O as ApiUserLinkRequestResponse, K as ApiUserProvider, Q as ApiUserProviderLinkPayload, R as ApiUserUpdateParams_for_TurnstilePermission, L as ApiUser_for_TurnstilePermission, U as Applicant, X as ApplicantContact, W as ApplicantContactField, Y as ApplicantInfo, a0 as Application, a4 as ApplicationBundle, a6 as ApplicationInterviewCode, $ as ApplicationState, a8 as ApplicationStateRecord, ad as ApplicationSummariesResponse, ae as ApplicationSummaryResponse, af as AttachDocument, bW as AttachDocumentPathParams, cr as AuthzCodeCallbackPathParams, cs as AuthzCodeCallbackQueryParams, ct as AuthzCodeExchangePathParams, cp as AuthzCodeRedirectPathParams, cq as AuthzCodeRedirectQueryParams, aj as BatchParameter_for_TransitionBody, al as BatchParameter_for_ViewApplication, bL as CreateApiUserTokenPathParams, am as CreateApplication, bU as CreateApplicationReviewAssignmentsPathParams, an as CreateDepartment, ao as CreateDocument, bX as CreateDocumentUploadUrlPathParams, bO as CreateLinkTokenPathParams, aq as CreateListing, cx as CreateMagicLinkRedirectUriPathParams, cz as CreateMagicLinkSecretPathParams, ar as CreateMapper, cG as CreateOauthClientRedirectUriPathParams, cI as CreateOauthClientSecretPathParams, as as CreateReview, at as CreateReviewAssignments, aF as CreateReviewAssignmentsResponse, aG as CreateRole, aH as CreatedApplication, aE as CreatedAssignment, bN as DeleteApiUserTokenPathParams, cd as DeleteDocumentPathParams, ch as DeleteGroupPathParams, cy as DeleteMagicLinkRedirectUriPathParams, cA as DeleteMagicLinkSecretPathParams, cC as DeleteMapperPathParams, cH as DeleteOauthClientRedirectUriPathParams, cJ as DeleteOauthClientSecretPathParams, cN as DeleteReviewPathParams, aI as Department, a3 as Document, a1 as DocumentKind, D as DocumentParent, a2 as DocumentSource, aJ as DocumentUploadUrlResponse, aK as EmailApplicantBody, cE as EmailApplicantPathParams, ag as EmailConfig, cQ as ErrorBody, cR as ErrorResult, ac as Evaluator, cv as ExchangeDeviceTokenPathParams, ab as ExpandedApplicationSummary, bE as GetApiUserPathParams, bM as GetApiUserTokenPathParams, bY as GetApplicationInterviewCodePathParams, cu as GetDeviceProviderPathParams, cw as GetMagicLinkPathParams, cB as GetMappersQueryParams, cF as GetOauthClientPathParams, c7 as GetOperationPathParams, aL as GetUserResponse_for_TurnstilePermission, aM as InitialApiKeyResponse_for_TurnstilePermission, aO as InitialMagicLinkSecretResponse, aQ as InitialOAuthClientSecretResponse, aT as Interview, aS as InterviewAttendee, aU as Interviewer, Z as InterviewingState, aV as Jwk, aW as Jwks, bJ as LinkProviderPathParams, bK as ListApiUserTokensPathParams, bP as ListApplicantsQueryParams, bT as ListApplicationReviewAssignmentsPathParams, c4 as ListApplicationSummariesQueryParams, ca as ListDocumentsQueryParams, cj as ListInterviewersQueryParams, ci as ListInterviewsQueryParams, cD as ListNotificationsQueryParams, c8 as ListOperationTasksQueryParams, c6 as ListOperationsQueryParams, cO as ListReviewersQueryParams, cK as ListReviewsQueryParams, aX as Listing, a$ as MagicLink, cn as MagicLinkExchangePathParams, b1 as MagicLinkExchangeRequest, b2 as MagicLinkExchangeResponse, b3 as MagicLinkMedium, aZ as MagicLinkRedirectUri, a_ as MagicLinkSecret, co as MagicLinkSendPathParams, b4 as MagicLinkSendRequest, b5 as MagicLinkSendResponse, b6 as Mapper, az as NotificationMedium, aC as NotificationStatus, aD as Notification_for_RenderedEmail, b7 as OAuthAuthzCodeExchangeBody, b8 as OAuthAuthzCodeExchangeResponse, bc as OAuthClient, ba as OAuthClientRedirectUri, bb as OAuthClientSecret, be as OAuthProviderInfo, bd as OAuthProviderName, _ as OfferState, bf as OpenIdConfiguration, bg as OperationState, bh as OperationTaskState, bj as OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue, bk as Operation_for_TurnstilePermission_and_String, bm as Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint, bo as Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint, bp as OptionalTransitionBody, P as Permissions_for_TurnstilePermission, aB as RecipientId, bq as RegisterApplicant, bI as RemoveApiUserFromGroupPathParams, aA as RenderedEmail, br as Review, ax as ReviewAssignment, au as ReviewAssignmentCreationError, aw as ReviewAssignmentState, bu as ReviewInfo, a9 as ReviewScore, bs as Reviewer, bt as ReviewerInfo, aa as Reviews, bv as Role, ap as RoleListingStatus, bD as ScalarApplicationState, S as SecretString, bG as SetApiUserContactEmailPathParams, bZ as SubmitApplicationPathParams, bw as TransitionApplicationToDeclinedBatch, bl as TransitionApplicationToDeclinedBatchEndpoint, b_ as TransitionApplicationToDeclinedPathParams, bx as TransitionApplicationToDeferredBatch, bn as TransitionApplicationToDeferredBatchEndpoint, b$ as TransitionApplicationToDeferredPathParams, c0 as TransitionApplicationToInterviewingPathParams, c1 as TransitionApplicationToNextStepsPathParams, c2 as TransitionApplicationToOfferPathParams, c3 as TransitionApplicationToWithdrawnPathParams, ai as TransitionBody, ah as TransitionMessage, v as TurnstilePermission, r as TypedUuidForAccessGroupId, q as TypedUuidForApiKeyId, V as TypedUuidForApplicantContactId, T as TypedUuidForApplicantId, d as TypedUuidForApplicationId, a5 as TypedUuidForApplicationInterviewCodeId, a7 as TypedUuidForApplicationStateRecordId, o as TypedUuidForBackgroundCheckId, h as TypedUuidForDepartmentId, e as TypedUuidForDocumentId, f as TypedUuidForEmployeeId, aR as TypedUuidForInterviewAttendeeId, n as TypedUuidForInterviewId, m as TypedUuidForInterviewerId, j as TypedUuidForListingId, b0 as TypedUuidForMagicLinkAttemptId, u as TypedUuidForMagicLinkId, aY as TypedUuidForMagicLinkRedirectUriId, aN as TypedUuidForMagicLinkSecretId, s as TypedUuidForMapperId, ay as TypedUuidForNotificationId, t as TypedUuidForOAuthClientId, b9 as TypedUuidForOAuthRedirectUriId, aP as TypedUuidForOAuthSecretId, g as TypedUuidForOnboardingId, p as TypedUuidForOperationId, bi as TypedUuidForOperationTaskId, av as TypedUuidForReviewAssignmentId, l as TypedUuidForReviewId, k as TypedUuidForReviewerId, i as TypedUuidForRoleId, c as TypedUuidForUserId, H as TypedUuidForUserProviderId, bF as UpdateApiUserPathParams, by as UpdateApplicantContact, bR as UpdateApplicantContactPathParams, bz as UpdateDocument, cc as UpdateDocumentPathParams, bA as UpdateDocumentStatus, cf as UpdateDocumentStatusPathParams, cg as UpdateGroupPathParams, bB as UpdateListing, cl as UpdateListingPathParams, cm as UpdateListingStatePathParams, bC as UpdateReview, cM as UpdateReviewPathParams, bQ as ViewApplicantPathParams, ak as ViewApplication, bV as ViewApplicationBundlePathParams, bS as ViewApplicationPathParams, c5 as ViewApplicationSummaryPathParams, c9 as ViewDepartmentPathParams, ce as ViewDocumentDataPathParams, cb as ViewDocumentPathParams, ck as ViewListingPathParams, cL as ViewReviewPathParams, cP as ViewRolePathParams, a as default } from './Api-ifXKB4NH.cjs';
|
package/dist/Api.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { w as AccessGroupUpdateParams_for_TurnstilePermission, x as AccessGroup_for_TurnstilePermission, y as AccessTokenExchangeRequest,
|
|
1
|
+
export { w as AccessGroupUpdateParams_for_TurnstilePermission, x as AccessGroup_for_TurnstilePermission, y as AccessTokenExchangeRequest, bH as AddApiUserToGroupPathParams, z as AddGroupBody, B as AddMagicLinkRedirectBody, C as AddOAuthClientRedirectBody, a as Api, A as ApiConfig, E as ApiKeyCreateParams_for_TurnstilePermission, G as ApiKeyResponse_for_TurnstilePermission, b as ApiResult, I as ApiUserContactEmail, J as ApiUserEmailUpdateParams, M as ApiUserInfo_for_TurnstilePermission, N as ApiUserLinkRequestPayload, O as ApiUserLinkRequestResponse, K as ApiUserProvider, Q as ApiUserProviderLinkPayload, R as ApiUserUpdateParams_for_TurnstilePermission, L as ApiUser_for_TurnstilePermission, U as Applicant, X as ApplicantContact, W as ApplicantContactField, Y as ApplicantInfo, a0 as Application, a4 as ApplicationBundle, a6 as ApplicationInterviewCode, $ as ApplicationState, a8 as ApplicationStateRecord, ad as ApplicationSummariesResponse, ae as ApplicationSummaryResponse, af as AttachDocument, bW as AttachDocumentPathParams, cr as AuthzCodeCallbackPathParams, cs as AuthzCodeCallbackQueryParams, ct as AuthzCodeExchangePathParams, cp as AuthzCodeRedirectPathParams, cq as AuthzCodeRedirectQueryParams, aj as BatchParameter_for_TransitionBody, al as BatchParameter_for_ViewApplication, bL as CreateApiUserTokenPathParams, am as CreateApplication, bU as CreateApplicationReviewAssignmentsPathParams, an as CreateDepartment, ao as CreateDocument, bX as CreateDocumentUploadUrlPathParams, bO as CreateLinkTokenPathParams, aq as CreateListing, cx as CreateMagicLinkRedirectUriPathParams, cz as CreateMagicLinkSecretPathParams, ar as CreateMapper, cG as CreateOauthClientRedirectUriPathParams, cI as CreateOauthClientSecretPathParams, as as CreateReview, at as CreateReviewAssignments, aF as CreateReviewAssignmentsResponse, aG as CreateRole, aH as CreatedApplication, aE as CreatedAssignment, bN as DeleteApiUserTokenPathParams, cd as DeleteDocumentPathParams, ch as DeleteGroupPathParams, cy as DeleteMagicLinkRedirectUriPathParams, cA as DeleteMagicLinkSecretPathParams, cC as DeleteMapperPathParams, cH as DeleteOauthClientRedirectUriPathParams, cJ as DeleteOauthClientSecretPathParams, cN as DeleteReviewPathParams, aI as Department, a3 as Document, a1 as DocumentKind, D as DocumentParent, a2 as DocumentSource, aJ as DocumentUploadUrlResponse, aK as EmailApplicantBody, cE as EmailApplicantPathParams, ag as EmailConfig, cQ as ErrorBody, cR as ErrorResult, ac as Evaluator, cv as ExchangeDeviceTokenPathParams, ab as ExpandedApplicationSummary, bE as GetApiUserPathParams, bM as GetApiUserTokenPathParams, bY as GetApplicationInterviewCodePathParams, cu as GetDeviceProviderPathParams, cw as GetMagicLinkPathParams, cB as GetMappersQueryParams, cF as GetOauthClientPathParams, c7 as GetOperationPathParams, aL as GetUserResponse_for_TurnstilePermission, aM as InitialApiKeyResponse_for_TurnstilePermission, aO as InitialMagicLinkSecretResponse, aQ as InitialOAuthClientSecretResponse, aT as Interview, aS as InterviewAttendee, aU as Interviewer, Z as InterviewingState, aV as Jwk, aW as Jwks, bJ as LinkProviderPathParams, bK as ListApiUserTokensPathParams, bP as ListApplicantsQueryParams, bT as ListApplicationReviewAssignmentsPathParams, c4 as ListApplicationSummariesQueryParams, ca as ListDocumentsQueryParams, cj as ListInterviewersQueryParams, ci as ListInterviewsQueryParams, cD as ListNotificationsQueryParams, c8 as ListOperationTasksQueryParams, c6 as ListOperationsQueryParams, cO as ListReviewersQueryParams, cK as ListReviewsQueryParams, aX as Listing, a$ as MagicLink, cn as MagicLinkExchangePathParams, b1 as MagicLinkExchangeRequest, b2 as MagicLinkExchangeResponse, b3 as MagicLinkMedium, aZ as MagicLinkRedirectUri, a_ as MagicLinkSecret, co as MagicLinkSendPathParams, b4 as MagicLinkSendRequest, b5 as MagicLinkSendResponse, b6 as Mapper, az as NotificationMedium, aC as NotificationStatus, aD as Notification_for_RenderedEmail, b7 as OAuthAuthzCodeExchangeBody, b8 as OAuthAuthzCodeExchangeResponse, bc as OAuthClient, ba as OAuthClientRedirectUri, bb as OAuthClientSecret, be as OAuthProviderInfo, bd as OAuthProviderName, _ as OfferState, bf as OpenIdConfiguration, bg as OperationState, bh as OperationTaskState, bj as OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue, bk as Operation_for_TurnstilePermission_and_String, bm as Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint, bo as Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint, bp as OptionalTransitionBody, P as Permissions_for_TurnstilePermission, aB as RecipientId, bq as RegisterApplicant, bI as RemoveApiUserFromGroupPathParams, aA as RenderedEmail, br as Review, ax as ReviewAssignment, au as ReviewAssignmentCreationError, aw as ReviewAssignmentState, bu as ReviewInfo, a9 as ReviewScore, bs as Reviewer, bt as ReviewerInfo, aa as Reviews, bv as Role, ap as RoleListingStatus, bD as ScalarApplicationState, S as SecretString, bG as SetApiUserContactEmailPathParams, bZ as SubmitApplicationPathParams, bw as TransitionApplicationToDeclinedBatch, bl as TransitionApplicationToDeclinedBatchEndpoint, b_ as TransitionApplicationToDeclinedPathParams, bx as TransitionApplicationToDeferredBatch, bn as TransitionApplicationToDeferredBatchEndpoint, b$ as TransitionApplicationToDeferredPathParams, c0 as TransitionApplicationToInterviewingPathParams, c1 as TransitionApplicationToNextStepsPathParams, c2 as TransitionApplicationToOfferPathParams, c3 as TransitionApplicationToWithdrawnPathParams, ai as TransitionBody, ah as TransitionMessage, v as TurnstilePermission, r as TypedUuidForAccessGroupId, q as TypedUuidForApiKeyId, V as TypedUuidForApplicantContactId, T as TypedUuidForApplicantId, d as TypedUuidForApplicationId, a5 as TypedUuidForApplicationInterviewCodeId, a7 as TypedUuidForApplicationStateRecordId, o as TypedUuidForBackgroundCheckId, h as TypedUuidForDepartmentId, e as TypedUuidForDocumentId, f as TypedUuidForEmployeeId, aR as TypedUuidForInterviewAttendeeId, n as TypedUuidForInterviewId, m as TypedUuidForInterviewerId, j as TypedUuidForListingId, b0 as TypedUuidForMagicLinkAttemptId, u as TypedUuidForMagicLinkId, aY as TypedUuidForMagicLinkRedirectUriId, aN as TypedUuidForMagicLinkSecretId, s as TypedUuidForMapperId, ay as TypedUuidForNotificationId, t as TypedUuidForOAuthClientId, b9 as TypedUuidForOAuthRedirectUriId, aP as TypedUuidForOAuthSecretId, g as TypedUuidForOnboardingId, p as TypedUuidForOperationId, bi as TypedUuidForOperationTaskId, av as TypedUuidForReviewAssignmentId, l as TypedUuidForReviewId, k as TypedUuidForReviewerId, i as TypedUuidForRoleId, c as TypedUuidForUserId, H as TypedUuidForUserProviderId, bF as UpdateApiUserPathParams, by as UpdateApplicantContact, bR as UpdateApplicantContactPathParams, bz as UpdateDocument, cc as UpdateDocumentPathParams, bA as UpdateDocumentStatus, cf as UpdateDocumentStatusPathParams, cg as UpdateGroupPathParams, bB as UpdateListing, cl as UpdateListingPathParams, cm as UpdateListingStatePathParams, bC as UpdateReview, cM as UpdateReviewPathParams, bQ as ViewApplicantPathParams, ak as ViewApplication, bV as ViewApplicationBundlePathParams, bS as ViewApplicationPathParams, c5 as ViewApplicationSummaryPathParams, c9 as ViewDepartmentPathParams, ce as ViewDocumentDataPathParams, cb as ViewDocumentPathParams, ck as ViewListingPathParams, cL as ViewReviewPathParams, cP as ViewRolePathParams, a as default } from './Api-ifXKB4NH.js';
|
package/dist/retry.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as ApiConfig, a as Api, F as FullParams, b as ApiResult } from './Api-
|
|
1
|
+
import { A as ApiConfig, a as Api, F as FullParams, b as ApiResult } from './Api-ifXKB4NH.cjs';
|
|
2
2
|
|
|
3
3
|
type RetryHandler = (err: any) => boolean;
|
|
4
4
|
type RetryHandlerFactory = (url: RequestInfo | URL, init: RequestInit) => RetryHandler;
|
package/dist/retry.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as ApiConfig, a as Api, F as FullParams, b as ApiResult } from './Api-
|
|
1
|
+
import { A as ApiConfig, a as Api, F as FullParams, b as ApiResult } from './Api-ifXKB4NH.js';
|
|
2
2
|
|
|
3
3
|
type RetryHandler = (err: any) => boolean;
|
|
4
4
|
type RetryHandlerFactory = (url: RequestInfo | URL, init: RequestInit) => RetryHandler;
|
package/dist/validate.cjs
CHANGED
|
@@ -182,6 +182,7 @@ __export(validate_exports, {
|
|
|
182
182
|
Operation_for_TurnstilePermission_and_String: () => Operation_for_TurnstilePermission_and_String,
|
|
183
183
|
Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint: () => Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint,
|
|
184
184
|
Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint: () => Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint,
|
|
185
|
+
OptionalTransitionBody: () => OptionalTransitionBody,
|
|
185
186
|
Permissions_for_TurnstilePermission: () => Permissions_for_TurnstilePermission,
|
|
186
187
|
RecipientId: () => RecipientId,
|
|
187
188
|
RegisterApplicant: () => RegisterApplicant,
|
|
@@ -216,6 +217,7 @@ __export(validate_exports, {
|
|
|
216
217
|
TransitionApplicationToOfferParams: () => TransitionApplicationToOfferParams,
|
|
217
218
|
TransitionApplicationToWithdrawnParams: () => TransitionApplicationToWithdrawnParams,
|
|
218
219
|
TransitionBody: () => TransitionBody,
|
|
220
|
+
TransitionMessage: () => TransitionMessage,
|
|
219
221
|
TurnstilePermission: () => TurnstilePermission,
|
|
220
222
|
TypedUuidForAccessGroupId: () => TypedUuidForAccessGroupId,
|
|
221
223
|
TypedUuidForApiKeyId: () => TypedUuidForApiKeyId,
|
|
@@ -833,7 +835,14 @@ var EmailConfig = import_zod.z.preprocess(
|
|
|
833
835
|
"textTemplate": import_zod.z.string()
|
|
834
836
|
})
|
|
835
837
|
);
|
|
836
|
-
var
|
|
838
|
+
var TransitionMessage = import_zod.z.preprocess(
|
|
839
|
+
processResponseBody,
|
|
840
|
+
import_zod.z.union([
|
|
841
|
+
import_zod.z.enum(["Default", "Omit"]),
|
|
842
|
+
import_zod.z.object({ "Custom": EmailConfig })
|
|
843
|
+
])
|
|
844
|
+
);
|
|
845
|
+
var TransitionBody = import_zod.z.preprocess(processResponseBody, import_zod.z.object({ "message": TransitionMessage }));
|
|
837
846
|
var BatchParameter_for_TransitionBody = import_zod.z.preprocess(
|
|
838
847
|
processResponseBody,
|
|
839
848
|
import_zod.z.union([
|
|
@@ -1250,6 +1259,7 @@ var Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEn
|
|
|
1250
1259
|
"updatedAt": import_zod.z.coerce.date()
|
|
1251
1260
|
})
|
|
1252
1261
|
);
|
|
1262
|
+
var OptionalTransitionBody = import_zod.z.preprocess(processResponseBody, import_zod.z.object({ "message": EmailConfig.optional() }));
|
|
1253
1263
|
var RegisterApplicant = import_zod.z.preprocess(processResponseBody, import_zod.z.object({ "email": import_zod.z.string() }));
|
|
1254
1264
|
var Review = import_zod.z.preprocess(
|
|
1255
1265
|
processResponseBody,
|
|
@@ -2393,6 +2403,7 @@ var GetSelfParams = import_zod.z.preprocess(
|
|
|
2393
2403
|
Operation_for_TurnstilePermission_and_String,
|
|
2394
2404
|
Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint,
|
|
2395
2405
|
Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint,
|
|
2406
|
+
OptionalTransitionBody,
|
|
2396
2407
|
Permissions_for_TurnstilePermission,
|
|
2397
2408
|
RecipientId,
|
|
2398
2409
|
RegisterApplicant,
|
|
@@ -2427,6 +2438,7 @@ var GetSelfParams = import_zod.z.preprocess(
|
|
|
2427
2438
|
TransitionApplicationToOfferParams,
|
|
2428
2439
|
TransitionApplicationToWithdrawnParams,
|
|
2429
2440
|
TransitionBody,
|
|
2441
|
+
TransitionMessage,
|
|
2430
2442
|
TurnstilePermission,
|
|
2431
2443
|
TypedUuidForAccessGroupId,
|
|
2432
2444
|
TypedUuidForApiKeyId,
|