@scaleway/sdk-qaas 1.5.0 → 2.2.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/README.md ADDED
@@ -0,0 +1,96 @@
1
+ # @scaleway/sdk-qaas
2
+
3
+ [![npm version](https://img.shields.io/npm/v/@scaleway/sdk-qaas.svg)](https://www.npmjs.com/package/@scaleway/sdk-qaas)
4
+ [![npm downloads](https://img.shields.io/npm/dm/@scaleway/sdk-qaas.svg)](https://www.npmjs.com/package/@scaleway/sdk-qaas)
5
+ [![license](https://img.shields.io/npm/l/@scaleway/sdk-qaas.svg)](https://github.com/scaleway/scaleway-sdk-js/blob/master/LICENSE)
6
+
7
+ Scaleway SDK for Qaas API.
8
+
9
+ > **Note**
10
+ > This is an automatically generated package that is part of the [Scaleway SDK for JavaScript](https://github.com/scaleway/scaleway-sdk-js).
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ npm install @scaleway/sdk-qaas @scaleway/sdk-client
16
+ ```
17
+
18
+ or with pnpm:
19
+
20
+ ```bash
21
+ pnpm add @scaleway/sdk-qaas @scaleway/sdk-client
22
+ ```
23
+
24
+ or with yarn:
25
+
26
+ ```bash
27
+ yarn add @scaleway/sdk-qaas @scaleway/sdk-client
28
+ ```
29
+
30
+ ## Getting Started
31
+
32
+ You'll need a pair of access and secret keys to connect to Scaleway API. Please check the [documentation](https://www.scaleway.com/en/docs/identity-and-access-management/iam/how-to/create-api-keys/) on how to retrieve them.
33
+
34
+ ### Basic Usage
35
+
36
+ ```typescript
37
+ import { createClient } from '@scaleway/sdk-client'
38
+ import { Qaas } from '@scaleway/sdk-qaas'
39
+
40
+ const client = createClient({
41
+ accessKey: 'SCWXXXXXXXXXXXXXXXXX',
42
+ secretKey: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx',
43
+ defaultProjectId: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx',
44
+ defaultRegion: 'fr-par',
45
+ defaultZone: 'fr-par-1',
46
+ })
47
+
48
+ const api = new Qaas.v1.API(client)
49
+
50
+ // Use the API
51
+ // Example: await api.listServers()
52
+ ```
53
+
54
+ ### Using Configuration Loader
55
+
56
+ For a simpler setup, you can load credentials from the configuration file or environment variables:
57
+
58
+ ```typescript
59
+ import { createClient } from '@scaleway/sdk-client'
60
+ import { loadProfileFromConfigurationFile } from '@scaleway/configuration-loader'
61
+ import { Qaas } from '@scaleway/sdk-qaas'
62
+
63
+ const profile = loadProfileFromConfigurationFile()
64
+ const client = createClient(profile)
65
+ const api = new Qaas.v1.API(client)
66
+ ```
67
+
68
+ ## Documentation
69
+
70
+ - 📚 [Scaleway SDK Reference Documentation](https://scaleway.github.io/scaleway-sdk-js)
71
+ - 🌐 [Scaleway Qaas API Documentation](https://www.scaleway.com/en/developers/api/qaas/)
72
+ - 📖 [Main Repository](https://github.com/scaleway/scaleway-sdk-js)
73
+ - 💡 [Example Projects](https://github.com/scaleway/scaleway-sdk-js/tree/master/examples)
74
+
75
+ ## Features
76
+
77
+ - ✅ Full TypeScript support with complete type definitions
78
+ - ✅ Promise-based API
79
+ - ✅ Automatic pagination helpers
80
+ - ✅ Built-in error handling
81
+ - ✅ Compatible with Node.js ≥ 20
82
+
83
+ ## Support
84
+
85
+ We love feedback! Feel free to reach us on:
86
+ - [Scaleway Slack community](https://slack.scaleway.com/) - Join us on [#opensource](https://scaleway-community.slack.com/app_redirect?channel=opensource)
87
+ - [GitHub Issues](https://github.com/scaleway/scaleway-sdk-js/issues)
88
+
89
+ ## Contributing
90
+
91
+ This repository is at its early stage and is still in active development. If you are looking for a way to contribute, please read [CONTRIBUTING.md](https://github.com/scaleway/scaleway-sdk-js/blob/master/CONTRIBUTING.md).
92
+
93
+ ## License
94
+
95
+ This project is Apache 2.0 licensed. See the [LICENSE](https://github.com/scaleway/scaleway-sdk-js/blob/master/LICENSE) file for details.
96
+
@@ -1,14 +1,14 @@
1
- import { API as ParentAPI } from '@scaleway/sdk-client';
2
1
  import type { WaitForOptions } from '@scaleway/sdk-client';
3
- import type { Application, Booking, CancelJobRequest, CancelProcessRequest, CreateJobRequest, CreateModelRequest, CreateProcessRequest, CreateSessionRequest, DeleteJobRequest, DeleteProcessRequest, DeleteSessionRequest, GetApplicationRequest, GetBookingRequest, GetJobCircuitRequest, GetJobRequest, GetModelRequest, GetPlatformRequest, GetProcessRequest, GetSessionRequest, Job, JobCircuit, ListApplicationsRequest, ListApplicationsResponse, ListBookingsRequest, ListBookingsResponse, ListJobResultsRequest, ListJobResultsResponse, ListJobsRequest, ListJobsResponse, ListModelsRequest, ListModelsResponse, ListPlatformsRequest, ListPlatformsResponse, ListProcessResultsRequest, ListProcessResultsResponse, ListProcessesRequest, ListProcessesResponse, ListSessionACLsRequest, ListSessionACLsResponse, ListSessionsRequest, ListSessionsResponse, Model, Platform, Process, Session, TerminateSessionRequest, UpdateBookingRequest, UpdateJobRequest, UpdateProcessRequest, UpdateSessionRequest } from './types.gen.js';
2
+ import { API as ParentAPI } from '@scaleway/sdk-client';
3
+ import type { Application, Booking, CancelJobRequest, CancelProcessRequest, CreateJobRequest, CreateModelRequest, CreateProcessRequest, CreateSessionRequest, DeleteJobRequest, DeleteProcessRequest, DeleteSessionRequest, GetApplicationRequest, GetBookingRequest, GetJobCircuitRequest, GetJobRequest, GetModelRequest, GetPlatformRequest, GetProcessRequest, GetSessionRequest, Job, JobCircuit, ListApplicationsRequest, ListApplicationsResponse, ListBookingsRequest, ListBookingsResponse, ListJobResultsRequest, ListJobResultsResponse, ListJobsRequest, ListJobsResponse, ListModelsRequest, ListModelsResponse, ListPlatformsRequest, ListPlatformsResponse, ListProcessesRequest, ListProcessesResponse, ListProcessResultsRequest, ListProcessResultsResponse, ListSessionACLsRequest, ListSessionACLsResponse, ListSessionsRequest, ListSessionsResponse, Model, Platform, Process, Session, TerminateSessionRequest, UpdateBookingRequest, UpdateJobRequest, UpdateProcessRequest, UpdateSessionRequest } from './types.gen.js';
4
4
  /**
5
5
  * Quantum as a Service API.
6
6
 
7
- This API allows you to manage Scaleway Quantum as a Service.
7
+ This API allows you to allocate and program Quantum Processing Units (QPUs) to run quantum algorithms.
8
8
  */
9
9
  export declare class API extends ParentAPI {
10
10
  /**
11
- * Get job information. Retrieve information about the provided **job ID**, such as status, payload, and result.
11
+ * Get job information. Retrieve information about the provided **job ID**, mainly used to get the current status.
12
12
  *
13
13
  * @param request - The request {@link GetJobRequest}
14
14
  * @returns A Promise of Job
@@ -24,7 +24,7 @@ export declare class API extends ParentAPI {
24
24
  waitForJob: (request: Readonly<GetJobRequest>, options?: Readonly<WaitForOptions<Job>>) => Promise<Job>;
25
25
  protected pageOfListJobs: (request?: Readonly<ListJobsRequest>) => Promise<ListJobsResponse>;
26
26
  /**
27
- * List all jobs within a project or session. Retrieve information about all jobs within a given project or session.
27
+ * List all jobs within a project or session. Retrieve information about all jobs within a given session.
28
28
  *
29
29
  * @param request - The request {@link ListJobsRequest}
30
30
  * @returns A Promise of ListJobsResponse
@@ -45,7 +45,7 @@ export declare class API extends ParentAPI {
45
45
  [Symbol.asyncIterator]: () => AsyncGenerator<import("./types.gen.js").JobResult[], void, void>;
46
46
  };
47
47
  /**
48
- * Create a job. Create a job to be executed inside a session.
48
+ * Create a job. Create a job to be executed inside a QPU session.
49
49
  *
50
50
  * @param request - The request {@link CreateJobRequest}
51
51
  * @returns A Promise of Job
@@ -97,7 +97,7 @@ export declare class API extends ParentAPI {
97
97
  [Symbol.asyncIterator]: () => AsyncGenerator<Platform[], void, void>;
98
98
  };
99
99
  /**
100
- * Get session information. Retrieve information about the provided **session ID**, such as name, status, and number of executed jobs.
100
+ * Get session information. Retrieve information about the provided **session ID**, such as name and status.
101
101
  *
102
102
  * @param request - The request {@link GetSessionRequest}
103
103
  * @returns A Promise of Session
@@ -113,7 +113,7 @@ export declare class API extends ParentAPI {
113
113
  waitForSession: (request: Readonly<GetSessionRequest>, options?: Readonly<WaitForOptions<Session>>) => Promise<Session>;
114
114
  protected pageOfListSessions: (request?: Readonly<ListSessionsRequest>) => Promise<ListSessionsResponse>;
115
115
  /**
116
- * List all sessions. Retrieve information about all sessions.
116
+ * List all sessions. Retrieve information about all QPU sessions.
117
117
  *
118
118
  * @param request - The request {@link ListSessionsRequest}
119
119
  * @returns A Promise of ListSessionsResponse
@@ -123,7 +123,7 @@ export declare class API extends ParentAPI {
123
123
  [Symbol.asyncIterator]: () => AsyncGenerator<Session[], void, void>;
124
124
  };
125
125
  /**
126
- * Create a session. Create a dedicated session for the specified platform.
126
+ * Create a session. Create a new QPU session for the specified platform. Once ready, jobs can be sent to this session.
127
127
  *
128
128
  * @param request - The request {@link CreateSessionRequest}
129
129
  * @returns A Promise of Session
@@ -137,14 +137,14 @@ export declare class API extends ParentAPI {
137
137
  */
138
138
  updateSession: (request: Readonly<UpdateSessionRequest>) => Promise<Session>;
139
139
  /**
140
- * Terminate an existing session. Terminate a session by its unique ID and cancel all its attached jobs and booking.
140
+ * Terminate an existing session. Terminate a session by its unique ID and cancel all its attached jobs and bookings.
141
141
  *
142
142
  * @param request - The request {@link TerminateSessionRequest}
143
143
  * @returns A Promise of Session
144
144
  */
145
145
  terminateSession: (request: Readonly<TerminateSessionRequest>) => Promise<Session>;
146
146
  /**
147
- * Delete an existing session. Delete a session by its unique ID and delete all its attached job and booking.
147
+ * Delete an existing session. Delete a session by its unique ID and delete all its attached jobs and bookings.
148
148
  *
149
149
  * @param request - The request {@link DeleteSessionRequest}
150
150
  */
@@ -219,7 +219,7 @@ export declare class API extends ParentAPI {
219
219
  [Symbol.asyncIterator]: () => AsyncGenerator<import("./types.gen.js").ProcessResult[], void, void>;
220
220
  };
221
221
  /**
222
- * Get application information. Retrieve information about the provided **applcation ID**, such as name, type and compatible platforms.
222
+ * Get application information. Retrieve information about the provided **application ID**, such as name, type and compatible platforms.
223
223
  *
224
224
  * @param request - The request {@link GetApplicationRequest}
225
225
  * @returns A Promise of Application
@@ -6,7 +6,7 @@ const jsonContentHeaders = {
6
6
  };
7
7
  class API extends API$1 {
8
8
  /**
9
- * Get job information. Retrieve information about the provided **job ID**, such as status, payload, and result.
9
+ * Get job information. Retrieve information about the provided **job ID**, mainly used to get the current status.
10
10
  *
11
11
  * @param request - The request {@link GetJobRequest}
12
12
  * @returns A Promise of Job
@@ -58,7 +58,7 @@ class API extends API$1 {
58
58
  unmarshalListJobsResponse
59
59
  );
60
60
  /**
61
- * List all jobs within a project or session. Retrieve information about all jobs within a given project or session.
61
+ * List all jobs within a project or session. Retrieve information about all jobs within a given session.
62
62
  *
63
63
  * @param request - The request {@link ListJobsRequest}
64
64
  * @returns A Promise of ListJobsResponse
@@ -87,7 +87,7 @@ class API extends API$1 {
87
87
  */
88
88
  listJobResults = (request) => enrichForPagination("jobResults", this.pageOfListJobResults, request);
89
89
  /**
90
- * Create a job. Create a job to be executed inside a session.
90
+ * Create a job. Create a job to be executed inside a QPU session.
91
91
  *
92
92
  * @param request - The request {@link CreateJobRequest}
93
93
  * @returns A Promise of Job
@@ -198,7 +198,7 @@ class API extends API$1 {
198
198
  */
199
199
  listPlatforms = (request = {}) => enrichForPagination("platforms", this.pageOfListPlatforms, request);
200
200
  /**
201
- * Get session information. Retrieve information about the provided **session ID**, such as name, status, and number of executed jobs.
201
+ * Get session information. Retrieve information about the provided **session ID**, such as name and status.
202
202
  *
203
203
  * @param request - The request {@link GetSessionRequest}
204
204
  * @returns A Promise of Session
@@ -247,14 +247,14 @@ class API extends API$1 {
247
247
  unmarshalListSessionsResponse
248
248
  );
249
249
  /**
250
- * List all sessions. Retrieve information about all sessions.
250
+ * List all sessions. Retrieve information about all QPU sessions.
251
251
  *
252
252
  * @param request - The request {@link ListSessionsRequest}
253
253
  * @returns A Promise of ListSessionsResponse
254
254
  */
255
255
  listSessions = (request = {}) => enrichForPagination("sessions", this.pageOfListSessions, request);
256
256
  /**
257
- * Create a session. Create a dedicated session for the specified platform.
257
+ * Create a session. Create a new QPU session for the specified platform. Once ready, jobs can be sent to this session.
258
258
  *
259
259
  * @param request - The request {@link CreateSessionRequest}
260
260
  * @returns A Promise of Session
@@ -288,7 +288,7 @@ class API extends API$1 {
288
288
  unmarshalSession
289
289
  );
290
290
  /**
291
- * Terminate an existing session. Terminate a session by its unique ID and cancel all its attached jobs and booking.
291
+ * Terminate an existing session. Terminate a session by its unique ID and cancel all its attached jobs and bookings.
292
292
  *
293
293
  * @param request - The request {@link TerminateSessionRequest}
294
294
  * @returns A Promise of Session
@@ -303,7 +303,7 @@ class API extends API$1 {
303
303
  unmarshalSession
304
304
  );
305
305
  /**
306
- * Delete an existing session. Delete a session by its unique ID and delete all its attached job and booking.
306
+ * Delete an existing session. Delete a session by its unique ID and delete all its attached jobs and bookings.
307
307
  *
308
308
  * @param request - The request {@link DeleteSessionRequest}
309
309
  */
@@ -468,7 +468,7 @@ class API extends API$1 {
468
468
  request
469
469
  );
470
470
  /**
471
- * Get application information. Retrieve information about the provided **applcation ID**, such as name, type and compatible platforms.
471
+ * Get application information. Retrieve information about the provided **application ID**, such as name, type and compatible platforms.
472
472
  *
473
473
  * @param request - The request {@link GetApplicationRequest}
474
474
  * @returns A Promise of Application
@@ -1,5 +1,5 @@
1
1
  export { API } from './api.gen.js';
2
2
  export * from './content.gen.js';
3
3
  export * from './marshalling.gen.js';
4
- export type { Application, ApplicationType, Booking, BookingStatus, CancelJobRequest, CancelProcessRequest, CreateJobRequest, CreateModelRequest, CreateProcessRequest, CreateSessionRequest, CreateSessionRequestBookingDemand, DeleteJobRequest, DeleteProcessRequest, DeleteSessionRequest, GetApplicationRequest, GetBookingRequest, GetJobCircuitRequest, GetJobRequest, GetModelRequest, GetPlatformRequest, GetProcessRequest, GetSessionRequest, Job, JobCircuit, JobResult, JobStatus, ListApplicationsRequest, ListApplicationsRequestOrderBy, ListApplicationsResponse, ListBookingsRequest, ListBookingsRequestOrderBy, ListBookingsResponse, ListJobResultsRequest, ListJobResultsRequestOrderBy, ListJobResultsResponse, ListJobsRequest, ListJobsRequestOrderBy, ListJobsResponse, ListModelsRequest, ListModelsRequestOrderBy, ListModelsResponse, ListPlatformsRequest, ListPlatformsRequestOrderBy, ListPlatformsResponse, ListProcessResultsRequest, ListProcessResultsRequestOrderBy, ListProcessResultsResponse, ListProcessesRequest, ListProcessesRequestOrderBy, ListProcessesResponse, ListSessionACLsRequest, ListSessionACLsRequestOrderBy, ListSessionACLsResponse, ListSessionsRequest, ListSessionsRequestOrderBy, ListSessionsResponse, Model, Platform, PlatformAvailability, PlatformBookingRequirement, PlatformHardware, PlatformTechnology, PlatformType, Process, ProcessResult, ProcessStatus, Session, SessionAccess, SessionOriginType, SessionStatus, TerminateSessionRequest, UpdateBookingRequest, UpdateJobRequest, UpdateProcessRequest, UpdateSessionRequest, } from './types.gen.js';
4
+ export type { Application, ApplicationType, Booking, BookingStatus, CancelJobRequest, CancelProcessRequest, CreateJobRequest, CreateModelRequest, CreateProcessRequest, CreateSessionRequest, CreateSessionRequestBookingDemand, DeleteJobRequest, DeleteProcessRequest, DeleteSessionRequest, GetApplicationRequest, GetBookingRequest, GetJobCircuitRequest, GetJobRequest, GetModelRequest, GetPlatformRequest, GetProcessRequest, GetSessionRequest, Job, JobCircuit, JobResult, JobStatus, ListApplicationsRequest, ListApplicationsRequestOrderBy, ListApplicationsResponse, ListBookingsRequest, ListBookingsRequestOrderBy, ListBookingsResponse, ListJobResultsRequest, ListJobResultsRequestOrderBy, ListJobResultsResponse, ListJobsRequest, ListJobsRequestOrderBy, ListJobsResponse, ListModelsRequest, ListModelsRequestOrderBy, ListModelsResponse, ListPlatformsRequest, ListPlatformsRequestOrderBy, ListPlatformsResponse, ListProcessesRequest, ListProcessesRequestOrderBy, ListProcessesResponse, ListProcessResultsRequest, ListProcessResultsRequestOrderBy, ListProcessResultsResponse, ListSessionACLsRequest, ListSessionACLsRequestOrderBy, ListSessionACLsResponse, ListSessionsRequest, ListSessionsRequestOrderBy, ListSessionsResponse, Model, Platform, PlatformAvailability, PlatformBookingRequirement, PlatformHardware, PlatformTechnology, PlatformType, Process, ProcessResult, ProcessStatus, Session, SessionAccess, SessionOriginType, SessionStatus, TerminateSessionRequest, UpdateBookingRequest, UpdateJobRequest, UpdateProcessRequest, UpdateSessionRequest, } from './types.gen.js';
5
5
  export * as ValidationRules from './validation-rules.gen.js';
@@ -1,5 +1,5 @@
1
1
  import type { DefaultValues } from '@scaleway/sdk-client';
2
- import type { Application, Booking, CreateJobRequest, CreateModelRequest, CreateProcessRequest, CreateSessionRequest, Job, JobCircuit, ListApplicationsResponse, ListBookingsResponse, ListJobResultsResponse, ListJobsResponse, ListModelsResponse, ListPlatformsResponse, ListProcessResultsResponse, ListProcessesResponse, ListSessionACLsResponse, ListSessionsResponse, Model, Platform, Process, Session, UpdateBookingRequest, UpdateJobRequest, UpdateProcessRequest, UpdateSessionRequest } from './types.gen.js';
2
+ import type { Application, Booking, CreateJobRequest, CreateModelRequest, CreateProcessRequest, CreateSessionRequest, Job, JobCircuit, ListApplicationsResponse, ListBookingsResponse, ListJobResultsResponse, ListJobsResponse, ListModelsResponse, ListPlatformsResponse, ListProcessesResponse, ListProcessResultsResponse, ListSessionACLsResponse, ListSessionsResponse, Model, Platform, Process, Session, UpdateBookingRequest, UpdateJobRequest, UpdateProcessRequest, UpdateSessionRequest } from './types.gen.js';
3
3
  export declare const unmarshalJobCircuit: (data: unknown) => JobCircuit;
4
4
  export declare const unmarshalApplication: (data: unknown) => Application;
5
5
  export declare const unmarshalBooking: (data: unknown) => Booking;
@@ -259,23 +259,23 @@ export interface Platform {
259
259
  */
260
260
  name: string;
261
261
  /**
262
- * Provider name of the platform.
262
+ * Name of the technological provider of the platform in lowercase (quandela, pasqal...).
263
263
  */
264
264
  providerName: string;
265
265
  /**
266
- * Name of the running backend over the platform (ascella, qsim, aer...).
266
+ * Name of the running emulation backend or QPU model of the platform in lowercase (mosaiq, qsim, aer...).
267
267
  */
268
268
  backendName: string;
269
269
  /**
270
- * Type of the platform.
270
+ * Type of the platform (emulator or qpu).
271
271
  */
272
272
  type: PlatformType;
273
273
  /**
274
- * Technology used by the platform.
274
+ * Quantum technology used by the platform (trapped-ion, photonic, superconducting qubits...).
275
275
  */
276
276
  technology: PlatformTechnology;
277
277
  /**
278
- * Estimated maximum number of qubits supported by the platform.
278
+ * Maximum number of qubits supported by the platform (estimated for emulator).
279
279
  */
280
280
  maxQubitCount: number;
281
281
  /**
package/package.json CHANGED
@@ -1,23 +1,20 @@
1
1
  {
2
2
  "name": "@scaleway/sdk-qaas",
3
- "version": "1.5.0",
3
+ "version": "2.2.0",
4
4
  "description": "Scaleway SDK qaas",
5
5
  "license": "Apache-2.0",
6
6
  "files": [
7
+ "README.md",
7
8
  "dist"
8
9
  ],
9
10
  "type": "module",
10
11
  "exports": {
11
12
  ".": {
12
13
  "types": "./dist/index.gen.d.ts",
13
- "import": "./dist/index.gen.js",
14
- "require": "./dist/index.gen.cjs",
15
14
  "default": "./dist/index.gen.js"
16
15
  },
17
16
  "./*": {
18
17
  "types": "./dist/*/index.gen.d.ts",
19
- "import": "./dist/*/index.gen.js",
20
- "require": "./dist/*/index.gen.cjs",
21
18
  "default": "./dist/*/index.gen.js"
22
19
  }
23
20
  },
@@ -26,17 +23,17 @@
26
23
  "directory": "packages_generated/qaas"
27
24
  },
28
25
  "engines": {
29
- "node": ">=20.19.4"
26
+ "node": ">=20.19.6"
30
27
  },
31
28
  "dependencies": {
32
29
  "@scaleway/random-name": "5.1.2",
33
- "@scaleway/sdk-std": "1.2.0"
30
+ "@scaleway/sdk-std": "2.1.0"
34
31
  },
35
32
  "peerDependencies": {
36
- "@scaleway/sdk-client": "^1.3.3"
33
+ "@scaleway/sdk-client": "^2.1.0"
37
34
  },
38
35
  "devDependencies": {
39
- "@scaleway/sdk-client": "^1.3.3"
36
+ "@scaleway/sdk-client": "^2.1.0"
40
37
  },
41
38
  "scripts": {
42
39
  "package:check": "pnpm publint",
@@ -1,4 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const index_gen = require("./v1alpha1/index.gen.cjs");
4
- exports.Qaasv1alpha1 = index_gen;