@promptbook/markdown-utils 0.104.0-16 โ†’ 0.104.0-18

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.
@@ -29,6 +29,7 @@ import type { GroupedCommitmentDefinition } from '../commitments/index';
29
29
  import { getGroupedCommitmentDefinitions } from '../commitments/index';
30
30
  import { NAME } from '../config';
31
31
  import { ADMIN_EMAIL } from '../config';
32
+ import { PROMPTBOOK_LEGAL_ENTITY } from '../config';
32
33
  import { ADMIN_GITHUB_NAME } from '../config';
33
34
  import { CLAIM } from '../config';
34
35
  import { PROMPTBOOK_COLOR } from '../config';
@@ -191,9 +192,9 @@ import { SectionTypes } from '../types/SectionType';
191
192
  import { TaskTypes } from '../types/TaskType';
192
193
  import { aboutPromptbookInformation } from '../utils/misc/aboutPromptbookInformation';
193
194
  import { $generateBookBoilerplate } from '../utils/random/$generateBookBoilerplate';
194
- import { CORE_SERVER } from '../../servers';
195
- import { REMOTE_SERVER_URLS } from '../../servers';
196
- import { AUTO_FEDERATED_AGENT_SERVER_URLS } from '../../servers';
195
+ import { CORE_AGENTS_SERVER } from '../../servers';
196
+ import { CORE_AGENTS_SERVER_ADAM_AGENT_NAME } from '../../servers';
197
+ import { PUBLIC_AGENTS_SERVERS } from '../../servers';
197
198
  export { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION };
198
199
  export { computeAgentHash };
199
200
  export { createAgentModelRequirements };
@@ -225,6 +226,7 @@ export type { GroupedCommitmentDefinition };
225
226
  export { getGroupedCommitmentDefinitions };
226
227
  export { NAME };
227
228
  export { ADMIN_EMAIL };
229
+ export { PROMPTBOOK_LEGAL_ENTITY };
228
230
  export { ADMIN_GITHUB_NAME };
229
231
  export { CLAIM };
230
232
  export { PROMPTBOOK_COLOR };
@@ -387,6 +389,6 @@ export { SectionTypes };
387
389
  export { TaskTypes };
388
390
  export { aboutPromptbookInformation };
389
391
  export { $generateBookBoilerplate };
390
- export { CORE_SERVER };
391
- export { REMOTE_SERVER_URLS };
392
- export { AUTO_FEDERATED_AGENT_SERVER_URLS };
392
+ export { CORE_AGENTS_SERVER };
393
+ export { CORE_AGENTS_SERVER_ADAM_AGENT_NAME };
394
+ export { PUBLIC_AGENTS_SERVERS };
@@ -7,7 +7,7 @@ import type { string_agent_name, string_agent_permanent_id, string_url, string_u
7
7
  *
8
8
  * @public exported from `@promptbook/core`
9
9
  */
10
- export declare function generatePlaceholderAgentProfileImageUrl(agentIdOrName: string_agent_permanent_id | string_agent_name, agentsServerUrl?: URL | string_url): string_url_image;
10
+ export declare function generatePlaceholderAgentProfileImageUrl(agentIdOrName: string_agent_permanent_id | string_agent_name, agentsServerUrl: URL | string_url): string_url_image;
11
11
  /**
12
12
  * TODO: [๐Ÿคน] Figure out best placeholder image generator https://i.pravatar.cc/1000?u=568
13
13
  */
@@ -1,6 +1,6 @@
1
1
  import type { CsvSettings } from './formats/csv/CsvSettings';
2
2
  import type { IntermediateFilesStrategy } from './types/IntermediateFilesStrategy';
3
- import type { string_app_id, string_email, string_name, string_promptbook_server_url } from './types/typeAliases';
3
+ import type { string_app_id, string_email, string_legal_entity, string_name, string_promptbook_server_url } from './types/typeAliases';
4
4
  import { Color } from './utils/color/Color';
5
5
  /**
6
6
  * Warning message for the generated sections and files files
@@ -22,6 +22,12 @@ export declare const NAME = "Promptbook";
22
22
  * @public exported from `@promptbook/core`
23
23
  */
24
24
  export declare const ADMIN_EMAIL: string_email;
25
+ /**
26
+ * Email of the responsible person
27
+ *
28
+ * @public exported from `@promptbook/core`
29
+ */
30
+ export declare const PROMPTBOOK_LEGAL_ENTITY: string_legal_entity;
25
31
  /**
26
32
  * Name of the responsible person for the Promptbook on GitHub
27
33
  *
@@ -295,6 +301,7 @@ export declare const MOMENT_ARG_THRESHOLDS: {
295
301
  /**
296
302
  * Default remote server URL for the Promptbook
297
303
  *
304
+ * @deprecated !!!! Deprecate all pipelines server
298
305
  * @public exported from `@promptbook/core`
299
306
  */
300
307
  export declare const DEFAULT_REMOTE_SERVER_URL: string_promptbook_server_url;
@@ -15,7 +15,7 @@ export declare const BOOK_LANGUAGE_VERSION: string_semantic_version;
15
15
  export declare const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version;
16
16
  /**
17
17
  * Represents the version string of the Promptbook engine.
18
- * It follows semantic versioning (e.g., `0.104.0-15`).
18
+ * It follows semantic versioning (e.g., `0.104.0-17`).
19
19
  *
20
20
  * @generated
21
21
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/markdown-utils",
3
- "version": "0.104.0-16",
3
+ "version": "0.104.0-18",
4
4
  "description": "Promptbook: Turn your company's scattered knowledge into AI ready books",
5
5
  "private": false,
6
6
  "sideEffects": false,
package/umd/index.umd.js CHANGED
@@ -24,7 +24,7 @@
24
24
  * @generated
25
25
  * @see https://github.com/webgptorg/promptbook
26
26
  */
27
- const PROMPTBOOK_ENGINE_VERSION = '0.104.0-16';
27
+ const PROMPTBOOK_ENGINE_VERSION = '0.104.0-18';
28
28
  /**
29
29
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
30
30
  * Note: [๐Ÿ’ž] Ignore a discrepancy between file name and entity name