@workbuddy/cli-vnext 1.0.86 → 1.0.87

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.
Files changed (2) hide show
  1. package/dist/index.js +93 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -12585,6 +12585,37 @@ Requires scope: settings:read`,
12585
12585
  }
12586
12586
  ]
12587
12587
  },
12588
+ {
12589
+ operationId: "PublicCrmCustomerController_delete",
12590
+ displayName: "Delete customer",
12591
+ description: "Delete customer",
12592
+ method: "DELETE",
12593
+ path: "/customers/{id}",
12594
+ commandPath: ["crm", "customers", "delete"],
12595
+ options: [
12596
+ {
12597
+ name: "id",
12598
+ cliName: "id",
12599
+ optionKey: "id",
12600
+ source: "path",
12601
+ type: "string",
12602
+ required: true,
12603
+ description: "Customer ID or integration ID"
12604
+ }
12605
+ ],
12606
+ hasRequestBody: false,
12607
+ responseFields: [
12608
+ {
12609
+ name: "id",
12610
+ type: "string",
12611
+ description: "Entity ID"
12612
+ },
12613
+ {
12614
+ name: "deleted",
12615
+ type: "boolean"
12616
+ }
12617
+ ]
12618
+ },
12588
12619
  {
12589
12620
  operationId: "PublicCrmCustomerController_updateStatus",
12590
12621
  displayName: "Update customer status",
@@ -13485,6 +13516,37 @@ Requires scope: settings:read`,
13485
13516
  }
13486
13517
  ]
13487
13518
  },
13519
+ {
13520
+ operationId: "PublicCrmContractorController_delete",
13521
+ displayName: "Delete contractor",
13522
+ description: "Delete contractor",
13523
+ method: "DELETE",
13524
+ path: "/contractors/{id}",
13525
+ commandPath: ["crm", "contractors", "delete"],
13526
+ options: [
13527
+ {
13528
+ name: "id",
13529
+ cliName: "id",
13530
+ optionKey: "id",
13531
+ source: "path",
13532
+ type: "string",
13533
+ required: true,
13534
+ description: "Contractor ID or integration ID"
13535
+ }
13536
+ ],
13537
+ hasRequestBody: false,
13538
+ responseFields: [
13539
+ {
13540
+ name: "id",
13541
+ type: "string",
13542
+ description: "Entity ID"
13543
+ },
13544
+ {
13545
+ name: "deleted",
13546
+ type: "boolean"
13547
+ }
13548
+ ]
13549
+ },
13488
13550
  {
13489
13551
  operationId: "PublicCrmContractorController_updateStatus",
13490
13552
  displayName: "Update contractor status",
@@ -14276,6 +14338,37 @@ Requires scope: settings:read`,
14276
14338
  }
14277
14339
  ]
14278
14340
  },
14341
+ {
14342
+ operationId: "PublicCrmSupplierController_delete",
14343
+ displayName: "Delete supplier",
14344
+ description: "Delete supplier",
14345
+ method: "DELETE",
14346
+ path: "/suppliers/{id}",
14347
+ commandPath: ["crm", "suppliers", "delete"],
14348
+ options: [
14349
+ {
14350
+ name: "id",
14351
+ cliName: "id",
14352
+ optionKey: "id",
14353
+ source: "path",
14354
+ type: "string",
14355
+ required: true,
14356
+ description: "Supplier ID or integration ID"
14357
+ }
14358
+ ],
14359
+ hasRequestBody: false,
14360
+ responseFields: [
14361
+ {
14362
+ name: "id",
14363
+ type: "string",
14364
+ description: "Entity ID"
14365
+ },
14366
+ {
14367
+ name: "deleted",
14368
+ type: "boolean"
14369
+ }
14370
+ ]
14371
+ },
14279
14372
  {
14280
14373
  operationId: "PublicCrmSupplierController_updateStatus",
14281
14374
  displayName: "Update supplier status",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@workbuddy/cli-vnext",
3
- "version": "1.0.86",
3
+ "version": "1.0.87",
4
4
  "description": "WorkBuddy command line interface",
5
5
  "license": "MIT",
6
6
  "type": "module",