@aws-sdk/client-appstream 3.1071.0 → 3.1073.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/dist-cjs/index.js +7 -0
- package/dist-cjs/schemas/schemas_0.js +5 -4
- package/dist-es/models/enums.js +6 -0
- package/dist-es/schemas/schemas_0.js +5 -4
- package/dist-types/commands/CreateStackCommand.d.ts +4 -2
- package/dist-types/commands/DescribeStacksCommand.d.ts +2 -1
- package/dist-types/commands/UpdateStackCommand.d.ts +4 -2
- package/dist-types/models/enums.d.ts +14 -0
- package/dist-types/models/models_0.d.ts +12 -2
- package/dist-types/ts3.4/models/enums.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -1451,11 +1451,17 @@ const ScreenResolution = {
|
|
|
1451
1451
|
const AgentAction = {
|
|
1452
1452
|
COMPUTER_INPUT: "COMPUTER_INPUT",
|
|
1453
1453
|
COMPUTER_VISION: "COMPUTER_VISION",
|
|
1454
|
+
FORWARD_MCP_TOOLS: "FORWARD_MCP_TOOLS",
|
|
1454
1455
|
};
|
|
1455
1456
|
const Permission = {
|
|
1456
1457
|
DISABLED: "DISABLED",
|
|
1457
1458
|
ENABLED: "ENABLED",
|
|
1458
1459
|
};
|
|
1460
|
+
const UserControlMode = {
|
|
1461
|
+
DISABLED: "DISABLED",
|
|
1462
|
+
VIEW_ONLY: "VIEW_ONLY",
|
|
1463
|
+
VIEW_STOP: "VIEW_STOP",
|
|
1464
|
+
};
|
|
1459
1465
|
const AgentSoftwareVersion = {
|
|
1460
1466
|
ALWAYS_LATEST: "ALWAYS_LATEST",
|
|
1461
1467
|
CURRENT_LATEST: "CURRENT_LATEST",
|
|
@@ -1859,6 +1865,7 @@ exports.UpdateStackCommand = UpdateStackCommand;
|
|
|
1859
1865
|
exports.UpdateThemeForStackCommand = UpdateThemeForStackCommand;
|
|
1860
1866
|
exports.UsageReportExecutionErrorCode = UsageReportExecutionErrorCode;
|
|
1861
1867
|
exports.UsageReportSchedule = UsageReportSchedule;
|
|
1868
|
+
exports.UserControlMode = UserControlMode;
|
|
1862
1869
|
exports.UserStackAssociationErrorCode = UserStackAssociationErrorCode;
|
|
1863
1870
|
exports.VisibilityType = VisibilityType;
|
|
1864
1871
|
exports.paginateDescribeAppBlockBuilderAppBlockAssociations = paginateDescribeAppBlockBuilderAppBlockAssociations;
|
|
@@ -546,6 +546,7 @@ const _UAR = "UpdateApplicationRequest";
|
|
|
546
546
|
const _UARp = "UpdateApplicationResult";
|
|
547
547
|
const _UAV = "UserAttributeValue";
|
|
548
548
|
const _UAp = "UpdateApplication";
|
|
549
|
+
const _UCM = "UserControlMode";
|
|
549
550
|
const _UDC = "UpdateDirectoryConfig";
|
|
550
551
|
const _UDCR = "UpdateDirectoryConfigRequest";
|
|
551
552
|
const _UDCRp = "UpdateDirectoryConfigResult";
|
|
@@ -750,14 +751,14 @@ const AdminAppLicenseUsageRecord$ = [3, n0, _AALUR,
|
|
|
750
751
|
exports.AdminAppLicenseUsageRecord$ = AdminAppLicenseUsageRecord$;
|
|
751
752
|
const AgentAccessConfig$ = [3, n0, _AAC,
|
|
752
753
|
0,
|
|
753
|
-
[_S, _SR, _SIF, _SBA, _SUE],
|
|
754
|
-
[() => AgentAccessSettingList, 0, 0, 0, 2], 3
|
|
754
|
+
[_S, _SR, _SIF, _SBA, _SUE, _UCM],
|
|
755
|
+
[() => AgentAccessSettingList, 0, 0, 0, 2, 0], 3
|
|
755
756
|
];
|
|
756
757
|
exports.AgentAccessConfig$ = AgentAccessConfig$;
|
|
757
758
|
const AgentAccessConfigForUpdate$ = [3, n0, _AACFU,
|
|
758
759
|
0,
|
|
759
|
-
[_S, _SBA, _SUE, _SR, _SIF],
|
|
760
|
-
[() => AgentAccessSettingList, 0, 2, 0, 0]
|
|
760
|
+
[_S, _SBA, _SUE, _SR, _SIF, _UCM],
|
|
761
|
+
[() => AgentAccessSettingList, 0, 2, 0, 0, 0]
|
|
761
762
|
];
|
|
762
763
|
exports.AgentAccessConfigForUpdate$ = AgentAccessConfigForUpdate$;
|
|
763
764
|
const AgentAccessSetting$ = [3, n0, _AAS,
|
package/dist-es/models/enums.js
CHANGED
|
@@ -21,11 +21,17 @@ export const ScreenResolution = {
|
|
|
21
21
|
export const AgentAction = {
|
|
22
22
|
COMPUTER_INPUT: "COMPUTER_INPUT",
|
|
23
23
|
COMPUTER_VISION: "COMPUTER_VISION",
|
|
24
|
+
FORWARD_MCP_TOOLS: "FORWARD_MCP_TOOLS",
|
|
24
25
|
};
|
|
25
26
|
export const Permission = {
|
|
26
27
|
DISABLED: "DISABLED",
|
|
27
28
|
ENABLED: "ENABLED",
|
|
28
29
|
};
|
|
30
|
+
export const UserControlMode = {
|
|
31
|
+
DISABLED: "DISABLED",
|
|
32
|
+
VIEW_ONLY: "VIEW_ONLY",
|
|
33
|
+
VIEW_STOP: "VIEW_STOP",
|
|
34
|
+
};
|
|
29
35
|
export const AgentSoftwareVersion = {
|
|
30
36
|
ALWAYS_LATEST: "ALWAYS_LATEST",
|
|
31
37
|
CURRENT_LATEST: "CURRENT_LATEST",
|
|
@@ -546,6 +546,7 @@ const _UAR = "UpdateApplicationRequest";
|
|
|
546
546
|
const _UARp = "UpdateApplicationResult";
|
|
547
547
|
const _UAV = "UserAttributeValue";
|
|
548
548
|
const _UAp = "UpdateApplication";
|
|
549
|
+
const _UCM = "UserControlMode";
|
|
549
550
|
const _UDC = "UpdateDirectoryConfig";
|
|
550
551
|
const _UDCR = "UpdateDirectoryConfigRequest";
|
|
551
552
|
const _UDCRp = "UpdateDirectoryConfigResult";
|
|
@@ -732,13 +733,13 @@ export var AdminAppLicenseUsageRecord$ = [3, n0, _AALUR,
|
|
|
732
733
|
];
|
|
733
734
|
export var AgentAccessConfig$ = [3, n0, _AAC,
|
|
734
735
|
0,
|
|
735
|
-
[_S, _SR, _SIF, _SBA, _SUE],
|
|
736
|
-
[() => AgentAccessSettingList, 0, 0, 0, 2], 3
|
|
736
|
+
[_S, _SR, _SIF, _SBA, _SUE, _UCM],
|
|
737
|
+
[() => AgentAccessSettingList, 0, 0, 0, 2, 0], 3
|
|
737
738
|
];
|
|
738
739
|
export var AgentAccessConfigForUpdate$ = [3, n0, _AACFU,
|
|
739
740
|
0,
|
|
740
|
-
[_S, _SBA, _SUE, _SR, _SIF],
|
|
741
|
-
[() => AgentAccessSettingList, 0, 2, 0, 0]
|
|
741
|
+
[_S, _SBA, _SUE, _SR, _SIF, _UCM],
|
|
742
|
+
[() => AgentAccessSettingList, 0, 2, 0, 0, 0]
|
|
742
743
|
];
|
|
743
744
|
export var AgentAccessSetting$ = [3, n0, _AAS,
|
|
744
745
|
0,
|
|
@@ -96,7 +96,7 @@ declare const CreateStackCommand_base: {
|
|
|
96
96
|
* AgentAccessConfig: { // AgentAccessConfig
|
|
97
97
|
* Settings: [ // AgentAccessSettingList // required
|
|
98
98
|
* { // AgentAccessSetting
|
|
99
|
-
* AgentAction: "COMPUTER_VISION" || "COMPUTER_INPUT", // required
|
|
99
|
+
* AgentAction: "COMPUTER_VISION" || "COMPUTER_INPUT" || "FORWARD_MCP_TOOLS", // required
|
|
100
100
|
* Permission: "ENABLED" || "DISABLED", // required
|
|
101
101
|
* },
|
|
102
102
|
* ],
|
|
@@ -104,6 +104,7 @@ declare const CreateStackCommand_base: {
|
|
|
104
104
|
* ScreenshotsUploadEnabled: true || false,
|
|
105
105
|
* ScreenResolution: "W_1280xH_720", // required
|
|
106
106
|
* ScreenImageFormat: "PNG" || "JPEG", // required
|
|
107
|
+
* UserControlMode: "VIEW_ONLY" || "VIEW_STOP" || "DISABLED",
|
|
107
108
|
* },
|
|
108
109
|
* };
|
|
109
110
|
* const command = new CreateStackCommand(input);
|
|
@@ -173,7 +174,7 @@ declare const CreateStackCommand_base: {
|
|
|
173
174
|
* // AgentAccessConfig: { // AgentAccessConfig
|
|
174
175
|
* // Settings: [ // AgentAccessSettingList // required
|
|
175
176
|
* // { // AgentAccessSetting
|
|
176
|
-
* // AgentAction: "COMPUTER_VISION" || "COMPUTER_INPUT", // required
|
|
177
|
+
* // AgentAction: "COMPUTER_VISION" || "COMPUTER_INPUT" || "FORWARD_MCP_TOOLS", // required
|
|
177
178
|
* // Permission: "ENABLED" || "DISABLED", // required
|
|
178
179
|
* // },
|
|
179
180
|
* // ],
|
|
@@ -181,6 +182,7 @@ declare const CreateStackCommand_base: {
|
|
|
181
182
|
* // ScreenshotsUploadEnabled: true || false,
|
|
182
183
|
* // ScreenResolution: "W_1280xH_720", // required
|
|
183
184
|
* // ScreenImageFormat: "PNG" || "JPEG", // required
|
|
185
|
+
* // UserControlMode: "VIEW_ONLY" || "VIEW_STOP" || "DISABLED",
|
|
184
186
|
* // },
|
|
185
187
|
* // },
|
|
186
188
|
* // };
|
|
@@ -112,7 +112,7 @@ declare const DescribeStacksCommand_base: {
|
|
|
112
112
|
* // AgentAccessConfig: { // AgentAccessConfig
|
|
113
113
|
* // Settings: [ // AgentAccessSettingList // required
|
|
114
114
|
* // { // AgentAccessSetting
|
|
115
|
-
* // AgentAction: "COMPUTER_VISION" || "COMPUTER_INPUT", // required
|
|
115
|
+
* // AgentAction: "COMPUTER_VISION" || "COMPUTER_INPUT" || "FORWARD_MCP_TOOLS", // required
|
|
116
116
|
* // Permission: "ENABLED" || "DISABLED", // required
|
|
117
117
|
* // },
|
|
118
118
|
* // ],
|
|
@@ -120,6 +120,7 @@ declare const DescribeStacksCommand_base: {
|
|
|
120
120
|
* // ScreenshotsUploadEnabled: true || false,
|
|
121
121
|
* // ScreenResolution: "W_1280xH_720", // required
|
|
122
122
|
* // ScreenImageFormat: "PNG" || "JPEG", // required
|
|
123
|
+
* // UserControlMode: "VIEW_ONLY" || "VIEW_STOP" || "DISABLED",
|
|
123
124
|
* // },
|
|
124
125
|
* // },
|
|
125
126
|
* // ],
|
|
@@ -97,7 +97,7 @@ declare const UpdateStackCommand_base: {
|
|
|
97
97
|
* AgentAccessConfig: { // AgentAccessConfigForUpdate
|
|
98
98
|
* Settings: [ // AgentAccessSettingList
|
|
99
99
|
* { // AgentAccessSetting
|
|
100
|
-
* AgentAction: "COMPUTER_VISION" || "COMPUTER_INPUT", // required
|
|
100
|
+
* AgentAction: "COMPUTER_VISION" || "COMPUTER_INPUT" || "FORWARD_MCP_TOOLS", // required
|
|
101
101
|
* Permission: "ENABLED" || "DISABLED", // required
|
|
102
102
|
* },
|
|
103
103
|
* ],
|
|
@@ -105,6 +105,7 @@ declare const UpdateStackCommand_base: {
|
|
|
105
105
|
* ScreenshotsUploadEnabled: true || false,
|
|
106
106
|
* ScreenResolution: "W_1280xH_720",
|
|
107
107
|
* ScreenImageFormat: "PNG" || "JPEG",
|
|
108
|
+
* UserControlMode: "VIEW_ONLY" || "VIEW_STOP" || "DISABLED",
|
|
108
109
|
* },
|
|
109
110
|
* };
|
|
110
111
|
* const command = new UpdateStackCommand(input);
|
|
@@ -174,7 +175,7 @@ declare const UpdateStackCommand_base: {
|
|
|
174
175
|
* // AgentAccessConfig: { // AgentAccessConfig
|
|
175
176
|
* // Settings: [ // AgentAccessSettingList // required
|
|
176
177
|
* // { // AgentAccessSetting
|
|
177
|
-
* // AgentAction: "COMPUTER_VISION" || "COMPUTER_INPUT", // required
|
|
178
|
+
* // AgentAction: "COMPUTER_VISION" || "COMPUTER_INPUT" || "FORWARD_MCP_TOOLS", // required
|
|
178
179
|
* // Permission: "ENABLED" || "DISABLED", // required
|
|
179
180
|
* // },
|
|
180
181
|
* // ],
|
|
@@ -182,6 +183,7 @@ declare const UpdateStackCommand_base: {
|
|
|
182
183
|
* // ScreenshotsUploadEnabled: true || false,
|
|
183
184
|
* // ScreenResolution: "W_1280xH_720", // required
|
|
184
185
|
* // ScreenImageFormat: "PNG" || "JPEG", // required
|
|
186
|
+
* // UserControlMode: "VIEW_ONLY" || "VIEW_STOP" || "DISABLED",
|
|
185
187
|
* // },
|
|
186
188
|
* // },
|
|
187
189
|
* // };
|
|
@@ -57,6 +57,7 @@ export type ScreenResolution = (typeof ScreenResolution)[keyof typeof ScreenReso
|
|
|
57
57
|
export declare const AgentAction: {
|
|
58
58
|
readonly COMPUTER_INPUT: "COMPUTER_INPUT";
|
|
59
59
|
readonly COMPUTER_VISION: "COMPUTER_VISION";
|
|
60
|
+
readonly FORWARD_MCP_TOOLS: "FORWARD_MCP_TOOLS";
|
|
60
61
|
};
|
|
61
62
|
/**
|
|
62
63
|
* @public
|
|
@@ -74,6 +75,19 @@ export declare const Permission: {
|
|
|
74
75
|
* @public
|
|
75
76
|
*/
|
|
76
77
|
export type Permission = (typeof Permission)[keyof typeof Permission];
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
* @enum
|
|
81
|
+
*/
|
|
82
|
+
export declare const UserControlMode: {
|
|
83
|
+
readonly DISABLED: "DISABLED";
|
|
84
|
+
readonly VIEW_ONLY: "VIEW_ONLY";
|
|
85
|
+
readonly VIEW_STOP: "VIEW_STOP";
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
export type UserControlMode = (typeof UserControlMode)[keyof typeof UserControlMode];
|
|
77
91
|
/**
|
|
78
92
|
* @public
|
|
79
93
|
* @enum
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AccessEndpointType, Action, AgentAction, AgentSoftwareVersion, AppBlockBuilderAttribute, AppBlockBuilderPlatformType, AppBlockBuilderState, AppBlockBuilderStateChangeReasonCode, AppBlockState, ApplicationAttribute, AppVisibility, AuthenticationType, CertificateBasedAuthStatus, DynamicAppProvidersEnabled, ExportImageTaskState, FleetAttribute, FleetErrorCode, FleetState, FleetType, ImageBuilderState, ImageBuilderStateChangeReasonCode, ImageSharedWithOthers, ImageState, ImageStateChangeReasonCode, ImageType, InstanceDrainStatus, LatestAppstreamAgentVersion, MessageAction, PackagingType, Permission, PlatformType, PreferredProtocol, ScreenImageFormat, ScreenResolution, SessionConnectionState, SessionState, SoftwareDeploymentStatus, StackAttribute, StackErrorCode, StorageConnectorType, StreamView, ThemeAttribute, ThemeState, ThemeStyling, UsageReportExecutionErrorCode, UsageReportSchedule, UserStackAssociationErrorCode, VisibilityType } from "./enums";
|
|
1
|
+
import type { AccessEndpointType, Action, AgentAction, AgentSoftwareVersion, AppBlockBuilderAttribute, AppBlockBuilderPlatformType, AppBlockBuilderState, AppBlockBuilderStateChangeReasonCode, AppBlockState, ApplicationAttribute, AppVisibility, AuthenticationType, CertificateBasedAuthStatus, DynamicAppProvidersEnabled, ExportImageTaskState, FleetAttribute, FleetErrorCode, FleetState, FleetType, ImageBuilderState, ImageBuilderStateChangeReasonCode, ImageSharedWithOthers, ImageState, ImageStateChangeReasonCode, ImageType, InstanceDrainStatus, LatestAppstreamAgentVersion, MessageAction, PackagingType, Permission, PlatformType, PreferredProtocol, ScreenImageFormat, ScreenResolution, SessionConnectionState, SessionState, SoftwareDeploymentStatus, StackAttribute, StackErrorCode, StorageConnectorType, StreamView, ThemeAttribute, ThemeState, ThemeStyling, UsageReportExecutionErrorCode, UsageReportSchedule, UserControlMode, UserStackAssociationErrorCode, VisibilityType } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p>Describes an interface VPC endpoint (interface endpoint) that lets you create a private connection between the virtual private cloud (VPC) that you specify and WorkSpaces Applications. When you specify an interface endpoint for a stack, users of the stack can connect to WorkSpaces Applications only through that endpoint. When you specify an interface endpoint for an image builder, administrators can connect to the image builder only through that endpoint.</p>
|
|
4
4
|
* @public
|
|
@@ -62,7 +62,7 @@ export interface AdminAppLicenseUsageRecord {
|
|
|
62
62
|
*/
|
|
63
63
|
export interface AgentAccessSetting {
|
|
64
64
|
/**
|
|
65
|
-
* <p>The agent action to configure. Valid values are COMPUTER_VISION and
|
|
65
|
+
* <p>The agent action to configure. Valid values are COMPUTER_VISION, COMPUTER_INPUT, and FORWARD_MCP_TOOLS. If you enable COMPUTER_INPUT, you must also enable COMPUTER_VISION.</p>
|
|
66
66
|
* @public
|
|
67
67
|
*/
|
|
68
68
|
AgentAction: AgentAction | undefined;
|
|
@@ -102,6 +102,11 @@ export interface AgentAccessConfig {
|
|
|
102
102
|
* @public
|
|
103
103
|
*/
|
|
104
104
|
ScreenImageFormat: ScreenImageFormat | undefined;
|
|
105
|
+
/**
|
|
106
|
+
* <p>The user control mode for agent sessions. This setting determines how users can interact with agent sessions.</p>
|
|
107
|
+
* @public
|
|
108
|
+
*/
|
|
109
|
+
UserControlMode?: UserControlMode | undefined;
|
|
105
110
|
}
|
|
106
111
|
/**
|
|
107
112
|
* <p>The configuration for updating agent access on a stack. This type supports partial updates, so you only need to specify the fields you want to change.</p>
|
|
@@ -133,6 +138,11 @@ export interface AgentAccessConfigForUpdate {
|
|
|
133
138
|
* @public
|
|
134
139
|
*/
|
|
135
140
|
ScreenImageFormat?: ScreenImageFormat | undefined;
|
|
141
|
+
/**
|
|
142
|
+
* <p>The user control mode for agent sessions. This setting determines how users can interact with agent sessions.</p>
|
|
143
|
+
* @public
|
|
144
|
+
*/
|
|
145
|
+
UserControlMode?: UserControlMode | undefined;
|
|
136
146
|
}
|
|
137
147
|
/**
|
|
138
148
|
* <p>The error details.</p>
|
|
@@ -28,6 +28,7 @@ export type ScreenResolution =
|
|
|
28
28
|
export declare const AgentAction: {
|
|
29
29
|
readonly COMPUTER_INPUT: "COMPUTER_INPUT";
|
|
30
30
|
readonly COMPUTER_VISION: "COMPUTER_VISION";
|
|
31
|
+
readonly FORWARD_MCP_TOOLS: "FORWARD_MCP_TOOLS";
|
|
31
32
|
};
|
|
32
33
|
export type AgentAction = (typeof AgentAction)[keyof typeof AgentAction];
|
|
33
34
|
export declare const Permission: {
|
|
@@ -35,6 +36,13 @@ export declare const Permission: {
|
|
|
35
36
|
readonly ENABLED: "ENABLED";
|
|
36
37
|
};
|
|
37
38
|
export type Permission = (typeof Permission)[keyof typeof Permission];
|
|
39
|
+
export declare const UserControlMode: {
|
|
40
|
+
readonly DISABLED: "DISABLED";
|
|
41
|
+
readonly VIEW_ONLY: "VIEW_ONLY";
|
|
42
|
+
readonly VIEW_STOP: "VIEW_STOP";
|
|
43
|
+
};
|
|
44
|
+
export type UserControlMode =
|
|
45
|
+
(typeof UserControlMode)[keyof typeof UserControlMode];
|
|
38
46
|
export declare const AgentSoftwareVersion: {
|
|
39
47
|
readonly ALWAYS_LATEST: "ALWAYS_LATEST";
|
|
40
48
|
readonly CURRENT_LATEST: "CURRENT_LATEST";
|
|
@@ -45,6 +45,7 @@ import {
|
|
|
45
45
|
ThemeStyling,
|
|
46
46
|
UsageReportExecutionErrorCode,
|
|
47
47
|
UsageReportSchedule,
|
|
48
|
+
UserControlMode,
|
|
48
49
|
UserStackAssociationErrorCode,
|
|
49
50
|
VisibilityType,
|
|
50
51
|
} from "./enums";
|
|
@@ -71,6 +72,7 @@ export interface AgentAccessConfig {
|
|
|
71
72
|
ScreenshotsUploadEnabled?: boolean | undefined;
|
|
72
73
|
ScreenResolution: ScreenResolution | undefined;
|
|
73
74
|
ScreenImageFormat: ScreenImageFormat | undefined;
|
|
75
|
+
UserControlMode?: UserControlMode | undefined;
|
|
74
76
|
}
|
|
75
77
|
export interface AgentAccessConfigForUpdate {
|
|
76
78
|
Settings?: AgentAccessSetting[] | undefined;
|
|
@@ -78,6 +80,7 @@ export interface AgentAccessConfigForUpdate {
|
|
|
78
80
|
ScreenshotsUploadEnabled?: boolean | undefined;
|
|
79
81
|
ScreenResolution?: ScreenResolution | undefined;
|
|
80
82
|
ScreenImageFormat?: ScreenImageFormat | undefined;
|
|
83
|
+
UserControlMode?: UserControlMode | undefined;
|
|
81
84
|
}
|
|
82
85
|
export interface ErrorDetails {
|
|
83
86
|
ErrorCode?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appstream",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appstream Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1073.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|