Skip to content

Commit d807074

Browse files
committed
chore: add-headers
1 parent ccdaff9 commit d807074

File tree

6 files changed

+26
-1
lines changed

6 files changed

+26
-1
lines changed

nx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
},
7171
"test": {
7272
"inputs": ["default", "^default", "noMarkdown", "^noMarkdown"],
73-
"dependsOn": ["^test", "^build", "^build"],
73+
"dependsOn": ["^test", "^build"],
7474
"outputs": ["{projectRoot}/coverage"],
7575
"cache": true
7676
},

packages/sdk-types/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ export * from './lib/am-callback.types.js';
99
export * from './lib/legacy-config.types.js';
1010
export * from './lib/legacy-mware.types.js';
1111
export * from './lib/tokens.types.js';
12+
export * from './lib/branded.types.js';
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Copyright (c) 2025 Ping Identity Corporation. All rights reserved.
3+
*
4+
* This software may be modified and distributed under the terms
5+
* of the MIT license. See the LICENSE file for details.
6+
*/
17
import { BrandedString } from './branded.types.js';
28

39
export type AuthorizeUrl = BrandedString<'AuthorizeUrl'>;
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1+
/*
2+
* Copyright (c) 2025 Ping Identity Corporation. All rights reserved.
3+
*
4+
* This software may be modified and distributed under the terms
5+
* of the MIT license. See the LICENSE file for details.
6+
*/
17
export type BrandedString<Brand extends string> = string & { readonly __brand: Brand };

packages/sdk-types/src/lib/config.types.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Copyright (c) 2025 Ping Identity Corporation. All rights reserved.
3+
*
4+
* This software may be modified and distributed under the terms
5+
* of the MIT license. See the LICENSE file for details.
6+
*/
17
import { AsyncServerConfig } from './legacy-config.types.js';
28
import { TokenStoreObject } from './tokens.types.js';
39

packages/sdk-utilities/src/lib/authorize/authorize.types.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Copyright (c) 2025 Ping Identity Corporation. All rights reserved.
3+
*
4+
* This software may be modified and distributed under the terms
5+
* of the MIT license. See the LICENSE file for details.
6+
*/
17
import type { LegacyConfigOptions } from '@forgerock/sdk-types';
28

39
/**

0 commit comments

Comments
 (0)