skapi-js 1.5.2-beta.6 → 1.5.2-beta.7

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/skapi.d.mts CHANGED
@@ -850,6 +850,16 @@ declare class Skapi {
850
850
  [key: string]: string;
851
851
  };
852
852
  }): Promise<any>;
853
+ /**
854
+ * Retrieves the history of client secret requests for a given URL and method.
855
+ * @param params Request parameters.
856
+ * @param fetchOptions Pagination and fetch behavior options.
857
+ * @returns A promise that resolves to Promise<any[]>.
858
+ */
859
+ clientSecretRequestHistory(params: {
860
+ url: string;
861
+ method: 'GET' | 'POST' | 'DELETE' | 'PUT';
862
+ }, fetchOptions?: FetchOptions): Promise<any[]>;
853
863
  /**
854
864
  * Consumes a one-time ticket and executes the ticketed request payload.
855
865
  * @param params Request parameters.
package/dist/skapi.d.ts CHANGED
@@ -850,6 +850,16 @@ declare class Skapi {
850
850
  [key: string]: string;
851
851
  };
852
852
  }): Promise<any>;
853
+ /**
854
+ * Retrieves the history of client secret requests for a given URL and method.
855
+ * @param params Request parameters.
856
+ * @param fetchOptions Pagination and fetch behavior options.
857
+ * @returns A promise that resolves to Promise<any[]>.
858
+ */
859
+ clientSecretRequestHistory(params: {
860
+ url: string;
861
+ method: 'GET' | 'POST' | 'DELETE' | 'PUT';
862
+ }, fetchOptions?: FetchOptions): Promise<any[]>;
853
863
  /**
854
864
  * Consumes a one-time ticket and executes the ticketed request payload.
855
865
  * @param params Request parameters.