@microsoft/typespec-msgraph 0.0.1-Preview.16 → 0.0.1-Preview.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.
- package/dist/src/components/annotations.js +2 -2
- package/dist/src/components/annotations.js.map +1 -1
- package/dist/src/components/enum-type-element.d.ts.map +1 -1
- package/dist/src/components/enum-type-element.js +5 -2
- package/dist/src/components/enum-type-element.js.map +1 -1
- package/dist/src/components/operation-element.js +1 -1
- package/dist/src/components/operation-element.js.map +1 -1
- package/dist/src/components/property-element.js +1 -1
- package/dist/src/components/property-element.js.map +1 -1
- package/dist/src/components/update-restrictions-annotation.d.ts +2 -2
- package/dist/src/components/update-restrictions-annotation.d.ts.map +1 -1
- package/dist/src/components/update-restrictions-annotation.js +4 -6
- package/dist/src/components/update-restrictions-annotation.js.map +1 -1
- package/dist/src/decorators/index.d.ts +2 -0
- package/dist/src/decorators/index.d.ts.map +1 -1
- package/dist/src/decorators/index.js +2 -0
- package/dist/src/decorators/index.js.map +1 -1
- package/dist/src/decorators/limited-charset.d.ts +9 -0
- package/dist/src/decorators/limited-charset.d.ts.map +1 -0
- package/dist/src/decorators/limited-charset.js +13 -0
- package/dist/src/decorators/limited-charset.js.map +1 -0
- package/dist/src/decorators/workload-namespace.d.ts +10 -0
- package/dist/src/decorators/workload-namespace.d.ts.map +1 -0
- package/dist/src/decorators/workload-namespace.js +19 -0
- package/dist/src/decorators/workload-namespace.js.map +1 -0
- package/dist/src/entities/annotations.d.ts +4 -9
- package/dist/src/entities/annotations.d.ts.map +1 -1
- package/dist/src/entities/annotations.js +63 -81
- package/dist/src/entities/annotations.js.map +1 -1
- package/dist/src/entities/enum.d.ts +2 -0
- package/dist/src/entities/enum.d.ts.map +1 -1
- package/dist/src/entities/enum.js +3 -0
- package/dist/src/entities/enum.js.map +1 -1
- package/dist/src/entities/model.d.ts +2 -0
- package/dist/src/entities/model.d.ts.map +1 -1
- package/dist/src/entities/model.js +16 -3
- package/dist/src/entities/model.js.map +1 -1
- package/dist/src/entities/namespace.js +3 -3
- package/dist/src/entities/namespace.js.map +1 -1
- package/dist/src/entities/operation.d.ts +1 -0
- package/dist/src/entities/operation.d.ts.map +1 -1
- package/dist/src/entities/operation.js +3 -2
- package/dist/src/entities/operation.js.map +1 -1
- package/dist/src/lib.d.ts +4 -0
- package/dist/src/lib.d.ts.map +1 -1
- package/dist/src/lib.js +2 -0
- package/dist/src/lib.js.map +1 -1
- package/dist/src/rules/computed.d.ts +0 -2
- package/dist/src/rules/computed.d.ts.map +1 -1
- package/dist/src/rules/computed.js +5 -8
- package/dist/src/rules/computed.js.map +1 -1
- package/dist/src/rules/filter.d.ts.map +1 -1
- package/dist/src/rules/filter.js +21 -3
- package/dist/src/rules/filter.js.map +1 -1
- package/dist/src/rules/index.d.ts +1 -0
- package/dist/src/rules/index.d.ts.map +1 -1
- package/dist/src/rules/index.js +1 -0
- package/dist/src/rules/index.js.map +1 -1
- package/dist/src/rules/limited-charset.d.ts +3 -0
- package/dist/src/rules/limited-charset.d.ts.map +1 -0
- package/dist/src/rules/limited-charset.js +42 -0
- package/dist/src/rules/limited-charset.js.map +1 -0
- package/dist/src/rules/namespace.d.ts +1 -0
- package/dist/src/rules/namespace.d.ts.map +1 -1
- package/dist/src/rules/namespace.js +21 -0
- package/dist/src/rules/namespace.js.map +1 -1
- package/dist/src/rules/partial.d.ts +1 -0
- package/dist/src/rules/partial.d.ts.map +1 -1
- package/dist/src/rules/partial.js +17 -1
- package/dist/src/rules/partial.js.map +1 -1
- package/dist/src/rules/required-for-create.d.ts.map +1 -1
- package/dist/src/rules/required-for-create.js +3 -2
- package/dist/src/rules/required-for-create.js.map +1 -1
- package/dist/src/utils.d.ts +7 -0
- package/dist/src/utils.d.ts.map +1 -1
- package/dist/src/utils.js +123 -9
- package/dist/src/utils.js.map +1 -1
- package/dist/src/validate.d.ts.map +1 -1
- package/dist/src/validate.js +3 -0
- package/dist/src/validate.js.map +1 -1
- package/lib/decorators.tsp +20 -6
- package/lib/porcelain.tsp +4 -0
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/typespec-msgraph",
|
|
3
|
-
"version": "0.0.1-Preview.
|
|
3
|
+
"version": "0.0.1-Preview.18",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec for Microsoft Graph provides a description of the Microsoft Graph APIs. It is used for generating API description languages, client and service code, documentation, and other assets.",
|
|
6
6
|
"homepage": "https://github.com/microsoftgraph/typespec-msgraph",
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
],
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@xmldom/xmldom": "~0.8.4",
|
|
56
|
-
"@typespec/compiler": "~0.
|
|
57
|
-
"@typespec/http": "~0.
|
|
56
|
+
"@typespec/compiler": "~0.55.0",
|
|
57
|
+
"@typespec/http": "~0.55.0",
|
|
58
58
|
"prettier": "~3.1.1",
|
|
59
59
|
"react-dom": "~18.2.0",
|
|
60
60
|
"react": "~18.2.0",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"@types/node": "~18.11.9",
|
|
66
66
|
"@types/react": "~18.0.5",
|
|
67
67
|
"@types/react-reconciler": "~0.28.0",
|
|
68
|
-
"@typespec/eslint-config-typespec": "~0.
|
|
68
|
+
"@typespec/eslint-config-typespec": "~0.55.0",
|
|
69
69
|
"c8": "~8.0.1",
|
|
70
70
|
"eslint": "^8.49.0",
|
|
71
71
|
"mocha": "~10.2.0",
|