File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 22
33# Changelog
44
5+ ## [ 1.3.2] - 2025-02-3
6+
7+ ### Changed
8+
9+ - Add getEnvironment function to BaseClient
10+
511## [ 1.3.1] - 2025-01-30
612
713### Changed
Original file line number Diff line number Diff line change 11{
22 "name" : " @pipedream/sdk" ,
33 "type" : " module" ,
4- "version" : " 1.3.1 " ,
4+ "version" : " 1.3.2 " ,
55 "description" : " Pipedream SDK" ,
66 "main" : " ./dist/server.js" ,
77 "module" : " ./dist/server.js" ,
Original file line number Diff line number Diff line change @@ -871,6 +871,14 @@ export abstract class BaseClient {
871871 this . workflowDomain = workflowDomain ;
872872 }
873873
874+ /**
875+ * Retrieves the current environment the client is configured to use.
876+ * @returns {string } The current environment.
877+ */
878+ public getEnvironment ( ) : string {
879+ return this . environment ;
880+ }
881+
874882 /**
875883 * Makes an HTTP request
876884 *
You can’t perform that action at this time.
0 commit comments