@zapier/zapier-sdk 0.18.1 → 0.18.2
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 +6 -0
- package/README.md +5 -5
- package/dist/api/router.d.ts.map +1 -1
- package/dist/api/router.js +1 -7
- package/dist/api/router.test.js +1 -7
- package/dist/api/types.d.ts +2 -1
- package/dist/api/types.d.ts.map +1 -1
- package/dist/api/types.js +0 -10
- package/dist/index.cjs +8 -199
- package/dist/index.d.mts +100 -191
- package/dist/index.mjs +8 -199
- package/dist/plugins/getAuthentication/index.d.ts +3 -3
- package/dist/plugins/getAuthentication/index.d.ts.map +1 -1
- package/dist/plugins/getAuthentication/index.js +3 -5
- package/dist/plugins/getAuthentication/index.test.js +4 -16
- package/dist/plugins/getAuthentication/schemas.d.ts +2 -4
- package/dist/plugins/getAuthentication/schemas.d.ts.map +1 -1
- package/dist/plugins/getAuthentication/schemas.js +1 -1
- package/dist/plugins/listAuthentications/index.d.ts.map +1 -1
- package/dist/schemas/Auth.d.ts +11 -11
- package/dist/schemas/Auth.d.ts.map +1 -1
- package/dist/schemas/Auth.js +2 -12
- package/dist/sdk.d.ts +3 -1
- package/dist/sdk.d.ts.map +1 -1
- package/dist/temporary-internal-core/index.d.ts +0 -2
- package/dist/temporary-internal-core/index.d.ts.map +1 -1
- package/dist/temporary-internal-core/index.js +0 -2
- package/dist/temporary-internal-core/utils/transformations.d.ts +1 -1
- package/dist/temporary-internal-core/utils/transformations.d.ts.map +1 -1
- package/package.json +2 -1
- package/dist/temporary-internal-core/handlers/getAuthentication.d.ts +0 -94
- package/dist/temporary-internal-core/handlers/getAuthentication.d.ts.map +0 -1
- package/dist/temporary-internal-core/handlers/getAuthentication.js +0 -68
- package/dist/temporary-internal-core/handlers/getAuthentication.test.d.ts +0 -2
- package/dist/temporary-internal-core/handlers/getAuthentication.test.d.ts.map +0 -1
- package/dist/temporary-internal-core/handlers/getAuthentication.test.js +0 -248
- package/dist/temporary-internal-core/schemas/authentications/index.d.ts +0 -150
- package/dist/temporary-internal-core/schemas/authentications/index.d.ts.map +0 -1
- package/dist/temporary-internal-core/schemas/authentications/index.js +0 -97
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -652,10 +652,10 @@ Get a specific authentication by ID
|
|
|
652
652
|
|
|
653
653
|
**Parameters:**
|
|
654
654
|
|
|
655
|
-
| Name | Type
|
|
656
|
-
| -------------------- |
|
|
657
|
-
| `options` | `object`
|
|
658
|
-
| ↳ `authenticationId` | `string
|
|
655
|
+
| Name | Type | Required | Default | Possible Values | Description |
|
|
656
|
+
| -------------------- | -------- | -------- | ------- | --------------- | ----------------------------- |
|
|
657
|
+
| `options` | `object` | ✅ | — | — | |
|
|
658
|
+
| ↳ `authenticationId` | `string` | ✅ | — | — | Authentication ID to retrieve |
|
|
659
659
|
|
|
660
660
|
**Returns:** `Promise<AuthenticationItem>`
|
|
661
661
|
|
|
@@ -663,7 +663,7 @@ Get a specific authentication by ID
|
|
|
663
663
|
|
|
664
664
|
```typescript
|
|
665
665
|
const { data: authentication } = await sdk.getAuthentication({
|
|
666
|
-
authenticationId: "example-
|
|
666
|
+
authenticationId: "example-id",
|
|
667
667
|
});
|
|
668
668
|
```
|
|
669
669
|
|
package/dist/api/router.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"router.d.ts","sourceRoot":"","sources":["../../src/api/router.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"router.d.ts","sourceRoot":"","sources":["../../src/api/router.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,KAAK,OAAO,EAAE,MAAM,4BAA4B,CAAC;AAE1E,MAAM,WAAW,KAAK;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,OAAO,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;IAChC,QAAQ,EAAE,MAAM,EAAE,CAAC;CACpB;AAWD,wBAAgB,iBAAiB,CAC/B,SAAS,EAAE,KAAK,EAAE,EAClB,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,MAAM;;;SAsBb;AAED,wBAAgB,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM;;;SAEtD"}
|
package/dist/api/router.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { handleListApps
|
|
1
|
+
import { handleListApps } from "../temporary-internal-core";
|
|
2
2
|
const routes = [
|
|
3
3
|
{
|
|
4
4
|
method: "GET",
|
|
@@ -6,12 +6,6 @@ const routes = [
|
|
|
6
6
|
handler: handleListApps,
|
|
7
7
|
paramMap: [],
|
|
8
8
|
},
|
|
9
|
-
{
|
|
10
|
-
method: "GET",
|
|
11
|
-
pattern: /^\/api\/v0\/authentications\/([^\/]+)$/,
|
|
12
|
-
handler: handleGetAuthentication,
|
|
13
|
-
paramMap: ["authenticationId"],
|
|
14
|
-
},
|
|
15
9
|
];
|
|
16
10
|
export function findMatchingRoute(routeList, method, path) {
|
|
17
11
|
for (const route of routeList) {
|
package/dist/api/router.test.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { describe, it, expect, vi } from "vitest";
|
|
2
2
|
import { matchRoute, findMatchingRoute } from "./router";
|
|
3
|
-
import { handleListApps
|
|
3
|
+
import { handleListApps } from "../temporary-internal-core";
|
|
4
4
|
describe("Router", () => {
|
|
5
5
|
describe("matchRoute (Integration)", () => {
|
|
6
6
|
it("should match GET /api/v0/apps", () => {
|
|
@@ -9,12 +9,6 @@ describe("Router", () => {
|
|
|
9
9
|
expect(match?.handler).toBe(handleListApps);
|
|
10
10
|
expect(match?.params).toEqual({});
|
|
11
11
|
});
|
|
12
|
-
it("should match GET /api/v0/authentications/:authenticationId", () => {
|
|
13
|
-
const match = matchRoute("GET", "/api/v0/authentications/12345");
|
|
14
|
-
expect(match).not.toBeNull();
|
|
15
|
-
expect(match?.handler).toBe(handleGetAuthentication);
|
|
16
|
-
expect(match?.params).toEqual({ authenticationId: "12345" });
|
|
17
|
-
});
|
|
18
12
|
it("should not match POST /api/v0/apps", () => {
|
|
19
13
|
const match = matchRoute("POST", "/api/v0/apps");
|
|
20
14
|
expect(match).toBeNull();
|
package/dist/api/types.d.ts
CHANGED
|
@@ -8,9 +8,10 @@
|
|
|
8
8
|
* API response model types are inferred from Zod schemas defined in api/schemas.ts
|
|
9
9
|
* to ensure a single source of truth and eliminate duplication.
|
|
10
10
|
*/
|
|
11
|
+
import type { AuthenticationSchema, AuthenticationsResponseSchema } from "@zapier/zapier-sdk-core/v0/schemas/authentications";
|
|
11
12
|
import type { SdkEvent } from "../types/events";
|
|
12
13
|
import type { z } from "zod";
|
|
13
|
-
import type { NeedChoicesSchema, NeedSchema, ActionLinksSchema, ActionPermissionsSchema, ActionSchema, ChoiceSchema, FieldSchema, ActionExecutionResultSchema, ActionFieldChoiceSchema, ActionFieldSchema,
|
|
14
|
+
import type { NeedChoicesSchema, NeedSchema, ActionLinksSchema, ActionPermissionsSchema, ActionSchema, ChoiceSchema, FieldSchema, ActionExecutionResultSchema, ActionFieldChoiceSchema, ActionFieldSchema, UserProfileSchema, AppSchema, NeedsRequestSchema, NeedsResponseSchema, ImplementationSchema, ImplementationsResponseSchema, ImplementationMetaSchema, ImplementationsMetaResponseSchema, ServiceSchema, ServicesResponseSchema, NeedChoicesRequestSchema, NeedChoicesResponseSchema, NeedChoicesResponseMetaSchema, NeedChoicesResponseLinksSchema } from "./schemas";
|
|
14
15
|
export interface ApiClientOptions {
|
|
15
16
|
baseUrl: string;
|
|
16
17
|
authBaseUrl?: string;
|
package/dist/api/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/api/types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/api/types.ts"],"names":[],"mappings":"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"}
|
package/dist/api/types.js
CHANGED
|
@@ -1,11 +1 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* API Client Type Definitions
|
|
3
|
-
*
|
|
4
|
-
* This module contains all type definitions related to the Zapier API client,
|
|
5
|
-
* including configuration options, client interfaces, request/response types,
|
|
6
|
-
* and API response models.
|
|
7
|
-
*
|
|
8
|
-
* API response model types are inferred from Zod schemas defined in api/schemas.ts
|
|
9
|
-
* to ensure a single source of truth and eliminate duplication.
|
|
10
|
-
*/
|
|
11
1
|
export {};
|
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var zod = require('zod');
|
|
4
|
+
var authentications = require('@zapier/zapier-sdk-core/v0/schemas/authentications');
|
|
4
5
|
var promises = require('timers/promises');
|
|
5
6
|
var os = require('os');
|
|
6
7
|
|
|
@@ -2263,26 +2264,7 @@ var ListAuthenticationsSchema = zod.z.object({
|
|
|
2263
2264
|
cursor: zod.z.string().optional().describe("Cursor to start from")
|
|
2264
2265
|
}).merge(TelemetryMarkerSchema).describe("List available authentications with optional filtering");
|
|
2265
2266
|
var AuthenticationItemSchema = withFormatter(
|
|
2266
|
-
|
|
2267
|
-
{
|
|
2268
|
-
id: zod.z.string(),
|
|
2269
|
-
// Converted from number
|
|
2270
|
-
account_id: zod.z.string(),
|
|
2271
|
-
// Converted from number
|
|
2272
|
-
implementation_id: zod.z.string().optional(),
|
|
2273
|
-
// Renamed from selected_api
|
|
2274
|
-
is_expired: zod.z.string().optional(),
|
|
2275
|
-
// Mapped from is_stale
|
|
2276
|
-
expired_at: zod.z.string().nullable().optional(),
|
|
2277
|
-
// Mapped from marked_stale_at
|
|
2278
|
-
app_key: zod.z.string().optional(),
|
|
2279
|
-
// App key from implementations endpoint
|
|
2280
|
-
app_version: zod.z.string().optional(),
|
|
2281
|
-
// Version extracted from implementation_id
|
|
2282
|
-
profile_id: zod.z.string().optional()
|
|
2283
|
-
// Mapped from customuser_id, converted from number
|
|
2284
|
-
}
|
|
2285
|
-
),
|
|
2267
|
+
authentications.AuthenticationItemSchema,
|
|
2286
2268
|
{
|
|
2287
2269
|
format: (item) => {
|
|
2288
2270
|
const details = [];
|
|
@@ -2369,7 +2351,9 @@ var listAuthenticationsPlugin = ({ context }) => {
|
|
|
2369
2351
|
(auth) => normalizeAuthenticationItem(auth)
|
|
2370
2352
|
);
|
|
2371
2353
|
if (options.title) {
|
|
2372
|
-
auths = auths.filter(
|
|
2354
|
+
auths = auths.filter(
|
|
2355
|
+
(auth) => auth.title === options.title
|
|
2356
|
+
);
|
|
2373
2357
|
}
|
|
2374
2358
|
return {
|
|
2375
2359
|
data: auths,
|
|
@@ -2497,64 +2481,6 @@ var getActionPlugin = ({ sdk, context }) => {
|
|
|
2497
2481
|
}
|
|
2498
2482
|
};
|
|
2499
2483
|
};
|
|
2500
|
-
var AuthenticationSchema2 = zod.z.object({
|
|
2501
|
-
id: zod.z.number(),
|
|
2502
|
-
date: zod.z.string(),
|
|
2503
|
-
lastchanged: zod.z.string().optional(),
|
|
2504
|
-
account_id: zod.z.number(),
|
|
2505
|
-
customuser_id: zod.z.number().optional(),
|
|
2506
|
-
selected_api: zod.z.string(),
|
|
2507
|
-
destination_selected_api: zod.z.string().nullable().optional(),
|
|
2508
|
-
is_invite_only: zod.z.boolean(),
|
|
2509
|
-
is_private: zod.z.boolean(),
|
|
2510
|
-
shared_with_all: zod.z.boolean(),
|
|
2511
|
-
is_stale: zod.z.string().optional(),
|
|
2512
|
-
is_shared: zod.z.string().optional(),
|
|
2513
|
-
marked_stale_at: zod.z.string().nullable().optional(),
|
|
2514
|
-
label: zod.z.string().nullable().optional(),
|
|
2515
|
-
identifier: zod.z.string().nullable().optional(),
|
|
2516
|
-
title: zod.z.string().nullable().optional(),
|
|
2517
|
-
url: zod.z.string().optional(),
|
|
2518
|
-
groups: zod.z.string().optional(),
|
|
2519
|
-
members: zod.z.string().optional(),
|
|
2520
|
-
permissions: zod.z.record(zod.z.string(), zod.z.boolean()).optional()
|
|
2521
|
-
});
|
|
2522
|
-
zod.z.object({
|
|
2523
|
-
count: zod.z.number(),
|
|
2524
|
-
next: zod.z.string().nullable().optional(),
|
|
2525
|
-
previous: zod.z.string().nullable().optional(),
|
|
2526
|
-
results: zod.z.array(AuthenticationSchema2)
|
|
2527
|
-
});
|
|
2528
|
-
var AuthenticationItemSchema2 = AuthenticationSchema2.omit({
|
|
2529
|
-
selected_api: true,
|
|
2530
|
-
customuser_id: true
|
|
2531
|
-
}).extend({
|
|
2532
|
-
// Override numeric IDs with string versions (converted by normalizeAuthenticationItem)
|
|
2533
|
-
id: zod.z.string(),
|
|
2534
|
-
account_id: zod.z.string(),
|
|
2535
|
-
// Renamed fields
|
|
2536
|
-
implementation_id: zod.z.string().optional(),
|
|
2537
|
-
profile_id: zod.z.string().optional(),
|
|
2538
|
-
// Mapped fields (originals preserved in ...restOfAuth)
|
|
2539
|
-
is_expired: zod.z.string().optional(),
|
|
2540
|
-
expired_at: zod.z.string().nullable().optional(),
|
|
2541
|
-
// Computed fields
|
|
2542
|
-
app_key: zod.z.string().optional(),
|
|
2543
|
-
app_version: zod.z.string().optional()
|
|
2544
|
-
});
|
|
2545
|
-
var GetAuthenticationOptionsSchema = zod.z.object({
|
|
2546
|
-
authenticationId: zod.z.union([zod.z.string(), zod.z.number().int().positive()]).describe("Authentication ID to retrieve")
|
|
2547
|
-
}).describe("Get a specific authentication by ID");
|
|
2548
|
-
var GetAuthenticationHandlerRequestSchema = zod.z.object({
|
|
2549
|
-
authenticationId: zod.z.union([zod.z.string(), zod.z.number()]).describe("Authentication ID - string from searchParams or number")
|
|
2550
|
-
}).transform((data) => ({
|
|
2551
|
-
authenticationId: typeof data.authenticationId === "string" ? parseInt(data.authenticationId, 10) : data.authenticationId
|
|
2552
|
-
}));
|
|
2553
|
-
zod.z.object({
|
|
2554
|
-
data: zod.z.lazy(() => AuthenticationItemSchema2)
|
|
2555
|
-
});
|
|
2556
|
-
|
|
2557
|
-
// src/plugins/getAuthentication/index.ts
|
|
2558
2484
|
var getAuthenticationPlugin = ({ context }) => {
|
|
2559
2485
|
async function getAuthentication(options) {
|
|
2560
2486
|
const { api } = context;
|
|
@@ -2564,7 +2490,7 @@ var getAuthenticationPlugin = ({ context }) => {
|
|
|
2564
2490
|
}
|
|
2565
2491
|
const getAuthenticationDefinition = createFunction(
|
|
2566
2492
|
getAuthentication,
|
|
2567
|
-
|
|
2493
|
+
authentications.GetAuthenticationParamSchema,
|
|
2568
2494
|
createTelemetryCallback(
|
|
2569
2495
|
context.eventEmission.emitMethodCalled,
|
|
2570
2496
|
getAuthentication.name
|
|
@@ -2578,7 +2504,7 @@ var getAuthenticationPlugin = ({ context }) => {
|
|
|
2578
2504
|
categories: ["authentication"],
|
|
2579
2505
|
type: "item",
|
|
2580
2506
|
itemType: "Authentication",
|
|
2581
|
-
inputSchema:
|
|
2507
|
+
inputSchema: authentications.GetAuthenticationParamSchema,
|
|
2582
2508
|
outputSchema: AuthenticationItemSchema,
|
|
2583
2509
|
resolvers: {
|
|
2584
2510
|
authenticationId: authenticationIdGenericResolver
|
|
@@ -3876,50 +3802,6 @@ function extractPaginationCursor(response) {
|
|
|
3876
3802
|
return void 0;
|
|
3877
3803
|
}
|
|
3878
3804
|
}
|
|
3879
|
-
function normalizeAuthenticationItem2(auth, options = {}) {
|
|
3880
|
-
let appKey = options.app_key;
|
|
3881
|
-
let appVersion = options.app_version;
|
|
3882
|
-
if (auth.selected_api) {
|
|
3883
|
-
const [extractedAppKey, extractedVersion] = splitVersionedKey2(
|
|
3884
|
-
auth.selected_api
|
|
3885
|
-
);
|
|
3886
|
-
if (!appKey) {
|
|
3887
|
-
appKey = extractedAppKey;
|
|
3888
|
-
}
|
|
3889
|
-
if (!appVersion) {
|
|
3890
|
-
appVersion = extractedVersion;
|
|
3891
|
-
}
|
|
3892
|
-
}
|
|
3893
|
-
const {
|
|
3894
|
-
selected_api: selectedApi,
|
|
3895
|
-
customuser_id: profileId,
|
|
3896
|
-
id,
|
|
3897
|
-
account_id: accountId,
|
|
3898
|
-
...restOfAuth
|
|
3899
|
-
} = auth;
|
|
3900
|
-
return {
|
|
3901
|
-
...restOfAuth,
|
|
3902
|
-
// Pass through all other API response fields except selected_api
|
|
3903
|
-
id: String(id),
|
|
3904
|
-
// Convert to string
|
|
3905
|
-
account_id: String(accountId),
|
|
3906
|
-
// Convert to string
|
|
3907
|
-
implementation_id: selectedApi,
|
|
3908
|
-
// Rename selected_api to implementation_id
|
|
3909
|
-
title: auth.title || auth.label || void 0,
|
|
3910
|
-
// Coerce title from label if missing
|
|
3911
|
-
is_expired: auth.is_stale,
|
|
3912
|
-
// Map is_stale to is_expired
|
|
3913
|
-
expired_at: auth.marked_stale_at,
|
|
3914
|
-
// Map marked_stale_at to expired_at
|
|
3915
|
-
app_key: appKey,
|
|
3916
|
-
// App key from implementations endpoint or parsed from selected_api
|
|
3917
|
-
app_version: appVersion,
|
|
3918
|
-
// Version from selected_api or provided
|
|
3919
|
-
profile_id: profileId != null ? String(profileId) : void 0
|
|
3920
|
-
// Map customuser_id to profile_id, convert to string
|
|
3921
|
-
};
|
|
3922
|
-
}
|
|
3923
3805
|
|
|
3924
3806
|
// src/temporary-internal-core/handlers/listApps.ts
|
|
3925
3807
|
var DEFAULT_PAGE_SIZE = 20;
|
|
@@ -4023,73 +3905,6 @@ var handleListApps = async ({ request, deps }) => {
|
|
|
4023
3905
|
};
|
|
4024
3906
|
};
|
|
4025
3907
|
|
|
4026
|
-
// src/temporary-internal-core/schemas/errors/index.ts
|
|
4027
|
-
var ZapierError2 = class extends Error {
|
|
4028
|
-
constructor(message, options = {}) {
|
|
4029
|
-
super(message);
|
|
4030
|
-
this.statusCode = options.statusCode;
|
|
4031
|
-
this.errors = options.errors;
|
|
4032
|
-
this.cause = options.cause;
|
|
4033
|
-
this.response = options.response;
|
|
4034
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
4035
|
-
}
|
|
4036
|
-
};
|
|
4037
|
-
var ZapierAuthenticationError2 = class extends ZapierError2 {
|
|
4038
|
-
constructor(message, options = {}) {
|
|
4039
|
-
super(message, options);
|
|
4040
|
-
this.name = "ZapierAuthenticationError";
|
|
4041
|
-
}
|
|
4042
|
-
};
|
|
4043
|
-
var ZapierResourceNotFoundError2 = class extends ZapierError2 {
|
|
4044
|
-
constructor(message, options = {}) {
|
|
4045
|
-
super(message, options);
|
|
4046
|
-
this.name = "ZapierResourceNotFoundError";
|
|
4047
|
-
this.resourceType = options.resourceType;
|
|
4048
|
-
this.resourceId = options.resourceId;
|
|
4049
|
-
}
|
|
4050
|
-
};
|
|
4051
|
-
|
|
4052
|
-
// src/temporary-internal-core/handlers/getAuthentication.ts
|
|
4053
|
-
var handleGetAuthentication = async ({ request, deps }) => {
|
|
4054
|
-
const validatedRequest = GetAuthenticationHandlerRequestSchema.parse(request);
|
|
4055
|
-
const { httpClient } = deps;
|
|
4056
|
-
const { authenticationId } = validatedRequest;
|
|
4057
|
-
const authentication = await httpClient.get(
|
|
4058
|
-
`/zapier/api/v4/authentications/${authenticationId}/`,
|
|
4059
|
-
{
|
|
4060
|
-
authRequired: true,
|
|
4061
|
-
customErrorHandler: ({ status }) => {
|
|
4062
|
-
if (status === 401) {
|
|
4063
|
-
return new ZapierAuthenticationError2(
|
|
4064
|
-
`Authentication failed. Your token may not have permission to access authentications or may be expired. (HTTP ${status})`,
|
|
4065
|
-
{ statusCode: status }
|
|
4066
|
-
);
|
|
4067
|
-
}
|
|
4068
|
-
if (status === 403) {
|
|
4069
|
-
return new ZapierAuthenticationError2(
|
|
4070
|
-
`Access forbidden. Your token may not have the required scopes to get authentication ${authenticationId}. (HTTP ${status})`,
|
|
4071
|
-
{ statusCode: status }
|
|
4072
|
-
);
|
|
4073
|
-
}
|
|
4074
|
-
if (status === 404) {
|
|
4075
|
-
return new ZapierResourceNotFoundError2(
|
|
4076
|
-
`Authentication ${authenticationId} not found. It may not exist or you may not have access to it. (HTTP ${status})`,
|
|
4077
|
-
{
|
|
4078
|
-
resourceType: "Authentication",
|
|
4079
|
-
resourceId: String(authenticationId)
|
|
4080
|
-
}
|
|
4081
|
-
);
|
|
4082
|
-
}
|
|
4083
|
-
return void 0;
|
|
4084
|
-
}
|
|
4085
|
-
}
|
|
4086
|
-
);
|
|
4087
|
-
const normalizedAuthentication = normalizeAuthenticationItem2(authentication);
|
|
4088
|
-
return {
|
|
4089
|
-
data: normalizedAuthentication
|
|
4090
|
-
};
|
|
4091
|
-
};
|
|
4092
|
-
|
|
4093
3908
|
// src/api/router.ts
|
|
4094
3909
|
var routes = [
|
|
4095
3910
|
{
|
|
@@ -4097,12 +3912,6 @@ var routes = [
|
|
|
4097
3912
|
pattern: /^\/api\/v0\/apps$/,
|
|
4098
3913
|
handler: handleListApps,
|
|
4099
3914
|
paramMap: []
|
|
4100
|
-
},
|
|
4101
|
-
{
|
|
4102
|
-
method: "GET",
|
|
4103
|
-
pattern: /^\/api\/v0\/authentications\/([^\/]+)$/,
|
|
4104
|
-
handler: handleGetAuthentication,
|
|
4105
|
-
paramMap: ["authenticationId"]
|
|
4106
3915
|
}
|
|
4107
3916
|
];
|
|
4108
3917
|
function findMatchingRoute(routeList, method, path) {
|
|
@@ -5072,7 +4881,7 @@ function getCpuTime() {
|
|
|
5072
4881
|
|
|
5073
4882
|
// package.json
|
|
5074
4883
|
var package_default = {
|
|
5075
|
-
version: "0.18.
|
|
4884
|
+
version: "0.18.2"};
|
|
5076
4885
|
|
|
5077
4886
|
// src/plugins/eventEmission/builders.ts
|
|
5078
4887
|
function createBaseEvent(context = {}) {
|