@fluidframework/agent-scheduler 2.0.0-dev.7.4.0.217212 → 2.0.0-dev.7.4.0.221926
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/CHANGELOG.md +4 -0
- package/api-extractor.json +0 -3
- package/dist/agent-scheduler-alpha.d.ts +6 -12
- package/dist/agent-scheduler-beta.d.ts +9 -0
- package/dist/agent-scheduler-public.d.ts +9 -0
- package/lib/agent-scheduler-alpha.d.ts +6 -12
- package/lib/agent-scheduler-beta.d.ts +9 -0
- package/lib/agent-scheduler-public.d.ts +9 -0
- package/lib/agent.d.ts.map +1 -1
- package/lib/index.d.ts +3 -3
- package/lib/index.d.ts.map +1 -1
- package/lib/scheduler.d.ts +1 -1
- package/lib/scheduler.d.ts.map +1 -1
- package/lib/taskSubscription.d.ts +1 -1
- package/lib/taskSubscription.d.ts.map +1 -1
- package/package.json +15 -25
package/CHANGELOG.md
CHANGED
package/api-extractor.json
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
|
|
3
3
|
"extends": "../../../common/build/build-common/api-extractor-base.json",
|
|
4
|
-
"dtsRollup": {
|
|
5
|
-
"enabled": true
|
|
6
|
-
},
|
|
7
4
|
"messages": {
|
|
8
5
|
"extractorMessageReporting": {
|
|
9
6
|
// TODO: Add missing documentation and remove this rule override
|
|
@@ -1,28 +1,22 @@
|
|
|
1
|
+
import { FluidDataStoreRuntime } from '@fluidframework/datastore';
|
|
1
2
|
import { IEvent } from '@fluidframework/core-interfaces';
|
|
2
3
|
import { IEventProvider } from '@fluidframework/core-interfaces';
|
|
4
|
+
import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions';
|
|
5
|
+
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions';
|
|
6
|
+
import { IFluidLoadable } from '@fluidframework/core-interfaces';
|
|
7
|
+
import { NamedFluidDataStoreRegistryEntry } from '@fluidframework/runtime-definitions';
|
|
8
|
+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
|
|
3
9
|
|
|
4
10
|
/* Excluded from this release type: AgentSchedulerFactory */
|
|
5
11
|
|
|
6
|
-
/* Excluded from this release type: FluidDataStoreRuntime */
|
|
7
|
-
|
|
8
12
|
/* Excluded from this release type: IAgentScheduler */
|
|
9
13
|
|
|
10
14
|
/* Excluded from this release type: IAgentSchedulerEvents */
|
|
11
15
|
|
|
12
|
-
/* Excluded from this release type: IFluidDataStoreContext */
|
|
13
|
-
|
|
14
|
-
/* Excluded from this release type: IFluidDataStoreFactory */
|
|
15
|
-
|
|
16
|
-
/* Excluded from this release type: IFluidLoadable */
|
|
17
|
-
|
|
18
16
|
/* Excluded from this release type: IProvideAgentScheduler */
|
|
19
17
|
|
|
20
18
|
/* Excluded from this release type: ITaskSubscriptionEvents */
|
|
21
19
|
|
|
22
|
-
/* Excluded from this release type: NamedFluidDataStoreRegistryEntry */
|
|
23
|
-
|
|
24
20
|
/* Excluded from this release type: TaskSubscription */
|
|
25
21
|
|
|
26
|
-
/* Excluded from this release type: TypedEventEmitter */
|
|
27
|
-
|
|
28
22
|
export { }
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
import { FluidDataStoreRuntime } from '@fluidframework/datastore';
|
|
2
|
+
import { IEvent } from '@fluidframework/core-interfaces';
|
|
3
|
+
import { IEventProvider } from '@fluidframework/core-interfaces';
|
|
4
|
+
import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions';
|
|
5
|
+
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions';
|
|
6
|
+
import { IFluidLoadable } from '@fluidframework/core-interfaces';
|
|
7
|
+
import { NamedFluidDataStoreRegistryEntry } from '@fluidframework/runtime-definitions';
|
|
8
|
+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
|
|
9
|
+
|
|
1
10
|
/* Excluded from this release type: AgentSchedulerFactory */
|
|
2
11
|
|
|
3
12
|
/* Excluded from this release type: FluidDataStoreRuntime */
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
import { FluidDataStoreRuntime } from '@fluidframework/datastore';
|
|
2
|
+
import { IEvent } from '@fluidframework/core-interfaces';
|
|
3
|
+
import { IEventProvider } from '@fluidframework/core-interfaces';
|
|
4
|
+
import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions';
|
|
5
|
+
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions';
|
|
6
|
+
import { IFluidLoadable } from '@fluidframework/core-interfaces';
|
|
7
|
+
import { NamedFluidDataStoreRegistryEntry } from '@fluidframework/runtime-definitions';
|
|
8
|
+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
|
|
9
|
+
|
|
1
10
|
/* Excluded from this release type: AgentSchedulerFactory */
|
|
2
11
|
|
|
3
12
|
/* Excluded from this release type: FluidDataStoreRuntime */
|
|
@@ -1,28 +1,22 @@
|
|
|
1
|
+
import { FluidDataStoreRuntime } from '@fluidframework/datastore';
|
|
1
2
|
import { IEvent } from '@fluidframework/core-interfaces';
|
|
2
3
|
import { IEventProvider } from '@fluidframework/core-interfaces';
|
|
4
|
+
import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions';
|
|
5
|
+
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions';
|
|
6
|
+
import { IFluidLoadable } from '@fluidframework/core-interfaces';
|
|
7
|
+
import { NamedFluidDataStoreRegistryEntry } from '@fluidframework/runtime-definitions';
|
|
8
|
+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
|
|
3
9
|
|
|
4
10
|
/* Excluded from this release type: AgentSchedulerFactory */
|
|
5
11
|
|
|
6
|
-
/* Excluded from this release type: FluidDataStoreRuntime */
|
|
7
|
-
|
|
8
12
|
/* Excluded from this release type: IAgentScheduler */
|
|
9
13
|
|
|
10
14
|
/* Excluded from this release type: IAgentSchedulerEvents */
|
|
11
15
|
|
|
12
|
-
/* Excluded from this release type: IFluidDataStoreContext */
|
|
13
|
-
|
|
14
|
-
/* Excluded from this release type: IFluidDataStoreFactory */
|
|
15
|
-
|
|
16
|
-
/* Excluded from this release type: IFluidLoadable */
|
|
17
|
-
|
|
18
16
|
/* Excluded from this release type: IProvideAgentScheduler */
|
|
19
17
|
|
|
20
18
|
/* Excluded from this release type: ITaskSubscriptionEvents */
|
|
21
19
|
|
|
22
|
-
/* Excluded from this release type: NamedFluidDataStoreRegistryEntry */
|
|
23
|
-
|
|
24
20
|
/* Excluded from this release type: TaskSubscription */
|
|
25
21
|
|
|
26
|
-
/* Excluded from this release type: TypedEventEmitter */
|
|
27
|
-
|
|
28
22
|
export { }
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
import { FluidDataStoreRuntime } from '@fluidframework/datastore';
|
|
2
|
+
import { IEvent } from '@fluidframework/core-interfaces';
|
|
3
|
+
import { IEventProvider } from '@fluidframework/core-interfaces';
|
|
4
|
+
import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions';
|
|
5
|
+
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions';
|
|
6
|
+
import { IFluidLoadable } from '@fluidframework/core-interfaces';
|
|
7
|
+
import { NamedFluidDataStoreRegistryEntry } from '@fluidframework/runtime-definitions';
|
|
8
|
+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
|
|
9
|
+
|
|
1
10
|
/* Excluded from this release type: AgentSchedulerFactory */
|
|
2
11
|
|
|
3
12
|
/* Excluded from this release type: FluidDataStoreRuntime */
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
import { FluidDataStoreRuntime } from '@fluidframework/datastore';
|
|
2
|
+
import { IEvent } from '@fluidframework/core-interfaces';
|
|
3
|
+
import { IEventProvider } from '@fluidframework/core-interfaces';
|
|
4
|
+
import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions';
|
|
5
|
+
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions';
|
|
6
|
+
import { IFluidLoadable } from '@fluidframework/core-interfaces';
|
|
7
|
+
import { NamedFluidDataStoreRegistryEntry } from '@fluidframework/runtime-definitions';
|
|
8
|
+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
|
|
9
|
+
|
|
1
10
|
/* Excluded from this release type: AgentSchedulerFactory */
|
|
2
11
|
|
|
3
12
|
/* Excluded from this release type: FluidDataStoreRuntime */
|
package/lib/agent.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent.d.ts","sourceRoot":"","sources":["../src/agent.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"agent.d.ts","sourceRoot":"","sources":["../src/agent.ts"],"names":[],"mappings":"AAAA;;;GAGG;OAEI,EAAE,MAAM,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,iCAAiC;AAExF;;GAEG;AACH,eAAO,MAAM,eAAe,EAAE,MAAM,sBAA0C,CAAC;AAE/E;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACtC,QAAQ,CAAC,eAAe,EAAE,eAAe,CAAC;CAC1C;AAED;;;GAGG;AACH,MAAM,WAAW,qBAAsB,SAAQ,MAAM;IACpD;;;;;;;;;;;;;;;;OAgBG;IACH,CAAC,KAAK,EAAE,QAAQ,GAAG,UAAU,GAAG,MAAM,EAAE,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,OAAE;CAC5E;AAED;;;GAGG;AACH,MAAM,WAAW,eAChB,SAAQ,sBAAsB,EAC7B,cAAc,CAAC,qBAAqB,CAAC,EACrC,cAAc;IACf;;;;;;OAMG;IACH,QAAQ,CAAC,GAAG,QAAQ,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE/C;;;;;;;OAOG;IACH,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjE;;;;;OAKG;IACH,OAAO,CAAC,GAAG,QAAQ,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE9C;;OAEG;IACH,WAAW,IAAI,MAAM,EAAE,CAAC;CACxB"}
|
package/lib/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
3
3
|
* Licensed under the MIT License.
|
|
4
4
|
*/
|
|
5
|
-
export { IAgentScheduler, IAgentSchedulerEvents, IProvideAgentScheduler } from "./agent";
|
|
6
|
-
export { AgentSchedulerFactory } from "./scheduler";
|
|
7
|
-
export { ITaskSubscriptionEvents, TaskSubscription } from "./taskSubscription";
|
|
5
|
+
export { IAgentScheduler, IAgentSchedulerEvents, IProvideAgentScheduler } from "./agent.mjs";
|
|
6
|
+
export { AgentSchedulerFactory } from "./scheduler.mjs";
|
|
7
|
+
export { ITaskSubscriptionEvents, TaskSubscription } from "./taskSubscription.mjs";
|
|
8
8
|
//# sourceMappingURL=index.d.ts.map
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;OAEI,EAAE,eAAe,EAAE,qBAAqB,EAAE,sBAAsB,EAAE;OAClE,EAAE,qBAAqB,EAAE;OACzB,EAAE,uBAAuB,EAAE,gBAAgB,EAAE"}
|
package/lib/scheduler.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import { FluidDataStoreRuntime } from "@fluidframework/datastore";
|
|
|
8
8
|
import { ConsensusRegisterCollection } from "@fluidframework/register-collection";
|
|
9
9
|
import { IFluidDataStoreRuntime } from "@fluidframework/datastore-definitions";
|
|
10
10
|
import { IFluidDataStoreContext, IFluidDataStoreFactory, NamedFluidDataStoreRegistryEntry } from "@fluidframework/runtime-definitions";
|
|
11
|
-
import { IAgentScheduler, IAgentSchedulerEvents } from "./agent";
|
|
11
|
+
import { IAgentScheduler, IAgentSchedulerEvents } from "./agent.mjs";
|
|
12
12
|
export declare class AgentScheduler extends TypedEventEmitter<IAgentSchedulerEvents> implements IAgentScheduler {
|
|
13
13
|
private readonly runtime;
|
|
14
14
|
private readonly context;
|
package/lib/scheduler.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scheduler.d.ts","sourceRoot":"","sources":["../src/scheduler.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"scheduler.d.ts","sourceRoot":"","sources":["../src/scheduler.ts"],"names":[],"mappings":"AAAA;;;GAGG;OAEI,EAAE,iBAAiB,EAAE,MAAM,8BAA8B;OAEzD,EAAe,YAAY,EAAY,MAAM,iCAAiC;OAC9E,EACN,qBAAqB,EAGrB,MAAM,2BAA2B;OAG3B,EAAE,2BAA2B,EAAE,MAAM,qCAAqC;OAC1E,EAAE,sBAAsB,EAAmB,MAAM,uCAAuC;OACxF,EACN,sBAAsB,EACtB,sBAAsB,EACtB,gCAAgC,EAChC,MAAM,qCAAqC;OAGrC,EAAE,eAAe,EAAE,qBAAqB,EAAE;AA4BjD,qBAAa,cACZ,SAAQ,iBAAiB,CAAC,qBAAqB,CAC/C,YAAW,eAAe;IAgEzB,OAAO,CAAC,QAAQ,CAAC,OAAO;IACxB,OAAO,CAAC,QAAQ,CAAC,OAAO;IACxB,OAAO,CAAC,QAAQ,CAAC,2BAA2B;WAhEzB,IAAI,CACvB,OAAO,EAAE,sBAAsB,EAC/B,OAAO,EAAE,sBAAsB,EAC/B,QAAQ,EAAE,OAAO;IAyBlB,IAAW,eAAe,SAEzB;IACD,IAAW,cAAc,SAExB;IAED,OAAO,KAAK,QAAQ,GAOnB;IAMD,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAqB;IAKrD,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAA0C;IAI/E,OAAO,CAAC,YAAY,CAAqB;IAEzC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAqB;gBAG3B,OAAO,EAAE,sBAAsB,EAC/B,OAAO,EAAE,sBAAsB,EAC/B,2BAA2B,EAAE,2BAA2B,CAAC,MAAM,GAAG,IAAI,CAAC;IAQzF,IAAW,MAAM,uBAEhB;IAEY,QAAQ,CAAC,GAAG,QAAQ,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IAkB9C,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC;IAuBjE,OAAO,CAAC,GAAG,QAAQ,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IA0BnD,WAAW,IAAI,MAAM,EAAE;YAIhB,YAAY;YAkBZ,WAAW;YAYX,UAAU;IASxB,OAAO,CAAC,eAAe;YAIT,SAAS;IAIvB,OAAO,CAAC,UAAU;IAiFlB,OAAO,CAAC,iBAAiB;YAcX,gBAAgB;IAuB9B,OAAO,CAAC,QAAQ;IAehB,OAAO,CAAC,cAAc;IA0BtB,OAAO,CAAC,iBAAiB;IAezB,OAAO,CAAC,cAAc;CAGtB;AA6BD;;GAEG;AACH,qBAAa,qBAAsB,YAAW,sBAAsB;IACnE,gBAAuB,IAAI,gBAAgB;IAC3C,SAAgB,IAAI,gBAA8B;IAElD,IAAW,sBAAsB,SAEhC;IAED,WAAkB,aAAa,IAAI,gCAAgC,CAElE;WAEmB,mBAAmB,CACtC,aAAa,EAAE,sBAAsB,GACnC,OAAO,CAAC,eAAe,CAAC;IAcd,oBAAoB,CAChC,OAAO,EAAE,sBAAsB,EAC/B,QAAQ,EAAE,OAAO,GACf,OAAO,CAAC,qBAAqB,CAAC;CASjC"}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { IEvent } from "@fluidframework/core-interfaces";
|
|
6
6
|
import { TypedEventEmitter } from "@fluid-internal/client-utils";
|
|
7
|
-
import { IAgentScheduler } from "./agent";
|
|
7
|
+
import { IAgentScheduler } from "./agent.mjs";
|
|
8
8
|
/**
|
|
9
9
|
* Events emitted by {@link TaskSubscription}.
|
|
10
10
|
* @internal
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taskSubscription.d.ts","sourceRoot":"","sources":["../src/taskSubscription.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"taskSubscription.d.ts","sourceRoot":"","sources":["../src/taskSubscription.ts"],"names":[],"mappings":"AAAA;;;GAGG;OAEI,EAAE,MAAM,EAAE,MAAM,iCAAiC;OACjD,EAAE,iBAAiB,EAAE,MAAM,8BAA8B;OACzD,EAAE,eAAe,EAAE;AAE1B;;;GAGG;AACH,MAAM,WAAW,uBAAwB,SAAQ,MAAM;IACtD,CAAC,KAAK,EAAE,SAAS,GAAG,UAAU,EAAE,QAAQ,EAAE,MAAM,IAAI,OAAE;CACtD;AAED;;;GAGG;AACH,qBAAa,gBAAiB,SAAQ,iBAAiB,CAAC,uBAAuB,CAAC;IAQ9E,OAAO,CAAC,QAAQ,CAAC,cAAc;aACf,MAAM,EAAE,MAAM;IAR/B,OAAO,CAAC,UAAU,CAAkB;IAEpC;;;OAGG;gBAEe,cAAc,EAAE,eAAe,EAChC,MAAM,EAAE,MAAM;IAoB/B;;;OAGG;IACI,QAAQ;IAIf;;;OAGG;IACI,SAAS;CAUhB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/agent-scheduler",
|
|
3
|
-
"version": "2.0.0-dev.7.4.0.
|
|
3
|
+
"version": "2.0.0-dev.7.4.0.221926",
|
|
4
4
|
"description": "Built in runtime object for distributing agents across instances of a container",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -11,43 +11,32 @@
|
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"author": "Microsoft and contributors",
|
|
13
13
|
"sideEffects": false,
|
|
14
|
-
"exports": {
|
|
15
|
-
".": {
|
|
16
|
-
"import": {
|
|
17
|
-
"types": "./lib/index.d.ts",
|
|
18
|
-
"default": "./lib/index.mjs"
|
|
19
|
-
},
|
|
20
|
-
"require": {
|
|
21
|
-
"types": "./dist/index.d.ts",
|
|
22
|
-
"default": "./dist/index.cjs"
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
14
|
"main": "dist/index.cjs",
|
|
27
15
|
"module": "lib/index.mjs",
|
|
28
16
|
"types": "dist/index.d.ts",
|
|
29
17
|
"dependencies": {
|
|
30
|
-
"@fluid-internal/client-utils": "2.0.0-dev.7.4.0.
|
|
31
|
-
"@fluidframework/container-definitions": "2.0.0-dev.7.4.0.
|
|
32
|
-
"@fluidframework/core-interfaces": "2.0.0-dev.7.4.0.
|
|
33
|
-
"@fluidframework/core-utils": "2.0.0-dev.7.4.0.
|
|
34
|
-
"@fluidframework/datastore": "2.0.0-dev.7.4.0.
|
|
35
|
-
"@fluidframework/datastore-definitions": "2.0.0-dev.7.4.0.
|
|
36
|
-
"@fluidframework/map": "2.0.0-dev.7.4.0.
|
|
37
|
-
"@fluidframework/register-collection": "2.0.0-dev.7.4.0.
|
|
38
|
-
"@fluidframework/runtime-definitions": "2.0.0-dev.7.4.0.
|
|
39
|
-
"@fluidframework/runtime-utils": "2.0.0-dev.7.4.0.
|
|
40
|
-
"@fluidframework/telemetry-utils": "2.0.0-dev.7.4.0.
|
|
18
|
+
"@fluid-internal/client-utils": "2.0.0-dev.7.4.0.221926",
|
|
19
|
+
"@fluidframework/container-definitions": "2.0.0-dev.7.4.0.221926",
|
|
20
|
+
"@fluidframework/core-interfaces": "2.0.0-dev.7.4.0.221926",
|
|
21
|
+
"@fluidframework/core-utils": "2.0.0-dev.7.4.0.221926",
|
|
22
|
+
"@fluidframework/datastore": "2.0.0-dev.7.4.0.221926",
|
|
23
|
+
"@fluidframework/datastore-definitions": "2.0.0-dev.7.4.0.221926",
|
|
24
|
+
"@fluidframework/map": "2.0.0-dev.7.4.0.221926",
|
|
25
|
+
"@fluidframework/register-collection": "2.0.0-dev.7.4.0.221926",
|
|
26
|
+
"@fluidframework/runtime-definitions": "2.0.0-dev.7.4.0.221926",
|
|
27
|
+
"@fluidframework/runtime-utils": "2.0.0-dev.7.4.0.221926",
|
|
28
|
+
"@fluidframework/telemetry-utils": "2.0.0-dev.7.4.0.221926",
|
|
41
29
|
"uuid": "^9.0.0"
|
|
42
30
|
},
|
|
43
31
|
"devDependencies": {
|
|
32
|
+
"@arethetypeswrong/cli": "^0.13.3",
|
|
44
33
|
"@fluid-tools/build-cli": "^0.28.0",
|
|
45
34
|
"@fluidframework/agent-scheduler-previous": "npm:@fluidframework/agent-scheduler@2.0.0-internal.7.2.0",
|
|
46
35
|
"@fluidframework/build-common": "^2.0.3",
|
|
47
36
|
"@fluidframework/build-tools": "^0.28.0",
|
|
48
37
|
"@fluidframework/eslint-config-fluid": "^3.1.0",
|
|
49
38
|
"@microsoft/api-extractor": "^7.38.3",
|
|
50
|
-
"@types/node": "^
|
|
39
|
+
"@types/node": "^18.19.0",
|
|
51
40
|
"copyfiles": "^2.4.1",
|
|
52
41
|
"eslint": "~8.50.0",
|
|
53
42
|
"prettier": "~3.0.3",
|
|
@@ -79,6 +68,7 @@
|
|
|
79
68
|
"build:docs": "fluid-build . --task api",
|
|
80
69
|
"build:esnext": "tsc-multi --config ../../../common/build/build-common/tsc-multi.esm.json",
|
|
81
70
|
"build:test": "tsc-multi --config ./tsc-multi.test.json",
|
|
71
|
+
"check:are-the-types-wrong": "attw --pack",
|
|
82
72
|
"check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json",
|
|
83
73
|
"ci:build:docs": "api-extractor run",
|
|
84
74
|
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
|