@yorkie-js/sdk 0.6.42 → 0.6.43

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.
@@ -978,7 +978,6 @@ export declare class Client {
978
978
  * Overloaded to support both types.
979
979
  */
980
980
  detach<R, P extends Indexable>(resource: Document_2<R, P>, opts?: {
981
- removeIfNotAttached?: boolean;
982
981
  keepalive?: boolean;
983
982
  }): Promise<Document_2<R, P>>;
984
983
  /**
@@ -19247,7 +19247,7 @@ function createAuthInterceptor(apiKey, token) {
19247
19247
  };
19248
19248
  }
19249
19249
  const name = "@yorkie-js/sdk";
19250
- const version = "0.6.42";
19250
+ const version = "0.6.43";
19251
19251
  const pkg = {
19252
19252
  name,
19253
19253
  version
@@ -19790,8 +19790,7 @@ class Client {
19790
19790
  {
19791
19791
  clientId: this.id,
19792
19792
  documentId: attachment.resourceID,
19793
- changePack: converter.toChangePack(doc.createChangePack()),
19794
- removeIfNotAttached: opts.removeIfNotAttached ?? false
19793
+ changePack: converter.toChangePack(doc.createChangePack())
19795
19794
  },
19796
19795
  { headers: { "x-shard-key": `${this.apiKey}/${doc.getKey()}` } }
19797
19796
  );