@aws-sdk/client-ssm-sap 3.934.0 → 3.935.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 +133 -132
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +132 -0
- package/dist-es/models/errors.js +71 -0
- package/dist-es/models/models_0.js +1 -203
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +316 -0
- package/dist-types/models/errors.d.ts +67 -0
- package/dist-types/models/models_0.d.ts +1 -383
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +172 -0
- package/dist-types/ts3.4/models/errors.d.ts +40 -0
- package/dist-types/ts3.4/models/models_0.d.ts +25 -212
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,40 +1,28 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
readonly STOPPED: "STOPPED";
|
|
27
|
-
readonly STOPPING: "STOPPING";
|
|
28
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
29
|
-
};
|
|
30
|
-
export type ApplicationStatus =
|
|
31
|
-
(typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
32
|
-
export declare const ApplicationType: {
|
|
33
|
-
readonly HANA: "HANA";
|
|
34
|
-
readonly SAP_ABAP: "SAP_ABAP";
|
|
35
|
-
};
|
|
36
|
-
export type ApplicationType =
|
|
37
|
-
(typeof ApplicationType)[keyof typeof ApplicationType];
|
|
1
|
+
import {
|
|
2
|
+
AllocationType,
|
|
3
|
+
ApplicationDiscoveryStatus,
|
|
4
|
+
ApplicationStatus,
|
|
5
|
+
ApplicationType,
|
|
6
|
+
BackintMode,
|
|
7
|
+
ClusterStatus,
|
|
8
|
+
ComponentStatus,
|
|
9
|
+
ComponentType,
|
|
10
|
+
ConfigurationCheckOperationListingMode,
|
|
11
|
+
ConfigurationCheckType,
|
|
12
|
+
ConnectedEntityType,
|
|
13
|
+
CredentialType,
|
|
14
|
+
DatabaseConnectionMethod,
|
|
15
|
+
DatabaseStatus,
|
|
16
|
+
DatabaseType,
|
|
17
|
+
FilterOperator,
|
|
18
|
+
HostRole,
|
|
19
|
+
OperationEventStatus,
|
|
20
|
+
OperationMode,
|
|
21
|
+
OperationStatus,
|
|
22
|
+
PermissionActionType,
|
|
23
|
+
ReplicationMode,
|
|
24
|
+
RuleResultStatus,
|
|
25
|
+
} from "./enums";
|
|
38
26
|
export interface Application {
|
|
39
27
|
Id?: string | undefined;
|
|
40
28
|
Type?: ApplicationType | undefined;
|
|
@@ -47,11 +35,6 @@ export interface Application {
|
|
|
47
35
|
StatusMessage?: string | undefined;
|
|
48
36
|
AssociatedApplicationArns?: string[] | undefined;
|
|
49
37
|
}
|
|
50
|
-
export declare const CredentialType: {
|
|
51
|
-
readonly ADMIN: "ADMIN";
|
|
52
|
-
};
|
|
53
|
-
export type CredentialType =
|
|
54
|
-
(typeof CredentialType)[keyof typeof CredentialType];
|
|
55
38
|
export interface ApplicationCredential {
|
|
56
39
|
DatabaseName: string | undefined;
|
|
57
40
|
CredentialType: CredentialType | undefined;
|
|
@@ -75,51 +58,15 @@ export interface AssociatedHost {
|
|
|
75
58
|
IpAddresses?: IpAddressMember[] | undefined;
|
|
76
59
|
OsVersion?: string | undefined;
|
|
77
60
|
}
|
|
78
|
-
export declare const BackintMode: {
|
|
79
|
-
readonly AWSBackup: "AWSBackup";
|
|
80
|
-
};
|
|
81
|
-
export type BackintMode = (typeof BackintMode)[keyof typeof BackintMode];
|
|
82
61
|
export interface BackintConfig {
|
|
83
62
|
BackintMode: BackintMode | undefined;
|
|
84
63
|
EnsureNoBackupInProcess: boolean | undefined;
|
|
85
64
|
}
|
|
86
|
-
export declare const ClusterStatus: {
|
|
87
|
-
readonly MAINTENANCE: "MAINTENANCE";
|
|
88
|
-
readonly NONE: "NONE";
|
|
89
|
-
readonly OFFLINE: "OFFLINE";
|
|
90
|
-
readonly ONLINE: "ONLINE";
|
|
91
|
-
readonly STANDBY: "STANDBY";
|
|
92
|
-
};
|
|
93
|
-
export type ClusterStatus = (typeof ClusterStatus)[keyof typeof ClusterStatus];
|
|
94
|
-
export declare const ComponentType: {
|
|
95
|
-
readonly ABAP: "ABAP";
|
|
96
|
-
readonly ASCS: "ASCS";
|
|
97
|
-
readonly DIALOG: "DIALOG";
|
|
98
|
-
readonly ERS: "ERS";
|
|
99
|
-
readonly HANA: "HANA";
|
|
100
|
-
readonly HANA_NODE: "HANA_NODE";
|
|
101
|
-
readonly WD: "WD";
|
|
102
|
-
readonly WEBDISP: "WEBDISP";
|
|
103
|
-
};
|
|
104
|
-
export type ComponentType = (typeof ComponentType)[keyof typeof ComponentType];
|
|
105
|
-
export declare const DatabaseConnectionMethod: {
|
|
106
|
-
readonly DIRECT: "DIRECT";
|
|
107
|
-
readonly OVERLAY: "OVERLAY";
|
|
108
|
-
};
|
|
109
|
-
export type DatabaseConnectionMethod =
|
|
110
|
-
(typeof DatabaseConnectionMethod)[keyof typeof DatabaseConnectionMethod];
|
|
111
65
|
export interface DatabaseConnection {
|
|
112
66
|
DatabaseConnectionMethod?: DatabaseConnectionMethod | undefined;
|
|
113
67
|
DatabaseArn?: string | undefined;
|
|
114
68
|
ConnectionIp?: string | undefined;
|
|
115
69
|
}
|
|
116
|
-
export declare const HostRole: {
|
|
117
|
-
readonly LEADER: "LEADER";
|
|
118
|
-
readonly STANDBY: "STANDBY";
|
|
119
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
120
|
-
readonly WORKER: "WORKER";
|
|
121
|
-
};
|
|
122
|
-
export type HostRole = (typeof HostRole)[keyof typeof HostRole];
|
|
123
70
|
export interface Host {
|
|
124
71
|
HostName?: string | undefined;
|
|
125
72
|
HostIp?: string | undefined;
|
|
@@ -128,23 +75,6 @@ export interface Host {
|
|
|
128
75
|
HostRole?: HostRole | undefined;
|
|
129
76
|
OsVersion?: string | undefined;
|
|
130
77
|
}
|
|
131
|
-
export declare const OperationMode: {
|
|
132
|
-
readonly DELTA_DATASHIPPING: "DELTA_DATASHIPPING";
|
|
133
|
-
readonly LOGREPLAY: "LOGREPLAY";
|
|
134
|
-
readonly LOGREPLAY_READACCESS: "LOGREPLAY_READACCESS";
|
|
135
|
-
readonly NONE: "NONE";
|
|
136
|
-
readonly PRIMARY: "PRIMARY";
|
|
137
|
-
};
|
|
138
|
-
export type OperationMode = (typeof OperationMode)[keyof typeof OperationMode];
|
|
139
|
-
export declare const ReplicationMode: {
|
|
140
|
-
readonly ASYNC: "ASYNC";
|
|
141
|
-
readonly NONE: "NONE";
|
|
142
|
-
readonly PRIMARY: "PRIMARY";
|
|
143
|
-
readonly SYNC: "SYNC";
|
|
144
|
-
readonly SYNCMEM: "SYNCMEM";
|
|
145
|
-
};
|
|
146
|
-
export type ReplicationMode =
|
|
147
|
-
(typeof ReplicationMode)[keyof typeof ReplicationMode];
|
|
148
78
|
export interface Resilience {
|
|
149
79
|
HsrTier?: string | undefined;
|
|
150
80
|
HsrReplicationMode?: ReplicationMode | undefined;
|
|
@@ -152,17 +82,6 @@ export interface Resilience {
|
|
|
152
82
|
ClusterStatus?: ClusterStatus | undefined;
|
|
153
83
|
EnqueueReplication?: boolean | undefined;
|
|
154
84
|
}
|
|
155
|
-
export declare const ComponentStatus: {
|
|
156
|
-
readonly ACTIVATED: "ACTIVATED";
|
|
157
|
-
readonly RUNNING: "RUNNING";
|
|
158
|
-
readonly RUNNING_WITH_ERROR: "RUNNING_WITH_ERROR";
|
|
159
|
-
readonly STARTING: "STARTING";
|
|
160
|
-
readonly STOPPED: "STOPPED";
|
|
161
|
-
readonly STOPPING: "STOPPING";
|
|
162
|
-
readonly UNDEFINED: "UNDEFINED";
|
|
163
|
-
};
|
|
164
|
-
export type ComponentStatus =
|
|
165
|
-
(typeof ComponentStatus)[keyof typeof ComponentStatus];
|
|
166
85
|
export interface Component {
|
|
167
86
|
ComponentId?: string | undefined;
|
|
168
87
|
Sid?: string | undefined;
|
|
@@ -197,13 +116,6 @@ export interface ComponentSummary {
|
|
|
197
116
|
Tags?: Record<string, string> | undefined;
|
|
198
117
|
Arn?: string | undefined;
|
|
199
118
|
}
|
|
200
|
-
export declare const ConfigurationCheckType: {
|
|
201
|
-
readonly SAP_CHECK_01: "SAP_CHECK_01";
|
|
202
|
-
readonly SAP_CHECK_02: "SAP_CHECK_02";
|
|
203
|
-
readonly SAP_CHECK_03: "SAP_CHECK_03";
|
|
204
|
-
};
|
|
205
|
-
export type ConfigurationCheckType =
|
|
206
|
-
(typeof ConfigurationCheckType)[keyof typeof ConfigurationCheckType];
|
|
207
119
|
export interface ConfigurationCheckDefinition {
|
|
208
120
|
Id?: ConfigurationCheckType | undefined;
|
|
209
121
|
Name?: string | undefined;
|
|
@@ -217,13 +129,6 @@ export interface RuleStatusCounts {
|
|
|
217
129
|
Passed?: number | undefined;
|
|
218
130
|
Unknown?: number | undefined;
|
|
219
131
|
}
|
|
220
|
-
export declare const OperationStatus: {
|
|
221
|
-
readonly ERROR: "ERROR";
|
|
222
|
-
readonly INPROGRESS: "INPROGRESS";
|
|
223
|
-
readonly SUCCESS: "SUCCESS";
|
|
224
|
-
};
|
|
225
|
-
export type OperationStatus =
|
|
226
|
-
(typeof OperationStatus)[keyof typeof OperationStatus];
|
|
227
132
|
export interface ConfigurationCheckOperation {
|
|
228
133
|
Id?: string | undefined;
|
|
229
134
|
ApplicationId?: string | undefined;
|
|
@@ -236,38 +141,6 @@ export interface ConfigurationCheckOperation {
|
|
|
236
141
|
EndTime?: Date | undefined;
|
|
237
142
|
RuleStatusCounts?: RuleStatusCounts | undefined;
|
|
238
143
|
}
|
|
239
|
-
export declare const ConfigurationCheckOperationListingMode: {
|
|
240
|
-
readonly ALL_OPERATIONS: "ALL_OPERATIONS";
|
|
241
|
-
readonly LATEST_PER_CHECK: "LATEST_PER_CHECK";
|
|
242
|
-
};
|
|
243
|
-
export type ConfigurationCheckOperationListingMode =
|
|
244
|
-
(typeof ConfigurationCheckOperationListingMode)[keyof typeof ConfigurationCheckOperationListingMode];
|
|
245
|
-
export declare class ConflictException extends __BaseException {
|
|
246
|
-
readonly name: "ConflictException";
|
|
247
|
-
readonly $fault: "client";
|
|
248
|
-
Message?: string | undefined;
|
|
249
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
250
|
-
}
|
|
251
|
-
export declare const ConnectedEntityType: {
|
|
252
|
-
readonly DBMS: "DBMS";
|
|
253
|
-
};
|
|
254
|
-
export type ConnectedEntityType =
|
|
255
|
-
(typeof ConnectedEntityType)[keyof typeof ConnectedEntityType];
|
|
256
|
-
export declare const DatabaseType: {
|
|
257
|
-
readonly SYSTEM: "SYSTEM";
|
|
258
|
-
readonly TENANT: "TENANT";
|
|
259
|
-
};
|
|
260
|
-
export type DatabaseType = (typeof DatabaseType)[keyof typeof DatabaseType];
|
|
261
|
-
export declare const DatabaseStatus: {
|
|
262
|
-
readonly ERROR: "ERROR";
|
|
263
|
-
readonly RUNNING: "RUNNING";
|
|
264
|
-
readonly STARTING: "STARTING";
|
|
265
|
-
readonly STOPPED: "STOPPED";
|
|
266
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
267
|
-
readonly WARNING: "WARNING";
|
|
268
|
-
};
|
|
269
|
-
export type DatabaseStatus =
|
|
270
|
-
(typeof DatabaseStatus)[keyof typeof DatabaseStatus];
|
|
271
144
|
export interface Database {
|
|
272
145
|
ApplicationId?: string | undefined;
|
|
273
146
|
ComponentId?: string | undefined;
|
|
@@ -290,11 +163,6 @@ export interface DatabaseSummary {
|
|
|
290
163
|
Arn?: string | undefined;
|
|
291
164
|
Tags?: Record<string, string> | undefined;
|
|
292
165
|
}
|
|
293
|
-
export declare const PermissionActionType: {
|
|
294
|
-
readonly RESTORE: "RESTORE";
|
|
295
|
-
};
|
|
296
|
-
export type PermissionActionType =
|
|
297
|
-
(typeof PermissionActionType)[keyof typeof PermissionActionType];
|
|
298
166
|
export interface DeleteResourcePermissionInput {
|
|
299
167
|
ActionType?: PermissionActionType | undefined;
|
|
300
168
|
SourceResourceArn?: string | undefined;
|
|
@@ -303,49 +171,10 @@ export interface DeleteResourcePermissionInput {
|
|
|
303
171
|
export interface DeleteResourcePermissionOutput {
|
|
304
172
|
Policy?: string | undefined;
|
|
305
173
|
}
|
|
306
|
-
export declare class InternalServerException extends __BaseException {
|
|
307
|
-
readonly name: "InternalServerException";
|
|
308
|
-
readonly $fault: "server";
|
|
309
|
-
Message?: string | undefined;
|
|
310
|
-
constructor(
|
|
311
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
312
|
-
);
|
|
313
|
-
}
|
|
314
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
315
|
-
readonly name: "ResourceNotFoundException";
|
|
316
|
-
readonly $fault: "client";
|
|
317
|
-
Message?: string | undefined;
|
|
318
|
-
constructor(
|
|
319
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
320
|
-
);
|
|
321
|
-
}
|
|
322
|
-
export declare class ValidationException extends __BaseException {
|
|
323
|
-
readonly name: "ValidationException";
|
|
324
|
-
readonly $fault: "client";
|
|
325
|
-
Message?: string | undefined;
|
|
326
|
-
constructor(
|
|
327
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
328
|
-
);
|
|
329
|
-
}
|
|
330
174
|
export interface DeregisterApplicationInput {
|
|
331
175
|
ApplicationId: string | undefined;
|
|
332
176
|
}
|
|
333
177
|
export interface DeregisterApplicationOutput {}
|
|
334
|
-
export declare class UnauthorizedException extends __BaseException {
|
|
335
|
-
readonly name: "UnauthorizedException";
|
|
336
|
-
readonly $fault: "client";
|
|
337
|
-
Message?: string | undefined;
|
|
338
|
-
constructor(
|
|
339
|
-
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
340
|
-
);
|
|
341
|
-
}
|
|
342
|
-
export declare const FilterOperator: {
|
|
343
|
-
readonly EQUALS: "Equals";
|
|
344
|
-
readonly GREATER_THAN_OR_EQUALS: "GreaterThanOrEquals";
|
|
345
|
-
readonly LESS_THAN_OR_EQUALS: "LessThanOrEquals";
|
|
346
|
-
};
|
|
347
|
-
export type FilterOperator =
|
|
348
|
-
(typeof FilterOperator)[keyof typeof FilterOperator];
|
|
349
178
|
export interface Filter {
|
|
350
179
|
Name: string | undefined;
|
|
351
180
|
Value: string | undefined;
|
|
@@ -467,13 +296,6 @@ export interface Resource {
|
|
|
467
296
|
ResourceArn?: string | undefined;
|
|
468
297
|
ResourceType?: string | undefined;
|
|
469
298
|
}
|
|
470
|
-
export declare const OperationEventStatus: {
|
|
471
|
-
readonly COMPLETED: "COMPLETED";
|
|
472
|
-
readonly FAILED: "FAILED";
|
|
473
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
474
|
-
};
|
|
475
|
-
export type OperationEventStatus =
|
|
476
|
-
(typeof OperationEventStatus)[keyof typeof OperationEventStatus];
|
|
477
299
|
export interface OperationEvent {
|
|
478
300
|
Description?: string | undefined;
|
|
479
301
|
Resource?: Resource | undefined;
|
|
@@ -515,15 +337,6 @@ export interface ListSubCheckRuleResultsInput {
|
|
|
515
337
|
MaxResults?: number | undefined;
|
|
516
338
|
NextToken?: string | undefined;
|
|
517
339
|
}
|
|
518
|
-
export declare const RuleResultStatus: {
|
|
519
|
-
readonly FAILED: "FAILED";
|
|
520
|
-
readonly INFO: "INFO";
|
|
521
|
-
readonly PASSED: "PASSED";
|
|
522
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
523
|
-
readonly WARNING: "WARNING";
|
|
524
|
-
};
|
|
525
|
-
export type RuleResultStatus =
|
|
526
|
-
(typeof RuleResultStatus)[keyof typeof RuleResultStatus];
|
|
527
340
|
export interface RuleResult {
|
|
528
341
|
Id?: string | undefined;
|
|
529
342
|
Description?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm-sap",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Sap Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ssm-sap",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|