@envsync-cloud/envsync-ts-sdk 0.3.3 → 0.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -658,6 +658,7 @@ type EnvPitStateResponse = Array<{
658
658
  key: string;
659
659
  value: string;
660
660
  last_updated: string;
661
+ operation: 'CREATE' | 'UPDATE' | 'DELETE';
661
662
  }>;
662
663
 
663
664
  type EnvTimestampRequest = {
package/dist/index.d.ts CHANGED
@@ -658,6 +658,7 @@ type EnvPitStateResponse = Array<{
658
658
  key: string;
659
659
  value: string;
660
660
  last_updated: string;
661
+ operation: 'CREATE' | 'UPDATE' | 'DELETE';
661
662
  }>;
662
663
 
663
664
  type EnvTimestampRequest = {
@@ -2176,7 +2176,7 @@
2176
2176
  constructor(config, HttpRequest = FetchHttpRequest) {
2177
2177
  this.request = new HttpRequest({
2178
2178
  BASE: config?.BASE ?? "http://localhost:8600",
2179
- VERSION: config?.VERSION ?? "0.3.3",
2179
+ VERSION: config?.VERSION ?? "0.3.6",
2180
2180
  WITH_CREDENTIALS: config?.WITH_CREDENTIALS ?? false,
2181
2181
  CREDENTIALS: config?.CREDENTIALS ?? "include",
2182
2182
  TOKEN: config?.TOKEN,
@@ -2209,7 +2209,7 @@
2209
2209
  // src/core/OpenAPI.ts
2210
2210
  var OpenAPI = {
2211
2211
  BASE: "http://localhost:8600",
2212
- VERSION: "0.3.3",
2212
+ VERSION: "0.3.6",
2213
2213
  WITH_CREDENTIALS: false,
2214
2214
  CREDENTIALS: "include",
2215
2215
  TOKEN: void 0,
package/dist/index.js CHANGED
@@ -2228,7 +2228,7 @@ var EnvSyncAPISDK = class {
2228
2228
  constructor(config, HttpRequest = FetchHttpRequest) {
2229
2229
  this.request = new HttpRequest({
2230
2230
  BASE: config?.BASE ?? "http://localhost:8600",
2231
- VERSION: config?.VERSION ?? "0.3.3",
2231
+ VERSION: config?.VERSION ?? "0.3.6",
2232
2232
  WITH_CREDENTIALS: config?.WITH_CREDENTIALS ?? false,
2233
2233
  CREDENTIALS: config?.CREDENTIALS ?? "include",
2234
2234
  TOKEN: config?.TOKEN,
@@ -2261,7 +2261,7 @@ var EnvSyncAPISDK = class {
2261
2261
  // src/core/OpenAPI.ts
2262
2262
  var OpenAPI = {
2263
2263
  BASE: "http://localhost:8600",
2264
- VERSION: "0.3.3",
2264
+ VERSION: "0.3.6",
2265
2265
  WITH_CREDENTIALS: false,
2266
2266
  CREDENTIALS: "include",
2267
2267
  TOKEN: void 0,
package/dist/index.mjs CHANGED
@@ -2174,7 +2174,7 @@ var EnvSyncAPISDK = class {
2174
2174
  constructor(config, HttpRequest = FetchHttpRequest) {
2175
2175
  this.request = new HttpRequest({
2176
2176
  BASE: config?.BASE ?? "http://localhost:8600",
2177
- VERSION: config?.VERSION ?? "0.3.3",
2177
+ VERSION: config?.VERSION ?? "0.3.6",
2178
2178
  WITH_CREDENTIALS: config?.WITH_CREDENTIALS ?? false,
2179
2179
  CREDENTIALS: config?.CREDENTIALS ?? "include",
2180
2180
  TOKEN: config?.TOKEN,
@@ -2207,7 +2207,7 @@ var EnvSyncAPISDK = class {
2207
2207
  // src/core/OpenAPI.ts
2208
2208
  var OpenAPI = {
2209
2209
  BASE: "http://localhost:8600",
2210
- VERSION: "0.3.3",
2210
+ VERSION: "0.3.6",
2211
2211
  WITH_CREDENTIALS: false,
2212
2212
  CREDENTIALS: "include",
2213
2213
  TOKEN: void 0,
package/package.json CHANGED
@@ -33,7 +33,7 @@
33
33
  "peerDependencies": {
34
34
  "typescript": "^5"
35
35
  },
36
- "version": "0.3.3",
36
+ "version": "0.3.6",
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  }