@tailor-platform/sdk 1.33.2 → 1.34.0
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 +8 -0
- package/dist/application-CLKuNo-l.mjs +4 -0
- package/dist/{application-CYPU-WIc.mjs → application-CluuzA0-.mjs} +18 -2
- package/dist/application-CluuzA0-.mjs.map +1 -0
- package/dist/cli/index.mjs +291 -40
- package/dist/cli/index.mjs.map +1 -1
- package/dist/cli/lib.d.mts +6 -6
- package/dist/cli/lib.mjs +3 -3
- package/dist/{client-ea1w8SmG.mjs → client-BmQP4kKS.mjs} +1 -1
- package/dist/{client-CYGsf3Zl.mjs → client-CA2NM_4R.mjs} +10 -2
- package/dist/{client-CYGsf3Zl.mjs.map → client-CA2NM_4R.mjs.map} +1 -1
- package/dist/configure/index.d.mts +4 -5
- package/dist/configure/index.mjs +3 -0
- package/dist/configure/index.mjs.map +1 -1
- package/dist/{crash-report-CbueUPaP.mjs → crash-report-Bd2T8BhU.mjs} +1 -1
- package/dist/{crash-report-OXafT1iS.mjs → crash-report-CPkI2-cp.mjs} +2 -2
- package/dist/{crash-report-OXafT1iS.mjs.map → crash-report-CPkI2-cp.mjs.map} +1 -1
- package/dist/{index-DlivLpTN.d.mts → index--9iVDOXn.d.mts} +7 -8
- package/dist/{index-mAV9kYJA.d.mts → index-D4pBPp65.d.mts} +2 -2
- package/dist/{index-0H-YH8Ya.d.mts → index-DTJkkO-t.d.mts} +2 -2
- package/dist/{index-BM2SqNfO.d.mts → index-niQ9Qblw.d.mts} +2 -2
- package/dist/{index-BU6fmwJC.d.mts → index-qVqjEYnr.d.mts} +2 -2
- package/dist/plugin/builtin/enum-constants/index.d.mts +1 -1
- package/dist/plugin/builtin/file-utils/index.d.mts +1 -1
- package/dist/plugin/builtin/kysely-type/index.d.mts +1 -1
- package/dist/plugin/builtin/seed/index.d.mts +1 -1
- package/dist/plugin/index.d.mts +1 -2
- package/dist/{plugin-DQqzlulP.d.mts → plugin-D8hKE6rZ.d.mts} +59 -3
- package/dist/{runtime-CxDrzUC0.mjs → runtime-8G74KN_M.mjs} +286 -52
- package/dist/runtime-8G74KN_M.mjs.map +1 -0
- package/dist/utils/test/index.d.mts +2 -2
- package/dist/{workflow.generated-u9MgzqbM.d.mts → workflow.generated-DMt8PNVd.d.mts} +2 -2
- package/docs/cli/auth.md +162 -1
- package/docs/cli-reference.md +9 -6
- package/docs/services/auth.md +115 -0
- package/package.json +1 -1
- package/dist/application-CYPU-WIc.mjs.map +0 -1
- package/dist/application-dnB8CQiT.mjs +0 -4
- package/dist/env-BvIWsJxg.d.mts +0 -30
- package/dist/runtime-CxDrzUC0.mjs.map +0 -1
package/dist/env-BvIWsJxg.d.mts
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/// <reference types="@tailor-platform/function-types" />
|
|
2
|
-
import { ct as InferredAttributeList, lt as InferredAttributeMap } from "./plugin-DQqzlulP.mjs";
|
|
3
|
-
|
|
4
|
-
//#region src/configure/types/actor.d.ts
|
|
5
|
-
/** User type enum values from the Tailor Platform server. */
|
|
6
|
-
type TailorActorType = "USER_TYPE_USER" | "USER_TYPE_MACHINE_USER" | "USER_TYPE_UNSPECIFIED";
|
|
7
|
-
/** Represents an actor in event triggers. */
|
|
8
|
-
type TailorActor = {
|
|
9
|
-
/** The ID of the workspace the user belongs to. */workspaceId: string; /** The ID of the user. */
|
|
10
|
-
userId: string;
|
|
11
|
-
/**
|
|
12
|
-
* A map of the user's attributes.
|
|
13
|
-
* Maps from server's `attributeMap` field.
|
|
14
|
-
*/
|
|
15
|
-
attributes: InferredAttributeMap | null;
|
|
16
|
-
/**
|
|
17
|
-
* A list of the user's attributes.
|
|
18
|
-
* Maps from server's `attributes` field.
|
|
19
|
-
*/
|
|
20
|
-
attributeList: InferredAttributeList; /** The type of the user. */
|
|
21
|
-
userType: TailorActorType;
|
|
22
|
-
};
|
|
23
|
-
//#endregion
|
|
24
|
-
//#region src/configure/types/env.d.ts
|
|
25
|
-
interface Env {}
|
|
26
|
-
/** Represents environment variables in the Tailor platform. */
|
|
27
|
-
type TailorEnv = keyof Env extends never ? Record<string, string> : Env;
|
|
28
|
-
//#endregion
|
|
29
|
-
export { TailorEnv as n, TailorActor as r, Env as t };
|
|
30
|
-
//# sourceMappingURL=env-BvIWsJxg.d.mts.map
|