diff --git a/docs/resources/action.md b/docs/resources/action.md index f019a5460..f19d9f910 100644 --- a/docs/resources/action.md +++ b/docs/resources/action.md @@ -67,7 +67,7 @@ resource "auth0_action" "my_action" { - `dependencies` (Block Set) List of third party npm modules, and their versions, that this action depends on. (see [below for nested schema](#nestedblock--dependencies)) - `deploy` (Boolean) Deploying an action will create a new immutable version of the action. If the action is currently bound to a trigger, then the system will begin executing the newly deployed version of the action immediately. -- `runtime` (String) The Node runtime, e.g. `node16`. Defaults to `node12`. +- `runtime` (String) The Node runtime. Defaults to `node12`. Possible values are: `node12`, `node16` or `node18`. - `secrets` (Block List) List of secrets that are included in an action or a version of an action. (see [below for nested schema](#nestedblock--secrets)) ### Read-Only diff --git a/internal/provider/resource_auth0_action.go b/internal/provider/resource_auth0_action.go index c57c3943c..e3ef2792a 100644 --- a/internal/provider/resource_auth0_action.go +++ b/internal/provider/resource_auth0_action.go @@ -89,8 +89,10 @@ func newAction() *schema.Resource { ValidateFunc: validation.StringInSlice([]string{ "node12", "node16", + "node18", }, false), - Description: "The Node runtime, e.g. `node16`. Defaults to `node12`.", + Description: "The Node runtime. Defaults to `node12`. Possible values are: " + + "`node12`, `node16` or `node18`.", }, "secrets": { Type: schema.TypeList, diff --git a/internal/provider/resource_auth0_action_test.go b/internal/provider/resource_auth0_action_test.go index 721935ea2..d5dc4bdc2 100644 --- a/internal/provider/resource_auth0_action_test.go +++ b/internal/provider/resource_auth0_action_test.go @@ -32,7 +32,7 @@ const testAccActionConfigUpdateAllFields = ` resource auth0_action my_action { name = "Test Action {{.testName}}" code = "exports.onContinuePostLogin = async (event, api) => {};" - runtime = "node16" + runtime = "node18" deploy = true supported_triggers { @@ -118,7 +118,7 @@ func TestAccAction(t *testing.T) { resource.TestCheckResourceAttr("auth0_action.my_action", "code", "exports.onExecutePostLogin = async (event, api) => {};"), resource.TestCheckResourceAttr("auth0_action.my_action", "secrets.#", "0"), resource.TestCheckResourceAttr("auth0_action.my_action", "dependencies.#", "0"), - resource.TestCheckResourceAttr("auth0_action.my_action", "runtime", "node16"), + resource.TestCheckResourceAttr("auth0_action.my_action", "runtime", "node18"), resource.TestCheckResourceAttr("auth0_action.my_action", "deploy", "false"), resource.TestCheckNoResourceAttr("auth0_action.my_action", "version_id"), resource.TestCheckResourceAttr("auth0_action.my_action", "supported_triggers.#", "1"), @@ -131,7 +131,7 @@ func TestAccAction(t *testing.T) { Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr("auth0_action.my_action", "name", fmt.Sprintf("Test Action %s", t.Name())), resource.TestCheckResourceAttr("auth0_action.my_action", "code", "exports.onContinuePostLogin = async (event, api) => {};"), - resource.TestCheckResourceAttr("auth0_action.my_action", "runtime", "node16"), + resource.TestCheckResourceAttr("auth0_action.my_action", "runtime", "node18"), resource.TestCheckResourceAttr("auth0_action.my_action", "deploy", "true"), resource.TestCheckResourceAttrSet("auth0_action.my_action", "version_id"), resource.TestCheckResourceAttr("auth0_action.my_action", "supported_triggers.#", "1"), @@ -150,7 +150,7 @@ func TestAccAction(t *testing.T) { Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr("auth0_action.my_action", "name", fmt.Sprintf("Test Action %s", t.Name())), resource.TestCheckResourceAttr("auth0_action.my_action", "code", "exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n"), - resource.TestCheckResourceAttr("auth0_action.my_action", "runtime", "node16"), + resource.TestCheckResourceAttr("auth0_action.my_action", "runtime", "node18"), resource.TestCheckResourceAttr("auth0_action.my_action", "deploy", "true"), resource.TestCheckResourceAttrSet("auth0_action.my_action", "version_id"), resource.TestCheckResourceAttr("auth0_action.my_action", "supported_triggers.#", "1"), @@ -173,7 +173,7 @@ func TestAccAction(t *testing.T) { Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr("auth0_action.my_action", "name", fmt.Sprintf("Test Action %s", t.Name())), resource.TestCheckResourceAttr("auth0_action.my_action", "code", "exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n"), - resource.TestCheckResourceAttr("auth0_action.my_action", "runtime", "node16"), + resource.TestCheckResourceAttr("auth0_action.my_action", "runtime", "node18"), resource.TestCheckResourceAttrSet("auth0_action.my_action", "version_id"), resource.TestCheckResourceAttr("auth0_action.my_action", "supported_triggers.#", "1"), resource.TestCheckResourceAttr("auth0_action.my_action", "supported_triggers.0.id", "post-login"), @@ -195,7 +195,7 @@ func TestAccAction(t *testing.T) { const testAccActionConfigCreateWithFailedBuild = ` resource auth0_action my_action { name = "Test Action {{.testName}}" - runtime = "node16" + runtime = "node18" deploy = true code = <<-EOT exports.onContinuePostLogin = async (event, api) => { diff --git a/test/data/recordings/TestAccAction.yaml b/test/data/recordings/TestAccAction.yaml index b8eb78b10..a5405adf1 100644 --- a/test/data/recordings/TestAccAction.yaml +++ b/test/data/recordings/TestAccAction.yaml @@ -30,7 +30,7 @@ interactions: trailer: {} content_length: 392 uncompressed: false - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:02.431398773Z","code":"exports.onExecutePostLogin = async (event, api) => {};","dependencies":[],"runtime":"node16","status":"pending","secrets":[],"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:02.431398773Z","code":"exports.onExecutePostLogin = async (event, api) => {};","dependencies":[],"runtime":"node18","status":"pending","secrets":[],"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -66,7 +66,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:02.431398773Z","code":"exports.onExecutePostLogin = async (event, api) => {};","dependencies":[],"runtime":"node16","status":"built","secrets":[],"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:02.431398773Z","code":"exports.onExecutePostLogin = async (event, api) => {};","dependencies":[],"runtime":"node18","status":"built","secrets":[],"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -102,7 +102,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:02.431398773Z","code":"exports.onExecutePostLogin = async (event, api) => {};","dependencies":[],"runtime":"node16","status":"built","secrets":[],"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:02.431398773Z","code":"exports.onExecutePostLogin = async (event, api) => {};","dependencies":[],"runtime":"node18","status":"built","secrets":[],"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -138,7 +138,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:02.431398773Z","code":"exports.onExecutePostLogin = async (event, api) => {};","dependencies":[],"runtime":"node16","status":"built","secrets":[],"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:02.431398773Z","code":"exports.onExecutePostLogin = async (event, api) => {};","dependencies":[],"runtime":"node18","status":"built","secrets":[],"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -174,7 +174,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:02.431398773Z","code":"exports.onExecutePostLogin = async (event, api) => {};","dependencies":[],"runtime":"node16","status":"built","secrets":[],"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:02.431398773Z","code":"exports.onExecutePostLogin = async (event, api) => {};","dependencies":[],"runtime":"node18","status":"built","secrets":[],"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -193,7 +193,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"code":"exports.onContinuePostLogin = async (event, api) =\u003e {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node16","secrets":[{"name":"foo","value":"111111"}]} + {"name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"code":"exports.onContinuePostLogin = async (event, api) =\u003e {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node18","secrets":[{"name":"foo","value":"111111"}]} form: {} headers: Content-Type: @@ -210,7 +210,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node16","status":"pending","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node18","status":"pending","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -246,7 +246,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node16","status":"building","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node18","status":"building","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -282,7 +282,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node16","status":"building","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node18","status":"building","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -318,7 +318,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node16","status":"building","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node18","status":"building","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -354,7 +354,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node16","status":"building","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node18","status":"building","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -390,7 +390,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node16","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node18","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -426,7 +426,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":false,"number":1,"secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.749282173Z","runtime":"node16","supported_triggers":[{"id":"post-login","version":"v3"}],"action":{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.332314769Z","all_changes_deployed":false}}' + body: '{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":false,"number":1,"secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.749282173Z","runtime":"node18","supported_triggers":[{"id":"post-login","version":"v3"}],"action":{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.332314769Z","all_changes_deployed":false}}' headers: Content-Type: - application/json; charset=utf-8 @@ -462,7 +462,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node16","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node16","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node16","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":true}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node18","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node18","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node18","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":true}' headers: Content-Type: - application/json; charset=utf-8 @@ -498,7 +498,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node16","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node16","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node16","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":true}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node18","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node18","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node18","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":true}' headers: Content-Type: - application/json; charset=utf-8 @@ -534,7 +534,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node16","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node16","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node16","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":true}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node18","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node18","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node18","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":true}' headers: Content-Type: - application/json; charset=utf-8 @@ -570,7 +570,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node16","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node16","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node16","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":true}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:04.340999221Z","code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"runtime":"node18","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node18","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node18","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":true}' headers: Content-Type: - application/json; charset=utf-8 @@ -606,7 +606,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"auth0","version":"2.42.0"},{"name":"moment","version":"2.29.4"}],"runtime":"node16","status":"pending","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node16","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node16","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"auth0","version":"2.42.0"},{"name":"moment","version":"2.29.4"}],"runtime":"node18","status":"pending","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node18","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node18","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -642,7 +642,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"auth0","version":"2.42.0"},{"name":"moment","version":"2.29.4"}],"runtime":"node16","status":"building","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node16","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node16","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"auth0","version":"2.42.0"},{"name":"moment","version":"2.29.4"}],"runtime":"node18","status":"building","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node18","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node18","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -678,7 +678,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"auth0","version":"2.42.0"},{"name":"moment","version":"2.29.4"}],"runtime":"node16","status":"building","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node16","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node16","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"auth0","version":"2.42.0"},{"name":"moment","version":"2.29.4"}],"runtime":"node18","status":"building","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node18","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node18","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -714,7 +714,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"auth0","version":"2.42.0"},{"name":"moment","version":"2.29.4"}],"runtime":"node16","status":"building","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node16","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node16","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"auth0","version":"2.42.0"},{"name":"moment","version":"2.29.4"}],"runtime":"node18","status":"building","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node18","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node18","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -750,7 +750,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"auth0","version":"2.42.0"},{"name":"moment","version":"2.29.4"}],"runtime":"node16","status":"building","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node16","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node16","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"auth0","version":"2.42.0"},{"name":"moment","version":"2.29.4"}],"runtime":"node18","status":"building","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node18","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node18","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -786,7 +786,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"runtime":"node16","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node16","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node16","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"runtime":"node18","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","code":"exports.onContinuePostLogin = async (event, api) => {};","runtime":"node18","status":"BUILT","number":1,"build_time":"2022-10-10T14:21:12.865746873Z","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {};","dependencies":[{"name":"auth0","version":"2.41.0"}],"id":"28886ff0-acdd-4a6a-9aa0-e36c04e0fbbb","deployed":true,"number":1,"built_at":"2022-10-10T14:21:12.865746873Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:04.340999221Z"}],"status":"built","created_at":"2022-10-10T14:21:12.749282173Z","updated_at":"2022-10-10T14:21:12.866497281Z","runtime":"node18","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -822,7 +822,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"id":"4e9fd503-6220-4854-8b11-16d424707f4d","deployed":false,"number":2,"secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"status":"built","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.310147060Z","runtime":"node16","supported_triggers":[{"id":"post-login","version":"v3"}],"action":{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.758888522Z","all_changes_deployed":false}}' + body: '{"code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"id":"4e9fd503-6220-4854-8b11-16d424707f4d","deployed":false,"number":2,"secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"status":"built","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.310147060Z","runtime":"node18","supported_triggers":[{"id":"post-login","version":"v3"}],"action":{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.758888522Z","all_changes_deployed":false}}' headers: Content-Type: - application/json; charset=utf-8 @@ -858,7 +858,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"runtime":"node16","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"4e9fd503-6220-4854-8b11-16d424707f4d","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","runtime":"node16","status":"BUILT","number":2,"build_time":"2022-10-10T14:21:23.444396286Z","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"id":"4e9fd503-6220-4854-8b11-16d424707f4d","deployed":true,"number":2,"built_at":"2022-10-10T14:21:23.444396286Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"status":"built","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z","runtime":"node16","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":true}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"runtime":"node18","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"4e9fd503-6220-4854-8b11-16d424707f4d","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","runtime":"node18","status":"BUILT","number":2,"build_time":"2022-10-10T14:21:23.444396286Z","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"id":"4e9fd503-6220-4854-8b11-16d424707f4d","deployed":true,"number":2,"built_at":"2022-10-10T14:21:23.444396286Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"status":"built","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z","runtime":"node18","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":true}' headers: Content-Type: - application/json; charset=utf-8 @@ -894,7 +894,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"runtime":"node16","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"4e9fd503-6220-4854-8b11-16d424707f4d","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","runtime":"node16","status":"BUILT","number":2,"build_time":"2022-10-10T14:21:23.444396286Z","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"id":"4e9fd503-6220-4854-8b11-16d424707f4d","deployed":true,"number":2,"built_at":"2022-10-10T14:21:23.444396286Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"status":"built","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z","runtime":"node16","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":true}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"runtime":"node18","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"4e9fd503-6220-4854-8b11-16d424707f4d","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","runtime":"node18","status":"BUILT","number":2,"build_time":"2022-10-10T14:21:23.444396286Z","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"id":"4e9fd503-6220-4854-8b11-16d424707f4d","deployed":true,"number":2,"built_at":"2022-10-10T14:21:23.444396286Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"status":"built","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z","runtime":"node18","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":true}' headers: Content-Type: - application/json; charset=utf-8 @@ -930,7 +930,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"runtime":"node16","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"4e9fd503-6220-4854-8b11-16d424707f4d","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","runtime":"node16","status":"BUILT","number":2,"build_time":"2022-10-10T14:21:23.444396286Z","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"id":"4e9fd503-6220-4854-8b11-16d424707f4d","deployed":true,"number":2,"built_at":"2022-10-10T14:21:23.444396286Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"status":"built","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z","runtime":"node16","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":true}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"runtime":"node18","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"4e9fd503-6220-4854-8b11-16d424707f4d","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","runtime":"node18","status":"BUILT","number":2,"build_time":"2022-10-10T14:21:23.444396286Z","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"id":"4e9fd503-6220-4854-8b11-16d424707f4d","deployed":true,"number":2,"built_at":"2022-10-10T14:21:23.444396286Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"status":"built","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z","runtime":"node18","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":true}' headers: Content-Type: - application/json; charset=utf-8 @@ -966,7 +966,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"runtime":"node16","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"4e9fd503-6220-4854-8b11-16d424707f4d","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","runtime":"node16","status":"BUILT","number":2,"build_time":"2022-10-10T14:21:23.444396286Z","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"id":"4e9fd503-6220-4854-8b11-16d424707f4d","deployed":true,"number":2,"built_at":"2022-10-10T14:21:23.444396286Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"status":"built","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z","runtime":"node16","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":true}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:14.765430642Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"runtime":"node18","status":"built","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"current_version":{"id":"4e9fd503-6220-4854-8b11-16d424707f4d","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","runtime":"node18","status":"BUILT","number":2,"build_time":"2022-10-10T14:21:23.444396286Z","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"id":"4e9fd503-6220-4854-8b11-16d424707f4d","deployed":true,"number":2,"built_at":"2022-10-10T14:21:23.444396286Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"status":"built","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z","runtime":"node18","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":true}' headers: Content-Type: - application/json; charset=utf-8 @@ -1002,7 +1002,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:25.262743135Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[],"runtime":"node16","status":"pending","secrets":[],"current_version":{"id":"4e9fd503-6220-4854-8b11-16d424707f4d","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","runtime":"node16","status":"BUILT","number":2,"build_time":"2022-10-10T14:21:23.444396286Z","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"id":"4e9fd503-6220-4854-8b11-16d424707f4d","deployed":true,"number":2,"built_at":"2022-10-10T14:21:23.444396286Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"status":"built","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z","runtime":"node16","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:25.262743135Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[],"runtime":"node18","status":"pending","secrets":[],"current_version":{"id":"4e9fd503-6220-4854-8b11-16d424707f4d","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","runtime":"node18","status":"BUILT","number":2,"build_time":"2022-10-10T14:21:23.444396286Z","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"id":"4e9fd503-6220-4854-8b11-16d424707f4d","deployed":true,"number":2,"built_at":"2022-10-10T14:21:23.444396286Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"status":"built","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z","runtime":"node18","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -1038,7 +1038,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:25.262743135Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[],"runtime":"node16","status":"built","secrets":[],"current_version":{"id":"4e9fd503-6220-4854-8b11-16d424707f4d","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","runtime":"node16","status":"BUILT","number":2,"build_time":"2022-10-10T14:21:23.444396286Z","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"id":"4e9fd503-6220-4854-8b11-16d424707f4d","deployed":true,"number":2,"built_at":"2022-10-10T14:21:23.444396286Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"status":"built","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z","runtime":"node16","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:25.262743135Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[],"runtime":"node18","status":"built","secrets":[],"current_version":{"id":"4e9fd503-6220-4854-8b11-16d424707f4d","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","runtime":"node18","status":"BUILT","number":2,"build_time":"2022-10-10T14:21:23.444396286Z","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"id":"4e9fd503-6220-4854-8b11-16d424707f4d","deployed":true,"number":2,"built_at":"2022-10-10T14:21:23.444396286Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"status":"built","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z","runtime":"node18","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -1074,7 +1074,7 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:25.262743135Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[],"runtime":"node16","status":"built","secrets":[],"current_version":{"id":"4e9fd503-6220-4854-8b11-16d424707f4d","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","runtime":"node16","status":"BUILT","number":2,"build_time":"2022-10-10T14:21:23.444396286Z","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"id":"4e9fd503-6220-4854-8b11-16d424707f4d","deployed":true,"number":2,"built_at":"2022-10-10T14:21:23.444396286Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"status":"built","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z","runtime":"node16","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":false}' + body: '{"id":"a1f490bd-870b-49fc-b8b3-b9854eac7bcb","name":"Test Action TestAccAction","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-10-10T14:21:02.421013552Z","updated_at":"2022-10-10T14:21:25.262743135Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[],"runtime":"node18","status":"built","secrets":[],"current_version":{"id":"4e9fd503-6220-4854-8b11-16d424707f4d","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","runtime":"node18","status":"BUILT","number":2,"build_time":"2022-10-10T14:21:23.444396286Z","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z"},"deployed_version":{"code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"moment","version":"2.29.4"},{"name":"auth0","version":"2.42.0"}],"id":"4e9fd503-6220-4854-8b11-16d424707f4d","deployed":true,"number":2,"built_at":"2022-10-10T14:21:23.444396286Z","secrets":[{"name":"foo","updated_at":"2022-10-10T14:21:14.765430642Z"}],"status":"built","created_at":"2022-10-10T14:21:23.310147060Z","updated_at":"2022-10-10T14:21:23.446398115Z","runtime":"node18","supported_triggers":[{"id":"post-login","version":"v3"}]},"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 diff --git a/test/data/recordings/TestAccAction_FailedBuild.yaml b/test/data/recordings/TestAccAction_FailedBuild.yaml index d4db95d01..3ed4a8856 100644 --- a/test/data/recordings/TestAccAction_FailedBuild.yaml +++ b/test/data/recordings/TestAccAction_FailedBuild.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"name":"Test Action TestAccAction_FailedBuild","supported_triggers":[{"id":"post-login","version":"v3"}],"code":"exports.onContinuePostLogin = async (event, api) =\u003e {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"crypto","version":"17.7.1"}],"runtime":"node16"} + {"name":"Test Action TestAccAction_FailedBuild","supported_triggers":[{"id":"post-login","version":"v3"}],"code":"exports.onContinuePostLogin = async (event, api) =\u003e {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"crypto","version":"17.7.1"}],"runtime":"node18"} form: { } headers: Content-Type: @@ -30,7 +30,7 @@ interactions: trailer: { } content_length: -1 uncompressed: false - body: '{"id":"a0d81042-7ed3-4e78-b647-438ffe45ecfe","name":"Test Action TestAccAction_FailedBuild","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-08-30T08:56:49.272839364Z","updated_at":"2022-08-30T08:56:49.286750680Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"crypto","version":"17.7.1"}],"runtime":"node16","status":"pending","secrets":[],"all_changes_deployed":false}' + body: '{"id":"a0d81042-7ed3-4e78-b647-438ffe45ecfe","name":"Test Action TestAccAction_FailedBuild","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-08-30T08:56:49.272839364Z","updated_at":"2022-08-30T08:56:49.286750680Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"crypto","version":"17.7.1"}],"runtime":"node18","status":"pending","secrets":[],"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -66,7 +66,7 @@ interactions: trailer: { } content_length: -1 uncompressed: true - body: '{"id":"a0d81042-7ed3-4e78-b647-438ffe45ecfe","name":"Test Action TestAccAction_FailedBuild","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-08-30T08:56:49.272839364Z","updated_at":"2022-08-30T08:56:49.286750680Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"crypto","version":"17.7.1"}],"runtime":"node16","status":"building","secrets":[],"all_changes_deployed":false}' + body: '{"id":"a0d81042-7ed3-4e78-b647-438ffe45ecfe","name":"Test Action TestAccAction_FailedBuild","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-08-30T08:56:49.272839364Z","updated_at":"2022-08-30T08:56:49.286750680Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"crypto","version":"17.7.1"}],"runtime":"node18","status":"building","secrets":[],"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -102,7 +102,7 @@ interactions: trailer: { } content_length: -1 uncompressed: true - body: '{"id":"a0d81042-7ed3-4e78-b647-438ffe45ecfe","name":"Test Action TestAccAction_FailedBuild","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-08-30T08:56:49.272839364Z","updated_at":"2022-08-30T08:56:49.286750680Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"crypto","version":"17.7.1"}],"runtime":"node16","status":"building","secrets":[],"all_changes_deployed":false}' + body: '{"id":"a0d81042-7ed3-4e78-b647-438ffe45ecfe","name":"Test Action TestAccAction_FailedBuild","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-08-30T08:56:49.272839364Z","updated_at":"2022-08-30T08:56:49.286750680Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"crypto","version":"17.7.1"}],"runtime":"node18","status":"building","secrets":[],"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8 @@ -138,7 +138,7 @@ interactions: trailer: { } content_length: -1 uncompressed: true - body: '{"id":"a0d81042-7ed3-4e78-b647-438ffe45ecfe","name":"Test Action TestAccAction_FailedBuild","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-08-30T08:56:49.272839364Z","updated_at":"2022-08-30T08:56:49.286750680Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"crypto","version":"17.7.1"}],"runtime":"node16","status":"failed","secrets":[],"all_changes_deployed":false}' + body: '{"id":"a0d81042-7ed3-4e78-b647-438ffe45ecfe","name":"Test Action TestAccAction_FailedBuild","supported_triggers":[{"id":"post-login","version":"v3"}],"created_at":"2022-08-30T08:56:49.272839364Z","updated_at":"2022-08-30T08:56:49.286750680Z","code":"exports.onContinuePostLogin = async (event, api) => {\n\tconsole.log(event)\n};\"\n","dependencies":[{"name":"crypto","version":"17.7.1"}],"runtime":"node18","status":"failed","secrets":[],"all_changes_deployed":false}' headers: Content-Type: - application/json; charset=utf-8