spitfirepm 23.9700.9 → 23.9700.10

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/README.md CHANGED
@@ -25,6 +25,7 @@ apiResult.then( (a) => {
25
25
  ### Change Log
26
26
 
27
27
  ```
28
+ 23.9700.10 - QueryCatalog and improve Attachment and Contact endpoints
28
29
  23.9700.9 - QueryCatalog and improve Attachment and Contact endpoints
29
30
  23.9700.8 - Improved ContactClient endpoints
30
31
  23.9700.7 - GetDV method clarifications
@@ -1633,6 +1633,50 @@ export declare class ContactClient extends APIClientBase {
1633
1633
  private updateContactWithCallbacks;
1634
1634
  private processUpdateContactWithCallbacks;
1635
1635
  protected processUpdateContact(xhr: any): any | null;
1636
+ /**
1637
+ * Deletes a contact that nothing references
1638
+ * @param id Contact Key
1639
+ */
1640
+ deleteContact(id: string): Promise<any>;
1641
+ private deleteContactWithCallbacks;
1642
+ private processDeleteContactWithCallbacks;
1643
+ protected processDeleteContact(xhr: any): any | null;
1644
+ /**
1645
+ * Turns inbound peer-system sync for a mapped contact on or off
1646
+ * @param id Contact Key
1647
+ * @param enabled True to accept inbound updates
1648
+ */
1649
+ setInboundSync(id: string, enabled: boolean): Promise<boolean>;
1650
+ private setInboundSyncWithCallbacks;
1651
+ private processSetInboundSyncWithCallbacks;
1652
+ protected processSetInboundSync(xhr: any): boolean | null;
1653
+ /**
1654
+ * Merges one contact into another and removes the merged (junk) contact
1655
+ * @param id Contact to keep
1656
+ * @param junkId Contact to merge away
1657
+ */
1658
+ mergeContacts(id: string, junkId: string): Promise<any>;
1659
+ private mergeContactsWithCallbacks;
1660
+ private processMergeContactsWithCallbacks;
1661
+ protected processMergeContacts(xhr: any): any | null;
1662
+ /**
1663
+ * Moves a contact (junkId) into the company of contact id
1664
+ * @param id Contact whose company is the destination
1665
+ * @param junkId Contact to move
1666
+ */
1667
+ moveContact(id: string, junkId: string): Promise<any>;
1668
+ private moveContactWithCallbacks;
1669
+ private processMoveContactWithCallbacks;
1670
+ protected processMoveContact(xhr: any): any | null;
1671
+ /**
1672
+ * Copies role memberships the target does not already have from another contact
1673
+ * @param id Contact receiving the memberships
1674
+ * @param sourceId Contact to copy them from
1675
+ */
1676
+ copyRoles(id: string, sourceId: string): Promise<ContactRolesCopyResult | null>;
1677
+ private copyRolesWithCallbacks;
1678
+ private processCopyRolesWithCallbacks;
1679
+ protected processCopyRoles(xhr: any): ContactRolesCopyResult | null | null;
1636
1680
  /**
1637
1681
  * Returns contacts that match filters
1638
1682
  * @param usingFilters Search Criteria
@@ -2053,6 +2097,16 @@ export declare class DocumentToolsClient extends APIClientBase {
2053
2097
  private addDocDateWithCallbacks;
2054
2098
  private processAddDocDateWithCallbacks;
2055
2099
  protected processAddDocDate(xhr: any): DocDate | null | null;
2100
+ /**
2101
+ * Updates the dates on the specified document
2102
+ * @param id Document Key
2103
+ * @param updatedData Replacement date data
2104
+ * @return Specified dates not found
2105
+ */
2106
+ updateDocDates(id: string, updatedData: DocDate): Promise<string>;
2107
+ private updateDocDatesWithCallbacks;
2108
+ private processUpdateDocDatesWithCallbacks;
2109
+ protected processUpdateDocDates(xhr: any): string | null;
2056
2110
  /**
2057
2111
  * Returns the dates for the specified document
2058
2112
  * @param id Document Key
@@ -2071,16 +2125,6 @@ export declare class DocumentToolsClient extends APIClientBase {
2071
2125
  private deleteDocDatesWithCallbacks;
2072
2126
  private processDeleteDocDatesWithCallbacks;
2073
2127
  protected processDeleteDocDates(xhr: any): string | null;
2074
- /**
2075
- * Updates the dates on the specified document
2076
- * @param id Document Key
2077
- * @param updatedData Replacement date data
2078
- * @return Specified dates not found
2079
- */
2080
- updateDocDates(id: string, updatedData: DocDate): Promise<string>;
2081
- private updateDocDatesWithCallbacks;
2082
- private processUpdateDocDatesWithCallbacks;
2083
- protected processUpdateDocDates(xhr: any): string | null;
2084
2128
  /**
2085
2129
  * Information about actions for the specified document
2086
2130
  * @param id Document Key
@@ -4714,6 +4758,11 @@ ThruDate 2026-02-04 includes a login at 2026-02-04 16:20. See FromDate
4714
4758
  for what a login-date bound does to the result set. */
4715
4759
  ThruDate?: Date | undefined;
4716
4760
  }
4761
+ export interface ContactRolesCopyResult {
4762
+ Found?: number;
4763
+ Copied?: number;
4764
+ SourceName?: string | undefined;
4765
+ }
4717
4766
  /** Summary information about a contact */
4718
4767
  export interface ContactSummary {
4719
4768
  /** Link to user/contact */