@vrplatform/api 1.3.1-stage.4084 → 1.3.1-stage.4089
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/build/main/generated/v1.d.ts +4 -3
- package/build/main/generated/v1.js.map +1 -1
- package/build/main/index.d.ts +1 -0
- package/build/main/index.js +1 -0
- package/build/main/index.js.map +1 -1
- package/build/main/routing.d.ts +10 -0
- package/build/main/routing.js +33 -0
- package/build/main/routing.js.map +1 -0
- package/build/module/generated/v1.d.ts +4 -3
- package/build/module/generated/v1.js.map +1 -1
- package/build/module/index.d.ts +1 -0
- package/build/module/index.js +1 -0
- package/build/module/index.js.map +1 -1
- package/build/module/routing.d.ts +10 -0
- package/build/module/routing.js +30 -0
- package/build/module/routing.js.map +1 -0
- package/package.json +1 -1
- package/src/generated/v1.ts +4 -3
- package/src/index.ts +1 -0
- package/src/routing.ts +52 -0
|
@@ -3422,7 +3422,7 @@ export interface paths {
|
|
|
3422
3422
|
path?: never;
|
|
3423
3423
|
cookie?: never;
|
|
3424
3424
|
};
|
|
3425
|
-
/** @description Resolve a team by slug */
|
|
3425
|
+
/** @description Resolve a team by slug, connection, or tenant-scoped auth */
|
|
3426
3426
|
get: operations["getTeamsResolve"];
|
|
3427
3427
|
put?: never;
|
|
3428
3428
|
post?: never;
|
|
@@ -63181,8 +63181,9 @@ export interface operations {
|
|
|
63181
63181
|
};
|
|
63182
63182
|
getTeamsResolve: {
|
|
63183
63183
|
parameters: {
|
|
63184
|
-
query
|
|
63185
|
-
|
|
63184
|
+
query?: {
|
|
63185
|
+
connectionId?: string;
|
|
63186
|
+
slug?: string;
|
|
63186
63187
|
};
|
|
63187
63188
|
header?: never;
|
|
63188
63189
|
path?: never;
|