@spaceandtimelabs/makeinfinite-ui 0.63.0 → 0.65.0

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.ts CHANGED
@@ -159,13 +159,16 @@ export declare const APIHandler: (baseUrl: string) => {
159
159
  }) => Promise<Response>;
160
160
  initializeProject: (projectName: string) => Promise<Response>;
161
161
  getUserSpendAnalytics: () => Promise<Response>;
162
+ getCreatorPointsSum: (projectName?: string | null) => Promise<Response>;
163
+ getCreatorPointsTop: (n?: number) => Promise<Response>;
162
164
  };
163
165
 
164
166
  declare type APIHandlerType = ReturnType<typeof APIHandler>;
165
167
 
166
168
  export declare const APIProxyHandler: (baseUrl: string, projectHmac?: string) => {
167
169
  getSecrets: () => Promise<Response>;
168
- putSecret: (secretReference: string, secret: Omit<Secret, "creator_user_id" | "secret_reference">) => Promise<Response>;
170
+ putSecret: (secretReference: string, secret: SecretProperties) => Promise<Response>;
171
+ patchSecret: (secretReference: string, secret: SecretProperties) => Promise<Response>;
169
172
  getSecret: (secretReference: string) => Promise<Response>;
170
173
  deleteSecret: (secretReference: string) => Promise<Response>;
171
174
  getAllTierKeyMaps: () => Promise<Response>;
@@ -1227,13 +1230,11 @@ declare const ScrollArea: ForwardRefExoticComponent<Omit<ScrollArea_2.ScrollArea
1227
1230
  declare const ScrollBar: ForwardRefExoticComponent<Omit<ScrollArea_2.ScrollAreaScrollbarProps & RefAttributes<HTMLDivElement>, "ref"> & RefAttributes<HTMLDivElement>>;
1228
1231
 
1229
1232
  /** Represents a secret configuration for API access */
1230
- export declare type Secret = {
1231
- creator_user_id: string;
1232
- api_domain: string;
1233
- api_path_prefix: string;
1234
- auth_header_key: string;
1235
- auth_header_value: string;
1236
- secret_reference: string;
1233
+ export declare type SecretProperties = {
1234
+ api_domain?: string;
1235
+ api_path_prefix?: string;
1236
+ auth_header_key?: string;
1237
+ auth_header_value?: string;
1237
1238
  };
1238
1239
 
1239
1240
  declare const Select: FC<Select_2.SelectProps>;