@workbenchcrm/sdk 1.0.2 → 1.0.3

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
@@ -100,7 +100,7 @@ interface ApiError {
100
100
  /**
101
101
  * Client status values
102
102
  */
103
- type ClientStatus = 'active' | 'inactive' | 'lead' | 'prospect';
103
+ type ClientStatus = 'active' | 'inactive' | 'lead' | 'prospect' | 'archived';
104
104
  /**
105
105
  * Client record
106
106
  */
@@ -359,7 +359,7 @@ interface ListJobsOptions extends ListOptions {
359
359
  /**
360
360
  * Service request status values
361
361
  */
362
- type ServiceRequestStatus = 'new' | 'reviewing' | 'scheduled' | 'completed' | 'cancelled' | 'declined';
362
+ type ServiceRequestStatus = 'new' | 'contacted' | 'scheduled' | 'in_progress' | 'completed' | 'cancelled' | 'rejected';
363
363
  /**
364
364
  * Service request priority values
365
365
  */
package/dist/index.d.ts CHANGED
@@ -100,7 +100,7 @@ interface ApiError {
100
100
  /**
101
101
  * Client status values
102
102
  */
103
- type ClientStatus = 'active' | 'inactive' | 'lead' | 'prospect';
103
+ type ClientStatus = 'active' | 'inactive' | 'lead' | 'prospect' | 'archived';
104
104
  /**
105
105
  * Client record
106
106
  */
@@ -359,7 +359,7 @@ interface ListJobsOptions extends ListOptions {
359
359
  /**
360
360
  * Service request status values
361
361
  */
362
- type ServiceRequestStatus = 'new' | 'reviewing' | 'scheduled' | 'completed' | 'cancelled' | 'declined';
362
+ type ServiceRequestStatus = 'new' | 'contacted' | 'scheduled' | 'in_progress' | 'completed' | 'cancelled' | 'rejected';
363
363
  /**
364
364
  * Service request priority values
365
365
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@workbenchcrm/sdk",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Official Node.js SDK for the Workbench CRM API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",