From 17832d2ba5486a20a25babd616213e5871b847a6 Mon Sep 17 00:00:00 2001 From: Ben Polinsky Date: Thu, 28 Mar 2024 08:55:13 -0400 Subject: [PATCH] fix validation; make defaultExpiryBufferInSeconds @internal --- .pipelines/build-docs.yaml | 2 ++ ...authorization-3a9f476e-a00c-4625-b5b4-31fbcca09420.json | 7 +++++++ packages/electron/src/common/constants.ts | 1 + 3 files changed, 10 insertions(+) create mode 100644 change/@itwin-electron-authorization-3a9f476e-a00c-4625-b5b4-31fbcca09420.json diff --git a/.pipelines/build-docs.yaml b/.pipelines/build-docs.yaml index d83043a4..be0e1f04 100644 --- a/.pipelines/build-docs.yaml +++ b/.pipelines/build-docs.yaml @@ -79,6 +79,8 @@ stages: parameters: checkout: itwinjs-core ignoreAudit: true + useCurrentAuthClientsDocsArtifact: true + - stage: Tag_Docs dependsOn: Validate_Docs diff --git a/change/@itwin-electron-authorization-3a9f476e-a00c-4625-b5b4-31fbcca09420.json b/change/@itwin-electron-authorization-3a9f476e-a00c-4625-b5b4-31fbcca09420.json new file mode 100644 index 00000000..8823b3ee --- /dev/null +++ b/change/@itwin-electron-authorization-3a9f476e-a00c-4625-b5b4-31fbcca09420.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "defaultExpiryBufferInSeconds should be internal", + "packageName": "@itwin/electron-authorization", + "email": "ben-polinsky@users.noreply.github.com", + "dependentChangeType": "patch" +} diff --git a/packages/electron/src/common/constants.ts b/packages/electron/src/common/constants.ts index 46dea5ff..69202526 100644 --- a/packages/electron/src/common/constants.ts +++ b/packages/electron/src/common/constants.ts @@ -5,5 +5,6 @@ /** * Refresh token 10 minutes before real expiration time (by default) + * @internal */ export const defaultExpiryBufferInSeconds = 600;