@activepieces/piece-retune 0.1.3 → 0.1.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.
package/package.json CHANGED
@@ -1,28 +1,16 @@
1
1
  {
2
2
  "name": "@activepieces/piece-retune",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
+ "main": "./src/index.js",
5
+ "types": "./src/index.d.ts",
6
+ "scripts": {
7
+ "build": "tsc -p tsconfig.lib.json && cp package.json dist/",
8
+ "lint": "eslint 'src/**/*.ts'"
9
+ },
4
10
  "dependencies": {
5
- "@sinclair/typebox": "0.34.11",
6
- "ai": "^6.0.0",
7
- "axios": "1.13.1",
8
- "axios-retry": "4.4.1",
9
- "deepmerge-ts": "7.1.0",
10
- "form-data": "4.0.4",
11
- "i18next": "23.13.0",
12
- "mime-types": "2.1.35",
13
- "nanoid": "3.3.8",
14
- "semver": "7.6.0",
15
- "socket.io-client": "4.8.1",
16
- "zod": "4.1.13",
17
- "@activepieces/pieces-common": "0.11.5",
18
- "@activepieces/pieces-framework": "0.25.2",
19
- "@activepieces/shared": "0.34.0",
11
+ "@activepieces/pieces-common": "0.12.3",
12
+ "@activepieces/pieces-framework": "0.30.0",
13
+ "@activepieces/shared": "0.87.1",
20
14
  "tslib": "2.6.2"
21
- },
22
- "resolutions": {
23
- "rollup": "npm:@rollup/wasm-node"
24
- },
25
- "types": "./src/index.d.ts",
26
- "main": "./src/index.js",
27
- "type": "commonjs"
15
+ }
28
16
  }
package/src/index.d.ts CHANGED
@@ -1,8 +1,5 @@
1
- export declare const retuneAuth: import("@activepieces/pieces-framework").CustomAuthProperty<{
2
- chatId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
3
- apiKey: import("@activepieces/pieces-framework").SecretTextProperty<true>;
4
- }>;
5
1
  export declare const retune: import("@activepieces/pieces-framework").Piece<import("@activepieces/pieces-framework").CustomAuthProperty<{
6
2
  chatId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
7
3
  apiKey: import("@activepieces/pieces-framework").SecretTextProperty<true>;
8
4
  }>>;
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAyBA,eAAO,MAAM,MAAM;;;GAqBjB,CAAC"}
package/src/index.js CHANGED
@@ -1,11 +1,12 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.retune = exports.retuneAuth = void 0;
3
+ exports.retune = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const pieces_common_1 = require("@activepieces/pieces-common");
6
6
  const pieces_framework_1 = require("@activepieces/pieces-framework");
7
7
  const shared_1 = require("@activepieces/shared");
8
8
  const ask_chatbot_1 = require("./lib/actions/ask-chatbot");
9
+ const auth_1 = require("./lib/auth");
9
10
  const markdownDescription = `
10
11
  Follow these instructions to get your re:tune chat ID and API Key:
11
12
 
@@ -16,48 +17,10 @@ e.g from this: https://retune.so/chat/acewocwe-123123-123123-123123/ your chat I
16
17
  4. To get the API key, go to https://retune.so/settings
17
18
  5. Scroll to the bottom to find "Re:tune API Keys" and copy your key below
18
19
  `;
19
- exports.retuneAuth = pieces_framework_1.PieceAuth.CustomAuth({
20
- description: markdownDescription,
21
- required: true,
22
- props: {
23
- // There is no way to programmatically get the user's chatbots, so we have this
24
- chatId: pieces_framework_1.Property.ShortText({
25
- displayName: 'Chat ID',
26
- description: 'The ID of the chat you want to use.',
27
- required: true,
28
- }),
29
- apiKey: pieces_framework_1.PieceAuth.SecretText({
30
- displayName: 'API Key',
31
- description: 'Your re:tune API key.',
32
- required: true,
33
- }),
34
- },
35
- validate: (auth) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
36
- try {
37
- yield pieces_common_1.httpClient.sendRequest({
38
- url: `https://retune.so/api/chat/${auth.auth.chatId}/threads`,
39
- method: pieces_common_1.HttpMethod.POST,
40
- headers: {
41
- 'X-Workspace-API-Key': auth.auth.apiKey,
42
- },
43
- body: {},
44
- });
45
- return {
46
- valid: true,
47
- };
48
- }
49
- catch (e) {
50
- return {
51
- valid: false,
52
- error: 'Invalid API key',
53
- };
54
- }
55
- }),
56
- });
57
20
  exports.retune = (0, pieces_framework_1.createPiece)({
58
21
  displayName: 're:tune',
59
22
  description: 'Everything you need to transform your business with AI, from custom chatbots to autonomous agents.',
60
- auth: exports.retuneAuth,
23
+ auth: auth_1.retuneAuth,
61
24
  minimumSupportedRelease: '0.30.0',
62
25
  logoUrl: 'https://cdn.activepieces.com/pieces/retune.png',
63
26
  categories: [shared_1.PieceCategory.ARTIFICIAL_INTELLIGENCE],
@@ -66,7 +29,7 @@ exports.retune = (0, pieces_framework_1.createPiece)({
66
29
  ask_chatbot_1.askChatbot,
67
30
  (0, pieces_common_1.createCustomApiCallAction)({
68
31
  baseUrl: () => 'https://retune.so/api',
69
- auth: exports.retuneAuth,
32
+ auth: auth_1.retuneAuth,
70
33
  authMapping: (auth) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
71
34
  return ({
72
35
  'X-Workspace-API-Key': (auth).props.apiKey,
package/src/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../packages/pieces/community/retune/src/index.ts"],"names":[],"mappings":";;;;AAAA,+DAIqC;AACrC,qEAIwC;AACxC,iDAAqD;AACrD,2DAAuD;AAEvD,MAAM,mBAAmB,GAAG;;;;;;;;;CAS3B,CAAC;AAEW,QAAA,UAAU,GAAG,4BAAS,CAAC,UAAU,CAAC;IAC7C,WAAW,EAAE,mBAAmB;IAChC,QAAQ,EAAE,IAAI;IACd,KAAK,EAAE;QACL,+EAA+E;QAC/E,MAAM,EAAE,2BAAQ,CAAC,SAAS,CAAC;YACzB,WAAW,EAAE,SAAS;YACtB,WAAW,EAAE,qCAAqC;YAClD,QAAQ,EAAE,IAAI;SACf,CAAC;QACF,MAAM,EAAE,4BAAS,CAAC,UAAU,CAAC;YAC3B,WAAW,EAAE,SAAS;YACtB,WAAW,EAAE,uBAAuB;YACpC,QAAQ,EAAE,IAAI;SACf,CAAC;KACH;IAED,QAAQ,EAAE,CAAO,IAAI,EAAE,EAAE;QACvB,IAAI,CAAC;YACH,MAAM,0BAAU,CAAC,WAAW,CAEzB;gBACD,GAAG,EAAE,8BAA8B,IAAI,CAAC,IAAI,CAAC,MAAM,UAAU;gBAC7D,MAAM,EAAE,0BAAU,CAAC,IAAI;gBACvB,OAAO,EAAE;oBACP,qBAAqB,EAAE,IAAI,CAAC,IAAI,CAAC,MAAM;iBACxC;gBACD,IAAI,EAAE,EAAE;aACT,CAAC,CAAC;YACH,OAAO;gBACL,KAAK,EAAE,IAAI;aACZ,CAAC;QACJ,CAAC;QAAC,OAAO,CAAC,EAAE,CAAC;YACX,OAAO;gBACL,KAAK,EAAE,KAAK;gBACZ,KAAK,EAAE,iBAAiB;aACzB,CAAC;QACJ,CAAC;IACH,CAAC,CAAA;CACF,CAAC,CAAC;AAEU,QAAA,MAAM,GAAG,IAAA,8BAAW,EAAC;IAChC,WAAW,EAAE,SAAS;IACtB,WAAW,EACT,oGAAoG;IAEtG,IAAI,EAAE,kBAAU;IAChB,uBAAuB,EAAE,QAAQ;IACjC,OAAO,EAAE,gDAAgD;IACzD,UAAU,EAAE,CAAC,sBAAa,CAAC,uBAAuB,CAAC;IACnD,OAAO,EAAE,CAAC,YAAY,EAAC,WAAW,EAAC,UAAU,CAAC;IAC9C,OAAO,EAAE;QACP,wBAAU;QACV,IAAA,yCAAyB,EAAC;YACxB,OAAO,EAAE,GAAG,EAAE,CAAC,uBAAuB;YACtC,IAAI,EAAE,kBAAU;YAChB,WAAW,EAAE,CAAO,IAAI,EAAE,EAAE;gBAAC,OAAA,CAAC;oBAC5B,qBAAqB,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,MAAM;iBAC3C,CAAC,CAAA;cAAA;SACH,CAAC;KACH;IACD,QAAQ,EAAE,EAAE;CACb,CAAC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;AAAA,+DAIqC;AACrC,qEAIwC;AACxC,iDAAqD;AACrD,2DAAuD;AACvD,qCAAwC;AAExC,MAAM,mBAAmB,GAAG;;;;;;;;;CAS3B,CAAC;AAEW,QAAA,MAAM,GAAG,IAAA,8BAAW,EAAC;IAChC,WAAW,EAAE,SAAS;IACtB,WAAW,EACT,oGAAoG;IAEtG,IAAI,EAAE,iBAAU;IAChB,uBAAuB,EAAE,QAAQ;IACjC,OAAO,EAAE,gDAAgD;IACzD,UAAU,EAAE,CAAC,sBAAa,CAAC,uBAAuB,CAAC;IACnD,OAAO,EAAE,CAAC,YAAY,EAAC,WAAW,EAAC,UAAU,CAAC;IAC9C,OAAO,EAAE;QACP,wBAAU;QACV,IAAA,yCAAyB,EAAC;YACxB,OAAO,EAAE,GAAG,EAAE,CAAC,uBAAuB;YACtC,IAAI,EAAE,iBAAU;YAChB,WAAW,EAAE,CAAO,IAAI,EAAE,EAAE;gBAAC,OAAA,CAAC;oBAC5B,qBAAqB,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,MAAM;iBAC3C,CAAC,CAAA;cAAA;SACH,CAAC;KACH;IACD,QAAQ,EAAE,EAAE;CACb,CAAC,CAAC"}
@@ -8,3 +8,4 @@ export declare const askChatbot: import("@activepieces/pieces-framework").IActio
8
8
  }>>;
9
9
  message: import("@activepieces/pieces-framework").ShortTextProperty<true>;
10
10
  }>;
11
+ //# sourceMappingURL=ask-chatbot.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ask-chatbot.d.ts","sourceRoot":"","sources":["../../../../src/lib/actions/ask-chatbot.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,UAAU;;;;;;;;;EAgErB,CAAC"}
@@ -3,16 +3,18 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.askChatbot = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const pieces_framework_1 = require("@activepieces/pieces-framework");
6
- const index_1 = require("../../index");
6
+ const auth_1 = require("../auth");
7
7
  const pieces_common_1 = require("@activepieces/pieces-common");
8
8
  exports.askChatbot = (0, pieces_framework_1.createAction)({
9
- auth: index_1.retuneAuth,
9
+ auth: auth_1.retuneAuth,
10
10
  name: 'ask_chatbot',
11
11
  displayName: 'Ask Chatbot',
12
12
  description: 'Sends a message to an existing thread with a chatbot.',
13
+ audience: 'both',
14
+ aiMetadata: { description: 'Sends a user message to an existing re:tune chatbot conversation thread and returns the bot\'s generated reply. Use this to interact with a configured re:tune chatbot; requires both a thread ID (a conversation context that must already exist) and the message text. Not idempotent — each call appends a turn to the thread and produces a fresh AI response.', idempotent: false },
13
15
  props: {
14
16
  thread: pieces_framework_1.Property.Dropdown({
15
- auth: index_1.retuneAuth,
17
+ auth: auth_1.retuneAuth,
16
18
  displayName: 'Thread',
17
19
  description: 'The thread you want to send the message to.',
18
20
  required: true,
@@ -1 +1 @@
1
- {"version":3,"file":"ask-chatbot.js","sourceRoot":"","sources":["../../../../../../../../packages/pieces/community/retune/src/lib/actions/ask-chatbot.ts"],"names":[],"mappings":";;;;AAAA,qEAAwE;AACxE,uCAAyC;AACzC,+DAAqE;AAExD,QAAA,UAAU,GAAG,IAAA,+BAAY,EAAC;IACrC,IAAI,EAAE,kBAAU;IAChB,IAAI,EAAE,aAAa;IACnB,WAAW,EAAE,aAAa;IAC1B,WAAW,EAAE,uDAAuD;IACpE,KAAK,EAAE;QACL,MAAM,EAAE,2BAAQ,CAAC,QAAQ,CAAC;YACxB,IAAI,EAAE,kBAAU;YAChB,WAAW,EAAE,QAAQ;YACrB,WAAW,EAAE,6CAA6C;YAC1D,QAAQ,EAAE,IAAI;YACd,UAAU,EAAE,EAAE;YACd,OAAO,EAAE,KAAiB,EAAE,oDAAZ,EAAE,IAAI,EAAE;gBACtB,IAAI,CAAC,IAAI,EAAE,CAAC;oBACV,OAAO;wBACL,QAAQ,EAAE,IAAI;wBACd,OAAO,EAAE,EAAE;wBACX,WAAW,EAAE,mCAAmC;qBACjD,CAAC;gBACJ,CAAC;gBACD,MAAM,OAAO,GAAG,MAAM,0BAAU,CAAC,WAAW,CAAC;oBAC3C,GAAG,EAAE,8BAA8B,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,MAAM,UAAU;oBAChE,MAAM,EAAE,0BAAU,CAAC,IAAI;oBACvB,OAAO,EAAE;wBACP,qBAAqB,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,MAAM;qBAC3C;oBACD,IAAI,EAAE,EAAE;iBACT,CAAC,CAAC;gBAEH,OAAO;oBACL,OAAO,EAAE,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,IAAS,EAAE,EAAE;;wBACjD,OAAO;4BACL,KAAK,EAAE,MAAA,IAAI,CAAC,IAAI,mCAAI,IAAI,CAAC,EAAE;4BAC3B,KAAK,EAAE,IAAI,CAAC,EAAE;yBACf,CAAC;oBACJ,CAAC,CAAC;iBACH,CAAC;YACJ,CAAC,CAAA;SACF,CAAC;QACF,OAAO,EAAE,2BAAQ,CAAC,SAAS,CAAC;YAC1B,WAAW,EAAE,SAAS;YACtB,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;SACf,CAAC;KACH;IACK,GAAG;qEAAC,EAAE,IAAI,EAAE,UAAU,EAAE;YAC5B,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,UAAU,CAAC;YAEvC,MAAM,QAAQ,GAAG,MAAM,0BAAU,CAAC,WAAW,CAAC;gBAC5C,GAAG,EAAE,8BAA8B,IAAI,CAAC,KAAK,CAAC,MAAM,WAAW;gBAC/D,MAAM,EAAE,0BAAU,CAAC,IAAI;gBACvB,OAAO,EAAE;oBACP,qBAAqB,EAAE,IAAI,CAAC,KAAK,CAAC,MAAM;iBACzC;gBACD,IAAI,EAAE;oBACJ,QAAQ,EAAE,MAAM;oBAChB,KAAK,EAAE,OAAO;iBACf;aACF,CAAC,CAAC;YAEH,OAAQ,QAAQ,CAAC,IAAY,CAAC,QAAQ,CAAC,KAAK,CAAC;QAC/C,CAAC;KAAA;CACF,CAAC,CAAC"}
1
+ {"version":3,"file":"ask-chatbot.js","sourceRoot":"","sources":["../../../../src/lib/actions/ask-chatbot.ts"],"names":[],"mappings":";;;;AAAA,qEAAwE;AACxE,kCAAqC;AACrC,+DAAqE;AAExD,QAAA,UAAU,GAAG,IAAA,+BAAY,EAAC;IACrC,IAAI,EAAE,iBAAU;IAChB,IAAI,EAAE,aAAa;IACnB,WAAW,EAAE,aAAa;IAC1B,WAAW,EAAE,uDAAuD;IACpE,QAAQ,EAAE,MAAM;IAChB,UAAU,EAAE,EAAE,WAAW,EAAE,oWAAoW,EAAE,UAAU,EAAE,KAAK,EAAE;IACpZ,KAAK,EAAE;QACL,MAAM,EAAE,2BAAQ,CAAC,QAAQ,CAAC;YACxB,IAAI,EAAE,iBAAU;YAChB,WAAW,EAAE,QAAQ;YACrB,WAAW,EAAE,6CAA6C;YAC1D,QAAQ,EAAE,IAAI;YACd,UAAU,EAAE,EAAE;YACd,OAAO,EAAE,KAAiB,EAAE,oDAAZ,EAAE,IAAI,EAAE;gBACtB,IAAI,CAAC,IAAI,EAAE,CAAC;oBACV,OAAO;wBACL,QAAQ,EAAE,IAAI;wBACd,OAAO,EAAE,EAAE;wBACX,WAAW,EAAE,mCAAmC;qBACjD,CAAC;gBACJ,CAAC;gBACD,MAAM,OAAO,GAAG,MAAM,0BAAU,CAAC,WAAW,CAAC;oBAC3C,GAAG,EAAE,8BAA8B,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,MAAM,UAAU;oBAChE,MAAM,EAAE,0BAAU,CAAC,IAAI;oBACvB,OAAO,EAAE;wBACP,qBAAqB,EAAE,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,MAAM;qBAC3C;oBACD,IAAI,EAAE,EAAE;iBACT,CAAC,CAAC;gBAEH,OAAO;oBACL,OAAO,EAAE,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,IAAS,EAAE,EAAE;;wBACjD,OAAO;4BACL,KAAK,EAAE,MAAA,IAAI,CAAC,IAAI,mCAAI,IAAI,CAAC,EAAE;4BAC3B,KAAK,EAAE,IAAI,CAAC,EAAE;yBACf,CAAC;oBACJ,CAAC,CAAC;iBACH,CAAC;YACJ,CAAC,CAAA;SACF,CAAC;QACF,OAAO,EAAE,2BAAQ,CAAC,SAAS,CAAC;YAC1B,WAAW,EAAE,SAAS;YACtB,WAAW,EAAE,+BAA+B;YAC5C,QAAQ,EAAE,IAAI;SACf,CAAC;KACH;IACK,GAAG;qEAAC,EAAE,IAAI,EAAE,UAAU,EAAE;YAC5B,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,UAAU,CAAC;YAEvC,MAAM,QAAQ,GAAG,MAAM,0BAAU,CAAC,WAAW,CAAC;gBAC5C,GAAG,EAAE,8BAA8B,IAAI,CAAC,KAAK,CAAC,MAAM,WAAW;gBAC/D,MAAM,EAAE,0BAAU,CAAC,IAAI;gBACvB,OAAO,EAAE;oBACP,qBAAqB,EAAE,IAAI,CAAC,KAAK,CAAC,MAAM;iBACzC;gBACD,IAAI,EAAE;oBACJ,QAAQ,EAAE,MAAM;oBAChB,KAAK,EAAE,OAAO;iBACf;aACF,CAAC,CAAC;YAEH,OAAQ,QAAQ,CAAC,IAAY,CAAC,QAAQ,CAAC,KAAK,CAAC;QAC/C,CAAC;KAAA;CACF,CAAC,CAAC"}
@@ -0,0 +1,5 @@
1
+ export declare const retuneAuth: import("@activepieces/pieces-framework").CustomAuthProperty<{
2
+ chatId: import("@activepieces/pieces-framework").ShortTextProperty<true>;
3
+ apiKey: import("@activepieces/pieces-framework").SecretTextProperty<true>;
4
+ }>;
5
+ //# sourceMappingURL=auth.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../../src/lib/auth.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,UAAU;;;EAuCrB,CAAC"}
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.retuneAuth = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const pieces_framework_1 = require("@activepieces/pieces-framework");
6
+ const pieces_common_1 = require("@activepieces/pieces-common");
7
+ const markdownDescription = `
8
+ Follow these instructions to get your re:tune chat ID and API Key:
9
+
10
+ 1. Visit the chatbots page: https://retune.so/chats
11
+ 2. Once on the website, locate and click on the chatbot you want to use
12
+ 3. From the URL, copy the chat ID you want to use;
13
+ e.g from this: https://retune.so/chat/acewocwe-123123-123123-123123/ your chat ID is "acewocwe-123123-123123-123123"
14
+ 4. To get the API key, go to https://retune.so/settings
15
+ 5. Scroll to the bottom to find "Re:tune API Keys" and copy your key below
16
+ `;
17
+ exports.retuneAuth = pieces_framework_1.PieceAuth.CustomAuth({
18
+ description: markdownDescription,
19
+ required: true,
20
+ props: {
21
+ // There is no way to programmatically get the user's chatbots, so we have this
22
+ chatId: pieces_framework_1.Property.ShortText({
23
+ displayName: 'Chat ID',
24
+ description: 'The ID of the chat you want to use.',
25
+ required: true,
26
+ }),
27
+ apiKey: pieces_framework_1.PieceAuth.SecretText({
28
+ displayName: 'API Key',
29
+ description: 'Your re:tune API key.',
30
+ required: true,
31
+ }),
32
+ },
33
+ validate: (auth) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
34
+ try {
35
+ yield pieces_common_1.httpClient.sendRequest({
36
+ url: `https://retune.so/api/chat/${auth.auth.chatId}/threads`,
37
+ method: pieces_common_1.HttpMethod.POST,
38
+ headers: {
39
+ 'X-Workspace-API-Key': auth.auth.apiKey,
40
+ },
41
+ body: {},
42
+ });
43
+ return {
44
+ valid: true,
45
+ };
46
+ }
47
+ catch (e) {
48
+ return {
49
+ valid: false,
50
+ error: 'Invalid API key',
51
+ };
52
+ }
53
+ }),
54
+ });
55
+ //# sourceMappingURL=auth.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"auth.js","sourceRoot":"","sources":["../../../src/lib/auth.ts"],"names":[],"mappings":";;;;AAAA,qEAAqE;AACrE,+DAAqE;AAErE,MAAM,mBAAmB,GAAG;;;;;;;;;CAS3B,CAAC;AAEW,QAAA,UAAU,GAAG,4BAAS,CAAC,UAAU,CAAC;IAC7C,WAAW,EAAE,mBAAmB;IAChC,QAAQ,EAAE,IAAI;IACd,KAAK,EAAE;QACL,+EAA+E;QAC/E,MAAM,EAAE,2BAAQ,CAAC,SAAS,CAAC;YACzB,WAAW,EAAE,SAAS;YACtB,WAAW,EAAE,qCAAqC;YAClD,QAAQ,EAAE,IAAI;SACf,CAAC;QACF,MAAM,EAAE,4BAAS,CAAC,UAAU,CAAC;YAC3B,WAAW,EAAE,SAAS;YACtB,WAAW,EAAE,uBAAuB;YACpC,QAAQ,EAAE,IAAI;SACf,CAAC;KACH;IAED,QAAQ,EAAE,CAAO,IAAI,EAAE,EAAE;QACvB,IAAI,CAAC;YACH,MAAM,0BAAU,CAAC,WAAW,CAEzB;gBACD,GAAG,EAAE,8BAA8B,IAAI,CAAC,IAAI,CAAC,MAAM,UAAU;gBAC7D,MAAM,EAAE,0BAAU,CAAC,IAAI;gBACvB,OAAO,EAAE;oBACP,qBAAqB,EAAE,IAAI,CAAC,IAAI,CAAC,MAAM;iBACxC;gBACD,IAAI,EAAE,EAAE;aACT,CAAC,CAAC;YACH,OAAO;gBACL,KAAK,EAAE,IAAI;aACZ,CAAC;QACJ,CAAC;QAAC,OAAO,CAAC,EAAE,CAAC;YACX,OAAO;gBACL,KAAK,EAAE,KAAK;gBACZ,KAAK,EAAE,iBAAiB;aACzB,CAAC;QACJ,CAAC;IACH,CAAC,CAAA;CACF,CAAC,CAAC"}
package/README.md DELETED
@@ -1,7 +0,0 @@
1
- # pieces-retune
2
-
3
- This library was generated with [Nx](https://nx.dev).
4
-
5
- ## Building
6
-
7
- Run `nx build pieces-retune` to build the library.