@fluidframework/azure-client 2.0.0-rc.5.0.3 → 2.0.0-rc.5.0.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.
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
|
|
3
|
+
"extends": "<projectFolder>/../../../common/build/build-common/api-extractor-lint.entrypoint.json",
|
|
4
|
+
"mainEntryPointFilePath": "<projectFolder>/dist/index.d.ts"
|
|
5
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/azure-client",
|
|
3
|
-
"version": "2.0.0-rc.5.0.
|
|
3
|
+
"version": "2.0.0-rc.5.0.5",
|
|
4
4
|
"description": "A tool to enable creation and loading of Fluid containers using the Azure Fluid Relay service",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -14,12 +14,18 @@
|
|
|
14
14
|
"type": "module",
|
|
15
15
|
"exports": {
|
|
16
16
|
".": {
|
|
17
|
+
"trimmedAPI": {
|
|
18
|
+
"types": {
|
|
19
|
+
"import": "./lib/public.d.ts",
|
|
20
|
+
"require": "./dist/public.d.ts"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
17
23
|
"import": {
|
|
18
|
-
"types": "./lib/
|
|
24
|
+
"types": "./lib/index.d.ts",
|
|
19
25
|
"default": "./lib/index.js"
|
|
20
26
|
},
|
|
21
27
|
"require": {
|
|
22
|
-
"types": "./dist/
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
23
29
|
"default": "./dist/index.js"
|
|
24
30
|
}
|
|
25
31
|
},
|
|
@@ -55,34 +61,34 @@
|
|
|
55
61
|
}
|
|
56
62
|
},
|
|
57
63
|
"main": "lib/index.js",
|
|
58
|
-
"types": "lib/
|
|
64
|
+
"types": "lib/index.d.ts",
|
|
59
65
|
"dependencies": {
|
|
60
|
-
"@fluidframework/container-definitions": ">=2.0.0-rc.5.0.
|
|
61
|
-
"@fluidframework/container-loader": ">=2.0.0-rc.5.0.
|
|
62
|
-
"@fluidframework/core-interfaces": ">=2.0.0-rc.5.0.
|
|
63
|
-
"@fluidframework/core-utils": ">=2.0.0-rc.5.0.
|
|
64
|
-
"@fluidframework/driver-definitions": ">=2.0.0-rc.5.0.
|
|
65
|
-
"@fluidframework/driver-utils": ">=2.0.0-rc.5.0.
|
|
66
|
-
"@fluidframework/fluid-static": ">=2.0.0-rc.5.0.
|
|
67
|
-
"@fluidframework/map": ">=2.0.0-rc.5.0.
|
|
68
|
-
"@fluidframework/routerlicious-driver": ">=2.0.0-rc.5.0.
|
|
69
|
-
"@fluidframework/runtime-utils": ">=2.0.0-rc.5.0.
|
|
70
|
-
"@fluidframework/telemetry-utils": ">=2.0.0-rc.5.0.
|
|
66
|
+
"@fluidframework/container-definitions": ">=2.0.0-rc.5.0.5 <2.0.0-rc.5.1.0",
|
|
67
|
+
"@fluidframework/container-loader": ">=2.0.0-rc.5.0.5 <2.0.0-rc.5.1.0",
|
|
68
|
+
"@fluidframework/core-interfaces": ">=2.0.0-rc.5.0.5 <2.0.0-rc.5.1.0",
|
|
69
|
+
"@fluidframework/core-utils": ">=2.0.0-rc.5.0.5 <2.0.0-rc.5.1.0",
|
|
70
|
+
"@fluidframework/driver-definitions": ">=2.0.0-rc.5.0.5 <2.0.0-rc.5.1.0",
|
|
71
|
+
"@fluidframework/driver-utils": ">=2.0.0-rc.5.0.5 <2.0.0-rc.5.1.0",
|
|
72
|
+
"@fluidframework/fluid-static": ">=2.0.0-rc.5.0.5 <2.0.0-rc.5.1.0",
|
|
73
|
+
"@fluidframework/map": ">=2.0.0-rc.5.0.5 <2.0.0-rc.5.1.0",
|
|
74
|
+
"@fluidframework/routerlicious-driver": ">=2.0.0-rc.5.0.5 <2.0.0-rc.5.1.0",
|
|
75
|
+
"@fluidframework/runtime-utils": ">=2.0.0-rc.5.0.5 <2.0.0-rc.5.1.0",
|
|
76
|
+
"@fluidframework/telemetry-utils": ">=2.0.0-rc.5.0.5 <2.0.0-rc.5.1.0",
|
|
71
77
|
"axios": "^1.6.2"
|
|
72
78
|
},
|
|
73
79
|
"devDependencies": {
|
|
74
80
|
"@arethetypeswrong/cli": "^0.15.2",
|
|
75
81
|
"@biomejs/biome": "^1.7.3",
|
|
76
82
|
"@fluid-tools/build-cli": "^0.39.0",
|
|
77
|
-
"@fluidframework/aqueduct": ">=2.0.0-rc.5.0.
|
|
83
|
+
"@fluidframework/aqueduct": ">=2.0.0-rc.5.0.5 <2.0.0-rc.5.1.0",
|
|
78
84
|
"@fluidframework/azure-client-previous": "npm:@fluidframework/azure-client@2.0.0-rc.4.0.0",
|
|
79
|
-
"@fluidframework/azure-local-service": ">=2.0.0-rc.5.0.
|
|
85
|
+
"@fluidframework/azure-local-service": ">=2.0.0-rc.5.0.5 <2.0.0-rc.5.1.0",
|
|
80
86
|
"@fluidframework/build-common": "^2.0.3",
|
|
81
87
|
"@fluidframework/build-tools": "^0.39.0",
|
|
82
88
|
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
|
83
|
-
"@fluidframework/test-runtime-utils": ">=2.0.0-rc.5.0.
|
|
84
|
-
"@fluidframework/test-utils": ">=2.0.0-rc.5.0.
|
|
85
|
-
"@fluidframework/tree": ">=2.0.0-rc.5.0.
|
|
89
|
+
"@fluidframework/test-runtime-utils": ">=2.0.0-rc.5.0.5 <2.0.0-rc.5.1.0",
|
|
90
|
+
"@fluidframework/test-utils": ">=2.0.0-rc.5.0.5 <2.0.0-rc.5.1.0",
|
|
91
|
+
"@fluidframework/tree": ">=2.0.0-rc.5.0.5 <2.0.0-rc.5.1.0",
|
|
86
92
|
"@microsoft/api-extractor": "^7.45.1",
|
|
87
93
|
"@types/mocha": "^9.1.1",
|
|
88
94
|
"@types/node": "^18.19.0",
|
|
@@ -99,6 +105,7 @@
|
|
|
99
105
|
"typescript": "~5.4.5",
|
|
100
106
|
"uuid": "^9.0.0"
|
|
101
107
|
},
|
|
108
|
+
"exportsComments": "The 'trimmedAPI' export condition is set as a workaround for 'flub generate entrypoints', which expects `exports` to contain an entry for all entrypoints. The custom condition effectively hides the public entrypoint unless the 'trimmedAPI' condition is set manually.",
|
|
102
109
|
"typeValidation": {
|
|
103
110
|
"broken": {}
|
|
104
111
|
},
|
|
@@ -119,6 +126,7 @@
|
|
|
119
126
|
"check:exports": "concurrently \"npm:check:exports:*\"",
|
|
120
127
|
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
|
121
128
|
"check:exports:cjs:beta": "api-extractor run --config api-extractor/api-extractor-lint-beta.cjs.json",
|
|
129
|
+
"check:exports:cjs:index": "api-extractor run --config api-extractor/api-extractor-lint-index.cjs.json",
|
|
122
130
|
"check:exports:cjs:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.cjs.json",
|
|
123
131
|
"check:exports:cjs:public": "api-extractor run --config api-extractor/api-extractor-lint-public.cjs.json",
|
|
124
132
|
"check:exports:esm:beta": "api-extractor run --config api-extractor/api-extractor-lint-beta.esm.json",
|