@medialane/sdk 0.118.0 → 0.118.1

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.
@@ -1155,13 +1155,18 @@ declare class ApiClient {
1155
1155
  }>;
1156
1156
  registerBusinessProvisioning(params: {
1157
1157
  chain: "STARKNET";
1158
- walletAddress: string;
1159
1158
  recipientScheme: string;
1160
1159
  recipientValue: string;
1161
1160
  interimOwnerPubkey: string;
1162
- }): Promise<ApiResponse<ApiBusinessProvisioning & {
1163
- claimUrl: string;
1164
- }>>;
1161
+ derivationSalt: string;
1162
+ deployment: {
1163
+ typedData: unknown;
1164
+ signature: string[];
1165
+ deployment: unknown;
1166
+ };
1167
+ }): Promise<ApiResponse<ApiBusinessProvisioning> & {
1168
+ reusedExistingWallet?: boolean;
1169
+ }>;
1165
1170
  completeBusinessProvisioning(id: string): Promise<ApiResponse<ApiBusinessProvisioning>>;
1166
1171
  getCollectionProfile(contractAddress: string): Promise<ApiCollectionProfile | null>;
1167
1172
  updateCollectionProfile(contractAddress: string, data: UpdateCollectionProfileInput, siwsToken: string): Promise<ApiCollectionProfile>;
@@ -1155,13 +1155,18 @@ declare class ApiClient {
1155
1155
  }>;
1156
1156
  registerBusinessProvisioning(params: {
1157
1157
  chain: "STARKNET";
1158
- walletAddress: string;
1159
1158
  recipientScheme: string;
1160
1159
  recipientValue: string;
1161
1160
  interimOwnerPubkey: string;
1162
- }): Promise<ApiResponse<ApiBusinessProvisioning & {
1163
- claimUrl: string;
1164
- }>>;
1161
+ derivationSalt: string;
1162
+ deployment: {
1163
+ typedData: unknown;
1164
+ signature: string[];
1165
+ deployment: unknown;
1166
+ };
1167
+ }): Promise<ApiResponse<ApiBusinessProvisioning> & {
1168
+ reusedExistingWallet?: boolean;
1169
+ }>;
1165
1170
  completeBusinessProvisioning(id: string): Promise<ApiResponse<ApiBusinessProvisioning>>;
1166
1171
  getCollectionProfile(contractAddress: string): Promise<ApiCollectionProfile | null>;
1167
1172
  updateCollectionProfile(contractAddress: string, data: UpdateCollectionProfileInput, siwsToken: string): Promise<ApiCollectionProfile>;
@@ -593,7 +593,10 @@ var ApiClient = class {
593
593
  });
594
594
  }
595
595
  registerBusinessProvisioning(params) {
596
- return this.post("/v1/business/provisioning", params);
596
+ return this.post(
597
+ "/v1/business/provisioning",
598
+ params
599
+ );
597
600
  }
598
601
  completeBusinessProvisioning(id) {
599
602
  return this.post(`/v1/business/provisioning/${id}/complete`, {});