@gapi/gcli 1.8.189 → 1.8.191
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/package.json +1 -1
- package/release/index.js +3 -1
package/package.json
CHANGED
package/release/index.js
CHANGED
|
@@ -36154,6 +36154,7 @@ var init_gql_client = __esm({
|
|
|
36154
36154
|
}).pipe((0, import_operators2.map)((res) => res.listProjectLambdas));
|
|
36155
36155
|
}
|
|
36156
36156
|
static createLambda(payload) {
|
|
36157
|
+
console.log(payload);
|
|
36157
36158
|
return this.query({
|
|
36158
36159
|
query: gql`mutation createLambda($payload: CreateOrUpdateLambdaInput!) {
|
|
36159
36160
|
createLambda(payload: $payload) {
|
|
@@ -283052,7 +283053,8 @@ var init_helpers2 = __esm({
|
|
|
283052
283053
|
method: cmd.method || payload.method || ["GET"],
|
|
283053
283054
|
packageJson: cmd.packageJson || await ReadFile(payload.package || cmd.package).toPromise() || "{}",
|
|
283054
283055
|
params: cmd.params || payload.params || [],
|
|
283055
|
-
|
|
283056
|
+
secrets: cmd.secrets || payload.secrets || [],
|
|
283057
|
+
network: cmd.network || payload.network || ["public", "private"],
|
|
283056
283058
|
customUploadFileId: cmd.customUploadFileId || payload.customUploadFileId || "",
|
|
283057
283059
|
scaleOptions: {
|
|
283058
283060
|
executorType: cmd.executorType || ((_a = payload.scaleOptions) == null ? void 0 : _a.executorType) || "poolmgr",
|