@wix/auto_sdk_members_members-about 1.0.35 → 1.0.37

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.
@@ -2183,7 +2183,6 @@ interface MemberAboutCreatedEnvelope {
2183
2183
  * @eventType wix.members.about.v2.member_about_created
2184
2184
  * @serviceIdentifier wix.members.about.v2.MembersAbout
2185
2185
  * @slug created
2186
- * @documentationMaturity preview
2187
2186
  */
2188
2187
  declare function onMemberAboutCreated(handler: (event: MemberAboutCreatedEnvelope) => void | Promise<void>): void;
2189
2188
  interface MemberAboutDeletedEnvelope {
@@ -2206,7 +2205,6 @@ interface MemberAboutDeletedEnvelope {
2206
2205
  * @eventType wix.members.about.v2.member_about_deleted
2207
2206
  * @serviceIdentifier wix.members.about.v2.MembersAbout
2208
2207
  * @slug deleted
2209
- * @documentationMaturity preview
2210
2208
  */
2211
2209
  declare function onMemberAboutDeleted(handler: (event: MemberAboutDeletedEnvelope) => void | Promise<void>): void;
2212
2210
  interface MemberAboutUpdatedEnvelope {
@@ -2230,14 +2228,12 @@ interface MemberAboutUpdatedEnvelope {
2230
2228
  * @eventType wix.members.about.v2.member_about_updated
2231
2229
  * @serviceIdentifier wix.members.about.v2.MembersAbout
2232
2230
  * @slug updated
2233
- * @documentationMaturity preview
2234
2231
  */
2235
2232
  declare function onMemberAboutUpdated(handler: (event: MemberAboutUpdatedEnvelope) => void | Promise<void>): void;
2236
2233
  /**
2237
2234
  * Creates the "About" section content for a member.
2238
2235
  * @param memberAbout - The "About" section content to create.
2239
2236
  * @public
2240
- * @documentationMaturity preview
2241
2237
  * @requiredField memberAbout
2242
2238
  * @requiredField memberAbout.content
2243
2239
  * @permissionId MEMBERS.MEMBER_ABOUT_CREATE
@@ -2253,7 +2249,6 @@ declare function createMemberAbout(memberAbout: NonNullablePaths<MemberAbout, `c
2253
2249
  * Each time the "About" section content is updated, `revision` increments by 1. The existing `revision` must be included when updating the "About" section content. This ensures you're working with the latest "About" section and prevents unintended overwrites.
2254
2250
  * @param _id - ID of the "About" section content.
2255
2251
  * @public
2256
- * @documentationMaturity preview
2257
2252
  * @requiredField _id
2258
2253
  * @requiredField memberAbout
2259
2254
  * @requiredField memberAbout.content
@@ -2286,7 +2281,6 @@ interface UpdateMemberAbout {
2286
2281
  * Deletes the "About" section content for a member.
2287
2282
  * @param _id - ID of the "About" section content to delete.
2288
2283
  * @public
2289
- * @documentationMaturity preview
2290
2284
  * @requiredField _id
2291
2285
  * @permissionId MEMBERS.MEMBER_ABOUT_DELETE
2292
2286
  * @applicableIdentity APP
@@ -2298,7 +2292,6 @@ declare function deleteMemberAbout(_id: string): Promise<void>;
2298
2292
  * Retrieves a member's "About" section content.
2299
2293
  * @param _id - ID of the "About" section content to retrieve.
2300
2294
  * @public
2301
- * @documentationMaturity preview
2302
2295
  * @requiredField _id
2303
2296
  * @permissionId MEMBERS.MEMBER_ABOUT_READ
2304
2297
  * @applicableIdentity APP
@@ -2312,7 +2305,6 @@ declare function getMemberAbout(_id: string): Promise<MemberAbout>;
2312
2305
  * >**Note:**
2313
2306
  * >This method requires [visitor or member authentication](https://dev.wix.com/docs/build-apps/develop-your-app/access/about-identities).
2314
2307
  * @public
2315
- * @documentationMaturity preview
2316
2308
  * @permissionId MEMBERS.MEMBER_ABOUT_READ
2317
2309
  * @applicableIdentity APP
2318
2310
  * @fqn wix.members.about.v2.MembersAbout.GetMyMemberAbout
@@ -2331,7 +2323,6 @@ declare function getMyMemberAbout(): Promise<GetMyMemberAboutResponse>;
2331
2323
  *
2332
2324
  * - [`limit(50)`](https://dev.wix.com/docs/sdk/backend-modules/members/members-about/member-abouts-query-builder/limit)
2333
2325
  * @public
2334
- * @documentationMaturity preview
2335
2326
  * @permissionId MEMBERS.MEMBER_ABOUT_READ
2336
2327
  * @applicableIdentity APP
2337
2328
  * @fqn wix.members.about.v2.MembersAbout.QueryMemberAbouts
@@ -2353,57 +2344,42 @@ interface MemberAboutsQueryResult extends QueryCursorResult {
2353
2344
  interface MemberAboutsQueryBuilder {
2354
2345
  /** @param propertyName - Property whose value is compared with `value`.
2355
2346
  * @param value - Value to compare against.
2356
- * @documentationMaturity preview
2357
2347
  */
2358
2348
  eq: (propertyName: '_id' | 'memberId', value: any) => MemberAboutsQueryBuilder;
2359
2349
  /** @param propertyName - Property whose value is compared with `value`.
2360
2350
  * @param value - Value to compare against.
2361
- * @documentationMaturity preview
2362
2351
  */
2363
2352
  ne: (propertyName: '_id' | 'memberId', value: any) => MemberAboutsQueryBuilder;
2364
2353
  /** @param propertyName - Property whose value is compared with `value`.
2365
2354
  * @param value - Value to compare against.
2366
- * @documentationMaturity preview
2367
2355
  */
2368
2356
  ge: (propertyName: '_id' | 'memberId', value: any) => MemberAboutsQueryBuilder;
2369
2357
  /** @param propertyName - Property whose value is compared with `value`.
2370
2358
  * @param value - Value to compare against.
2371
- * @documentationMaturity preview
2372
2359
  */
2373
2360
  gt: (propertyName: '_id' | 'memberId', value: any) => MemberAboutsQueryBuilder;
2374
2361
  /** @param propertyName - Property whose value is compared with `value`.
2375
2362
  * @param value - Value to compare against.
2376
- * @documentationMaturity preview
2377
2363
  */
2378
2364
  le: (propertyName: '_id' | 'memberId', value: any) => MemberAboutsQueryBuilder;
2379
2365
  /** @param propertyName - Property whose value is compared with `value`.
2380
2366
  * @param value - Value to compare against.
2381
- * @documentationMaturity preview
2382
2367
  */
2383
2368
  lt: (propertyName: '_id' | 'memberId', value: any) => MemberAboutsQueryBuilder;
2384
2369
  /** @param propertyName - Property whose value is compared with `string`.
2385
2370
  * @param string - String to compare against. Case-insensitive.
2386
- * @documentationMaturity preview
2387
2371
  */
2388
2372
  startsWith: (propertyName: '_id' | 'memberId', value: string) => MemberAboutsQueryBuilder;
2389
2373
  /** @param propertyName - Property whose value is compared with `values`.
2390
2374
  * @param values - List of values to compare against.
2391
- * @documentationMaturity preview
2392
2375
  */
2393
2376
  hasSome: (propertyName: '_id' | 'memberId', value: any[]) => MemberAboutsQueryBuilder;
2394
- /** @documentationMaturity preview */
2395
2377
  in: (propertyName: '_id' | 'memberId', value: any) => MemberAboutsQueryBuilder;
2396
- /** @documentationMaturity preview */
2397
2378
  exists: (propertyName: '_id' | 'memberId', value: boolean) => MemberAboutsQueryBuilder;
2398
- /** @param limit - Number of items to return, which is also the `pageSize` of the results object.
2399
- * @documentationMaturity preview
2400
- */
2379
+ /** @param limit - Number of items to return, which is also the `pageSize` of the results object. */
2401
2380
  limit: (limit: number) => MemberAboutsQueryBuilder;
2402
- /** @param cursor - A pointer to specific record
2403
- * @documentationMaturity preview
2404
- */
2381
+ /** @param cursor - A pointer to specific record */
2405
2382
  skipTo: (cursor: string) => MemberAboutsQueryBuilder;
2406
- /** @documentationMaturity preview */
2407
2383
  find: () => Promise<MemberAboutsQueryResult>;
2408
2384
  }
2409
2385