@wildix/wilma-copilot-sessions-client 1.0.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.
Files changed (67) hide show
  1. package/dist-cjs/WilmaCopilotSessions.js +15 -0
  2. package/dist-cjs/WilmaCopilotSessionsClient.js +49 -0
  3. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  4. package/dist-cjs/auth/httpAuthSchemeProvider.js +58 -0
  5. package/dist-cjs/commands/GetCopilotSessionEventsCommand.js +20 -0
  6. package/dist-cjs/commands/StreamCopilotSessionEventsCommand.js +20 -0
  7. package/dist-cjs/commands/index.js +5 -0
  8. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  9. package/dist-cjs/endpoint/bdd.js +28 -0
  10. package/dist-cjs/endpoint/endpointResolver.js +16 -0
  11. package/dist-cjs/extensionConfiguration.js +2 -0
  12. package/dist-cjs/index.js +13 -0
  13. package/dist-cjs/models/WilmaCopilotSessionsServiceException.js +12 -0
  14. package/dist-cjs/models/enums.js +130 -0
  15. package/dist-cjs/models/errors.js +43 -0
  16. package/dist-cjs/models/models_0.js +2 -0
  17. package/dist-cjs/runtimeConfig.browser.js +32 -0
  18. package/dist-cjs/runtimeConfig.js +41 -0
  19. package/dist-cjs/runtimeConfig.native.js +15 -0
  20. package/dist-cjs/runtimeConfig.shared.js +42 -0
  21. package/dist-cjs/runtimeExtensions.js +12 -0
  22. package/dist-cjs/schemas/schemas_0.js +424 -0
  23. package/dist-es/WilmaCopilotSessions.js +11 -0
  24. package/dist-es/WilmaCopilotSessionsClient.js +45 -0
  25. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  26. package/dist-es/auth/httpAuthSchemeProvider.js +52 -0
  27. package/dist-es/commands/GetCopilotSessionEventsCommand.js +16 -0
  28. package/dist-es/commands/StreamCopilotSessionEventsCommand.js +16 -0
  29. package/dist-es/commands/index.js +2 -0
  30. package/dist-es/endpoint/EndpointParameters.js +12 -0
  31. package/dist-es/endpoint/bdd.js +25 -0
  32. package/dist-es/endpoint/endpointResolver.js +12 -0
  33. package/dist-es/extensionConfiguration.js +1 -0
  34. package/dist-es/index.js +8 -0
  35. package/dist-es/models/WilmaCopilotSessionsServiceException.js +8 -0
  36. package/dist-es/models/enums.js +127 -0
  37. package/dist-es/models/errors.js +37 -0
  38. package/dist-es/models/models_0.js +1 -0
  39. package/dist-es/runtimeConfig.browser.js +27 -0
  40. package/dist-es/runtimeConfig.js +36 -0
  41. package/dist-es/runtimeConfig.native.js +11 -0
  42. package/dist-es/runtimeConfig.shared.js +38 -0
  43. package/dist-es/runtimeExtensions.js +8 -0
  44. package/dist-es/schemas/schemas_0.js +421 -0
  45. package/dist-types/WilmaCopilotSessions.d.ts +33 -0
  46. package/dist-types/WilmaCopilotSessionsClient.d.ts +178 -0
  47. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  48. package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
  49. package/dist-types/commands/GetCopilotSessionEventsCommand.d.ts +379 -0
  50. package/dist-types/commands/StreamCopilotSessionEventsCommand.d.ts +88 -0
  51. package/dist-types/commands/index.d.ts +2 -0
  52. package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
  53. package/dist-types/endpoint/bdd.d.ts +2 -0
  54. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  55. package/dist-types/extensionConfiguration.d.ts +8 -0
  56. package/dist-types/index.d.ts +25 -0
  57. package/dist-types/models/WilmaCopilotSessionsServiceException.d.ts +14 -0
  58. package/dist-types/models/enums.d.ts +275 -0
  59. package/dist-types/models/errors.d.ts +35 -0
  60. package/dist-types/models/models_0.d.ts +757 -0
  61. package/dist-types/runtimeConfig.browser.d.ts +56 -0
  62. package/dist-types/runtimeConfig.d.ts +56 -0
  63. package/dist-types/runtimeConfig.native.d.ts +55 -0
  64. package/dist-types/runtimeConfig.shared.d.ts +33 -0
  65. package/dist-types/runtimeExtensions.d.ts +17 -0
  66. package/dist-types/schemas/schemas_0.d.ts +50 -0
  67. package/package.json +57 -0
@@ -0,0 +1,56 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import type { WilmaCopilotSessionsClientConfig } from "./WilmaCopilotSessionsClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: WilmaCopilotSessionsClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
11
+ maxAttempts: number | import("@smithy/types").Provider<number>;
12
+ requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
13
+ retryMode: string | import("@smithy/types").Provider<string>;
14
+ sha256: import("@smithy/types").HashConstructor;
15
+ streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
16
+ cacheMiddleware?: boolean | undefined;
17
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
18
+ protocolSettings: {
19
+ defaultNamespace?: string;
20
+ [setting: string]: unknown;
21
+ };
22
+ apiVersion: string;
23
+ urlParser: import("@smithy/types").UrlParser;
24
+ base64Decoder: import("@smithy/types").Decoder;
25
+ base64Encoder: (_input: Uint8Array | string) => string;
26
+ utf8Decoder: import("@smithy/types").Decoder;
27
+ utf8Encoder: (input: Uint8Array | string) => string;
28
+ disableHostPrefix: boolean;
29
+ profile?: string;
30
+ logger: import("@smithy/types").Logger;
31
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
33
+ customUserAgent?: string | import("@smithy/types").UserAgent;
34
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
35
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
37
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
38
+ logger?: import("@smithy/types").Logger;
39
+ }) => import("@smithy/types").EndpointV2;
40
+ tls?: boolean;
41
+ useDualstackEndpoint?: boolean | import("@smithy/types").Provider<boolean | undefined>;
42
+ useFipsEndpoint?: boolean | import("@smithy/types").Provider<boolean | undefined>;
43
+ serviceConfiguredEndpoint?: never;
44
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
45
+ httpAuthSchemes: {
46
+ schemeId: string;
47
+ identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
48
+ signer: import("@smithy/core").HttpBearerAuthSigner;
49
+ }[];
50
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WilmaCopilotSessionsHttpAuthSchemeProvider;
51
+ token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider;
52
+ clientContextParams?: {
53
+ env?: string | undefined | import("@smithy/types").Provider<string | undefined>;
54
+ };
55
+ env?: string | undefined | import("@smithy/types").Provider<string | undefined>;
56
+ };
@@ -0,0 +1,56 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import type { WilmaCopilotSessionsClientConfig } from "./WilmaCopilotSessionsClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: WilmaCopilotSessionsClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
11
+ maxAttempts: number | import("@smithy/types").Provider<number>;
12
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
13
+ retryMode: string | import("@smithy/types").Provider<string>;
14
+ sha256: import("@smithy/types").HashConstructor;
15
+ streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
16
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
17
+ cacheMiddleware?: boolean | undefined;
18
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
19
+ protocolSettings: {
20
+ defaultNamespace?: string;
21
+ [setting: string]: unknown;
22
+ };
23
+ apiVersion: string;
24
+ urlParser: import("@smithy/types").UrlParser;
25
+ base64Decoder: import("@smithy/types").Decoder;
26
+ base64Encoder: (_input: Uint8Array | string) => string;
27
+ utf8Decoder: import("@smithy/types").Decoder;
28
+ utf8Encoder: (input: Uint8Array | string) => string;
29
+ disableHostPrefix: boolean;
30
+ profile?: string;
31
+ logger: import("@smithy/types").Logger;
32
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
33
+ sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
34
+ customUserAgent?: string | import("@smithy/types").UserAgent;
35
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
37
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
38
+ logger?: import("@smithy/types").Logger;
39
+ }) => import("@smithy/types").EndpointV2;
40
+ tls?: boolean;
41
+ useDualstackEndpoint?: boolean | import("@smithy/types").Provider<boolean | undefined>;
42
+ useFipsEndpoint?: boolean | import("@smithy/types").Provider<boolean | undefined>;
43
+ serviceConfiguredEndpoint?: never;
44
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
45
+ httpAuthSchemes: {
46
+ schemeId: string;
47
+ identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
48
+ signer: import("@smithy/core").HttpBearerAuthSigner;
49
+ }[];
50
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WilmaCopilotSessionsHttpAuthSchemeProvider;
51
+ token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider;
52
+ clientContextParams?: {
53
+ env?: string | undefined | import("@smithy/types").Provider<string | undefined>;
54
+ };
55
+ env?: string | undefined | import("@smithy/types").Provider<string | undefined>;
56
+ };
@@ -0,0 +1,55 @@
1
+ import type { WilmaCopilotSessionsClientConfig } from "./WilmaCopilotSessionsClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: WilmaCopilotSessionsClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
+ cacheMiddleware?: boolean;
10
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
11
+ protocolSettings: {
12
+ defaultNamespace?: string;
13
+ [setting: string]: unknown;
14
+ };
15
+ apiVersion: string;
16
+ urlParser: import("@smithy/types").UrlParser;
17
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
+ streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
19
+ base64Decoder: import("@smithy/types").Decoder;
20
+ base64Encoder: (_input: Uint8Array | string) => string;
21
+ utf8Decoder: import("@smithy/types").Decoder;
22
+ utf8Encoder: (input: Uint8Array | string) => string;
23
+ disableHostPrefix: boolean;
24
+ profile?: string;
25
+ defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
26
+ maxAttempts: number | import("@smithy/types").Provider<number>;
27
+ retryMode: string | import("@smithy/types").Provider<string>;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ defaultsMode: import("@smithy/core/client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
31
+ sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
32
+ customUserAgent?: string | import("@smithy/types").UserAgent;
33
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
35
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
36
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
37
+ logger?: import("@smithy/types").Logger;
38
+ }) => import("@smithy/types").EndpointV2;
39
+ tls?: boolean;
40
+ useDualstackEndpoint?: boolean | import("@smithy/types").Provider<boolean | undefined>;
41
+ useFipsEndpoint?: boolean | import("@smithy/types").Provider<boolean | undefined>;
42
+ serviceConfiguredEndpoint?: never;
43
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
44
+ httpAuthSchemes: {
45
+ schemeId: string;
46
+ identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
47
+ signer: import("@smithy/core").HttpBearerAuthSigner;
48
+ }[];
49
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WilmaCopilotSessionsHttpAuthSchemeProvider;
50
+ token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider;
51
+ clientContextParams?: {
52
+ env?: string | undefined | import("@smithy/types").Provider<string | undefined>;
53
+ };
54
+ env?: string | undefined | import("@smithy/types").Provider<string | undefined>;
55
+ };
@@ -0,0 +1,33 @@
1
+ import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
2
+ import { HttpBearerAuthSigner } from "@smithy/core";
3
+ import type { IdentityProviderConfig } from "@smithy/types";
4
+ import type { WilmaCopilotSessionsClientConfig } from "./WilmaCopilotSessionsClient";
5
+ /**
6
+ * @internal
7
+ */
8
+ export declare const getRuntimeConfig: (config: WilmaCopilotSessionsClientConfig) => {
9
+ apiVersion: string;
10
+ base64Decoder: import("@smithy/types").Decoder;
11
+ base64Encoder: (_input: Uint8Array | string) => string;
12
+ disableHostPrefix: boolean;
13
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
14
+ logger?: import("@smithy/types").Logger;
15
+ }) => import("@smithy/types").EndpointV2;
16
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
17
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WilmaCopilotSessionsHttpAuthSchemeProvider;
18
+ httpAuthSchemes: {
19
+ schemeId: string;
20
+ identityProvider: (ipc: IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
21
+ signer: HttpBearerAuthSigner;
22
+ }[];
23
+ logger: import("@smithy/types").Logger;
24
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
25
+ protocolSettings: {
26
+ [setting: string]: unknown;
27
+ defaultNamespace?: string;
28
+ };
29
+ sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
30
+ urlParser: import("@smithy/types").UrlParser;
31
+ utf8Decoder: import("@smithy/types").Decoder;
32
+ utf8Encoder: (input: Uint8Array | string) => string;
33
+ };
@@ -0,0 +1,17 @@
1
+ import type { WilmaCopilotSessionsExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: WilmaCopilotSessionsExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
@@ -0,0 +1,50 @@
1
+ import { TypeRegistry } from "@smithy/core/schema";
2
+ import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
3
+ export declare var WilmaCopilotSessionsServiceException$: StaticErrorSchema;
4
+ export declare var ForbiddenException$: StaticErrorSchema;
5
+ export declare var NotFoundException$: StaticErrorSchema;
6
+ export declare var ValidationException$: StaticErrorSchema;
7
+ /**
8
+ * TypeRegistry instances containing modeled errors.
9
+ * @internal
10
+ *
11
+ */
12
+ export declare const errorTypeRegistries: TypeRegistry[];
13
+ export declare var TemplateParameter$: StaticStructureSchema;
14
+ export declare var TemplateWithParameters$: StaticStructureSchema;
15
+ export declare var CallAnalyticsLiveTranscriptionEvent$: StaticStructureSchema;
16
+ export declare var CallParticipant$: StaticStructureSchema;
17
+ export declare var CallTranscriptionChunk$: StaticStructureSchema;
18
+ export declare var ChatAnalyticsLiveTranscriptionEvent$: StaticStructureSchema;
19
+ export declare var ConferenceAnalyticsLiveTranscriptionEvent$: StaticStructureSchema;
20
+ export declare var ConferenceParticipant$: StaticStructureSchema;
21
+ export declare var ConferenceTranscriptionChunk$: StaticStructureSchema;
22
+ export declare var CopilotAssetEvent$: StaticStructureSchema;
23
+ export declare var CopilotAssistantEvent$: StaticStructureSchema;
24
+ export declare var CopilotEvaluationEvent$: StaticStructureSchema;
25
+ export declare var CopilotIntentEvent$: StaticStructureSchema;
26
+ export declare var CopilotLifecycleEvent$: StaticStructureSchema;
27
+ export declare var CopilotTranscriptionEvent$: StaticStructureSchema;
28
+ export declare var GetCopilotSessionEventsInput$: StaticStructureSchema;
29
+ export declare var GetCopilotSessionEventsOutput$: StaticStructureSchema;
30
+ export declare var StreamCopilotSessionEventsInput$: StaticStructureSchema;
31
+ export declare var StreamCopilotSessionEventsOutput$: StaticStructureSchema;
32
+ export declare var ButtonActionHandler$: StaticStructureSchema;
33
+ export declare var ButtonElement$: StaticStructureSchema;
34
+ export declare var ButtonLinkHandler$: StaticStructureSchema;
35
+ export declare var ButtonReplyHandler$: StaticStructureSchema;
36
+ export declare var Message$: StaticStructureSchema;
37
+ export declare var MessageAttachment$: StaticStructureSchema;
38
+ export declare var MessageForward$: StaticStructureSchema;
39
+ export declare var MessageGiphy$: StaticStructureSchema;
40
+ export declare var MessageQuote$: StaticStructureSchema;
41
+ export declare var MessageTemplateConfig$: StaticStructureSchema;
42
+ export declare var Reaction$: StaticStructureSchema;
43
+ export declare var User$: StaticStructureSchema;
44
+ export declare var CopilotSessionEvent$: StaticUnionSchema;
45
+ export declare var CopilotTranscriptionData$: StaticUnionSchema;
46
+ export declare var ActionElement$: StaticUnionSchema;
47
+ export declare var ButtonHandler$: StaticUnionSchema;
48
+ export declare var Element$: StaticUnionSchema;
49
+ export declare var GetCopilotSessionEvents$: StaticOperationSchema;
50
+ export declare var StreamCopilotSessionEvents$: StaticOperationSchema;
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@wildix/wilma-copilot-sessions-client",
3
+ "description": "@wildix/wilma-copilot-sessions-client client",
4
+ "version": "1.0.2",
5
+ "scripts": {
6
+ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
+ "build:cjs": "tsc -p tsconfig.cjs.json",
8
+ "build:es": "tsc -p tsconfig.es.json",
9
+ "build:types": "tsc -p tsconfig.types.json",
10
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
11
+ "clean": "premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo",
12
+ "prepack": "yarn run clean && yarn run build",
13
+ "postpublish": "node ../../scripts/postpublish.js"
14
+ },
15
+ "main": "./dist-cjs/index.js",
16
+ "types": "./dist-types/index.d.ts",
17
+ "module": "./dist-es/index.js",
18
+ "sideEffects": false,
19
+ "dependencies": {
20
+ "tslib": "^2.6.2",
21
+ "@aws-crypto/sha256-browser": "5.2.0",
22
+ "@aws-crypto/sha256-js": "5.2.0",
23
+ "@aws-sdk/core": "^3.974.15",
24
+ "@smithy/core": "^3.24.5",
25
+ "@smithy/fetch-http-handler": "^5.4.5",
26
+ "@smithy/node-http-handler": "^4.7.5",
27
+ "@smithy/types": "^4.14.2"
28
+ },
29
+ "devDependencies": {
30
+ "@tsconfig/node20": "20.1.8",
31
+ "concurrently": "7.0.0",
32
+ "downlevel-dts": "0.10.1",
33
+ "premove": "4.0.0",
34
+ "typescript": "~5.8.3",
35
+ "@types/node": "^20.14.8"
36
+ },
37
+ "engines": {
38
+ "node": ">=20.0.0"
39
+ },
40
+ "typesVersions": {
41
+ "<4.5": {
42
+ "dist-types/*": [
43
+ "dist-types/ts3.4/*"
44
+ ]
45
+ }
46
+ },
47
+ "files": [
48
+ "dist-*/**"
49
+ ],
50
+ "license": "Apache-2.0",
51
+ "browser": {
52
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
53
+ },
54
+ "react-native": {
55
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
56
+ }
57
+ }